1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * 2006-2009 (C) DENX Software Engineering.
5 * Author: Yuri Tikhonov <yur@emcraft.com>
8 #ifndef _PPC440SPE_ADMA_H
9 #define _PPC440SPE_ADMA_H
11 #include <linux/types.h>
15 #define to_ppc440spe_adma_chan(chan) \
16 container_of(chan, struct ppc440spe_adma_chan, common)
17 #define to_ppc440spe_adma_device(dev) \
18 container_of(dev, struct ppc440spe_adma_device, common)
19 #define tx_to_ppc440spe_adma_slot(tx) \
20 container_of(tx, struct ppc440spe_adma_desc_slot, async_tx)
22 /* Default polynomial (for 440SP is only available) */
23 #define PPC440SPE_DEFAULT_POLY 0x4d
25 #define PPC440SPE_ADMA_ENGINES_NUM (XOR_ENGINES_NUM + DMA_ENGINES_NUM)
27 #define PPC440SPE_ADMA_WATCHDOG_MSEC 3
28 #define PPC440SPE_ADMA_THRESHOLD 1
30 #define PPC440SPE_DMA0_ID 0
31 #define PPC440SPE_DMA1_ID 1
32 #define PPC440SPE_XOR_ID 2
34 #define PPC440SPE_ADMA_DMA_MAX_BYTE_COUNT 0xFFFFFFUL
35 /* this is the XOR_CBBCR width */
36 #define PPC440SPE_ADMA_XOR_MAX_BYTE_COUNT (1 << 31)
37 #define PPC440SPE_ADMA_ZERO_SUM_MAX_BYTE_COUNT PPC440SPE_ADMA_XOR_MAX_BYTE_COUNT
39 #define PPC440SPE_RXOR_RUN 0
41 #define MQ0_CF2H_RXOR_BS_MASK 0x1FF
46 * struct ppc440spe_adma_device - internal representation of an ADMA device
48 * @dma_reg: base for DMAx register access
49 * @xor_reg: base for XOR register access
50 * @i2o_reg: base for I2O register access
51 * @id: HW ADMA Device selector
52 * @dma_desc_pool_virt: base of DMA descriptor region (CPU address)
53 * @dma_desc_pool: base of DMA descriptor region (DMA address)
54 * @pool_size: size of the pool
55 * @irq: DMAx or XOR irq number
56 * @err_irq: DMAx error irq number
57 * @common: embedded struct dma_device
59 struct ppc440spe_adma_device
{
61 struct dma_regs __iomem
*dma_reg
;
62 struct xor_regs __iomem
*xor_reg
;
63 struct i2o_regs __iomem
*i2o_reg
;
65 void *dma_desc_pool_virt
;
66 dma_addr_t dma_desc_pool
;
70 struct dma_device common
;
74 * struct ppc440spe_adma_chan - internal representation of an ADMA channel
75 * @lock: serializes enqueue/dequeue operations to the slot pool
76 * @device: parent device
77 * @chain: device chain view of the descriptors
78 * @common: common dmaengine channel object members
79 * @all_slots: complete domain of slots usable by the channel
80 * @pending: allows batching of hardware operations
81 * @slots_allocated: records the actual size of the descriptor slot pool
82 * @hw_chain_inited: h/w descriptor chain initialization flag
83 * @irq_tasklet: bottom half where ppc440spe_adma_slot_cleanup runs
84 * @needs_unmap: if buffers should not be unmapped upon final processing
85 * @pdest_page: P destination page for async validate operation
86 * @qdest_page: Q destination page for async validate operation
87 * @pdest: P dma addr for async validate operation
88 * @qdest: Q dma addr for async validate operation
90 struct ppc440spe_adma_chan
{
92 struct ppc440spe_adma_device
*device
;
93 struct list_head chain
;
94 struct dma_chan common
;
95 struct list_head all_slots
;
96 struct ppc440spe_adma_desc_slot
*last_used
;
100 struct tasklet_struct irq_tasklet
;
102 struct page
*pdest_page
;
103 struct page
*qdest_page
;
108 struct ppc440spe_rxor
{
119 * struct ppc440spe_adma_desc_slot - PPC440SPE-ADMA software descriptor
120 * @phys: hardware address of the hardware descriptor chain
121 * @group_head: first operation in a transaction
122 * @hw_next: pointer to the next descriptor in chain
123 * @async_tx: support for the async_tx api
124 * @slot_node: node on the iop_adma_chan.all_slots list
125 * @chain_node: node on the op_adma_chan.chain list
126 * @group_list: list of slots that make up a multi-descriptor transaction
127 * for example transfer lengths larger than the supported hw max
128 * @unmap_len: transaction bytecount
129 * @hw_desc: virtual address of the hardware descriptor chain
130 * @stride: currently chained or not
132 * @slot_cnt: total slots used in an transaction (group of operations)
133 * @src_cnt: number of sources set in this descriptor
134 * @dst_cnt: number of destinations set in the descriptor
135 * @slots_per_op: number of slots per operation
136 * @descs_per_op: number of slot per P/Q operation see comment
137 * for ppc440spe_prep_dma_pqxor function
138 * @flags: desc state/type
139 * @reverse_flags: 1 if a corresponding rxor address uses reversed address order
140 * @xor_check_result: result of zero sum
141 * @crc32_result: result crc calculation
143 struct ppc440spe_adma_desc_slot
{
145 struct ppc440spe_adma_desc_slot
*group_head
;
146 struct ppc440spe_adma_desc_slot
*hw_next
;
147 struct dma_async_tx_descriptor async_tx
;
148 struct list_head slot_node
;
149 struct list_head chain_node
; /* node in channel ops list */
150 struct list_head group_list
; /* list */
151 unsigned int unmap_len
;
161 unsigned long reverse_flags
[8];
163 #define PPC440SPE_DESC_INT 0 /* generate interrupt on complete */
164 #define PPC440SPE_ZERO_P 1 /* clear P destionaion */
165 #define PPC440SPE_ZERO_Q 2 /* clear Q destination */
166 #define PPC440SPE_COHERENT 3 /* src/dst are coherent */
168 #define PPC440SPE_DESC_WXOR 4 /* WXORs are in chain */
169 #define PPC440SPE_DESC_RXOR 5 /* RXOR is in chain */
171 #define PPC440SPE_DESC_RXOR123 8 /* CDB for RXOR123 operation */
172 #define PPC440SPE_DESC_RXOR124 9 /* CDB for RXOR124 operation */
173 #define PPC440SPE_DESC_RXOR125 10 /* CDB for RXOR125 operation */
174 #define PPC440SPE_DESC_RXOR12 11 /* CDB for RXOR12 operation */
175 #define PPC440SPE_DESC_RXOR_REV 12 /* CDB has srcs in reversed order */
177 #define PPC440SPE_DESC_PCHECK 13
178 #define PPC440SPE_DESC_QCHECK 14
180 #define PPC440SPE_DESC_RXOR_MSK 0x3
182 struct ppc440spe_rxor rxor_cursor
;
185 u32
*xor_check_result
;
190 #endif /* _PPC440SPE_ADMA_H */