1
2
3
4
5
6
7
8
9
10
11
12
13
14#include <linux/kernel.h>
15#include <linux/io.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/scatterlist.h>
26#include <linux/of.h>
27#include <linux/of_dma.h>
28#include <linux/err.h>
29#include <linux/pm_runtime.h>
30#include <linux/bug.h>
31
32#include "dmaengine.h"
33#define PL330_MAX_CHAN 8
34#define PL330_MAX_IRQS 32
35#define PL330_MAX_PERI 32
36#define PL330_MAX_BURST 16
37
38#define PL330_QUIRK_BROKEN_NO_FLUSHP BIT(0)
39
40enum pl330_cachectrl {
41 CCTRL0,
42 CCTRL1,
43 CCTRL2,
44 CCTRL3,
45 INVALID1,
46 INVALID2,
47 CCTRL6,
48 CCTRL7,
49};
50
51enum pl330_byteswap {
52 SWAP_NO,
53 SWAP_2,
54 SWAP_4,
55 SWAP_8,
56 SWAP_16,
57};
58
59
60#define DS 0x0
61#define DS_ST_STOP 0x0
62#define DS_ST_EXEC 0x1
63#define DS_ST_CMISS 0x2
64#define DS_ST_UPDTPC 0x3
65#define DS_ST_WFE 0x4
66#define DS_ST_ATBRR 0x5
67#define DS_ST_QBUSY 0x6
68#define DS_ST_WFP 0x7
69#define DS_ST_KILL 0x8
70#define DS_ST_CMPLT 0x9
71#define DS_ST_FLTCMP 0xe
72#define DS_ST_FAULT 0xf
73
74#define DPC 0x4
75#define INTEN 0x20
76#define ES 0x24
77#define INTSTATUS 0x28
78#define INTCLR 0x2c
79#define FSM 0x30
80#define FSC 0x34
81#define FTM 0x38
82
83#define _FTC 0x40
84#define FTC(n) (_FTC + (n)*0x4)
85
86#define _CS 0x100
87#define CS(n) (_CS + (n)*0x8)
88#define CS_CNS (1 << 21)
89
90#define _CPC 0x104
91#define CPC(n) (_CPC + (n)*0x8)
92
93#define _SA 0x400
94#define SA(n) (_SA + (n)*0x20)
95
96#define _DA 0x404
97#define DA(n) (_DA + (n)*0x20)
98
99#define _CC 0x408
100#define CC(n) (_CC + (n)*0x20)
101
102#define CC_SRCINC (1 << 0)
103#define CC_DSTINC (1 << 14)
104#define CC_SRCPRI (1 << 8)
105#define CC_DSTPRI (1 << 22)
106#define CC_SRCNS (1 << 9)
107#define CC_DSTNS (1 << 23)
108#define CC_SRCIA (1 << 10)
109#define CC_DSTIA (1 << 24)
110#define CC_SRCBRSTLEN_SHFT 4
111#define CC_DSTBRSTLEN_SHFT 18
112#define CC_SRCBRSTSIZE_SHFT 1
113#define CC_DSTBRSTSIZE_SHFT 15
114#define CC_SRCCCTRL_SHFT 11
115#define CC_SRCCCTRL_MASK 0x7
116#define CC_DSTCCTRL_SHFT 25
117#define CC_DRCCCTRL_MASK 0x7
118#define CC_SWAP_SHFT 28
119
120#define _LC0 0x40c
121#define LC0(n) (_LC0 + (n)*0x20)
122
123#define _LC1 0x410
124#define LC1(n) (_LC1 + (n)*0x20)
125
126#define DBGSTATUS 0xd00
127#define DBG_BUSY (1 << 0)
128
129#define DBGCMD 0xd04
130#define DBGINST0 0xd08
131#define DBGINST1 0xd0c
132
133#define CR0 0xe00
134#define CR1 0xe04
135#define CR2 0xe08
136#define CR3 0xe0c
137#define CR4 0xe10
138#define CRD 0xe14
139
140#define PERIPH_ID 0xfe0
141#define PERIPH_REV_SHIFT 20
142#define PERIPH_REV_MASK 0xf
143#define PERIPH_REV_R0P0 0
144#define PERIPH_REV_R1P0 1
145#define PERIPH_REV_R1P1 2
146
147#define CR0_PERIPH_REQ_SET (1 << 0)
148#define CR0_BOOT_EN_SET (1 << 1)
149#define CR0_BOOT_MAN_NS (1 << 2)
150#define CR0_NUM_CHANS_SHIFT 4
151#define CR0_NUM_CHANS_MASK 0x7
152#define CR0_NUM_PERIPH_SHIFT 12
153#define CR0_NUM_PERIPH_MASK 0x1f
154#define CR0_NUM_EVENTS_SHIFT 17
155#define CR0_NUM_EVENTS_MASK 0x1f
156
157#define CR1_ICACHE_LEN_SHIFT 0
158#define CR1_ICACHE_LEN_MASK 0x7
159#define CR1_NUM_ICACHELINES_SHIFT 4
160#define CR1_NUM_ICACHELINES_MASK 0xf
161
162#define CRD_DATA_WIDTH_SHIFT 0
163#define CRD_DATA_WIDTH_MASK 0x7
164#define CRD_WR_CAP_SHIFT 4
165#define CRD_WR_CAP_MASK 0x7
166#define CRD_WR_Q_DEP_SHIFT 8
167#define CRD_WR_Q_DEP_MASK 0xf
168#define CRD_RD_CAP_SHIFT 12
169#define CRD_RD_CAP_MASK 0x7
170#define CRD_RD_Q_DEP_SHIFT 16
171#define CRD_RD_Q_DEP_MASK 0xf
172#define CRD_DATA_BUFF_SHIFT 20
173#define CRD_DATA_BUFF_MASK 0x3ff
174
175#define PART 0x330
176#define DESIGNER 0x41
177#define REVISION 0x0
178#define INTEG_CFG 0x0
179#define PERIPH_ID_VAL ((PART << 0) | (DESIGNER << 12))
180
181#define PL330_STATE_STOPPED (1 << 0)
182#define PL330_STATE_EXECUTING (1 << 1)
183#define PL330_STATE_WFE (1 << 2)
184#define PL330_STATE_FAULTING (1 << 3)
185#define PL330_STATE_COMPLETING (1 << 4)
186#define PL330_STATE_WFP (1 << 5)
187#define PL330_STATE_KILLING (1 << 6)
188#define PL330_STATE_FAULT_COMPLETING (1 << 7)
189#define PL330_STATE_CACHEMISS (1 << 8)
190#define PL330_STATE_UPDTPC (1 << 9)
191#define PL330_STATE_ATBARRIER (1 << 10)
192#define PL330_STATE_QUEUEBUSY (1 << 11)
193#define PL330_STATE_INVALID (1 << 15)
194
195#define PL330_STABLE_STATES (PL330_STATE_STOPPED | PL330_STATE_EXECUTING \
196 | PL330_STATE_WFE | PL330_STATE_FAULTING)
197
198#define CMD_DMAADDH 0x54
199#define CMD_DMAEND 0x00
200#define CMD_DMAFLUSHP 0x35
201#define CMD_DMAGO 0xa0
202#define CMD_DMALD 0x04
203#define CMD_DMALDP 0x25
204#define CMD_DMALP 0x20
205#define CMD_DMALPEND 0x28
206#define CMD_DMAKILL 0x01
207#define CMD_DMAMOV 0xbc
208#define CMD_DMANOP 0x18
209#define CMD_DMARMB 0x12
210#define CMD_DMASEV 0x34
211#define CMD_DMAST 0x08
212#define CMD_DMASTP 0x29
213#define CMD_DMASTZ 0x0c
214#define CMD_DMAWFE 0x36
215#define CMD_DMAWFP 0x30
216#define CMD_DMAWMB 0x13
217
218#define SZ_DMAADDH 3
219#define SZ_DMAEND 1
220#define SZ_DMAFLUSHP 2
221#define SZ_DMALD 1
222#define SZ_DMALDP 2
223#define SZ_DMALP 2
224#define SZ_DMALPEND 2
225#define SZ_DMAKILL 1
226#define SZ_DMAMOV 6
227#define SZ_DMANOP 1
228#define SZ_DMARMB 1
229#define SZ_DMASEV 2
230#define SZ_DMAST 1
231#define SZ_DMASTP 2
232#define SZ_DMASTZ 1
233#define SZ_DMAWFE 2
234#define SZ_DMAWFP 2
235#define SZ_DMAWMB 1
236#define SZ_DMAGO 6
237
238#define BRST_LEN(ccr) ((((ccr) >> CC_SRCBRSTLEN_SHFT) & 0xf) + 1)
239#define BRST_SIZE(ccr) (1 << (((ccr) >> CC_SRCBRSTSIZE_SHFT) & 0x7))
240
241#define BYTE_TO_BURST(b, ccr) ((b) / BRST_SIZE(ccr) / BRST_LEN(ccr))
242#define BURST_TO_BYTE(c, ccr) ((c) * BRST_SIZE(ccr) * BRST_LEN(ccr))
243
244
245
246
247
248
249
250#define MCODE_BUFF_PER_REQ 256
251
252
253#define UNTIL(t, s) while (!(_state(t) & (s))) cpu_relax();
254
255#ifdef PL330_DEBUG_MCGEN
256static unsigned cmd_line;
257#define PL330_DBGCMD_DUMP(off, x...) do { \
258 printk("%x:", cmd_line); \
259 printk(x); \
260 cmd_line += off; \
261 } while (0)
262#define PL330_DBGMC_START(addr) (cmd_line = addr)
263#else
264#define PL330_DBGCMD_DUMP(off, x...) do {} while (0)
265#define PL330_DBGMC_START(addr) do {} while (0)
266#endif
267
268
269
270#define NR_DEFAULT_DESC 16
271
272
273#define PL330_AUTOSUSPEND_DELAY 20
274
275
276struct pl330_config {
277 u32 periph_id;
278#define DMAC_MODE_NS (1 << 0)
279 unsigned int mode;
280 unsigned int data_bus_width:10;
281 unsigned int data_buf_dep:11;
282 unsigned int num_chan:4;
283 unsigned int num_peri:6;
284 u32 peri_ns;
285 unsigned int num_events:6;
286 u32 irq_ns;
287};
288
289
290
291
292
293
294
295
296
297struct pl330_reqcfg {
298
299 unsigned dst_inc:1;
300 unsigned src_inc:1;
301
302
303
304
305
306 bool nonsecure;
307 bool privileged;
308 bool insnaccess;
309 unsigned brst_len:5;
310 unsigned brst_size:3;
311
312 enum pl330_cachectrl dcctl;
313 enum pl330_cachectrl scctl;
314 enum pl330_byteswap swap;
315 struct pl330_config *pcfg;
316};
317
318
319
320
321
322struct pl330_xfer {
323 u32 src_addr;
324 u32 dst_addr;
325
326 u32 bytes;
327};
328
329
330enum pl330_op_err {
331
332 PL330_ERR_NONE,
333
334 PL330_ERR_ABORT,
335
336 PL330_ERR_FAIL,
337};
338
339enum dmamov_dst {
340 SAR = 0,
341 CCR,
342 DAR,
343};
344
345enum pl330_dst {
346 SRC = 0,
347 DST,
348};
349
350enum pl330_cond {
351 SINGLE,
352 BURST,
353 ALWAYS,
354};
355
356struct dma_pl330_desc;
357
358struct _pl330_req {
359 u32 mc_bus;
360 void *mc_cpu;
361 struct dma_pl330_desc *desc;
362};
363
364
365struct _pl330_tbd {
366 bool reset_dmac;
367 bool reset_mngr;
368 u8 reset_chan;
369};
370
371
372struct pl330_thread {
373 u8 id;
374 int ev;
375
376 bool free;
377
378 struct pl330_dmac *dmac;
379
380 struct _pl330_req req[2];
381
382 unsigned lstenq;
383
384 int req_running;
385};
386
387enum pl330_dmac_state {
388 UNINIT,
389 INIT,
390 DYING,
391};
392
393enum desc_status {
394
395 FREE,
396
397
398
399
400 PREP,
401
402
403
404
405
406 BUSY,
407
408
409
410
411 DONE,
412};
413
414struct dma_pl330_chan {
415
416 struct tasklet_struct task;
417
418
419 struct dma_chan chan;
420
421
422 struct list_head submitted_list;
423
424 struct list_head work_list;
425
426 struct list_head completed_list;
427
428
429
430
431
432
433 struct pl330_dmac *dmac;
434
435
436 spinlock_t lock;
437
438
439
440
441
442 struct pl330_thread *thread;
443
444
445 int burst_sz;
446 int burst_len;
447 phys_addr_t fifo_addr;
448
449 dma_addr_t fifo_dma;
450 enum dma_data_direction dir;
451
452
453 bool cyclic;
454
455
456 bool active;
457};
458
459struct pl330_dmac {
460
461 struct dma_device ddma;
462
463
464 struct device_dma_parameters dma_parms;
465
466
467 struct list_head desc_pool;
468
469 spinlock_t pool_lock;
470
471
472 unsigned mcbufsz;
473
474 void __iomem *base;
475
476 struct pl330_config pcfg;
477
478 spinlock_t lock;
479
480 int events[32];
481
482 dma_addr_t mcode_bus;
483
484 void *mcode_cpu;
485
486 struct pl330_thread *channels;
487
488 struct pl330_thread *manager;
489
490 struct tasklet_struct tasks;
491 struct _pl330_tbd dmac_tbd;
492
493 enum pl330_dmac_state state;
494
495 struct list_head req_done;
496
497
498 unsigned int num_peripherals;
499 struct dma_pl330_chan *peripherals;
500 int quirks;
501};
502
503static struct pl330_of_quirks {
504 char *quirk;
505 int id;
506} of_quirks[] = {
507 {
508 .quirk = "arm,pl330-broken-no-flushp",
509 .id = PL330_QUIRK_BROKEN_NO_FLUSHP,
510 }
511};
512
513struct dma_pl330_desc {
514
515 struct list_head node;
516
517
518 struct dma_async_tx_descriptor txd;
519
520
521 struct pl330_xfer px;
522
523 struct pl330_reqcfg rqcfg;
524
525 enum desc_status status;
526
527 int bytes_requested;
528 bool last;
529
530
531 struct dma_pl330_chan *pchan;
532
533 enum dma_transfer_direction rqtype;
534
535 unsigned peri:5;
536
537 struct list_head rqd;
538};
539
540struct _xfer_spec {
541 u32 ccr;
542 struct dma_pl330_desc *desc;
543};
544
545static inline bool _queue_full(struct pl330_thread *thrd)
546{
547 return thrd->req[0].desc != NULL && thrd->req[1].desc != NULL;
548}
549
550static inline bool is_manager(struct pl330_thread *thrd)
551{
552 return thrd->dmac->manager == thrd;
553}
554
555
556static inline bool _manager_ns(struct pl330_thread *thrd)
557{
558 return (thrd->dmac->pcfg.mode & DMAC_MODE_NS) ? true : false;
559}
560
561static inline u32 get_revision(u32 periph_id)
562{
563 return (periph_id >> PERIPH_REV_SHIFT) & PERIPH_REV_MASK;
564}
565
566static inline u32 _emit_END(unsigned dry_run, u8 buf[])
567{
568 if (dry_run)
569 return SZ_DMAEND;
570
571 buf[0] = CMD_DMAEND;
572
573 PL330_DBGCMD_DUMP(SZ_DMAEND, "\tDMAEND\n");
574
575 return SZ_DMAEND;
576}
577
578static inline u32 _emit_FLUSHP(unsigned dry_run, u8 buf[], u8 peri)
579{
580 if (dry_run)
581 return SZ_DMAFLUSHP;
582
583 buf[0] = CMD_DMAFLUSHP;
584
585 peri &= 0x1f;
586 peri <<= 3;
587 buf[1] = peri;
588
589 PL330_DBGCMD_DUMP(SZ_DMAFLUSHP, "\tDMAFLUSHP %u\n", peri >> 3);
590
591 return SZ_DMAFLUSHP;
592}
593
594static inline u32 _emit_LD(unsigned dry_run, u8 buf[], enum pl330_cond cond)
595{
596 if (dry_run)
597 return SZ_DMALD;
598
599 buf[0] = CMD_DMALD;
600
601 if (cond == SINGLE)
602 buf[0] |= (0 << 1) | (1 << 0);
603 else if (cond == BURST)
604 buf[0] |= (1 << 1) | (1 << 0);
605
606 PL330_DBGCMD_DUMP(SZ_DMALD, "\tDMALD%c\n",
607 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'A'));
608
609 return SZ_DMALD;
610}
611
612static inline u32 _emit_LDP(unsigned dry_run, u8 buf[],
613 enum pl330_cond cond, u8 peri)
614{
615 if (dry_run)
616 return SZ_DMALDP;
617
618 buf[0] = CMD_DMALDP;
619
620 if (cond == BURST)
621 buf[0] |= (1 << 1);
622
623 peri &= 0x1f;
624 peri <<= 3;
625 buf[1] = peri;
626
627 PL330_DBGCMD_DUMP(SZ_DMALDP, "\tDMALDP%c %u\n",
628 cond == SINGLE ? 'S' : 'B', peri >> 3);
629
630 return SZ_DMALDP;
631}
632
633static inline u32 _emit_LP(unsigned dry_run, u8 buf[],
634 unsigned loop, u8 cnt)
635{
636 if (dry_run)
637 return SZ_DMALP;
638
639 buf[0] = CMD_DMALP;
640
641 if (loop)
642 buf[0] |= (1 << 1);
643
644 cnt--;
645 buf[1] = cnt;
646
647 PL330_DBGCMD_DUMP(SZ_DMALP, "\tDMALP_%c %u\n", loop ? '1' : '0', cnt);
648
649 return SZ_DMALP;
650}
651
652struct _arg_LPEND {
653 enum pl330_cond cond;
654 bool forever;
655 unsigned loop;
656 u8 bjump;
657};
658
659static inline u32 _emit_LPEND(unsigned dry_run, u8 buf[],
660 const struct _arg_LPEND *arg)
661{
662 enum pl330_cond cond = arg->cond;
663 bool forever = arg->forever;
664 unsigned loop = arg->loop;
665 u8 bjump = arg->bjump;
666
667 if (dry_run)
668 return SZ_DMALPEND;
669
670 buf[0] = CMD_DMALPEND;
671
672 if (loop)
673 buf[0] |= (1 << 2);
674
675 if (!forever)
676 buf[0] |= (1 << 4);
677
678 if (cond == SINGLE)
679 buf[0] |= (0 << 1) | (1 << 0);
680 else if (cond == BURST)
681 buf[0] |= (1 << 1) | (1 << 0);
682
683 buf[1] = bjump;
684
685 PL330_DBGCMD_DUMP(SZ_DMALPEND, "\tDMALP%s%c_%c bjmpto_%x\n",
686 forever ? "FE" : "END",
687 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'A'),
688 loop ? '1' : '0',
689 bjump);
690
691 return SZ_DMALPEND;
692}
693
694static inline u32 _emit_KILL(unsigned dry_run, u8 buf[])
695{
696 if (dry_run)
697 return SZ_DMAKILL;
698
699 buf[0] = CMD_DMAKILL;
700
701 return SZ_DMAKILL;
702}
703
704static inline u32 _emit_MOV(unsigned dry_run, u8 buf[],
705 enum dmamov_dst dst, u32 val)
706{
707 if (dry_run)
708 return SZ_DMAMOV;
709
710 buf[0] = CMD_DMAMOV;
711 buf[1] = dst;
712 buf[2] = val;
713 buf[3] = val >> 8;
714 buf[4] = val >> 16;
715 buf[5] = val >> 24;
716
717 PL330_DBGCMD_DUMP(SZ_DMAMOV, "\tDMAMOV %s 0x%x\n",
718 dst == SAR ? "SAR" : (dst == DAR ? "DAR" : "CCR"), val);
719
720 return SZ_DMAMOV;
721}
722
723static inline u32 _emit_RMB(unsigned dry_run, u8 buf[])
724{
725 if (dry_run)
726 return SZ_DMARMB;
727
728 buf[0] = CMD_DMARMB;
729
730 PL330_DBGCMD_DUMP(SZ_DMARMB, "\tDMARMB\n");
731
732 return SZ_DMARMB;
733}
734
735static inline u32 _emit_SEV(unsigned dry_run, u8 buf[], u8 ev)
736{
737 if (dry_run)
738 return SZ_DMASEV;
739
740 buf[0] = CMD_DMASEV;
741
742 ev &= 0x1f;
743 ev <<= 3;
744 buf[1] = ev;
745
746 PL330_DBGCMD_DUMP(SZ_DMASEV, "\tDMASEV %u\n", ev >> 3);
747
748 return SZ_DMASEV;
749}
750
751static inline u32 _emit_ST(unsigned dry_run, u8 buf[], enum pl330_cond cond)
752{
753 if (dry_run)
754 return SZ_DMAST;
755
756 buf[0] = CMD_DMAST;
757
758 if (cond == SINGLE)
759 buf[0] |= (0 << 1) | (1 << 0);
760 else if (cond == BURST)
761 buf[0] |= (1 << 1) | (1 << 0);
762
763 PL330_DBGCMD_DUMP(SZ_DMAST, "\tDMAST%c\n",
764 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'A'));
765
766 return SZ_DMAST;
767}
768
769static inline u32 _emit_STP(unsigned dry_run, u8 buf[],
770 enum pl330_cond cond, u8 peri)
771{
772 if (dry_run)
773 return SZ_DMASTP;
774
775 buf[0] = CMD_DMASTP;
776
777 if (cond == BURST)
778 buf[0] |= (1 << 1);
779
780 peri &= 0x1f;
781 peri <<= 3;
782 buf[1] = peri;
783
784 PL330_DBGCMD_DUMP(SZ_DMASTP, "\tDMASTP%c %u\n",
785 cond == SINGLE ? 'S' : 'B', peri >> 3);
786
787 return SZ_DMASTP;
788}
789
790static inline u32 _emit_WFP(unsigned dry_run, u8 buf[],
791 enum pl330_cond cond, u8 peri)
792{
793 if (dry_run)
794 return SZ_DMAWFP;
795
796 buf[0] = CMD_DMAWFP;
797
798 if (cond == SINGLE)
799 buf[0] |= (0 << 1) | (0 << 0);
800 else if (cond == BURST)
801 buf[0] |= (1 << 1) | (0 << 0);
802 else
803 buf[0] |= (0 << 1) | (1 << 0);
804
805 peri &= 0x1f;
806 peri <<= 3;
807 buf[1] = peri;
808
809 PL330_DBGCMD_DUMP(SZ_DMAWFP, "\tDMAWFP%c %u\n",
810 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'P'), peri >> 3);
811
812 return SZ_DMAWFP;
813}
814
815static inline u32 _emit_WMB(unsigned dry_run, u8 buf[])
816{
817 if (dry_run)
818 return SZ_DMAWMB;
819
820 buf[0] = CMD_DMAWMB;
821
822 PL330_DBGCMD_DUMP(SZ_DMAWMB, "\tDMAWMB\n");
823
824 return SZ_DMAWMB;
825}
826
827struct _arg_GO {
828 u8 chan;
829 u32 addr;
830 unsigned ns;
831};
832
833static inline u32 _emit_GO(unsigned dry_run, u8 buf[],
834 const struct _arg_GO *arg)
835{
836 u8 chan = arg->chan;
837 u32 addr = arg->addr;
838 unsigned ns = arg->ns;
839
840 if (dry_run)
841 return SZ_DMAGO;
842
843 buf[0] = CMD_DMAGO;
844 buf[0] |= (ns << 1);
845 buf[1] = chan & 0x7;
846 buf[2] = addr;
847 buf[3] = addr >> 8;
848 buf[4] = addr >> 16;
849 buf[5] = addr >> 24;
850
851 return SZ_DMAGO;
852}
853
854#define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
855
856
857static bool _until_dmac_idle(struct pl330_thread *thrd)
858{
859 void __iomem *regs = thrd->dmac->base;
860 unsigned long loops = msecs_to_loops(5);
861
862 do {
863
864 if (!(readl(regs + DBGSTATUS) & DBG_BUSY))
865 break;
866
867 cpu_relax();
868 } while (--loops);
869
870 if (!loops)
871 return true;
872
873 return false;
874}
875
876static inline void _execute_DBGINSN(struct pl330_thread *thrd,
877 u8 insn[], bool as_manager)
878{
879 void __iomem *regs = thrd->dmac->base;
880 u32 val;
881
882 val = (insn[0] << 16) | (insn[1] << 24);
883 if (!as_manager) {
884 val |= (1 << 0);
885 val |= (thrd->id << 8);
886 }
887 writel(val, regs + DBGINST0);
888
889 val = le32_to_cpu(*((__le32 *)&insn[2]));
890 writel(val, regs + DBGINST1);
891
892
893 if (_until_dmac_idle(thrd)) {
894 dev_err(thrd->dmac->ddma.dev, "DMAC halted!\n");
895 return;
896 }
897
898
899 writel(0, regs + DBGCMD);
900}
901
902static inline u32 _state(struct pl330_thread *thrd)
903{
904 void __iomem *regs = thrd->dmac->base;
905 u32 val;
906
907 if (is_manager(thrd))
908 val = readl(regs + DS) & 0xf;
909 else
910 val = readl(regs + CS(thrd->id)) & 0xf;
911
912 switch (val) {
913 case DS_ST_STOP:
914 return PL330_STATE_STOPPED;
915 case DS_ST_EXEC:
916 return PL330_STATE_EXECUTING;
917 case DS_ST_CMISS:
918 return PL330_STATE_CACHEMISS;
919 case DS_ST_UPDTPC:
920 return PL330_STATE_UPDTPC;
921 case DS_ST_WFE:
922 return PL330_STATE_WFE;
923 case DS_ST_FAULT:
924 return PL330_STATE_FAULTING;
925 case DS_ST_ATBRR:
926 if (is_manager(thrd))
927 return PL330_STATE_INVALID;
928 else
929 return PL330_STATE_ATBARRIER;
930 case DS_ST_QBUSY:
931 if (is_manager(thrd))
932 return PL330_STATE_INVALID;
933 else
934 return PL330_STATE_QUEUEBUSY;
935 case DS_ST_WFP:
936 if (is_manager(thrd))
937 return PL330_STATE_INVALID;
938 else
939 return PL330_STATE_WFP;
940 case DS_ST_KILL:
941 if (is_manager(thrd))
942 return PL330_STATE_INVALID;
943 else
944 return PL330_STATE_KILLING;
945 case DS_ST_CMPLT:
946 if (is_manager(thrd))
947 return PL330_STATE_INVALID;
948 else
949 return PL330_STATE_COMPLETING;
950 case DS_ST_FLTCMP:
951 if (is_manager(thrd))
952 return PL330_STATE_INVALID;
953 else
954 return PL330_STATE_FAULT_COMPLETING;
955 default:
956 return PL330_STATE_INVALID;
957 }
958}
959
960static void _stop(struct pl330_thread *thrd)
961{
962 void __iomem *regs = thrd->dmac->base;
963 u8 insn[6] = {0, 0, 0, 0, 0, 0};
964
965 if (_state(thrd) == PL330_STATE_FAULT_COMPLETING)
966 UNTIL(thrd, PL330_STATE_FAULTING | PL330_STATE_KILLING);
967
968
969 if (_state(thrd) == PL330_STATE_COMPLETING
970 || _state(thrd) == PL330_STATE_KILLING
971 || _state(thrd) == PL330_STATE_STOPPED)
972 return;
973
974 _emit_KILL(0, insn);
975
976
977 writel(readl(regs + INTEN) & ~(1 << thrd->ev), regs + INTEN);
978
979 _execute_DBGINSN(thrd, insn, is_manager(thrd));
980}
981
982
983static bool _trigger(struct pl330_thread *thrd)
984{
985 void __iomem *regs = thrd->dmac->base;
986 struct _pl330_req *req;
987 struct dma_pl330_desc *desc;
988 struct _arg_GO go;
989 unsigned ns;
990 u8 insn[6] = {0, 0, 0, 0, 0, 0};
991 int idx;
992
993
994 if (_state(thrd) != PL330_STATE_STOPPED)
995 return true;
996
997 idx = 1 - thrd->lstenq;
998 if (thrd->req[idx].desc != NULL) {
999 req = &thrd->req[idx];
1000 } else {
1001 idx = thrd->lstenq;
1002 if (thrd->req[idx].desc != NULL)
1003 req = &thrd->req[idx];
1004 else
1005 req = NULL;
1006 }
1007
1008
1009 if (!req)
1010 return true;
1011
1012
1013 if (idx == thrd->req_running)
1014 return true;
1015
1016 desc = req->desc;
1017
1018 ns = desc->rqcfg.nonsecure ? 1 : 0;
1019
1020
1021 if (_manager_ns(thrd) && !ns)
1022 dev_info(thrd->dmac->ddma.dev, "%s:%d Recipe for ABORT!\n",
1023 __func__, __LINE__);
1024
1025 go.chan = thrd->id;
1026 go.addr = req->mc_bus;
1027 go.ns = ns;
1028 _emit_GO(0, insn, &go);
1029
1030
1031 writel(readl(regs + INTEN) | (1 << thrd->ev), regs + INTEN);
1032
1033
1034 _execute_DBGINSN(thrd, insn, true);
1035
1036 thrd->req_running = idx;
1037
1038 return true;
1039}
1040
1041static bool _start(struct pl330_thread *thrd)
1042{
1043 switch (_state(thrd)) {
1044 case PL330_STATE_FAULT_COMPLETING:
1045 UNTIL(thrd, PL330_STATE_FAULTING | PL330_STATE_KILLING);
1046
1047 if (_state(thrd) == PL330_STATE_KILLING)
1048 UNTIL(thrd, PL330_STATE_STOPPED)
1049
1050 case PL330_STATE_FAULTING:
1051 _stop(thrd);
1052
1053 case PL330_STATE_KILLING:
1054 case PL330_STATE_COMPLETING:
1055 UNTIL(thrd, PL330_STATE_STOPPED)
1056
1057 case PL330_STATE_STOPPED:
1058 return _trigger(thrd);
1059
1060 case PL330_STATE_WFP:
1061 case PL330_STATE_QUEUEBUSY:
1062 case PL330_STATE_ATBARRIER:
1063 case PL330_STATE_UPDTPC:
1064 case PL330_STATE_CACHEMISS:
1065 case PL330_STATE_EXECUTING:
1066 return true;
1067
1068 case PL330_STATE_WFE:
1069 default:
1070 return false;
1071 }
1072}
1073
1074static inline int _ldst_memtomem(unsigned dry_run, u8 buf[],
1075 const struct _xfer_spec *pxs, int cyc)
1076{
1077 int off = 0;
1078 struct pl330_config *pcfg = pxs->desc->rqcfg.pcfg;
1079
1080
1081 if (get_revision(pcfg->periph_id) >= PERIPH_REV_R1P0) {
1082 while (cyc--) {
1083 off += _emit_LD(dry_run, &buf[off], ALWAYS);
1084 off += _emit_ST(dry_run, &buf[off], ALWAYS);
1085 }
1086 } else {
1087 while (cyc--) {
1088 off += _emit_LD(dry_run, &buf[off], ALWAYS);
1089 off += _emit_RMB(dry_run, &buf[off]);
1090 off += _emit_ST(dry_run, &buf[off], ALWAYS);
1091 off += _emit_WMB(dry_run, &buf[off]);
1092 }
1093 }
1094
1095 return off;
1096}
1097
1098static u32 _emit_load(unsigned int dry_run, u8 buf[],
1099 enum pl330_cond cond, enum dma_transfer_direction direction,
1100 u8 peri)
1101{
1102 int off = 0;
1103
1104 switch (direction) {
1105 case DMA_MEM_TO_MEM:
1106
1107 case DMA_MEM_TO_DEV:
1108 off += _emit_LD(dry_run, &buf[off], cond);
1109 break;
1110
1111 case DMA_DEV_TO_MEM:
1112 if (cond == ALWAYS) {
1113 off += _emit_LDP(dry_run, &buf[off], SINGLE,
1114 peri);
1115 off += _emit_LDP(dry_run, &buf[off], BURST,
1116 peri);
1117 } else {
1118 off += _emit_LDP(dry_run, &buf[off], cond,
1119 peri);
1120 }
1121 break;
1122
1123 default:
1124
1125 WARN_ON(1);
1126 break;
1127 }
1128
1129 return off;
1130}
1131
1132static inline u32 _emit_store(unsigned int dry_run, u8 buf[],
1133 enum pl330_cond cond, enum dma_transfer_direction direction,
1134 u8 peri)
1135{
1136 int off = 0;
1137
1138 switch (direction) {
1139 case DMA_MEM_TO_MEM:
1140
1141 case DMA_DEV_TO_MEM:
1142 off += _emit_ST(dry_run, &buf[off], cond);
1143 break;
1144
1145 case DMA_MEM_TO_DEV:
1146 if (cond == ALWAYS) {
1147 off += _emit_STP(dry_run, &buf[off], SINGLE,
1148 peri);
1149 off += _emit_STP(dry_run, &buf[off], BURST,
1150 peri);
1151 } else {
1152 off += _emit_STP(dry_run, &buf[off], cond,
1153 peri);
1154 }
1155 break;
1156
1157 default:
1158
1159 WARN_ON(1);
1160 break;
1161 }
1162
1163 return off;
1164}
1165
1166static inline int _ldst_peripheral(struct pl330_dmac *pl330,
1167 unsigned dry_run, u8 buf[],
1168 const struct _xfer_spec *pxs, int cyc,
1169 enum pl330_cond cond)
1170{
1171 int off = 0;
1172
1173 if (pl330->quirks & PL330_QUIRK_BROKEN_NO_FLUSHP)
1174 cond = BURST;
1175
1176
1177
1178
1179
1180 if (!(pl330->quirks & PL330_QUIRK_BROKEN_NO_FLUSHP))
1181 off += _emit_FLUSHP(dry_run, &buf[off], pxs->desc->peri);
1182 while (cyc--) {
1183 off += _emit_WFP(dry_run, &buf[off], cond, pxs->desc->peri);
1184 off += _emit_load(dry_run, &buf[off], cond, pxs->desc->rqtype,
1185 pxs->desc->peri);
1186 off += _emit_store(dry_run, &buf[off], cond, pxs->desc->rqtype,
1187 pxs->desc->peri);
1188 }
1189
1190 return off;
1191}
1192
1193static int _bursts(struct pl330_dmac *pl330, unsigned dry_run, u8 buf[],
1194 const struct _xfer_spec *pxs, int cyc)
1195{
1196 int off = 0;
1197 enum pl330_cond cond = BRST_LEN(pxs->ccr) > 1 ? BURST : SINGLE;
1198
1199 switch (pxs->desc->rqtype) {
1200 case DMA_MEM_TO_DEV:
1201
1202 case DMA_DEV_TO_MEM:
1203 off += _ldst_peripheral(pl330, dry_run, &buf[off], pxs, cyc,
1204 cond);
1205 break;
1206
1207 case DMA_MEM_TO_MEM:
1208 off += _ldst_memtomem(dry_run, &buf[off], pxs, cyc);
1209 break;
1210
1211 default:
1212
1213 WARN_ON(1);
1214 break;
1215 }
1216
1217 return off;
1218}
1219
1220
1221
1222
1223
1224static int _dregs(struct pl330_dmac *pl330, unsigned int dry_run, u8 buf[],
1225 const struct _xfer_spec *pxs, int transfer_length)
1226{
1227 int off = 0;
1228 int dregs_ccr;
1229
1230 if (transfer_length == 0)
1231 return off;
1232
1233 switch (pxs->desc->rqtype) {
1234 case DMA_MEM_TO_DEV:
1235
1236 case DMA_DEV_TO_MEM:
1237 off += _ldst_peripheral(pl330, dry_run, &buf[off], pxs,
1238 transfer_length, SINGLE);
1239 break;
1240
1241 case DMA_MEM_TO_MEM:
1242 dregs_ccr = pxs->ccr;
1243 dregs_ccr &= ~((0xf << CC_SRCBRSTLEN_SHFT) |
1244 (0xf << CC_DSTBRSTLEN_SHFT));
1245 dregs_ccr |= (((transfer_length - 1) & 0xf) <<
1246 CC_SRCBRSTLEN_SHFT);
1247 dregs_ccr |= (((transfer_length - 1) & 0xf) <<
1248 CC_DSTBRSTLEN_SHFT);
1249 off += _emit_MOV(dry_run, &buf[off], CCR, dregs_ccr);
1250 off += _ldst_memtomem(dry_run, &buf[off], pxs, 1);
1251 break;
1252
1253 default:
1254
1255 WARN_ON(1);
1256 break;
1257 }
1258
1259 return off;
1260}
1261
1262
1263static inline int _loop(struct pl330_dmac *pl330, unsigned dry_run, u8 buf[],
1264 unsigned long *bursts, const struct _xfer_spec *pxs)
1265{
1266 int cyc, cycmax, szlp, szlpend, szbrst, off;
1267 unsigned lcnt0, lcnt1, ljmp0, ljmp1;
1268 struct _arg_LPEND lpend;
1269
1270 if (*bursts == 1)
1271 return _bursts(pl330, dry_run, buf, pxs, 1);
1272
1273
1274 if (*bursts >= 256*256) {
1275 lcnt1 = 256;
1276 lcnt0 = 256;
1277 cyc = *bursts / lcnt1 / lcnt0;
1278 } else if (*bursts > 256) {
1279 lcnt1 = 256;
1280 lcnt0 = *bursts / lcnt1;
1281 cyc = 1;
1282 } else {
1283 lcnt1 = *bursts;
1284 lcnt0 = 0;
1285 cyc = 1;
1286 }
1287
1288 szlp = _emit_LP(1, buf, 0, 0);
1289 szbrst = _bursts(pl330, 1, buf, pxs, 1);
1290
1291 lpend.cond = ALWAYS;
1292 lpend.forever = false;
1293 lpend.loop = 0;
1294 lpend.bjump = 0;
1295 szlpend = _emit_LPEND(1, buf, &lpend);
1296
1297 if (lcnt0) {
1298 szlp *= 2;
1299 szlpend *= 2;
1300 }
1301
1302
1303
1304
1305
1306
1307 cycmax = (255 - (szlp + szlpend)) / szbrst;
1308
1309 cyc = (cycmax < cyc) ? cycmax : cyc;
1310
1311 off = 0;
1312
1313 if (lcnt0) {
1314 off += _emit_LP(dry_run, &buf[off], 0, lcnt0);
1315 ljmp0 = off;
1316 }
1317
1318 off += _emit_LP(dry_run, &buf[off], 1, lcnt1);
1319 ljmp1 = off;
1320
1321 off += _bursts(pl330, dry_run, &buf[off], pxs, cyc);
1322
1323 lpend.cond = ALWAYS;
1324 lpend.forever = false;
1325 lpend.loop = 1;
1326 lpend.bjump = off - ljmp1;
1327 off += _emit_LPEND(dry_run, &buf[off], &lpend);
1328
1329 if (lcnt0) {
1330 lpend.cond = ALWAYS;
1331 lpend.forever = false;
1332 lpend.loop = 0;
1333 lpend.bjump = off - ljmp0;
1334 off += _emit_LPEND(dry_run, &buf[off], &lpend);
1335 }
1336
1337 *bursts = lcnt1 * cyc;
1338 if (lcnt0)
1339 *bursts *= lcnt0;
1340
1341 return off;
1342}
1343
1344static inline int _setup_loops(struct pl330_dmac *pl330,
1345 unsigned dry_run, u8 buf[],
1346 const struct _xfer_spec *pxs)
1347{
1348 struct pl330_xfer *x = &pxs->desc->px;
1349 u32 ccr = pxs->ccr;
1350 unsigned long c, bursts = BYTE_TO_BURST(x->bytes, ccr);
1351 int num_dregs = (x->bytes - BURST_TO_BYTE(bursts, ccr)) /
1352 BRST_SIZE(ccr);
1353 int off = 0;
1354
1355 while (bursts) {
1356 c = bursts;
1357 off += _loop(pl330, dry_run, &buf[off], &c, pxs);
1358 bursts -= c;
1359 }
1360 off += _dregs(pl330, dry_run, &buf[off], pxs, num_dregs);
1361
1362 return off;
1363}
1364
1365static inline int _setup_xfer(struct pl330_dmac *pl330,
1366 unsigned dry_run, u8 buf[],
1367 const struct _xfer_spec *pxs)
1368{
1369 struct pl330_xfer *x = &pxs->desc->px;
1370 int off = 0;
1371
1372
1373 off += _emit_MOV(dry_run, &buf[off], SAR, x->src_addr);
1374
1375 off += _emit_MOV(dry_run, &buf[off], DAR, x->dst_addr);
1376
1377
1378 off += _setup_loops(pl330, dry_run, &buf[off], pxs);
1379
1380 return off;
1381}
1382
1383
1384
1385
1386
1387static int _setup_req(struct pl330_dmac *pl330, unsigned dry_run,
1388 struct pl330_thread *thrd, unsigned index,
1389 struct _xfer_spec *pxs)
1390{
1391 struct _pl330_req *req = &thrd->req[index];
1392 u8 *buf = req->mc_cpu;
1393 int off = 0;
1394
1395 PL330_DBGMC_START(req->mc_bus);
1396
1397
1398 off += _emit_MOV(dry_run, &buf[off], CCR, pxs->ccr);
1399
1400 off += _setup_xfer(pl330, dry_run, &buf[off], pxs);
1401
1402
1403 off += _emit_SEV(dry_run, &buf[off], thrd->ev);
1404
1405 off += _emit_END(dry_run, &buf[off]);
1406
1407 return off;
1408}
1409
1410static inline u32 _prepare_ccr(const struct pl330_reqcfg *rqc)
1411{
1412 u32 ccr = 0;
1413
1414 if (rqc->src_inc)
1415 ccr |= CC_SRCINC;
1416
1417 if (rqc->dst_inc)
1418 ccr |= CC_DSTINC;
1419
1420
1421 if (rqc->privileged)
1422 ccr |= CC_SRCPRI | CC_DSTPRI;
1423 if (rqc->nonsecure)
1424 ccr |= CC_SRCNS | CC_DSTNS;
1425 if (rqc->insnaccess)
1426 ccr |= CC_SRCIA | CC_DSTIA;
1427
1428 ccr |= (((rqc->brst_len - 1) & 0xf) << CC_SRCBRSTLEN_SHFT);
1429 ccr |= (((rqc->brst_len - 1) & 0xf) << CC_DSTBRSTLEN_SHFT);
1430
1431 ccr |= (rqc->brst_size << CC_SRCBRSTSIZE_SHFT);
1432 ccr |= (rqc->brst_size << CC_DSTBRSTSIZE_SHFT);
1433
1434 ccr |= (rqc->scctl << CC_SRCCCTRL_SHFT);
1435 ccr |= (rqc->dcctl << CC_DSTCCTRL_SHFT);
1436
1437 ccr |= (rqc->swap << CC_SWAP_SHFT);
1438
1439 return ccr;
1440}
1441
1442
1443
1444
1445
1446
1447static int pl330_submit_req(struct pl330_thread *thrd,
1448 struct dma_pl330_desc *desc)
1449{
1450 struct pl330_dmac *pl330 = thrd->dmac;
1451 struct _xfer_spec xs;
1452 unsigned long flags;
1453 unsigned idx;
1454 u32 ccr;
1455 int ret = 0;
1456
1457 switch (desc->rqtype) {
1458 case DMA_MEM_TO_DEV:
1459 break;
1460
1461 case DMA_DEV_TO_MEM:
1462 break;
1463
1464 case DMA_MEM_TO_MEM:
1465 break;
1466
1467 default:
1468 return -ENOTSUPP;
1469 }
1470
1471 if (pl330->state == DYING
1472 || pl330->dmac_tbd.reset_chan & (1 << thrd->id)) {
1473 dev_info(thrd->dmac->ddma.dev, "%s:%d\n",
1474 __func__, __LINE__);
1475 return -EAGAIN;
1476 }
1477
1478
1479 if (desc->rqtype != DMA_MEM_TO_MEM &&
1480 desc->peri >= pl330->pcfg.num_peri) {
1481 dev_info(thrd->dmac->ddma.dev,
1482 "%s:%d Invalid peripheral(%u)!\n",
1483 __func__, __LINE__, desc->peri);
1484 return -EINVAL;
1485 }
1486
1487 spin_lock_irqsave(&pl330->lock, flags);
1488
1489 if (_queue_full(thrd)) {
1490 ret = -EAGAIN;
1491 goto xfer_exit;
1492 }
1493
1494
1495 if (!_manager_ns(thrd))
1496 desc->rqcfg.nonsecure = 0;
1497 else
1498 desc->rqcfg.nonsecure = 1;
1499
1500 ccr = _prepare_ccr(&desc->rqcfg);
1501
1502 idx = thrd->req[0].desc == NULL ? 0 : 1;
1503
1504 xs.ccr = ccr;
1505 xs.desc = desc;
1506
1507
1508 ret = _setup_req(pl330, 1, thrd, idx, &xs);
1509 if (ret < 0)
1510 goto xfer_exit;
1511
1512 if (ret > pl330->mcbufsz / 2) {
1513 dev_info(pl330->ddma.dev, "%s:%d Try increasing mcbufsz (%i/%i)\n",
1514 __func__, __LINE__, ret, pl330->mcbufsz / 2);
1515 ret = -ENOMEM;
1516 goto xfer_exit;
1517 }
1518
1519
1520 thrd->lstenq = idx;
1521 thrd->req[idx].desc = desc;
1522 _setup_req(pl330, 0, thrd, idx, &xs);
1523
1524 ret = 0;
1525
1526xfer_exit:
1527 spin_unlock_irqrestore(&pl330->lock, flags);
1528
1529 return ret;
1530}
1531
1532static void dma_pl330_rqcb(struct dma_pl330_desc *desc, enum pl330_op_err err)
1533{
1534 struct dma_pl330_chan *pch;
1535 unsigned long flags;
1536
1537 if (!desc)
1538 return;
1539
1540 pch = desc->pchan;
1541
1542
1543 if (!pch)
1544 return;
1545
1546 spin_lock_irqsave(&pch->lock, flags);
1547
1548 desc->status = DONE;
1549
1550 spin_unlock_irqrestore(&pch->lock, flags);
1551
1552 tasklet_schedule(&pch->task);
1553}
1554
1555static void pl330_dotask(unsigned long data)
1556{
1557 struct pl330_dmac *pl330 = (struct pl330_dmac *) data;
1558 unsigned long flags;
1559 int i;
1560
1561 spin_lock_irqsave(&pl330->lock, flags);
1562
1563
1564 if (pl330->dmac_tbd.reset_dmac) {
1565 pl330->state = DYING;
1566
1567 pl330->dmac_tbd.reset_mngr = true;
1568
1569 pl330->dmac_tbd.reset_dmac = false;
1570 }
1571
1572 if (pl330->dmac_tbd.reset_mngr) {
1573 _stop(pl330->manager);
1574
1575 pl330->dmac_tbd.reset_chan = (1 << pl330->pcfg.num_chan) - 1;
1576
1577 pl330->dmac_tbd.reset_mngr = false;
1578 }
1579
1580 for (i = 0; i < pl330->pcfg.num_chan; i++) {
1581
1582 if (pl330->dmac_tbd.reset_chan & (1 << i)) {
1583 struct pl330_thread *thrd = &pl330->channels[i];
1584 void __iomem *regs = pl330->base;
1585 enum pl330_op_err err;
1586
1587 _stop(thrd);
1588
1589 if (readl(regs + FSC) & (1 << thrd->id))
1590 err = PL330_ERR_FAIL;
1591 else
1592 err = PL330_ERR_ABORT;
1593
1594 spin_unlock_irqrestore(&pl330->lock, flags);
1595 dma_pl330_rqcb(thrd->req[1 - thrd->lstenq].desc, err);
1596 dma_pl330_rqcb(thrd->req[thrd->lstenq].desc, err);
1597 spin_lock_irqsave(&pl330->lock, flags);
1598
1599 thrd->req[0].desc = NULL;
1600 thrd->req[1].desc = NULL;
1601 thrd->req_running = -1;
1602
1603
1604 pl330->dmac_tbd.reset_chan &= ~(1 << i);
1605 }
1606 }
1607
1608 spin_unlock_irqrestore(&pl330->lock, flags);
1609
1610 return;
1611}
1612
1613
1614static int pl330_update(struct pl330_dmac *pl330)
1615{
1616 struct dma_pl330_desc *descdone;
1617 unsigned long flags;
1618 void __iomem *regs;
1619 u32 val;
1620 int id, ev, ret = 0;
1621
1622 regs = pl330->base;
1623
1624 spin_lock_irqsave(&pl330->lock, flags);
1625
1626 val = readl(regs + FSM) & 0x1;
1627 if (val)
1628 pl330->dmac_tbd.reset_mngr = true;
1629 else
1630 pl330->dmac_tbd.reset_mngr = false;
1631
1632 val = readl(regs + FSC) & ((1 << pl330->pcfg.num_chan) - 1);
1633 pl330->dmac_tbd.reset_chan |= val;
1634 if (val) {
1635 int i = 0;
1636 while (i < pl330->pcfg.num_chan) {
1637 if (val & (1 << i)) {
1638 dev_info(pl330->ddma.dev,
1639 "Reset Channel-%d\t CS-%x FTC-%x\n",
1640 i, readl(regs + CS(i)),
1641 readl(regs + FTC(i)));
1642 _stop(&pl330->channels[i]);
1643 }
1644 i++;
1645 }
1646 }
1647
1648
1649 val = readl(regs + ES);
1650 if (pl330->pcfg.num_events < 32
1651 && val & ~((1 << pl330->pcfg.num_events) - 1)) {
1652 pl330->dmac_tbd.reset_dmac = true;
1653 dev_err(pl330->ddma.dev, "%s:%d Unexpected!\n", __func__,
1654 __LINE__);
1655 ret = 1;
1656 goto updt_exit;
1657 }
1658
1659 for (ev = 0; ev < pl330->pcfg.num_events; ev++) {
1660 if (val & (1 << ev)) {
1661 struct pl330_thread *thrd;
1662 u32 inten = readl(regs + INTEN);
1663 int active;
1664
1665
1666 if (inten & (1 << ev))
1667 writel(1 << ev, regs + INTCLR);
1668
1669 ret = 1;
1670
1671 id = pl330->events[ev];
1672
1673 thrd = &pl330->channels[id];
1674
1675 active = thrd->req_running;
1676 if (active == -1)
1677 continue;
1678
1679
1680 descdone = thrd->req[active].desc;
1681 thrd->req[active].desc = NULL;
1682
1683 thrd->req_running = -1;
1684
1685
1686 _start(thrd);
1687
1688
1689 list_add_tail(&descdone->rqd, &pl330->req_done);
1690 }
1691 }
1692
1693
1694 while (!list_empty(&pl330->req_done)) {
1695 descdone = list_first_entry(&pl330->req_done,
1696 struct dma_pl330_desc, rqd);
1697 list_del(&descdone->rqd);
1698 spin_unlock_irqrestore(&pl330->lock, flags);
1699 dma_pl330_rqcb(descdone, PL330_ERR_NONE);
1700 spin_lock_irqsave(&pl330->lock, flags);
1701 }
1702
1703updt_exit:
1704 spin_unlock_irqrestore(&pl330->lock, flags);
1705
1706 if (pl330->dmac_tbd.reset_dmac
1707 || pl330->dmac_tbd.reset_mngr
1708 || pl330->dmac_tbd.reset_chan) {
1709 ret = 1;
1710 tasklet_schedule(&pl330->tasks);
1711 }
1712
1713 return ret;
1714}
1715
1716
1717static inline int _alloc_event(struct pl330_thread *thrd)
1718{
1719 struct pl330_dmac *pl330 = thrd->dmac;
1720 int ev;
1721
1722 for (ev = 0; ev < pl330->pcfg.num_events; ev++)
1723 if (pl330->events[ev] == -1) {
1724 pl330->events[ev] = thrd->id;
1725 return ev;
1726 }
1727
1728 return -1;
1729}
1730
1731static bool _chan_ns(const struct pl330_dmac *pl330, int i)
1732{
1733 return pl330->pcfg.irq_ns & (1 << i);
1734}
1735
1736
1737
1738
1739static struct pl330_thread *pl330_request_channel(struct pl330_dmac *pl330)
1740{
1741 struct pl330_thread *thrd = NULL;
1742 int chans, i;
1743
1744 if (pl330->state == DYING)
1745 return NULL;
1746
1747 chans = pl330->pcfg.num_chan;
1748
1749 for (i = 0; i < chans; i++) {
1750 thrd = &pl330->channels[i];
1751 if ((thrd->free) && (!_manager_ns(thrd) ||
1752 _chan_ns(pl330, i))) {
1753 thrd->ev = _alloc_event(thrd);
1754 if (thrd->ev >= 0) {
1755 thrd->free = false;
1756 thrd->lstenq = 1;
1757 thrd->req[0].desc = NULL;
1758 thrd->req[1].desc = NULL;
1759 thrd->req_running = -1;
1760 break;
1761 }
1762 }
1763 thrd = NULL;
1764 }
1765
1766 return thrd;
1767}
1768
1769
1770static inline void _free_event(struct pl330_thread *thrd, int ev)
1771{
1772 struct pl330_dmac *pl330 = thrd->dmac;
1773
1774
1775 if (ev >= 0 && ev < pl330->pcfg.num_events
1776 && pl330->events[ev] == thrd->id)
1777 pl330->events[ev] = -1;
1778}
1779
1780static void pl330_release_channel(struct pl330_thread *thrd)
1781{
1782 struct pl330_dmac *pl330;
1783
1784 if (!thrd || thrd->free)
1785 return;
1786
1787 _stop(thrd);
1788
1789 dma_pl330_rqcb(thrd->req[1 - thrd->lstenq].desc, PL330_ERR_ABORT);
1790 dma_pl330_rqcb(thrd->req[thrd->lstenq].desc, PL330_ERR_ABORT);
1791
1792 pl330 = thrd->dmac;
1793
1794 _free_event(thrd, thrd->ev);
1795 thrd->free = true;
1796}
1797
1798
1799
1800
1801static void read_dmac_config(struct pl330_dmac *pl330)
1802{
1803 void __iomem *regs = pl330->base;
1804 u32 val;
1805
1806 val = readl(regs + CRD) >> CRD_DATA_WIDTH_SHIFT;
1807 val &= CRD_DATA_WIDTH_MASK;
1808 pl330->pcfg.data_bus_width = 8 * (1 << val);
1809
1810 val = readl(regs + CRD) >> CRD_DATA_BUFF_SHIFT;
1811 val &= CRD_DATA_BUFF_MASK;
1812 pl330->pcfg.data_buf_dep = val + 1;
1813
1814 val = readl(regs + CR0) >> CR0_NUM_CHANS_SHIFT;
1815 val &= CR0_NUM_CHANS_MASK;
1816 val += 1;
1817 pl330->pcfg.num_chan = val;
1818
1819 val = readl(regs + CR0);
1820 if (val & CR0_PERIPH_REQ_SET) {
1821 val = (val >> CR0_NUM_PERIPH_SHIFT) & CR0_NUM_PERIPH_MASK;
1822 val += 1;
1823 pl330->pcfg.num_peri = val;
1824 pl330->pcfg.peri_ns = readl(regs + CR4);
1825 } else {
1826 pl330->pcfg.num_peri = 0;
1827 }
1828
1829 val = readl(regs + CR0);
1830 if (val & CR0_BOOT_MAN_NS)
1831 pl330->pcfg.mode |= DMAC_MODE_NS;
1832 else
1833 pl330->pcfg.mode &= ~DMAC_MODE_NS;
1834
1835 val = readl(regs + CR0) >> CR0_NUM_EVENTS_SHIFT;
1836 val &= CR0_NUM_EVENTS_MASK;
1837 val += 1;
1838 pl330->pcfg.num_events = val;
1839
1840 pl330->pcfg.irq_ns = readl(regs + CR3);
1841}
1842
1843static inline void _reset_thread(struct pl330_thread *thrd)
1844{
1845 struct pl330_dmac *pl330 = thrd->dmac;
1846
1847 thrd->req[0].mc_cpu = pl330->mcode_cpu
1848 + (thrd->id * pl330->mcbufsz);
1849 thrd->req[0].mc_bus = pl330->mcode_bus
1850 + (thrd->id * pl330->mcbufsz);
1851 thrd->req[0].desc = NULL;
1852
1853 thrd->req[1].mc_cpu = thrd->req[0].mc_cpu
1854 + pl330->mcbufsz / 2;
1855 thrd->req[1].mc_bus = thrd->req[0].mc_bus
1856 + pl330->mcbufsz / 2;
1857 thrd->req[1].desc = NULL;
1858
1859 thrd->req_running = -1;
1860}
1861
1862static int dmac_alloc_threads(struct pl330_dmac *pl330)
1863{
1864 int chans = pl330->pcfg.num_chan;
1865 struct pl330_thread *thrd;
1866 int i;
1867
1868
1869 pl330->channels = kcalloc(1 + chans, sizeof(*thrd),
1870 GFP_KERNEL);
1871 if (!pl330->channels)
1872 return -ENOMEM;
1873
1874
1875 for (i = 0; i < chans; i++) {
1876 thrd = &pl330->channels[i];
1877 thrd->id = i;
1878 thrd->dmac = pl330;
1879 _reset_thread(thrd);
1880 thrd->free = true;
1881 }
1882
1883
1884 thrd = &pl330->channels[chans];
1885 thrd->id = chans;
1886 thrd->dmac = pl330;
1887 thrd->free = false;
1888 pl330->manager = thrd;
1889
1890 return 0;
1891}
1892
1893static int dmac_alloc_resources(struct pl330_dmac *pl330)
1894{
1895 int chans = pl330->pcfg.num_chan;
1896 int ret;
1897
1898
1899
1900
1901
1902 pl330->mcode_cpu = dma_alloc_attrs(pl330->ddma.dev,
1903 chans * pl330->mcbufsz,
1904 &pl330->mcode_bus, GFP_KERNEL,
1905 DMA_ATTR_PRIVILEGED);
1906 if (!pl330->mcode_cpu) {
1907 dev_err(pl330->ddma.dev, "%s:%d Can't allocate memory!\n",
1908 __func__, __LINE__);
1909 return -ENOMEM;
1910 }
1911
1912 ret = dmac_alloc_threads(pl330);
1913 if (ret) {
1914 dev_err(pl330->ddma.dev, "%s:%d Can't to create channels for DMAC!\n",
1915 __func__, __LINE__);
1916 dma_free_coherent(pl330->ddma.dev,
1917 chans * pl330->mcbufsz,
1918 pl330->mcode_cpu, pl330->mcode_bus);
1919 return ret;
1920 }
1921
1922 return 0;
1923}
1924
1925static int pl330_add(struct pl330_dmac *pl330)
1926{
1927 int i, ret;
1928
1929
1930 if ((pl330->pcfg.periph_id & 0xfffff) != PERIPH_ID_VAL) {
1931 dev_err(pl330->ddma.dev, "PERIPH_ID 0x%x !\n",
1932 pl330->pcfg.periph_id);
1933 return -EINVAL;
1934 }
1935
1936
1937 read_dmac_config(pl330);
1938
1939 if (pl330->pcfg.num_events == 0) {
1940 dev_err(pl330->ddma.dev, "%s:%d Can't work without events!\n",
1941 __func__, __LINE__);
1942 return -EINVAL;
1943 }
1944
1945 spin_lock_init(&pl330->lock);
1946
1947 INIT_LIST_HEAD(&pl330->req_done);
1948
1949
1950 if (!pl330->mcbufsz)
1951 pl330->mcbufsz = MCODE_BUFF_PER_REQ * 2;
1952
1953
1954 for (i = 0; i < pl330->pcfg.num_events; i++)
1955 pl330->events[i] = -1;
1956
1957
1958 ret = dmac_alloc_resources(pl330);
1959 if (ret) {
1960 dev_err(pl330->ddma.dev, "Unable to create channels for DMAC\n");
1961 return ret;
1962 }
1963
1964 tasklet_init(&pl330->tasks, pl330_dotask, (unsigned long) pl330);
1965
1966 pl330->state = INIT;
1967
1968 return 0;
1969}
1970
1971static int dmac_free_threads(struct pl330_dmac *pl330)
1972{
1973 struct pl330_thread *thrd;
1974 int i;
1975
1976
1977 for (i = 0; i < pl330->pcfg.num_chan; i++) {
1978 thrd = &pl330->channels[i];
1979 pl330_release_channel(thrd);
1980 }
1981
1982
1983 kfree(pl330->channels);
1984
1985 return 0;
1986}
1987
1988static void pl330_del(struct pl330_dmac *pl330)
1989{
1990 pl330->state = UNINIT;
1991
1992 tasklet_kill(&pl330->tasks);
1993
1994
1995 dmac_free_threads(pl330);
1996
1997 dma_free_coherent(pl330->ddma.dev,
1998 pl330->pcfg.num_chan * pl330->mcbufsz, pl330->mcode_cpu,
1999 pl330->mcode_bus);
2000}
2001
2002
2003static struct amba_driver pl330_driver;
2004
2005static inline struct dma_pl330_chan *
2006to_pchan(struct dma_chan *ch)
2007{
2008 if (!ch)
2009 return NULL;
2010
2011 return container_of(ch, struct dma_pl330_chan, chan);
2012}
2013
2014static inline struct dma_pl330_desc *
2015to_desc(struct dma_async_tx_descriptor *tx)
2016{
2017 return container_of(tx, struct dma_pl330_desc, txd);
2018}
2019
2020static inline void fill_queue(struct dma_pl330_chan *pch)
2021{
2022 struct dma_pl330_desc *desc;
2023 int ret;
2024
2025 list_for_each_entry(desc, &pch->work_list, node) {
2026
2027
2028 if (desc->status == BUSY)
2029 continue;
2030
2031 ret = pl330_submit_req(pch->thread, desc);
2032 if (!ret) {
2033 desc->status = BUSY;
2034 } else if (ret == -EAGAIN) {
2035
2036 break;
2037 } else {
2038
2039 desc->status = DONE;
2040 dev_err(pch->dmac->ddma.dev, "%s:%d Bad Desc(%d)\n",
2041 __func__, __LINE__, desc->txd.cookie);
2042 tasklet_schedule(&pch->task);
2043 }
2044 }
2045}
2046
2047static void pl330_tasklet(unsigned long data)
2048{
2049 struct dma_pl330_chan *pch = (struct dma_pl330_chan *)data;
2050 struct dma_pl330_desc *desc, *_dt;
2051 unsigned long flags;
2052 bool power_down = false;
2053
2054 spin_lock_irqsave(&pch->lock, flags);
2055
2056
2057 list_for_each_entry_safe(desc, _dt, &pch->work_list, node)
2058 if (desc->status == DONE) {
2059 if (!pch->cyclic)
2060 dma_cookie_complete(&desc->txd);
2061 list_move_tail(&desc->node, &pch->completed_list);
2062 }
2063
2064
2065 fill_queue(pch);
2066
2067 if (list_empty(&pch->work_list)) {
2068 spin_lock(&pch->thread->dmac->lock);
2069 _stop(pch->thread);
2070 spin_unlock(&pch->thread->dmac->lock);
2071 power_down = true;
2072 pch->active = false;
2073 } else {
2074
2075 spin_lock(&pch->thread->dmac->lock);
2076 _start(pch->thread);
2077 spin_unlock(&pch->thread->dmac->lock);
2078 }
2079
2080 while (!list_empty(&pch->completed_list)) {
2081 struct dmaengine_desc_callback cb;
2082
2083 desc = list_first_entry(&pch->completed_list,
2084 struct dma_pl330_desc, node);
2085
2086 dmaengine_desc_get_callback(&desc->txd, &cb);
2087
2088 if (pch->cyclic) {
2089 desc->status = PREP;
2090 list_move_tail(&desc->node, &pch->work_list);
2091 if (power_down) {
2092 pch->active = true;
2093 spin_lock(&pch->thread->dmac->lock);
2094 _start(pch->thread);
2095 spin_unlock(&pch->thread->dmac->lock);
2096 power_down = false;
2097 }
2098 } else {
2099 desc->status = FREE;
2100 list_move_tail(&desc->node, &pch->dmac->desc_pool);
2101 }
2102
2103 dma_descriptor_unmap(&desc->txd);
2104
2105 if (dmaengine_desc_callback_valid(&cb)) {
2106 spin_unlock_irqrestore(&pch->lock, flags);
2107 dmaengine_desc_callback_invoke(&cb, NULL);
2108 spin_lock_irqsave(&pch->lock, flags);
2109 }
2110 }
2111 spin_unlock_irqrestore(&pch->lock, flags);
2112
2113
2114 if (power_down) {
2115 pm_runtime_mark_last_busy(pch->dmac->ddma.dev);
2116 pm_runtime_put_autosuspend(pch->dmac->ddma.dev);
2117 }
2118}
2119
2120static struct dma_chan *of_dma_pl330_xlate(struct of_phandle_args *dma_spec,
2121 struct of_dma *ofdma)
2122{
2123 int count = dma_spec->args_count;
2124 struct pl330_dmac *pl330 = ofdma->of_dma_data;
2125 unsigned int chan_id;
2126
2127 if (!pl330)
2128 return NULL;
2129
2130 if (count != 1)
2131 return NULL;
2132
2133 chan_id = dma_spec->args[0];
2134 if (chan_id >= pl330->num_peripherals)
2135 return NULL;
2136
2137 return dma_get_slave_channel(&pl330->peripherals[chan_id].chan);
2138}
2139
2140static int pl330_alloc_chan_resources(struct dma_chan *chan)
2141{
2142 struct dma_pl330_chan *pch = to_pchan(chan);
2143 struct pl330_dmac *pl330 = pch->dmac;
2144 unsigned long flags;
2145
2146 spin_lock_irqsave(&pl330->lock, flags);
2147
2148 dma_cookie_init(chan);
2149 pch->cyclic = false;
2150
2151 pch->thread = pl330_request_channel(pl330);
2152 if (!pch->thread) {
2153 spin_unlock_irqrestore(&pl330->lock, flags);
2154 return -ENOMEM;
2155 }
2156
2157 tasklet_init(&pch->task, pl330_tasklet, (unsigned long) pch);
2158
2159 spin_unlock_irqrestore(&pl330->lock, flags);
2160
2161 return 1;
2162}
2163
2164
2165
2166
2167
2168static enum dma_data_direction
2169pl330_dma_slave_map_dir(enum dma_transfer_direction dir)
2170{
2171 switch (dir) {
2172 case DMA_MEM_TO_DEV:
2173 return DMA_FROM_DEVICE;
2174 case DMA_DEV_TO_MEM:
2175 return DMA_TO_DEVICE;
2176 case DMA_DEV_TO_DEV:
2177 return DMA_BIDIRECTIONAL;
2178 default:
2179 return DMA_NONE;
2180 }
2181}
2182
2183static void pl330_unprep_slave_fifo(struct dma_pl330_chan *pch)
2184{
2185 if (pch->dir != DMA_NONE)
2186 dma_unmap_resource(pch->chan.device->dev, pch->fifo_dma,
2187 1 << pch->burst_sz, pch->dir, 0);
2188 pch->dir = DMA_NONE;
2189}
2190
2191
2192static bool pl330_prep_slave_fifo(struct dma_pl330_chan *pch,
2193 enum dma_transfer_direction dir)
2194{
2195 struct device *dev = pch->chan.device->dev;
2196 enum dma_data_direction dma_dir = pl330_dma_slave_map_dir(dir);
2197
2198
2199 if (pch->dir == dma_dir)
2200 return true;
2201
2202 pl330_unprep_slave_fifo(pch);
2203 pch->fifo_dma = dma_map_resource(dev, pch->fifo_addr,
2204 1 << pch->burst_sz, dma_dir, 0);
2205 if (dma_mapping_error(dev, pch->fifo_dma))
2206 return false;
2207
2208 pch->dir = dma_dir;
2209 return true;
2210}
2211
2212static int fixup_burst_len(int max_burst_len, int quirks)
2213{
2214 if (quirks & PL330_QUIRK_BROKEN_NO_FLUSHP)
2215 return 1;
2216 else if (max_burst_len > PL330_MAX_BURST)
2217 return PL330_MAX_BURST;
2218 else if (max_burst_len < 1)
2219 return 1;
2220 else
2221 return max_burst_len;
2222}
2223
2224static int pl330_config(struct dma_chan *chan,
2225 struct dma_slave_config *slave_config)
2226{
2227 struct dma_pl330_chan *pch = to_pchan(chan);
2228
2229 pl330_unprep_slave_fifo(pch);
2230 if (slave_config->direction == DMA_MEM_TO_DEV) {
2231 if (slave_config->dst_addr)
2232 pch->fifo_addr = slave_config->dst_addr;
2233 if (slave_config->dst_addr_width)
2234 pch->burst_sz = __ffs(slave_config->dst_addr_width);
2235 pch->burst_len = fixup_burst_len(slave_config->dst_maxburst,
2236 pch->dmac->quirks);
2237 } else if (slave_config->direction == DMA_DEV_TO_MEM) {
2238 if (slave_config->src_addr)
2239 pch->fifo_addr = slave_config->src_addr;
2240 if (slave_config->src_addr_width)
2241 pch->burst_sz = __ffs(slave_config->src_addr_width);
2242 pch->burst_len = fixup_burst_len(slave_config->src_maxburst,
2243 pch->dmac->quirks);
2244 }
2245
2246 return 0;
2247}
2248
2249static int pl330_terminate_all(struct dma_chan *chan)
2250{
2251 struct dma_pl330_chan *pch = to_pchan(chan);
2252 struct dma_pl330_desc *desc;
2253 unsigned long flags;
2254 struct pl330_dmac *pl330 = pch->dmac;
2255 LIST_HEAD(list);
2256 bool power_down = false;
2257
2258 pm_runtime_get_sync(pl330->ddma.dev);
2259 spin_lock_irqsave(&pch->lock, flags);
2260 spin_lock(&pl330->lock);
2261 _stop(pch->thread);
2262 spin_unlock(&pl330->lock);
2263
2264 pch->thread->req[0].desc = NULL;
2265 pch->thread->req[1].desc = NULL;
2266 pch->thread->req_running = -1;
2267 power_down = pch->active;
2268 pch->active = false;
2269
2270
2271 list_for_each_entry(desc, &pch->submitted_list, node) {
2272 desc->status = FREE;
2273 dma_cookie_complete(&desc->txd);
2274 }
2275
2276 list_for_each_entry(desc, &pch->work_list , node) {
2277 desc->status = FREE;
2278 dma_cookie_complete(&desc->txd);
2279 }
2280
2281 list_splice_tail_init(&pch->submitted_list, &pl330->desc_pool);
2282 list_splice_tail_init(&pch->work_list, &pl330->desc_pool);
2283 list_splice_tail_init(&pch->completed_list, &pl330->desc_pool);
2284 spin_unlock_irqrestore(&pch->lock, flags);
2285 pm_runtime_mark_last_busy(pl330->ddma.dev);
2286 if (power_down)
2287 pm_runtime_put_autosuspend(pl330->ddma.dev);
2288 pm_runtime_put_autosuspend(pl330->ddma.dev);
2289
2290 return 0;
2291}
2292
2293
2294
2295
2296
2297
2298
2299
2300static int pl330_pause(struct dma_chan *chan)
2301{
2302 struct dma_pl330_chan *pch = to_pchan(chan);
2303 struct pl330_dmac *pl330 = pch->dmac;
2304 unsigned long flags;
2305
2306 pm_runtime_get_sync(pl330->ddma.dev);
2307 spin_lock_irqsave(&pch->lock, flags);
2308
2309 spin_lock(&pl330->lock);
2310 _stop(pch->thread);
2311 spin_unlock(&pl330->lock);
2312
2313 spin_unlock_irqrestore(&pch->lock, flags);
2314 pm_runtime_mark_last_busy(pl330->ddma.dev);
2315 pm_runtime_put_autosuspend(pl330->ddma.dev);
2316
2317 return 0;
2318}
2319
2320static void pl330_free_chan_resources(struct dma_chan *chan)
2321{
2322 struct dma_pl330_chan *pch = to_pchan(chan);
2323 struct pl330_dmac *pl330 = pch->dmac;
2324 unsigned long flags;
2325
2326 tasklet_kill(&pch->task);
2327
2328 pm_runtime_get_sync(pch->dmac->ddma.dev);
2329 spin_lock_irqsave(&pl330->lock, flags);
2330
2331 pl330_release_channel(pch->thread);
2332 pch->thread = NULL;
2333
2334 if (pch->cyclic)
2335 list_splice_tail_init(&pch->work_list, &pch->dmac->desc_pool);
2336
2337 spin_unlock_irqrestore(&pl330->lock, flags);
2338 pm_runtime_mark_last_busy(pch->dmac->ddma.dev);
2339 pm_runtime_put_autosuspend(pch->dmac->ddma.dev);
2340 pl330_unprep_slave_fifo(pch);
2341}
2342
2343static int pl330_get_current_xferred_count(struct dma_pl330_chan *pch,
2344 struct dma_pl330_desc *desc)
2345{
2346 struct pl330_thread *thrd = pch->thread;
2347 struct pl330_dmac *pl330 = pch->dmac;
2348 void __iomem *regs = thrd->dmac->base;
2349 u32 val, addr;
2350
2351 pm_runtime_get_sync(pl330->ddma.dev);
2352 val = addr = 0;
2353 if (desc->rqcfg.src_inc) {
2354 val = readl(regs + SA(thrd->id));
2355 addr = desc->px.src_addr;
2356 } else {
2357 val = readl(regs + DA(thrd->id));
2358 addr = desc->px.dst_addr;
2359 }
2360 pm_runtime_mark_last_busy(pch->dmac->ddma.dev);
2361 pm_runtime_put_autosuspend(pl330->ddma.dev);
2362
2363
2364 if (!val)
2365 return 0;
2366
2367 return val - addr;
2368}
2369
2370static enum dma_status
2371pl330_tx_status(struct dma_chan *chan, dma_cookie_t cookie,
2372 struct dma_tx_state *txstate)
2373{
2374 enum dma_status ret;
2375 unsigned long flags;
2376 struct dma_pl330_desc *desc, *running = NULL, *last_enq = NULL;
2377 struct dma_pl330_chan *pch = to_pchan(chan);
2378 unsigned int transferred, residual = 0;
2379
2380 ret = dma_cookie_status(chan, cookie, txstate);
2381
2382 if (!txstate)
2383 return ret;
2384
2385 if (ret == DMA_COMPLETE)
2386 goto out;
2387
2388 spin_lock_irqsave(&pch->lock, flags);
2389 spin_lock(&pch->thread->dmac->lock);
2390
2391 if (pch->thread->req_running != -1)
2392 running = pch->thread->req[pch->thread->req_running].desc;
2393
2394 last_enq = pch->thread->req[pch->thread->lstenq].desc;
2395
2396
2397 list_for_each_entry(desc, &pch->work_list, node) {
2398 if (desc->status == DONE)
2399 transferred = desc->bytes_requested;
2400 else if (running && desc == running)
2401 transferred =
2402 pl330_get_current_xferred_count(pch, desc);
2403 else if (desc->status == BUSY)
2404
2405
2406
2407
2408 if (desc == last_enq)
2409 transferred = 0;
2410 else
2411 transferred = desc->bytes_requested;
2412 else
2413 transferred = 0;
2414 residual += desc->bytes_requested - transferred;
2415 if (desc->txd.cookie == cookie) {
2416 switch (desc->status) {
2417 case DONE:
2418 ret = DMA_COMPLETE;
2419 break;
2420 case PREP:
2421 case BUSY:
2422 ret = DMA_IN_PROGRESS;
2423 break;
2424 default:
2425 WARN_ON(1);
2426 }
2427 break;
2428 }
2429 if (desc->last)
2430 residual = 0;
2431 }
2432 spin_unlock(&pch->thread->dmac->lock);
2433 spin_unlock_irqrestore(&pch->lock, flags);
2434
2435out:
2436 dma_set_residue(txstate, residual);
2437
2438 return ret;
2439}
2440
2441static void pl330_issue_pending(struct dma_chan *chan)
2442{
2443 struct dma_pl330_chan *pch = to_pchan(chan);
2444 unsigned long flags;
2445
2446 spin_lock_irqsave(&pch->lock, flags);
2447 if (list_empty(&pch->work_list)) {
2448
2449
2450
2451
2452
2453 WARN_ON(list_empty(&pch->submitted_list));
2454 pch->active = true;
2455 pm_runtime_get_sync(pch->dmac->ddma.dev);
2456 }
2457 list_splice_tail_init(&pch->submitted_list, &pch->work_list);
2458 spin_unlock_irqrestore(&pch->lock, flags);
2459
2460 pl330_tasklet((unsigned long)pch);
2461}
2462
2463
2464
2465
2466
2467
2468static dma_cookie_t pl330_tx_submit(struct dma_async_tx_descriptor *tx)
2469{
2470 struct dma_pl330_desc *desc, *last = to_desc(tx);
2471 struct dma_pl330_chan *pch = to_pchan(tx->chan);
2472 dma_cookie_t cookie;
2473 unsigned long flags;
2474
2475 spin_lock_irqsave(&pch->lock, flags);
2476
2477
2478 while (!list_empty(&last->node)) {
2479 desc = list_entry(last->node.next, struct dma_pl330_desc, node);
2480 if (pch->cyclic) {
2481 desc->txd.callback = last->txd.callback;
2482 desc->txd.callback_param = last->txd.callback_param;
2483 }
2484 desc->last = false;
2485
2486 dma_cookie_assign(&desc->txd);
2487
2488 list_move_tail(&desc->node, &pch->submitted_list);
2489 }
2490
2491 last->last = true;
2492 cookie = dma_cookie_assign(&last->txd);
2493 list_add_tail(&last->node, &pch->submitted_list);
2494 spin_unlock_irqrestore(&pch->lock, flags);
2495
2496 return cookie;
2497}
2498
2499static inline void _init_desc(struct dma_pl330_desc *desc)
2500{
2501 desc->rqcfg.swap = SWAP_NO;
2502 desc->rqcfg.scctl = CCTRL0;
2503 desc->rqcfg.dcctl = CCTRL0;
2504 desc->txd.tx_submit = pl330_tx_submit;
2505
2506 INIT_LIST_HEAD(&desc->node);
2507}
2508
2509
2510static int add_desc(struct list_head *pool, spinlock_t *lock,
2511 gfp_t flg, int count)
2512{
2513 struct dma_pl330_desc *desc;
2514 unsigned long flags;
2515 int i;
2516
2517 desc = kcalloc(count, sizeof(*desc), flg);
2518 if (!desc)
2519 return 0;
2520
2521 spin_lock_irqsave(lock, flags);
2522
2523 for (i = 0; i < count; i++) {
2524 _init_desc(&desc[i]);
2525 list_add_tail(&desc[i].node, pool);
2526 }
2527
2528 spin_unlock_irqrestore(lock, flags);
2529
2530 return count;
2531}
2532
2533static struct dma_pl330_desc *pluck_desc(struct list_head *pool,
2534 spinlock_t *lock)
2535{
2536 struct dma_pl330_desc *desc = NULL;
2537 unsigned long flags;
2538
2539 spin_lock_irqsave(lock, flags);
2540
2541 if (!list_empty(pool)) {
2542 desc = list_entry(pool->next,
2543 struct dma_pl330_desc, node);
2544
2545 list_del_init(&desc->node);
2546
2547 desc->status = PREP;
2548 desc->txd.callback = NULL;
2549 }
2550
2551 spin_unlock_irqrestore(lock, flags);
2552
2553 return desc;
2554}
2555
2556static struct dma_pl330_desc *pl330_get_desc(struct dma_pl330_chan *pch)
2557{
2558 struct pl330_dmac *pl330 = pch->dmac;
2559 u8 *peri_id = pch->chan.private;
2560 struct dma_pl330_desc *desc;
2561
2562
2563 desc = pluck_desc(&pl330->desc_pool, &pl330->pool_lock);
2564
2565
2566 if (!desc) {
2567 DEFINE_SPINLOCK(lock);
2568 LIST_HEAD(pool);
2569
2570 if (!add_desc(&pool, &lock, GFP_ATOMIC, 1))
2571 return NULL;
2572
2573 desc = pluck_desc(&pool, &lock);
2574 WARN_ON(!desc || !list_empty(&pool));
2575 }
2576
2577
2578 desc->pchan = pch;
2579 desc->txd.cookie = 0;
2580 async_tx_ack(&desc->txd);
2581
2582 desc->peri = peri_id ? pch->chan.chan_id : 0;
2583 desc->rqcfg.pcfg = &pch->dmac->pcfg;
2584
2585 dma_async_tx_descriptor_init(&desc->txd, &pch->chan);
2586
2587 return desc;
2588}
2589
2590static inline void fill_px(struct pl330_xfer *px,
2591 dma_addr_t dst, dma_addr_t src, size_t len)
2592{
2593 px->bytes = len;
2594 px->dst_addr = dst;
2595 px->src_addr = src;
2596}
2597
2598static struct dma_pl330_desc *
2599__pl330_prep_dma_memcpy(struct dma_pl330_chan *pch, dma_addr_t dst,
2600 dma_addr_t src, size_t len)
2601{
2602 struct dma_pl330_desc *desc = pl330_get_desc(pch);
2603
2604 if (!desc) {
2605 dev_err(pch->dmac->ddma.dev, "%s:%d Unable to fetch desc\n",
2606 __func__, __LINE__);
2607 return NULL;
2608 }
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620 fill_px(&desc->px, dst, src, len);
2621
2622 return desc;
2623}
2624
2625
2626static inline int get_burst_len(struct dma_pl330_desc *desc, size_t len)
2627{
2628 struct dma_pl330_chan *pch = desc->pchan;
2629 struct pl330_dmac *pl330 = pch->dmac;
2630 int burst_len;
2631
2632 burst_len = pl330->pcfg.data_bus_width / 8;
2633 burst_len *= pl330->pcfg.data_buf_dep / pl330->pcfg.num_chan;
2634 burst_len >>= desc->rqcfg.brst_size;
2635
2636
2637 if (burst_len > PL330_MAX_BURST)
2638 burst_len = PL330_MAX_BURST;
2639
2640 return burst_len;
2641}
2642
2643static struct dma_async_tx_descriptor *pl330_prep_dma_cyclic(
2644 struct dma_chan *chan, dma_addr_t dma_addr, size_t len,
2645 size_t period_len, enum dma_transfer_direction direction,
2646 unsigned long flags)
2647{
2648 struct dma_pl330_desc *desc = NULL, *first = NULL;
2649 struct dma_pl330_chan *pch = to_pchan(chan);
2650 struct pl330_dmac *pl330 = pch->dmac;
2651 unsigned int i;
2652 dma_addr_t dst;
2653 dma_addr_t src;
2654
2655 if (len % period_len != 0)
2656 return NULL;
2657
2658 if (!is_slave_direction(direction)) {
2659 dev_err(pch->dmac->ddma.dev, "%s:%d Invalid dma direction\n",
2660 __func__, __LINE__);
2661 return NULL;
2662 }
2663
2664 if (!pl330_prep_slave_fifo(pch, direction))
2665 return NULL;
2666
2667 for (i = 0; i < len / period_len; i++) {
2668 desc = pl330_get_desc(pch);
2669 if (!desc) {
2670 dev_err(pch->dmac->ddma.dev, "%s:%d Unable to fetch desc\n",
2671 __func__, __LINE__);
2672
2673 if (!first)
2674 return NULL;
2675
2676 spin_lock_irqsave(&pl330->pool_lock, flags);
2677
2678 while (!list_empty(&first->node)) {
2679 desc = list_entry(first->node.next,
2680 struct dma_pl330_desc, node);
2681 list_move_tail(&desc->node, &pl330->desc_pool);
2682 }
2683
2684 list_move_tail(&first->node, &pl330->desc_pool);
2685
2686 spin_unlock_irqrestore(&pl330->pool_lock, flags);
2687
2688 return NULL;
2689 }
2690
2691 switch (direction) {
2692 case DMA_MEM_TO_DEV:
2693 desc->rqcfg.src_inc = 1;
2694 desc->rqcfg.dst_inc = 0;
2695 src = dma_addr;
2696 dst = pch->fifo_dma;
2697 break;
2698 case DMA_DEV_TO_MEM:
2699 desc->rqcfg.src_inc = 0;
2700 desc->rqcfg.dst_inc = 1;
2701 src = pch->fifo_dma;
2702 dst = dma_addr;
2703 break;
2704 default:
2705 break;
2706 }
2707
2708 desc->rqtype = direction;
2709 desc->rqcfg.brst_size = pch->burst_sz;
2710 desc->rqcfg.brst_len = pch->burst_len;
2711 desc->bytes_requested = period_len;
2712 fill_px(&desc->px, dst, src, period_len);
2713
2714 if (!first)
2715 first = desc;
2716 else
2717 list_add_tail(&desc->node, &first->node);
2718
2719 dma_addr += period_len;
2720 }
2721
2722 if (!desc)
2723 return NULL;
2724
2725 pch->cyclic = true;
2726 desc->txd.flags = flags;
2727
2728 return &desc->txd;
2729}
2730
2731static struct dma_async_tx_descriptor *
2732pl330_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dst,
2733 dma_addr_t src, size_t len, unsigned long flags)
2734{
2735 struct dma_pl330_desc *desc;
2736 struct dma_pl330_chan *pch = to_pchan(chan);
2737 struct pl330_dmac *pl330;
2738 int burst;
2739
2740 if (unlikely(!pch || !len))
2741 return NULL;
2742
2743 pl330 = pch->dmac;
2744
2745 desc = __pl330_prep_dma_memcpy(pch, dst, src, len);
2746 if (!desc)
2747 return NULL;
2748
2749 desc->rqcfg.src_inc = 1;
2750 desc->rqcfg.dst_inc = 1;
2751 desc->rqtype = DMA_MEM_TO_MEM;
2752
2753
2754 burst = pl330->pcfg.data_bus_width / 8;
2755
2756
2757
2758
2759
2760
2761 while ((src | dst | len) & (burst - 1))
2762 burst /= 2;
2763
2764 desc->rqcfg.brst_size = 0;
2765 while (burst != (1 << desc->rqcfg.brst_size))
2766 desc->rqcfg.brst_size++;
2767
2768
2769
2770
2771
2772 if (desc->rqcfg.brst_size * 8 < pl330->pcfg.data_bus_width)
2773 desc->rqcfg.brst_len = 1;
2774
2775 desc->rqcfg.brst_len = get_burst_len(desc, len);
2776 desc->bytes_requested = len;
2777
2778 desc->txd.flags = flags;
2779
2780 return &desc->txd;
2781}
2782
2783static void __pl330_giveback_desc(struct pl330_dmac *pl330,
2784 struct dma_pl330_desc *first)
2785{
2786 unsigned long flags;
2787 struct dma_pl330_desc *desc;
2788
2789 if (!first)
2790 return;
2791
2792 spin_lock_irqsave(&pl330->pool_lock, flags);
2793
2794 while (!list_empty(&first->node)) {
2795 desc = list_entry(first->node.next,
2796 struct dma_pl330_desc, node);
2797 list_move_tail(&desc->node, &pl330->desc_pool);
2798 }
2799
2800 list_move_tail(&first->node, &pl330->desc_pool);
2801
2802 spin_unlock_irqrestore(&pl330->pool_lock, flags);
2803}
2804
2805static struct dma_async_tx_descriptor *
2806pl330_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
2807 unsigned int sg_len, enum dma_transfer_direction direction,
2808 unsigned long flg, void *context)
2809{
2810 struct dma_pl330_desc *first, *desc = NULL;
2811 struct dma_pl330_chan *pch = to_pchan(chan);
2812 struct scatterlist *sg;
2813 int i;
2814
2815 if (unlikely(!pch || !sgl || !sg_len))
2816 return NULL;
2817
2818 if (!pl330_prep_slave_fifo(pch, direction))
2819 return NULL;
2820
2821 first = NULL;
2822
2823 for_each_sg(sgl, sg, sg_len, i) {
2824
2825 desc = pl330_get_desc(pch);
2826 if (!desc) {
2827 struct pl330_dmac *pl330 = pch->dmac;
2828
2829 dev_err(pch->dmac->ddma.dev,
2830 "%s:%d Unable to fetch desc\n",
2831 __func__, __LINE__);
2832 __pl330_giveback_desc(pl330, first);
2833
2834 return NULL;
2835 }
2836
2837 if (!first)
2838 first = desc;
2839 else
2840 list_add_tail(&desc->node, &first->node);
2841
2842 if (direction == DMA_MEM_TO_DEV) {
2843 desc->rqcfg.src_inc = 1;
2844 desc->rqcfg.dst_inc = 0;
2845 fill_px(&desc->px, pch->fifo_dma, sg_dma_address(sg),
2846 sg_dma_len(sg));
2847 } else {
2848 desc->rqcfg.src_inc = 0;
2849 desc->rqcfg.dst_inc = 1;
2850 fill_px(&desc->px, sg_dma_address(sg), pch->fifo_dma,
2851 sg_dma_len(sg));
2852 }
2853
2854 desc->rqcfg.brst_size = pch->burst_sz;
2855 desc->rqcfg.brst_len = pch->burst_len;
2856 desc->rqtype = direction;
2857 desc->bytes_requested = sg_dma_len(sg);
2858 }
2859
2860
2861 desc->txd.flags = flg;
2862 return &desc->txd;
2863}
2864
2865static irqreturn_t pl330_irq_handler(int irq, void *data)
2866{
2867 if (pl330_update(data))
2868 return IRQ_HANDLED;
2869 else
2870 return IRQ_NONE;
2871}
2872
2873#define PL330_DMA_BUSWIDTHS \
2874 BIT(DMA_SLAVE_BUSWIDTH_UNDEFINED) | \
2875 BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) | \
2876 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) | \
2877 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) | \
2878 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES)
2879
2880
2881
2882
2883
2884
2885
2886static int __maybe_unused pl330_suspend(struct device *dev)
2887{
2888 struct amba_device *pcdev = to_amba_device(dev);
2889
2890 pm_runtime_disable(dev);
2891
2892 if (!pm_runtime_status_suspended(dev)) {
2893
2894 amba_pclk_disable(pcdev);
2895 }
2896 amba_pclk_unprepare(pcdev);
2897
2898 return 0;
2899}
2900
2901static int __maybe_unused pl330_resume(struct device *dev)
2902{
2903 struct amba_device *pcdev = to_amba_device(dev);
2904 int ret;
2905
2906 ret = amba_pclk_prepare(pcdev);
2907 if (ret)
2908 return ret;
2909
2910 if (!pm_runtime_status_suspended(dev))
2911 ret = amba_pclk_enable(pcdev);
2912
2913 pm_runtime_enable(dev);
2914
2915 return ret;
2916}
2917
2918static SIMPLE_DEV_PM_OPS(pl330_pm, pl330_suspend, pl330_resume);
2919
2920static int
2921pl330_probe(struct amba_device *adev, const struct amba_id *id)
2922{
2923 struct pl330_config *pcfg;
2924 struct pl330_dmac *pl330;
2925 struct dma_pl330_chan *pch, *_p;
2926 struct dma_device *pd;
2927 struct resource *res;
2928 int i, ret, irq;
2929 int num_chan;
2930 struct device_node *np = adev->dev.of_node;
2931
2932 ret = dma_set_mask_and_coherent(&adev->dev, DMA_BIT_MASK(32));
2933 if (ret)
2934 return ret;
2935
2936
2937 pl330 = devm_kzalloc(&adev->dev, sizeof(*pl330), GFP_KERNEL);
2938 if (!pl330)
2939 return -ENOMEM;
2940
2941 pd = &pl330->ddma;
2942 pd->dev = &adev->dev;
2943
2944 pl330->mcbufsz = 0;
2945
2946
2947 for (i = 0; i < ARRAY_SIZE(of_quirks); i++)
2948 if (of_property_read_bool(np, of_quirks[i].quirk))
2949 pl330->quirks |= of_quirks[i].id;
2950
2951 res = &adev->res;
2952 pl330->base = devm_ioremap_resource(&adev->dev, res);
2953 if (IS_ERR(pl330->base))
2954 return PTR_ERR(pl330->base);
2955
2956 amba_set_drvdata(adev, pl330);
2957
2958 for (i = 0; i < AMBA_NR_IRQS; i++) {
2959 irq = adev->irq[i];
2960 if (irq) {
2961 ret = devm_request_irq(&adev->dev, irq,
2962 pl330_irq_handler, 0,
2963 dev_name(&adev->dev), pl330);
2964 if (ret)
2965 return ret;
2966 } else {
2967 break;
2968 }
2969 }
2970
2971 pcfg = &pl330->pcfg;
2972
2973 pcfg->periph_id = adev->periphid;
2974 ret = pl330_add(pl330);
2975 if (ret)
2976 return ret;
2977
2978 INIT_LIST_HEAD(&pl330->desc_pool);
2979 spin_lock_init(&pl330->pool_lock);
2980
2981
2982 if (!add_desc(&pl330->desc_pool, &pl330->pool_lock,
2983 GFP_KERNEL, NR_DEFAULT_DESC))
2984 dev_warn(&adev->dev, "unable to allocate desc\n");
2985
2986 INIT_LIST_HEAD(&pd->channels);
2987
2988
2989 num_chan = max_t(int, pcfg->num_peri, pcfg->num_chan);
2990
2991 pl330->num_peripherals = num_chan;
2992
2993 pl330->peripherals = kcalloc(num_chan, sizeof(*pch), GFP_KERNEL);
2994 if (!pl330->peripherals) {
2995 ret = -ENOMEM;
2996 goto probe_err2;
2997 }
2998
2999 for (i = 0; i < num_chan; i++) {
3000 pch = &pl330->peripherals[i];
3001
3002 pch->chan.private = adev->dev.of_node;
3003 INIT_LIST_HEAD(&pch->submitted_list);
3004 INIT_LIST_HEAD(&pch->work_list);
3005 INIT_LIST_HEAD(&pch->completed_list);
3006 spin_lock_init(&pch->lock);
3007 pch->thread = NULL;
3008 pch->chan.device = pd;
3009 pch->dmac = pl330;
3010 pch->dir = DMA_NONE;
3011
3012
3013 list_add_tail(&pch->chan.device_node, &pd->channels);
3014 }
3015
3016 dma_cap_set(DMA_MEMCPY, pd->cap_mask);
3017 if (pcfg->num_peri) {
3018 dma_cap_set(DMA_SLAVE, pd->cap_mask);
3019 dma_cap_set(DMA_CYCLIC, pd->cap_mask);
3020 dma_cap_set(DMA_PRIVATE, pd->cap_mask);
3021 }
3022
3023 pd->device_alloc_chan_resources = pl330_alloc_chan_resources;
3024 pd->device_free_chan_resources = pl330_free_chan_resources;
3025 pd->device_prep_dma_memcpy = pl330_prep_dma_memcpy;
3026 pd->device_prep_dma_cyclic = pl330_prep_dma_cyclic;
3027 pd->device_tx_status = pl330_tx_status;
3028 pd->device_prep_slave_sg = pl330_prep_slave_sg;
3029 pd->device_config = pl330_config;
3030 pd->device_pause = pl330_pause;
3031 pd->device_terminate_all = pl330_terminate_all;
3032 pd->device_issue_pending = pl330_issue_pending;
3033 pd->src_addr_widths = PL330_DMA_BUSWIDTHS;
3034 pd->dst_addr_widths = PL330_DMA_BUSWIDTHS;
3035 pd->directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
3036 pd->residue_granularity = DMA_RESIDUE_GRANULARITY_BURST;
3037 pd->max_burst = ((pl330->quirks & PL330_QUIRK_BROKEN_NO_FLUSHP) ?
3038 1 : PL330_MAX_BURST);
3039
3040 ret = dma_async_device_register(pd);
3041 if (ret) {
3042 dev_err(&adev->dev, "unable to register DMAC\n");
3043 goto probe_err3;
3044 }
3045
3046 if (adev->dev.of_node) {
3047 ret = of_dma_controller_register(adev->dev.of_node,
3048 of_dma_pl330_xlate, pl330);
3049 if (ret) {
3050 dev_err(&adev->dev,
3051 "unable to register DMA to the generic DT DMA helpers\n");
3052 }
3053 }
3054
3055 adev->dev.dma_parms = &pl330->dma_parms;
3056
3057
3058
3059
3060
3061 ret = dma_set_max_seg_size(&adev->dev, 1900800);
3062 if (ret)
3063 dev_err(&adev->dev, "unable to set the seg size\n");
3064
3065
3066 dev_info(&adev->dev,
3067 "Loaded driver for PL330 DMAC-%x\n", adev->periphid);
3068 dev_info(&adev->dev,
3069 "\tDBUFF-%ux%ubytes Num_Chans-%u Num_Peri-%u Num_Events-%u\n",
3070 pcfg->data_buf_dep, pcfg->data_bus_width / 8, pcfg->num_chan,
3071 pcfg->num_peri, pcfg->num_events);
3072
3073 pm_runtime_irq_safe(&adev->dev);
3074 pm_runtime_use_autosuspend(&adev->dev);
3075 pm_runtime_set_autosuspend_delay(&adev->dev, PL330_AUTOSUSPEND_DELAY);
3076 pm_runtime_mark_last_busy(&adev->dev);
3077 pm_runtime_put_autosuspend(&adev->dev);
3078
3079 return 0;
3080probe_err3:
3081
3082 list_for_each_entry_safe(pch, _p, &pl330->ddma.channels,
3083 chan.device_node) {
3084
3085
3086 list_del(&pch->chan.device_node);
3087
3088
3089 if (pch->thread) {
3090 pl330_terminate_all(&pch->chan);
3091 pl330_free_chan_resources(&pch->chan);
3092 }
3093 }
3094probe_err2:
3095 pl330_del(pl330);
3096
3097 return ret;
3098}
3099
3100static int pl330_remove(struct amba_device *adev)
3101{
3102 struct pl330_dmac *pl330 = amba_get_drvdata(adev);
3103 struct dma_pl330_chan *pch, *_p;
3104 int i, irq;
3105
3106 pm_runtime_get_noresume(pl330->ddma.dev);
3107
3108 if (adev->dev.of_node)
3109 of_dma_controller_free(adev->dev.of_node);
3110
3111 for (i = 0; i < AMBA_NR_IRQS; i++) {
3112 irq = adev->irq[i];
3113 if (irq)
3114 devm_free_irq(&adev->dev, irq, pl330);
3115 }
3116
3117 dma_async_device_unregister(&pl330->ddma);
3118
3119
3120 list_for_each_entry_safe(pch, _p, &pl330->ddma.channels,
3121 chan.device_node) {
3122
3123
3124 list_del(&pch->chan.device_node);
3125
3126
3127 if (pch->thread) {
3128 pl330_terminate_all(&pch->chan);
3129 pl330_free_chan_resources(&pch->chan);
3130 }
3131 }
3132
3133 pl330_del(pl330);
3134
3135 return 0;
3136}
3137
3138static const struct amba_id pl330_ids[] = {
3139 {
3140 .id = 0x00041330,
3141 .mask = 0x000fffff,
3142 },
3143 { 0, 0 },
3144};
3145
3146MODULE_DEVICE_TABLE(amba, pl330_ids);
3147
3148static struct amba_driver pl330_driver = {
3149 .drv = {
3150 .owner = THIS_MODULE,
3151 .name = "dma-pl330",
3152 .pm = &pl330_pm,
3153 },
3154 .id_table = pl330_ids,
3155 .probe = pl330_probe,
3156 .remove = pl330_remove,
3157};
3158
3159module_amba_driver(pl330_driver);
3160
3161MODULE_AUTHOR("Jaswinder Singh <jassisinghbrar@gmail.com>");
3162MODULE_DESCRIPTION("API Driver for PL330 DMAC");
3163MODULE_LICENSE("GPL");
3164