2 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
5 * Copyright (C) 2010 Samsung Electronics Co. Ltd.
6 * Jaswinder Singh <jassi.brar@samsung.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/slab.h>
18 #include <linux/module.h>
19 #include <linux/string.h>
20 #include <linux/delay.h>
21 #include <linux/interrupt.h>
22 #include <linux/dma-mapping.h>
23 #include <linux/dmaengine.h>
24 #include <linux/amba/bus.h>
25 #include <linux/amba/pl330.h>
26 #include <linux/scatterlist.h>
28 #include <linux/of_dma.h>
29 #include <linux/err.h>
30 #include <linux/pm_runtime.h>
32 #include "dmaengine.h"
33 #define PL330_MAX_CHAN 8
34 #define PL330_MAX_IRQS 32
35 #define PL330_MAX_PERI 32
37 enum pl330_cachectrl {
38 CCTRL0, /* Noncacheable and nonbufferable */
39 CCTRL1, /* Bufferable only */
40 CCTRL2, /* Cacheable, but do not allocate */
41 CCTRL3, /* Cacheable and bufferable, but do not allocate */
42 INVALID1, /* AWCACHE = 0x1000 */
44 CCTRL6, /* Cacheable write-through, allocate on writes only */
45 CCTRL7, /* Cacheable write-back, allocate on writes only */
56 /* Register and Bit field Definitions */
58 #define DS_ST_STOP 0x0
59 #define DS_ST_EXEC 0x1
60 #define DS_ST_CMISS 0x2
61 #define DS_ST_UPDTPC 0x3
63 #define DS_ST_ATBRR 0x5
64 #define DS_ST_QBUSY 0x6
66 #define DS_ST_KILL 0x8
67 #define DS_ST_CMPLT 0x9
68 #define DS_ST_FLTCMP 0xe
69 #define DS_ST_FAULT 0xf
74 #define INTSTATUS 0x28
81 #define FTC(n) (_FTC + (n)*0x4)
84 #define CS(n) (_CS + (n)*0x8)
85 #define CS_CNS (1 << 21)
88 #define CPC(n) (_CPC + (n)*0x8)
91 #define SA(n) (_SA + (n)*0x20)
94 #define DA(n) (_DA + (n)*0x20)
97 #define CC(n) (_CC + (n)*0x20)
99 #define CC_SRCINC (1 << 0)
100 #define CC_DSTINC (1 << 14)
101 #define CC_SRCPRI (1 << 8)
102 #define CC_DSTPRI (1 << 22)
103 #define CC_SRCNS (1 << 9)
104 #define CC_DSTNS (1 << 23)
105 #define CC_SRCIA (1 << 10)
106 #define CC_DSTIA (1 << 24)
107 #define CC_SRCBRSTLEN_SHFT 4
108 #define CC_DSTBRSTLEN_SHFT 18
109 #define CC_SRCBRSTSIZE_SHFT 1
110 #define CC_DSTBRSTSIZE_SHFT 15
111 #define CC_SRCCCTRL_SHFT 11
112 #define CC_SRCCCTRL_MASK 0x7
113 #define CC_DSTCCTRL_SHFT 25
114 #define CC_DRCCCTRL_MASK 0x7
115 #define CC_SWAP_SHFT 28
118 #define LC0(n) (_LC0 + (n)*0x20)
121 #define LC1(n) (_LC1 + (n)*0x20)
123 #define DBGSTATUS 0xd00
124 #define DBG_BUSY (1 << 0)
127 #define DBGINST0 0xd08
128 #define DBGINST1 0xd0c
137 #define PERIPH_ID 0xfe0
138 #define PERIPH_REV_SHIFT 20
139 #define PERIPH_REV_MASK 0xf
140 #define PERIPH_REV_R0P0 0
141 #define PERIPH_REV_R1P0 1
142 #define PERIPH_REV_R1P1 2
144 #define CR0_PERIPH_REQ_SET (1 << 0)
145 #define CR0_BOOT_EN_SET (1 << 1)
146 #define CR0_BOOT_MAN_NS (1 << 2)
147 #define CR0_NUM_CHANS_SHIFT 4
148 #define CR0_NUM_CHANS_MASK 0x7
149 #define CR0_NUM_PERIPH_SHIFT 12
150 #define CR0_NUM_PERIPH_MASK 0x1f
151 #define CR0_NUM_EVENTS_SHIFT 17
152 #define CR0_NUM_EVENTS_MASK 0x1f
154 #define CR1_ICACHE_LEN_SHIFT 0
155 #define CR1_ICACHE_LEN_MASK 0x7
156 #define CR1_NUM_ICACHELINES_SHIFT 4
157 #define CR1_NUM_ICACHELINES_MASK 0xf
159 #define CRD_DATA_WIDTH_SHIFT 0
160 #define CRD_DATA_WIDTH_MASK 0x7
161 #define CRD_WR_CAP_SHIFT 4
162 #define CRD_WR_CAP_MASK 0x7
163 #define CRD_WR_Q_DEP_SHIFT 8
164 #define CRD_WR_Q_DEP_MASK 0xf
165 #define CRD_RD_CAP_SHIFT 12
166 #define CRD_RD_CAP_MASK 0x7
167 #define CRD_RD_Q_DEP_SHIFT 16
168 #define CRD_RD_Q_DEP_MASK 0xf
169 #define CRD_DATA_BUFF_SHIFT 20
170 #define CRD_DATA_BUFF_MASK 0x3ff
173 #define DESIGNER 0x41
175 #define INTEG_CFG 0x0
176 #define PERIPH_ID_VAL ((PART << 0) | (DESIGNER << 12))
178 #define PL330_STATE_STOPPED (1 << 0)
179 #define PL330_STATE_EXECUTING (1 << 1)
180 #define PL330_STATE_WFE (1 << 2)
181 #define PL330_STATE_FAULTING (1 << 3)
182 #define PL330_STATE_COMPLETING (1 << 4)
183 #define PL330_STATE_WFP (1 << 5)
184 #define PL330_STATE_KILLING (1 << 6)
185 #define PL330_STATE_FAULT_COMPLETING (1 << 7)
186 #define PL330_STATE_CACHEMISS (1 << 8)
187 #define PL330_STATE_UPDTPC (1 << 9)
188 #define PL330_STATE_ATBARRIER (1 << 10)
189 #define PL330_STATE_QUEUEBUSY (1 << 11)
190 #define PL330_STATE_INVALID (1 << 15)
192 #define PL330_STABLE_STATES (PL330_STATE_STOPPED | PL330_STATE_EXECUTING \
193 | PL330_STATE_WFE | PL330_STATE_FAULTING)
195 #define CMD_DMAADDH 0x54
196 #define CMD_DMAEND 0x00
197 #define CMD_DMAFLUSHP 0x35
198 #define CMD_DMAGO 0xa0
199 #define CMD_DMALD 0x04
200 #define CMD_DMALDP 0x25
201 #define CMD_DMALP 0x20
202 #define CMD_DMALPEND 0x28
203 #define CMD_DMAKILL 0x01
204 #define CMD_DMAMOV 0xbc
205 #define CMD_DMANOP 0x18
206 #define CMD_DMARMB 0x12
207 #define CMD_DMASEV 0x34
208 #define CMD_DMAST 0x08
209 #define CMD_DMASTP 0x29
210 #define CMD_DMASTZ 0x0c
211 #define CMD_DMAWFE 0x36
212 #define CMD_DMAWFP 0x30
213 #define CMD_DMAWMB 0x13
217 #define SZ_DMAFLUSHP 2
221 #define SZ_DMALPEND 2
235 #define BRST_LEN(ccr) ((((ccr) >> CC_SRCBRSTLEN_SHFT) & 0xf) + 1)
236 #define BRST_SIZE(ccr) (1 << (((ccr) >> CC_SRCBRSTSIZE_SHFT) & 0x7))
238 #define BYTE_TO_BURST(b, ccr) ((b) / BRST_SIZE(ccr) / BRST_LEN(ccr))
239 #define BURST_TO_BYTE(c, ccr) ((c) * BRST_SIZE(ccr) * BRST_LEN(ccr))
242 * With 256 bytes, we can do more than 2.5MB and 5MB xfers per req
243 * at 1byte/burst for P<->M and M<->M respectively.
244 * For typical scenario, at 1word/burst, 10MB and 20MB xfers per req
245 * should be enough for P<->M and M<->M respectively.
247 #define MCODE_BUFF_PER_REQ 256
249 /* Use this _only_ to wait on transient states */
250 #define UNTIL(t, s) while (!(_state(t) & (s))) cpu_relax();
252 #ifdef PL330_DEBUG_MCGEN
253 static unsigned cmd_line;
254 #define PL330_DBGCMD_DUMP(off, x...) do { \
255 printk("%x:", cmd_line); \
259 #define PL330_DBGMC_START(addr) (cmd_line = addr)
261 #define PL330_DBGCMD_DUMP(off, x...) do {} while (0)
262 #define PL330_DBGMC_START(addr) do {} while (0)
265 /* The number of default descriptors */
267 #define NR_DEFAULT_DESC 16
269 /* Delay for runtime PM autosuspend, ms */
270 #define PL330_AUTOSUSPEND_DELAY 20
272 /* Populated by the PL330 core driver for DMA API driver's info */
273 struct pl330_config {
275 #define DMAC_MODE_NS (1 << 0)
277 unsigned int data_bus_width:10; /* In number of bits */
278 unsigned int data_buf_dep:11;
279 unsigned int num_chan:4;
280 unsigned int num_peri:6;
282 unsigned int num_events:6;
287 * Request Configuration.
288 * The PL330 core does not modify this and uses the last
289 * working configuration if the request doesn't provide any.
291 * The Client may want to provide this info only for the
292 * first request and a request with new settings.
294 struct pl330_reqcfg {
295 /* Address Incrementing */
300 * For now, the SRC & DST protection levels
301 * and burst size/length are assumed same.
307 unsigned brst_size:3; /* in power of 2 */
309 enum pl330_cachectrl dcctl;
310 enum pl330_cachectrl scctl;
311 enum pl330_byteswap swap;
312 struct pl330_config *pcfg;
316 * One cycle of DMAC operation.
317 * There may be more than one xfer in a request.
326 /* The xfer callbacks are made with one of these arguments. */
328 /* The all xfers in the request were success. */
330 /* If req aborted due to global error. */
332 /* If req failed due to problem with Channel. */
353 struct dma_pl330_desc;
358 struct dma_pl330_desc *desc;
361 /* ToBeDone for tasklet */
369 struct pl330_thread {
372 /* If the channel is not yet acquired by any client */
375 struct pl330_dmac *dmac;
376 /* Only two at a time */
377 struct _pl330_req req[2];
378 /* Index of the last enqueued request */
380 /* Index of the last submitted request or -1 if the DMA is stopped */
384 enum pl330_dmac_state {
391 /* In the DMAC pool */
394 * Allocated to some channel during prep_xxx
395 * Also may be sitting on the work_list.
399 * Sitting on the work_list and already submitted
400 * to the PL330 core. Not more than two descriptors
401 * of a channel can be BUSY at any time.
405 * Sitting on the channel work_list but xfer done
411 struct dma_pl330_chan {
412 /* Schedule desc completion */
413 struct tasklet_struct task;
415 /* DMA-Engine Channel */
416 struct dma_chan chan;
418 /* List of submitted descriptors */
419 struct list_head submitted_list;
420 /* List of issued descriptors */
421 struct list_head work_list;
422 /* List of completed descriptors */
423 struct list_head completed_list;
425 /* Pointer to the DMAC that manages this channel,
426 * NULL if the channel is available to be acquired.
427 * As the parent, this DMAC also provides descriptors
430 struct pl330_dmac *dmac;
432 /* To protect channel manipulation */
436 * Hardware channel thread of PL330 DMAC. NULL if the channel is
439 struct pl330_thread *thread;
441 /* For D-to-M and M-to-D channels */
442 int burst_sz; /* the peripheral fifo width */
443 int burst_len; /* the number of burst */
444 dma_addr_t fifo_addr;
446 /* for cyclic capability */
449 /* for runtime pm tracking */
454 /* DMA-Engine Device */
455 struct dma_device ddma;
457 /* Holds info about sg limitations */
458 struct device_dma_parameters dma_parms;
460 /* Pool of descriptors available for the DMAC's channels */
461 struct list_head desc_pool;
462 /* To protect desc_pool manipulation */
463 spinlock_t pool_lock;
465 /* Size of MicroCode buffers for each channel. */
467 /* ioremap'ed address of PL330 registers. */
469 /* Populated by the PL330 core driver during pl330_add */
470 struct pl330_config pcfg;
473 /* Maximum possible events/irqs */
475 /* BUS address of MicroCode buffer */
476 dma_addr_t mcode_bus;
477 /* CPU address of MicroCode buffer */
479 /* List of all Channel threads */
480 struct pl330_thread *channels;
481 /* Pointer to the MANAGER thread */
482 struct pl330_thread *manager;
483 /* To handle bad news in interrupt */
484 struct tasklet_struct tasks;
485 struct _pl330_tbd dmac_tbd;
486 /* State of DMAC operation */
487 enum pl330_dmac_state state;
488 /* Holds list of reqs with due callbacks */
489 struct list_head req_done;
491 /* Peripheral channels connected to this DMAC */
492 unsigned int num_peripherals;
493 struct dma_pl330_chan *peripherals; /* keep at end */
496 struct dma_pl330_desc {
497 /* To attach to a queue as child */
498 struct list_head node;
500 /* Descriptor for the DMA Engine API */
501 struct dma_async_tx_descriptor txd;
503 /* Xfer for PL330 core */
504 struct pl330_xfer px;
506 struct pl330_reqcfg rqcfg;
508 enum desc_status status;
513 /* The channel which currently holds this desc */
514 struct dma_pl330_chan *pchan;
516 enum dma_transfer_direction rqtype;
517 /* Index of peripheral for the xfer. */
519 /* Hook to attach to DMAC's list of reqs with due callback */
520 struct list_head rqd;
525 struct dma_pl330_desc *desc;
528 static inline bool _queue_empty(struct pl330_thread *thrd)
530 return thrd->req[0].desc == NULL && thrd->req[1].desc == NULL;
533 static inline bool _queue_full(struct pl330_thread *thrd)
535 return thrd->req[0].desc != NULL && thrd->req[1].desc != NULL;
538 static inline bool is_manager(struct pl330_thread *thrd)
540 return thrd->dmac->manager == thrd;
543 /* If manager of the thread is in Non-Secure mode */
544 static inline bool _manager_ns(struct pl330_thread *thrd)
546 return (thrd->dmac->pcfg.mode & DMAC_MODE_NS) ? true : false;
549 static inline u32 get_revision(u32 periph_id)
551 return (periph_id >> PERIPH_REV_SHIFT) & PERIPH_REV_MASK;
554 static inline u32 _emit_ADDH(unsigned dry_run, u8 buf[],
555 enum pl330_dst da, u16 val)
560 buf[0] = CMD_DMAADDH;
562 *((__le16 *)&buf[1]) = cpu_to_le16(val);
564 PL330_DBGCMD_DUMP(SZ_DMAADDH, "\tDMAADDH %s %u\n",
565 da == 1 ? "DA" : "SA", val);
570 static inline u32 _emit_END(unsigned dry_run, u8 buf[])
577 PL330_DBGCMD_DUMP(SZ_DMAEND, "\tDMAEND\n");
582 static inline u32 _emit_FLUSHP(unsigned dry_run, u8 buf[], u8 peri)
587 buf[0] = CMD_DMAFLUSHP;
593 PL330_DBGCMD_DUMP(SZ_DMAFLUSHP, "\tDMAFLUSHP %u\n", peri >> 3);
598 static inline u32 _emit_LD(unsigned dry_run, u8 buf[], enum pl330_cond cond)
606 buf[0] |= (0 << 1) | (1 << 0);
607 else if (cond == BURST)
608 buf[0] |= (1 << 1) | (1 << 0);
610 PL330_DBGCMD_DUMP(SZ_DMALD, "\tDMALD%c\n",
611 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'A'));
616 static inline u32 _emit_LDP(unsigned dry_run, u8 buf[],
617 enum pl330_cond cond, u8 peri)
631 PL330_DBGCMD_DUMP(SZ_DMALDP, "\tDMALDP%c %u\n",
632 cond == SINGLE ? 'S' : 'B', peri >> 3);
637 static inline u32 _emit_LP(unsigned dry_run, u8 buf[],
638 unsigned loop, u8 cnt)
648 cnt--; /* DMAC increments by 1 internally */
651 PL330_DBGCMD_DUMP(SZ_DMALP, "\tDMALP_%c %u\n", loop ? '1' : '0', cnt);
657 enum pl330_cond cond;
663 static inline u32 _emit_LPEND(unsigned dry_run, u8 buf[],
664 const struct _arg_LPEND *arg)
666 enum pl330_cond cond = arg->cond;
667 bool forever = arg->forever;
668 unsigned loop = arg->loop;
669 u8 bjump = arg->bjump;
674 buf[0] = CMD_DMALPEND;
683 buf[0] |= (0 << 1) | (1 << 0);
684 else if (cond == BURST)
685 buf[0] |= (1 << 1) | (1 << 0);
689 PL330_DBGCMD_DUMP(SZ_DMALPEND, "\tDMALP%s%c_%c bjmpto_%x\n",
690 forever ? "FE" : "END",
691 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'A'),
698 static inline u32 _emit_KILL(unsigned dry_run, u8 buf[])
703 buf[0] = CMD_DMAKILL;
708 static inline u32 _emit_MOV(unsigned dry_run, u8 buf[],
709 enum dmamov_dst dst, u32 val)
716 *((__le32 *)&buf[2]) = cpu_to_le32(val);
718 PL330_DBGCMD_DUMP(SZ_DMAMOV, "\tDMAMOV %s 0x%x\n",
719 dst == SAR ? "SAR" : (dst == DAR ? "DAR" : "CCR"), val);
724 static inline u32 _emit_NOP(unsigned dry_run, u8 buf[])
731 PL330_DBGCMD_DUMP(SZ_DMANOP, "\tDMANOP\n");
736 static inline u32 _emit_RMB(unsigned dry_run, u8 buf[])
743 PL330_DBGCMD_DUMP(SZ_DMARMB, "\tDMARMB\n");
748 static inline u32 _emit_SEV(unsigned dry_run, u8 buf[], u8 ev)
759 PL330_DBGCMD_DUMP(SZ_DMASEV, "\tDMASEV %u\n", ev >> 3);
764 static inline u32 _emit_ST(unsigned dry_run, u8 buf[], enum pl330_cond cond)
772 buf[0] |= (0 << 1) | (1 << 0);
773 else if (cond == BURST)
774 buf[0] |= (1 << 1) | (1 << 0);
776 PL330_DBGCMD_DUMP(SZ_DMAST, "\tDMAST%c\n",
777 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'A'));
782 static inline u32 _emit_STP(unsigned dry_run, u8 buf[],
783 enum pl330_cond cond, u8 peri)
797 PL330_DBGCMD_DUMP(SZ_DMASTP, "\tDMASTP%c %u\n",
798 cond == SINGLE ? 'S' : 'B', peri >> 3);
803 static inline u32 _emit_STZ(unsigned dry_run, u8 buf[])
810 PL330_DBGCMD_DUMP(SZ_DMASTZ, "\tDMASTZ\n");
815 static inline u32 _emit_WFE(unsigned dry_run, u8 buf[], u8 ev,
830 PL330_DBGCMD_DUMP(SZ_DMAWFE, "\tDMAWFE %u%s\n",
831 ev >> 3, invalidate ? ", I" : "");
836 static inline u32 _emit_WFP(unsigned dry_run, u8 buf[],
837 enum pl330_cond cond, u8 peri)
845 buf[0] |= (0 << 1) | (0 << 0);
846 else if (cond == BURST)
847 buf[0] |= (1 << 1) | (0 << 0);
849 buf[0] |= (0 << 1) | (1 << 0);
855 PL330_DBGCMD_DUMP(SZ_DMAWFP, "\tDMAWFP%c %u\n",
856 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'P'), peri >> 3);
861 static inline u32 _emit_WMB(unsigned dry_run, u8 buf[])
868 PL330_DBGCMD_DUMP(SZ_DMAWMB, "\tDMAWMB\n");
879 static inline u32 _emit_GO(unsigned dry_run, u8 buf[],
880 const struct _arg_GO *arg)
883 u32 addr = arg->addr;
884 unsigned ns = arg->ns;
894 *((__le32 *)&buf[2]) = cpu_to_le32(addr);
899 #define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
901 /* Returns Time-Out */
902 static bool _until_dmac_idle(struct pl330_thread *thrd)
904 void __iomem *regs = thrd->dmac->base;
905 unsigned long loops = msecs_to_loops(5);
908 /* Until Manager is Idle */
909 if (!(readl(regs + DBGSTATUS) & DBG_BUSY))
921 static inline void _execute_DBGINSN(struct pl330_thread *thrd,
922 u8 insn[], bool as_manager)
924 void __iomem *regs = thrd->dmac->base;
927 val = (insn[0] << 16) | (insn[1] << 24);
930 val |= (thrd->id << 8); /* Channel Number */
932 writel(val, regs + DBGINST0);
934 val = le32_to_cpu(*((__le32 *)&insn[2]));
935 writel(val, regs + DBGINST1);
937 /* If timed out due to halted state-machine */
938 if (_until_dmac_idle(thrd)) {
939 dev_err(thrd->dmac->ddma.dev, "DMAC halted!\n");
944 writel(0, regs + DBGCMD);
947 static inline u32 _state(struct pl330_thread *thrd)
949 void __iomem *regs = thrd->dmac->base;
952 if (is_manager(thrd))
953 val = readl(regs + DS) & 0xf;
955 val = readl(regs + CS(thrd->id)) & 0xf;
959 return PL330_STATE_STOPPED;
961 return PL330_STATE_EXECUTING;
963 return PL330_STATE_CACHEMISS;
965 return PL330_STATE_UPDTPC;
967 return PL330_STATE_WFE;
969 return PL330_STATE_FAULTING;
971 if (is_manager(thrd))
972 return PL330_STATE_INVALID;
974 return PL330_STATE_ATBARRIER;
976 if (is_manager(thrd))
977 return PL330_STATE_INVALID;
979 return PL330_STATE_QUEUEBUSY;
981 if (is_manager(thrd))
982 return PL330_STATE_INVALID;
984 return PL330_STATE_WFP;
986 if (is_manager(thrd))
987 return PL330_STATE_INVALID;
989 return PL330_STATE_KILLING;
991 if (is_manager(thrd))
992 return PL330_STATE_INVALID;
994 return PL330_STATE_COMPLETING;
996 if (is_manager(thrd))
997 return PL330_STATE_INVALID;
999 return PL330_STATE_FAULT_COMPLETING;
1001 return PL330_STATE_INVALID;
1005 static void _stop(struct pl330_thread *thrd)
1007 void __iomem *regs = thrd->dmac->base;
1008 u8 insn[6] = {0, 0, 0, 0, 0, 0};
1009 u32 inten = readl(regs + INTEN);
1011 if (_state(thrd) == PL330_STATE_FAULT_COMPLETING)
1012 UNTIL(thrd, PL330_STATE_FAULTING | PL330_STATE_KILLING);
1014 /* Return if nothing needs to be done */
1015 if (_state(thrd) == PL330_STATE_COMPLETING
1016 || _state(thrd) == PL330_STATE_KILLING
1017 || _state(thrd) == PL330_STATE_STOPPED)
1020 _emit_KILL(0, insn);
1022 _execute_DBGINSN(thrd, insn, is_manager(thrd));
1024 /* clear the event */
1025 if (inten & (1 << thrd->ev))
1026 writel(1 << thrd->ev, regs + INTCLR);
1027 /* Stop generating interrupts for SEV */
1028 writel(inten & ~(1 << thrd->ev), regs + INTEN);
1031 /* Start doing req 'idx' of thread 'thrd' */
1032 static bool _trigger(struct pl330_thread *thrd)
1034 void __iomem *regs = thrd->dmac->base;
1035 struct _pl330_req *req;
1036 struct dma_pl330_desc *desc;
1039 u8 insn[6] = {0, 0, 0, 0, 0, 0};
1042 /* Return if already ACTIVE */
1043 if (_state(thrd) != PL330_STATE_STOPPED)
1046 idx = 1 - thrd->lstenq;
1047 if (thrd->req[idx].desc != NULL) {
1048 req = &thrd->req[idx];
1051 if (thrd->req[idx].desc != NULL)
1052 req = &thrd->req[idx];
1057 /* Return if no request */
1061 /* Return if req is running */
1062 if (idx == thrd->req_running)
1067 ns = desc->rqcfg.nonsecure ? 1 : 0;
1069 /* See 'Abort Sources' point-4 at Page 2-25 */
1070 if (_manager_ns(thrd) && !ns)
1071 dev_info(thrd->dmac->ddma.dev, "%s:%d Recipe for ABORT!\n",
1072 __func__, __LINE__);
1075 go.addr = req->mc_bus;
1077 _emit_GO(0, insn, &go);
1079 /* Set to generate interrupts for SEV */
1080 writel(readl(regs + INTEN) | (1 << thrd->ev), regs + INTEN);
1082 /* Only manager can execute GO */
1083 _execute_DBGINSN(thrd, insn, true);
1085 thrd->req_running = idx;
1090 static bool _start(struct pl330_thread *thrd)
1092 switch (_state(thrd)) {
1093 case PL330_STATE_FAULT_COMPLETING:
1094 UNTIL(thrd, PL330_STATE_FAULTING | PL330_STATE_KILLING);
1096 if (_state(thrd) == PL330_STATE_KILLING)
1097 UNTIL(thrd, PL330_STATE_STOPPED)
1099 case PL330_STATE_FAULTING:
1102 case PL330_STATE_KILLING:
1103 case PL330_STATE_COMPLETING:
1104 UNTIL(thrd, PL330_STATE_STOPPED)
1106 case PL330_STATE_STOPPED:
1107 return _trigger(thrd);
1109 case PL330_STATE_WFP:
1110 case PL330_STATE_QUEUEBUSY:
1111 case PL330_STATE_ATBARRIER:
1112 case PL330_STATE_UPDTPC:
1113 case PL330_STATE_CACHEMISS:
1114 case PL330_STATE_EXECUTING:
1117 case PL330_STATE_WFE: /* For RESUME, nothing yet */
1123 static inline int _ldst_memtomem(unsigned dry_run, u8 buf[],
1124 const struct _xfer_spec *pxs, int cyc)
1127 struct pl330_config *pcfg = pxs->desc->rqcfg.pcfg;
1129 /* check lock-up free version */
1130 if (get_revision(pcfg->periph_id) >= PERIPH_REV_R1P0) {
1132 off += _emit_LD(dry_run, &buf[off], ALWAYS);
1133 off += _emit_ST(dry_run, &buf[off], ALWAYS);
1137 off += _emit_LD(dry_run, &buf[off], ALWAYS);
1138 off += _emit_RMB(dry_run, &buf[off]);
1139 off += _emit_ST(dry_run, &buf[off], ALWAYS);
1140 off += _emit_WMB(dry_run, &buf[off]);
1147 static inline int _ldst_devtomem(unsigned dry_run, u8 buf[],
1148 const struct _xfer_spec *pxs, int cyc)
1153 off += _emit_WFP(dry_run, &buf[off], SINGLE, pxs->desc->peri);
1154 off += _emit_LDP(dry_run, &buf[off], SINGLE, pxs->desc->peri);
1155 off += _emit_ST(dry_run, &buf[off], ALWAYS);
1156 off += _emit_FLUSHP(dry_run, &buf[off], pxs->desc->peri);
1162 static inline int _ldst_memtodev(unsigned dry_run, u8 buf[],
1163 const struct _xfer_spec *pxs, int cyc)
1168 off += _emit_WFP(dry_run, &buf[off], SINGLE, pxs->desc->peri);
1169 off += _emit_LD(dry_run, &buf[off], ALWAYS);
1170 off += _emit_STP(dry_run, &buf[off], SINGLE, pxs->desc->peri);
1171 off += _emit_FLUSHP(dry_run, &buf[off], pxs->desc->peri);
1177 static int _bursts(unsigned dry_run, u8 buf[],
1178 const struct _xfer_spec *pxs, int cyc)
1182 switch (pxs->desc->rqtype) {
1183 case DMA_MEM_TO_DEV:
1184 off += _ldst_memtodev(dry_run, &buf[off], pxs, cyc);
1186 case DMA_DEV_TO_MEM:
1187 off += _ldst_devtomem(dry_run, &buf[off], pxs, cyc);
1189 case DMA_MEM_TO_MEM:
1190 off += _ldst_memtomem(dry_run, &buf[off], pxs, cyc);
1193 off += 0x40000000; /* Scare off the Client */
1200 /* Returns bytes consumed and updates bursts */
1201 static inline int _loop(unsigned dry_run, u8 buf[],
1202 unsigned long *bursts, const struct _xfer_spec *pxs)
1204 int cyc, cycmax, szlp, szlpend, szbrst, off;
1205 unsigned lcnt0, lcnt1, ljmp0, ljmp1;
1206 struct _arg_LPEND lpend;
1209 return _bursts(dry_run, buf, pxs, 1);
1211 /* Max iterations possible in DMALP is 256 */
1212 if (*bursts >= 256*256) {
1215 cyc = *bursts / lcnt1 / lcnt0;
1216 } else if (*bursts > 256) {
1218 lcnt0 = *bursts / lcnt1;
1226 szlp = _emit_LP(1, buf, 0, 0);
1227 szbrst = _bursts(1, buf, pxs, 1);
1229 lpend.cond = ALWAYS;
1230 lpend.forever = false;
1233 szlpend = _emit_LPEND(1, buf, &lpend);
1241 * Max bursts that we can unroll due to limit on the
1242 * size of backward jump that can be encoded in DMALPEND
1243 * which is 8-bits and hence 255
1245 cycmax = (255 - (szlp + szlpend)) / szbrst;
1247 cyc = (cycmax < cyc) ? cycmax : cyc;
1252 off += _emit_LP(dry_run, &buf[off], 0, lcnt0);
1256 off += _emit_LP(dry_run, &buf[off], 1, lcnt1);
1259 off += _bursts(dry_run, &buf[off], pxs, cyc);
1261 lpend.cond = ALWAYS;
1262 lpend.forever = false;
1264 lpend.bjump = off - ljmp1;
1265 off += _emit_LPEND(dry_run, &buf[off], &lpend);
1268 lpend.cond = ALWAYS;
1269 lpend.forever = false;
1271 lpend.bjump = off - ljmp0;
1272 off += _emit_LPEND(dry_run, &buf[off], &lpend);
1275 *bursts = lcnt1 * cyc;
1282 static inline int _setup_loops(unsigned dry_run, u8 buf[],
1283 const struct _xfer_spec *pxs)
1285 struct pl330_xfer *x = &pxs->desc->px;
1287 unsigned long c, bursts = BYTE_TO_BURST(x->bytes, ccr);
1292 off += _loop(dry_run, &buf[off], &c, pxs);
1299 static inline int _setup_xfer(unsigned dry_run, u8 buf[],
1300 const struct _xfer_spec *pxs)
1302 struct pl330_xfer *x = &pxs->desc->px;
1305 /* DMAMOV SAR, x->src_addr */
1306 off += _emit_MOV(dry_run, &buf[off], SAR, x->src_addr);
1307 /* DMAMOV DAR, x->dst_addr */
1308 off += _emit_MOV(dry_run, &buf[off], DAR, x->dst_addr);
1311 off += _setup_loops(dry_run, &buf[off], pxs);
1317 * A req is a sequence of one or more xfer units.
1318 * Returns the number of bytes taken to setup the MC for the req.
1320 static int _setup_req(unsigned dry_run, struct pl330_thread *thrd,
1321 unsigned index, struct _xfer_spec *pxs)
1323 struct _pl330_req *req = &thrd->req[index];
1324 struct pl330_xfer *x;
1325 u8 *buf = req->mc_cpu;
1328 PL330_DBGMC_START(req->mc_bus);
1330 /* DMAMOV CCR, ccr */
1331 off += _emit_MOV(dry_run, &buf[off], CCR, pxs->ccr);
1334 /* Error if xfer length is not aligned at burst size */
1335 if (x->bytes % (BRST_SIZE(pxs->ccr) * BRST_LEN(pxs->ccr)))
1338 off += _setup_xfer(dry_run, &buf[off], pxs);
1340 /* DMASEV peripheral/event */
1341 off += _emit_SEV(dry_run, &buf[off], thrd->ev);
1343 off += _emit_END(dry_run, &buf[off]);
1348 static inline u32 _prepare_ccr(const struct pl330_reqcfg *rqc)
1358 /* We set same protection levels for Src and DST for now */
1359 if (rqc->privileged)
1360 ccr |= CC_SRCPRI | CC_DSTPRI;
1362 ccr |= CC_SRCNS | CC_DSTNS;
1363 if (rqc->insnaccess)
1364 ccr |= CC_SRCIA | CC_DSTIA;
1366 ccr |= (((rqc->brst_len - 1) & 0xf) << CC_SRCBRSTLEN_SHFT);
1367 ccr |= (((rqc->brst_len - 1) & 0xf) << CC_DSTBRSTLEN_SHFT);
1369 ccr |= (rqc->brst_size << CC_SRCBRSTSIZE_SHFT);
1370 ccr |= (rqc->brst_size << CC_DSTBRSTSIZE_SHFT);
1372 ccr |= (rqc->scctl << CC_SRCCCTRL_SHFT);
1373 ccr |= (rqc->dcctl << CC_DSTCCTRL_SHFT);
1375 ccr |= (rqc->swap << CC_SWAP_SHFT);
1381 * Submit a list of xfers after which the client wants notification.
1382 * Client is not notified after each xfer unit, just once after all
1383 * xfer units are done or some error occurs.
1385 static int pl330_submit_req(struct pl330_thread *thrd,
1386 struct dma_pl330_desc *desc)
1388 struct pl330_dmac *pl330 = thrd->dmac;
1389 struct _xfer_spec xs;
1390 unsigned long flags;
1395 if (pl330->state == DYING
1396 || pl330->dmac_tbd.reset_chan & (1 << thrd->id)) {
1397 dev_info(thrd->dmac->ddma.dev, "%s:%d\n",
1398 __func__, __LINE__);
1402 /* If request for non-existing peripheral */
1403 if (desc->rqtype != DMA_MEM_TO_MEM &&
1404 desc->peri >= pl330->pcfg.num_peri) {
1405 dev_info(thrd->dmac->ddma.dev,
1406 "%s:%d Invalid peripheral(%u)!\n",
1407 __func__, __LINE__, desc->peri);
1411 spin_lock_irqsave(&pl330->lock, flags);
1413 if (_queue_full(thrd)) {
1418 /* Prefer Secure Channel */
1419 if (!_manager_ns(thrd))
1420 desc->rqcfg.nonsecure = 0;
1422 desc->rqcfg.nonsecure = 1;
1424 ccr = _prepare_ccr(&desc->rqcfg);
1426 idx = thrd->req[0].desc == NULL ? 0 : 1;
1431 /* First dry run to check if req is acceptable */
1432 ret = _setup_req(1, thrd, idx, &xs);
1436 if (ret > pl330->mcbufsz / 2) {
1437 dev_info(pl330->ddma.dev, "%s:%d Try increasing mcbufsz (%i/%i)\n",
1438 __func__, __LINE__, ret, pl330->mcbufsz / 2);
1443 /* Hook the request */
1445 thrd->req[idx].desc = desc;
1446 _setup_req(0, thrd, idx, &xs);
1451 spin_unlock_irqrestore(&pl330->lock, flags);
1456 static void dma_pl330_rqcb(struct dma_pl330_desc *desc, enum pl330_op_err err)
1458 struct dma_pl330_chan *pch;
1459 unsigned long flags;
1466 /* If desc aborted */
1470 spin_lock_irqsave(&pch->lock, flags);
1472 desc->status = DONE;
1474 spin_unlock_irqrestore(&pch->lock, flags);
1476 tasklet_schedule(&pch->task);
1479 static void pl330_dotask(unsigned long data)
1481 struct pl330_dmac *pl330 = (struct pl330_dmac *) data;
1482 unsigned long flags;
1485 spin_lock_irqsave(&pl330->lock, flags);
1487 /* The DMAC itself gone nuts */
1488 if (pl330->dmac_tbd.reset_dmac) {
1489 pl330->state = DYING;
1490 /* Reset the manager too */
1491 pl330->dmac_tbd.reset_mngr = true;
1492 /* Clear the reset flag */
1493 pl330->dmac_tbd.reset_dmac = false;
1496 if (pl330->dmac_tbd.reset_mngr) {
1497 _stop(pl330->manager);
1498 /* Reset all channels */
1499 pl330->dmac_tbd.reset_chan = (1 << pl330->pcfg.num_chan) - 1;
1500 /* Clear the reset flag */
1501 pl330->dmac_tbd.reset_mngr = false;
1504 for (i = 0; i < pl330->pcfg.num_chan; i++) {
1506 if (pl330->dmac_tbd.reset_chan & (1 << i)) {
1507 struct pl330_thread *thrd = &pl330->channels[i];
1508 void __iomem *regs = pl330->base;
1509 enum pl330_op_err err;
1513 if (readl(regs + FSC) & (1 << thrd->id))
1514 err = PL330_ERR_FAIL;
1516 err = PL330_ERR_ABORT;
1518 spin_unlock_irqrestore(&pl330->lock, flags);
1519 dma_pl330_rqcb(thrd->req[1 - thrd->lstenq].desc, err);
1520 dma_pl330_rqcb(thrd->req[thrd->lstenq].desc, err);
1521 spin_lock_irqsave(&pl330->lock, flags);
1523 thrd->req[0].desc = NULL;
1524 thrd->req[1].desc = NULL;
1525 thrd->req_running = -1;
1527 /* Clear the reset flag */
1528 pl330->dmac_tbd.reset_chan &= ~(1 << i);
1532 spin_unlock_irqrestore(&pl330->lock, flags);
1537 /* Returns 1 if state was updated, 0 otherwise */
1538 static int pl330_update(struct pl330_dmac *pl330)
1540 struct dma_pl330_desc *descdone;
1541 unsigned long flags;
1544 int id, ev, ret = 0;
1548 spin_lock_irqsave(&pl330->lock, flags);
1550 val = readl(regs + FSM) & 0x1;
1552 pl330->dmac_tbd.reset_mngr = true;
1554 pl330->dmac_tbd.reset_mngr = false;
1556 val = readl(regs + FSC) & ((1 << pl330->pcfg.num_chan) - 1);
1557 pl330->dmac_tbd.reset_chan |= val;
1560 while (i < pl330->pcfg.num_chan) {
1561 if (val & (1 << i)) {
1562 dev_info(pl330->ddma.dev,
1563 "Reset Channel-%d\t CS-%x FTC-%x\n",
1564 i, readl(regs + CS(i)),
1565 readl(regs + FTC(i)));
1566 _stop(&pl330->channels[i]);
1572 /* Check which event happened i.e, thread notified */
1573 val = readl(regs + ES);
1574 if (pl330->pcfg.num_events < 32
1575 && val & ~((1 << pl330->pcfg.num_events) - 1)) {
1576 pl330->dmac_tbd.reset_dmac = true;
1577 dev_err(pl330->ddma.dev, "%s:%d Unexpected!\n", __func__,
1583 for (ev = 0; ev < pl330->pcfg.num_events; ev++) {
1584 if (val & (1 << ev)) { /* Event occurred */
1585 struct pl330_thread *thrd;
1586 u32 inten = readl(regs + INTEN);
1589 /* Clear the event */
1590 if (inten & (1 << ev))
1591 writel(1 << ev, regs + INTCLR);
1595 id = pl330->events[ev];
1597 thrd = &pl330->channels[id];
1599 active = thrd->req_running;
1600 if (active == -1) /* Aborted */
1603 /* Detach the req */
1604 descdone = thrd->req[active].desc;
1605 thrd->req[active].desc = NULL;
1607 thrd->req_running = -1;
1609 /* Get going again ASAP */
1612 /* For now, just make a list of callbacks to be done */
1613 list_add_tail(&descdone->rqd, &pl330->req_done);
1617 /* Now that we are in no hurry, do the callbacks */
1618 while (!list_empty(&pl330->req_done)) {
1619 descdone = list_first_entry(&pl330->req_done,
1620 struct dma_pl330_desc, rqd);
1621 list_del(&descdone->rqd);
1622 spin_unlock_irqrestore(&pl330->lock, flags);
1623 dma_pl330_rqcb(descdone, PL330_ERR_NONE);
1624 spin_lock_irqsave(&pl330->lock, flags);
1628 spin_unlock_irqrestore(&pl330->lock, flags);
1630 if (pl330->dmac_tbd.reset_dmac
1631 || pl330->dmac_tbd.reset_mngr
1632 || pl330->dmac_tbd.reset_chan) {
1634 tasklet_schedule(&pl330->tasks);
1640 /* Reserve an event */
1641 static inline int _alloc_event(struct pl330_thread *thrd)
1643 struct pl330_dmac *pl330 = thrd->dmac;
1646 for (ev = 0; ev < pl330->pcfg.num_events; ev++)
1647 if (pl330->events[ev] == -1) {
1648 pl330->events[ev] = thrd->id;
1655 static bool _chan_ns(const struct pl330_dmac *pl330, int i)
1657 return pl330->pcfg.irq_ns & (1 << i);
1660 /* Upon success, returns IdentityToken for the
1661 * allocated channel, NULL otherwise.
1663 static struct pl330_thread *pl330_request_channel(struct pl330_dmac *pl330)
1665 struct pl330_thread *thrd = NULL;
1668 if (pl330->state == DYING)
1671 chans = pl330->pcfg.num_chan;
1673 for (i = 0; i < chans; i++) {
1674 thrd = &pl330->channels[i];
1675 if ((thrd->free) && (!_manager_ns(thrd) ||
1676 _chan_ns(pl330, i))) {
1677 thrd->ev = _alloc_event(thrd);
1678 if (thrd->ev >= 0) {
1681 thrd->req[0].desc = NULL;
1682 thrd->req[1].desc = NULL;
1683 thrd->req_running = -1;
1693 /* Release an event */
1694 static inline void _free_event(struct pl330_thread *thrd, int ev)
1696 struct pl330_dmac *pl330 = thrd->dmac;
1698 /* If the event is valid and was held by the thread */
1699 if (ev >= 0 && ev < pl330->pcfg.num_events
1700 && pl330->events[ev] == thrd->id)
1701 pl330->events[ev] = -1;
1704 static void pl330_release_channel(struct pl330_thread *thrd)
1706 struct pl330_dmac *pl330;
1708 if (!thrd || thrd->free)
1713 dma_pl330_rqcb(thrd->req[1 - thrd->lstenq].desc, PL330_ERR_ABORT);
1714 dma_pl330_rqcb(thrd->req[thrd->lstenq].desc, PL330_ERR_ABORT);
1718 _free_event(thrd, thrd->ev);
1722 /* Initialize the structure for PL330 configuration, that can be used
1723 * by the client driver the make best use of the DMAC
1725 static void read_dmac_config(struct pl330_dmac *pl330)
1727 void __iomem *regs = pl330->base;
1730 val = readl(regs + CRD) >> CRD_DATA_WIDTH_SHIFT;
1731 val &= CRD_DATA_WIDTH_MASK;
1732 pl330->pcfg.data_bus_width = 8 * (1 << val);
1734 val = readl(regs + CRD) >> CRD_DATA_BUFF_SHIFT;
1735 val &= CRD_DATA_BUFF_MASK;
1736 pl330->pcfg.data_buf_dep = val + 1;
1738 val = readl(regs + CR0) >> CR0_NUM_CHANS_SHIFT;
1739 val &= CR0_NUM_CHANS_MASK;
1741 pl330->pcfg.num_chan = val;
1743 val = readl(regs + CR0);
1744 if (val & CR0_PERIPH_REQ_SET) {
1745 val = (val >> CR0_NUM_PERIPH_SHIFT) & CR0_NUM_PERIPH_MASK;
1747 pl330->pcfg.num_peri = val;
1748 pl330->pcfg.peri_ns = readl(regs + CR4);
1750 pl330->pcfg.num_peri = 0;
1753 val = readl(regs + CR0);
1754 if (val & CR0_BOOT_MAN_NS)
1755 pl330->pcfg.mode |= DMAC_MODE_NS;
1757 pl330->pcfg.mode &= ~DMAC_MODE_NS;
1759 val = readl(regs + CR0) >> CR0_NUM_EVENTS_SHIFT;
1760 val &= CR0_NUM_EVENTS_MASK;
1762 pl330->pcfg.num_events = val;
1764 pl330->pcfg.irq_ns = readl(regs + CR3);
1767 static inline void _reset_thread(struct pl330_thread *thrd)
1769 struct pl330_dmac *pl330 = thrd->dmac;
1771 thrd->req[0].mc_cpu = pl330->mcode_cpu
1772 + (thrd->id * pl330->mcbufsz);
1773 thrd->req[0].mc_bus = pl330->mcode_bus
1774 + (thrd->id * pl330->mcbufsz);
1775 thrd->req[0].desc = NULL;
1777 thrd->req[1].mc_cpu = thrd->req[0].mc_cpu
1778 + pl330->mcbufsz / 2;
1779 thrd->req[1].mc_bus = thrd->req[0].mc_bus
1780 + pl330->mcbufsz / 2;
1781 thrd->req[1].desc = NULL;
1783 thrd->req_running = -1;
1786 static int dmac_alloc_threads(struct pl330_dmac *pl330)
1788 int chans = pl330->pcfg.num_chan;
1789 struct pl330_thread *thrd;
1792 /* Allocate 1 Manager and 'chans' Channel threads */
1793 pl330->channels = kzalloc((1 + chans) * sizeof(*thrd),
1795 if (!pl330->channels)
1798 /* Init Channel threads */
1799 for (i = 0; i < chans; i++) {
1800 thrd = &pl330->channels[i];
1803 _reset_thread(thrd);
1807 /* MANAGER is indexed at the end */
1808 thrd = &pl330->channels[chans];
1812 pl330->manager = thrd;
1817 static int dmac_alloc_resources(struct pl330_dmac *pl330)
1819 int chans = pl330->pcfg.num_chan;
1823 * Alloc MicroCode buffer for 'chans' Channel threads.
1824 * A channel's buffer offset is (Channel_Id * MCODE_BUFF_PERCHAN)
1826 pl330->mcode_cpu = dma_alloc_coherent(pl330->ddma.dev,
1827 chans * pl330->mcbufsz,
1828 &pl330->mcode_bus, GFP_KERNEL);
1829 if (!pl330->mcode_cpu) {
1830 dev_err(pl330->ddma.dev, "%s:%d Can't allocate memory!\n",
1831 __func__, __LINE__);
1835 ret = dmac_alloc_threads(pl330);
1837 dev_err(pl330->ddma.dev, "%s:%d Can't to create channels for DMAC!\n",
1838 __func__, __LINE__);
1839 dma_free_coherent(pl330->ddma.dev,
1840 chans * pl330->mcbufsz,
1841 pl330->mcode_cpu, pl330->mcode_bus);
1848 static int pl330_add(struct pl330_dmac *pl330)
1855 /* Check if we can handle this DMAC */
1856 if ((pl330->pcfg.periph_id & 0xfffff) != PERIPH_ID_VAL) {
1857 dev_err(pl330->ddma.dev, "PERIPH_ID 0x%x !\n",
1858 pl330->pcfg.periph_id);
1862 /* Read the configuration of the DMAC */
1863 read_dmac_config(pl330);
1865 if (pl330->pcfg.num_events == 0) {
1866 dev_err(pl330->ddma.dev, "%s:%d Can't work without events!\n",
1867 __func__, __LINE__);
1871 spin_lock_init(&pl330->lock);
1873 INIT_LIST_HEAD(&pl330->req_done);
1875 /* Use default MC buffer size if not provided */
1876 if (!pl330->mcbufsz)
1877 pl330->mcbufsz = MCODE_BUFF_PER_REQ * 2;
1879 /* Mark all events as free */
1880 for (i = 0; i < pl330->pcfg.num_events; i++)
1881 pl330->events[i] = -1;
1883 /* Allocate resources needed by the DMAC */
1884 ret = dmac_alloc_resources(pl330);
1886 dev_err(pl330->ddma.dev, "Unable to create channels for DMAC\n");
1890 tasklet_init(&pl330->tasks, pl330_dotask, (unsigned long) pl330);
1892 pl330->state = INIT;
1897 static int dmac_free_threads(struct pl330_dmac *pl330)
1899 struct pl330_thread *thrd;
1902 /* Release Channel threads */
1903 for (i = 0; i < pl330->pcfg.num_chan; i++) {
1904 thrd = &pl330->channels[i];
1905 pl330_release_channel(thrd);
1909 kfree(pl330->channels);
1914 static void pl330_del(struct pl330_dmac *pl330)
1916 pl330->state = UNINIT;
1918 tasklet_kill(&pl330->tasks);
1920 /* Free DMAC resources */
1921 dmac_free_threads(pl330);
1923 dma_free_coherent(pl330->ddma.dev,
1924 pl330->pcfg.num_chan * pl330->mcbufsz, pl330->mcode_cpu,
1928 /* forward declaration */
1929 static struct amba_driver pl330_driver;
1931 static inline struct dma_pl330_chan *
1932 to_pchan(struct dma_chan *ch)
1937 return container_of(ch, struct dma_pl330_chan, chan);
1940 static inline struct dma_pl330_desc *
1941 to_desc(struct dma_async_tx_descriptor *tx)
1943 return container_of(tx, struct dma_pl330_desc, txd);
1946 static inline void fill_queue(struct dma_pl330_chan *pch)
1948 struct dma_pl330_desc *desc;
1951 list_for_each_entry(desc, &pch->work_list, node) {
1953 /* If already submitted */
1954 if (desc->status == BUSY)
1957 ret = pl330_submit_req(pch->thread, desc);
1959 desc->status = BUSY;
1960 } else if (ret == -EAGAIN) {
1961 /* QFull or DMAC Dying */
1964 /* Unacceptable request */
1965 desc->status = DONE;
1966 dev_err(pch->dmac->ddma.dev, "%s:%d Bad Desc(%d)\n",
1967 __func__, __LINE__, desc->txd.cookie);
1968 tasklet_schedule(&pch->task);
1973 static void pl330_tasklet(unsigned long data)
1975 struct dma_pl330_chan *pch = (struct dma_pl330_chan *)data;
1976 struct dma_pl330_desc *desc, *_dt;
1977 unsigned long flags;
1978 bool power_down = false;
1980 spin_lock_irqsave(&pch->lock, flags);
1982 /* Pick up ripe tomatoes */
1983 list_for_each_entry_safe(desc, _dt, &pch->work_list, node)
1984 if (desc->status == DONE) {
1986 dma_cookie_complete(&desc->txd);
1987 list_move_tail(&desc->node, &pch->completed_list);
1990 /* Try to submit a req imm. next to the last completed cookie */
1993 if (list_empty(&pch->work_list)) {
1994 spin_lock(&pch->thread->dmac->lock);
1996 spin_unlock(&pch->thread->dmac->lock);
1998 pch->active = false;
2000 /* Make sure the PL330 Channel thread is active */
2001 spin_lock(&pch->thread->dmac->lock);
2002 _start(pch->thread);
2003 spin_unlock(&pch->thread->dmac->lock);
2006 while (!list_empty(&pch->completed_list)) {
2007 dma_async_tx_callback callback;
2008 void *callback_param;
2010 desc = list_first_entry(&pch->completed_list,
2011 struct dma_pl330_desc, node);
2013 callback = desc->txd.callback;
2014 callback_param = desc->txd.callback_param;
2017 desc->status = PREP;
2018 list_move_tail(&desc->node, &pch->work_list);
2021 spin_lock(&pch->thread->dmac->lock);
2022 _start(pch->thread);
2023 spin_unlock(&pch->thread->dmac->lock);
2027 desc->status = FREE;
2028 list_move_tail(&desc->node, &pch->dmac->desc_pool);
2031 dma_descriptor_unmap(&desc->txd);
2034 spin_unlock_irqrestore(&pch->lock, flags);
2035 callback(callback_param);
2036 spin_lock_irqsave(&pch->lock, flags);
2039 spin_unlock_irqrestore(&pch->lock, flags);
2041 /* If work list empty, power down */
2043 pm_runtime_mark_last_busy(pch->dmac->ddma.dev);
2044 pm_runtime_put_autosuspend(pch->dmac->ddma.dev);
2048 bool pl330_filter(struct dma_chan *chan, void *param)
2052 if (chan->device->dev->driver != &pl330_driver.drv)
2055 peri_id = chan->private;
2056 return *peri_id == (unsigned long)param;
2058 EXPORT_SYMBOL(pl330_filter);
2060 static struct dma_chan *of_dma_pl330_xlate(struct of_phandle_args *dma_spec,
2061 struct of_dma *ofdma)
2063 int count = dma_spec->args_count;
2064 struct pl330_dmac *pl330 = ofdma->of_dma_data;
2065 unsigned int chan_id;
2073 chan_id = dma_spec->args[0];
2074 if (chan_id >= pl330->num_peripherals)
2077 return dma_get_slave_channel(&pl330->peripherals[chan_id].chan);
2080 static int pl330_alloc_chan_resources(struct dma_chan *chan)
2082 struct dma_pl330_chan *pch = to_pchan(chan);
2083 struct pl330_dmac *pl330 = pch->dmac;
2084 unsigned long flags;
2086 spin_lock_irqsave(&pl330->lock, flags);
2088 dma_cookie_init(chan);
2089 pch->cyclic = false;
2091 pch->thread = pl330_request_channel(pl330);
2093 spin_unlock_irqrestore(&pl330->lock, flags);
2097 tasklet_init(&pch->task, pl330_tasklet, (unsigned long) pch);
2099 spin_unlock_irqrestore(&pl330->lock, flags);
2104 static int pl330_config(struct dma_chan *chan,
2105 struct dma_slave_config *slave_config)
2107 struct dma_pl330_chan *pch = to_pchan(chan);
2109 if (slave_config->direction == DMA_MEM_TO_DEV) {
2110 if (slave_config->dst_addr)
2111 pch->fifo_addr = slave_config->dst_addr;
2112 if (slave_config->dst_addr_width)
2113 pch->burst_sz = __ffs(slave_config->dst_addr_width);
2114 if (slave_config->dst_maxburst)
2115 pch->burst_len = slave_config->dst_maxburst;
2116 } else if (slave_config->direction == DMA_DEV_TO_MEM) {
2117 if (slave_config->src_addr)
2118 pch->fifo_addr = slave_config->src_addr;
2119 if (slave_config->src_addr_width)
2120 pch->burst_sz = __ffs(slave_config->src_addr_width);
2121 if (slave_config->src_maxburst)
2122 pch->burst_len = slave_config->src_maxburst;
2128 static int pl330_terminate_all(struct dma_chan *chan)
2130 struct dma_pl330_chan *pch = to_pchan(chan);
2131 struct dma_pl330_desc *desc;
2132 unsigned long flags;
2133 struct pl330_dmac *pl330 = pch->dmac;
2135 bool power_down = false;
2137 pm_runtime_get_sync(pl330->ddma.dev);
2138 spin_lock_irqsave(&pch->lock, flags);
2140 spin_lock(&pl330->lock);
2142 pch->thread->req[0].desc = NULL;
2143 pch->thread->req[1].desc = NULL;
2144 pch->thread->req_running = -1;
2145 spin_unlock(&pl330->lock);
2147 power_down = pch->active;
2148 pch->active = false;
2150 /* Mark all desc done */
2151 list_for_each_entry(desc, &pch->submitted_list, node) {
2152 desc->status = FREE;
2153 dma_cookie_complete(&desc->txd);
2156 list_for_each_entry(desc, &pch->work_list , node) {
2157 desc->status = FREE;
2158 dma_cookie_complete(&desc->txd);
2161 list_splice_tail_init(&pch->submitted_list, &pl330->desc_pool);
2162 list_splice_tail_init(&pch->work_list, &pl330->desc_pool);
2163 list_splice_tail_init(&pch->completed_list, &pl330->desc_pool);
2164 spin_unlock_irqrestore(&pch->lock, flags);
2165 pm_runtime_mark_last_busy(pl330->ddma.dev);
2167 pm_runtime_put_autosuspend(pl330->ddma.dev);
2168 pm_runtime_put_autosuspend(pl330->ddma.dev);
2174 * We don't support DMA_RESUME command because of hardware
2175 * limitations, so after pausing the channel we cannot restore
2176 * it to active state. We have to terminate channel and setup
2177 * DMA transfer again. This pause feature was implemented to
2178 * allow safely read residue before channel termination.
2180 static int pl330_pause(struct dma_chan *chan)
2182 struct dma_pl330_chan *pch = to_pchan(chan);
2183 struct pl330_dmac *pl330 = pch->dmac;
2184 unsigned long flags;
2186 pm_runtime_get_sync(pl330->ddma.dev);
2187 spin_lock_irqsave(&pch->lock, flags);
2189 spin_lock(&pl330->lock);
2191 spin_unlock(&pl330->lock);
2193 spin_unlock_irqrestore(&pch->lock, flags);
2194 pm_runtime_mark_last_busy(pl330->ddma.dev);
2195 pm_runtime_put_autosuspend(pl330->ddma.dev);
2200 static void pl330_free_chan_resources(struct dma_chan *chan)
2202 struct dma_pl330_chan *pch = to_pchan(chan);
2203 struct pl330_dmac *pl330 = pch->dmac;
2204 unsigned long flags;
2206 tasklet_kill(&pch->task);
2208 pm_runtime_get_sync(pch->dmac->ddma.dev);
2209 spin_lock_irqsave(&pl330->lock, flags);
2211 pl330_release_channel(pch->thread);
2215 list_splice_tail_init(&pch->work_list, &pch->dmac->desc_pool);
2217 spin_unlock_irqrestore(&pl330->lock, flags);
2218 pm_runtime_mark_last_busy(pch->dmac->ddma.dev);
2219 pm_runtime_put_autosuspend(pch->dmac->ddma.dev);
2222 static int pl330_get_current_xferred_count(struct dma_pl330_chan *pch,
2223 struct dma_pl330_desc *desc)
2225 struct pl330_thread *thrd = pch->thread;
2226 struct pl330_dmac *pl330 = pch->dmac;
2227 void __iomem *regs = thrd->dmac->base;
2230 pm_runtime_get_sync(pl330->ddma.dev);
2232 if (desc->rqcfg.src_inc) {
2233 val = readl(regs + SA(thrd->id));
2234 addr = desc->px.src_addr;
2236 val = readl(regs + DA(thrd->id));
2237 addr = desc->px.dst_addr;
2239 pm_runtime_mark_last_busy(pch->dmac->ddma.dev);
2240 pm_runtime_put_autosuspend(pl330->ddma.dev);
2244 static enum dma_status
2245 pl330_tx_status(struct dma_chan *chan, dma_cookie_t cookie,
2246 struct dma_tx_state *txstate)
2248 enum dma_status ret;
2249 unsigned long flags;
2250 struct dma_pl330_desc *desc, *running = NULL;
2251 struct dma_pl330_chan *pch = to_pchan(chan);
2252 unsigned int transferred, residual = 0;
2254 ret = dma_cookie_status(chan, cookie, txstate);
2259 if (ret == DMA_COMPLETE)
2262 spin_lock_irqsave(&pch->lock, flags);
2264 if (pch->thread->req_running != -1)
2265 running = pch->thread->req[pch->thread->req_running].desc;
2267 /* Check in pending list */
2268 list_for_each_entry(desc, &pch->work_list, node) {
2269 if (desc->status == DONE)
2270 transferred = desc->bytes_requested;
2271 else if (running && desc == running)
2273 pl330_get_current_xferred_count(pch, desc);
2276 residual += desc->bytes_requested - transferred;
2277 if (desc->txd.cookie == cookie) {
2278 switch (desc->status) {
2284 ret = DMA_IN_PROGRESS;
2294 spin_unlock_irqrestore(&pch->lock, flags);
2297 dma_set_residue(txstate, residual);
2302 static void pl330_issue_pending(struct dma_chan *chan)
2304 struct dma_pl330_chan *pch = to_pchan(chan);
2305 unsigned long flags;
2307 spin_lock_irqsave(&pch->lock, flags);
2308 if (list_empty(&pch->work_list)) {
2310 * Warn on nothing pending. Empty submitted_list may
2311 * break our pm_runtime usage counter as it is
2312 * updated on work_list emptiness status.
2314 WARN_ON(list_empty(&pch->submitted_list));
2316 pm_runtime_get_sync(pch->dmac->ddma.dev);
2318 list_splice_tail_init(&pch->submitted_list, &pch->work_list);
2319 spin_unlock_irqrestore(&pch->lock, flags);
2321 pl330_tasklet((unsigned long)pch);
2325 * We returned the last one of the circular list of descriptor(s)
2326 * from prep_xxx, so the argument to submit corresponds to the last
2327 * descriptor of the list.
2329 static dma_cookie_t pl330_tx_submit(struct dma_async_tx_descriptor *tx)
2331 struct dma_pl330_desc *desc, *last = to_desc(tx);
2332 struct dma_pl330_chan *pch = to_pchan(tx->chan);
2333 dma_cookie_t cookie;
2334 unsigned long flags;
2336 spin_lock_irqsave(&pch->lock, flags);
2338 /* Assign cookies to all nodes */
2339 while (!list_empty(&last->node)) {
2340 desc = list_entry(last->node.next, struct dma_pl330_desc, node);
2342 desc->txd.callback = last->txd.callback;
2343 desc->txd.callback_param = last->txd.callback_param;
2347 dma_cookie_assign(&desc->txd);
2349 list_move_tail(&desc->node, &pch->submitted_list);
2353 cookie = dma_cookie_assign(&last->txd);
2354 list_add_tail(&last->node, &pch->submitted_list);
2355 spin_unlock_irqrestore(&pch->lock, flags);
2360 static inline void _init_desc(struct dma_pl330_desc *desc)
2362 desc->rqcfg.swap = SWAP_NO;
2363 desc->rqcfg.scctl = CCTRL0;
2364 desc->rqcfg.dcctl = CCTRL0;
2365 desc->txd.tx_submit = pl330_tx_submit;
2367 INIT_LIST_HEAD(&desc->node);
2370 /* Returns the number of descriptors added to the DMAC pool */
2371 static int add_desc(struct pl330_dmac *pl330, gfp_t flg, int count)
2373 struct dma_pl330_desc *desc;
2374 unsigned long flags;
2377 desc = kcalloc(count, sizeof(*desc), flg);
2381 spin_lock_irqsave(&pl330->pool_lock, flags);
2383 for (i = 0; i < count; i++) {
2384 _init_desc(&desc[i]);
2385 list_add_tail(&desc[i].node, &pl330->desc_pool);
2388 spin_unlock_irqrestore(&pl330->pool_lock, flags);
2393 static struct dma_pl330_desc *pluck_desc(struct pl330_dmac *pl330)
2395 struct dma_pl330_desc *desc = NULL;
2396 unsigned long flags;
2398 spin_lock_irqsave(&pl330->pool_lock, flags);
2400 if (!list_empty(&pl330->desc_pool)) {
2401 desc = list_entry(pl330->desc_pool.next,
2402 struct dma_pl330_desc, node);
2404 list_del_init(&desc->node);
2406 desc->status = PREP;
2407 desc->txd.callback = NULL;
2410 spin_unlock_irqrestore(&pl330->pool_lock, flags);
2415 static struct dma_pl330_desc *pl330_get_desc(struct dma_pl330_chan *pch)
2417 struct pl330_dmac *pl330 = pch->dmac;
2418 u8 *peri_id = pch->chan.private;
2419 struct dma_pl330_desc *desc;
2421 /* Pluck one desc from the pool of DMAC */
2422 desc = pluck_desc(pl330);
2424 /* If the DMAC pool is empty, alloc new */
2426 if (!add_desc(pl330, GFP_ATOMIC, 1))
2430 desc = pluck_desc(pl330);
2432 dev_err(pch->dmac->ddma.dev,
2433 "%s:%d ALERT!\n", __func__, __LINE__);
2438 /* Initialize the descriptor */
2440 desc->txd.cookie = 0;
2441 async_tx_ack(&desc->txd);
2443 desc->peri = peri_id ? pch->chan.chan_id : 0;
2444 desc->rqcfg.pcfg = &pch->dmac->pcfg;
2446 dma_async_tx_descriptor_init(&desc->txd, &pch->chan);
2451 static inline void fill_px(struct pl330_xfer *px,
2452 dma_addr_t dst, dma_addr_t src, size_t len)
2459 static struct dma_pl330_desc *
2460 __pl330_prep_dma_memcpy(struct dma_pl330_chan *pch, dma_addr_t dst,
2461 dma_addr_t src, size_t len)
2463 struct dma_pl330_desc *desc = pl330_get_desc(pch);
2466 dev_err(pch->dmac->ddma.dev, "%s:%d Unable to fetch desc\n",
2467 __func__, __LINE__);
2472 * Ideally we should lookout for reqs bigger than
2473 * those that can be programmed with 256 bytes of
2474 * MC buffer, but considering a req size is seldom
2475 * going to be word-unaligned and more than 200MB,
2477 * Also, should the limit is reached we'd rather
2478 * have the platform increase MC buffer size than
2479 * complicating this API driver.
2481 fill_px(&desc->px, dst, src, len);
2486 /* Call after fixing burst size */
2487 static inline int get_burst_len(struct dma_pl330_desc *desc, size_t len)
2489 struct dma_pl330_chan *pch = desc->pchan;
2490 struct pl330_dmac *pl330 = pch->dmac;
2493 burst_len = pl330->pcfg.data_bus_width / 8;
2494 burst_len *= pl330->pcfg.data_buf_dep / pl330->pcfg.num_chan;
2495 burst_len >>= desc->rqcfg.brst_size;
2497 /* src/dst_burst_len can't be more than 16 */
2501 while (burst_len > 1) {
2502 if (!(len % (burst_len << desc->rqcfg.brst_size)))
2510 static struct dma_async_tx_descriptor *pl330_prep_dma_cyclic(
2511 struct dma_chan *chan, dma_addr_t dma_addr, size_t len,
2512 size_t period_len, enum dma_transfer_direction direction,
2513 unsigned long flags)
2515 struct dma_pl330_desc *desc = NULL, *first = NULL;
2516 struct dma_pl330_chan *pch = to_pchan(chan);
2517 struct pl330_dmac *pl330 = pch->dmac;
2522 if (len % period_len != 0)
2525 if (!is_slave_direction(direction)) {
2526 dev_err(pch->dmac->ddma.dev, "%s:%d Invalid dma direction\n",
2527 __func__, __LINE__);
2531 for (i = 0; i < len / period_len; i++) {
2532 desc = pl330_get_desc(pch);
2534 unsigned long iflags;
2536 dev_err(pch->dmac->ddma.dev, "%s:%d Unable to fetch desc\n",
2537 __func__, __LINE__);
2542 spin_lock_irqsave(&pl330->pool_lock, iflags);
2544 while (!list_empty(&first->node)) {
2545 desc = list_entry(first->node.next,
2546 struct dma_pl330_desc, node);
2547 list_move_tail(&desc->node, &pl330->desc_pool);
2550 list_move_tail(&first->node, &pl330->desc_pool);
2552 spin_unlock_irqrestore(&pl330->pool_lock, iflags);
2557 switch (direction) {
2558 case DMA_MEM_TO_DEV:
2559 desc->rqcfg.src_inc = 1;
2560 desc->rqcfg.dst_inc = 0;
2562 dst = pch->fifo_addr;
2564 case DMA_DEV_TO_MEM:
2565 desc->rqcfg.src_inc = 0;
2566 desc->rqcfg.dst_inc = 1;
2567 src = pch->fifo_addr;
2574 desc->rqtype = direction;
2575 desc->rqcfg.brst_size = pch->burst_sz;
2576 desc->rqcfg.brst_len = 1;
2577 desc->bytes_requested = period_len;
2578 fill_px(&desc->px, dst, src, period_len);
2583 list_add_tail(&desc->node, &first->node);
2585 dma_addr += period_len;
2592 desc->txd.flags = flags;
2597 static struct dma_async_tx_descriptor *
2598 pl330_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dst,
2599 dma_addr_t src, size_t len, unsigned long flags)
2601 struct dma_pl330_desc *desc;
2602 struct dma_pl330_chan *pch = to_pchan(chan);
2603 struct pl330_dmac *pl330;
2606 if (unlikely(!pch || !len))
2611 desc = __pl330_prep_dma_memcpy(pch, dst, src, len);
2615 desc->rqcfg.src_inc = 1;
2616 desc->rqcfg.dst_inc = 1;
2617 desc->rqtype = DMA_MEM_TO_MEM;
2619 /* Select max possible burst size */
2620 burst = pl330->pcfg.data_bus_width / 8;
2623 * Make sure we use a burst size that aligns with all the memcpy
2624 * parameters because our DMA programming algorithm doesn't cope with
2625 * transfers which straddle an entry in the DMA device's MFIFO.
2627 while ((src | dst | len) & (burst - 1))
2630 desc->rqcfg.brst_size = 0;
2631 while (burst != (1 << desc->rqcfg.brst_size))
2632 desc->rqcfg.brst_size++;
2634 desc->rqcfg.brst_len = get_burst_len(desc, len);
2636 * If burst size is smaller than bus width then make sure we only
2637 * transfer one at a time to avoid a burst stradling an MFIFO entry.
2639 if (burst * 8 < pl330->pcfg.data_bus_width)
2640 desc->rqcfg.brst_len = 1;
2642 desc->bytes_requested = len;
2644 desc->txd.flags = flags;
2649 static void __pl330_giveback_desc(struct pl330_dmac *pl330,
2650 struct dma_pl330_desc *first)
2652 unsigned long flags;
2653 struct dma_pl330_desc *desc;
2658 spin_lock_irqsave(&pl330->pool_lock, flags);
2660 while (!list_empty(&first->node)) {
2661 desc = list_entry(first->node.next,
2662 struct dma_pl330_desc, node);
2663 list_move_tail(&desc->node, &pl330->desc_pool);
2666 list_move_tail(&first->node, &pl330->desc_pool);
2668 spin_unlock_irqrestore(&pl330->pool_lock, flags);
2671 static struct dma_async_tx_descriptor *
2672 pl330_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
2673 unsigned int sg_len, enum dma_transfer_direction direction,
2674 unsigned long flg, void *context)
2676 struct dma_pl330_desc *first, *desc = NULL;
2677 struct dma_pl330_chan *pch = to_pchan(chan);
2678 struct scatterlist *sg;
2682 if (unlikely(!pch || !sgl || !sg_len))
2685 addr = pch->fifo_addr;
2689 for_each_sg(sgl, sg, sg_len, i) {
2691 desc = pl330_get_desc(pch);
2693 struct pl330_dmac *pl330 = pch->dmac;
2695 dev_err(pch->dmac->ddma.dev,
2696 "%s:%d Unable to fetch desc\n",
2697 __func__, __LINE__);
2698 __pl330_giveback_desc(pl330, first);
2706 list_add_tail(&desc->node, &first->node);
2708 if (direction == DMA_MEM_TO_DEV) {
2709 desc->rqcfg.src_inc = 1;
2710 desc->rqcfg.dst_inc = 0;
2712 addr, sg_dma_address(sg), sg_dma_len(sg));
2714 desc->rqcfg.src_inc = 0;
2715 desc->rqcfg.dst_inc = 1;
2717 sg_dma_address(sg), addr, sg_dma_len(sg));
2720 desc->rqcfg.brst_size = pch->burst_sz;
2721 desc->rqcfg.brst_len = 1;
2722 desc->rqtype = direction;
2723 desc->bytes_requested = sg_dma_len(sg);
2726 /* Return the last desc in the chain */
2727 desc->txd.flags = flg;
2731 static irqreturn_t pl330_irq_handler(int irq, void *data)
2733 if (pl330_update(data))
2739 #define PL330_DMA_BUSWIDTHS \
2740 BIT(DMA_SLAVE_BUSWIDTH_UNDEFINED) | \
2741 BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) | \
2742 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) | \
2743 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) | \
2744 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES)
2747 * Runtime PM callbacks are provided by amba/bus.c driver.
2749 * It is assumed here that IRQ safe runtime PM is chosen in probe and amba
2750 * bus driver will only disable/enable the clock in runtime PM callbacks.
2752 static int __maybe_unused pl330_suspend(struct device *dev)
2754 struct amba_device *pcdev = to_amba_device(dev);
2756 pm_runtime_disable(dev);
2758 if (!pm_runtime_status_suspended(dev)) {
2759 /* amba did not disable the clock */
2760 amba_pclk_disable(pcdev);
2762 amba_pclk_unprepare(pcdev);
2767 static int __maybe_unused pl330_resume(struct device *dev)
2769 struct amba_device *pcdev = to_amba_device(dev);
2772 ret = amba_pclk_prepare(pcdev);
2776 if (!pm_runtime_status_suspended(dev))
2777 ret = amba_pclk_enable(pcdev);
2779 pm_runtime_enable(dev);
2784 static SIMPLE_DEV_PM_OPS(pl330_pm, pl330_suspend, pl330_resume);
2787 pl330_probe(struct amba_device *adev, const struct amba_id *id)
2789 struct dma_pl330_platdata *pdat;
2790 struct pl330_config *pcfg;
2791 struct pl330_dmac *pl330;
2792 struct dma_pl330_chan *pch, *_p;
2793 struct dma_device *pd;
2794 struct resource *res;
2798 pdat = dev_get_platdata(&adev->dev);
2800 ret = dma_set_mask_and_coherent(&adev->dev, DMA_BIT_MASK(32));
2804 /* Allocate a new DMAC and its Channels */
2805 pl330 = devm_kzalloc(&adev->dev, sizeof(*pl330), GFP_KERNEL);
2807 dev_err(&adev->dev, "unable to allocate mem\n");
2812 pd->dev = &adev->dev;
2814 pl330->mcbufsz = pdat ? pdat->mcbuf_sz : 0;
2817 pl330->base = devm_ioremap_resource(&adev->dev, res);
2818 if (IS_ERR(pl330->base))
2819 return PTR_ERR(pl330->base);
2821 amba_set_drvdata(adev, pl330);
2823 for (i = 0; i < AMBA_NR_IRQS; i++) {
2826 ret = devm_request_irq(&adev->dev, irq,
2827 pl330_irq_handler, 0,
2828 dev_name(&adev->dev), pl330);
2836 pcfg = &pl330->pcfg;
2838 pcfg->periph_id = adev->periphid;
2839 ret = pl330_add(pl330);
2843 INIT_LIST_HEAD(&pl330->desc_pool);
2844 spin_lock_init(&pl330->pool_lock);
2846 /* Create a descriptor pool of default size */
2847 if (!add_desc(pl330, GFP_KERNEL, NR_DEFAULT_DESC))
2848 dev_warn(&adev->dev, "unable to allocate desc\n");
2850 INIT_LIST_HEAD(&pd->channels);
2852 /* Initialize channel parameters */
2854 num_chan = max_t(int, pdat->nr_valid_peri, pcfg->num_chan);
2856 num_chan = max_t(int, pcfg->num_peri, pcfg->num_chan);
2858 pl330->num_peripherals = num_chan;
2860 pl330->peripherals = kzalloc(num_chan * sizeof(*pch), GFP_KERNEL);
2861 if (!pl330->peripherals) {
2863 dev_err(&adev->dev, "unable to allocate pl330->peripherals\n");
2867 for (i = 0; i < num_chan; i++) {
2868 pch = &pl330->peripherals[i];
2869 if (!adev->dev.of_node)
2870 pch->chan.private = pdat ? &pdat->peri_id[i] : NULL;
2872 pch->chan.private = adev->dev.of_node;
2874 INIT_LIST_HEAD(&pch->submitted_list);
2875 INIT_LIST_HEAD(&pch->work_list);
2876 INIT_LIST_HEAD(&pch->completed_list);
2877 spin_lock_init(&pch->lock);
2879 pch->chan.device = pd;
2882 /* Add the channel to the DMAC list */
2883 list_add_tail(&pch->chan.device_node, &pd->channels);
2887 pd->cap_mask = pdat->cap_mask;
2889 dma_cap_set(DMA_MEMCPY, pd->cap_mask);
2890 if (pcfg->num_peri) {
2891 dma_cap_set(DMA_SLAVE, pd->cap_mask);
2892 dma_cap_set(DMA_CYCLIC, pd->cap_mask);
2893 dma_cap_set(DMA_PRIVATE, pd->cap_mask);
2897 pd->device_alloc_chan_resources = pl330_alloc_chan_resources;
2898 pd->device_free_chan_resources = pl330_free_chan_resources;
2899 pd->device_prep_dma_memcpy = pl330_prep_dma_memcpy;
2900 pd->device_prep_dma_cyclic = pl330_prep_dma_cyclic;
2901 pd->device_tx_status = pl330_tx_status;
2902 pd->device_prep_slave_sg = pl330_prep_slave_sg;
2903 pd->device_config = pl330_config;
2904 pd->device_pause = pl330_pause;
2905 pd->device_terminate_all = pl330_terminate_all;
2906 pd->device_issue_pending = pl330_issue_pending;
2907 pd->src_addr_widths = PL330_DMA_BUSWIDTHS;
2908 pd->dst_addr_widths = PL330_DMA_BUSWIDTHS;
2909 pd->directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
2910 pd->residue_granularity = DMA_RESIDUE_GRANULARITY_SEGMENT;
2912 ret = dma_async_device_register(pd);
2914 dev_err(&adev->dev, "unable to register DMAC\n");
2918 if (adev->dev.of_node) {
2919 ret = of_dma_controller_register(adev->dev.of_node,
2920 of_dma_pl330_xlate, pl330);
2923 "unable to register DMA to the generic DT DMA helpers\n");
2927 adev->dev.dma_parms = &pl330->dma_parms;
2930 * This is the limit for transfers with a buswidth of 1, larger
2931 * buswidths will have larger limits.
2933 ret = dma_set_max_seg_size(&adev->dev, 1900800);
2935 dev_err(&adev->dev, "unable to set the seg size\n");
2938 dev_info(&adev->dev,
2939 "Loaded driver for PL330 DMAC-%x\n", adev->periphid);
2940 dev_info(&adev->dev,
2941 "\tDBUFF-%ux%ubytes Num_Chans-%u Num_Peri-%u Num_Events-%u\n",
2942 pcfg->data_buf_dep, pcfg->data_bus_width / 8, pcfg->num_chan,
2943 pcfg->num_peri, pcfg->num_events);
2945 pm_runtime_irq_safe(&adev->dev);
2946 pm_runtime_use_autosuspend(&adev->dev);
2947 pm_runtime_set_autosuspend_delay(&adev->dev, PL330_AUTOSUSPEND_DELAY);
2948 pm_runtime_mark_last_busy(&adev->dev);
2949 pm_runtime_put_autosuspend(&adev->dev);
2954 list_for_each_entry_safe(pch, _p, &pl330->ddma.channels,
2957 /* Remove the channel */
2958 list_del(&pch->chan.device_node);
2960 /* Flush the channel */
2962 pl330_terminate_all(&pch->chan);
2963 pl330_free_chan_resources(&pch->chan);
2972 static int pl330_remove(struct amba_device *adev)
2974 struct pl330_dmac *pl330 = amba_get_drvdata(adev);
2975 struct dma_pl330_chan *pch, *_p;
2977 pm_runtime_get_noresume(pl330->ddma.dev);
2979 if (adev->dev.of_node)
2980 of_dma_controller_free(adev->dev.of_node);
2982 dma_async_device_unregister(&pl330->ddma);
2985 list_for_each_entry_safe(pch, _p, &pl330->ddma.channels,
2988 /* Remove the channel */
2989 list_del(&pch->chan.device_node);
2991 /* Flush the channel */
2993 pl330_terminate_all(&pch->chan);
2994 pl330_free_chan_resources(&pch->chan);
3003 static struct amba_id pl330_ids[] = {
3011 MODULE_DEVICE_TABLE(amba, pl330_ids);
3013 static struct amba_driver pl330_driver = {
3015 .owner = THIS_MODULE,
3016 .name = "dma-pl330",
3019 .id_table = pl330_ids,
3020 .probe = pl330_probe,
3021 .remove = pl330_remove,
3024 module_amba_driver(pl330_driver);
3026 MODULE_AUTHOR("Jaswinder Singh <jassisinghbrar@gmail.com>");
3027 MODULE_DESCRIPTION("API Driver for PL330 DMAC");
3028 MODULE_LICENSE("GPL");