blob: 105e33e3bb335c9a2ed77344c2fb597bba729099 [file] [log] [blame]
Boojin Kimb7d861d2011-12-26 18:49:52 +09001/*
2 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
3 * http://www.samsung.com
Jassi Brarb3040e42010-05-23 20:28:19 -07004 *
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
Boojin Kimb7d861d2011-12-26 18:49:52 +090014#include <linux/kernel.h>
Jassi Brarb3040e42010-05-23 20:28:19 -070015#include <linux/io.h>
16#include <linux/init.h>
17#include <linux/slab.h>
18#include <linux/module.h>
Boojin Kimb7d861d2011-12-26 18:49:52 +090019#include <linux/string.h>
20#include <linux/delay.h>
21#include <linux/interrupt.h>
22#include <linux/dma-mapping.h>
Jassi Brarb3040e42010-05-23 20:28:19 -070023#include <linux/dmaengine.h>
Jassi Brarb3040e42010-05-23 20:28:19 -070024#include <linux/amba/bus.h>
25#include <linux/amba/pl330.h>
Boojin Kim1b9bb712011-09-02 09:44:30 +090026#include <linux/scatterlist.h>
Thomas Abraham93ed5542011-10-24 11:43:31 +020027#include <linux/of.h>
Padmavathi Vennaa80258f2013-02-14 09:10:06 +053028#include <linux/of_dma.h>
Sachin Kamatbcc7fa92013-03-04 14:36:27 +053029#include <linux/err.h>
Jassi Brarb3040e42010-05-23 20:28:19 -070030
Russell King - ARM Linuxd2ebfb32012-03-06 22:34:26 +000031#include "dmaengine.h"
Boojin Kimb7d861d2011-12-26 18:49:52 +090032#define PL330_MAX_CHAN 8
33#define PL330_MAX_IRQS 32
34#define PL330_MAX_PERI 32
35
Lars-Peter Clausenf0564c72014-07-06 20:32:19 +020036enum pl330_cachectrl {
37 CCTRL0, /* Noncacheable and nonbufferable */
38 CCTRL1, /* Bufferable only */
39 CCTRL2, /* Cacheable, but do not allocate */
40 CCTRL3, /* Cacheable and bufferable, but do not allocate */
41 INVALID1, /* AWCACHE = 0x1000 */
42 INVALID2,
43 CCTRL6, /* Cacheable write-through, allocate on writes only */
44 CCTRL7, /* Cacheable write-back, allocate on writes only */
Boojin Kimb7d861d2011-12-26 18:49:52 +090045};
46
47enum pl330_byteswap {
48 SWAP_NO,
49 SWAP_2,
50 SWAP_4,
51 SWAP_8,
52 SWAP_16,
53};
54
Boojin Kimb7d861d2011-12-26 18:49:52 +090055/* Register and Bit field Definitions */
56#define DS 0x0
57#define DS_ST_STOP 0x0
58#define DS_ST_EXEC 0x1
59#define DS_ST_CMISS 0x2
60#define DS_ST_UPDTPC 0x3
61#define DS_ST_WFE 0x4
62#define DS_ST_ATBRR 0x5
63#define DS_ST_QBUSY 0x6
64#define DS_ST_WFP 0x7
65#define DS_ST_KILL 0x8
66#define DS_ST_CMPLT 0x9
67#define DS_ST_FLTCMP 0xe
68#define DS_ST_FAULT 0xf
69
70#define DPC 0x4
71#define INTEN 0x20
72#define ES 0x24
73#define INTSTATUS 0x28
74#define INTCLR 0x2c
75#define FSM 0x30
76#define FSC 0x34
77#define FTM 0x38
78
79#define _FTC 0x40
80#define FTC(n) (_FTC + (n)*0x4)
81
82#define _CS 0x100
83#define CS(n) (_CS + (n)*0x8)
84#define CS_CNS (1 << 21)
85
86#define _CPC 0x104
87#define CPC(n) (_CPC + (n)*0x8)
88
89#define _SA 0x400
90#define SA(n) (_SA + (n)*0x20)
91
92#define _DA 0x404
93#define DA(n) (_DA + (n)*0x20)
94
95#define _CC 0x408
96#define CC(n) (_CC + (n)*0x20)
97
98#define CC_SRCINC (1 << 0)
99#define CC_DSTINC (1 << 14)
100#define CC_SRCPRI (1 << 8)
101#define CC_DSTPRI (1 << 22)
102#define CC_SRCNS (1 << 9)
103#define CC_DSTNS (1 << 23)
104#define CC_SRCIA (1 << 10)
105#define CC_DSTIA (1 << 24)
106#define CC_SRCBRSTLEN_SHFT 4
107#define CC_DSTBRSTLEN_SHFT 18
108#define CC_SRCBRSTSIZE_SHFT 1
109#define CC_DSTBRSTSIZE_SHFT 15
110#define CC_SRCCCTRL_SHFT 11
111#define CC_SRCCCTRL_MASK 0x7
112#define CC_DSTCCTRL_SHFT 25
113#define CC_DRCCCTRL_MASK 0x7
114#define CC_SWAP_SHFT 28
115
116#define _LC0 0x40c
117#define LC0(n) (_LC0 + (n)*0x20)
118
119#define _LC1 0x410
120#define LC1(n) (_LC1 + (n)*0x20)
121
122#define DBGSTATUS 0xd00
123#define DBG_BUSY (1 << 0)
124
125#define DBGCMD 0xd04
126#define DBGINST0 0xd08
127#define DBGINST1 0xd0c
128
129#define CR0 0xe00
130#define CR1 0xe04
131#define CR2 0xe08
132#define CR3 0xe0c
133#define CR4 0xe10
134#define CRD 0xe14
135
136#define PERIPH_ID 0xfe0
Boojin Kim3ecf51a2011-12-26 18:55:47 +0900137#define PERIPH_REV_SHIFT 20
138#define PERIPH_REV_MASK 0xf
139#define PERIPH_REV_R0P0 0
140#define PERIPH_REV_R1P0 1
141#define PERIPH_REV_R1P1 2
Boojin Kimb7d861d2011-12-26 18:49:52 +0900142
143#define CR0_PERIPH_REQ_SET (1 << 0)
144#define CR0_BOOT_EN_SET (1 << 1)
145#define CR0_BOOT_MAN_NS (1 << 2)
146#define CR0_NUM_CHANS_SHIFT 4
147#define CR0_NUM_CHANS_MASK 0x7
148#define CR0_NUM_PERIPH_SHIFT 12
149#define CR0_NUM_PERIPH_MASK 0x1f
150#define CR0_NUM_EVENTS_SHIFT 17
151#define CR0_NUM_EVENTS_MASK 0x1f
152
153#define CR1_ICACHE_LEN_SHIFT 0
154#define CR1_ICACHE_LEN_MASK 0x7
155#define CR1_NUM_ICACHELINES_SHIFT 4
156#define CR1_NUM_ICACHELINES_MASK 0xf
157
158#define CRD_DATA_WIDTH_SHIFT 0
159#define CRD_DATA_WIDTH_MASK 0x7
160#define CRD_WR_CAP_SHIFT 4
161#define CRD_WR_CAP_MASK 0x7
162#define CRD_WR_Q_DEP_SHIFT 8
163#define CRD_WR_Q_DEP_MASK 0xf
164#define CRD_RD_CAP_SHIFT 12
165#define CRD_RD_CAP_MASK 0x7
166#define CRD_RD_Q_DEP_SHIFT 16
167#define CRD_RD_Q_DEP_MASK 0xf
168#define CRD_DATA_BUFF_SHIFT 20
169#define CRD_DATA_BUFF_MASK 0x3ff
170
171#define PART 0x330
172#define DESIGNER 0x41
173#define REVISION 0x0
174#define INTEG_CFG 0x0
175#define PERIPH_ID_VAL ((PART << 0) | (DESIGNER << 12))
176
Boojin Kimb7d861d2011-12-26 18:49:52 +0900177#define PL330_STATE_STOPPED (1 << 0)
178#define PL330_STATE_EXECUTING (1 << 1)
179#define PL330_STATE_WFE (1 << 2)
180#define PL330_STATE_FAULTING (1 << 3)
181#define PL330_STATE_COMPLETING (1 << 4)
182#define PL330_STATE_WFP (1 << 5)
183#define PL330_STATE_KILLING (1 << 6)
184#define PL330_STATE_FAULT_COMPLETING (1 << 7)
185#define PL330_STATE_CACHEMISS (1 << 8)
186#define PL330_STATE_UPDTPC (1 << 9)
187#define PL330_STATE_ATBARRIER (1 << 10)
188#define PL330_STATE_QUEUEBUSY (1 << 11)
189#define PL330_STATE_INVALID (1 << 15)
190
191#define PL330_STABLE_STATES (PL330_STATE_STOPPED | PL330_STATE_EXECUTING \
192 | PL330_STATE_WFE | PL330_STATE_FAULTING)
193
194#define CMD_DMAADDH 0x54
195#define CMD_DMAEND 0x00
196#define CMD_DMAFLUSHP 0x35
197#define CMD_DMAGO 0xa0
198#define CMD_DMALD 0x04
199#define CMD_DMALDP 0x25
200#define CMD_DMALP 0x20
201#define CMD_DMALPEND 0x28
202#define CMD_DMAKILL 0x01
203#define CMD_DMAMOV 0xbc
204#define CMD_DMANOP 0x18
205#define CMD_DMARMB 0x12
206#define CMD_DMASEV 0x34
207#define CMD_DMAST 0x08
208#define CMD_DMASTP 0x29
209#define CMD_DMASTZ 0x0c
210#define CMD_DMAWFE 0x36
211#define CMD_DMAWFP 0x30
212#define CMD_DMAWMB 0x13
213
214#define SZ_DMAADDH 3
215#define SZ_DMAEND 1
216#define SZ_DMAFLUSHP 2
217#define SZ_DMALD 1
218#define SZ_DMALDP 2
219#define SZ_DMALP 2
220#define SZ_DMALPEND 2
221#define SZ_DMAKILL 1
222#define SZ_DMAMOV 6
223#define SZ_DMANOP 1
224#define SZ_DMARMB 1
225#define SZ_DMASEV 2
226#define SZ_DMAST 1
227#define SZ_DMASTP 2
228#define SZ_DMASTZ 1
229#define SZ_DMAWFE 2
230#define SZ_DMAWFP 2
231#define SZ_DMAWMB 1
232#define SZ_DMAGO 6
233
234#define BRST_LEN(ccr) ((((ccr) >> CC_SRCBRSTLEN_SHFT) & 0xf) + 1)
235#define BRST_SIZE(ccr) (1 << (((ccr) >> CC_SRCBRSTSIZE_SHFT) & 0x7))
236
237#define BYTE_TO_BURST(b, ccr) ((b) / BRST_SIZE(ccr) / BRST_LEN(ccr))
238#define BURST_TO_BYTE(c, ccr) ((c) * BRST_SIZE(ccr) * BRST_LEN(ccr))
239
240/*
241 * With 256 bytes, we can do more than 2.5MB and 5MB xfers per req
242 * at 1byte/burst for P<->M and M<->M respectively.
243 * For typical scenario, at 1word/burst, 10MB and 20MB xfers per req
244 * should be enough for P<->M and M<->M respectively.
245 */
246#define MCODE_BUFF_PER_REQ 256
247
Boojin Kimb7d861d2011-12-26 18:49:52 +0900248/* Use this _only_ to wait on transient states */
249#define UNTIL(t, s) while (!(_state(t) & (s))) cpu_relax();
250
251#ifdef PL330_DEBUG_MCGEN
252static unsigned cmd_line;
253#define PL330_DBGCMD_DUMP(off, x...) do { \
254 printk("%x:", cmd_line); \
255 printk(x); \
256 cmd_line += off; \
257 } while (0)
258#define PL330_DBGMC_START(addr) (cmd_line = addr)
259#else
260#define PL330_DBGCMD_DUMP(off, x...) do {} while (0)
261#define PL330_DBGMC_START(addr) do {} while (0)
262#endif
263
264/* The number of default descriptors */
Russell King - ARM Linuxd2ebfb32012-03-06 22:34:26 +0000265
Jassi Brarb3040e42010-05-23 20:28:19 -0700266#define NR_DEFAULT_DESC 16
267
Boojin Kimb7d861d2011-12-26 18:49:52 +0900268/* Populated by the PL330 core driver for DMA API driver's info */
269struct pl330_config {
270 u32 periph_id;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900271#define DMAC_MODE_NS (1 << 0)
272 unsigned int mode;
273 unsigned int data_bus_width:10; /* In number of bits */
274 unsigned int data_buf_dep:10;
275 unsigned int num_chan:4;
276 unsigned int num_peri:6;
277 u32 peri_ns;
278 unsigned int num_events:6;
279 u32 irq_ns;
280};
281
Boojin Kimb7d861d2011-12-26 18:49:52 +0900282/**
283 * Request Configuration.
284 * The PL330 core does not modify this and uses the last
285 * working configuration if the request doesn't provide any.
286 *
287 * The Client may want to provide this info only for the
288 * first request and a request with new settings.
289 */
290struct pl330_reqcfg {
291 /* Address Incrementing */
292 unsigned dst_inc:1;
293 unsigned src_inc:1;
294
295 /*
296 * For now, the SRC & DST protection levels
297 * and burst size/length are assumed same.
298 */
299 bool nonsecure;
300 bool privileged;
301 bool insnaccess;
302 unsigned brst_len:5;
303 unsigned brst_size:3; /* in power of 2 */
304
Lars-Peter Clausenf0564c72014-07-06 20:32:19 +0200305 enum pl330_cachectrl dcctl;
306 enum pl330_cachectrl scctl;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900307 enum pl330_byteswap swap;
Boojin Kim3ecf51a2011-12-26 18:55:47 +0900308 struct pl330_config *pcfg;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900309};
310
311/*
312 * One cycle of DMAC operation.
313 * There may be more than one xfer in a request.
314 */
315struct pl330_xfer {
316 u32 src_addr;
317 u32 dst_addr;
318 /* Size to xfer */
319 u32 bytes;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900320};
321
322/* The xfer callbacks are made with one of these arguments. */
323enum pl330_op_err {
324 /* The all xfers in the request were success. */
325 PL330_ERR_NONE,
326 /* If req aborted due to global error. */
327 PL330_ERR_ABORT,
328 /* If req failed due to problem with Channel. */
329 PL330_ERR_FAIL,
330};
331
Boojin Kimb7d861d2011-12-26 18:49:52 +0900332enum pl330_chan_op {
333 /* Start the channel */
334 PL330_OP_START,
335 /* Abort the active xfer */
336 PL330_OP_ABORT,
337 /* Stop xfer and flush queue */
338 PL330_OP_FLUSH,
339};
340
Boojin Kimb7d861d2011-12-26 18:49:52 +0900341enum dmamov_dst {
342 SAR = 0,
343 CCR,
344 DAR,
345};
346
347enum pl330_dst {
348 SRC = 0,
349 DST,
350};
351
352enum pl330_cond {
353 SINGLE,
354 BURST,
355 ALWAYS,
356};
357
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +0200358struct dma_pl330_desc;
359
Boojin Kimb7d861d2011-12-26 18:49:52 +0900360struct _pl330_req {
361 u32 mc_bus;
362 void *mc_cpu;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +0200363 struct dma_pl330_desc *desc;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900364};
365
366/* ToBeDone for tasklet */
367struct _pl330_tbd {
368 bool reset_dmac;
369 bool reset_mngr;
370 u8 reset_chan;
371};
372
373/* A DMAC Thread */
374struct pl330_thread {
375 u8 id;
376 int ev;
377 /* If the channel is not yet acquired by any client */
378 bool free;
379 /* Parent DMAC */
380 struct pl330_dmac *dmac;
381 /* Only two at a time */
382 struct _pl330_req req[2];
383 /* Index of the last enqueued request */
384 unsigned lstenq;
385 /* Index of the last submitted request or -1 if the DMA is stopped */
386 int req_running;
387};
388
389enum pl330_dmac_state {
390 UNINIT,
391 INIT,
392 DYING,
393};
394
Jassi Brarb3040e42010-05-23 20:28:19 -0700395enum desc_status {
396 /* In the DMAC pool */
397 FREE,
398 /*
Masanari Iidad73111c2012-08-04 23:37:53 +0900399 * Allocated to some channel during prep_xxx
Jassi Brarb3040e42010-05-23 20:28:19 -0700400 * Also may be sitting on the work_list.
401 */
402 PREP,
403 /*
404 * Sitting on the work_list and already submitted
405 * to the PL330 core. Not more than two descriptors
406 * of a channel can be BUSY at any time.
407 */
408 BUSY,
409 /*
410 * Sitting on the channel work_list but xfer done
411 * by PL330 core
412 */
413 DONE,
414};
415
416struct dma_pl330_chan {
417 /* Schedule desc completion */
418 struct tasklet_struct task;
419
420 /* DMA-Engine Channel */
421 struct dma_chan chan;
422
Lars-Peter Clausen04abf5d2014-01-11 20:08:38 +0100423 /* List of submitted descriptors */
424 struct list_head submitted_list;
425 /* List of issued descriptors */
Jassi Brarb3040e42010-05-23 20:28:19 -0700426 struct list_head work_list;
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +0200427 /* List of completed descriptors */
428 struct list_head completed_list;
Jassi Brarb3040e42010-05-23 20:28:19 -0700429
430 /* Pointer to the DMAC that manages this channel,
431 * NULL if the channel is available to be acquired.
432 * As the parent, this DMAC also provides descriptors
433 * to the channel.
434 */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200435 struct pl330_dmac *dmac;
Jassi Brarb3040e42010-05-23 20:28:19 -0700436
437 /* To protect channel manipulation */
438 spinlock_t lock;
439
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +0200440 /*
441 * Hardware channel thread of PL330 DMAC. NULL if the channel is
442 * available.
Jassi Brarb3040e42010-05-23 20:28:19 -0700443 */
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +0200444 struct pl330_thread *thread;
Boojin Kim1b9bb712011-09-02 09:44:30 +0900445
446 /* For D-to-M and M-to-D channels */
447 int burst_sz; /* the peripheral fifo width */
Boojin Kim1d0c1d62011-09-02 09:44:31 +0900448 int burst_len; /* the number of burst */
Boojin Kim1b9bb712011-09-02 09:44:30 +0900449 dma_addr_t fifo_addr;
Boojin Kim42bc9cf2011-09-02 09:44:33 +0900450
451 /* for cyclic capability */
452 bool cyclic;
Jassi Brarb3040e42010-05-23 20:28:19 -0700453};
454
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200455struct pl330_dmac {
Jassi Brarb3040e42010-05-23 20:28:19 -0700456 /* DMA-Engine Device */
457 struct dma_device ddma;
458
Lars-Peter Clausenb714b842013-11-25 16:07:46 +0100459 /* Holds info about sg limitations */
460 struct device_dma_parameters dma_parms;
461
Jassi Brarb3040e42010-05-23 20:28:19 -0700462 /* Pool of descriptors available for the DMAC's channels */
463 struct list_head desc_pool;
464 /* To protect desc_pool manipulation */
465 spinlock_t pool_lock;
466
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200467 /* Size of MicroCode buffers for each channel. */
468 unsigned mcbufsz;
469 /* ioremap'ed address of PL330 registers. */
470 void __iomem *base;
471 /* Populated by the PL330 core driver during pl330_add */
472 struct pl330_config pcfg;
473
474 spinlock_t lock;
475 /* Maximum possible events/irqs */
476 int events[32];
477 /* BUS address of MicroCode buffer */
478 dma_addr_t mcode_bus;
479 /* CPU address of MicroCode buffer */
480 void *mcode_cpu;
481 /* List of all Channel threads */
482 struct pl330_thread *channels;
483 /* Pointer to the MANAGER thread */
484 struct pl330_thread *manager;
485 /* To handle bad news in interrupt */
486 struct tasklet_struct tasks;
487 struct _pl330_tbd dmac_tbd;
488 /* State of DMAC operation */
489 enum pl330_dmac_state state;
490 /* Holds list of reqs with due callbacks */
491 struct list_head req_done;
492
Jassi Brarb3040e42010-05-23 20:28:19 -0700493 /* Peripheral channels connected to this DMAC */
Lars-Peter Clausen70cbb162014-01-11 20:08:39 +0100494 unsigned int num_peripherals;
Rob Herring4e0e6102011-07-25 16:05:04 -0500495 struct dma_pl330_chan *peripherals; /* keep at end */
Jassi Brarb3040e42010-05-23 20:28:19 -0700496};
497
498struct dma_pl330_desc {
499 /* To attach to a queue as child */
500 struct list_head node;
501
502 /* Descriptor for the DMA Engine API */
503 struct dma_async_tx_descriptor txd;
504
505 /* Xfer for PL330 core */
506 struct pl330_xfer px;
507
508 struct pl330_reqcfg rqcfg;
Jassi Brarb3040e42010-05-23 20:28:19 -0700509
510 enum desc_status status;
511
512 /* The channel which currently holds this desc */
513 struct dma_pl330_chan *pchan;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +0200514
515 enum dma_transfer_direction rqtype;
516 /* Index of peripheral for the xfer. */
517 unsigned peri:5;
518 /* Hook to attach to DMAC's list of reqs with due callback */
519 struct list_head rqd;
520};
521
522struct _xfer_spec {
523 u32 ccr;
524 struct dma_pl330_desc *desc;
Jassi Brarb3040e42010-05-23 20:28:19 -0700525};
526
Boojin Kimb7d861d2011-12-26 18:49:52 +0900527static inline bool _queue_empty(struct pl330_thread *thrd)
528{
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +0200529 return thrd->req[0].desc == NULL && thrd->req[1].desc == NULL;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900530}
531
532static inline bool _queue_full(struct pl330_thread *thrd)
533{
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +0200534 return thrd->req[0].desc != NULL && thrd->req[1].desc != NULL;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900535}
536
537static inline bool is_manager(struct pl330_thread *thrd)
538{
Lars-Peter Clausenfbbcd9b2014-07-06 20:32:28 +0200539 return thrd->dmac->manager == thrd;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900540}
541
542/* If manager of the thread is in Non-Secure mode */
543static inline bool _manager_ns(struct pl330_thread *thrd)
544{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200545 return (thrd->dmac->pcfg.mode & DMAC_MODE_NS) ? true : false;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900546}
547
Boojin Kim3ecf51a2011-12-26 18:55:47 +0900548static inline u32 get_revision(u32 periph_id)
549{
550 return (periph_id >> PERIPH_REV_SHIFT) & PERIPH_REV_MASK;
551}
552
Boojin Kimb7d861d2011-12-26 18:49:52 +0900553static inline u32 _emit_ADDH(unsigned dry_run, u8 buf[],
554 enum pl330_dst da, u16 val)
555{
556 if (dry_run)
557 return SZ_DMAADDH;
558
559 buf[0] = CMD_DMAADDH;
560 buf[0] |= (da << 1);
561 *((u16 *)&buf[1]) = val;
562
563 PL330_DBGCMD_DUMP(SZ_DMAADDH, "\tDMAADDH %s %u\n",
564 da == 1 ? "DA" : "SA", val);
565
566 return SZ_DMAADDH;
567}
568
569static inline u32 _emit_END(unsigned dry_run, u8 buf[])
570{
571 if (dry_run)
572 return SZ_DMAEND;
573
574 buf[0] = CMD_DMAEND;
575
576 PL330_DBGCMD_DUMP(SZ_DMAEND, "\tDMAEND\n");
577
578 return SZ_DMAEND;
579}
580
581static inline u32 _emit_FLUSHP(unsigned dry_run, u8 buf[], u8 peri)
582{
583 if (dry_run)
584 return SZ_DMAFLUSHP;
585
586 buf[0] = CMD_DMAFLUSHP;
587
588 peri &= 0x1f;
589 peri <<= 3;
590 buf[1] = peri;
591
592 PL330_DBGCMD_DUMP(SZ_DMAFLUSHP, "\tDMAFLUSHP %u\n", peri >> 3);
593
594 return SZ_DMAFLUSHP;
595}
596
597static inline u32 _emit_LD(unsigned dry_run, u8 buf[], enum pl330_cond cond)
598{
599 if (dry_run)
600 return SZ_DMALD;
601
602 buf[0] = CMD_DMALD;
603
604 if (cond == SINGLE)
605 buf[0] |= (0 << 1) | (1 << 0);
606 else if (cond == BURST)
607 buf[0] |= (1 << 1) | (1 << 0);
608
609 PL330_DBGCMD_DUMP(SZ_DMALD, "\tDMALD%c\n",
610 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'A'));
611
612 return SZ_DMALD;
613}
614
615static inline u32 _emit_LDP(unsigned dry_run, u8 buf[],
616 enum pl330_cond cond, u8 peri)
617{
618 if (dry_run)
619 return SZ_DMALDP;
620
621 buf[0] = CMD_DMALDP;
622
623 if (cond == BURST)
624 buf[0] |= (1 << 1);
625
626 peri &= 0x1f;
627 peri <<= 3;
628 buf[1] = peri;
629
630 PL330_DBGCMD_DUMP(SZ_DMALDP, "\tDMALDP%c %u\n",
631 cond == SINGLE ? 'S' : 'B', peri >> 3);
632
633 return SZ_DMALDP;
634}
635
636static inline u32 _emit_LP(unsigned dry_run, u8 buf[],
637 unsigned loop, u8 cnt)
638{
639 if (dry_run)
640 return SZ_DMALP;
641
642 buf[0] = CMD_DMALP;
643
644 if (loop)
645 buf[0] |= (1 << 1);
646
647 cnt--; /* DMAC increments by 1 internally */
648 buf[1] = cnt;
649
650 PL330_DBGCMD_DUMP(SZ_DMALP, "\tDMALP_%c %u\n", loop ? '1' : '0', cnt);
651
652 return SZ_DMALP;
653}
654
655struct _arg_LPEND {
656 enum pl330_cond cond;
657 bool forever;
658 unsigned loop;
659 u8 bjump;
660};
661
662static inline u32 _emit_LPEND(unsigned dry_run, u8 buf[],
663 const struct _arg_LPEND *arg)
664{
665 enum pl330_cond cond = arg->cond;
666 bool forever = arg->forever;
667 unsigned loop = arg->loop;
668 u8 bjump = arg->bjump;
669
670 if (dry_run)
671 return SZ_DMALPEND;
672
673 buf[0] = CMD_DMALPEND;
674
675 if (loop)
676 buf[0] |= (1 << 2);
677
678 if (!forever)
679 buf[0] |= (1 << 4);
680
681 if (cond == SINGLE)
682 buf[0] |= (0 << 1) | (1 << 0);
683 else if (cond == BURST)
684 buf[0] |= (1 << 1) | (1 << 0);
685
686 buf[1] = bjump;
687
688 PL330_DBGCMD_DUMP(SZ_DMALPEND, "\tDMALP%s%c_%c bjmpto_%x\n",
689 forever ? "FE" : "END",
690 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'A'),
691 loop ? '1' : '0',
692 bjump);
693
694 return SZ_DMALPEND;
695}
696
697static inline u32 _emit_KILL(unsigned dry_run, u8 buf[])
698{
699 if (dry_run)
700 return SZ_DMAKILL;
701
702 buf[0] = CMD_DMAKILL;
703
704 return SZ_DMAKILL;
705}
706
707static inline u32 _emit_MOV(unsigned dry_run, u8 buf[],
708 enum dmamov_dst dst, u32 val)
709{
710 if (dry_run)
711 return SZ_DMAMOV;
712
713 buf[0] = CMD_DMAMOV;
714 buf[1] = dst;
715 *((u32 *)&buf[2]) = val;
716
717 PL330_DBGCMD_DUMP(SZ_DMAMOV, "\tDMAMOV %s 0x%x\n",
718 dst == SAR ? "SAR" : (dst == DAR ? "DAR" : "CCR"), val);
719
720 return SZ_DMAMOV;
721}
722
723static inline u32 _emit_NOP(unsigned dry_run, u8 buf[])
724{
725 if (dry_run)
726 return SZ_DMANOP;
727
728 buf[0] = CMD_DMANOP;
729
730 PL330_DBGCMD_DUMP(SZ_DMANOP, "\tDMANOP\n");
731
732 return SZ_DMANOP;
733}
734
735static inline u32 _emit_RMB(unsigned dry_run, u8 buf[])
736{
737 if (dry_run)
738 return SZ_DMARMB;
739
740 buf[0] = CMD_DMARMB;
741
742 PL330_DBGCMD_DUMP(SZ_DMARMB, "\tDMARMB\n");
743
744 return SZ_DMARMB;
745}
746
747static inline u32 _emit_SEV(unsigned dry_run, u8 buf[], u8 ev)
748{
749 if (dry_run)
750 return SZ_DMASEV;
751
752 buf[0] = CMD_DMASEV;
753
754 ev &= 0x1f;
755 ev <<= 3;
756 buf[1] = ev;
757
758 PL330_DBGCMD_DUMP(SZ_DMASEV, "\tDMASEV %u\n", ev >> 3);
759
760 return SZ_DMASEV;
761}
762
763static inline u32 _emit_ST(unsigned dry_run, u8 buf[], enum pl330_cond cond)
764{
765 if (dry_run)
766 return SZ_DMAST;
767
768 buf[0] = CMD_DMAST;
769
770 if (cond == SINGLE)
771 buf[0] |= (0 << 1) | (1 << 0);
772 else if (cond == BURST)
773 buf[0] |= (1 << 1) | (1 << 0);
774
775 PL330_DBGCMD_DUMP(SZ_DMAST, "\tDMAST%c\n",
776 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'A'));
777
778 return SZ_DMAST;
779}
780
781static inline u32 _emit_STP(unsigned dry_run, u8 buf[],
782 enum pl330_cond cond, u8 peri)
783{
784 if (dry_run)
785 return SZ_DMASTP;
786
787 buf[0] = CMD_DMASTP;
788
789 if (cond == BURST)
790 buf[0] |= (1 << 1);
791
792 peri &= 0x1f;
793 peri <<= 3;
794 buf[1] = peri;
795
796 PL330_DBGCMD_DUMP(SZ_DMASTP, "\tDMASTP%c %u\n",
797 cond == SINGLE ? 'S' : 'B', peri >> 3);
798
799 return SZ_DMASTP;
800}
801
802static inline u32 _emit_STZ(unsigned dry_run, u8 buf[])
803{
804 if (dry_run)
805 return SZ_DMASTZ;
806
807 buf[0] = CMD_DMASTZ;
808
809 PL330_DBGCMD_DUMP(SZ_DMASTZ, "\tDMASTZ\n");
810
811 return SZ_DMASTZ;
812}
813
814static inline u32 _emit_WFE(unsigned dry_run, u8 buf[], u8 ev,
815 unsigned invalidate)
816{
817 if (dry_run)
818 return SZ_DMAWFE;
819
820 buf[0] = CMD_DMAWFE;
821
822 ev &= 0x1f;
823 ev <<= 3;
824 buf[1] = ev;
825
826 if (invalidate)
827 buf[1] |= (1 << 1);
828
829 PL330_DBGCMD_DUMP(SZ_DMAWFE, "\tDMAWFE %u%s\n",
830 ev >> 3, invalidate ? ", I" : "");
831
832 return SZ_DMAWFE;
833}
834
835static inline u32 _emit_WFP(unsigned dry_run, u8 buf[],
836 enum pl330_cond cond, u8 peri)
837{
838 if (dry_run)
839 return SZ_DMAWFP;
840
841 buf[0] = CMD_DMAWFP;
842
843 if (cond == SINGLE)
844 buf[0] |= (0 << 1) | (0 << 0);
845 else if (cond == BURST)
846 buf[0] |= (1 << 1) | (0 << 0);
847 else
848 buf[0] |= (0 << 1) | (1 << 0);
849
850 peri &= 0x1f;
851 peri <<= 3;
852 buf[1] = peri;
853
854 PL330_DBGCMD_DUMP(SZ_DMAWFP, "\tDMAWFP%c %u\n",
855 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'P'), peri >> 3);
856
857 return SZ_DMAWFP;
858}
859
860static inline u32 _emit_WMB(unsigned dry_run, u8 buf[])
861{
862 if (dry_run)
863 return SZ_DMAWMB;
864
865 buf[0] = CMD_DMAWMB;
866
867 PL330_DBGCMD_DUMP(SZ_DMAWMB, "\tDMAWMB\n");
868
869 return SZ_DMAWMB;
870}
871
872struct _arg_GO {
873 u8 chan;
874 u32 addr;
875 unsigned ns;
876};
877
878static inline u32 _emit_GO(unsigned dry_run, u8 buf[],
879 const struct _arg_GO *arg)
880{
881 u8 chan = arg->chan;
882 u32 addr = arg->addr;
883 unsigned ns = arg->ns;
884
885 if (dry_run)
886 return SZ_DMAGO;
887
888 buf[0] = CMD_DMAGO;
889 buf[0] |= (ns << 1);
890
891 buf[1] = chan & 0x7;
892
893 *((u32 *)&buf[2]) = addr;
894
895 return SZ_DMAGO;
896}
897
898#define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
899
900/* Returns Time-Out */
901static bool _until_dmac_idle(struct pl330_thread *thrd)
902{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200903 void __iomem *regs = thrd->dmac->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900904 unsigned long loops = msecs_to_loops(5);
905
906 do {
907 /* Until Manager is Idle */
908 if (!(readl(regs + DBGSTATUS) & DBG_BUSY))
909 break;
910
911 cpu_relax();
912 } while (--loops);
913
914 if (!loops)
915 return true;
916
917 return false;
918}
919
920static inline void _execute_DBGINSN(struct pl330_thread *thrd,
921 u8 insn[], bool as_manager)
922{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200923 void __iomem *regs = thrd->dmac->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900924 u32 val;
925
926 val = (insn[0] << 16) | (insn[1] << 24);
927 if (!as_manager) {
928 val |= (1 << 0);
929 val |= (thrd->id << 8); /* Channel Number */
930 }
931 writel(val, regs + DBGINST0);
932
933 val = *((u32 *)&insn[2]);
934 writel(val, regs + DBGINST1);
935
936 /* If timed out due to halted state-machine */
937 if (_until_dmac_idle(thrd)) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200938 dev_err(thrd->dmac->ddma.dev, "DMAC halted!\n");
Boojin Kimb7d861d2011-12-26 18:49:52 +0900939 return;
940 }
941
942 /* Get going */
943 writel(0, regs + DBGCMD);
944}
945
Boojin Kimb7d861d2011-12-26 18:49:52 +0900946static inline u32 _state(struct pl330_thread *thrd)
947{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200948 void __iomem *regs = thrd->dmac->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900949 u32 val;
950
951 if (is_manager(thrd))
952 val = readl(regs + DS) & 0xf;
953 else
954 val = readl(regs + CS(thrd->id)) & 0xf;
955
956 switch (val) {
957 case DS_ST_STOP:
958 return PL330_STATE_STOPPED;
959 case DS_ST_EXEC:
960 return PL330_STATE_EXECUTING;
961 case DS_ST_CMISS:
962 return PL330_STATE_CACHEMISS;
963 case DS_ST_UPDTPC:
964 return PL330_STATE_UPDTPC;
965 case DS_ST_WFE:
966 return PL330_STATE_WFE;
967 case DS_ST_FAULT:
968 return PL330_STATE_FAULTING;
969 case DS_ST_ATBRR:
970 if (is_manager(thrd))
971 return PL330_STATE_INVALID;
972 else
973 return PL330_STATE_ATBARRIER;
974 case DS_ST_QBUSY:
975 if (is_manager(thrd))
976 return PL330_STATE_INVALID;
977 else
978 return PL330_STATE_QUEUEBUSY;
979 case DS_ST_WFP:
980 if (is_manager(thrd))
981 return PL330_STATE_INVALID;
982 else
983 return PL330_STATE_WFP;
984 case DS_ST_KILL:
985 if (is_manager(thrd))
986 return PL330_STATE_INVALID;
987 else
988 return PL330_STATE_KILLING;
989 case DS_ST_CMPLT:
990 if (is_manager(thrd))
991 return PL330_STATE_INVALID;
992 else
993 return PL330_STATE_COMPLETING;
994 case DS_ST_FLTCMP:
995 if (is_manager(thrd))
996 return PL330_STATE_INVALID;
997 else
998 return PL330_STATE_FAULT_COMPLETING;
999 default:
1000 return PL330_STATE_INVALID;
1001 }
1002}
1003
1004static void _stop(struct pl330_thread *thrd)
1005{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001006 void __iomem *regs = thrd->dmac->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001007 u8 insn[6] = {0, 0, 0, 0, 0, 0};
1008
1009 if (_state(thrd) == PL330_STATE_FAULT_COMPLETING)
1010 UNTIL(thrd, PL330_STATE_FAULTING | PL330_STATE_KILLING);
1011
1012 /* Return if nothing needs to be done */
1013 if (_state(thrd) == PL330_STATE_COMPLETING
1014 || _state(thrd) == PL330_STATE_KILLING
1015 || _state(thrd) == PL330_STATE_STOPPED)
1016 return;
1017
1018 _emit_KILL(0, insn);
1019
1020 /* Stop generating interrupts for SEV */
1021 writel(readl(regs + INTEN) & ~(1 << thrd->ev), regs + INTEN);
1022
1023 _execute_DBGINSN(thrd, insn, is_manager(thrd));
1024}
1025
1026/* Start doing req 'idx' of thread 'thrd' */
1027static bool _trigger(struct pl330_thread *thrd)
1028{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001029 void __iomem *regs = thrd->dmac->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001030 struct _pl330_req *req;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001031 struct dma_pl330_desc *desc;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001032 struct _arg_GO go;
1033 unsigned ns;
1034 u8 insn[6] = {0, 0, 0, 0, 0, 0};
1035 int idx;
1036
1037 /* Return if already ACTIVE */
1038 if (_state(thrd) != PL330_STATE_STOPPED)
1039 return true;
1040
1041 idx = 1 - thrd->lstenq;
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001042 if (thrd->req[idx].desc != NULL) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001043 req = &thrd->req[idx];
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001044 } else {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001045 idx = thrd->lstenq;
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001046 if (thrd->req[idx].desc != NULL)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001047 req = &thrd->req[idx];
1048 else
1049 req = NULL;
1050 }
1051
1052 /* Return if no request */
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001053 if (!req)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001054 return true;
1055
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001056 desc = req->desc;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001057
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001058 ns = desc->rqcfg.nonsecure ? 1 : 0;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001059
1060 /* See 'Abort Sources' point-4 at Page 2-25 */
1061 if (_manager_ns(thrd) && !ns)
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001062 dev_info(thrd->dmac->ddma.dev, "%s:%d Recipe for ABORT!\n",
Boojin Kimb7d861d2011-12-26 18:49:52 +09001063 __func__, __LINE__);
1064
1065 go.chan = thrd->id;
1066 go.addr = req->mc_bus;
1067 go.ns = ns;
1068 _emit_GO(0, insn, &go);
1069
1070 /* Set to generate interrupts for SEV */
1071 writel(readl(regs + INTEN) | (1 << thrd->ev), regs + INTEN);
1072
1073 /* Only manager can execute GO */
1074 _execute_DBGINSN(thrd, insn, true);
1075
1076 thrd->req_running = idx;
1077
1078 return true;
1079}
1080
1081static bool _start(struct pl330_thread *thrd)
1082{
1083 switch (_state(thrd)) {
1084 case PL330_STATE_FAULT_COMPLETING:
1085 UNTIL(thrd, PL330_STATE_FAULTING | PL330_STATE_KILLING);
1086
1087 if (_state(thrd) == PL330_STATE_KILLING)
1088 UNTIL(thrd, PL330_STATE_STOPPED)
1089
1090 case PL330_STATE_FAULTING:
1091 _stop(thrd);
1092
1093 case PL330_STATE_KILLING:
1094 case PL330_STATE_COMPLETING:
1095 UNTIL(thrd, PL330_STATE_STOPPED)
1096
1097 case PL330_STATE_STOPPED:
1098 return _trigger(thrd);
1099
1100 case PL330_STATE_WFP:
1101 case PL330_STATE_QUEUEBUSY:
1102 case PL330_STATE_ATBARRIER:
1103 case PL330_STATE_UPDTPC:
1104 case PL330_STATE_CACHEMISS:
1105 case PL330_STATE_EXECUTING:
1106 return true;
1107
1108 case PL330_STATE_WFE: /* For RESUME, nothing yet */
1109 default:
1110 return false;
1111 }
1112}
1113
1114static inline int _ldst_memtomem(unsigned dry_run, u8 buf[],
1115 const struct _xfer_spec *pxs, int cyc)
1116{
1117 int off = 0;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001118 struct pl330_config *pcfg = pxs->desc->rqcfg.pcfg;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001119
Boojin Kim3ecf51a2011-12-26 18:55:47 +09001120 /* check lock-up free version */
1121 if (get_revision(pcfg->periph_id) >= PERIPH_REV_R1P0) {
1122 while (cyc--) {
1123 off += _emit_LD(dry_run, &buf[off], ALWAYS);
1124 off += _emit_ST(dry_run, &buf[off], ALWAYS);
1125 }
1126 } else {
1127 while (cyc--) {
1128 off += _emit_LD(dry_run, &buf[off], ALWAYS);
1129 off += _emit_RMB(dry_run, &buf[off]);
1130 off += _emit_ST(dry_run, &buf[off], ALWAYS);
1131 off += _emit_WMB(dry_run, &buf[off]);
1132 }
Boojin Kimb7d861d2011-12-26 18:49:52 +09001133 }
1134
1135 return off;
1136}
1137
1138static inline int _ldst_devtomem(unsigned dry_run, u8 buf[],
1139 const struct _xfer_spec *pxs, int cyc)
1140{
1141 int off = 0;
1142
1143 while (cyc--) {
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001144 off += _emit_WFP(dry_run, &buf[off], SINGLE, pxs->desc->peri);
1145 off += _emit_LDP(dry_run, &buf[off], SINGLE, pxs->desc->peri);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001146 off += _emit_ST(dry_run, &buf[off], ALWAYS);
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001147 off += _emit_FLUSHP(dry_run, &buf[off], pxs->desc->peri);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001148 }
1149
1150 return off;
1151}
1152
1153static inline int _ldst_memtodev(unsigned dry_run, u8 buf[],
1154 const struct _xfer_spec *pxs, int cyc)
1155{
1156 int off = 0;
1157
1158 while (cyc--) {
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001159 off += _emit_WFP(dry_run, &buf[off], SINGLE, pxs->desc->peri);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001160 off += _emit_LD(dry_run, &buf[off], ALWAYS);
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001161 off += _emit_STP(dry_run, &buf[off], SINGLE, pxs->desc->peri);
1162 off += _emit_FLUSHP(dry_run, &buf[off], pxs->desc->peri);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001163 }
1164
1165 return off;
1166}
1167
1168static int _bursts(unsigned dry_run, u8 buf[],
1169 const struct _xfer_spec *pxs, int cyc)
1170{
1171 int off = 0;
1172
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001173 switch (pxs->desc->rqtype) {
Lars-Peter Clausen585a9d02014-07-06 20:32:18 +02001174 case DMA_MEM_TO_DEV:
Boojin Kimb7d861d2011-12-26 18:49:52 +09001175 off += _ldst_memtodev(dry_run, &buf[off], pxs, cyc);
1176 break;
Lars-Peter Clausen585a9d02014-07-06 20:32:18 +02001177 case DMA_DEV_TO_MEM:
Boojin Kimb7d861d2011-12-26 18:49:52 +09001178 off += _ldst_devtomem(dry_run, &buf[off], pxs, cyc);
1179 break;
Lars-Peter Clausen585a9d02014-07-06 20:32:18 +02001180 case DMA_MEM_TO_MEM:
Boojin Kimb7d861d2011-12-26 18:49:52 +09001181 off += _ldst_memtomem(dry_run, &buf[off], pxs, cyc);
1182 break;
1183 default:
1184 off += 0x40000000; /* Scare off the Client */
1185 break;
1186 }
1187
1188 return off;
1189}
1190
1191/* Returns bytes consumed and updates bursts */
1192static inline int _loop(unsigned dry_run, u8 buf[],
1193 unsigned long *bursts, const struct _xfer_spec *pxs)
1194{
1195 int cyc, cycmax, szlp, szlpend, szbrst, off;
1196 unsigned lcnt0, lcnt1, ljmp0, ljmp1;
1197 struct _arg_LPEND lpend;
1198
1199 /* Max iterations possible in DMALP is 256 */
1200 if (*bursts >= 256*256) {
1201 lcnt1 = 256;
1202 lcnt0 = 256;
1203 cyc = *bursts / lcnt1 / lcnt0;
1204 } else if (*bursts > 256) {
1205 lcnt1 = 256;
1206 lcnt0 = *bursts / lcnt1;
1207 cyc = 1;
1208 } else {
1209 lcnt1 = *bursts;
1210 lcnt0 = 0;
1211 cyc = 1;
1212 }
1213
1214 szlp = _emit_LP(1, buf, 0, 0);
1215 szbrst = _bursts(1, buf, pxs, 1);
1216
1217 lpend.cond = ALWAYS;
1218 lpend.forever = false;
1219 lpend.loop = 0;
1220 lpend.bjump = 0;
1221 szlpend = _emit_LPEND(1, buf, &lpend);
1222
1223 if (lcnt0) {
1224 szlp *= 2;
1225 szlpend *= 2;
1226 }
1227
1228 /*
1229 * Max bursts that we can unroll due to limit on the
1230 * size of backward jump that can be encoded in DMALPEND
1231 * which is 8-bits and hence 255
1232 */
1233 cycmax = (255 - (szlp + szlpend)) / szbrst;
1234
1235 cyc = (cycmax < cyc) ? cycmax : cyc;
1236
1237 off = 0;
1238
1239 if (lcnt0) {
1240 off += _emit_LP(dry_run, &buf[off], 0, lcnt0);
1241 ljmp0 = off;
1242 }
1243
1244 off += _emit_LP(dry_run, &buf[off], 1, lcnt1);
1245 ljmp1 = off;
1246
1247 off += _bursts(dry_run, &buf[off], pxs, cyc);
1248
1249 lpend.cond = ALWAYS;
1250 lpend.forever = false;
1251 lpend.loop = 1;
1252 lpend.bjump = off - ljmp1;
1253 off += _emit_LPEND(dry_run, &buf[off], &lpend);
1254
1255 if (lcnt0) {
1256 lpend.cond = ALWAYS;
1257 lpend.forever = false;
1258 lpend.loop = 0;
1259 lpend.bjump = off - ljmp0;
1260 off += _emit_LPEND(dry_run, &buf[off], &lpend);
1261 }
1262
1263 *bursts = lcnt1 * cyc;
1264 if (lcnt0)
1265 *bursts *= lcnt0;
1266
1267 return off;
1268}
1269
1270static inline int _setup_loops(unsigned dry_run, u8 buf[],
1271 const struct _xfer_spec *pxs)
1272{
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001273 struct pl330_xfer *x = &pxs->desc->px;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001274 u32 ccr = pxs->ccr;
1275 unsigned long c, bursts = BYTE_TO_BURST(x->bytes, ccr);
1276 int off = 0;
1277
1278 while (bursts) {
1279 c = bursts;
1280 off += _loop(dry_run, &buf[off], &c, pxs);
1281 bursts -= c;
1282 }
1283
1284 return off;
1285}
1286
1287static inline int _setup_xfer(unsigned dry_run, u8 buf[],
1288 const struct _xfer_spec *pxs)
1289{
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001290 struct pl330_xfer *x = &pxs->desc->px;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001291 int off = 0;
1292
1293 /* DMAMOV SAR, x->src_addr */
1294 off += _emit_MOV(dry_run, &buf[off], SAR, x->src_addr);
1295 /* DMAMOV DAR, x->dst_addr */
1296 off += _emit_MOV(dry_run, &buf[off], DAR, x->dst_addr);
1297
1298 /* Setup Loop(s) */
1299 off += _setup_loops(dry_run, &buf[off], pxs);
1300
1301 return off;
1302}
1303
1304/*
1305 * A req is a sequence of one or more xfer units.
1306 * Returns the number of bytes taken to setup the MC for the req.
1307 */
1308static int _setup_req(unsigned dry_run, struct pl330_thread *thrd,
1309 unsigned index, struct _xfer_spec *pxs)
1310{
1311 struct _pl330_req *req = &thrd->req[index];
1312 struct pl330_xfer *x;
1313 u8 *buf = req->mc_cpu;
1314 int off = 0;
1315
1316 PL330_DBGMC_START(req->mc_bus);
1317
1318 /* DMAMOV CCR, ccr */
1319 off += _emit_MOV(dry_run, &buf[off], CCR, pxs->ccr);
1320
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001321 x = &pxs->desc->px;
Lars-Peter Clausend5cef122014-07-06 20:32:23 +02001322 /* Error if xfer length is not aligned at burst size */
1323 if (x->bytes % (BRST_SIZE(pxs->ccr) * BRST_LEN(pxs->ccr)))
1324 return -EINVAL;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001325
Lars-Peter Clausend5cef122014-07-06 20:32:23 +02001326 off += _setup_xfer(dry_run, &buf[off], pxs);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001327
1328 /* DMASEV peripheral/event */
1329 off += _emit_SEV(dry_run, &buf[off], thrd->ev);
1330 /* DMAEND */
1331 off += _emit_END(dry_run, &buf[off]);
1332
1333 return off;
1334}
1335
1336static inline u32 _prepare_ccr(const struct pl330_reqcfg *rqc)
1337{
1338 u32 ccr = 0;
1339
1340 if (rqc->src_inc)
1341 ccr |= CC_SRCINC;
1342
1343 if (rqc->dst_inc)
1344 ccr |= CC_DSTINC;
1345
1346 /* We set same protection levels for Src and DST for now */
1347 if (rqc->privileged)
1348 ccr |= CC_SRCPRI | CC_DSTPRI;
1349 if (rqc->nonsecure)
1350 ccr |= CC_SRCNS | CC_DSTNS;
1351 if (rqc->insnaccess)
1352 ccr |= CC_SRCIA | CC_DSTIA;
1353
1354 ccr |= (((rqc->brst_len - 1) & 0xf) << CC_SRCBRSTLEN_SHFT);
1355 ccr |= (((rqc->brst_len - 1) & 0xf) << CC_DSTBRSTLEN_SHFT);
1356
1357 ccr |= (rqc->brst_size << CC_SRCBRSTSIZE_SHFT);
1358 ccr |= (rqc->brst_size << CC_DSTBRSTSIZE_SHFT);
1359
1360 ccr |= (rqc->scctl << CC_SRCCCTRL_SHFT);
1361 ccr |= (rqc->dcctl << CC_DSTCCTRL_SHFT);
1362
1363 ccr |= (rqc->swap << CC_SWAP_SHFT);
1364
1365 return ccr;
1366}
1367
Boojin Kimb7d861d2011-12-26 18:49:52 +09001368/*
1369 * Submit a list of xfers after which the client wants notification.
1370 * Client is not notified after each xfer unit, just once after all
1371 * xfer units are done or some error occurs.
1372 */
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001373static int pl330_submit_req(struct pl330_thread *thrd,
1374 struct dma_pl330_desc *desc)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001375{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001376 struct pl330_dmac *pl330 = thrd->dmac;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001377 struct _xfer_spec xs;
1378 unsigned long flags;
1379 void __iomem *regs;
1380 unsigned idx;
1381 u32 ccr;
1382 int ret = 0;
1383
1384 /* No Req or Unacquired Channel or DMAC */
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001385 if (!desc || !thrd || thrd->free)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001386 return -EINVAL;
1387
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001388 regs = thrd->dmac->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001389
1390 if (pl330->state == DYING
1391 || pl330->dmac_tbd.reset_chan & (1 << thrd->id)) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001392 dev_info(thrd->dmac->ddma.dev, "%s:%d\n",
Boojin Kimb7d861d2011-12-26 18:49:52 +09001393 __func__, __LINE__);
1394 return -EAGAIN;
1395 }
1396
1397 /* If request for non-existing peripheral */
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001398 if (desc->rqtype != DMA_MEM_TO_MEM &&
1399 desc->peri >= pl330->pcfg.num_peri) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001400 dev_info(thrd->dmac->ddma.dev,
Boojin Kimb7d861d2011-12-26 18:49:52 +09001401 "%s:%d Invalid peripheral(%u)!\n",
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001402 __func__, __LINE__, desc->peri);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001403 return -EINVAL;
1404 }
1405
1406 spin_lock_irqsave(&pl330->lock, flags);
1407
1408 if (_queue_full(thrd)) {
1409 ret = -EAGAIN;
1410 goto xfer_exit;
1411 }
1412
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001413 /* Prefer Secure Channel */
1414 if (!_manager_ns(thrd))
1415 desc->rqcfg.nonsecure = 0;
1416 else
1417 desc->rqcfg.nonsecure = 1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001418
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001419 ccr = _prepare_ccr(&desc->rqcfg);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001420
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001421 idx = thrd->req[0].desc == NULL ? 0 : 1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001422
1423 xs.ccr = ccr;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001424 xs.desc = desc;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001425
1426 /* First dry run to check if req is acceptable */
1427 ret = _setup_req(1, thrd, idx, &xs);
1428 if (ret < 0)
1429 goto xfer_exit;
1430
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001431 if (ret > pl330->mcbufsz / 2) {
1432 dev_info(pl330->ddma.dev, "%s:%d Trying increasing mcbufsz\n",
Boojin Kimb7d861d2011-12-26 18:49:52 +09001433 __func__, __LINE__);
1434 ret = -ENOMEM;
1435 goto xfer_exit;
1436 }
1437
1438 /* Hook the request */
1439 thrd->lstenq = idx;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001440 thrd->req[idx].desc = desc;
Lars-Peter Clausenbe025322014-07-06 20:32:24 +02001441 _setup_req(0, thrd, idx, &xs);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001442
1443 ret = 0;
1444
1445xfer_exit:
1446 spin_unlock_irqrestore(&pl330->lock, flags);
1447
1448 return ret;
1449}
1450
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001451static void dma_pl330_rqcb(struct dma_pl330_desc *desc, enum pl330_op_err err)
Lars-Peter Clausen6079d382014-07-06 20:32:25 +02001452{
Lars-Peter Clausen6079d382014-07-06 20:32:25 +02001453 struct dma_pl330_chan *pch = desc->pchan;
1454 unsigned long flags;
1455
1456 /* If desc aborted */
1457 if (!pch)
1458 return;
1459
1460 spin_lock_irqsave(&pch->lock, flags);
1461
1462 desc->status = DONE;
1463
1464 spin_unlock_irqrestore(&pch->lock, flags);
1465
1466 tasklet_schedule(&pch->task);
1467}
1468
Boojin Kimb7d861d2011-12-26 18:49:52 +09001469static void pl330_dotask(unsigned long data)
1470{
1471 struct pl330_dmac *pl330 = (struct pl330_dmac *) data;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001472 unsigned long flags;
1473 int i;
1474
1475 spin_lock_irqsave(&pl330->lock, flags);
1476
1477 /* The DMAC itself gone nuts */
1478 if (pl330->dmac_tbd.reset_dmac) {
1479 pl330->state = DYING;
1480 /* Reset the manager too */
1481 pl330->dmac_tbd.reset_mngr = true;
1482 /* Clear the reset flag */
1483 pl330->dmac_tbd.reset_dmac = false;
1484 }
1485
1486 if (pl330->dmac_tbd.reset_mngr) {
1487 _stop(pl330->manager);
1488 /* Reset all channels */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001489 pl330->dmac_tbd.reset_chan = (1 << pl330->pcfg.num_chan) - 1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001490 /* Clear the reset flag */
1491 pl330->dmac_tbd.reset_mngr = false;
1492 }
1493
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001494 for (i = 0; i < pl330->pcfg.num_chan; i++) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001495
1496 if (pl330->dmac_tbd.reset_chan & (1 << i)) {
1497 struct pl330_thread *thrd = &pl330->channels[i];
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001498 void __iomem *regs = pl330->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001499 enum pl330_op_err err;
1500
1501 _stop(thrd);
1502
1503 if (readl(regs + FSC) & (1 << thrd->id))
1504 err = PL330_ERR_FAIL;
1505 else
1506 err = PL330_ERR_ABORT;
1507
1508 spin_unlock_irqrestore(&pl330->lock, flags);
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001509 dma_pl330_rqcb(thrd->req[1 - thrd->lstenq].desc, err);
1510 dma_pl330_rqcb(thrd->req[thrd->lstenq].desc, err);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001511 spin_lock_irqsave(&pl330->lock, flags);
1512
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001513 thrd->req[0].desc = NULL;
1514 thrd->req[1].desc = NULL;
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001515 thrd->req_running = -1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001516
1517 /* Clear the reset flag */
1518 pl330->dmac_tbd.reset_chan &= ~(1 << i);
1519 }
1520 }
1521
1522 spin_unlock_irqrestore(&pl330->lock, flags);
1523
1524 return;
1525}
1526
1527/* Returns 1 if state was updated, 0 otherwise */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001528static int pl330_update(struct pl330_dmac *pl330)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001529{
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001530 struct dma_pl330_desc *descdone, *tmp;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001531 unsigned long flags;
1532 void __iomem *regs;
1533 u32 val;
1534 int id, ev, ret = 0;
1535
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001536 regs = pl330->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001537
1538 spin_lock_irqsave(&pl330->lock, flags);
1539
1540 val = readl(regs + FSM) & 0x1;
1541 if (val)
1542 pl330->dmac_tbd.reset_mngr = true;
1543 else
1544 pl330->dmac_tbd.reset_mngr = false;
1545
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001546 val = readl(regs + FSC) & ((1 << pl330->pcfg.num_chan) - 1);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001547 pl330->dmac_tbd.reset_chan |= val;
1548 if (val) {
1549 int i = 0;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001550 while (i < pl330->pcfg.num_chan) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001551 if (val & (1 << i)) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001552 dev_info(pl330->ddma.dev,
Boojin Kimb7d861d2011-12-26 18:49:52 +09001553 "Reset Channel-%d\t CS-%x FTC-%x\n",
1554 i, readl(regs + CS(i)),
1555 readl(regs + FTC(i)));
1556 _stop(&pl330->channels[i]);
1557 }
1558 i++;
1559 }
1560 }
1561
1562 /* Check which event happened i.e, thread notified */
1563 val = readl(regs + ES);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001564 if (pl330->pcfg.num_events < 32
1565 && val & ~((1 << pl330->pcfg.num_events) - 1)) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001566 pl330->dmac_tbd.reset_dmac = true;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001567 dev_err(pl330->ddma.dev, "%s:%d Unexpected!\n", __func__,
1568 __LINE__);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001569 ret = 1;
1570 goto updt_exit;
1571 }
1572
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001573 for (ev = 0; ev < pl330->pcfg.num_events; ev++) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001574 if (val & (1 << ev)) { /* Event occurred */
1575 struct pl330_thread *thrd;
1576 u32 inten = readl(regs + INTEN);
1577 int active;
1578
1579 /* Clear the event */
1580 if (inten & (1 << ev))
1581 writel(1 << ev, regs + INTCLR);
1582
1583 ret = 1;
1584
1585 id = pl330->events[ev];
1586
1587 thrd = &pl330->channels[id];
1588
1589 active = thrd->req_running;
1590 if (active == -1) /* Aborted */
1591 continue;
1592
Javi Merinofdec53d2012-06-13 15:07:00 +01001593 /* Detach the req */
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001594 descdone = thrd->req[active].desc;
1595 thrd->req[active].desc = NULL;
Javi Merinofdec53d2012-06-13 15:07:00 +01001596
Boojin Kimb7d861d2011-12-26 18:49:52 +09001597 /* Get going again ASAP */
1598 _start(thrd);
1599
1600 /* For now, just make a list of callbacks to be done */
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001601 list_add_tail(&descdone->rqd, &pl330->req_done);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001602 }
1603 }
1604
1605 /* Now that we are in no hurry, do the callbacks */
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001606 list_for_each_entry_safe(descdone, tmp, &pl330->req_done, rqd) {
1607 list_del(&descdone->rqd);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001608 spin_unlock_irqrestore(&pl330->lock, flags);
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001609 dma_pl330_rqcb(descdone, PL330_ERR_NONE);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001610 spin_lock_irqsave(&pl330->lock, flags);
1611 }
1612
1613updt_exit:
1614 spin_unlock_irqrestore(&pl330->lock, flags);
1615
1616 if (pl330->dmac_tbd.reset_dmac
1617 || pl330->dmac_tbd.reset_mngr
1618 || pl330->dmac_tbd.reset_chan) {
1619 ret = 1;
1620 tasklet_schedule(&pl330->tasks);
1621 }
1622
1623 return ret;
1624}
1625
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +02001626static int pl330_chan_ctrl(struct pl330_thread *thrd, enum pl330_chan_op op)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001627{
Boojin Kimb7d861d2011-12-26 18:49:52 +09001628 struct pl330_dmac *pl330;
1629 unsigned long flags;
Linus Torvaldsef08e782012-03-29 15:34:57 -07001630 int ret = 0, active;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001631
1632 if (!thrd || thrd->free || thrd->dmac->state == DYING)
1633 return -EINVAL;
1634
1635 pl330 = thrd->dmac;
Linus Torvaldsef08e782012-03-29 15:34:57 -07001636 active = thrd->req_running;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001637
1638 spin_lock_irqsave(&pl330->lock, flags);
1639
1640 switch (op) {
1641 case PL330_OP_FLUSH:
1642 /* Make sure the channel is stopped */
1643 _stop(thrd);
1644
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001645 thrd->req[0].desc = NULL;
1646 thrd->req[1].desc = NULL;
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001647 thrd->req_running = -1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001648 break;
1649
1650 case PL330_OP_ABORT:
1651 /* Make sure the channel is stopped */
1652 _stop(thrd);
1653
1654 /* ABORT is only for the active req */
1655 if (active == -1)
1656 break;
1657
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001658 thrd->req[active].desc = NULL;
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001659 thrd->req_running = -1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001660
1661 /* Start the next */
1662 case PL330_OP_START:
1663 if ((active == -1) && !_start(thrd))
1664 ret = -EIO;
1665 break;
1666
1667 default:
1668 ret = -EINVAL;
1669 }
1670
1671 spin_unlock_irqrestore(&pl330->lock, flags);
1672 return ret;
1673}
1674
Boojin Kimb7d861d2011-12-26 18:49:52 +09001675/* Reserve an event */
1676static inline int _alloc_event(struct pl330_thread *thrd)
1677{
1678 struct pl330_dmac *pl330 = thrd->dmac;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001679 int ev;
1680
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001681 for (ev = 0; ev < pl330->pcfg.num_events; ev++)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001682 if (pl330->events[ev] == -1) {
1683 pl330->events[ev] = thrd->id;
1684 return ev;
1685 }
1686
1687 return -1;
1688}
1689
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001690static bool _chan_ns(const struct pl330_dmac *pl330, int i)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001691{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001692 return pl330->pcfg.irq_ns & (1 << i);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001693}
1694
1695/* Upon success, returns IdentityToken for the
1696 * allocated channel, NULL otherwise.
1697 */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001698static struct pl330_thread *pl330_request_channel(struct pl330_dmac *pl330)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001699{
1700 struct pl330_thread *thrd = NULL;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001701 unsigned long flags;
1702 int chans, i;
1703
Boojin Kimb7d861d2011-12-26 18:49:52 +09001704 if (pl330->state == DYING)
1705 return NULL;
1706
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001707 chans = pl330->pcfg.num_chan;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001708
1709 spin_lock_irqsave(&pl330->lock, flags);
1710
1711 for (i = 0; i < chans; i++) {
1712 thrd = &pl330->channels[i];
1713 if ((thrd->free) && (!_manager_ns(thrd) ||
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001714 _chan_ns(pl330, i))) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001715 thrd->ev = _alloc_event(thrd);
1716 if (thrd->ev >= 0) {
1717 thrd->free = false;
1718 thrd->lstenq = 1;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001719 thrd->req[0].desc = NULL;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001720 thrd->req[1].desc = NULL;
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001721 thrd->req_running = -1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001722 break;
1723 }
1724 }
1725 thrd = NULL;
1726 }
1727
1728 spin_unlock_irqrestore(&pl330->lock, flags);
1729
1730 return thrd;
1731}
1732
1733/* Release an event */
1734static inline void _free_event(struct pl330_thread *thrd, int ev)
1735{
1736 struct pl330_dmac *pl330 = thrd->dmac;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001737
1738 /* If the event is valid and was held by the thread */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001739 if (ev >= 0 && ev < pl330->pcfg.num_events
Boojin Kimb7d861d2011-12-26 18:49:52 +09001740 && pl330->events[ev] == thrd->id)
1741 pl330->events[ev] = -1;
1742}
1743
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +02001744static void pl330_release_channel(struct pl330_thread *thrd)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001745{
Boojin Kimb7d861d2011-12-26 18:49:52 +09001746 struct pl330_dmac *pl330;
1747 unsigned long flags;
1748
1749 if (!thrd || thrd->free)
1750 return;
1751
1752 _stop(thrd);
1753
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001754 dma_pl330_rqcb(thrd->req[1 - thrd->lstenq].desc, PL330_ERR_ABORT);
1755 dma_pl330_rqcb(thrd->req[thrd->lstenq].desc, PL330_ERR_ABORT);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001756
1757 pl330 = thrd->dmac;
1758
1759 spin_lock_irqsave(&pl330->lock, flags);
1760 _free_event(thrd, thrd->ev);
1761 thrd->free = true;
1762 spin_unlock_irqrestore(&pl330->lock, flags);
1763}
1764
1765/* Initialize the structure for PL330 configuration, that can be used
1766 * by the client driver the make best use of the DMAC
1767 */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001768static void read_dmac_config(struct pl330_dmac *pl330)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001769{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001770 void __iomem *regs = pl330->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001771 u32 val;
1772
1773 val = readl(regs + CRD) >> CRD_DATA_WIDTH_SHIFT;
1774 val &= CRD_DATA_WIDTH_MASK;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001775 pl330->pcfg.data_bus_width = 8 * (1 << val);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001776
1777 val = readl(regs + CRD) >> CRD_DATA_BUFF_SHIFT;
1778 val &= CRD_DATA_BUFF_MASK;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001779 pl330->pcfg.data_buf_dep = val + 1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001780
1781 val = readl(regs + CR0) >> CR0_NUM_CHANS_SHIFT;
1782 val &= CR0_NUM_CHANS_MASK;
1783 val += 1;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001784 pl330->pcfg.num_chan = val;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001785
1786 val = readl(regs + CR0);
1787 if (val & CR0_PERIPH_REQ_SET) {
1788 val = (val >> CR0_NUM_PERIPH_SHIFT) & CR0_NUM_PERIPH_MASK;
1789 val += 1;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001790 pl330->pcfg.num_peri = val;
1791 pl330->pcfg.peri_ns = readl(regs + CR4);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001792 } else {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001793 pl330->pcfg.num_peri = 0;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001794 }
1795
1796 val = readl(regs + CR0);
1797 if (val & CR0_BOOT_MAN_NS)
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001798 pl330->pcfg.mode |= DMAC_MODE_NS;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001799 else
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001800 pl330->pcfg.mode &= ~DMAC_MODE_NS;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001801
1802 val = readl(regs + CR0) >> CR0_NUM_EVENTS_SHIFT;
1803 val &= CR0_NUM_EVENTS_MASK;
1804 val += 1;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001805 pl330->pcfg.num_events = val;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001806
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001807 pl330->pcfg.irq_ns = readl(regs + CR3);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001808}
1809
1810static inline void _reset_thread(struct pl330_thread *thrd)
1811{
1812 struct pl330_dmac *pl330 = thrd->dmac;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001813
1814 thrd->req[0].mc_cpu = pl330->mcode_cpu
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001815 + (thrd->id * pl330->mcbufsz);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001816 thrd->req[0].mc_bus = pl330->mcode_bus
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001817 + (thrd->id * pl330->mcbufsz);
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001818 thrd->req[0].desc = NULL;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001819
1820 thrd->req[1].mc_cpu = thrd->req[0].mc_cpu
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001821 + pl330->mcbufsz / 2;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001822 thrd->req[1].mc_bus = thrd->req[0].mc_bus
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001823 + pl330->mcbufsz / 2;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001824 thrd->req[1].desc = NULL;
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001825
1826 thrd->req_running = -1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001827}
1828
1829static int dmac_alloc_threads(struct pl330_dmac *pl330)
1830{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001831 int chans = pl330->pcfg.num_chan;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001832 struct pl330_thread *thrd;
1833 int i;
1834
1835 /* Allocate 1 Manager and 'chans' Channel threads */
1836 pl330->channels = kzalloc((1 + chans) * sizeof(*thrd),
1837 GFP_KERNEL);
1838 if (!pl330->channels)
1839 return -ENOMEM;
1840
1841 /* Init Channel threads */
1842 for (i = 0; i < chans; i++) {
1843 thrd = &pl330->channels[i];
1844 thrd->id = i;
1845 thrd->dmac = pl330;
1846 _reset_thread(thrd);
1847 thrd->free = true;
1848 }
1849
1850 /* MANAGER is indexed at the end */
1851 thrd = &pl330->channels[chans];
1852 thrd->id = chans;
1853 thrd->dmac = pl330;
1854 thrd->free = false;
1855 pl330->manager = thrd;
1856
1857 return 0;
1858}
1859
1860static int dmac_alloc_resources(struct pl330_dmac *pl330)
1861{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001862 int chans = pl330->pcfg.num_chan;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001863 int ret;
1864
1865 /*
1866 * Alloc MicroCode buffer for 'chans' Channel threads.
1867 * A channel's buffer offset is (Channel_Id * MCODE_BUFF_PERCHAN)
1868 */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001869 pl330->mcode_cpu = dma_alloc_coherent(pl330->ddma.dev,
1870 chans * pl330->mcbufsz,
Boojin Kimb7d861d2011-12-26 18:49:52 +09001871 &pl330->mcode_bus, GFP_KERNEL);
1872 if (!pl330->mcode_cpu) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001873 dev_err(pl330->ddma.dev, "%s:%d Can't allocate memory!\n",
Boojin Kimb7d861d2011-12-26 18:49:52 +09001874 __func__, __LINE__);
1875 return -ENOMEM;
1876 }
1877
1878 ret = dmac_alloc_threads(pl330);
1879 if (ret) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001880 dev_err(pl330->ddma.dev, "%s:%d Can't to create channels for DMAC!\n",
Boojin Kimb7d861d2011-12-26 18:49:52 +09001881 __func__, __LINE__);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001882 dma_free_coherent(pl330->ddma.dev,
1883 chans * pl330->mcbufsz,
Boojin Kimb7d861d2011-12-26 18:49:52 +09001884 pl330->mcode_cpu, pl330->mcode_bus);
1885 return ret;
1886 }
1887
1888 return 0;
1889}
1890
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001891static int pl330_add(struct pl330_dmac *pl330)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001892{
Boojin Kimb7d861d2011-12-26 18:49:52 +09001893 void __iomem *regs;
1894 int i, ret;
1895
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001896 regs = pl330->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001897
1898 /* Check if we can handle this DMAC */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001899 if ((pl330->pcfg.periph_id & 0xfffff) != PERIPH_ID_VAL) {
1900 dev_err(pl330->ddma.dev, "PERIPH_ID 0x%x !\n",
1901 pl330->pcfg.periph_id);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001902 return -EINVAL;
1903 }
1904
1905 /* Read the configuration of the DMAC */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001906 read_dmac_config(pl330);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001907
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001908 if (pl330->pcfg.num_events == 0) {
1909 dev_err(pl330->ddma.dev, "%s:%d Can't work without events!\n",
Boojin Kimb7d861d2011-12-26 18:49:52 +09001910 __func__, __LINE__);
1911 return -EINVAL;
1912 }
1913
Boojin Kimb7d861d2011-12-26 18:49:52 +09001914 spin_lock_init(&pl330->lock);
1915
1916 INIT_LIST_HEAD(&pl330->req_done);
1917
1918 /* Use default MC buffer size if not provided */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001919 if (!pl330->mcbufsz)
1920 pl330->mcbufsz = MCODE_BUFF_PER_REQ * 2;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001921
1922 /* Mark all events as free */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001923 for (i = 0; i < pl330->pcfg.num_events; i++)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001924 pl330->events[i] = -1;
1925
1926 /* Allocate resources needed by the DMAC */
1927 ret = dmac_alloc_resources(pl330);
1928 if (ret) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001929 dev_err(pl330->ddma.dev, "Unable to create channels for DMAC\n");
Boojin Kimb7d861d2011-12-26 18:49:52 +09001930 return ret;
1931 }
1932
1933 tasklet_init(&pl330->tasks, pl330_dotask, (unsigned long) pl330);
1934
1935 pl330->state = INIT;
1936
1937 return 0;
1938}
1939
1940static int dmac_free_threads(struct pl330_dmac *pl330)
1941{
Boojin Kimb7d861d2011-12-26 18:49:52 +09001942 struct pl330_thread *thrd;
1943 int i;
1944
1945 /* Release Channel threads */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001946 for (i = 0; i < pl330->pcfg.num_chan; i++) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001947 thrd = &pl330->channels[i];
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +02001948 pl330_release_channel(thrd);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001949 }
1950
1951 /* Free memory */
1952 kfree(pl330->channels);
1953
1954 return 0;
1955}
1956
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001957static void pl330_del(struct pl330_dmac *pl330)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001958{
Boojin Kimb7d861d2011-12-26 18:49:52 +09001959 pl330->state = UNINIT;
1960
1961 tasklet_kill(&pl330->tasks);
1962
1963 /* Free DMAC resources */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001964 dmac_free_threads(pl330);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001965
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001966 dma_free_coherent(pl330->ddma.dev,
1967 pl330->pcfg.num_chan * pl330->mcbufsz, pl330->mcode_cpu,
1968 pl330->mcode_bus);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001969}
1970
Thomas Abraham3e2ec132011-10-24 11:43:02 +02001971/* forward declaration */
1972static struct amba_driver pl330_driver;
1973
Jassi Brarb3040e42010-05-23 20:28:19 -07001974static inline struct dma_pl330_chan *
1975to_pchan(struct dma_chan *ch)
1976{
1977 if (!ch)
1978 return NULL;
1979
1980 return container_of(ch, struct dma_pl330_chan, chan);
1981}
1982
1983static inline struct dma_pl330_desc *
1984to_desc(struct dma_async_tx_descriptor *tx)
1985{
1986 return container_of(tx, struct dma_pl330_desc, txd);
1987}
1988
Jassi Brarb3040e42010-05-23 20:28:19 -07001989static inline void fill_queue(struct dma_pl330_chan *pch)
1990{
1991 struct dma_pl330_desc *desc;
1992 int ret;
1993
1994 list_for_each_entry(desc, &pch->work_list, node) {
1995
1996 /* If already submitted */
1997 if (desc->status == BUSY)
Jassi Brar30fb9802013-02-13 16:13:14 +05301998 continue;
Jassi Brarb3040e42010-05-23 20:28:19 -07001999
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02002000 ret = pl330_submit_req(pch->thread, desc);
Jassi Brarb3040e42010-05-23 20:28:19 -07002001 if (!ret) {
2002 desc->status = BUSY;
Jassi Brarb3040e42010-05-23 20:28:19 -07002003 } else if (ret == -EAGAIN) {
2004 /* QFull or DMAC Dying */
2005 break;
2006 } else {
2007 /* Unacceptable request */
2008 desc->status = DONE;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002009 dev_err(pch->dmac->ddma.dev, "%s:%d Bad Desc(%d)\n",
Jassi Brarb3040e42010-05-23 20:28:19 -07002010 __func__, __LINE__, desc->txd.cookie);
2011 tasklet_schedule(&pch->task);
2012 }
2013 }
2014}
2015
2016static void pl330_tasklet(unsigned long data)
2017{
2018 struct dma_pl330_chan *pch = (struct dma_pl330_chan *)data;
2019 struct dma_pl330_desc *desc, *_dt;
2020 unsigned long flags;
Jassi Brarb3040e42010-05-23 20:28:19 -07002021
2022 spin_lock_irqsave(&pch->lock, flags);
2023
2024 /* Pick up ripe tomatoes */
2025 list_for_each_entry_safe(desc, _dt, &pch->work_list, node)
2026 if (desc->status == DONE) {
Tushar Behera30c1dc02012-05-23 16:47:31 +05302027 if (!pch->cyclic)
Vinod Kouleab21582012-05-11 11:24:41 +05302028 dma_cookie_complete(&desc->txd);
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002029 list_move_tail(&desc->node, &pch->completed_list);
Jassi Brarb3040e42010-05-23 20:28:19 -07002030 }
2031
2032 /* Try to submit a req imm. next to the last completed cookie */
2033 fill_queue(pch);
2034
2035 /* Make sure the PL330 Channel thread is active */
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +02002036 pl330_chan_ctrl(pch->thread, PL330_OP_START);
Jassi Brarb3040e42010-05-23 20:28:19 -07002037
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002038 while (!list_empty(&pch->completed_list)) {
2039 dma_async_tx_callback callback;
2040 void *callback_param;
Jassi Brarb3040e42010-05-23 20:28:19 -07002041
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002042 desc = list_first_entry(&pch->completed_list,
2043 struct dma_pl330_desc, node);
2044
2045 callback = desc->txd.callback;
2046 callback_param = desc->txd.callback_param;
2047
2048 if (pch->cyclic) {
2049 desc->status = PREP;
2050 list_move_tail(&desc->node, &pch->work_list);
2051 } else {
2052 desc->status = FREE;
2053 list_move_tail(&desc->node, &pch->dmac->desc_pool);
2054 }
2055
Dan Williamsd38a8c62013-10-18 19:35:23 +02002056 dma_descriptor_unmap(&desc->txd);
2057
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002058 if (callback) {
2059 spin_unlock_irqrestore(&pch->lock, flags);
2060 callback(callback_param);
2061 spin_lock_irqsave(&pch->lock, flags);
2062 }
2063 }
2064 spin_unlock_irqrestore(&pch->lock, flags);
Jassi Brarb3040e42010-05-23 20:28:19 -07002065}
2066
Thomas Abraham3e2ec132011-10-24 11:43:02 +02002067bool pl330_filter(struct dma_chan *chan, void *param)
2068{
Thomas Abrahamcd072512011-10-24 11:43:11 +02002069 u8 *peri_id;
Thomas Abraham3e2ec132011-10-24 11:43:02 +02002070
2071 if (chan->device->dev->driver != &pl330_driver.drv)
2072 return false;
2073
Thomas Abrahamcd072512011-10-24 11:43:11 +02002074 peri_id = chan->private;
Dan Carpenter2f986ec2013-11-08 12:51:16 +03002075 return *peri_id == (unsigned long)param;
Thomas Abraham3e2ec132011-10-24 11:43:02 +02002076}
2077EXPORT_SYMBOL(pl330_filter);
2078
Padmavathi Vennaa80258f2013-02-14 09:10:06 +05302079static struct dma_chan *of_dma_pl330_xlate(struct of_phandle_args *dma_spec,
2080 struct of_dma *ofdma)
2081{
2082 int count = dma_spec->args_count;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002083 struct pl330_dmac *pl330 = ofdma->of_dma_data;
Lars-Peter Clausen70cbb162014-01-11 20:08:39 +01002084 unsigned int chan_id;
Padmavathi Vennaa80258f2013-02-14 09:10:06 +05302085
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002086 if (!pl330)
2087 return NULL;
2088
Padmavathi Vennaa80258f2013-02-14 09:10:06 +05302089 if (count != 1)
2090 return NULL;
2091
Lars-Peter Clausen70cbb162014-01-11 20:08:39 +01002092 chan_id = dma_spec->args[0];
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002093 if (chan_id >= pl330->num_peripherals)
Lars-Peter Clausen70cbb162014-01-11 20:08:39 +01002094 return NULL;
Padmavathi Vennaa80258f2013-02-14 09:10:06 +05302095
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002096 return dma_get_slave_channel(&pl330->peripherals[chan_id].chan);
Padmavathi Vennaa80258f2013-02-14 09:10:06 +05302097}
2098
Jassi Brarb3040e42010-05-23 20:28:19 -07002099static int pl330_alloc_chan_resources(struct dma_chan *chan)
2100{
2101 struct dma_pl330_chan *pch = to_pchan(chan);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002102 struct pl330_dmac *pl330 = pch->dmac;
Jassi Brarb3040e42010-05-23 20:28:19 -07002103 unsigned long flags;
2104
2105 spin_lock_irqsave(&pch->lock, flags);
2106
Russell King - ARM Linuxd3ee98cdc2012-03-06 22:35:47 +00002107 dma_cookie_init(chan);
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002108 pch->cyclic = false;
Jassi Brarb3040e42010-05-23 20:28:19 -07002109
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002110 pch->thread = pl330_request_channel(pl330);
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +02002111 if (!pch->thread) {
Jassi Brarb3040e42010-05-23 20:28:19 -07002112 spin_unlock_irqrestore(&pch->lock, flags);
Inderpal Singh02747882012-09-17 09:57:45 +05302113 return -ENOMEM;
Jassi Brarb3040e42010-05-23 20:28:19 -07002114 }
2115
2116 tasklet_init(&pch->task, pl330_tasklet, (unsigned long) pch);
2117
2118 spin_unlock_irqrestore(&pch->lock, flags);
2119
2120 return 1;
2121}
2122
2123static int pl330_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd, unsigned long arg)
2124{
2125 struct dma_pl330_chan *pch = to_pchan(chan);
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002126 struct dma_pl330_desc *desc;
Jassi Brarb3040e42010-05-23 20:28:19 -07002127 unsigned long flags;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002128 struct pl330_dmac *pl330 = pch->dmac;
Boojin Kim1d0c1d62011-09-02 09:44:31 +09002129 struct dma_slave_config *slave_config;
Boojin Kimae43b882011-09-02 09:44:32 +09002130 LIST_HEAD(list);
Jassi Brarb3040e42010-05-23 20:28:19 -07002131
Boojin Kim1d0c1d62011-09-02 09:44:31 +09002132 switch (cmd) {
2133 case DMA_TERMINATE_ALL:
2134 spin_lock_irqsave(&pch->lock, flags);
2135
2136 /* FLUSH the PL330 Channel thread */
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +02002137 pl330_chan_ctrl(pch->thread, PL330_OP_FLUSH);
Boojin Kim1d0c1d62011-09-02 09:44:31 +09002138
2139 /* Mark all desc done */
Lars-Peter Clausen04abf5d2014-01-11 20:08:38 +01002140 list_for_each_entry(desc, &pch->submitted_list, node) {
2141 desc->status = FREE;
2142 dma_cookie_complete(&desc->txd);
2143 }
2144
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002145 list_for_each_entry(desc, &pch->work_list , node) {
2146 desc->status = FREE;
2147 dma_cookie_complete(&desc->txd);
Boojin Kimae43b882011-09-02 09:44:32 +09002148 }
Boojin Kim1d0c1d62011-09-02 09:44:31 +09002149
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002150 list_for_each_entry(desc, &pch->completed_list , node) {
2151 desc->status = FREE;
2152 dma_cookie_complete(&desc->txd);
2153 }
2154
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002155 list_splice_tail_init(&pch->submitted_list, &pl330->desc_pool);
2156 list_splice_tail_init(&pch->work_list, &pl330->desc_pool);
2157 list_splice_tail_init(&pch->completed_list, &pl330->desc_pool);
Boojin Kim1d0c1d62011-09-02 09:44:31 +09002158 spin_unlock_irqrestore(&pch->lock, flags);
Boojin Kim1d0c1d62011-09-02 09:44:31 +09002159 break;
2160 case DMA_SLAVE_CONFIG:
2161 slave_config = (struct dma_slave_config *)arg;
2162
Vinod Kouldb8196d2011-10-13 22:34:23 +05302163 if (slave_config->direction == DMA_MEM_TO_DEV) {
Boojin Kim1d0c1d62011-09-02 09:44:31 +09002164 if (slave_config->dst_addr)
2165 pch->fifo_addr = slave_config->dst_addr;
2166 if (slave_config->dst_addr_width)
2167 pch->burst_sz = __ffs(slave_config->dst_addr_width);
2168 if (slave_config->dst_maxburst)
2169 pch->burst_len = slave_config->dst_maxburst;
Vinod Kouldb8196d2011-10-13 22:34:23 +05302170 } else if (slave_config->direction == DMA_DEV_TO_MEM) {
Boojin Kim1d0c1d62011-09-02 09:44:31 +09002171 if (slave_config->src_addr)
2172 pch->fifo_addr = slave_config->src_addr;
2173 if (slave_config->src_addr_width)
2174 pch->burst_sz = __ffs(slave_config->src_addr_width);
2175 if (slave_config->src_maxburst)
2176 pch->burst_len = slave_config->src_maxburst;
2177 }
2178 break;
2179 default:
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002180 dev_err(pch->dmac->ddma.dev, "Not supported command.\n");
Jassi Brarb3040e42010-05-23 20:28:19 -07002181 return -ENXIO;
Boojin Kim1d0c1d62011-09-02 09:44:31 +09002182 }
Jassi Brarb3040e42010-05-23 20:28:19 -07002183
2184 return 0;
2185}
2186
2187static void pl330_free_chan_resources(struct dma_chan *chan)
2188{
2189 struct dma_pl330_chan *pch = to_pchan(chan);
2190 unsigned long flags;
2191
Jassi Brarb3040e42010-05-23 20:28:19 -07002192 tasklet_kill(&pch->task);
2193
Bartlomiej Zolnierkiewiczda331ba2013-07-03 15:00:43 -07002194 spin_lock_irqsave(&pch->lock, flags);
2195
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +02002196 pl330_release_channel(pch->thread);
2197 pch->thread = NULL;
Jassi Brarb3040e42010-05-23 20:28:19 -07002198
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002199 if (pch->cyclic)
2200 list_splice_tail_init(&pch->work_list, &pch->dmac->desc_pool);
2201
Jassi Brarb3040e42010-05-23 20:28:19 -07002202 spin_unlock_irqrestore(&pch->lock, flags);
2203}
2204
2205static enum dma_status
2206pl330_tx_status(struct dma_chan *chan, dma_cookie_t cookie,
2207 struct dma_tx_state *txstate)
2208{
Russell King - ARM Linux96a2af42012-03-06 22:35:27 +00002209 return dma_cookie_status(chan, cookie, txstate);
Jassi Brarb3040e42010-05-23 20:28:19 -07002210}
2211
2212static void pl330_issue_pending(struct dma_chan *chan)
2213{
Lars-Peter Clausen04abf5d2014-01-11 20:08:38 +01002214 struct dma_pl330_chan *pch = to_pchan(chan);
2215 unsigned long flags;
2216
2217 spin_lock_irqsave(&pch->lock, flags);
2218 list_splice_tail_init(&pch->submitted_list, &pch->work_list);
2219 spin_unlock_irqrestore(&pch->lock, flags);
2220
2221 pl330_tasklet((unsigned long)pch);
Jassi Brarb3040e42010-05-23 20:28:19 -07002222}
2223
2224/*
2225 * We returned the last one of the circular list of descriptor(s)
2226 * from prep_xxx, so the argument to submit corresponds to the last
2227 * descriptor of the list.
2228 */
2229static dma_cookie_t pl330_tx_submit(struct dma_async_tx_descriptor *tx)
2230{
2231 struct dma_pl330_desc *desc, *last = to_desc(tx);
2232 struct dma_pl330_chan *pch = to_pchan(tx->chan);
2233 dma_cookie_t cookie;
2234 unsigned long flags;
2235
2236 spin_lock_irqsave(&pch->lock, flags);
2237
2238 /* Assign cookies to all nodes */
Jassi Brarb3040e42010-05-23 20:28:19 -07002239 while (!list_empty(&last->node)) {
2240 desc = list_entry(last->node.next, struct dma_pl330_desc, node);
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002241 if (pch->cyclic) {
2242 desc->txd.callback = last->txd.callback;
2243 desc->txd.callback_param = last->txd.callback_param;
2244 }
Jassi Brarb3040e42010-05-23 20:28:19 -07002245
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00002246 dma_cookie_assign(&desc->txd);
Jassi Brarb3040e42010-05-23 20:28:19 -07002247
Lars-Peter Clausen04abf5d2014-01-11 20:08:38 +01002248 list_move_tail(&desc->node, &pch->submitted_list);
Jassi Brarb3040e42010-05-23 20:28:19 -07002249 }
2250
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00002251 cookie = dma_cookie_assign(&last->txd);
Lars-Peter Clausen04abf5d2014-01-11 20:08:38 +01002252 list_add_tail(&last->node, &pch->submitted_list);
Jassi Brarb3040e42010-05-23 20:28:19 -07002253 spin_unlock_irqrestore(&pch->lock, flags);
2254
2255 return cookie;
2256}
2257
2258static inline void _init_desc(struct dma_pl330_desc *desc)
2259{
Jassi Brarb3040e42010-05-23 20:28:19 -07002260 desc->rqcfg.swap = SWAP_NO;
Lars-Peter Clausenf0564c72014-07-06 20:32:19 +02002261 desc->rqcfg.scctl = CCTRL0;
2262 desc->rqcfg.dcctl = CCTRL0;
Jassi Brarb3040e42010-05-23 20:28:19 -07002263 desc->txd.tx_submit = pl330_tx_submit;
2264
2265 INIT_LIST_HEAD(&desc->node);
2266}
2267
2268/* Returns the number of descriptors added to the DMAC pool */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002269static int add_desc(struct pl330_dmac *pl330, gfp_t flg, int count)
Jassi Brarb3040e42010-05-23 20:28:19 -07002270{
2271 struct dma_pl330_desc *desc;
2272 unsigned long flags;
2273 int i;
2274
Will Deacon0baf8f62013-12-02 18:01:30 +00002275 desc = kcalloc(count, sizeof(*desc), flg);
Jassi Brarb3040e42010-05-23 20:28:19 -07002276 if (!desc)
2277 return 0;
2278
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002279 spin_lock_irqsave(&pl330->pool_lock, flags);
Jassi Brarb3040e42010-05-23 20:28:19 -07002280
2281 for (i = 0; i < count; i++) {
2282 _init_desc(&desc[i]);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002283 list_add_tail(&desc[i].node, &pl330->desc_pool);
Jassi Brarb3040e42010-05-23 20:28:19 -07002284 }
2285
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002286 spin_unlock_irqrestore(&pl330->pool_lock, flags);
Jassi Brarb3040e42010-05-23 20:28:19 -07002287
2288 return count;
2289}
2290
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002291static struct dma_pl330_desc *pluck_desc(struct pl330_dmac *pl330)
Jassi Brarb3040e42010-05-23 20:28:19 -07002292{
2293 struct dma_pl330_desc *desc = NULL;
2294 unsigned long flags;
2295
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002296 spin_lock_irqsave(&pl330->pool_lock, flags);
Jassi Brarb3040e42010-05-23 20:28:19 -07002297
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002298 if (!list_empty(&pl330->desc_pool)) {
2299 desc = list_entry(pl330->desc_pool.next,
Jassi Brarb3040e42010-05-23 20:28:19 -07002300 struct dma_pl330_desc, node);
2301
2302 list_del_init(&desc->node);
2303
2304 desc->status = PREP;
2305 desc->txd.callback = NULL;
2306 }
2307
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002308 spin_unlock_irqrestore(&pl330->pool_lock, flags);
Jassi Brarb3040e42010-05-23 20:28:19 -07002309
2310 return desc;
2311}
2312
2313static struct dma_pl330_desc *pl330_get_desc(struct dma_pl330_chan *pch)
2314{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002315 struct pl330_dmac *pl330 = pch->dmac;
Thomas Abrahamcd072512011-10-24 11:43:11 +02002316 u8 *peri_id = pch->chan.private;
Jassi Brarb3040e42010-05-23 20:28:19 -07002317 struct dma_pl330_desc *desc;
2318
2319 /* Pluck one desc from the pool of DMAC */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002320 desc = pluck_desc(pl330);
Jassi Brarb3040e42010-05-23 20:28:19 -07002321
2322 /* If the DMAC pool is empty, alloc new */
2323 if (!desc) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002324 if (!add_desc(pl330, GFP_ATOMIC, 1))
Jassi Brarb3040e42010-05-23 20:28:19 -07002325 return NULL;
2326
2327 /* Try again */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002328 desc = pluck_desc(pl330);
Jassi Brarb3040e42010-05-23 20:28:19 -07002329 if (!desc) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002330 dev_err(pch->dmac->ddma.dev,
Jassi Brarb3040e42010-05-23 20:28:19 -07002331 "%s:%d ALERT!\n", __func__, __LINE__);
2332 return NULL;
2333 }
2334 }
2335
2336 /* Initialize the descriptor */
2337 desc->pchan = pch;
2338 desc->txd.cookie = 0;
2339 async_tx_ack(&desc->txd);
2340
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02002341 desc->peri = peri_id ? pch->chan.chan_id : 0;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002342 desc->rqcfg.pcfg = &pch->dmac->pcfg;
Jassi Brarb3040e42010-05-23 20:28:19 -07002343
2344 dma_async_tx_descriptor_init(&desc->txd, &pch->chan);
2345
2346 return desc;
2347}
2348
2349static inline void fill_px(struct pl330_xfer *px,
2350 dma_addr_t dst, dma_addr_t src, size_t len)
2351{
Jassi Brarb3040e42010-05-23 20:28:19 -07002352 px->bytes = len;
2353 px->dst_addr = dst;
2354 px->src_addr = src;
2355}
2356
2357static struct dma_pl330_desc *
2358__pl330_prep_dma_memcpy(struct dma_pl330_chan *pch, dma_addr_t dst,
2359 dma_addr_t src, size_t len)
2360{
2361 struct dma_pl330_desc *desc = pl330_get_desc(pch);
2362
2363 if (!desc) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002364 dev_err(pch->dmac->ddma.dev, "%s:%d Unable to fetch desc\n",
Jassi Brarb3040e42010-05-23 20:28:19 -07002365 __func__, __LINE__);
2366 return NULL;
2367 }
2368
2369 /*
2370 * Ideally we should lookout for reqs bigger than
2371 * those that can be programmed with 256 bytes of
2372 * MC buffer, but considering a req size is seldom
2373 * going to be word-unaligned and more than 200MB,
2374 * we take it easy.
2375 * Also, should the limit is reached we'd rather
2376 * have the platform increase MC buffer size than
2377 * complicating this API driver.
2378 */
2379 fill_px(&desc->px, dst, src, len);
2380
2381 return desc;
2382}
2383
2384/* Call after fixing burst size */
2385static inline int get_burst_len(struct dma_pl330_desc *desc, size_t len)
2386{
2387 struct dma_pl330_chan *pch = desc->pchan;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002388 struct pl330_dmac *pl330 = pch->dmac;
Jassi Brarb3040e42010-05-23 20:28:19 -07002389 int burst_len;
2390
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002391 burst_len = pl330->pcfg.data_bus_width / 8;
2392 burst_len *= pl330->pcfg.data_buf_dep;
Jassi Brarb3040e42010-05-23 20:28:19 -07002393 burst_len >>= desc->rqcfg.brst_size;
2394
2395 /* src/dst_burst_len can't be more than 16 */
2396 if (burst_len > 16)
2397 burst_len = 16;
2398
2399 while (burst_len > 1) {
2400 if (!(len % (burst_len << desc->rqcfg.brst_size)))
2401 break;
2402 burst_len--;
2403 }
2404
2405 return burst_len;
2406}
2407
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002408static struct dma_async_tx_descriptor *pl330_prep_dma_cyclic(
2409 struct dma_chan *chan, dma_addr_t dma_addr, size_t len,
Alexandre Bounine185ecb52012-03-08 15:35:13 -05002410 size_t period_len, enum dma_transfer_direction direction,
Peter Ujfalusiec8b5e42012-09-14 15:05:47 +03002411 unsigned long flags, void *context)
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002412{
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002413 struct dma_pl330_desc *desc = NULL, *first = NULL;
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002414 struct dma_pl330_chan *pch = to_pchan(chan);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002415 struct pl330_dmac *pl330 = pch->dmac;
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002416 unsigned int i;
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002417 dma_addr_t dst;
2418 dma_addr_t src;
2419
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002420 if (len % period_len != 0)
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002421 return NULL;
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002422
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002423 if (!is_slave_direction(direction)) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002424 dev_err(pch->dmac->ddma.dev, "%s:%d Invalid dma direction\n",
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002425 __func__, __LINE__);
2426 return NULL;
2427 }
2428
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002429 for (i = 0; i < len / period_len; i++) {
2430 desc = pl330_get_desc(pch);
2431 if (!desc) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002432 dev_err(pch->dmac->ddma.dev, "%s:%d Unable to fetch desc\n",
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002433 __func__, __LINE__);
2434
2435 if (!first)
2436 return NULL;
2437
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002438 spin_lock_irqsave(&pl330->pool_lock, flags);
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002439
2440 while (!list_empty(&first->node)) {
2441 desc = list_entry(first->node.next,
2442 struct dma_pl330_desc, node);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002443 list_move_tail(&desc->node, &pl330->desc_pool);
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002444 }
2445
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002446 list_move_tail(&first->node, &pl330->desc_pool);
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002447
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002448 spin_unlock_irqrestore(&pl330->pool_lock, flags);
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002449
2450 return NULL;
2451 }
2452
2453 switch (direction) {
2454 case DMA_MEM_TO_DEV:
2455 desc->rqcfg.src_inc = 1;
2456 desc->rqcfg.dst_inc = 0;
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002457 src = dma_addr;
2458 dst = pch->fifo_addr;
2459 break;
2460 case DMA_DEV_TO_MEM:
2461 desc->rqcfg.src_inc = 0;
2462 desc->rqcfg.dst_inc = 1;
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002463 src = pch->fifo_addr;
2464 dst = dma_addr;
2465 break;
2466 default:
2467 break;
2468 }
2469
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02002470 desc->rqtype = direction;
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002471 desc->rqcfg.brst_size = pch->burst_sz;
2472 desc->rqcfg.brst_len = 1;
2473 fill_px(&desc->px, dst, src, period_len);
2474
2475 if (!first)
2476 first = desc;
2477 else
2478 list_add_tail(&desc->node, &first->node);
2479
2480 dma_addr += period_len;
2481 }
2482
2483 if (!desc)
2484 return NULL;
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002485
2486 pch->cyclic = true;
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002487 desc->txd.flags = flags;
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002488
2489 return &desc->txd;
2490}
2491
Jassi Brarb3040e42010-05-23 20:28:19 -07002492static struct dma_async_tx_descriptor *
2493pl330_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dst,
2494 dma_addr_t src, size_t len, unsigned long flags)
2495{
2496 struct dma_pl330_desc *desc;
2497 struct dma_pl330_chan *pch = to_pchan(chan);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002498 struct pl330_dmac *pl330 = pch->dmac;
Jassi Brarb3040e42010-05-23 20:28:19 -07002499 int burst;
2500
Rob Herring4e0e6102011-07-25 16:05:04 -05002501 if (unlikely(!pch || !len))
Jassi Brarb3040e42010-05-23 20:28:19 -07002502 return NULL;
2503
Jassi Brarb3040e42010-05-23 20:28:19 -07002504 desc = __pl330_prep_dma_memcpy(pch, dst, src, len);
2505 if (!desc)
2506 return NULL;
2507
2508 desc->rqcfg.src_inc = 1;
2509 desc->rqcfg.dst_inc = 1;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02002510 desc->rqtype = DMA_MEM_TO_MEM;
Jassi Brarb3040e42010-05-23 20:28:19 -07002511
2512 /* Select max possible burst size */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002513 burst = pl330->pcfg.data_bus_width / 8;
Jassi Brarb3040e42010-05-23 20:28:19 -07002514
2515 while (burst > 1) {
2516 if (!(len % burst))
2517 break;
2518 burst /= 2;
2519 }
2520
2521 desc->rqcfg.brst_size = 0;
2522 while (burst != (1 << desc->rqcfg.brst_size))
2523 desc->rqcfg.brst_size++;
2524
2525 desc->rqcfg.brst_len = get_burst_len(desc, len);
2526
2527 desc->txd.flags = flags;
2528
2529 return &desc->txd;
2530}
2531
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002532static void __pl330_giveback_desc(struct pl330_dmac *pl330,
Chanho Park52a9d172013-08-09 20:11:33 +09002533 struct dma_pl330_desc *first)
2534{
2535 unsigned long flags;
2536 struct dma_pl330_desc *desc;
2537
2538 if (!first)
2539 return;
2540
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002541 spin_lock_irqsave(&pl330->pool_lock, flags);
Chanho Park52a9d172013-08-09 20:11:33 +09002542
2543 while (!list_empty(&first->node)) {
2544 desc = list_entry(first->node.next,
2545 struct dma_pl330_desc, node);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002546 list_move_tail(&desc->node, &pl330->desc_pool);
Chanho Park52a9d172013-08-09 20:11:33 +09002547 }
2548
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002549 list_move_tail(&first->node, &pl330->desc_pool);
Chanho Park52a9d172013-08-09 20:11:33 +09002550
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002551 spin_unlock_irqrestore(&pl330->pool_lock, flags);
Chanho Park52a9d172013-08-09 20:11:33 +09002552}
2553
Jassi Brarb3040e42010-05-23 20:28:19 -07002554static struct dma_async_tx_descriptor *
2555pl330_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
Vinod Kouldb8196d2011-10-13 22:34:23 +05302556 unsigned int sg_len, enum dma_transfer_direction direction,
Alexandre Bounine185ecb52012-03-08 15:35:13 -05002557 unsigned long flg, void *context)
Jassi Brarb3040e42010-05-23 20:28:19 -07002558{
2559 struct dma_pl330_desc *first, *desc = NULL;
2560 struct dma_pl330_chan *pch = to_pchan(chan);
Jassi Brarb3040e42010-05-23 20:28:19 -07002561 struct scatterlist *sg;
Boojin Kim1b9bb712011-09-02 09:44:30 +09002562 int i;
Jassi Brarb3040e42010-05-23 20:28:19 -07002563 dma_addr_t addr;
2564
Thomas Abrahamcd072512011-10-24 11:43:11 +02002565 if (unlikely(!pch || !sgl || !sg_len))
Jassi Brarb3040e42010-05-23 20:28:19 -07002566 return NULL;
2567
Boojin Kim1b9bb712011-09-02 09:44:30 +09002568 addr = pch->fifo_addr;
Jassi Brarb3040e42010-05-23 20:28:19 -07002569
2570 first = NULL;
2571
2572 for_each_sg(sgl, sg, sg_len, i) {
2573
2574 desc = pl330_get_desc(pch);
2575 if (!desc) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002576 struct pl330_dmac *pl330 = pch->dmac;
Jassi Brarb3040e42010-05-23 20:28:19 -07002577
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002578 dev_err(pch->dmac->ddma.dev,
Jassi Brarb3040e42010-05-23 20:28:19 -07002579 "%s:%d Unable to fetch desc\n",
2580 __func__, __LINE__);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002581 __pl330_giveback_desc(pl330, first);
Jassi Brarb3040e42010-05-23 20:28:19 -07002582
2583 return NULL;
2584 }
2585
2586 if (!first)
2587 first = desc;
2588 else
2589 list_add_tail(&desc->node, &first->node);
2590
Vinod Kouldb8196d2011-10-13 22:34:23 +05302591 if (direction == DMA_MEM_TO_DEV) {
Jassi Brarb3040e42010-05-23 20:28:19 -07002592 desc->rqcfg.src_inc = 1;
2593 desc->rqcfg.dst_inc = 0;
2594 fill_px(&desc->px,
2595 addr, sg_dma_address(sg), sg_dma_len(sg));
2596 } else {
2597 desc->rqcfg.src_inc = 0;
2598 desc->rqcfg.dst_inc = 1;
2599 fill_px(&desc->px,
2600 sg_dma_address(sg), addr, sg_dma_len(sg));
2601 }
2602
Boojin Kim1b9bb712011-09-02 09:44:30 +09002603 desc->rqcfg.brst_size = pch->burst_sz;
Jassi Brarb3040e42010-05-23 20:28:19 -07002604 desc->rqcfg.brst_len = 1;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02002605 desc->rqtype = direction;
Jassi Brarb3040e42010-05-23 20:28:19 -07002606 }
2607
2608 /* Return the last desc in the chain */
2609 desc->txd.flags = flg;
2610 return &desc->txd;
2611}
2612
2613static irqreturn_t pl330_irq_handler(int irq, void *data)
2614{
2615 if (pl330_update(data))
2616 return IRQ_HANDLED;
2617 else
2618 return IRQ_NONE;
2619}
2620
Lars-Peter Clausenca38ff12013-07-15 17:53:08 +02002621#define PL330_DMA_BUSWIDTHS \
2622 BIT(DMA_SLAVE_BUSWIDTH_UNDEFINED) | \
2623 BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) | \
2624 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) | \
2625 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) | \
2626 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES)
2627
2628static int pl330_dma_device_slave_caps(struct dma_chan *dchan,
2629 struct dma_slave_caps *caps)
2630{
2631 caps->src_addr_widths = PL330_DMA_BUSWIDTHS;
2632 caps->dstn_addr_widths = PL330_DMA_BUSWIDTHS;
2633 caps->directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
2634 caps->cmd_pause = false;
2635 caps->cmd_terminate = true;
Lars-Peter Clausenbfb9bb42014-01-11 14:02:17 +01002636 caps->residue_granularity = DMA_RESIDUE_GRANULARITY_DESCRIPTOR;
Lars-Peter Clausenca38ff12013-07-15 17:53:08 +02002637
Lars-Peter Clausenca38ff12013-07-15 17:53:08 +02002638 return 0;
2639}
2640
Bill Pemberton463a1f82012-11-19 13:22:55 -05002641static int
Russell Kingaa25afa2011-02-19 15:55:00 +00002642pl330_probe(struct amba_device *adev, const struct amba_id *id)
Jassi Brarb3040e42010-05-23 20:28:19 -07002643{
2644 struct dma_pl330_platdata *pdat;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002645 struct pl330_config *pcfg;
2646 struct pl330_dmac *pl330;
Padmavathi Venna0b94c572013-03-05 14:55:31 +05302647 struct dma_pl330_chan *pch, *_p;
Jassi Brarb3040e42010-05-23 20:28:19 -07002648 struct dma_device *pd;
2649 struct resource *res;
2650 int i, ret, irq;
Rob Herring4e0e6102011-07-25 16:05:04 -05002651 int num_chan;
Jassi Brarb3040e42010-05-23 20:28:19 -07002652
Jingoo Hand4adcc02013-07-30 17:09:11 +09002653 pdat = dev_get_platdata(&adev->dev);
Jassi Brarb3040e42010-05-23 20:28:19 -07002654
Russell King64113012013-06-27 10:29:32 +01002655 ret = dma_set_mask_and_coherent(&adev->dev, DMA_BIT_MASK(32));
2656 if (ret)
2657 return ret;
2658
Jassi Brarb3040e42010-05-23 20:28:19 -07002659 /* Allocate a new DMAC and its Channels */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002660 pl330 = devm_kzalloc(&adev->dev, sizeof(*pl330), GFP_KERNEL);
2661 if (!pl330) {
Jassi Brarb3040e42010-05-23 20:28:19 -07002662 dev_err(&adev->dev, "unable to allocate mem\n");
2663 return -ENOMEM;
2664 }
2665
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002666 pl330->mcbufsz = pdat ? pdat->mcbuf_sz : 0;
Jassi Brarb3040e42010-05-23 20:28:19 -07002667
2668 res = &adev->res;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002669 pl330->base = devm_ioremap_resource(&adev->dev, res);
2670 if (IS_ERR(pl330->base))
2671 return PTR_ERR(pl330->base);
Jassi Brarb3040e42010-05-23 20:28:19 -07002672
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002673 amba_set_drvdata(adev, pl330);
Boojin Kima2f52032011-09-02 09:44:29 +09002674
Dan Carpenter02808b42013-11-08 12:50:24 +03002675 for (i = 0; i < AMBA_NR_IRQS; i++) {
Michal Simeke98b3ca2013-09-30 08:50:48 +02002676 irq = adev->irq[i];
2677 if (irq) {
2678 ret = devm_request_irq(&adev->dev, irq,
2679 pl330_irq_handler, 0,
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002680 dev_name(&adev->dev), pl330);
Michal Simeke98b3ca2013-09-30 08:50:48 +02002681 if (ret)
2682 return ret;
2683 } else {
2684 break;
2685 }
2686 }
Jassi Brarb3040e42010-05-23 20:28:19 -07002687
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002688 pcfg = &pl330->pcfg;
2689
2690 pcfg->periph_id = adev->periphid;
2691 ret = pl330_add(pl330);
Jassi Brarb3040e42010-05-23 20:28:19 -07002692 if (ret)
Michal Simek173e8382013-09-04 16:40:17 +02002693 return ret;
Jassi Brarb3040e42010-05-23 20:28:19 -07002694
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002695 INIT_LIST_HEAD(&pl330->desc_pool);
2696 spin_lock_init(&pl330->pool_lock);
Jassi Brarb3040e42010-05-23 20:28:19 -07002697
2698 /* Create a descriptor pool of default size */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002699 if (!add_desc(pl330, GFP_KERNEL, NR_DEFAULT_DESC))
Jassi Brarb3040e42010-05-23 20:28:19 -07002700 dev_warn(&adev->dev, "unable to allocate desc\n");
2701
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002702 pd = &pl330->ddma;
Jassi Brarb3040e42010-05-23 20:28:19 -07002703 INIT_LIST_HEAD(&pd->channels);
2704
2705 /* Initialize channel parameters */
Olof Johanssonc8473822012-04-08 16:26:19 -07002706 if (pdat)
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002707 num_chan = max_t(int, pdat->nr_valid_peri, pcfg->num_chan);
Olof Johanssonc8473822012-04-08 16:26:19 -07002708 else
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002709 num_chan = max_t(int, pcfg->num_peri, pcfg->num_chan);
Olof Johanssonc8473822012-04-08 16:26:19 -07002710
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002711 pl330->num_peripherals = num_chan;
Lars-Peter Clausen70cbb162014-01-11 20:08:39 +01002712
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002713 pl330->peripherals = kzalloc(num_chan * sizeof(*pch), GFP_KERNEL);
2714 if (!pl330->peripherals) {
Sachin Kamat61c6e752012-09-17 15:20:23 +05302715 ret = -ENOMEM;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002716 dev_err(&adev->dev, "unable to allocate pl330->peripherals\n");
Sachin Kamate4d43c12012-11-15 06:27:50 +00002717 goto probe_err2;
Sachin Kamat61c6e752012-09-17 15:20:23 +05302718 }
Jassi Brarb3040e42010-05-23 20:28:19 -07002719
Rob Herring4e0e6102011-07-25 16:05:04 -05002720 for (i = 0; i < num_chan; i++) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002721 pch = &pl330->peripherals[i];
Thomas Abraham93ed5542011-10-24 11:43:31 +02002722 if (!adev->dev.of_node)
2723 pch->chan.private = pdat ? &pdat->peri_id[i] : NULL;
2724 else
2725 pch->chan.private = adev->dev.of_node;
Jassi Brarb3040e42010-05-23 20:28:19 -07002726
Lars-Peter Clausen04abf5d2014-01-11 20:08:38 +01002727 INIT_LIST_HEAD(&pch->submitted_list);
Jassi Brarb3040e42010-05-23 20:28:19 -07002728 INIT_LIST_HEAD(&pch->work_list);
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002729 INIT_LIST_HEAD(&pch->completed_list);
Jassi Brarb3040e42010-05-23 20:28:19 -07002730 spin_lock_init(&pch->lock);
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +02002731 pch->thread = NULL;
Jassi Brarb3040e42010-05-23 20:28:19 -07002732 pch->chan.device = pd;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002733 pch->dmac = pl330;
Jassi Brarb3040e42010-05-23 20:28:19 -07002734
2735 /* Add the channel to the DMAC list */
Jassi Brarb3040e42010-05-23 20:28:19 -07002736 list_add_tail(&pch->chan.device_node, &pd->channels);
2737 }
2738
2739 pd->dev = &adev->dev;
Thomas Abraham93ed5542011-10-24 11:43:31 +02002740 if (pdat) {
Thomas Abrahamcd072512011-10-24 11:43:11 +02002741 pd->cap_mask = pdat->cap_mask;
Thomas Abraham93ed5542011-10-24 11:43:31 +02002742 } else {
Thomas Abrahamcd072512011-10-24 11:43:11 +02002743 dma_cap_set(DMA_MEMCPY, pd->cap_mask);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002744 if (pcfg->num_peri) {
Thomas Abraham93ed5542011-10-24 11:43:31 +02002745 dma_cap_set(DMA_SLAVE, pd->cap_mask);
2746 dma_cap_set(DMA_CYCLIC, pd->cap_mask);
Tushar Behera5557a412012-08-29 10:16:25 +05302747 dma_cap_set(DMA_PRIVATE, pd->cap_mask);
Thomas Abraham93ed5542011-10-24 11:43:31 +02002748 }
2749 }
Jassi Brarb3040e42010-05-23 20:28:19 -07002750
2751 pd->device_alloc_chan_resources = pl330_alloc_chan_resources;
2752 pd->device_free_chan_resources = pl330_free_chan_resources;
2753 pd->device_prep_dma_memcpy = pl330_prep_dma_memcpy;
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002754 pd->device_prep_dma_cyclic = pl330_prep_dma_cyclic;
Jassi Brarb3040e42010-05-23 20:28:19 -07002755 pd->device_tx_status = pl330_tx_status;
2756 pd->device_prep_slave_sg = pl330_prep_slave_sg;
2757 pd->device_control = pl330_control;
2758 pd->device_issue_pending = pl330_issue_pending;
Lars-Peter Clausenca38ff12013-07-15 17:53:08 +02002759 pd->device_slave_caps = pl330_dma_device_slave_caps;
Jassi Brarb3040e42010-05-23 20:28:19 -07002760
2761 ret = dma_async_device_register(pd);
2762 if (ret) {
2763 dev_err(&adev->dev, "unable to register DMAC\n");
Padmavathi Venna0b94c572013-03-05 14:55:31 +05302764 goto probe_err3;
2765 }
2766
2767 if (adev->dev.of_node) {
2768 ret = of_dma_controller_register(adev->dev.of_node,
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002769 of_dma_pl330_xlate, pl330);
Padmavathi Venna0b94c572013-03-05 14:55:31 +05302770 if (ret) {
2771 dev_err(&adev->dev,
2772 "unable to register DMA to the generic DT DMA helpers\n");
2773 }
Jassi Brarb3040e42010-05-23 20:28:19 -07002774 }
Lars-Peter Clausenb714b842013-11-25 16:07:46 +01002775
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002776 adev->dev.dma_parms = &pl330->dma_parms;
Lars-Peter Clausenb714b842013-11-25 16:07:46 +01002777
Vinod Kouldbaf6d82013-09-02 21:54:48 +05302778 /*
2779 * This is the limit for transfers with a buswidth of 1, larger
2780 * buswidths will have larger limits.
2781 */
2782 ret = dma_set_max_seg_size(&adev->dev, 1900800);
2783 if (ret)
2784 dev_err(&adev->dev, "unable to set the seg size\n");
2785
Jassi Brarb3040e42010-05-23 20:28:19 -07002786
Jassi Brarb3040e42010-05-23 20:28:19 -07002787 dev_info(&adev->dev,
2788 "Loaded driver for PL330 DMAC-%d\n", adev->periphid);
2789 dev_info(&adev->dev,
2790 "\tDBUFF-%ux%ubytes Num_Chans-%u Num_Peri-%u Num_Events-%u\n",
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002791 pcfg->data_buf_dep, pcfg->data_bus_width / 8, pcfg->num_chan,
2792 pcfg->num_peri, pcfg->num_events);
Jassi Brarb3040e42010-05-23 20:28:19 -07002793
2794 return 0;
Padmavathi Venna0b94c572013-03-05 14:55:31 +05302795probe_err3:
Padmavathi Venna0b94c572013-03-05 14:55:31 +05302796 /* Idle the DMAC */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002797 list_for_each_entry_safe(pch, _p, &pl330->ddma.channels,
Padmavathi Venna0b94c572013-03-05 14:55:31 +05302798 chan.device_node) {
2799
2800 /* Remove the channel */
2801 list_del(&pch->chan.device_node);
2802
2803 /* Flush the channel */
2804 pl330_control(&pch->chan, DMA_TERMINATE_ALL, 0);
2805 pl330_free_chan_resources(&pch->chan);
2806 }
Jassi Brarb3040e42010-05-23 20:28:19 -07002807probe_err2:
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002808 pl330_del(pl330);
Jassi Brarb3040e42010-05-23 20:28:19 -07002809
2810 return ret;
2811}
2812
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -08002813static int pl330_remove(struct amba_device *adev)
Jassi Brarb3040e42010-05-23 20:28:19 -07002814{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002815 struct pl330_dmac *pl330 = amba_get_drvdata(adev);
Jassi Brarb3040e42010-05-23 20:28:19 -07002816 struct dma_pl330_chan *pch, *_p;
Jassi Brarb3040e42010-05-23 20:28:19 -07002817
Padmavathi Venna0b94c572013-03-05 14:55:31 +05302818 if (adev->dev.of_node)
2819 of_dma_controller_free(adev->dev.of_node);
Padmavathi Venna421da892013-02-14 09:10:07 +05302820
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002821 dma_async_device_unregister(&pl330->ddma);
Jassi Brarb3040e42010-05-23 20:28:19 -07002822
2823 /* Idle the DMAC */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002824 list_for_each_entry_safe(pch, _p, &pl330->ddma.channels,
Jassi Brarb3040e42010-05-23 20:28:19 -07002825 chan.device_node) {
2826
2827 /* Remove the channel */
2828 list_del(&pch->chan.device_node);
2829
2830 /* Flush the channel */
2831 pl330_control(&pch->chan, DMA_TERMINATE_ALL, 0);
2832 pl330_free_chan_resources(&pch->chan);
2833 }
2834
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002835 pl330_del(pl330);
Jassi Brarb3040e42010-05-23 20:28:19 -07002836
Jassi Brarb3040e42010-05-23 20:28:19 -07002837 return 0;
2838}
2839
2840static struct amba_id pl330_ids[] = {
2841 {
2842 .id = 0x00041330,
2843 .mask = 0x000fffff,
2844 },
2845 { 0, 0 },
2846};
2847
Dave Martine8fa5162011-10-05 15:15:20 +01002848MODULE_DEVICE_TABLE(amba, pl330_ids);
2849
Jassi Brarb3040e42010-05-23 20:28:19 -07002850static struct amba_driver pl330_driver = {
2851 .drv = {
2852 .owner = THIS_MODULE,
2853 .name = "dma-pl330",
Jassi Brarb3040e42010-05-23 20:28:19 -07002854 },
2855 .id_table = pl330_ids,
2856 .probe = pl330_probe,
2857 .remove = pl330_remove,
2858};
2859
viresh kumar9e5ed092012-03-15 10:40:38 +01002860module_amba_driver(pl330_driver);
Jassi Brarb3040e42010-05-23 20:28:19 -07002861
2862MODULE_AUTHOR("Jaswinder Singh <jassi.brar@samsung.com>");
2863MODULE_DESCRIPTION("API Driver for PL330 DMAC");
2864MODULE_LICENSE("GPL");