2 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
5 * Copyright (C) 2010 Samsung Electronics Co. Ltd.
6 * Jaswinder Singh <jassi.brar@samsung.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #include <linux/kernel.h>
16 #include <linux/init.h>
17 #include <linux/slab.h>
18 #include <linux/module.h>
19 #include <linux/string.h>
20 #include <linux/delay.h>
21 #include <linux/interrupt.h>
22 #include <linux/dma-mapping.h>
23 #include <linux/dmaengine.h>
24 #include <linux/interrupt.h>
25 #include <linux/amba/bus.h>
26 #include <linux/amba/pl330.h>
27 #include <linux/pm_runtime.h>
28 #include <linux/scatterlist.h>
31 #include "dmaengine.h"
32 #define PL330_MAX_CHAN 8
33 #define PL330_MAX_IRQS 32
34 #define PL330_MAX_PERI 32
36 enum pl330_srccachectrl
{
37 SCCTRL0
, /* Noncacheable and nonbufferable */
38 SCCTRL1
, /* Bufferable only */
39 SCCTRL2
, /* Cacheable, but do not allocate */
40 SCCTRL3
, /* Cacheable and bufferable, but do not allocate */
43 SCCTRL6
, /* Cacheable write-through, allocate on reads only */
44 SCCTRL7
, /* Cacheable write-back, allocate on reads only */
47 enum pl330_dstcachectrl
{
48 DCCTRL0
, /* Noncacheable and nonbufferable */
49 DCCTRL1
, /* Bufferable only */
50 DCCTRL2
, /* Cacheable, but do not allocate */
51 DCCTRL3
, /* Cacheable and bufferable, but do not allocate */
52 DINVALID1
, /* AWCACHE = 0x1000 */
54 DCCTRL6
, /* Cacheable write-through, allocate on writes only */
55 DCCTRL7
, /* Cacheable write-back, allocate on writes only */
73 /* Register and Bit field Definitions */
75 #define DS_ST_STOP 0x0
76 #define DS_ST_EXEC 0x1
77 #define DS_ST_CMISS 0x2
78 #define DS_ST_UPDTPC 0x3
80 #define DS_ST_ATBRR 0x5
81 #define DS_ST_QBUSY 0x6
83 #define DS_ST_KILL 0x8
84 #define DS_ST_CMPLT 0x9
85 #define DS_ST_FLTCMP 0xe
86 #define DS_ST_FAULT 0xf
91 #define INTSTATUS 0x28
98 #define FTC(n) (_FTC + (n)*0x4)
101 #define CS(n) (_CS + (n)*0x8)
102 #define CS_CNS (1 << 21)
105 #define CPC(n) (_CPC + (n)*0x8)
108 #define SA(n) (_SA + (n)*0x20)
111 #define DA(n) (_DA + (n)*0x20)
114 #define CC(n) (_CC + (n)*0x20)
116 #define CC_SRCINC (1 << 0)
117 #define CC_DSTINC (1 << 14)
118 #define CC_SRCPRI (1 << 8)
119 #define CC_DSTPRI (1 << 22)
120 #define CC_SRCNS (1 << 9)
121 #define CC_DSTNS (1 << 23)
122 #define CC_SRCIA (1 << 10)
123 #define CC_DSTIA (1 << 24)
124 #define CC_SRCBRSTLEN_SHFT 4
125 #define CC_DSTBRSTLEN_SHFT 18
126 #define CC_SRCBRSTSIZE_SHFT 1
127 #define CC_DSTBRSTSIZE_SHFT 15
128 #define CC_SRCCCTRL_SHFT 11
129 #define CC_SRCCCTRL_MASK 0x7
130 #define CC_DSTCCTRL_SHFT 25
131 #define CC_DRCCCTRL_MASK 0x7
132 #define CC_SWAP_SHFT 28
135 #define LC0(n) (_LC0 + (n)*0x20)
138 #define LC1(n) (_LC1 + (n)*0x20)
140 #define DBGSTATUS 0xd00
141 #define DBG_BUSY (1 << 0)
144 #define DBGINST0 0xd08
145 #define DBGINST1 0xd0c
154 #define PERIPH_ID 0xfe0
155 #define PERIPH_REV_SHIFT 20
156 #define PERIPH_REV_MASK 0xf
157 #define PERIPH_REV_R0P0 0
158 #define PERIPH_REV_R1P0 1
159 #define PERIPH_REV_R1P1 2
160 #define PCELL_ID 0xff0
162 #define CR0_PERIPH_REQ_SET (1 << 0)
163 #define CR0_BOOT_EN_SET (1 << 1)
164 #define CR0_BOOT_MAN_NS (1 << 2)
165 #define CR0_NUM_CHANS_SHIFT 4
166 #define CR0_NUM_CHANS_MASK 0x7
167 #define CR0_NUM_PERIPH_SHIFT 12
168 #define CR0_NUM_PERIPH_MASK 0x1f
169 #define CR0_NUM_EVENTS_SHIFT 17
170 #define CR0_NUM_EVENTS_MASK 0x1f
172 #define CR1_ICACHE_LEN_SHIFT 0
173 #define CR1_ICACHE_LEN_MASK 0x7
174 #define CR1_NUM_ICACHELINES_SHIFT 4
175 #define CR1_NUM_ICACHELINES_MASK 0xf
177 #define CRD_DATA_WIDTH_SHIFT 0
178 #define CRD_DATA_WIDTH_MASK 0x7
179 #define CRD_WR_CAP_SHIFT 4
180 #define CRD_WR_CAP_MASK 0x7
181 #define CRD_WR_Q_DEP_SHIFT 8
182 #define CRD_WR_Q_DEP_MASK 0xf
183 #define CRD_RD_CAP_SHIFT 12
184 #define CRD_RD_CAP_MASK 0x7
185 #define CRD_RD_Q_DEP_SHIFT 16
186 #define CRD_RD_Q_DEP_MASK 0xf
187 #define CRD_DATA_BUFF_SHIFT 20
188 #define CRD_DATA_BUFF_MASK 0x3ff
191 #define DESIGNER 0x41
193 #define INTEG_CFG 0x0
194 #define PERIPH_ID_VAL ((PART << 0) | (DESIGNER << 12))
196 #define PCELL_ID_VAL 0xb105f00d
198 #define PL330_STATE_STOPPED (1 << 0)
199 #define PL330_STATE_EXECUTING (1 << 1)
200 #define PL330_STATE_WFE (1 << 2)
201 #define PL330_STATE_FAULTING (1 << 3)
202 #define PL330_STATE_COMPLETING (1 << 4)
203 #define PL330_STATE_WFP (1 << 5)
204 #define PL330_STATE_KILLING (1 << 6)
205 #define PL330_STATE_FAULT_COMPLETING (1 << 7)
206 #define PL330_STATE_CACHEMISS (1 << 8)
207 #define PL330_STATE_UPDTPC (1 << 9)
208 #define PL330_STATE_ATBARRIER (1 << 10)
209 #define PL330_STATE_QUEUEBUSY (1 << 11)
210 #define PL330_STATE_INVALID (1 << 15)
212 #define PL330_STABLE_STATES (PL330_STATE_STOPPED | PL330_STATE_EXECUTING \
213 | PL330_STATE_WFE | PL330_STATE_FAULTING)
215 #define CMD_DMAADDH 0x54
216 #define CMD_DMAEND 0x00
217 #define CMD_DMAFLUSHP 0x35
218 #define CMD_DMAGO 0xa0
219 #define CMD_DMALD 0x04
220 #define CMD_DMALDP 0x25
221 #define CMD_DMALP 0x20
222 #define CMD_DMALPEND 0x28
223 #define CMD_DMAKILL 0x01
224 #define CMD_DMAMOV 0xbc
225 #define CMD_DMANOP 0x18
226 #define CMD_DMARMB 0x12
227 #define CMD_DMASEV 0x34
228 #define CMD_DMAST 0x08
229 #define CMD_DMASTP 0x29
230 #define CMD_DMASTZ 0x0c
231 #define CMD_DMAWFE 0x36
232 #define CMD_DMAWFP 0x30
233 #define CMD_DMAWMB 0x13
237 #define SZ_DMAFLUSHP 2
241 #define SZ_DMALPEND 2
255 #define BRST_LEN(ccr) ((((ccr) >> CC_SRCBRSTLEN_SHFT) & 0xf) + 1)
256 #define BRST_SIZE(ccr) (1 << (((ccr) >> CC_SRCBRSTSIZE_SHFT) & 0x7))
258 #define BYTE_TO_BURST(b, ccr) ((b) / BRST_SIZE(ccr) / BRST_LEN(ccr))
259 #define BURST_TO_BYTE(c, ccr) ((c) * BRST_SIZE(ccr) * BRST_LEN(ccr))
262 * With 256 bytes, we can do more than 2.5MB and 5MB xfers per req
263 * at 1byte/burst for P<->M and M<->M respectively.
264 * For typical scenario, at 1word/burst, 10MB and 20MB xfers per req
265 * should be enough for P<->M and M<->M respectively.
267 #define MCODE_BUFF_PER_REQ 256
269 /* If the _pl330_req is available to the client */
270 #define IS_FREE(req) (*((u8 *)((req)->mc_cpu)) == CMD_DMAEND)
272 /* Use this _only_ to wait on transient states */
273 #define UNTIL(t, s) while (!(_state(t) & (s))) cpu_relax();
275 #ifdef PL330_DEBUG_MCGEN
276 static unsigned cmd_line
;
277 #define PL330_DBGCMD_DUMP(off, x...) do { \
278 printk("%x:", cmd_line); \
282 #define PL330_DBGMC_START(addr) (cmd_line = addr)
284 #define PL330_DBGCMD_DUMP(off, x...) do {} while (0)
285 #define PL330_DBGMC_START(addr) do {} while (0)
288 /* The number of default descriptors */
290 #define NR_DEFAULT_DESC 16
292 /* Populated by the PL330 core driver for DMA API driver's info */
293 struct pl330_config
{
296 #define DMAC_MODE_NS (1 << 0)
298 unsigned int data_bus_width
:10; /* In number of bits */
299 unsigned int data_buf_dep
:10;
300 unsigned int num_chan
:4;
301 unsigned int num_peri
:6;
303 unsigned int num_events
:6;
307 /* Handle to the DMAC provided to the PL330 core */
311 /* Size of MicroCode buffers for each channel. */
313 /* ioremap'ed address of PL330 registers. */
315 /* Client can freely use it. */
317 /* PL330 core data, Client must not touch it. */
319 /* Populated by the PL330 core driver during pl330_add */
320 struct pl330_config pcfg
;
322 * If the DMAC has some reset mechanism, then the
323 * client may want to provide pointer to the method.
325 void (*dmac_reset
)(struct pl330_info
*pi
);
329 * Request Configuration.
330 * The PL330 core does not modify this and uses the last
331 * working configuration if the request doesn't provide any.
333 * The Client may want to provide this info only for the
334 * first request and a request with new settings.
336 struct pl330_reqcfg
{
337 /* Address Incrementing */
342 * For now, the SRC & DST protection levels
343 * and burst size/length are assumed same.
349 unsigned brst_size
:3; /* in power of 2 */
351 enum pl330_dstcachectrl dcctl
;
352 enum pl330_srccachectrl scctl
;
353 enum pl330_byteswap swap
;
354 struct pl330_config
*pcfg
;
358 * One cycle of DMAC operation.
359 * There may be more than one xfer in a request.
367 * Pointer to next xfer in the list.
368 * The last xfer in the req must point to NULL.
370 struct pl330_xfer
*next
;
373 /* The xfer callbacks are made with one of these arguments. */
375 /* The all xfers in the request were success. */
377 /* If req aborted due to global error. */
379 /* If req failed due to problem with Channel. */
383 /* A request defining Scatter-Gather List ending with NULL xfer. */
385 enum pl330_reqtype rqtype
;
386 /* Index of peripheral for the xfer. */
388 /* Unique token for this xfer, set by the client. */
390 /* Callback to be called after xfer. */
391 void (*xfer_cb
)(void *token
, enum pl330_op_err err
);
392 /* If NULL, req will be done at last set parameters. */
393 struct pl330_reqcfg
*cfg
;
394 /* Pointer to first xfer in the request. */
395 struct pl330_xfer
*x
;
399 * To know the status of the channel and DMAC, the client
400 * provides a pointer to this structure. The PL330 core
401 * fills it with current information.
403 struct pl330_chanstatus
{
405 * If the DMAC engine halted due to some error,
406 * the client should remove-add DMAC.
410 * If channel is halted due to some error,
411 * the client should ABORT/FLUSH and START the channel.
414 /* Location of last load */
416 /* Location of last store */
419 * Pointer to the currently active req, NULL if channel is
420 * inactive, even though the requests may be present.
422 struct pl330_req
*top_req
;
423 /* Pointer to req waiting second in the queue if any. */
424 struct pl330_req
*wait_req
;
428 /* Start the channel */
430 /* Abort the active xfer */
432 /* Stop xfer and flush queue */
439 struct pl330_xfer
*x
;
462 /* Number of bytes taken to setup MC for the req */
465 /* Hook to attach to DMAC's list of reqs with due callback */
466 struct list_head rqd
;
469 /* ToBeDone for tasklet */
477 struct pl330_thread
{
480 /* If the channel is not yet acquired by any client */
483 struct pl330_dmac
*dmac
;
484 /* Only two at a time */
485 struct _pl330_req req
[2];
486 /* Index of the last enqueued request */
488 /* Index of the last submitted request or -1 if the DMA is stopped */
492 enum pl330_dmac_state
{
501 /* Holds list of reqs with due callbacks */
502 struct list_head req_done
;
503 /* Pointer to platform specific stuff */
504 struct pl330_info
*pinfo
;
505 /* Maximum possible events/irqs */
507 /* BUS address of MicroCode buffer */
509 /* CPU address of MicroCode buffer */
511 /* List of all Channel threads */
512 struct pl330_thread
*channels
;
513 /* Pointer to the MANAGER thread */
514 struct pl330_thread
*manager
;
515 /* To handle bad news in interrupt */
516 struct tasklet_struct tasks
;
517 struct _pl330_tbd dmac_tbd
;
518 /* State of DMAC operation */
519 enum pl330_dmac_state state
;
523 /* In the DMAC pool */
526 * Allocted to some channel during prep_xxx
527 * Also may be sitting on the work_list.
531 * Sitting on the work_list and already submitted
532 * to the PL330 core. Not more than two descriptors
533 * of a channel can be BUSY at any time.
537 * Sitting on the channel work_list but xfer done
543 struct dma_pl330_chan
{
544 /* Schedule desc completion */
545 struct tasklet_struct task
;
547 /* DMA-Engine Channel */
548 struct dma_chan chan
;
550 /* List of to be xfered descriptors */
551 struct list_head work_list
;
553 /* Pointer to the DMAC that manages this channel,
554 * NULL if the channel is available to be acquired.
555 * As the parent, this DMAC also provides descriptors
558 struct dma_pl330_dmac
*dmac
;
560 /* To protect channel manipulation */
563 /* Token of a hardware channel thread of PL330 DMAC
564 * NULL if the channel is available to be acquired.
568 /* For D-to-M and M-to-D channels */
569 int burst_sz
; /* the peripheral fifo width */
570 int burst_len
; /* the number of burst */
571 dma_addr_t fifo_addr
;
573 /* for cyclic capability */
577 struct dma_pl330_dmac
{
578 struct pl330_info pif
;
580 /* DMA-Engine Device */
581 struct dma_device ddma
;
583 /* Pool of descriptors available for the DMAC's channels */
584 struct list_head desc_pool
;
585 /* To protect desc_pool manipulation */
586 spinlock_t pool_lock
;
588 /* Peripheral channels connected to this DMAC */
589 struct dma_pl330_chan
*peripherals
; /* keep at end */
594 struct dma_pl330_desc
{
595 /* To attach to a queue as child */
596 struct list_head node
;
598 /* Descriptor for the DMA Engine API */
599 struct dma_async_tx_descriptor txd
;
601 /* Xfer for PL330 core */
602 struct pl330_xfer px
;
604 struct pl330_reqcfg rqcfg
;
605 struct pl330_req req
;
607 enum desc_status status
;
609 /* The channel which currently holds this desc */
610 struct dma_pl330_chan
*pchan
;
613 static inline void _callback(struct pl330_req
*r
, enum pl330_op_err err
)
616 r
->xfer_cb(r
->token
, err
);
619 static inline bool _queue_empty(struct pl330_thread
*thrd
)
621 return (IS_FREE(&thrd
->req
[0]) && IS_FREE(&thrd
->req
[1]))
625 static inline bool _queue_full(struct pl330_thread
*thrd
)
627 return (IS_FREE(&thrd
->req
[0]) || IS_FREE(&thrd
->req
[1]))
631 static inline bool is_manager(struct pl330_thread
*thrd
)
633 struct pl330_dmac
*pl330
= thrd
->dmac
;
635 /* MANAGER is indexed at the end */
636 if (thrd
->id
== pl330
->pinfo
->pcfg
.num_chan
)
642 /* If manager of the thread is in Non-Secure mode */
643 static inline bool _manager_ns(struct pl330_thread
*thrd
)
645 struct pl330_dmac
*pl330
= thrd
->dmac
;
647 return (pl330
->pinfo
->pcfg
.mode
& DMAC_MODE_NS
) ? true : false;
650 static inline u32
get_id(struct pl330_info
*pi
, u32 off
)
652 void __iomem
*regs
= pi
->base
;
655 id
|= (readb(regs
+ off
+ 0x0) << 0);
656 id
|= (readb(regs
+ off
+ 0x4) << 8);
657 id
|= (readb(regs
+ off
+ 0x8) << 16);
658 id
|= (readb(regs
+ off
+ 0xc) << 24);
663 static inline u32
get_revision(u32 periph_id
)
665 return (periph_id
>> PERIPH_REV_SHIFT
) & PERIPH_REV_MASK
;
668 static inline u32
_emit_ADDH(unsigned dry_run
, u8 buf
[],
669 enum pl330_dst da
, u16 val
)
674 buf
[0] = CMD_DMAADDH
;
676 *((u16
*)&buf
[1]) = val
;
678 PL330_DBGCMD_DUMP(SZ_DMAADDH
, "\tDMAADDH %s %u\n",
679 da
== 1 ? "DA" : "SA", val
);
684 static inline u32
_emit_END(unsigned dry_run
, u8 buf
[])
691 PL330_DBGCMD_DUMP(SZ_DMAEND
, "\tDMAEND\n");
696 static inline u32
_emit_FLUSHP(unsigned dry_run
, u8 buf
[], u8 peri
)
701 buf
[0] = CMD_DMAFLUSHP
;
707 PL330_DBGCMD_DUMP(SZ_DMAFLUSHP
, "\tDMAFLUSHP %u\n", peri
>> 3);
712 static inline u32
_emit_LD(unsigned dry_run
, u8 buf
[], enum pl330_cond cond
)
720 buf
[0] |= (0 << 1) | (1 << 0);
721 else if (cond
== BURST
)
722 buf
[0] |= (1 << 1) | (1 << 0);
724 PL330_DBGCMD_DUMP(SZ_DMALD
, "\tDMALD%c\n",
725 cond
== SINGLE
? 'S' : (cond
== BURST
? 'B' : 'A'));
730 static inline u32
_emit_LDP(unsigned dry_run
, u8 buf
[],
731 enum pl330_cond cond
, u8 peri
)
745 PL330_DBGCMD_DUMP(SZ_DMALDP
, "\tDMALDP%c %u\n",
746 cond
== SINGLE
? 'S' : 'B', peri
>> 3);
751 static inline u32
_emit_LP(unsigned dry_run
, u8 buf
[],
752 unsigned loop
, u8 cnt
)
762 cnt
--; /* DMAC increments by 1 internally */
765 PL330_DBGCMD_DUMP(SZ_DMALP
, "\tDMALP_%c %u\n", loop
? '1' : '0', cnt
);
771 enum pl330_cond cond
;
777 static inline u32
_emit_LPEND(unsigned dry_run
, u8 buf
[],
778 const struct _arg_LPEND
*arg
)
780 enum pl330_cond cond
= arg
->cond
;
781 bool forever
= arg
->forever
;
782 unsigned loop
= arg
->loop
;
783 u8 bjump
= arg
->bjump
;
788 buf
[0] = CMD_DMALPEND
;
797 buf
[0] |= (0 << 1) | (1 << 0);
798 else if (cond
== BURST
)
799 buf
[0] |= (1 << 1) | (1 << 0);
803 PL330_DBGCMD_DUMP(SZ_DMALPEND
, "\tDMALP%s%c_%c bjmpto_%x\n",
804 forever
? "FE" : "END",
805 cond
== SINGLE
? 'S' : (cond
== BURST
? 'B' : 'A'),
812 static inline u32
_emit_KILL(unsigned dry_run
, u8 buf
[])
817 buf
[0] = CMD_DMAKILL
;
822 static inline u32
_emit_MOV(unsigned dry_run
, u8 buf
[],
823 enum dmamov_dst dst
, u32 val
)
830 *((u32
*)&buf
[2]) = val
;
832 PL330_DBGCMD_DUMP(SZ_DMAMOV
, "\tDMAMOV %s 0x%x\n",
833 dst
== SAR
? "SAR" : (dst
== DAR
? "DAR" : "CCR"), val
);
838 static inline u32
_emit_NOP(unsigned dry_run
, u8 buf
[])
845 PL330_DBGCMD_DUMP(SZ_DMANOP
, "\tDMANOP\n");
850 static inline u32
_emit_RMB(unsigned dry_run
, u8 buf
[])
857 PL330_DBGCMD_DUMP(SZ_DMARMB
, "\tDMARMB\n");
862 static inline u32
_emit_SEV(unsigned dry_run
, u8 buf
[], u8 ev
)
873 PL330_DBGCMD_DUMP(SZ_DMASEV
, "\tDMASEV %u\n", ev
>> 3);
878 static inline u32
_emit_ST(unsigned dry_run
, u8 buf
[], enum pl330_cond cond
)
886 buf
[0] |= (0 << 1) | (1 << 0);
887 else if (cond
== BURST
)
888 buf
[0] |= (1 << 1) | (1 << 0);
890 PL330_DBGCMD_DUMP(SZ_DMAST
, "\tDMAST%c\n",
891 cond
== SINGLE
? 'S' : (cond
== BURST
? 'B' : 'A'));
896 static inline u32
_emit_STP(unsigned dry_run
, u8 buf
[],
897 enum pl330_cond cond
, u8 peri
)
911 PL330_DBGCMD_DUMP(SZ_DMASTP
, "\tDMASTP%c %u\n",
912 cond
== SINGLE
? 'S' : 'B', peri
>> 3);
917 static inline u32
_emit_STZ(unsigned dry_run
, u8 buf
[])
924 PL330_DBGCMD_DUMP(SZ_DMASTZ
, "\tDMASTZ\n");
929 static inline u32
_emit_WFE(unsigned dry_run
, u8 buf
[], u8 ev
,
944 PL330_DBGCMD_DUMP(SZ_DMAWFE
, "\tDMAWFE %u%s\n",
945 ev
>> 3, invalidate
? ", I" : "");
950 static inline u32
_emit_WFP(unsigned dry_run
, u8 buf
[],
951 enum pl330_cond cond
, u8 peri
)
959 buf
[0] |= (0 << 1) | (0 << 0);
960 else if (cond
== BURST
)
961 buf
[0] |= (1 << 1) | (0 << 0);
963 buf
[0] |= (0 << 1) | (1 << 0);
969 PL330_DBGCMD_DUMP(SZ_DMAWFP
, "\tDMAWFP%c %u\n",
970 cond
== SINGLE
? 'S' : (cond
== BURST
? 'B' : 'P'), peri
>> 3);
975 static inline u32
_emit_WMB(unsigned dry_run
, u8 buf
[])
982 PL330_DBGCMD_DUMP(SZ_DMAWMB
, "\tDMAWMB\n");
993 static inline u32
_emit_GO(unsigned dry_run
, u8 buf
[],
994 const struct _arg_GO
*arg
)
997 u32 addr
= arg
->addr
;
998 unsigned ns
= arg
->ns
;
1004 buf
[0] |= (ns
<< 1);
1006 buf
[1] = chan
& 0x7;
1008 *((u32
*)&buf
[2]) = addr
;
1013 #define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
1015 /* Returns Time-Out */
1016 static bool _until_dmac_idle(struct pl330_thread
*thrd
)
1018 void __iomem
*regs
= thrd
->dmac
->pinfo
->base
;
1019 unsigned long loops
= msecs_to_loops(5);
1022 /* Until Manager is Idle */
1023 if (!(readl(regs
+ DBGSTATUS
) & DBG_BUSY
))
1035 static inline void _execute_DBGINSN(struct pl330_thread
*thrd
,
1036 u8 insn
[], bool as_manager
)
1038 void __iomem
*regs
= thrd
->dmac
->pinfo
->base
;
1041 val
= (insn
[0] << 16) | (insn
[1] << 24);
1044 val
|= (thrd
->id
<< 8); /* Channel Number */
1046 writel(val
, regs
+ DBGINST0
);
1048 val
= *((u32
*)&insn
[2]);
1049 writel(val
, regs
+ DBGINST1
);
1051 /* If timed out due to halted state-machine */
1052 if (_until_dmac_idle(thrd
)) {
1053 dev_err(thrd
->dmac
->pinfo
->dev
, "DMAC halted!\n");
1058 writel(0, regs
+ DBGCMD
);
1062 * Mark a _pl330_req as free.
1063 * We do it by writing DMAEND as the first instruction
1064 * because no valid request is going to have DMAEND as
1065 * its first instruction to execute.
1067 static void mark_free(struct pl330_thread
*thrd
, int idx
)
1069 struct _pl330_req
*req
= &thrd
->req
[idx
];
1071 _emit_END(0, req
->mc_cpu
);
1074 thrd
->req_running
= -1;
1077 static inline u32
_state(struct pl330_thread
*thrd
)
1079 void __iomem
*regs
= thrd
->dmac
->pinfo
->base
;
1082 if (is_manager(thrd
))
1083 val
= readl(regs
+ DS
) & 0xf;
1085 val
= readl(regs
+ CS(thrd
->id
)) & 0xf;
1089 return PL330_STATE_STOPPED
;
1091 return PL330_STATE_EXECUTING
;
1093 return PL330_STATE_CACHEMISS
;
1095 return PL330_STATE_UPDTPC
;
1097 return PL330_STATE_WFE
;
1099 return PL330_STATE_FAULTING
;
1101 if (is_manager(thrd
))
1102 return PL330_STATE_INVALID
;
1104 return PL330_STATE_ATBARRIER
;
1106 if (is_manager(thrd
))
1107 return PL330_STATE_INVALID
;
1109 return PL330_STATE_QUEUEBUSY
;
1111 if (is_manager(thrd
))
1112 return PL330_STATE_INVALID
;
1114 return PL330_STATE_WFP
;
1116 if (is_manager(thrd
))
1117 return PL330_STATE_INVALID
;
1119 return PL330_STATE_KILLING
;
1121 if (is_manager(thrd
))
1122 return PL330_STATE_INVALID
;
1124 return PL330_STATE_COMPLETING
;
1126 if (is_manager(thrd
))
1127 return PL330_STATE_INVALID
;
1129 return PL330_STATE_FAULT_COMPLETING
;
1131 return PL330_STATE_INVALID
;
1135 static void _stop(struct pl330_thread
*thrd
)
1137 void __iomem
*regs
= thrd
->dmac
->pinfo
->base
;
1138 u8 insn
[6] = {0, 0, 0, 0, 0, 0};
1140 if (_state(thrd
) == PL330_STATE_FAULT_COMPLETING
)
1141 UNTIL(thrd
, PL330_STATE_FAULTING
| PL330_STATE_KILLING
);
1143 /* Return if nothing needs to be done */
1144 if (_state(thrd
) == PL330_STATE_COMPLETING
1145 || _state(thrd
) == PL330_STATE_KILLING
1146 || _state(thrd
) == PL330_STATE_STOPPED
)
1149 _emit_KILL(0, insn
);
1151 /* Stop generating interrupts for SEV */
1152 writel(readl(regs
+ INTEN
) & ~(1 << thrd
->ev
), regs
+ INTEN
);
1154 _execute_DBGINSN(thrd
, insn
, is_manager(thrd
));
1157 /* Start doing req 'idx' of thread 'thrd' */
1158 static bool _trigger(struct pl330_thread
*thrd
)
1160 void __iomem
*regs
= thrd
->dmac
->pinfo
->base
;
1161 struct _pl330_req
*req
;
1162 struct pl330_req
*r
;
1165 u8 insn
[6] = {0, 0, 0, 0, 0, 0};
1168 /* Return if already ACTIVE */
1169 if (_state(thrd
) != PL330_STATE_STOPPED
)
1172 idx
= 1 - thrd
->lstenq
;
1173 if (!IS_FREE(&thrd
->req
[idx
]))
1174 req
= &thrd
->req
[idx
];
1177 if (!IS_FREE(&thrd
->req
[idx
]))
1178 req
= &thrd
->req
[idx
];
1183 /* Return if no request */
1184 if (!req
|| !req
->r
)
1190 ns
= r
->cfg
->nonsecure
? 1 : 0;
1191 else if (readl(regs
+ CS(thrd
->id
)) & CS_CNS
)
1196 /* See 'Abort Sources' point-4 at Page 2-25 */
1197 if (_manager_ns(thrd
) && !ns
)
1198 dev_info(thrd
->dmac
->pinfo
->dev
, "%s:%d Recipe for ABORT!\n",
1199 __func__
, __LINE__
);
1202 go
.addr
= req
->mc_bus
;
1204 _emit_GO(0, insn
, &go
);
1206 /* Set to generate interrupts for SEV */
1207 writel(readl(regs
+ INTEN
) | (1 << thrd
->ev
), regs
+ INTEN
);
1209 /* Only manager can execute GO */
1210 _execute_DBGINSN(thrd
, insn
, true);
1212 thrd
->req_running
= idx
;
1217 static bool _start(struct pl330_thread
*thrd
)
1219 switch (_state(thrd
)) {
1220 case PL330_STATE_FAULT_COMPLETING
:
1221 UNTIL(thrd
, PL330_STATE_FAULTING
| PL330_STATE_KILLING
);
1223 if (_state(thrd
) == PL330_STATE_KILLING
)
1224 UNTIL(thrd
, PL330_STATE_STOPPED
)
1226 case PL330_STATE_FAULTING
:
1229 case PL330_STATE_KILLING
:
1230 case PL330_STATE_COMPLETING
:
1231 UNTIL(thrd
, PL330_STATE_STOPPED
)
1233 case PL330_STATE_STOPPED
:
1234 return _trigger(thrd
);
1236 case PL330_STATE_WFP
:
1237 case PL330_STATE_QUEUEBUSY
:
1238 case PL330_STATE_ATBARRIER
:
1239 case PL330_STATE_UPDTPC
:
1240 case PL330_STATE_CACHEMISS
:
1241 case PL330_STATE_EXECUTING
:
1244 case PL330_STATE_WFE
: /* For RESUME, nothing yet */
1250 static inline int _ldst_memtomem(unsigned dry_run
, u8 buf
[],
1251 const struct _xfer_spec
*pxs
, int cyc
)
1254 struct pl330_config
*pcfg
= pxs
->r
->cfg
->pcfg
;
1256 /* check lock-up free version */
1257 if (get_revision(pcfg
->periph_id
) >= PERIPH_REV_R1P0
) {
1259 off
+= _emit_LD(dry_run
, &buf
[off
], ALWAYS
);
1260 off
+= _emit_ST(dry_run
, &buf
[off
], ALWAYS
);
1264 off
+= _emit_LD(dry_run
, &buf
[off
], ALWAYS
);
1265 off
+= _emit_RMB(dry_run
, &buf
[off
]);
1266 off
+= _emit_ST(dry_run
, &buf
[off
], ALWAYS
);
1267 off
+= _emit_WMB(dry_run
, &buf
[off
]);
1274 static inline int _ldst_devtomem(unsigned dry_run
, u8 buf
[],
1275 const struct _xfer_spec
*pxs
, int cyc
)
1280 off
+= _emit_WFP(dry_run
, &buf
[off
], SINGLE
, pxs
->r
->peri
);
1281 off
+= _emit_LDP(dry_run
, &buf
[off
], SINGLE
, pxs
->r
->peri
);
1282 off
+= _emit_ST(dry_run
, &buf
[off
], ALWAYS
);
1283 off
+= _emit_FLUSHP(dry_run
, &buf
[off
], pxs
->r
->peri
);
1289 static inline int _ldst_memtodev(unsigned dry_run
, u8 buf
[],
1290 const struct _xfer_spec
*pxs
, int cyc
)
1295 off
+= _emit_WFP(dry_run
, &buf
[off
], SINGLE
, pxs
->r
->peri
);
1296 off
+= _emit_LD(dry_run
, &buf
[off
], ALWAYS
);
1297 off
+= _emit_STP(dry_run
, &buf
[off
], SINGLE
, pxs
->r
->peri
);
1298 off
+= _emit_FLUSHP(dry_run
, &buf
[off
], pxs
->r
->peri
);
1304 static int _bursts(unsigned dry_run
, u8 buf
[],
1305 const struct _xfer_spec
*pxs
, int cyc
)
1309 switch (pxs
->r
->rqtype
) {
1311 off
+= _ldst_memtodev(dry_run
, &buf
[off
], pxs
, cyc
);
1314 off
+= _ldst_devtomem(dry_run
, &buf
[off
], pxs
, cyc
);
1317 off
+= _ldst_memtomem(dry_run
, &buf
[off
], pxs
, cyc
);
1320 off
+= 0x40000000; /* Scare off the Client */
1327 /* Returns bytes consumed and updates bursts */
1328 static inline int _loop(unsigned dry_run
, u8 buf
[],
1329 unsigned long *bursts
, const struct _xfer_spec
*pxs
)
1331 int cyc
, cycmax
, szlp
, szlpend
, szbrst
, off
;
1332 unsigned lcnt0
, lcnt1
, ljmp0
, ljmp1
;
1333 struct _arg_LPEND lpend
;
1335 /* Max iterations possible in DMALP is 256 */
1336 if (*bursts
>= 256*256) {
1339 cyc
= *bursts
/ lcnt1
/ lcnt0
;
1340 } else if (*bursts
> 256) {
1342 lcnt0
= *bursts
/ lcnt1
;
1350 szlp
= _emit_LP(1, buf
, 0, 0);
1351 szbrst
= _bursts(1, buf
, pxs
, 1);
1353 lpend
.cond
= ALWAYS
;
1354 lpend
.forever
= false;
1357 szlpend
= _emit_LPEND(1, buf
, &lpend
);
1365 * Max bursts that we can unroll due to limit on the
1366 * size of backward jump that can be encoded in DMALPEND
1367 * which is 8-bits and hence 255
1369 cycmax
= (255 - (szlp
+ szlpend
)) / szbrst
;
1371 cyc
= (cycmax
< cyc
) ? cycmax
: cyc
;
1376 off
+= _emit_LP(dry_run
, &buf
[off
], 0, lcnt0
);
1380 off
+= _emit_LP(dry_run
, &buf
[off
], 1, lcnt1
);
1383 off
+= _bursts(dry_run
, &buf
[off
], pxs
, cyc
);
1385 lpend
.cond
= ALWAYS
;
1386 lpend
.forever
= false;
1388 lpend
.bjump
= off
- ljmp1
;
1389 off
+= _emit_LPEND(dry_run
, &buf
[off
], &lpend
);
1392 lpend
.cond
= ALWAYS
;
1393 lpend
.forever
= false;
1395 lpend
.bjump
= off
- ljmp0
;
1396 off
+= _emit_LPEND(dry_run
, &buf
[off
], &lpend
);
1399 *bursts
= lcnt1
* cyc
;
1406 static inline int _setup_loops(unsigned dry_run
, u8 buf
[],
1407 const struct _xfer_spec
*pxs
)
1409 struct pl330_xfer
*x
= pxs
->x
;
1411 unsigned long c
, bursts
= BYTE_TO_BURST(x
->bytes
, ccr
);
1416 off
+= _loop(dry_run
, &buf
[off
], &c
, pxs
);
1423 static inline int _setup_xfer(unsigned dry_run
, u8 buf
[],
1424 const struct _xfer_spec
*pxs
)
1426 struct pl330_xfer
*x
= pxs
->x
;
1429 /* DMAMOV SAR, x->src_addr */
1430 off
+= _emit_MOV(dry_run
, &buf
[off
], SAR
, x
->src_addr
);
1431 /* DMAMOV DAR, x->dst_addr */
1432 off
+= _emit_MOV(dry_run
, &buf
[off
], DAR
, x
->dst_addr
);
1435 off
+= _setup_loops(dry_run
, &buf
[off
], pxs
);
1441 * A req is a sequence of one or more xfer units.
1442 * Returns the number of bytes taken to setup the MC for the req.
1444 static int _setup_req(unsigned dry_run
, struct pl330_thread
*thrd
,
1445 unsigned index
, struct _xfer_spec
*pxs
)
1447 struct _pl330_req
*req
= &thrd
->req
[index
];
1448 struct pl330_xfer
*x
;
1449 u8
*buf
= req
->mc_cpu
;
1452 PL330_DBGMC_START(req
->mc_bus
);
1454 /* DMAMOV CCR, ccr */
1455 off
+= _emit_MOV(dry_run
, &buf
[off
], CCR
, pxs
->ccr
);
1459 /* Error if xfer length is not aligned at burst size */
1460 if (x
->bytes
% (BRST_SIZE(pxs
->ccr
) * BRST_LEN(pxs
->ccr
)))
1464 off
+= _setup_xfer(dry_run
, &buf
[off
], pxs
);
1469 /* DMASEV peripheral/event */
1470 off
+= _emit_SEV(dry_run
, &buf
[off
], thrd
->ev
);
1472 off
+= _emit_END(dry_run
, &buf
[off
]);
1477 static inline u32
_prepare_ccr(const struct pl330_reqcfg
*rqc
)
1487 /* We set same protection levels for Src and DST for now */
1488 if (rqc
->privileged
)
1489 ccr
|= CC_SRCPRI
| CC_DSTPRI
;
1491 ccr
|= CC_SRCNS
| CC_DSTNS
;
1492 if (rqc
->insnaccess
)
1493 ccr
|= CC_SRCIA
| CC_DSTIA
;
1495 ccr
|= (((rqc
->brst_len
- 1) & 0xf) << CC_SRCBRSTLEN_SHFT
);
1496 ccr
|= (((rqc
->brst_len
- 1) & 0xf) << CC_DSTBRSTLEN_SHFT
);
1498 ccr
|= (rqc
->brst_size
<< CC_SRCBRSTSIZE_SHFT
);
1499 ccr
|= (rqc
->brst_size
<< CC_DSTBRSTSIZE_SHFT
);
1501 ccr
|= (rqc
->scctl
<< CC_SRCCCTRL_SHFT
);
1502 ccr
|= (rqc
->dcctl
<< CC_DSTCCTRL_SHFT
);
1504 ccr
|= (rqc
->swap
<< CC_SWAP_SHFT
);
1509 static inline bool _is_valid(u32 ccr
)
1511 enum pl330_dstcachectrl dcctl
;
1512 enum pl330_srccachectrl scctl
;
1514 dcctl
= (ccr
>> CC_DSTCCTRL_SHFT
) & CC_DRCCCTRL_MASK
;
1515 scctl
= (ccr
>> CC_SRCCCTRL_SHFT
) & CC_SRCCCTRL_MASK
;
1517 if (dcctl
== DINVALID1
|| dcctl
== DINVALID2
1518 || scctl
== SINVALID1
|| scctl
== SINVALID2
)
1525 * Submit a list of xfers after which the client wants notification.
1526 * Client is not notified after each xfer unit, just once after all
1527 * xfer units are done or some error occurs.
1529 static int pl330_submit_req(void *ch_id
, struct pl330_req
*r
)
1531 struct pl330_thread
*thrd
= ch_id
;
1532 struct pl330_dmac
*pl330
;
1533 struct pl330_info
*pi
;
1534 struct _xfer_spec xs
;
1535 unsigned long flags
;
1541 /* No Req or Unacquired Channel or DMAC */
1542 if (!r
|| !thrd
|| thrd
->free
)
1549 if (pl330
->state
== DYING
1550 || pl330
->dmac_tbd
.reset_chan
& (1 << thrd
->id
)) {
1551 dev_info(thrd
->dmac
->pinfo
->dev
, "%s:%d\n",
1552 __func__
, __LINE__
);
1556 /* If request for non-existing peripheral */
1557 if (r
->rqtype
!= MEMTOMEM
&& r
->peri
>= pi
->pcfg
.num_peri
) {
1558 dev_info(thrd
->dmac
->pinfo
->dev
,
1559 "%s:%d Invalid peripheral(%u)!\n",
1560 __func__
, __LINE__
, r
->peri
);
1564 spin_lock_irqsave(&pl330
->lock
, flags
);
1566 if (_queue_full(thrd
)) {
1571 /* Prefer Secure Channel */
1572 if (!_manager_ns(thrd
))
1573 r
->cfg
->nonsecure
= 0;
1575 r
->cfg
->nonsecure
= 1;
1577 /* Use last settings, if not provided */
1579 ccr
= _prepare_ccr(r
->cfg
);
1581 ccr
= readl(regs
+ CC(thrd
->id
));
1583 /* If this req doesn't have valid xfer settings */
1584 if (!_is_valid(ccr
)) {
1586 dev_info(thrd
->dmac
->pinfo
->dev
, "%s:%d Invalid CCR(%x)!\n",
1587 __func__
, __LINE__
, ccr
);
1591 idx
= IS_FREE(&thrd
->req
[0]) ? 0 : 1;
1596 /* First dry run to check if req is acceptable */
1597 ret
= _setup_req(1, thrd
, idx
, &xs
);
1601 if (ret
> pi
->mcbufsz
/ 2) {
1602 dev_info(thrd
->dmac
->pinfo
->dev
,
1603 "%s:%d Trying increasing mcbufsz\n",
1604 __func__
, __LINE__
);
1609 /* Hook the request */
1611 thrd
->req
[idx
].mc_len
= _setup_req(0, thrd
, idx
, &xs
);
1612 thrd
->req
[idx
].r
= r
;
1617 spin_unlock_irqrestore(&pl330
->lock
, flags
);
1622 static void pl330_dotask(unsigned long data
)
1624 struct pl330_dmac
*pl330
= (struct pl330_dmac
*) data
;
1625 struct pl330_info
*pi
= pl330
->pinfo
;
1626 unsigned long flags
;
1629 spin_lock_irqsave(&pl330
->lock
, flags
);
1631 /* The DMAC itself gone nuts */
1632 if (pl330
->dmac_tbd
.reset_dmac
) {
1633 pl330
->state
= DYING
;
1634 /* Reset the manager too */
1635 pl330
->dmac_tbd
.reset_mngr
= true;
1636 /* Clear the reset flag */
1637 pl330
->dmac_tbd
.reset_dmac
= false;
1640 if (pl330
->dmac_tbd
.reset_mngr
) {
1641 _stop(pl330
->manager
);
1642 /* Reset all channels */
1643 pl330
->dmac_tbd
.reset_chan
= (1 << pi
->pcfg
.num_chan
) - 1;
1644 /* Clear the reset flag */
1645 pl330
->dmac_tbd
.reset_mngr
= false;
1648 for (i
= 0; i
< pi
->pcfg
.num_chan
; i
++) {
1650 if (pl330
->dmac_tbd
.reset_chan
& (1 << i
)) {
1651 struct pl330_thread
*thrd
= &pl330
->channels
[i
];
1652 void __iomem
*regs
= pi
->base
;
1653 enum pl330_op_err err
;
1657 if (readl(regs
+ FSC
) & (1 << thrd
->id
))
1658 err
= PL330_ERR_FAIL
;
1660 err
= PL330_ERR_ABORT
;
1662 spin_unlock_irqrestore(&pl330
->lock
, flags
);
1664 _callback(thrd
->req
[1 - thrd
->lstenq
].r
, err
);
1665 _callback(thrd
->req
[thrd
->lstenq
].r
, err
);
1667 spin_lock_irqsave(&pl330
->lock
, flags
);
1669 thrd
->req
[0].r
= NULL
;
1670 thrd
->req
[1].r
= NULL
;
1674 /* Clear the reset flag */
1675 pl330
->dmac_tbd
.reset_chan
&= ~(1 << i
);
1679 spin_unlock_irqrestore(&pl330
->lock
, flags
);
1684 /* Returns 1 if state was updated, 0 otherwise */
1685 static int pl330_update(const struct pl330_info
*pi
)
1687 struct _pl330_req
*rqdone
;
1688 struct pl330_dmac
*pl330
;
1689 unsigned long flags
;
1692 int id
, ev
, ret
= 0;
1694 if (!pi
|| !pi
->pl330_data
)
1698 pl330
= pi
->pl330_data
;
1700 spin_lock_irqsave(&pl330
->lock
, flags
);
1702 val
= readl(regs
+ FSM
) & 0x1;
1704 pl330
->dmac_tbd
.reset_mngr
= true;
1706 pl330
->dmac_tbd
.reset_mngr
= false;
1708 val
= readl(regs
+ FSC
) & ((1 << pi
->pcfg
.num_chan
) - 1);
1709 pl330
->dmac_tbd
.reset_chan
|= val
;
1712 while (i
< pi
->pcfg
.num_chan
) {
1713 if (val
& (1 << i
)) {
1715 "Reset Channel-%d\t CS-%x FTC-%x\n",
1716 i
, readl(regs
+ CS(i
)),
1717 readl(regs
+ FTC(i
)));
1718 _stop(&pl330
->channels
[i
]);
1724 /* Check which event happened i.e, thread notified */
1725 val
= readl(regs
+ ES
);
1726 if (pi
->pcfg
.num_events
< 32
1727 && val
& ~((1 << pi
->pcfg
.num_events
) - 1)) {
1728 pl330
->dmac_tbd
.reset_dmac
= true;
1729 dev_err(pi
->dev
, "%s:%d Unexpected!\n", __func__
, __LINE__
);
1734 for (ev
= 0; ev
< pi
->pcfg
.num_events
; ev
++) {
1735 if (val
& (1 << ev
)) { /* Event occurred */
1736 struct pl330_thread
*thrd
;
1737 u32 inten
= readl(regs
+ INTEN
);
1740 /* Clear the event */
1741 if (inten
& (1 << ev
))
1742 writel(1 << ev
, regs
+ INTCLR
);
1746 id
= pl330
->events
[ev
];
1748 thrd
= &pl330
->channels
[id
];
1750 active
= thrd
->req_running
;
1751 if (active
== -1) /* Aborted */
1754 rqdone
= &thrd
->req
[active
];
1755 mark_free(thrd
, active
);
1757 /* Get going again ASAP */
1760 /* For now, just make a list of callbacks to be done */
1761 list_add_tail(&rqdone
->rqd
, &pl330
->req_done
);
1765 /* Now that we are in no hurry, do the callbacks */
1766 while (!list_empty(&pl330
->req_done
)) {
1767 struct pl330_req
*r
;
1769 rqdone
= container_of(pl330
->req_done
.next
,
1770 struct _pl330_req
, rqd
);
1772 list_del_init(&rqdone
->rqd
);
1774 /* Detach the req */
1778 spin_unlock_irqrestore(&pl330
->lock
, flags
);
1779 _callback(r
, PL330_ERR_NONE
);
1780 spin_lock_irqsave(&pl330
->lock
, flags
);
1784 spin_unlock_irqrestore(&pl330
->lock
, flags
);
1786 if (pl330
->dmac_tbd
.reset_dmac
1787 || pl330
->dmac_tbd
.reset_mngr
1788 || pl330
->dmac_tbd
.reset_chan
) {
1790 tasklet_schedule(&pl330
->tasks
);
1796 static int pl330_chan_ctrl(void *ch_id
, enum pl330_chan_op op
)
1798 struct pl330_thread
*thrd
= ch_id
;
1799 struct pl330_dmac
*pl330
;
1800 unsigned long flags
;
1801 int ret
= 0, active
;
1803 if (!thrd
|| thrd
->free
|| thrd
->dmac
->state
== DYING
)
1807 active
= thrd
->req_running
;
1809 spin_lock_irqsave(&pl330
->lock
, flags
);
1812 case PL330_OP_FLUSH
:
1813 /* Make sure the channel is stopped */
1816 thrd
->req
[0].r
= NULL
;
1817 thrd
->req
[1].r
= NULL
;
1822 case PL330_OP_ABORT
:
1823 /* Make sure the channel is stopped */
1826 /* ABORT is only for the active req */
1830 thrd
->req
[active
].r
= NULL
;
1831 mark_free(thrd
, active
);
1833 /* Start the next */
1834 case PL330_OP_START
:
1835 if ((active
== -1) && !_start(thrd
))
1843 spin_unlock_irqrestore(&pl330
->lock
, flags
);
1847 /* Reserve an event */
1848 static inline int _alloc_event(struct pl330_thread
*thrd
)
1850 struct pl330_dmac
*pl330
= thrd
->dmac
;
1851 struct pl330_info
*pi
= pl330
->pinfo
;
1854 for (ev
= 0; ev
< pi
->pcfg
.num_events
; ev
++)
1855 if (pl330
->events
[ev
] == -1) {
1856 pl330
->events
[ev
] = thrd
->id
;
1863 static bool _chan_ns(const struct pl330_info
*pi
, int i
)
1865 return pi
->pcfg
.irq_ns
& (1 << i
);
1868 /* Upon success, returns IdentityToken for the
1869 * allocated channel, NULL otherwise.
1871 static void *pl330_request_channel(const struct pl330_info
*pi
)
1873 struct pl330_thread
*thrd
= NULL
;
1874 struct pl330_dmac
*pl330
;
1875 unsigned long flags
;
1878 if (!pi
|| !pi
->pl330_data
)
1881 pl330
= pi
->pl330_data
;
1883 if (pl330
->state
== DYING
)
1886 chans
= pi
->pcfg
.num_chan
;
1888 spin_lock_irqsave(&pl330
->lock
, flags
);
1890 for (i
= 0; i
< chans
; i
++) {
1891 thrd
= &pl330
->channels
[i
];
1892 if ((thrd
->free
) && (!_manager_ns(thrd
) ||
1894 thrd
->ev
= _alloc_event(thrd
);
1895 if (thrd
->ev
>= 0) {
1898 thrd
->req
[0].r
= NULL
;
1900 thrd
->req
[1].r
= NULL
;
1908 spin_unlock_irqrestore(&pl330
->lock
, flags
);
1913 /* Release an event */
1914 static inline void _free_event(struct pl330_thread
*thrd
, int ev
)
1916 struct pl330_dmac
*pl330
= thrd
->dmac
;
1917 struct pl330_info
*pi
= pl330
->pinfo
;
1919 /* If the event is valid and was held by the thread */
1920 if (ev
>= 0 && ev
< pi
->pcfg
.num_events
1921 && pl330
->events
[ev
] == thrd
->id
)
1922 pl330
->events
[ev
] = -1;
1925 static void pl330_release_channel(void *ch_id
)
1927 struct pl330_thread
*thrd
= ch_id
;
1928 struct pl330_dmac
*pl330
;
1929 unsigned long flags
;
1931 if (!thrd
|| thrd
->free
)
1936 _callback(thrd
->req
[1 - thrd
->lstenq
].r
, PL330_ERR_ABORT
);
1937 _callback(thrd
->req
[thrd
->lstenq
].r
, PL330_ERR_ABORT
);
1941 spin_lock_irqsave(&pl330
->lock
, flags
);
1942 _free_event(thrd
, thrd
->ev
);
1944 spin_unlock_irqrestore(&pl330
->lock
, flags
);
1947 /* Initialize the structure for PL330 configuration, that can be used
1948 * by the client driver the make best use of the DMAC
1950 static void read_dmac_config(struct pl330_info
*pi
)
1952 void __iomem
*regs
= pi
->base
;
1955 val
= readl(regs
+ CRD
) >> CRD_DATA_WIDTH_SHIFT
;
1956 val
&= CRD_DATA_WIDTH_MASK
;
1957 pi
->pcfg
.data_bus_width
= 8 * (1 << val
);
1959 val
= readl(regs
+ CRD
) >> CRD_DATA_BUFF_SHIFT
;
1960 val
&= CRD_DATA_BUFF_MASK
;
1961 pi
->pcfg
.data_buf_dep
= val
+ 1;
1963 val
= readl(regs
+ CR0
) >> CR0_NUM_CHANS_SHIFT
;
1964 val
&= CR0_NUM_CHANS_MASK
;
1966 pi
->pcfg
.num_chan
= val
;
1968 val
= readl(regs
+ CR0
);
1969 if (val
& CR0_PERIPH_REQ_SET
) {
1970 val
= (val
>> CR0_NUM_PERIPH_SHIFT
) & CR0_NUM_PERIPH_MASK
;
1972 pi
->pcfg
.num_peri
= val
;
1973 pi
->pcfg
.peri_ns
= readl(regs
+ CR4
);
1975 pi
->pcfg
.num_peri
= 0;
1978 val
= readl(regs
+ CR0
);
1979 if (val
& CR0_BOOT_MAN_NS
)
1980 pi
->pcfg
.mode
|= DMAC_MODE_NS
;
1982 pi
->pcfg
.mode
&= ~DMAC_MODE_NS
;
1984 val
= readl(regs
+ CR0
) >> CR0_NUM_EVENTS_SHIFT
;
1985 val
&= CR0_NUM_EVENTS_MASK
;
1987 pi
->pcfg
.num_events
= val
;
1989 pi
->pcfg
.irq_ns
= readl(regs
+ CR3
);
1991 pi
->pcfg
.periph_id
= get_id(pi
, PERIPH_ID
);
1992 pi
->pcfg
.pcell_id
= get_id(pi
, PCELL_ID
);
1995 static inline void _reset_thread(struct pl330_thread
*thrd
)
1997 struct pl330_dmac
*pl330
= thrd
->dmac
;
1998 struct pl330_info
*pi
= pl330
->pinfo
;
2000 thrd
->req
[0].mc_cpu
= pl330
->mcode_cpu
2001 + (thrd
->id
* pi
->mcbufsz
);
2002 thrd
->req
[0].mc_bus
= pl330
->mcode_bus
2003 + (thrd
->id
* pi
->mcbufsz
);
2004 thrd
->req
[0].r
= NULL
;
2007 thrd
->req
[1].mc_cpu
= thrd
->req
[0].mc_cpu
2009 thrd
->req
[1].mc_bus
= thrd
->req
[0].mc_bus
2011 thrd
->req
[1].r
= NULL
;
2015 static int dmac_alloc_threads(struct pl330_dmac
*pl330
)
2017 struct pl330_info
*pi
= pl330
->pinfo
;
2018 int chans
= pi
->pcfg
.num_chan
;
2019 struct pl330_thread
*thrd
;
2022 /* Allocate 1 Manager and 'chans' Channel threads */
2023 pl330
->channels
= kzalloc((1 + chans
) * sizeof(*thrd
),
2025 if (!pl330
->channels
)
2028 /* Init Channel threads */
2029 for (i
= 0; i
< chans
; i
++) {
2030 thrd
= &pl330
->channels
[i
];
2033 _reset_thread(thrd
);
2037 /* MANAGER is indexed at the end */
2038 thrd
= &pl330
->channels
[chans
];
2042 pl330
->manager
= thrd
;
2047 static int dmac_alloc_resources(struct pl330_dmac
*pl330
)
2049 struct pl330_info
*pi
= pl330
->pinfo
;
2050 int chans
= pi
->pcfg
.num_chan
;
2054 * Alloc MicroCode buffer for 'chans' Channel threads.
2055 * A channel's buffer offset is (Channel_Id * MCODE_BUFF_PERCHAN)
2057 pl330
->mcode_cpu
= dma_alloc_coherent(pi
->dev
,
2058 chans
* pi
->mcbufsz
,
2059 &pl330
->mcode_bus
, GFP_KERNEL
);
2060 if (!pl330
->mcode_cpu
) {
2061 dev_err(pi
->dev
, "%s:%d Can't allocate memory!\n",
2062 __func__
, __LINE__
);
2066 ret
= dmac_alloc_threads(pl330
);
2068 dev_err(pi
->dev
, "%s:%d Can't to create channels for DMAC!\n",
2069 __func__
, __LINE__
);
2070 dma_free_coherent(pi
->dev
,
2071 chans
* pi
->mcbufsz
,
2072 pl330
->mcode_cpu
, pl330
->mcode_bus
);
2079 static int pl330_add(struct pl330_info
*pi
)
2081 struct pl330_dmac
*pl330
;
2085 if (!pi
|| !pi
->dev
)
2088 /* If already added */
2093 * If the SoC can perform reset on the DMAC, then do it
2094 * before reading its configuration.
2101 /* Check if we can handle this DMAC */
2102 if ((get_id(pi
, PERIPH_ID
) & 0xfffff) != PERIPH_ID_VAL
2103 || get_id(pi
, PCELL_ID
) != PCELL_ID_VAL
) {
2104 dev_err(pi
->dev
, "PERIPH_ID 0x%x, PCELL_ID 0x%x !\n",
2105 get_id(pi
, PERIPH_ID
), get_id(pi
, PCELL_ID
));
2109 /* Read the configuration of the DMAC */
2110 read_dmac_config(pi
);
2112 if (pi
->pcfg
.num_events
== 0) {
2113 dev_err(pi
->dev
, "%s:%d Can't work without events!\n",
2114 __func__
, __LINE__
);
2118 pl330
= kzalloc(sizeof(*pl330
), GFP_KERNEL
);
2120 dev_err(pi
->dev
, "%s:%d Can't allocate memory!\n",
2121 __func__
, __LINE__
);
2125 /* Assign the info structure and private data */
2127 pi
->pl330_data
= pl330
;
2129 spin_lock_init(&pl330
->lock
);
2131 INIT_LIST_HEAD(&pl330
->req_done
);
2133 /* Use default MC buffer size if not provided */
2135 pi
->mcbufsz
= MCODE_BUFF_PER_REQ
* 2;
2137 /* Mark all events as free */
2138 for (i
= 0; i
< pi
->pcfg
.num_events
; i
++)
2139 pl330
->events
[i
] = -1;
2141 /* Allocate resources needed by the DMAC */
2142 ret
= dmac_alloc_resources(pl330
);
2144 dev_err(pi
->dev
, "Unable to create channels for DMAC\n");
2149 tasklet_init(&pl330
->tasks
, pl330_dotask
, (unsigned long) pl330
);
2151 pl330
->state
= INIT
;
2156 static int dmac_free_threads(struct pl330_dmac
*pl330
)
2158 struct pl330_info
*pi
= pl330
->pinfo
;
2159 int chans
= pi
->pcfg
.num_chan
;
2160 struct pl330_thread
*thrd
;
2163 /* Release Channel threads */
2164 for (i
= 0; i
< chans
; i
++) {
2165 thrd
= &pl330
->channels
[i
];
2166 pl330_release_channel((void *)thrd
);
2170 kfree(pl330
->channels
);
2175 static void dmac_free_resources(struct pl330_dmac
*pl330
)
2177 struct pl330_info
*pi
= pl330
->pinfo
;
2178 int chans
= pi
->pcfg
.num_chan
;
2180 dmac_free_threads(pl330
);
2182 dma_free_coherent(pi
->dev
, chans
* pi
->mcbufsz
,
2183 pl330
->mcode_cpu
, pl330
->mcode_bus
);
2186 static void pl330_del(struct pl330_info
*pi
)
2188 struct pl330_dmac
*pl330
;
2190 if (!pi
|| !pi
->pl330_data
)
2193 pl330
= pi
->pl330_data
;
2195 pl330
->state
= UNINIT
;
2197 tasklet_kill(&pl330
->tasks
);
2199 /* Free DMAC resources */
2200 dmac_free_resources(pl330
);
2203 pi
->pl330_data
= NULL
;
2206 /* forward declaration */
2207 static struct amba_driver pl330_driver
;
2209 static inline struct dma_pl330_chan
*
2210 to_pchan(struct dma_chan
*ch
)
2215 return container_of(ch
, struct dma_pl330_chan
, chan
);
2218 static inline struct dma_pl330_desc
*
2219 to_desc(struct dma_async_tx_descriptor
*tx
)
2221 return container_of(tx
, struct dma_pl330_desc
, txd
);
2224 static inline void free_desc_list(struct list_head
*list
)
2226 struct dma_pl330_dmac
*pdmac
;
2227 struct dma_pl330_desc
*desc
;
2228 struct dma_pl330_chan
*pch
= NULL
;
2229 unsigned long flags
;
2231 /* Finish off the work list */
2232 list_for_each_entry(desc
, list
, node
) {
2233 dma_async_tx_callback callback
;
2236 /* All desc in a list belong to same channel */
2238 callback
= desc
->txd
.callback
;
2239 param
= desc
->txd
.callback_param
;
2247 /* pch will be unset if list was empty */
2253 spin_lock_irqsave(&pdmac
->pool_lock
, flags
);
2254 list_splice_tail_init(list
, &pdmac
->desc_pool
);
2255 spin_unlock_irqrestore(&pdmac
->pool_lock
, flags
);
2258 static inline void handle_cyclic_desc_list(struct list_head
*list
)
2260 struct dma_pl330_desc
*desc
;
2261 struct dma_pl330_chan
*pch
= NULL
;
2262 unsigned long flags
;
2264 list_for_each_entry(desc
, list
, node
) {
2265 dma_async_tx_callback callback
;
2267 /* Change status to reload it */
2268 desc
->status
= PREP
;
2270 callback
= desc
->txd
.callback
;
2272 callback(desc
->txd
.callback_param
);
2275 /* pch will be unset if list was empty */
2279 spin_lock_irqsave(&pch
->lock
, flags
);
2280 list_splice_tail_init(list
, &pch
->work_list
);
2281 spin_unlock_irqrestore(&pch
->lock
, flags
);
2284 static inline void fill_queue(struct dma_pl330_chan
*pch
)
2286 struct dma_pl330_desc
*desc
;
2289 list_for_each_entry(desc
, &pch
->work_list
, node
) {
2291 /* If already submitted */
2292 if (desc
->status
== BUSY
)
2295 ret
= pl330_submit_req(pch
->pl330_chid
,
2298 desc
->status
= BUSY
;
2300 } else if (ret
== -EAGAIN
) {
2301 /* QFull or DMAC Dying */
2304 /* Unacceptable request */
2305 desc
->status
= DONE
;
2306 dev_err(pch
->dmac
->pif
.dev
, "%s:%d Bad Desc(%d)\n",
2307 __func__
, __LINE__
, desc
->txd
.cookie
);
2308 tasklet_schedule(&pch
->task
);
2313 static void pl330_tasklet(unsigned long data
)
2315 struct dma_pl330_chan
*pch
= (struct dma_pl330_chan
*)data
;
2316 struct dma_pl330_desc
*desc
, *_dt
;
2317 unsigned long flags
;
2320 spin_lock_irqsave(&pch
->lock
, flags
);
2322 /* Pick up ripe tomatoes */
2323 list_for_each_entry_safe(desc
, _dt
, &pch
->work_list
, node
)
2324 if (desc
->status
== DONE
) {
2325 dma_cookie_complete(&desc
->txd
);
2326 list_move_tail(&desc
->node
, &list
);
2329 /* Try to submit a req imm. next to the last completed cookie */
2332 /* Make sure the PL330 Channel thread is active */
2333 pl330_chan_ctrl(pch
->pl330_chid
, PL330_OP_START
);
2335 spin_unlock_irqrestore(&pch
->lock
, flags
);
2338 handle_cyclic_desc_list(&list
);
2340 free_desc_list(&list
);
2343 static void dma_pl330_rqcb(void *token
, enum pl330_op_err err
)
2345 struct dma_pl330_desc
*desc
= token
;
2346 struct dma_pl330_chan
*pch
= desc
->pchan
;
2347 unsigned long flags
;
2349 /* If desc aborted */
2353 spin_lock_irqsave(&pch
->lock
, flags
);
2355 desc
->status
= DONE
;
2357 spin_unlock_irqrestore(&pch
->lock
, flags
);
2359 tasklet_schedule(&pch
->task
);
2362 bool pl330_filter(struct dma_chan
*chan
, void *param
)
2366 if (chan
->device
->dev
->driver
!= &pl330_driver
.drv
)
2370 if (chan
->device
->dev
->of_node
) {
2371 const __be32
*prop_value
;
2373 struct device_node
*node
;
2375 prop_value
= ((struct property
*)param
)->value
;
2376 phandle
= be32_to_cpup(prop_value
++);
2377 node
= of_find_node_by_phandle(phandle
);
2378 return ((chan
->private == node
) &&
2379 (chan
->chan_id
== be32_to_cpup(prop_value
)));
2383 peri_id
= chan
->private;
2384 return *peri_id
== (unsigned)param
;
2386 EXPORT_SYMBOL(pl330_filter
);
2388 static int pl330_alloc_chan_resources(struct dma_chan
*chan
)
2390 struct dma_pl330_chan
*pch
= to_pchan(chan
);
2391 struct dma_pl330_dmac
*pdmac
= pch
->dmac
;
2392 unsigned long flags
;
2394 spin_lock_irqsave(&pch
->lock
, flags
);
2396 dma_cookie_init(chan
);
2397 pch
->cyclic
= false;
2399 pch
->pl330_chid
= pl330_request_channel(&pdmac
->pif
);
2400 if (!pch
->pl330_chid
) {
2401 spin_unlock_irqrestore(&pch
->lock
, flags
);
2405 tasklet_init(&pch
->task
, pl330_tasklet
, (unsigned long) pch
);
2407 spin_unlock_irqrestore(&pch
->lock
, flags
);
2412 static int pl330_control(struct dma_chan
*chan
, enum dma_ctrl_cmd cmd
, unsigned long arg
)
2414 struct dma_pl330_chan
*pch
= to_pchan(chan
);
2415 struct dma_pl330_desc
*desc
, *_dt
;
2416 unsigned long flags
;
2417 struct dma_pl330_dmac
*pdmac
= pch
->dmac
;
2418 struct dma_slave_config
*slave_config
;
2422 case DMA_TERMINATE_ALL
:
2423 spin_lock_irqsave(&pch
->lock
, flags
);
2425 /* FLUSH the PL330 Channel thread */
2426 pl330_chan_ctrl(pch
->pl330_chid
, PL330_OP_FLUSH
);
2428 /* Mark all desc done */
2429 list_for_each_entry_safe(desc
, _dt
, &pch
->work_list
, node
) {
2430 desc
->status
= DONE
;
2431 list_move_tail(&desc
->node
, &list
);
2434 list_splice_tail_init(&list
, &pdmac
->desc_pool
);
2435 spin_unlock_irqrestore(&pch
->lock
, flags
);
2437 case DMA_SLAVE_CONFIG
:
2438 slave_config
= (struct dma_slave_config
*)arg
;
2440 if (slave_config
->direction
== DMA_MEM_TO_DEV
) {
2441 if (slave_config
->dst_addr
)
2442 pch
->fifo_addr
= slave_config
->dst_addr
;
2443 if (slave_config
->dst_addr_width
)
2444 pch
->burst_sz
= __ffs(slave_config
->dst_addr_width
);
2445 if (slave_config
->dst_maxburst
)
2446 pch
->burst_len
= slave_config
->dst_maxburst
;
2447 } else if (slave_config
->direction
== DMA_DEV_TO_MEM
) {
2448 if (slave_config
->src_addr
)
2449 pch
->fifo_addr
= slave_config
->src_addr
;
2450 if (slave_config
->src_addr_width
)
2451 pch
->burst_sz
= __ffs(slave_config
->src_addr_width
);
2452 if (slave_config
->src_maxburst
)
2453 pch
->burst_len
= slave_config
->src_maxburst
;
2457 dev_err(pch
->dmac
->pif
.dev
, "Not supported command.\n");
2464 static void pl330_free_chan_resources(struct dma_chan
*chan
)
2466 struct dma_pl330_chan
*pch
= to_pchan(chan
);
2467 unsigned long flags
;
2469 spin_lock_irqsave(&pch
->lock
, flags
);
2471 tasklet_kill(&pch
->task
);
2473 pl330_release_channel(pch
->pl330_chid
);
2474 pch
->pl330_chid
= NULL
;
2477 list_splice_tail_init(&pch
->work_list
, &pch
->dmac
->desc_pool
);
2479 spin_unlock_irqrestore(&pch
->lock
, flags
);
2482 static enum dma_status
2483 pl330_tx_status(struct dma_chan
*chan
, dma_cookie_t cookie
,
2484 struct dma_tx_state
*txstate
)
2486 return dma_cookie_status(chan
, cookie
, txstate
);
2489 static void pl330_issue_pending(struct dma_chan
*chan
)
2491 pl330_tasklet((unsigned long) to_pchan(chan
));
2495 * We returned the last one of the circular list of descriptor(s)
2496 * from prep_xxx, so the argument to submit corresponds to the last
2497 * descriptor of the list.
2499 static dma_cookie_t
pl330_tx_submit(struct dma_async_tx_descriptor
*tx
)
2501 struct dma_pl330_desc
*desc
, *last
= to_desc(tx
);
2502 struct dma_pl330_chan
*pch
= to_pchan(tx
->chan
);
2503 dma_cookie_t cookie
;
2504 unsigned long flags
;
2506 spin_lock_irqsave(&pch
->lock
, flags
);
2508 /* Assign cookies to all nodes */
2509 while (!list_empty(&last
->node
)) {
2510 desc
= list_entry(last
->node
.next
, struct dma_pl330_desc
, node
);
2512 dma_cookie_assign(&desc
->txd
);
2514 list_move_tail(&desc
->node
, &pch
->work_list
);
2517 cookie
= dma_cookie_assign(&last
->txd
);
2518 list_add_tail(&last
->node
, &pch
->work_list
);
2519 spin_unlock_irqrestore(&pch
->lock
, flags
);
2524 static inline void _init_desc(struct dma_pl330_desc
*desc
)
2527 desc
->req
.x
= &desc
->px
;
2528 desc
->req
.token
= desc
;
2529 desc
->rqcfg
.swap
= SWAP_NO
;
2530 desc
->rqcfg
.privileged
= 0;
2531 desc
->rqcfg
.insnaccess
= 0;
2532 desc
->rqcfg
.scctl
= SCCTRL0
;
2533 desc
->rqcfg
.dcctl
= DCCTRL0
;
2534 desc
->req
.cfg
= &desc
->rqcfg
;
2535 desc
->req
.xfer_cb
= dma_pl330_rqcb
;
2536 desc
->txd
.tx_submit
= pl330_tx_submit
;
2538 INIT_LIST_HEAD(&desc
->node
);
2541 /* Returns the number of descriptors added to the DMAC pool */
2542 int add_desc(struct dma_pl330_dmac
*pdmac
, gfp_t flg
, int count
)
2544 struct dma_pl330_desc
*desc
;
2545 unsigned long flags
;
2551 desc
= kmalloc(count
* sizeof(*desc
), flg
);
2555 spin_lock_irqsave(&pdmac
->pool_lock
, flags
);
2557 for (i
= 0; i
< count
; i
++) {
2558 _init_desc(&desc
[i
]);
2559 list_add_tail(&desc
[i
].node
, &pdmac
->desc_pool
);
2562 spin_unlock_irqrestore(&pdmac
->pool_lock
, flags
);
2567 static struct dma_pl330_desc
*
2568 pluck_desc(struct dma_pl330_dmac
*pdmac
)
2570 struct dma_pl330_desc
*desc
= NULL
;
2571 unsigned long flags
;
2576 spin_lock_irqsave(&pdmac
->pool_lock
, flags
);
2578 if (!list_empty(&pdmac
->desc_pool
)) {
2579 desc
= list_entry(pdmac
->desc_pool
.next
,
2580 struct dma_pl330_desc
, node
);
2582 list_del_init(&desc
->node
);
2584 desc
->status
= PREP
;
2585 desc
->txd
.callback
= NULL
;
2588 spin_unlock_irqrestore(&pdmac
->pool_lock
, flags
);
2593 static struct dma_pl330_desc
*pl330_get_desc(struct dma_pl330_chan
*pch
)
2595 struct dma_pl330_dmac
*pdmac
= pch
->dmac
;
2596 u8
*peri_id
= pch
->chan
.private;
2597 struct dma_pl330_desc
*desc
;
2599 /* Pluck one desc from the pool of DMAC */
2600 desc
= pluck_desc(pdmac
);
2602 /* If the DMAC pool is empty, alloc new */
2604 if (!add_desc(pdmac
, GFP_ATOMIC
, 1))
2608 desc
= pluck_desc(pdmac
);
2610 dev_err(pch
->dmac
->pif
.dev
,
2611 "%s:%d ALERT!\n", __func__
, __LINE__
);
2616 /* Initialize the descriptor */
2618 desc
->txd
.cookie
= 0;
2619 async_tx_ack(&desc
->txd
);
2621 desc
->req
.peri
= peri_id
? pch
->chan
.chan_id
: 0;
2622 desc
->rqcfg
.pcfg
= &pch
->dmac
->pif
.pcfg
;
2624 dma_async_tx_descriptor_init(&desc
->txd
, &pch
->chan
);
2629 static inline void fill_px(struct pl330_xfer
*px
,
2630 dma_addr_t dst
, dma_addr_t src
, size_t len
)
2638 static struct dma_pl330_desc
*
2639 __pl330_prep_dma_memcpy(struct dma_pl330_chan
*pch
, dma_addr_t dst
,
2640 dma_addr_t src
, size_t len
)
2642 struct dma_pl330_desc
*desc
= pl330_get_desc(pch
);
2645 dev_err(pch
->dmac
->pif
.dev
, "%s:%d Unable to fetch desc\n",
2646 __func__
, __LINE__
);
2651 * Ideally we should lookout for reqs bigger than
2652 * those that can be programmed with 256 bytes of
2653 * MC buffer, but considering a req size is seldom
2654 * going to be word-unaligned and more than 200MB,
2656 * Also, should the limit is reached we'd rather
2657 * have the platform increase MC buffer size than
2658 * complicating this API driver.
2660 fill_px(&desc
->px
, dst
, src
, len
);
2665 /* Call after fixing burst size */
2666 static inline int get_burst_len(struct dma_pl330_desc
*desc
, size_t len
)
2668 struct dma_pl330_chan
*pch
= desc
->pchan
;
2669 struct pl330_info
*pi
= &pch
->dmac
->pif
;
2672 burst_len
= pi
->pcfg
.data_bus_width
/ 8;
2673 burst_len
*= pi
->pcfg
.data_buf_dep
;
2674 burst_len
>>= desc
->rqcfg
.brst_size
;
2676 /* src/dst_burst_len can't be more than 16 */
2680 while (burst_len
> 1) {
2681 if (!(len
% (burst_len
<< desc
->rqcfg
.brst_size
)))
2689 static struct dma_async_tx_descriptor
*pl330_prep_dma_cyclic(
2690 struct dma_chan
*chan
, dma_addr_t dma_addr
, size_t len
,
2691 size_t period_len
, enum dma_transfer_direction direction
,
2694 struct dma_pl330_desc
*desc
;
2695 struct dma_pl330_chan
*pch
= to_pchan(chan
);
2699 desc
= pl330_get_desc(pch
);
2701 dev_err(pch
->dmac
->pif
.dev
, "%s:%d Unable to fetch desc\n",
2702 __func__
, __LINE__
);
2706 switch (direction
) {
2707 case DMA_MEM_TO_DEV
:
2708 desc
->rqcfg
.src_inc
= 1;
2709 desc
->rqcfg
.dst_inc
= 0;
2710 desc
->req
.rqtype
= MEMTODEV
;
2712 dst
= pch
->fifo_addr
;
2714 case DMA_DEV_TO_MEM
:
2715 desc
->rqcfg
.src_inc
= 0;
2716 desc
->rqcfg
.dst_inc
= 1;
2717 desc
->req
.rqtype
= DEVTOMEM
;
2718 src
= pch
->fifo_addr
;
2722 dev_err(pch
->dmac
->pif
.dev
, "%s:%d Invalid dma direction\n",
2723 __func__
, __LINE__
);
2727 desc
->rqcfg
.brst_size
= pch
->burst_sz
;
2728 desc
->rqcfg
.brst_len
= 1;
2732 fill_px(&desc
->px
, dst
, src
, period_len
);
2737 static struct dma_async_tx_descriptor
*
2738 pl330_prep_dma_memcpy(struct dma_chan
*chan
, dma_addr_t dst
,
2739 dma_addr_t src
, size_t len
, unsigned long flags
)
2741 struct dma_pl330_desc
*desc
;
2742 struct dma_pl330_chan
*pch
= to_pchan(chan
);
2743 struct pl330_info
*pi
;
2746 if (unlikely(!pch
|| !len
))
2749 pi
= &pch
->dmac
->pif
;
2751 desc
= __pl330_prep_dma_memcpy(pch
, dst
, src
, len
);
2755 desc
->rqcfg
.src_inc
= 1;
2756 desc
->rqcfg
.dst_inc
= 1;
2757 desc
->req
.rqtype
= MEMTOMEM
;
2759 /* Select max possible burst size */
2760 burst
= pi
->pcfg
.data_bus_width
/ 8;
2768 desc
->rqcfg
.brst_size
= 0;
2769 while (burst
!= (1 << desc
->rqcfg
.brst_size
))
2770 desc
->rqcfg
.brst_size
++;
2772 desc
->rqcfg
.brst_len
= get_burst_len(desc
, len
);
2774 desc
->txd
.flags
= flags
;
2779 static struct dma_async_tx_descriptor
*
2780 pl330_prep_slave_sg(struct dma_chan
*chan
, struct scatterlist
*sgl
,
2781 unsigned int sg_len
, enum dma_transfer_direction direction
,
2782 unsigned long flg
, void *context
)
2784 struct dma_pl330_desc
*first
, *desc
= NULL
;
2785 struct dma_pl330_chan
*pch
= to_pchan(chan
);
2786 struct scatterlist
*sg
;
2787 unsigned long flags
;
2791 if (unlikely(!pch
|| !sgl
|| !sg_len
))
2794 addr
= pch
->fifo_addr
;
2798 for_each_sg(sgl
, sg
, sg_len
, i
) {
2800 desc
= pl330_get_desc(pch
);
2802 struct dma_pl330_dmac
*pdmac
= pch
->dmac
;
2804 dev_err(pch
->dmac
->pif
.dev
,
2805 "%s:%d Unable to fetch desc\n",
2806 __func__
, __LINE__
);
2810 spin_lock_irqsave(&pdmac
->pool_lock
, flags
);
2812 while (!list_empty(&first
->node
)) {
2813 desc
= list_entry(first
->node
.next
,
2814 struct dma_pl330_desc
, node
);
2815 list_move_tail(&desc
->node
, &pdmac
->desc_pool
);
2818 list_move_tail(&first
->node
, &pdmac
->desc_pool
);
2820 spin_unlock_irqrestore(&pdmac
->pool_lock
, flags
);
2828 list_add_tail(&desc
->node
, &first
->node
);
2830 if (direction
== DMA_MEM_TO_DEV
) {
2831 desc
->rqcfg
.src_inc
= 1;
2832 desc
->rqcfg
.dst_inc
= 0;
2833 desc
->req
.rqtype
= MEMTODEV
;
2835 addr
, sg_dma_address(sg
), sg_dma_len(sg
));
2837 desc
->rqcfg
.src_inc
= 0;
2838 desc
->rqcfg
.dst_inc
= 1;
2839 desc
->req
.rqtype
= DEVTOMEM
;
2841 sg_dma_address(sg
), addr
, sg_dma_len(sg
));
2844 desc
->rqcfg
.brst_size
= pch
->burst_sz
;
2845 desc
->rqcfg
.brst_len
= 1;
2848 /* Return the last desc in the chain */
2849 desc
->txd
.flags
= flg
;
2853 static irqreturn_t
pl330_irq_handler(int irq
, void *data
)
2855 if (pl330_update(data
))
2861 static int __devinit
2862 pl330_probe(struct amba_device
*adev
, const struct amba_id
*id
)
2864 struct dma_pl330_platdata
*pdat
;
2865 struct dma_pl330_dmac
*pdmac
;
2866 struct dma_pl330_chan
*pch
;
2867 struct pl330_info
*pi
;
2868 struct dma_device
*pd
;
2869 struct resource
*res
;
2873 pdat
= adev
->dev
.platform_data
;
2875 /* Allocate a new DMAC and its Channels */
2876 pdmac
= kzalloc(sizeof(*pdmac
), GFP_KERNEL
);
2878 dev_err(&adev
->dev
, "unable to allocate mem\n");
2883 pi
->dev
= &adev
->dev
;
2884 pi
->pl330_data
= NULL
;
2885 pi
->mcbufsz
= pdat
? pdat
->mcbuf_sz
: 0;
2888 request_mem_region(res
->start
, resource_size(res
), "dma-pl330");
2890 pi
->base
= ioremap(res
->start
, resource_size(res
));
2896 pdmac
->clk
= clk_get(&adev
->dev
, "dma");
2897 if (IS_ERR(pdmac
->clk
)) {
2898 dev_err(&adev
->dev
, "Cannot get operation clock.\n");
2903 amba_set_drvdata(adev
, pdmac
);
2905 #ifndef CONFIG_PM_RUNTIME
2906 /* enable dma clk */
2907 clk_enable(pdmac
->clk
);
2911 ret
= request_irq(irq
, pl330_irq_handler
, 0,
2912 dev_name(&adev
->dev
), pi
);
2916 ret
= pl330_add(pi
);
2920 INIT_LIST_HEAD(&pdmac
->desc_pool
);
2921 spin_lock_init(&pdmac
->pool_lock
);
2923 /* Create a descriptor pool of default size */
2924 if (!add_desc(pdmac
, GFP_KERNEL
, NR_DEFAULT_DESC
))
2925 dev_warn(&adev
->dev
, "unable to allocate desc\n");
2928 INIT_LIST_HEAD(&pd
->channels
);
2930 /* Initialize channel parameters */
2932 num_chan
= max_t(int, pdat
->nr_valid_peri
, pi
->pcfg
.num_chan
);
2934 num_chan
= max_t(int, pi
->pcfg
.num_peri
, pi
->pcfg
.num_chan
);
2936 pdmac
->peripherals
= kzalloc(num_chan
* sizeof(*pch
), GFP_KERNEL
);
2938 for (i
= 0; i
< num_chan
; i
++) {
2939 pch
= &pdmac
->peripherals
[i
];
2940 if (!adev
->dev
.of_node
)
2941 pch
->chan
.private = pdat
? &pdat
->peri_id
[i
] : NULL
;
2943 pch
->chan
.private = adev
->dev
.of_node
;
2945 INIT_LIST_HEAD(&pch
->work_list
);
2946 spin_lock_init(&pch
->lock
);
2947 pch
->pl330_chid
= NULL
;
2948 pch
->chan
.device
= pd
;
2951 /* Add the channel to the DMAC list */
2952 list_add_tail(&pch
->chan
.device_node
, &pd
->channels
);
2955 pd
->dev
= &adev
->dev
;
2957 pd
->cap_mask
= pdat
->cap_mask
;
2959 dma_cap_set(DMA_MEMCPY
, pd
->cap_mask
);
2960 if (pi
->pcfg
.num_peri
) {
2961 dma_cap_set(DMA_SLAVE
, pd
->cap_mask
);
2962 dma_cap_set(DMA_CYCLIC
, pd
->cap_mask
);
2966 pd
->device_alloc_chan_resources
= pl330_alloc_chan_resources
;
2967 pd
->device_free_chan_resources
= pl330_free_chan_resources
;
2968 pd
->device_prep_dma_memcpy
= pl330_prep_dma_memcpy
;
2969 pd
->device_prep_dma_cyclic
= pl330_prep_dma_cyclic
;
2970 pd
->device_tx_status
= pl330_tx_status
;
2971 pd
->device_prep_slave_sg
= pl330_prep_slave_sg
;
2972 pd
->device_control
= pl330_control
;
2973 pd
->device_issue_pending
= pl330_issue_pending
;
2975 ret
= dma_async_device_register(pd
);
2977 dev_err(&adev
->dev
, "unable to register DMAC\n");
2981 dev_info(&adev
->dev
,
2982 "Loaded driver for PL330 DMAC-%d\n", adev
->periphid
);
2983 dev_info(&adev
->dev
,
2984 "\tDBUFF-%ux%ubytes Num_Chans-%u Num_Peri-%u Num_Events-%u\n",
2985 pi
->pcfg
.data_buf_dep
,
2986 pi
->pcfg
.data_bus_width
/ 8, pi
->pcfg
.num_chan
,
2987 pi
->pcfg
.num_peri
, pi
->pcfg
.num_events
);
2996 #ifndef CONFIG_PM_RUNTIME
2997 clk_disable(pdmac
->clk
);
2999 clk_put(pdmac
->clk
);
3003 release_mem_region(res
->start
, resource_size(res
));
3009 static int __devexit
pl330_remove(struct amba_device
*adev
)
3011 struct dma_pl330_dmac
*pdmac
= amba_get_drvdata(adev
);
3012 struct dma_pl330_chan
*pch
, *_p
;
3013 struct pl330_info
*pi
;
3014 struct resource
*res
;
3020 amba_set_drvdata(adev
, NULL
);
3023 list_for_each_entry_safe(pch
, _p
, &pdmac
->ddma
.channels
,
3026 /* Remove the channel */
3027 list_del(&pch
->chan
.device_node
);
3029 /* Flush the channel */
3030 pl330_control(&pch
->chan
, DMA_TERMINATE_ALL
, 0);
3031 pl330_free_chan_resources(&pch
->chan
);
3044 release_mem_region(res
->start
, resource_size(res
));
3046 #ifndef CONFIG_PM_RUNTIME
3047 clk_disable(pdmac
->clk
);
3055 static struct amba_id pl330_ids
[] = {
3063 MODULE_DEVICE_TABLE(amba
, pl330_ids
);
3065 #ifdef CONFIG_PM_RUNTIME
3066 static int pl330_runtime_suspend(struct device
*dev
)
3068 struct dma_pl330_dmac
*pdmac
= dev_get_drvdata(dev
);
3071 dev_err(dev
, "failed to get dmac\n");
3075 clk_disable(pdmac
->clk
);
3080 static int pl330_runtime_resume(struct device
*dev
)
3082 struct dma_pl330_dmac
*pdmac
= dev_get_drvdata(dev
);
3085 dev_err(dev
, "failed to get dmac\n");
3089 clk_enable(pdmac
->clk
);
3094 #define pl330_runtime_suspend NULL
3095 #define pl330_runtime_resume NULL
3096 #endif /* CONFIG_PM_RUNTIME */
3098 static const struct dev_pm_ops pl330_pm_ops
= {
3099 .runtime_suspend
= pl330_runtime_suspend
,
3100 .runtime_resume
= pl330_runtime_resume
,
3103 static struct amba_driver pl330_driver
= {
3105 .owner
= THIS_MODULE
,
3106 .name
= "dma-pl330",
3107 .pm
= &pl330_pm_ops
,
3109 .id_table
= pl330_ids
,
3110 .probe
= pl330_probe
,
3111 .remove
= pl330_remove
,
3114 module_amba_driver(pl330_driver
);
3116 MODULE_AUTHOR("Jaswinder Singh <jassi.brar@samsung.com>");
3117 MODULE_DESCRIPTION("API Driver for PL330 DMAC");
3118 MODULE_LICENSE("GPL");