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