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