]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/staging/ccree/cc_lli_defs.h
staging: ccree: move M/LLI defines to header file
[karo-tx-linux.git] / drivers / staging / ccree / cc_lli_defs.h
1 /*
2  * Copyright (C) 2012-2017 ARM Limited or its affiliates.
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program; if not, see <http://www.gnu.org/licenses/>.
15  */
16
17 #ifndef _CC_LLI_DEFS_H_
18 #define _CC_LLI_DEFS_H_
19
20 #include <linux/types.h>
21
22 #include "cc_bitops.h"
23
24 /* Max DLLI size
25  *  AKA DX_DSCRPTR_QUEUE_WORD1_DIN_SIZE_BIT_SIZE
26  */
27 #define DLLI_SIZE_BIT_SIZE      0x18
28
29 #define CC_MAX_MLLI_ENTRY_SIZE 0xFFFF
30
31 #define LLI_MAX_NUM_OF_DATA_ENTRIES 128
32 #define LLI_MAX_NUM_OF_ASSOC_DATA_ENTRIES 4
33 #define MLLI_TABLE_MIN_ALIGNMENT 4 /* 32 bit alignment */
34 #define MAX_NUM_OF_BUFFERS_IN_MLLI 4
35 #define MAX_NUM_OF_TOTAL_MLLI_ENTRIES \
36                 (2 * LLI_MAX_NUM_OF_DATA_ENTRIES + \
37                  LLI_MAX_NUM_OF_ASSOC_DATA_ENTRIES)
38
39 /* Size of entry */
40 #define LLI_ENTRY_WORD_SIZE 2
41 #define LLI_ENTRY_BYTE_SIZE (LLI_ENTRY_WORD_SIZE * sizeof(u32))
42
43 /* Word0[31:0] = ADDR[31:0] */
44 #define LLI_WORD0_OFFSET 0
45 #define LLI_LADDR_BIT_OFFSET 0
46 #define LLI_LADDR_BIT_SIZE 32
47 /* Word1[31:16] = ADDR[47:32]; Word1[15:0] = SIZE */
48 #define LLI_WORD1_OFFSET 1
49 #define LLI_SIZE_BIT_OFFSET 0
50 #define LLI_SIZE_BIT_SIZE 16
51 #define LLI_HADDR_BIT_OFFSET 16
52 #define LLI_HADDR_BIT_SIZE 16
53
54 #define LLI_SIZE_MASK GENMASK((LLI_SIZE_BIT_SIZE - 1), LLI_SIZE_BIT_OFFSET)
55 #define LLI_HADDR_MASK GENMASK( \
56                                (LLI_HADDR_BIT_OFFSET + LLI_HADDR_BIT_SIZE - 1),\
57                                 LLI_HADDR_BIT_OFFSET)
58
59 static inline void cc_lli_set_addr(u32 *lli_p, dma_addr_t addr)
60 {
61         lli_p[LLI_WORD0_OFFSET] = (addr & U32_MAX);
62 #ifdef CONFIG_ARCH_DMA_ADDR_T_64BIT
63         lli_p[LLI_WORD1_OFFSET] &= ~LLI_HADDR_MASK;
64         lli_p[LLI_WORD1_OFFSET] |= FIELD_PREP(LLI_HADDR_MASK, (addr >> 16));
65 #endif /* CONFIG_ARCH_DMA_ADDR_T_64BIT */
66 }
67
68 static inline void cc_lli_set_size(u32 *lli_p, u16 size)
69 {
70         lli_p[LLI_WORD1_OFFSET] &= ~LLI_SIZE_MASK;
71         lli_p[LLI_WORD1_OFFSET] |= FIELD_PREP(LLI_SIZE_MASK, size);
72 }
73
74 #endif /*_CC_LLI_DEFS_H_*/