2 * Applied Micro X-Gene SoC DMA engine Driver
4 * Copyright (c) 2015, Applied Micro Circuits Corporation
5 * Authors: Rameshwar Prasad Sahu <rsahu@apm.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 * NOTE: PM support is currently not available.
24 #include <linux/acpi.h>
25 #include <linux/clk.h>
26 #include <linux/delay.h>
27 #include <linux/dma-mapping.h>
28 #include <linux/dmaengine.h>
29 #include <linux/dmapool.h>
30 #include <linux/interrupt.h>
32 #include <linux/module.h>
33 #include <linux/of_device.h>
35 #include "dmaengine.h"
37 /* X-Gene DMA ring csr registers and bit definations */
38 #define XGENE_DMA_RING_CONFIG 0x04
39 #define XGENE_DMA_RING_ENABLE BIT(31)
40 #define XGENE_DMA_RING_ID 0x08
41 #define XGENE_DMA_RING_ID_SETUP(v) ((v) | BIT(31))
42 #define XGENE_DMA_RING_ID_BUF 0x0C
43 #define XGENE_DMA_RING_ID_BUF_SETUP(v) (((v) << 9) | BIT(21))
44 #define XGENE_DMA_RING_THRESLD0_SET1 0x30
45 #define XGENE_DMA_RING_THRESLD0_SET1_VAL 0X64
46 #define XGENE_DMA_RING_THRESLD1_SET1 0x34
47 #define XGENE_DMA_RING_THRESLD1_SET1_VAL 0xC8
48 #define XGENE_DMA_RING_HYSTERESIS 0x68
49 #define XGENE_DMA_RING_HYSTERESIS_VAL 0xFFFFFFFF
50 #define XGENE_DMA_RING_STATE 0x6C
51 #define XGENE_DMA_RING_STATE_WR_BASE 0x70
52 #define XGENE_DMA_RING_NE_INT_MODE 0x017C
53 #define XGENE_DMA_RING_NE_INT_MODE_SET(m, v) \
54 ((m) = ((m) & ~BIT(31 - (v))) | BIT(31 - (v)))
55 #define XGENE_DMA_RING_NE_INT_MODE_RESET(m, v) \
56 ((m) &= (~BIT(31 - (v))))
57 #define XGENE_DMA_RING_CLKEN 0xC208
58 #define XGENE_DMA_RING_SRST 0xC200
59 #define XGENE_DMA_RING_MEM_RAM_SHUTDOWN 0xD070
60 #define XGENE_DMA_RING_BLK_MEM_RDY 0xD074
61 #define XGENE_DMA_RING_BLK_MEM_RDY_VAL 0xFFFFFFFF
62 #define XGENE_DMA_RING_ID_GET(owner, num) (((owner) << 6) | (num))
63 #define XGENE_DMA_RING_DST_ID(v) ((1 << 10) | (v))
64 #define XGENE_DMA_RING_CMD_OFFSET 0x2C
65 #define XGENE_DMA_RING_CMD_BASE_OFFSET(v) ((v) << 6)
66 #define XGENE_DMA_RING_COHERENT_SET(m) \
67 (((u32 *)(m))[2] |= BIT(4))
68 #define XGENE_DMA_RING_ADDRL_SET(m, v) \
69 (((u32 *)(m))[2] |= (((v) >> 8) << 5))
70 #define XGENE_DMA_RING_ADDRH_SET(m, v) \
71 (((u32 *)(m))[3] |= ((v) >> 35))
72 #define XGENE_DMA_RING_ACCEPTLERR_SET(m) \
73 (((u32 *)(m))[3] |= BIT(19))
74 #define XGENE_DMA_RING_SIZE_SET(m, v) \
75 (((u32 *)(m))[3] |= ((v) << 23))
76 #define XGENE_DMA_RING_RECOMBBUF_SET(m) \
77 (((u32 *)(m))[3] |= BIT(27))
78 #define XGENE_DMA_RING_RECOMTIMEOUTL_SET(m) \
79 (((u32 *)(m))[3] |= (0x7 << 28))
80 #define XGENE_DMA_RING_RECOMTIMEOUTH_SET(m) \
81 (((u32 *)(m))[4] |= 0x3)
82 #define XGENE_DMA_RING_SELTHRSH_SET(m) \
83 (((u32 *)(m))[4] |= BIT(3))
84 #define XGENE_DMA_RING_TYPE_SET(m, v) \
85 (((u32 *)(m))[4] |= ((v) << 19))
87 /* X-Gene DMA device csr registers and bit definitions */
88 #define XGENE_DMA_IPBRR 0x0
89 #define XGENE_DMA_DEV_ID_RD(v) ((v) & 0x00000FFF)
90 #define XGENE_DMA_BUS_ID_RD(v) (((v) >> 12) & 3)
91 #define XGENE_DMA_REV_NO_RD(v) (((v) >> 14) & 3)
92 #define XGENE_DMA_GCR 0x10
93 #define XGENE_DMA_CH_SETUP(v) \
94 ((v) = ((v) & ~0x000FFFFF) | 0x000AAFFF)
95 #define XGENE_DMA_ENABLE(v) ((v) |= BIT(31))
96 #define XGENE_DMA_DISABLE(v) ((v) &= ~BIT(31))
97 #define XGENE_DMA_RAID6_CONT 0x14
98 #define XGENE_DMA_RAID6_MULTI_CTRL(v) ((v) << 24)
99 #define XGENE_DMA_INT 0x70
100 #define XGENE_DMA_INT_MASK 0x74
101 #define XGENE_DMA_INT_ALL_MASK 0xFFFFFFFF
102 #define XGENE_DMA_INT_ALL_UNMASK 0x0
103 #define XGENE_DMA_INT_MASK_SHIFT 0x14
104 #define XGENE_DMA_RING_INT0_MASK 0x90A0
105 #define XGENE_DMA_RING_INT1_MASK 0x90A8
106 #define XGENE_DMA_RING_INT2_MASK 0x90B0
107 #define XGENE_DMA_RING_INT3_MASK 0x90B8
108 #define XGENE_DMA_RING_INT4_MASK 0x90C0
109 #define XGENE_DMA_CFG_RING_WQ_ASSOC 0x90E0
110 #define XGENE_DMA_ASSOC_RING_MNGR1 0xFFFFFFFF
111 #define XGENE_DMA_MEM_RAM_SHUTDOWN 0xD070
112 #define XGENE_DMA_BLK_MEM_RDY 0xD074
113 #define XGENE_DMA_BLK_MEM_RDY_VAL 0xFFFFFFFF
114 #define XGENE_DMA_RING_CMD_SM_OFFSET 0x8000
116 /* X-Gene SoC EFUSE csr register and bit defination */
117 #define XGENE_SOC_JTAG1_SHADOW 0x18
118 #define XGENE_DMA_PQ_DISABLE_MASK BIT(13)
120 /* X-Gene DMA Descriptor format */
121 #define XGENE_DMA_DESC_NV_BIT BIT_ULL(50)
122 #define XGENE_DMA_DESC_IN_BIT BIT_ULL(55)
123 #define XGENE_DMA_DESC_C_BIT BIT_ULL(63)
124 #define XGENE_DMA_DESC_DR_BIT BIT_ULL(61)
125 #define XGENE_DMA_DESC_ELERR_POS 46
126 #define XGENE_DMA_DESC_RTYPE_POS 56
127 #define XGENE_DMA_DESC_LERR_POS 60
128 #define XGENE_DMA_DESC_BUFLEN_POS 48
129 #define XGENE_DMA_DESC_HOENQ_NUM_POS 48
130 #define XGENE_DMA_DESC_ELERR_RD(m) \
131 (((m) >> XGENE_DMA_DESC_ELERR_POS) & 0x3)
132 #define XGENE_DMA_DESC_LERR_RD(m) \
133 (((m) >> XGENE_DMA_DESC_LERR_POS) & 0x7)
134 #define XGENE_DMA_DESC_STATUS(elerr, lerr) \
135 (((elerr) << 4) | (lerr))
137 /* X-Gene DMA descriptor empty s/w signature */
138 #define XGENE_DMA_DESC_EMPTY_SIGNATURE ~0ULL
140 /* X-Gene DMA configurable parameters defines */
141 #define XGENE_DMA_RING_NUM 512
142 #define XGENE_DMA_BUFNUM 0x0
143 #define XGENE_DMA_CPU_BUFNUM 0x18
144 #define XGENE_DMA_RING_OWNER_DMA 0x03
145 #define XGENE_DMA_RING_OWNER_CPU 0x0F
146 #define XGENE_DMA_RING_TYPE_REGULAR 0x01
147 #define XGENE_DMA_RING_WQ_DESC_SIZE 32 /* 32 Bytes */
148 #define XGENE_DMA_RING_NUM_CONFIG 5
149 #define XGENE_DMA_MAX_CHANNEL 4
150 #define XGENE_DMA_XOR_CHANNEL 0
151 #define XGENE_DMA_PQ_CHANNEL 1
152 #define XGENE_DMA_MAX_BYTE_CNT 0x4000 /* 16 KB */
153 #define XGENE_DMA_MAX_64B_DESC_BYTE_CNT 0x14000 /* 80 KB */
154 #define XGENE_DMA_MAX_XOR_SRC 5
155 #define XGENE_DMA_16K_BUFFER_LEN_CODE 0x0
156 #define XGENE_DMA_INVALID_LEN_CODE 0x7800000000000000ULL
158 /* X-Gene DMA descriptor error codes */
159 #define ERR_DESC_AXI 0x01
160 #define ERR_BAD_DESC 0x02
161 #define ERR_READ_DATA_AXI 0x03
162 #define ERR_WRITE_DATA_AXI 0x04
163 #define ERR_FBP_TIMEOUT 0x05
165 #define ERR_DIFF_SIZE 0x08
166 #define ERR_SCT_GAT_LEN 0x09
167 #define ERR_CRC_ERR 0x11
168 #define ERR_CHKSUM 0x12
171 /* X-Gene DMA error interrupt codes */
172 #define ERR_DIF_SIZE_INT 0x0
173 #define ERR_GS_ERR_INT 0x1
174 #define ERR_FPB_TIMEO_INT 0x2
175 #define ERR_WFIFO_OVF_INT 0x3
176 #define ERR_RFIFO_OVF_INT 0x4
177 #define ERR_WR_TIMEO_INT 0x5
178 #define ERR_RD_TIMEO_INT 0x6
179 #define ERR_WR_ERR_INT 0x7
180 #define ERR_RD_ERR_INT 0x8
181 #define ERR_BAD_DESC_INT 0x9
182 #define ERR_DESC_DST_INT 0xA
183 #define ERR_DESC_SRC_INT 0xB
185 /* X-Gene DMA flyby operation code */
186 #define FLYBY_2SRC_XOR 0x80
187 #define FLYBY_3SRC_XOR 0x90
188 #define FLYBY_4SRC_XOR 0xA0
189 #define FLYBY_5SRC_XOR 0xB0
191 /* X-Gene DMA SW descriptor flags */
192 #define XGENE_DMA_FLAG_64B_DESC BIT(0)
194 /* Define to dump X-Gene DMA descriptor */
195 #define XGENE_DMA_DESC_DUMP(desc, m) \
196 print_hex_dump(KERN_ERR, (m), \
197 DUMP_PREFIX_ADDRESS, 16, 8, (desc), 32, 0)
199 #define to_dma_desc_sw(tx) \
200 container_of(tx, struct xgene_dma_desc_sw, tx)
201 #define to_dma_chan(dchan) \
202 container_of(dchan, struct xgene_dma_chan, dma_chan)
204 #define chan_dbg(chan, fmt, arg...) \
205 dev_dbg(chan->dev, "%s: " fmt, chan->name, ##arg)
206 #define chan_err(chan, fmt, arg...) \
207 dev_err(chan->dev, "%s: " fmt, chan->name, ##arg)
209 struct xgene_dma_desc_hw
{
216 enum xgene_dma_ring_cfgsize
{
217 XGENE_DMA_RING_CFG_SIZE_512B
,
218 XGENE_DMA_RING_CFG_SIZE_2KB
,
219 XGENE_DMA_RING_CFG_SIZE_16KB
,
220 XGENE_DMA_RING_CFG_SIZE_64KB
,
221 XGENE_DMA_RING_CFG_SIZE_512KB
,
222 XGENE_DMA_RING_CFG_SIZE_INVALID
225 struct xgene_dma_ring
{
226 struct xgene_dma
*pdma
;
236 void __iomem
*cmd_base
;
237 dma_addr_t desc_paddr
;
238 u32 state
[XGENE_DMA_RING_NUM_CONFIG
];
239 enum xgene_dma_ring_cfgsize cfgsize
;
242 struct xgene_dma_desc_hw
*desc_hw
;
246 struct xgene_dma_desc_sw
{
247 struct xgene_dma_desc_hw desc1
;
248 struct xgene_dma_desc_hw desc2
;
250 struct list_head node
;
251 struct list_head tx_list
;
252 struct dma_async_tx_descriptor tx
;
256 * struct xgene_dma_chan - internal representation of an X-Gene DMA channel
257 * @dma_chan: dmaengine channel object member
258 * @pdma: X-Gene DMA device structure reference
259 * @dev: struct device reference for dma mapping api
260 * @id: raw id of this channel
261 * @rx_irq: channel IRQ
262 * @name: name of X-Gene DMA channel
263 * @lock: serializes enqueue/dequeue operations to the descriptor pool
264 * @pending: number of transaction request pushed to DMA controller for
265 * execution, but still waiting for completion,
266 * @max_outstanding: max number of outstanding request we can push to channel
267 * @ld_pending: descriptors which are queued to run, but have not yet been
268 * submitted to the hardware for execution
269 * @ld_running: descriptors which are currently being executing by the hardware
270 * @ld_completed: descriptors which have finished execution by the hardware.
271 * These descriptors have already had their cleanup actions run. They
272 * are waiting for the ACK bit to be set by the async tx API.
273 * @desc_pool: descriptor pool for DMA operations
274 * @tasklet: bottom half where all completed descriptors cleans
275 * @tx_ring: transmit ring descriptor that we use to prepare actual
276 * descriptors for further executions
277 * @rx_ring: receive ring descriptor that we use to get completed DMA
278 * descriptors during cleanup time
280 struct xgene_dma_chan
{
281 struct dma_chan dma_chan
;
282 struct xgene_dma
*pdma
;
290 struct list_head ld_pending
;
291 struct list_head ld_running
;
292 struct list_head ld_completed
;
293 struct dma_pool
*desc_pool
;
294 struct tasklet_struct tasklet
;
295 struct xgene_dma_ring tx_ring
;
296 struct xgene_dma_ring rx_ring
;
300 * struct xgene_dma - internal representation of an X-Gene DMA device
301 * @err_irq: DMA error irq number
302 * @ring_num: start id number for DMA ring
303 * @csr_dma: base for DMA register access
304 * @csr_ring: base for DMA ring register access
305 * @csr_ring_cmd: base for DMA ring command register access
306 * @csr_efuse: base for efuse register access
307 * @dma_dev: embedded struct dma_device
308 * @chan: reference to X-Gene DMA channels
315 void __iomem
*csr_dma
;
316 void __iomem
*csr_ring
;
317 void __iomem
*csr_ring_cmd
;
318 void __iomem
*csr_efuse
;
319 struct dma_device dma_dev
[XGENE_DMA_MAX_CHANNEL
];
320 struct xgene_dma_chan chan
[XGENE_DMA_MAX_CHANNEL
];
323 static const char * const xgene_dma_desc_err
[] = {
324 [ERR_DESC_AXI
] = "AXI error when reading src/dst link list",
325 [ERR_BAD_DESC
] = "ERR or El_ERR fields not set to zero in desc",
326 [ERR_READ_DATA_AXI
] = "AXI error when reading data",
327 [ERR_WRITE_DATA_AXI
] = "AXI error when writing data",
328 [ERR_FBP_TIMEOUT
] = "Timeout on bufpool fetch",
329 [ERR_ECC
] = "ECC double bit error",
330 [ERR_DIFF_SIZE
] = "Bufpool too small to hold all the DIF result",
331 [ERR_SCT_GAT_LEN
] = "Gather and scatter data length not same",
332 [ERR_CRC_ERR
] = "CRC error",
333 [ERR_CHKSUM
] = "Checksum error",
334 [ERR_DIF
] = "DIF error",
337 static const char * const xgene_dma_err
[] = {
338 [ERR_DIF_SIZE_INT
] = "DIF size error",
339 [ERR_GS_ERR_INT
] = "Gather scatter not same size error",
340 [ERR_FPB_TIMEO_INT
] = "Free pool time out error",
341 [ERR_WFIFO_OVF_INT
] = "Write FIFO over flow error",
342 [ERR_RFIFO_OVF_INT
] = "Read FIFO over flow error",
343 [ERR_WR_TIMEO_INT
] = "Write time out error",
344 [ERR_RD_TIMEO_INT
] = "Read time out error",
345 [ERR_WR_ERR_INT
] = "HBF bus write error",
346 [ERR_RD_ERR_INT
] = "HBF bus read error",
347 [ERR_BAD_DESC_INT
] = "Ring descriptor HE0 not set error",
348 [ERR_DESC_DST_INT
] = "HFB reading dst link address error",
349 [ERR_DESC_SRC_INT
] = "HFB reading src link address error",
352 static bool is_pq_enabled(struct xgene_dma
*pdma
)
356 val
= ioread32(pdma
->csr_efuse
+ XGENE_SOC_JTAG1_SHADOW
);
357 return !(val
& XGENE_DMA_PQ_DISABLE_MASK
);
360 static u64
xgene_dma_encode_len(size_t len
)
362 return (len
< XGENE_DMA_MAX_BYTE_CNT
) ?
363 ((u64
)len
<< XGENE_DMA_DESC_BUFLEN_POS
) :
364 XGENE_DMA_16K_BUFFER_LEN_CODE
;
367 static u8
xgene_dma_encode_xor_flyby(u32 src_cnt
)
369 static u8 flyby_type
[] = {
370 FLYBY_2SRC_XOR
, /* Dummy */
371 FLYBY_2SRC_XOR
, /* Dummy */
378 return flyby_type
[src_cnt
];
381 static void xgene_dma_set_src_buffer(__le64
*ext8
, size_t *len
,
384 size_t nbytes
= (*len
< XGENE_DMA_MAX_BYTE_CNT
) ?
385 *len
: XGENE_DMA_MAX_BYTE_CNT
;
387 *ext8
|= cpu_to_le64(*paddr
);
388 *ext8
|= cpu_to_le64(xgene_dma_encode_len(nbytes
));
393 static void xgene_dma_invalidate_buffer(__le64
*ext8
)
395 *ext8
|= cpu_to_le64(XGENE_DMA_INVALID_LEN_CODE
);
398 static __le64
*xgene_dma_lookup_ext8(struct xgene_dma_desc_hw
*desc
, int idx
)
410 pr_err("Invalid dma descriptor index\n");
416 static void xgene_dma_init_desc(struct xgene_dma_desc_hw
*desc
,
419 desc
->m0
|= cpu_to_le64(XGENE_DMA_DESC_IN_BIT
);
420 desc
->m0
|= cpu_to_le64((u64
)XGENE_DMA_RING_OWNER_DMA
<<
421 XGENE_DMA_DESC_RTYPE_POS
);
422 desc
->m1
|= cpu_to_le64(XGENE_DMA_DESC_C_BIT
);
423 desc
->m3
|= cpu_to_le64((u64
)dst_ring_num
<<
424 XGENE_DMA_DESC_HOENQ_NUM_POS
);
427 static void xgene_dma_prep_cpy_desc(struct xgene_dma_chan
*chan
,
428 struct xgene_dma_desc_sw
*desc_sw
,
429 dma_addr_t dst
, dma_addr_t src
,
432 struct xgene_dma_desc_hw
*desc1
, *desc2
;
435 /* Get 1st descriptor */
436 desc1
= &desc_sw
->desc1
;
437 xgene_dma_init_desc(desc1
, chan
->tx_ring
.dst_ring_num
);
439 /* Set destination address */
440 desc1
->m2
|= cpu_to_le64(XGENE_DMA_DESC_DR_BIT
);
441 desc1
->m3
|= cpu_to_le64(dst
);
443 /* Set 1st source address */
444 xgene_dma_set_src_buffer(&desc1
->m1
, &len
, &src
);
450 * We need to split this source buffer,
451 * and need to use 2nd descriptor
453 desc2
= &desc_sw
->desc2
;
454 desc1
->m0
|= cpu_to_le64(XGENE_DMA_DESC_NV_BIT
);
456 /* Set 2nd to 5th source address */
457 for (i
= 0; i
< 4 && len
; i
++)
458 xgene_dma_set_src_buffer(xgene_dma_lookup_ext8(desc2
, i
),
461 /* Invalidate unused source address field */
463 xgene_dma_invalidate_buffer(xgene_dma_lookup_ext8(desc2
, i
));
465 /* Updated flag that we have prepared 64B descriptor */
466 desc_sw
->flags
|= XGENE_DMA_FLAG_64B_DESC
;
469 static void xgene_dma_prep_xor_desc(struct xgene_dma_chan
*chan
,
470 struct xgene_dma_desc_sw
*desc_sw
,
471 dma_addr_t
*dst
, dma_addr_t
*src
,
472 u32 src_cnt
, size_t *nbytes
,
475 struct xgene_dma_desc_hw
*desc1
, *desc2
;
476 size_t len
= *nbytes
;
479 desc1
= &desc_sw
->desc1
;
480 desc2
= &desc_sw
->desc2
;
482 /* Initialize DMA descriptor */
483 xgene_dma_init_desc(desc1
, chan
->tx_ring
.dst_ring_num
);
485 /* Set destination address */
486 desc1
->m2
|= cpu_to_le64(XGENE_DMA_DESC_DR_BIT
);
487 desc1
->m3
|= cpu_to_le64(*dst
);
489 /* We have multiple source addresses, so need to set NV bit*/
490 desc1
->m0
|= cpu_to_le64(XGENE_DMA_DESC_NV_BIT
);
492 /* Set flyby opcode */
493 desc1
->m2
|= cpu_to_le64(xgene_dma_encode_xor_flyby(src_cnt
));
495 /* Set 1st to 5th source addresses */
496 for (i
= 0; i
< src_cnt
; i
++) {
498 xgene_dma_set_src_buffer((i
== 0) ? &desc1
->m1
:
499 xgene_dma_lookup_ext8(desc2
, i
- 1),
501 desc1
->m2
|= cpu_to_le64((scf
[i
] << ((i
+ 1) * 8)));
504 /* Update meta data */
506 *dst
+= XGENE_DMA_MAX_BYTE_CNT
;
508 /* We need always 64B descriptor to perform xor or pq operations */
509 desc_sw
->flags
|= XGENE_DMA_FLAG_64B_DESC
;
512 static dma_cookie_t
xgene_dma_tx_submit(struct dma_async_tx_descriptor
*tx
)
514 struct xgene_dma_desc_sw
*desc
;
515 struct xgene_dma_chan
*chan
;
521 chan
= to_dma_chan(tx
->chan
);
522 desc
= to_dma_desc_sw(tx
);
524 spin_lock_bh(&chan
->lock
);
526 cookie
= dma_cookie_assign(tx
);
528 /* Add this transaction list onto the tail of the pending queue */
529 list_splice_tail_init(&desc
->tx_list
, &chan
->ld_pending
);
531 spin_unlock_bh(&chan
->lock
);
536 static void xgene_dma_clean_descriptor(struct xgene_dma_chan
*chan
,
537 struct xgene_dma_desc_sw
*desc
)
539 list_del(&desc
->node
);
540 chan_dbg(chan
, "LD %p free\n", desc
);
541 dma_pool_free(chan
->desc_pool
, desc
, desc
->tx
.phys
);
544 static struct xgene_dma_desc_sw
*xgene_dma_alloc_descriptor(
545 struct xgene_dma_chan
*chan
)
547 struct xgene_dma_desc_sw
*desc
;
550 desc
= dma_pool_zalloc(chan
->desc_pool
, GFP_NOWAIT
, &phys
);
552 chan_err(chan
, "Failed to allocate LDs\n");
556 INIT_LIST_HEAD(&desc
->tx_list
);
557 desc
->tx
.phys
= phys
;
558 desc
->tx
.tx_submit
= xgene_dma_tx_submit
;
559 dma_async_tx_descriptor_init(&desc
->tx
, &chan
->dma_chan
);
561 chan_dbg(chan
, "LD %p allocated\n", desc
);
567 * xgene_dma_clean_completed_descriptor - free all descriptors which
568 * has been completed and acked
569 * @chan: X-Gene DMA channel
571 * This function is used on all completed and acked descriptors.
573 static void xgene_dma_clean_completed_descriptor(struct xgene_dma_chan
*chan
)
575 struct xgene_dma_desc_sw
*desc
, *_desc
;
577 /* Run the callback for each descriptor, in order */
578 list_for_each_entry_safe(desc
, _desc
, &chan
->ld_completed
, node
) {
579 if (async_tx_test_ack(&desc
->tx
))
580 xgene_dma_clean_descriptor(chan
, desc
);
585 * xgene_dma_run_tx_complete_actions - cleanup a single link descriptor
586 * @chan: X-Gene DMA channel
587 * @desc: descriptor to cleanup and free
589 * This function is used on a descriptor which has been executed by the DMA
590 * controller. It will run any callbacks, submit any dependencies.
592 static void xgene_dma_run_tx_complete_actions(struct xgene_dma_chan
*chan
,
593 struct xgene_dma_desc_sw
*desc
)
595 struct dma_async_tx_descriptor
*tx
= &desc
->tx
;
598 * If this is not the last transaction in the group,
599 * then no need to complete cookie and run any callback as
600 * this is not the tx_descriptor which had been sent to caller
601 * of this DMA request
607 dma_cookie_complete(tx
);
609 /* Run the link descriptor callback function */
611 tx
->callback(tx
->callback_param
);
613 dma_descriptor_unmap(tx
);
615 /* Run any dependencies */
616 dma_run_dependencies(tx
);
620 * xgene_dma_clean_running_descriptor - move the completed descriptor from
621 * ld_running to ld_completed
622 * @chan: X-Gene DMA channel
623 * @desc: the descriptor which is completed
625 * Free the descriptor directly if acked by async_tx api,
626 * else move it to queue ld_completed.
628 static void xgene_dma_clean_running_descriptor(struct xgene_dma_chan
*chan
,
629 struct xgene_dma_desc_sw
*desc
)
631 /* Remove from the list of running transactions */
632 list_del(&desc
->node
);
635 * the client is allowed to attach dependent operations
638 if (!async_tx_test_ack(&desc
->tx
)) {
640 * Move this descriptor to the list of descriptors which is
641 * completed, but still awaiting the 'ack' bit to be set.
643 list_add_tail(&desc
->node
, &chan
->ld_completed
);
647 chan_dbg(chan
, "LD %p free\n", desc
);
648 dma_pool_free(chan
->desc_pool
, desc
, desc
->tx
.phys
);
651 static void xgene_chan_xfer_request(struct xgene_dma_chan
*chan
,
652 struct xgene_dma_desc_sw
*desc_sw
)
654 struct xgene_dma_ring
*ring
= &chan
->tx_ring
;
655 struct xgene_dma_desc_hw
*desc_hw
;
657 /* Get hw descriptor from DMA tx ring */
658 desc_hw
= &ring
->desc_hw
[ring
->head
];
661 * Increment the head count to point next
662 * descriptor for next time
664 if (++ring
->head
== ring
->slots
)
667 /* Copy prepared sw descriptor data to hw descriptor */
668 memcpy(desc_hw
, &desc_sw
->desc1
, sizeof(*desc_hw
));
671 * Check if we have prepared 64B descriptor,
672 * in this case we need one more hw descriptor
674 if (desc_sw
->flags
& XGENE_DMA_FLAG_64B_DESC
) {
675 desc_hw
= &ring
->desc_hw
[ring
->head
];
677 if (++ring
->head
== ring
->slots
)
680 memcpy(desc_hw
, &desc_sw
->desc2
, sizeof(*desc_hw
));
683 /* Increment the pending transaction count */
684 chan
->pending
+= ((desc_sw
->flags
&
685 XGENE_DMA_FLAG_64B_DESC
) ? 2 : 1);
687 /* Notify the hw that we have descriptor ready for execution */
688 iowrite32((desc_sw
->flags
& XGENE_DMA_FLAG_64B_DESC
) ?
693 * xgene_chan_xfer_ld_pending - push any pending transactions to hw
694 * @chan : X-Gene DMA channel
696 * LOCKING: must hold chan->lock
698 static void xgene_chan_xfer_ld_pending(struct xgene_dma_chan
*chan
)
700 struct xgene_dma_desc_sw
*desc_sw
, *_desc_sw
;
703 * If the list of pending descriptors is empty, then we
704 * don't need to do any work at all
706 if (list_empty(&chan
->ld_pending
)) {
707 chan_dbg(chan
, "No pending LDs\n");
712 * Move elements from the queue of pending transactions onto the list
713 * of running transactions and push it to hw for further executions
715 list_for_each_entry_safe(desc_sw
, _desc_sw
, &chan
->ld_pending
, node
) {
717 * Check if have pushed max number of transactions to hw
718 * as capable, so let's stop here and will push remaining
719 * elements from pening ld queue after completing some
720 * descriptors that we have already pushed
722 if (chan
->pending
>= chan
->max_outstanding
)
725 xgene_chan_xfer_request(chan
, desc_sw
);
728 * Delete this element from ld pending queue and append it to
731 list_move_tail(&desc_sw
->node
, &chan
->ld_running
);
736 * xgene_dma_cleanup_descriptors - cleanup link descriptors which are completed
737 * and move them to ld_completed to free until flag 'ack' is set
738 * @chan: X-Gene DMA channel
740 * This function is used on descriptors which have been executed by the DMA
741 * controller. It will run any callbacks, submit any dependencies, then
742 * free these descriptors if flag 'ack' is set.
744 static void xgene_dma_cleanup_descriptors(struct xgene_dma_chan
*chan
)
746 struct xgene_dma_ring
*ring
= &chan
->rx_ring
;
747 struct xgene_dma_desc_sw
*desc_sw
, *_desc_sw
;
748 struct xgene_dma_desc_hw
*desc_hw
;
749 struct list_head ld_completed
;
752 INIT_LIST_HEAD(&ld_completed
);
754 spin_lock_bh(&chan
->lock
);
756 /* Clean already completed and acked descriptors */
757 xgene_dma_clean_completed_descriptor(chan
);
759 /* Move all completed descriptors to ld completed queue, in order */
760 list_for_each_entry_safe(desc_sw
, _desc_sw
, &chan
->ld_running
, node
) {
761 /* Get subsequent hw descriptor from DMA rx ring */
762 desc_hw
= &ring
->desc_hw
[ring
->head
];
764 /* Check if this descriptor has been completed */
765 if (unlikely(le64_to_cpu(desc_hw
->m0
) ==
766 XGENE_DMA_DESC_EMPTY_SIGNATURE
))
769 if (++ring
->head
== ring
->slots
)
772 /* Check if we have any error with DMA transactions */
773 status
= XGENE_DMA_DESC_STATUS(
774 XGENE_DMA_DESC_ELERR_RD(le64_to_cpu(
776 XGENE_DMA_DESC_LERR_RD(le64_to_cpu(
779 /* Print the DMA error type */
780 chan_err(chan
, "%s\n", xgene_dma_desc_err
[status
]);
783 * We have DMA transactions error here. Dump DMA Tx
784 * and Rx descriptors for this request */
785 XGENE_DMA_DESC_DUMP(&desc_sw
->desc1
,
786 "X-Gene DMA TX DESC1: ");
788 if (desc_sw
->flags
& XGENE_DMA_FLAG_64B_DESC
)
789 XGENE_DMA_DESC_DUMP(&desc_sw
->desc2
,
790 "X-Gene DMA TX DESC2: ");
792 XGENE_DMA_DESC_DUMP(desc_hw
,
793 "X-Gene DMA RX ERR DESC: ");
796 /* Notify the hw about this completed descriptor */
797 iowrite32(-1, ring
->cmd
);
799 /* Mark this hw descriptor as processed */
800 desc_hw
->m0
= cpu_to_le64(XGENE_DMA_DESC_EMPTY_SIGNATURE
);
803 * Decrement the pending transaction count
804 * as we have processed one
806 chan
->pending
-= ((desc_sw
->flags
&
807 XGENE_DMA_FLAG_64B_DESC
) ? 2 : 1);
810 * Delete this node from ld running queue and append it to
811 * ld completed queue for further processing
813 list_move_tail(&desc_sw
->node
, &ld_completed
);
817 * Start any pending transactions automatically
818 * In the ideal case, we keep the DMA controller busy while we go
819 * ahead and free the descriptors below.
821 xgene_chan_xfer_ld_pending(chan
);
823 spin_unlock_bh(&chan
->lock
);
825 /* Run the callback for each descriptor, in order */
826 list_for_each_entry_safe(desc_sw
, _desc_sw
, &ld_completed
, node
) {
827 xgene_dma_run_tx_complete_actions(chan
, desc_sw
);
828 xgene_dma_clean_running_descriptor(chan
, desc_sw
);
832 static int xgene_dma_alloc_chan_resources(struct dma_chan
*dchan
)
834 struct xgene_dma_chan
*chan
= to_dma_chan(dchan
);
836 /* Has this channel already been allocated? */
840 chan
->desc_pool
= dma_pool_create(chan
->name
, chan
->dev
,
841 sizeof(struct xgene_dma_desc_sw
),
843 if (!chan
->desc_pool
) {
844 chan_err(chan
, "Failed to allocate descriptor pool\n");
848 chan_dbg(chan
, "Allocate descripto pool\n");
854 * xgene_dma_free_desc_list - Free all descriptors in a queue
855 * @chan: X-Gene DMA channel
856 * @list: the list to free
858 * LOCKING: must hold chan->lock
860 static void xgene_dma_free_desc_list(struct xgene_dma_chan
*chan
,
861 struct list_head
*list
)
863 struct xgene_dma_desc_sw
*desc
, *_desc
;
865 list_for_each_entry_safe(desc
, _desc
, list
, node
)
866 xgene_dma_clean_descriptor(chan
, desc
);
869 static void xgene_dma_free_chan_resources(struct dma_chan
*dchan
)
871 struct xgene_dma_chan
*chan
= to_dma_chan(dchan
);
873 chan_dbg(chan
, "Free all resources\n");
875 if (!chan
->desc_pool
)
878 /* Process all running descriptor */
879 xgene_dma_cleanup_descriptors(chan
);
881 spin_lock_bh(&chan
->lock
);
883 /* Clean all link descriptor queues */
884 xgene_dma_free_desc_list(chan
, &chan
->ld_pending
);
885 xgene_dma_free_desc_list(chan
, &chan
->ld_running
);
886 xgene_dma_free_desc_list(chan
, &chan
->ld_completed
);
888 spin_unlock_bh(&chan
->lock
);
890 /* Delete this channel DMA pool */
891 dma_pool_destroy(chan
->desc_pool
);
892 chan
->desc_pool
= NULL
;
895 static struct dma_async_tx_descriptor
*xgene_dma_prep_sg(
896 struct dma_chan
*dchan
, struct scatterlist
*dst_sg
,
897 u32 dst_nents
, struct scatterlist
*src_sg
,
898 u32 src_nents
, unsigned long flags
)
900 struct xgene_dma_desc_sw
*first
= NULL
, *new = NULL
;
901 struct xgene_dma_chan
*chan
;
902 size_t dst_avail
, src_avail
;
906 if (unlikely(!dchan
))
909 if (unlikely(!dst_nents
|| !src_nents
))
912 if (unlikely(!dst_sg
|| !src_sg
))
915 chan
= to_dma_chan(dchan
);
917 /* Get prepared for the loop */
918 dst_avail
= sg_dma_len(dst_sg
);
919 src_avail
= sg_dma_len(src_sg
);
923 /* Run until we are out of scatterlist entries */
925 /* Create the largest transaction possible */
926 len
= min_t(size_t, src_avail
, dst_avail
);
927 len
= min_t(size_t, len
, XGENE_DMA_MAX_64B_DESC_BYTE_CNT
);
931 dst
= sg_dma_address(dst_sg
) + sg_dma_len(dst_sg
) - dst_avail
;
932 src
= sg_dma_address(src_sg
) + sg_dma_len(src_sg
) - src_avail
;
934 /* Allocate the link descriptor from DMA pool */
935 new = xgene_dma_alloc_descriptor(chan
);
939 /* Prepare DMA descriptor */
940 xgene_dma_prep_cpy_desc(chan
, new, dst
, src
, len
);
946 async_tx_ack(&new->tx
);
948 /* update metadata */
952 /* Insert the link descriptor to the LD ring */
953 list_add_tail(&new->node
, &first
->tx_list
);
956 /* fetch the next dst scatterlist entry */
957 if (dst_avail
== 0) {
958 /* no more entries: we're done */
962 /* fetch the next entry: if there are no more: done */
963 dst_sg
= sg_next(dst_sg
);
968 dst_avail
= sg_dma_len(dst_sg
);
971 /* fetch the next src scatterlist entry */
972 if (src_avail
== 0) {
973 /* no more entries: we're done */
977 /* fetch the next entry: if there are no more: done */
978 src_sg
= sg_next(src_sg
);
983 src_avail
= sg_dma_len(src_sg
);
990 new->tx
.flags
= flags
; /* client is in control of this ack */
991 new->tx
.cookie
= -EBUSY
;
992 list_splice(&first
->tx_list
, &new->tx_list
);
999 xgene_dma_free_desc_list(chan
, &first
->tx_list
);
1003 static struct dma_async_tx_descriptor
*xgene_dma_prep_xor(
1004 struct dma_chan
*dchan
, dma_addr_t dst
, dma_addr_t
*src
,
1005 u32 src_cnt
, size_t len
, unsigned long flags
)
1007 struct xgene_dma_desc_sw
*first
= NULL
, *new;
1008 struct xgene_dma_chan
*chan
;
1009 static u8 multi
[XGENE_DMA_MAX_XOR_SRC
] = {
1010 0x01, 0x01, 0x01, 0x01, 0x01};
1012 if (unlikely(!dchan
|| !len
))
1015 chan
= to_dma_chan(dchan
);
1018 /* Allocate the link descriptor from DMA pool */
1019 new = xgene_dma_alloc_descriptor(chan
);
1023 /* Prepare xor DMA descriptor */
1024 xgene_dma_prep_xor_desc(chan
, new, &dst
, src
,
1025 src_cnt
, &len
, multi
);
1031 async_tx_ack(&new->tx
);
1033 /* Insert the link descriptor to the LD ring */
1034 list_add_tail(&new->node
, &first
->tx_list
);
1037 new->tx
.flags
= flags
; /* client is in control of this ack */
1038 new->tx
.cookie
= -EBUSY
;
1039 list_splice(&first
->tx_list
, &new->tx_list
);
1047 xgene_dma_free_desc_list(chan
, &first
->tx_list
);
1051 static struct dma_async_tx_descriptor
*xgene_dma_prep_pq(
1052 struct dma_chan
*dchan
, dma_addr_t
*dst
, dma_addr_t
*src
,
1053 u32 src_cnt
, const u8
*scf
, size_t len
, unsigned long flags
)
1055 struct xgene_dma_desc_sw
*first
= NULL
, *new;
1056 struct xgene_dma_chan
*chan
;
1058 dma_addr_t _src
[XGENE_DMA_MAX_XOR_SRC
];
1059 static u8 multi
[XGENE_DMA_MAX_XOR_SRC
] = {0x01, 0x01, 0x01, 0x01, 0x01};
1061 if (unlikely(!dchan
|| !len
))
1064 chan
= to_dma_chan(dchan
);
1067 * Save source addresses on local variable, may be we have to
1068 * prepare two descriptor to generate P and Q if both enabled
1069 * in the flags by client
1071 memcpy(_src
, src
, sizeof(*src
) * src_cnt
);
1073 if (flags
& DMA_PREP_PQ_DISABLE_P
)
1076 if (flags
& DMA_PREP_PQ_DISABLE_Q
)
1080 /* Allocate the link descriptor from DMA pool */
1081 new = xgene_dma_alloc_descriptor(chan
);
1089 async_tx_ack(&new->tx
);
1091 /* Insert the link descriptor to the LD ring */
1092 list_add_tail(&new->node
, &first
->tx_list
);
1095 * Prepare DMA descriptor to generate P,
1096 * if DMA_PREP_PQ_DISABLE_P flag is not set
1099 xgene_dma_prep_xor_desc(chan
, new, &dst
[0], src
,
1100 src_cnt
, &len
, multi
);
1105 * Prepare DMA descriptor to generate Q,
1106 * if DMA_PREP_PQ_DISABLE_Q flag is not set
1109 xgene_dma_prep_xor_desc(chan
, new, &dst
[1], _src
,
1110 src_cnt
, &_len
, scf
);
1112 } while (len
|| _len
);
1114 new->tx
.flags
= flags
; /* client is in control of this ack */
1115 new->tx
.cookie
= -EBUSY
;
1116 list_splice(&first
->tx_list
, &new->tx_list
);
1124 xgene_dma_free_desc_list(chan
, &first
->tx_list
);
1128 static void xgene_dma_issue_pending(struct dma_chan
*dchan
)
1130 struct xgene_dma_chan
*chan
= to_dma_chan(dchan
);
1132 spin_lock_bh(&chan
->lock
);
1133 xgene_chan_xfer_ld_pending(chan
);
1134 spin_unlock_bh(&chan
->lock
);
1137 static enum dma_status
xgene_dma_tx_status(struct dma_chan
*dchan
,
1138 dma_cookie_t cookie
,
1139 struct dma_tx_state
*txstate
)
1141 return dma_cookie_status(dchan
, cookie
, txstate
);
1144 static void xgene_dma_tasklet_cb(unsigned long data
)
1146 struct xgene_dma_chan
*chan
= (struct xgene_dma_chan
*)data
;
1148 /* Run all cleanup for descriptors which have been completed */
1149 xgene_dma_cleanup_descriptors(chan
);
1151 /* Re-enable DMA channel IRQ */
1152 enable_irq(chan
->rx_irq
);
1155 static irqreturn_t
xgene_dma_chan_ring_isr(int irq
, void *id
)
1157 struct xgene_dma_chan
*chan
= (struct xgene_dma_chan
*)id
;
1162 * Disable DMA channel IRQ until we process completed
1165 disable_irq_nosync(chan
->rx_irq
);
1168 * Schedule the tasklet to handle all cleanup of the current
1169 * transaction. It will start a new transaction if there is
1172 tasklet_schedule(&chan
->tasklet
);
1177 static irqreturn_t
xgene_dma_err_isr(int irq
, void *id
)
1179 struct xgene_dma
*pdma
= (struct xgene_dma
*)id
;
1180 unsigned long int_mask
;
1183 val
= ioread32(pdma
->csr_dma
+ XGENE_DMA_INT
);
1185 /* Clear DMA interrupts */
1186 iowrite32(val
, pdma
->csr_dma
+ XGENE_DMA_INT
);
1188 /* Print DMA error info */
1189 int_mask
= val
>> XGENE_DMA_INT_MASK_SHIFT
;
1190 for_each_set_bit(i
, &int_mask
, ARRAY_SIZE(xgene_dma_err
))
1192 "Interrupt status 0x%08X %s\n", val
, xgene_dma_err
[i
]);
1197 static void xgene_dma_wr_ring_state(struct xgene_dma_ring
*ring
)
1201 iowrite32(ring
->num
, ring
->pdma
->csr_ring
+ XGENE_DMA_RING_STATE
);
1203 for (i
= 0; i
< XGENE_DMA_RING_NUM_CONFIG
; i
++)
1204 iowrite32(ring
->state
[i
], ring
->pdma
->csr_ring
+
1205 XGENE_DMA_RING_STATE_WR_BASE
+ (i
* 4));
1208 static void xgene_dma_clr_ring_state(struct xgene_dma_ring
*ring
)
1210 memset(ring
->state
, 0, sizeof(u32
) * XGENE_DMA_RING_NUM_CONFIG
);
1211 xgene_dma_wr_ring_state(ring
);
1214 static void xgene_dma_setup_ring(struct xgene_dma_ring
*ring
)
1216 void *ring_cfg
= ring
->state
;
1217 u64 addr
= ring
->desc_paddr
;
1220 ring
->slots
= ring
->size
/ XGENE_DMA_RING_WQ_DESC_SIZE
;
1222 /* Clear DMA ring state */
1223 xgene_dma_clr_ring_state(ring
);
1225 /* Set DMA ring type */
1226 XGENE_DMA_RING_TYPE_SET(ring_cfg
, XGENE_DMA_RING_TYPE_REGULAR
);
1228 if (ring
->owner
== XGENE_DMA_RING_OWNER_DMA
) {
1229 /* Set recombination buffer and timeout */
1230 XGENE_DMA_RING_RECOMBBUF_SET(ring_cfg
);
1231 XGENE_DMA_RING_RECOMTIMEOUTL_SET(ring_cfg
);
1232 XGENE_DMA_RING_RECOMTIMEOUTH_SET(ring_cfg
);
1235 /* Initialize DMA ring state */
1236 XGENE_DMA_RING_SELTHRSH_SET(ring_cfg
);
1237 XGENE_DMA_RING_ACCEPTLERR_SET(ring_cfg
);
1238 XGENE_DMA_RING_COHERENT_SET(ring_cfg
);
1239 XGENE_DMA_RING_ADDRL_SET(ring_cfg
, addr
);
1240 XGENE_DMA_RING_ADDRH_SET(ring_cfg
, addr
);
1241 XGENE_DMA_RING_SIZE_SET(ring_cfg
, ring
->cfgsize
);
1243 /* Write DMA ring configurations */
1244 xgene_dma_wr_ring_state(ring
);
1246 /* Set DMA ring id */
1247 iowrite32(XGENE_DMA_RING_ID_SETUP(ring
->id
),
1248 ring
->pdma
->csr_ring
+ XGENE_DMA_RING_ID
);
1250 /* Set DMA ring buffer */
1251 iowrite32(XGENE_DMA_RING_ID_BUF_SETUP(ring
->num
),
1252 ring
->pdma
->csr_ring
+ XGENE_DMA_RING_ID_BUF
);
1254 if (ring
->owner
!= XGENE_DMA_RING_OWNER_CPU
)
1257 /* Set empty signature to DMA Rx ring descriptors */
1258 for (i
= 0; i
< ring
->slots
; i
++) {
1259 struct xgene_dma_desc_hw
*desc
;
1261 desc
= &ring
->desc_hw
[i
];
1262 desc
->m0
= cpu_to_le64(XGENE_DMA_DESC_EMPTY_SIGNATURE
);
1265 /* Enable DMA Rx ring interrupt */
1266 val
= ioread32(ring
->pdma
->csr_ring
+ XGENE_DMA_RING_NE_INT_MODE
);
1267 XGENE_DMA_RING_NE_INT_MODE_SET(val
, ring
->buf_num
);
1268 iowrite32(val
, ring
->pdma
->csr_ring
+ XGENE_DMA_RING_NE_INT_MODE
);
1271 static void xgene_dma_clear_ring(struct xgene_dma_ring
*ring
)
1275 if (ring
->owner
== XGENE_DMA_RING_OWNER_CPU
) {
1276 /* Disable DMA Rx ring interrupt */
1277 val
= ioread32(ring
->pdma
->csr_ring
+
1278 XGENE_DMA_RING_NE_INT_MODE
);
1279 XGENE_DMA_RING_NE_INT_MODE_RESET(val
, ring
->buf_num
);
1280 iowrite32(val
, ring
->pdma
->csr_ring
+
1281 XGENE_DMA_RING_NE_INT_MODE
);
1284 /* Clear DMA ring state */
1285 ring_id
= XGENE_DMA_RING_ID_SETUP(ring
->id
);
1286 iowrite32(ring_id
, ring
->pdma
->csr_ring
+ XGENE_DMA_RING_ID
);
1288 iowrite32(0, ring
->pdma
->csr_ring
+ XGENE_DMA_RING_ID_BUF
);
1289 xgene_dma_clr_ring_state(ring
);
1292 static void xgene_dma_set_ring_cmd(struct xgene_dma_ring
*ring
)
1294 ring
->cmd_base
= ring
->pdma
->csr_ring_cmd
+
1295 XGENE_DMA_RING_CMD_BASE_OFFSET((ring
->num
-
1296 XGENE_DMA_RING_NUM
));
1298 ring
->cmd
= ring
->cmd_base
+ XGENE_DMA_RING_CMD_OFFSET
;
1301 static int xgene_dma_get_ring_size(struct xgene_dma_chan
*chan
,
1302 enum xgene_dma_ring_cfgsize cfgsize
)
1307 case XGENE_DMA_RING_CFG_SIZE_512B
:
1310 case XGENE_DMA_RING_CFG_SIZE_2KB
:
1313 case XGENE_DMA_RING_CFG_SIZE_16KB
:
1316 case XGENE_DMA_RING_CFG_SIZE_64KB
:
1319 case XGENE_DMA_RING_CFG_SIZE_512KB
:
1323 chan_err(chan
, "Unsupported cfg ring size %d\n", cfgsize
);
1330 static void xgene_dma_delete_ring_one(struct xgene_dma_ring
*ring
)
1332 /* Clear DMA ring configurations */
1333 xgene_dma_clear_ring(ring
);
1335 /* De-allocate DMA ring descriptor */
1336 if (ring
->desc_vaddr
) {
1337 dma_free_coherent(ring
->pdma
->dev
, ring
->size
,
1338 ring
->desc_vaddr
, ring
->desc_paddr
);
1339 ring
->desc_vaddr
= NULL
;
1343 static void xgene_dma_delete_chan_rings(struct xgene_dma_chan
*chan
)
1345 xgene_dma_delete_ring_one(&chan
->rx_ring
);
1346 xgene_dma_delete_ring_one(&chan
->tx_ring
);
1349 static int xgene_dma_create_ring_one(struct xgene_dma_chan
*chan
,
1350 struct xgene_dma_ring
*ring
,
1351 enum xgene_dma_ring_cfgsize cfgsize
)
1355 /* Setup DMA ring descriptor variables */
1356 ring
->pdma
= chan
->pdma
;
1357 ring
->cfgsize
= cfgsize
;
1358 ring
->num
= chan
->pdma
->ring_num
++;
1359 ring
->id
= XGENE_DMA_RING_ID_GET(ring
->owner
, ring
->buf_num
);
1361 ret
= xgene_dma_get_ring_size(chan
, cfgsize
);
1366 /* Allocate memory for DMA ring descriptor */
1367 ring
->desc_vaddr
= dma_zalloc_coherent(chan
->dev
, ring
->size
,
1368 &ring
->desc_paddr
, GFP_KERNEL
);
1369 if (!ring
->desc_vaddr
) {
1370 chan_err(chan
, "Failed to allocate ring desc\n");
1374 /* Configure and enable DMA ring */
1375 xgene_dma_set_ring_cmd(ring
);
1376 xgene_dma_setup_ring(ring
);
1381 static int xgene_dma_create_chan_rings(struct xgene_dma_chan
*chan
)
1383 struct xgene_dma_ring
*rx_ring
= &chan
->rx_ring
;
1384 struct xgene_dma_ring
*tx_ring
= &chan
->tx_ring
;
1387 /* Create DMA Rx ring descriptor */
1388 rx_ring
->owner
= XGENE_DMA_RING_OWNER_CPU
;
1389 rx_ring
->buf_num
= XGENE_DMA_CPU_BUFNUM
+ chan
->id
;
1391 ret
= xgene_dma_create_ring_one(chan
, rx_ring
,
1392 XGENE_DMA_RING_CFG_SIZE_64KB
);
1396 chan_dbg(chan
, "Rx ring id 0x%X num %d desc 0x%p\n",
1397 rx_ring
->id
, rx_ring
->num
, rx_ring
->desc_vaddr
);
1399 /* Create DMA Tx ring descriptor */
1400 tx_ring
->owner
= XGENE_DMA_RING_OWNER_DMA
;
1401 tx_ring
->buf_num
= XGENE_DMA_BUFNUM
+ chan
->id
;
1403 ret
= xgene_dma_create_ring_one(chan
, tx_ring
,
1404 XGENE_DMA_RING_CFG_SIZE_64KB
);
1406 xgene_dma_delete_ring_one(rx_ring
);
1410 tx_ring
->dst_ring_num
= XGENE_DMA_RING_DST_ID(rx_ring
->num
);
1413 "Tx ring id 0x%X num %d desc 0x%p\n",
1414 tx_ring
->id
, tx_ring
->num
, tx_ring
->desc_vaddr
);
1416 /* Set the max outstanding request possible to this channel */
1417 chan
->max_outstanding
= tx_ring
->slots
;
1422 static int xgene_dma_init_rings(struct xgene_dma
*pdma
)
1426 for (i
= 0; i
< XGENE_DMA_MAX_CHANNEL
; i
++) {
1427 ret
= xgene_dma_create_chan_rings(&pdma
->chan
[i
]);
1429 for (j
= 0; j
< i
; j
++)
1430 xgene_dma_delete_chan_rings(&pdma
->chan
[j
]);
1438 static void xgene_dma_enable(struct xgene_dma
*pdma
)
1442 /* Configure and enable DMA engine */
1443 val
= ioread32(pdma
->csr_dma
+ XGENE_DMA_GCR
);
1444 XGENE_DMA_CH_SETUP(val
);
1445 XGENE_DMA_ENABLE(val
);
1446 iowrite32(val
, pdma
->csr_dma
+ XGENE_DMA_GCR
);
1449 static void xgene_dma_disable(struct xgene_dma
*pdma
)
1453 val
= ioread32(pdma
->csr_dma
+ XGENE_DMA_GCR
);
1454 XGENE_DMA_DISABLE(val
);
1455 iowrite32(val
, pdma
->csr_dma
+ XGENE_DMA_GCR
);
1458 static void xgene_dma_mask_interrupts(struct xgene_dma
*pdma
)
1461 * Mask DMA ring overflow, underflow and
1462 * AXI write/read error interrupts
1464 iowrite32(XGENE_DMA_INT_ALL_MASK
,
1465 pdma
->csr_dma
+ XGENE_DMA_RING_INT0_MASK
);
1466 iowrite32(XGENE_DMA_INT_ALL_MASK
,
1467 pdma
->csr_dma
+ XGENE_DMA_RING_INT1_MASK
);
1468 iowrite32(XGENE_DMA_INT_ALL_MASK
,
1469 pdma
->csr_dma
+ XGENE_DMA_RING_INT2_MASK
);
1470 iowrite32(XGENE_DMA_INT_ALL_MASK
,
1471 pdma
->csr_dma
+ XGENE_DMA_RING_INT3_MASK
);
1472 iowrite32(XGENE_DMA_INT_ALL_MASK
,
1473 pdma
->csr_dma
+ XGENE_DMA_RING_INT4_MASK
);
1475 /* Mask DMA error interrupts */
1476 iowrite32(XGENE_DMA_INT_ALL_MASK
, pdma
->csr_dma
+ XGENE_DMA_INT_MASK
);
1479 static void xgene_dma_unmask_interrupts(struct xgene_dma
*pdma
)
1482 * Unmask DMA ring overflow, underflow and
1483 * AXI write/read error interrupts
1485 iowrite32(XGENE_DMA_INT_ALL_UNMASK
,
1486 pdma
->csr_dma
+ XGENE_DMA_RING_INT0_MASK
);
1487 iowrite32(XGENE_DMA_INT_ALL_UNMASK
,
1488 pdma
->csr_dma
+ XGENE_DMA_RING_INT1_MASK
);
1489 iowrite32(XGENE_DMA_INT_ALL_UNMASK
,
1490 pdma
->csr_dma
+ XGENE_DMA_RING_INT2_MASK
);
1491 iowrite32(XGENE_DMA_INT_ALL_UNMASK
,
1492 pdma
->csr_dma
+ XGENE_DMA_RING_INT3_MASK
);
1493 iowrite32(XGENE_DMA_INT_ALL_UNMASK
,
1494 pdma
->csr_dma
+ XGENE_DMA_RING_INT4_MASK
);
1496 /* Unmask DMA error interrupts */
1497 iowrite32(XGENE_DMA_INT_ALL_UNMASK
,
1498 pdma
->csr_dma
+ XGENE_DMA_INT_MASK
);
1501 static void xgene_dma_init_hw(struct xgene_dma
*pdma
)
1505 /* Associate DMA ring to corresponding ring HW */
1506 iowrite32(XGENE_DMA_ASSOC_RING_MNGR1
,
1507 pdma
->csr_dma
+ XGENE_DMA_CFG_RING_WQ_ASSOC
);
1509 /* Configure RAID6 polynomial control setting */
1510 if (is_pq_enabled(pdma
))
1511 iowrite32(XGENE_DMA_RAID6_MULTI_CTRL(0x1D),
1512 pdma
->csr_dma
+ XGENE_DMA_RAID6_CONT
);
1514 dev_info(pdma
->dev
, "PQ is disabled in HW\n");
1516 xgene_dma_enable(pdma
);
1517 xgene_dma_unmask_interrupts(pdma
);
1519 /* Get DMA id and version info */
1520 val
= ioread32(pdma
->csr_dma
+ XGENE_DMA_IPBRR
);
1522 /* DMA device info */
1524 "X-Gene DMA v%d.%02d.%02d driver registered %d channels",
1525 XGENE_DMA_REV_NO_RD(val
), XGENE_DMA_BUS_ID_RD(val
),
1526 XGENE_DMA_DEV_ID_RD(val
), XGENE_DMA_MAX_CHANNEL
);
1529 static int xgene_dma_init_ring_mngr(struct xgene_dma
*pdma
)
1531 if (ioread32(pdma
->csr_ring
+ XGENE_DMA_RING_CLKEN
) &&
1532 (!ioread32(pdma
->csr_ring
+ XGENE_DMA_RING_SRST
)))
1535 iowrite32(0x3, pdma
->csr_ring
+ XGENE_DMA_RING_CLKEN
);
1536 iowrite32(0x0, pdma
->csr_ring
+ XGENE_DMA_RING_SRST
);
1538 /* Bring up memory */
1539 iowrite32(0x0, pdma
->csr_ring
+ XGENE_DMA_RING_MEM_RAM_SHUTDOWN
);
1541 /* Force a barrier */
1542 ioread32(pdma
->csr_ring
+ XGENE_DMA_RING_MEM_RAM_SHUTDOWN
);
1544 /* reset may take up to 1ms */
1545 usleep_range(1000, 1100);
1547 if (ioread32(pdma
->csr_ring
+ XGENE_DMA_RING_BLK_MEM_RDY
)
1548 != XGENE_DMA_RING_BLK_MEM_RDY_VAL
) {
1550 "Failed to release ring mngr memory from shutdown\n");
1554 /* program threshold set 1 and all hysteresis */
1555 iowrite32(XGENE_DMA_RING_THRESLD0_SET1_VAL
,
1556 pdma
->csr_ring
+ XGENE_DMA_RING_THRESLD0_SET1
);
1557 iowrite32(XGENE_DMA_RING_THRESLD1_SET1_VAL
,
1558 pdma
->csr_ring
+ XGENE_DMA_RING_THRESLD1_SET1
);
1559 iowrite32(XGENE_DMA_RING_HYSTERESIS_VAL
,
1560 pdma
->csr_ring
+ XGENE_DMA_RING_HYSTERESIS
);
1562 /* Enable QPcore and assign error queue */
1563 iowrite32(XGENE_DMA_RING_ENABLE
,
1564 pdma
->csr_ring
+ XGENE_DMA_RING_CONFIG
);
1569 static int xgene_dma_init_mem(struct xgene_dma
*pdma
)
1573 ret
= xgene_dma_init_ring_mngr(pdma
);
1577 /* Bring up memory */
1578 iowrite32(0x0, pdma
->csr_dma
+ XGENE_DMA_MEM_RAM_SHUTDOWN
);
1580 /* Force a barrier */
1581 ioread32(pdma
->csr_dma
+ XGENE_DMA_MEM_RAM_SHUTDOWN
);
1583 /* reset may take up to 1ms */
1584 usleep_range(1000, 1100);
1586 if (ioread32(pdma
->csr_dma
+ XGENE_DMA_BLK_MEM_RDY
)
1587 != XGENE_DMA_BLK_MEM_RDY_VAL
) {
1589 "Failed to release DMA memory from shutdown\n");
1596 static int xgene_dma_request_irqs(struct xgene_dma
*pdma
)
1598 struct xgene_dma_chan
*chan
;
1601 /* Register DMA error irq */
1602 ret
= devm_request_irq(pdma
->dev
, pdma
->err_irq
, xgene_dma_err_isr
,
1603 0, "dma_error", pdma
);
1606 "Failed to register error IRQ %d\n", pdma
->err_irq
);
1610 /* Register DMA channel rx irq */
1611 for (i
= 0; i
< XGENE_DMA_MAX_CHANNEL
; i
++) {
1612 chan
= &pdma
->chan
[i
];
1613 ret
= devm_request_irq(chan
->dev
, chan
->rx_irq
,
1614 xgene_dma_chan_ring_isr
,
1615 0, chan
->name
, chan
);
1617 chan_err(chan
, "Failed to register Rx IRQ %d\n",
1619 devm_free_irq(pdma
->dev
, pdma
->err_irq
, pdma
);
1621 for (j
= 0; j
< i
; j
++) {
1622 chan
= &pdma
->chan
[i
];
1623 devm_free_irq(chan
->dev
, chan
->rx_irq
, chan
);
1633 static void xgene_dma_free_irqs(struct xgene_dma
*pdma
)
1635 struct xgene_dma_chan
*chan
;
1638 /* Free DMA device error irq */
1639 devm_free_irq(pdma
->dev
, pdma
->err_irq
, pdma
);
1641 for (i
= 0; i
< XGENE_DMA_MAX_CHANNEL
; i
++) {
1642 chan
= &pdma
->chan
[i
];
1643 devm_free_irq(chan
->dev
, chan
->rx_irq
, chan
);
1647 static void xgene_dma_set_caps(struct xgene_dma_chan
*chan
,
1648 struct dma_device
*dma_dev
)
1650 /* Initialize DMA device capability mask */
1651 dma_cap_zero(dma_dev
->cap_mask
);
1653 /* Set DMA device capability */
1654 dma_cap_set(DMA_SG
, dma_dev
->cap_mask
);
1656 /* Basically here, the X-Gene SoC DMA engine channel 0 supports XOR
1657 * and channel 1 supports XOR, PQ both. First thing here is we have
1658 * mechanism in hw to enable/disable PQ/XOR supports on channel 1,
1659 * we can make sure this by reading SoC Efuse register.
1660 * Second thing, we have hw errata that if we run channel 0 and
1661 * channel 1 simultaneously with executing XOR and PQ request,
1662 * suddenly DMA engine hangs, So here we enable XOR on channel 0 only
1663 * if XOR and PQ supports on channel 1 is disabled.
1665 if ((chan
->id
== XGENE_DMA_PQ_CHANNEL
) &&
1666 is_pq_enabled(chan
->pdma
)) {
1667 dma_cap_set(DMA_PQ
, dma_dev
->cap_mask
);
1668 dma_cap_set(DMA_XOR
, dma_dev
->cap_mask
);
1669 } else if ((chan
->id
== XGENE_DMA_XOR_CHANNEL
) &&
1670 !is_pq_enabled(chan
->pdma
)) {
1671 dma_cap_set(DMA_XOR
, dma_dev
->cap_mask
);
1674 /* Set base and prep routines */
1675 dma_dev
->dev
= chan
->dev
;
1676 dma_dev
->device_alloc_chan_resources
= xgene_dma_alloc_chan_resources
;
1677 dma_dev
->device_free_chan_resources
= xgene_dma_free_chan_resources
;
1678 dma_dev
->device_issue_pending
= xgene_dma_issue_pending
;
1679 dma_dev
->device_tx_status
= xgene_dma_tx_status
;
1680 dma_dev
->device_prep_dma_sg
= xgene_dma_prep_sg
;
1682 if (dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
)) {
1683 dma_dev
->device_prep_dma_xor
= xgene_dma_prep_xor
;
1684 dma_dev
->max_xor
= XGENE_DMA_MAX_XOR_SRC
;
1685 dma_dev
->xor_align
= DMAENGINE_ALIGN_64_BYTES
;
1688 if (dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
)) {
1689 dma_dev
->device_prep_dma_pq
= xgene_dma_prep_pq
;
1690 dma_dev
->max_pq
= XGENE_DMA_MAX_XOR_SRC
;
1691 dma_dev
->pq_align
= DMAENGINE_ALIGN_64_BYTES
;
1695 static int xgene_dma_async_register(struct xgene_dma
*pdma
, int id
)
1697 struct xgene_dma_chan
*chan
= &pdma
->chan
[id
];
1698 struct dma_device
*dma_dev
= &pdma
->dma_dev
[id
];
1701 chan
->dma_chan
.device
= dma_dev
;
1703 spin_lock_init(&chan
->lock
);
1704 INIT_LIST_HEAD(&chan
->ld_pending
);
1705 INIT_LIST_HEAD(&chan
->ld_running
);
1706 INIT_LIST_HEAD(&chan
->ld_completed
);
1707 tasklet_init(&chan
->tasklet
, xgene_dma_tasklet_cb
,
1708 (unsigned long)chan
);
1711 chan
->desc_pool
= NULL
;
1712 dma_cookie_init(&chan
->dma_chan
);
1714 /* Setup dma device capabilities and prep routines */
1715 xgene_dma_set_caps(chan
, dma_dev
);
1717 /* Initialize DMA device list head */
1718 INIT_LIST_HEAD(&dma_dev
->channels
);
1719 list_add_tail(&chan
->dma_chan
.device_node
, &dma_dev
->channels
);
1721 /* Register with Linux async DMA framework*/
1722 ret
= dma_async_device_register(dma_dev
);
1724 chan_err(chan
, "Failed to register async device %d", ret
);
1725 tasklet_kill(&chan
->tasklet
);
1730 /* DMA capability info */
1732 "%s: CAPABILITY ( %s%s%s)\n", dma_chan_name(&chan
->dma_chan
),
1733 dma_has_cap(DMA_SG
, dma_dev
->cap_mask
) ? "SGCPY " : "",
1734 dma_has_cap(DMA_XOR
, dma_dev
->cap_mask
) ? "XOR " : "",
1735 dma_has_cap(DMA_PQ
, dma_dev
->cap_mask
) ? "PQ " : "");
1740 static int xgene_dma_init_async(struct xgene_dma
*pdma
)
1744 for (i
= 0; i
< XGENE_DMA_MAX_CHANNEL
; i
++) {
1745 ret
= xgene_dma_async_register(pdma
, i
);
1747 for (j
= 0; j
< i
; j
++) {
1748 dma_async_device_unregister(&pdma
->dma_dev
[j
]);
1749 tasklet_kill(&pdma
->chan
[j
].tasklet
);
1759 static void xgene_dma_async_unregister(struct xgene_dma
*pdma
)
1763 for (i
= 0; i
< XGENE_DMA_MAX_CHANNEL
; i
++)
1764 dma_async_device_unregister(&pdma
->dma_dev
[i
]);
1767 static void xgene_dma_init_channels(struct xgene_dma
*pdma
)
1769 struct xgene_dma_chan
*chan
;
1772 pdma
->ring_num
= XGENE_DMA_RING_NUM
;
1774 for (i
= 0; i
< XGENE_DMA_MAX_CHANNEL
; i
++) {
1775 chan
= &pdma
->chan
[i
];
1776 chan
->dev
= pdma
->dev
;
1779 snprintf(chan
->name
, sizeof(chan
->name
), "dmachan%d", chan
->id
);
1783 static int xgene_dma_get_resources(struct platform_device
*pdev
,
1784 struct xgene_dma
*pdma
)
1786 struct resource
*res
;
1789 /* Get DMA csr region */
1790 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1792 dev_err(&pdev
->dev
, "Failed to get csr region\n");
1796 pdma
->csr_dma
= devm_ioremap(&pdev
->dev
, res
->start
,
1797 resource_size(res
));
1798 if (!pdma
->csr_dma
) {
1799 dev_err(&pdev
->dev
, "Failed to ioremap csr region");
1803 /* Get DMA ring csr region */
1804 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 1);
1806 dev_err(&pdev
->dev
, "Failed to get ring csr region\n");
1810 pdma
->csr_ring
= devm_ioremap(&pdev
->dev
, res
->start
,
1811 resource_size(res
));
1812 if (!pdma
->csr_ring
) {
1813 dev_err(&pdev
->dev
, "Failed to ioremap ring csr region");
1817 /* Get DMA ring cmd csr region */
1818 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 2);
1820 dev_err(&pdev
->dev
, "Failed to get ring cmd csr region\n");
1824 pdma
->csr_ring_cmd
= devm_ioremap(&pdev
->dev
, res
->start
,
1825 resource_size(res
));
1826 if (!pdma
->csr_ring_cmd
) {
1827 dev_err(&pdev
->dev
, "Failed to ioremap ring cmd csr region");
1831 pdma
->csr_ring_cmd
+= XGENE_DMA_RING_CMD_SM_OFFSET
;
1833 /* Get efuse csr region */
1834 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 3);
1836 dev_err(&pdev
->dev
, "Failed to get efuse csr region\n");
1840 pdma
->csr_efuse
= devm_ioremap(&pdev
->dev
, res
->start
,
1841 resource_size(res
));
1842 if (!pdma
->csr_efuse
) {
1843 dev_err(&pdev
->dev
, "Failed to ioremap efuse csr region");
1847 /* Get DMA error interrupt */
1848 irq
= platform_get_irq(pdev
, 0);
1850 dev_err(&pdev
->dev
, "Failed to get Error IRQ\n");
1854 pdma
->err_irq
= irq
;
1856 /* Get DMA Rx ring descriptor interrupts for all DMA channels */
1857 for (i
= 1; i
<= XGENE_DMA_MAX_CHANNEL
; i
++) {
1858 irq
= platform_get_irq(pdev
, i
);
1860 dev_err(&pdev
->dev
, "Failed to get Rx IRQ\n");
1864 pdma
->chan
[i
- 1].rx_irq
= irq
;
1870 static int xgene_dma_probe(struct platform_device
*pdev
)
1872 struct xgene_dma
*pdma
;
1875 pdma
= devm_kzalloc(&pdev
->dev
, sizeof(*pdma
), GFP_KERNEL
);
1879 pdma
->dev
= &pdev
->dev
;
1880 platform_set_drvdata(pdev
, pdma
);
1882 ret
= xgene_dma_get_resources(pdev
, pdma
);
1886 pdma
->clk
= devm_clk_get(&pdev
->dev
, NULL
);
1887 if (IS_ERR(pdma
->clk
) && !ACPI_COMPANION(&pdev
->dev
)) {
1888 dev_err(&pdev
->dev
, "Failed to get clk\n");
1889 return PTR_ERR(pdma
->clk
);
1892 /* Enable clk before accessing registers */
1893 if (!IS_ERR(pdma
->clk
)) {
1894 ret
= clk_prepare_enable(pdma
->clk
);
1896 dev_err(&pdev
->dev
, "Failed to enable clk %d\n", ret
);
1901 /* Remove DMA RAM out of shutdown */
1902 ret
= xgene_dma_init_mem(pdma
);
1904 goto err_clk_enable
;
1906 ret
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(42));
1908 dev_err(&pdev
->dev
, "No usable DMA configuration\n");
1912 /* Initialize DMA channels software state */
1913 xgene_dma_init_channels(pdma
);
1915 /* Configue DMA rings */
1916 ret
= xgene_dma_init_rings(pdma
);
1918 goto err_clk_enable
;
1920 ret
= xgene_dma_request_irqs(pdma
);
1922 goto err_request_irq
;
1924 /* Configure and enable DMA engine */
1925 xgene_dma_init_hw(pdma
);
1927 /* Register DMA device with linux async framework */
1928 ret
= xgene_dma_init_async(pdma
);
1930 goto err_async_init
;
1935 xgene_dma_free_irqs(pdma
);
1938 for (i
= 0; i
< XGENE_DMA_MAX_CHANNEL
; i
++)
1939 xgene_dma_delete_chan_rings(&pdma
->chan
[i
]);
1943 if (!IS_ERR(pdma
->clk
))
1944 clk_disable_unprepare(pdma
->clk
);
1949 static int xgene_dma_remove(struct platform_device
*pdev
)
1951 struct xgene_dma
*pdma
= platform_get_drvdata(pdev
);
1952 struct xgene_dma_chan
*chan
;
1955 xgene_dma_async_unregister(pdma
);
1957 /* Mask interrupts and disable DMA engine */
1958 xgene_dma_mask_interrupts(pdma
);
1959 xgene_dma_disable(pdma
);
1960 xgene_dma_free_irqs(pdma
);
1962 for (i
= 0; i
< XGENE_DMA_MAX_CHANNEL
; i
++) {
1963 chan
= &pdma
->chan
[i
];
1964 tasklet_kill(&chan
->tasklet
);
1965 xgene_dma_delete_chan_rings(chan
);
1968 if (!IS_ERR(pdma
->clk
))
1969 clk_disable_unprepare(pdma
->clk
);
1975 static const struct acpi_device_id xgene_dma_acpi_match_ptr
[] = {
1979 MODULE_DEVICE_TABLE(acpi
, xgene_dma_acpi_match_ptr
);
1982 static const struct of_device_id xgene_dma_of_match_ptr
[] = {
1983 {.compatible
= "apm,xgene-storm-dma",},
1986 MODULE_DEVICE_TABLE(of
, xgene_dma_of_match_ptr
);
1988 static struct platform_driver xgene_dma_driver
= {
1989 .probe
= xgene_dma_probe
,
1990 .remove
= xgene_dma_remove
,
1992 .name
= "X-Gene-DMA",
1993 .of_match_table
= xgene_dma_of_match_ptr
,
1994 .acpi_match_table
= ACPI_PTR(xgene_dma_acpi_match_ptr
),
1998 module_platform_driver(xgene_dma_driver
);
2000 MODULE_DESCRIPTION("APM X-Gene SoC DMA driver");
2001 MODULE_AUTHOR("Rameshwar Prasad Sahu <rsahu@apm.com>");
2002 MODULE_AUTHOR("Loc Ho <lho@apm.com>");
2003 MODULE_LICENSE("GPL");
2004 MODULE_VERSION("1.0");