blob: 591867e976a4807e5df29af578856765de937408 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Boojin Kimb7d861d2011-12-26 18:49:52 +09002/*
3 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
4 * http://www.samsung.com
Jassi Brarb3040e42010-05-23 20:28:19 -07005 *
6 * Copyright (C) 2010 Samsung Electronics Co. Ltd.
7 * Jaswinder Singh <jassi.brar@samsung.com>
Jassi Brarb3040e42010-05-23 20:28:19 -07008 */
9
Katsuhiro Suzukib45aef32019-03-17 19:03:06 +090010#include <linux/debugfs.h>
Boojin Kimb7d861d2011-12-26 18:49:52 +090011#include <linux/kernel.h>
Jassi Brarb3040e42010-05-23 20:28:19 -070012#include <linux/io.h>
13#include <linux/init.h>
14#include <linux/slab.h>
15#include <linux/module.h>
Boojin Kimb7d861d2011-12-26 18:49:52 +090016#include <linux/string.h>
17#include <linux/delay.h>
18#include <linux/interrupt.h>
19#include <linux/dma-mapping.h>
Jassi Brarb3040e42010-05-23 20:28:19 -070020#include <linux/dmaengine.h>
Jassi Brarb3040e42010-05-23 20:28:19 -070021#include <linux/amba/bus.h>
Boojin Kim1b9bb712011-09-02 09:44:30 +090022#include <linux/scatterlist.h>
Thomas Abraham93ed5542011-10-24 11:43:31 +020023#include <linux/of.h>
Padmavathi Vennaa80258f2013-02-14 09:10:06 +053024#include <linux/of_dma.h>
Sachin Kamatbcc7fa92013-03-04 14:36:27 +053025#include <linux/err.h>
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +010026#include <linux/pm_runtime.h>
Frank Mori Hess1d487452018-04-18 20:31:06 -040027#include <linux/bug.h>
Dinh Nguyen0eaab702019-06-11 10:34:33 -050028#include <linux/reset.h>
Jassi Brarb3040e42010-05-23 20:28:19 -070029
Russell King - ARM Linuxd2ebfb32012-03-06 22:34:26 +000030#include "dmaengine.h"
Boojin Kimb7d861d2011-12-26 18:49:52 +090031#define PL330_MAX_CHAN 8
32#define PL330_MAX_IRQS 32
33#define PL330_MAX_PERI 32
Shawn Lin86a8ce72016-01-22 19:06:51 +080034#define PL330_MAX_BURST 16
Boojin Kimb7d861d2011-12-26 18:49:52 +090035
Sugar Zhang5fb9e3a2020-06-29 22:05:45 +080036#define PL330_QUIRK_BROKEN_NO_FLUSHP BIT(0)
37#define PL330_QUIRK_PERIPH_BURST BIT(1)
Addy Ke271e1b862016-01-22 19:06:46 +080038
Lars-Peter Clausenf0564c72014-07-06 20:32:19 +020039enum pl330_cachectrl {
40 CCTRL0, /* Noncacheable and nonbufferable */
41 CCTRL1, /* Bufferable only */
42 CCTRL2, /* Cacheable, but do not allocate */
43 CCTRL3, /* Cacheable and bufferable, but do not allocate */
44 INVALID1, /* AWCACHE = 0x1000 */
45 INVALID2,
46 CCTRL6, /* Cacheable write-through, allocate on writes only */
47 CCTRL7, /* Cacheable write-back, allocate on writes only */
Boojin Kimb7d861d2011-12-26 18:49:52 +090048};
49
50enum pl330_byteswap {
51 SWAP_NO,
52 SWAP_2,
53 SWAP_4,
54 SWAP_8,
55 SWAP_16,
56};
57
Boojin Kimb7d861d2011-12-26 18:49:52 +090058/* Register and Bit field Definitions */
59#define DS 0x0
60#define DS_ST_STOP 0x0
61#define DS_ST_EXEC 0x1
62#define DS_ST_CMISS 0x2
63#define DS_ST_UPDTPC 0x3
64#define DS_ST_WFE 0x4
65#define DS_ST_ATBRR 0x5
66#define DS_ST_QBUSY 0x6
67#define DS_ST_WFP 0x7
68#define DS_ST_KILL 0x8
69#define DS_ST_CMPLT 0x9
70#define DS_ST_FLTCMP 0xe
71#define DS_ST_FAULT 0xf
72
73#define DPC 0x4
74#define INTEN 0x20
75#define ES 0x24
76#define INTSTATUS 0x28
77#define INTCLR 0x2c
78#define FSM 0x30
79#define FSC 0x34
80#define FTM 0x38
81
82#define _FTC 0x40
83#define FTC(n) (_FTC + (n)*0x4)
84
85#define _CS 0x100
86#define CS(n) (_CS + (n)*0x8)
87#define CS_CNS (1 << 21)
88
89#define _CPC 0x104
90#define CPC(n) (_CPC + (n)*0x8)
91
92#define _SA 0x400
93#define SA(n) (_SA + (n)*0x20)
94
95#define _DA 0x404
96#define DA(n) (_DA + (n)*0x20)
97
98#define _CC 0x408
99#define CC(n) (_CC + (n)*0x20)
100
101#define CC_SRCINC (1 << 0)
102#define CC_DSTINC (1 << 14)
103#define CC_SRCPRI (1 << 8)
104#define CC_DSTPRI (1 << 22)
105#define CC_SRCNS (1 << 9)
106#define CC_DSTNS (1 << 23)
107#define CC_SRCIA (1 << 10)
108#define CC_DSTIA (1 << 24)
109#define CC_SRCBRSTLEN_SHFT 4
110#define CC_DSTBRSTLEN_SHFT 18
111#define CC_SRCBRSTSIZE_SHFT 1
112#define CC_DSTBRSTSIZE_SHFT 15
113#define CC_SRCCCTRL_SHFT 11
114#define CC_SRCCCTRL_MASK 0x7
115#define CC_DSTCCTRL_SHFT 25
116#define CC_DRCCCTRL_MASK 0x7
117#define CC_SWAP_SHFT 28
118
119#define _LC0 0x40c
120#define LC0(n) (_LC0 + (n)*0x20)
121
122#define _LC1 0x410
123#define LC1(n) (_LC1 + (n)*0x20)
124
125#define DBGSTATUS 0xd00
126#define DBG_BUSY (1 << 0)
127
128#define DBGCMD 0xd04
129#define DBGINST0 0xd08
130#define DBGINST1 0xd0c
131
132#define CR0 0xe00
133#define CR1 0xe04
134#define CR2 0xe08
135#define CR3 0xe0c
136#define CR4 0xe10
137#define CRD 0xe14
138
139#define PERIPH_ID 0xfe0
Boojin Kim3ecf51a2011-12-26 18:55:47 +0900140#define PERIPH_REV_SHIFT 20
141#define PERIPH_REV_MASK 0xf
142#define PERIPH_REV_R0P0 0
143#define PERIPH_REV_R1P0 1
144#define PERIPH_REV_R1P1 2
Boojin Kimb7d861d2011-12-26 18:49:52 +0900145
146#define CR0_PERIPH_REQ_SET (1 << 0)
147#define CR0_BOOT_EN_SET (1 << 1)
148#define CR0_BOOT_MAN_NS (1 << 2)
149#define CR0_NUM_CHANS_SHIFT 4
150#define CR0_NUM_CHANS_MASK 0x7
151#define CR0_NUM_PERIPH_SHIFT 12
152#define CR0_NUM_PERIPH_MASK 0x1f
153#define CR0_NUM_EVENTS_SHIFT 17
154#define CR0_NUM_EVENTS_MASK 0x1f
155
156#define CR1_ICACHE_LEN_SHIFT 0
157#define CR1_ICACHE_LEN_MASK 0x7
158#define CR1_NUM_ICACHELINES_SHIFT 4
159#define CR1_NUM_ICACHELINES_MASK 0xf
160
161#define CRD_DATA_WIDTH_SHIFT 0
162#define CRD_DATA_WIDTH_MASK 0x7
163#define CRD_WR_CAP_SHIFT 4
164#define CRD_WR_CAP_MASK 0x7
165#define CRD_WR_Q_DEP_SHIFT 8
166#define CRD_WR_Q_DEP_MASK 0xf
167#define CRD_RD_CAP_SHIFT 12
168#define CRD_RD_CAP_MASK 0x7
169#define CRD_RD_Q_DEP_SHIFT 16
170#define CRD_RD_Q_DEP_MASK 0xf
171#define CRD_DATA_BUFF_SHIFT 20
172#define CRD_DATA_BUFF_MASK 0x3ff
173
174#define PART 0x330
175#define DESIGNER 0x41
176#define REVISION 0x0
177#define INTEG_CFG 0x0
178#define PERIPH_ID_VAL ((PART << 0) | (DESIGNER << 12))
179
Boojin Kimb7d861d2011-12-26 18:49:52 +0900180#define PL330_STATE_STOPPED (1 << 0)
181#define PL330_STATE_EXECUTING (1 << 1)
182#define PL330_STATE_WFE (1 << 2)
183#define PL330_STATE_FAULTING (1 << 3)
184#define PL330_STATE_COMPLETING (1 << 4)
185#define PL330_STATE_WFP (1 << 5)
186#define PL330_STATE_KILLING (1 << 6)
187#define PL330_STATE_FAULT_COMPLETING (1 << 7)
188#define PL330_STATE_CACHEMISS (1 << 8)
189#define PL330_STATE_UPDTPC (1 << 9)
190#define PL330_STATE_ATBARRIER (1 << 10)
191#define PL330_STATE_QUEUEBUSY (1 << 11)
192#define PL330_STATE_INVALID (1 << 15)
193
194#define PL330_STABLE_STATES (PL330_STATE_STOPPED | PL330_STATE_EXECUTING \
195 | PL330_STATE_WFE | PL330_STATE_FAULTING)
196
197#define CMD_DMAADDH 0x54
198#define CMD_DMAEND 0x00
199#define CMD_DMAFLUSHP 0x35
200#define CMD_DMAGO 0xa0
201#define CMD_DMALD 0x04
202#define CMD_DMALDP 0x25
203#define CMD_DMALP 0x20
204#define CMD_DMALPEND 0x28
205#define CMD_DMAKILL 0x01
206#define CMD_DMAMOV 0xbc
207#define CMD_DMANOP 0x18
208#define CMD_DMARMB 0x12
209#define CMD_DMASEV 0x34
210#define CMD_DMAST 0x08
211#define CMD_DMASTP 0x29
212#define CMD_DMASTZ 0x0c
213#define CMD_DMAWFE 0x36
214#define CMD_DMAWFP 0x30
215#define CMD_DMAWMB 0x13
216
217#define SZ_DMAADDH 3
218#define SZ_DMAEND 1
219#define SZ_DMAFLUSHP 2
220#define SZ_DMALD 1
221#define SZ_DMALDP 2
222#define SZ_DMALP 2
223#define SZ_DMALPEND 2
224#define SZ_DMAKILL 1
225#define SZ_DMAMOV 6
226#define SZ_DMANOP 1
227#define SZ_DMARMB 1
228#define SZ_DMASEV 2
229#define SZ_DMAST 1
230#define SZ_DMASTP 2
231#define SZ_DMASTZ 1
232#define SZ_DMAWFE 2
233#define SZ_DMAWFP 2
234#define SZ_DMAWMB 1
235#define SZ_DMAGO 6
236
237#define BRST_LEN(ccr) ((((ccr) >> CC_SRCBRSTLEN_SHFT) & 0xf) + 1)
238#define BRST_SIZE(ccr) (1 << (((ccr) >> CC_SRCBRSTSIZE_SHFT) & 0x7))
239
240#define BYTE_TO_BURST(b, ccr) ((b) / BRST_SIZE(ccr) / BRST_LEN(ccr))
241#define BURST_TO_BYTE(c, ccr) ((c) * BRST_SIZE(ccr) * BRST_LEN(ccr))
242
243/*
244 * With 256 bytes, we can do more than 2.5MB and 5MB xfers per req
245 * at 1byte/burst for P<->M and M<->M respectively.
246 * For typical scenario, at 1word/burst, 10MB and 20MB xfers per req
247 * should be enough for P<->M and M<->M respectively.
248 */
249#define MCODE_BUFF_PER_REQ 256
250
Boojin Kimb7d861d2011-12-26 18:49:52 +0900251/* Use this _only_ to wait on transient states */
252#define UNTIL(t, s) while (!(_state(t) & (s))) cpu_relax();
253
254#ifdef PL330_DEBUG_MCGEN
255static unsigned cmd_line;
256#define PL330_DBGCMD_DUMP(off, x...) do { \
257 printk("%x:", cmd_line); \
Łukasz Stelmach112ec612020-08-13 22:41:23 +0200258 printk(KERN_CONT x); \
Boojin Kimb7d861d2011-12-26 18:49:52 +0900259 cmd_line += off; \
260 } while (0)
261#define PL330_DBGMC_START(addr) (cmd_line = addr)
262#else
263#define PL330_DBGCMD_DUMP(off, x...) do {} while (0)
264#define PL330_DBGMC_START(addr) do {} while (0)
265#endif
266
267/* The number of default descriptors */
Russell King - ARM Linuxd2ebfb32012-03-06 22:34:26 +0000268
Jassi Brarb3040e42010-05-23 20:28:19 -0700269#define NR_DEFAULT_DESC 16
270
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +0100271/* Delay for runtime PM autosuspend, ms */
272#define PL330_AUTOSUSPEND_DELAY 20
273
Boojin Kimb7d861d2011-12-26 18:49:52 +0900274/* Populated by the PL330 core driver for DMA API driver's info */
275struct pl330_config {
276 u32 periph_id;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900277#define DMAC_MODE_NS (1 << 0)
278 unsigned int mode;
279 unsigned int data_bus_width:10; /* In number of bits */
Liviu Dudau1f0a5cb2014-11-06 17:20:12 +0000280 unsigned int data_buf_dep:11;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900281 unsigned int num_chan:4;
282 unsigned int num_peri:6;
283 u32 peri_ns;
284 unsigned int num_events:6;
285 u32 irq_ns;
286};
287
Lee Jonesf9e036d2020-07-14 12:15:34 +0100288/*
Boojin Kimb7d861d2011-12-26 18:49:52 +0900289 * Request Configuration.
290 * The PL330 core does not modify this and uses the last
291 * working configuration if the request doesn't provide any.
292 *
293 * The Client may want to provide this info only for the
294 * first request and a request with new settings.
295 */
296struct pl330_reqcfg {
297 /* Address Incrementing */
298 unsigned dst_inc:1;
299 unsigned src_inc:1;
300
301 /*
302 * For now, the SRC & DST protection levels
303 * and burst size/length are assumed same.
304 */
305 bool nonsecure;
306 bool privileged;
307 bool insnaccess;
308 unsigned brst_len:5;
309 unsigned brst_size:3; /* in power of 2 */
310
Lars-Peter Clausenf0564c72014-07-06 20:32:19 +0200311 enum pl330_cachectrl dcctl;
312 enum pl330_cachectrl scctl;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900313 enum pl330_byteswap swap;
Boojin Kim3ecf51a2011-12-26 18:55:47 +0900314 struct pl330_config *pcfg;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900315};
316
317/*
318 * One cycle of DMAC operation.
319 * There may be more than one xfer in a request.
320 */
321struct pl330_xfer {
322 u32 src_addr;
323 u32 dst_addr;
324 /* Size to xfer */
325 u32 bytes;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900326};
327
328/* The xfer callbacks are made with one of these arguments. */
329enum pl330_op_err {
330 /* The all xfers in the request were success. */
331 PL330_ERR_NONE,
332 /* If req aborted due to global error. */
333 PL330_ERR_ABORT,
334 /* If req failed due to problem with Channel. */
335 PL330_ERR_FAIL,
336};
337
Boojin Kimb7d861d2011-12-26 18:49:52 +0900338enum dmamov_dst {
339 SAR = 0,
340 CCR,
341 DAR,
342};
343
344enum pl330_dst {
345 SRC = 0,
346 DST,
347};
348
349enum pl330_cond {
350 SINGLE,
351 BURST,
352 ALWAYS,
353};
354
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +0200355struct dma_pl330_desc;
356
Boojin Kimb7d861d2011-12-26 18:49:52 +0900357struct _pl330_req {
358 u32 mc_bus;
359 void *mc_cpu;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +0200360 struct dma_pl330_desc *desc;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900361};
362
363/* ToBeDone for tasklet */
364struct _pl330_tbd {
365 bool reset_dmac;
366 bool reset_mngr;
367 u8 reset_chan;
368};
369
370/* A DMAC Thread */
371struct pl330_thread {
372 u8 id;
373 int ev;
374 /* If the channel is not yet acquired by any client */
375 bool free;
376 /* Parent DMAC */
377 struct pl330_dmac *dmac;
378 /* Only two at a time */
379 struct _pl330_req req[2];
380 /* Index of the last enqueued request */
381 unsigned lstenq;
382 /* Index of the last submitted request or -1 if the DMA is stopped */
383 int req_running;
384};
385
386enum pl330_dmac_state {
387 UNINIT,
388 INIT,
389 DYING,
390};
391
Jassi Brarb3040e42010-05-23 20:28:19 -0700392enum desc_status {
393 /* In the DMAC pool */
394 FREE,
395 /*
Masanari Iidad73111c2012-08-04 23:37:53 +0900396 * Allocated to some channel during prep_xxx
Jassi Brarb3040e42010-05-23 20:28:19 -0700397 * Also may be sitting on the work_list.
398 */
399 PREP,
400 /*
401 * Sitting on the work_list and already submitted
402 * to the PL330 core. Not more than two descriptors
403 * of a channel can be BUSY at any time.
404 */
405 BUSY,
406 /*
407 * Sitting on the channel work_list but xfer done
408 * by PL330 core
409 */
410 DONE,
411};
412
413struct dma_pl330_chan {
414 /* Schedule desc completion */
415 struct tasklet_struct task;
416
417 /* DMA-Engine Channel */
418 struct dma_chan chan;
419
Lars-Peter Clausen04abf5da2014-01-11 20:08:38 +0100420 /* List of submitted descriptors */
421 struct list_head submitted_list;
422 /* List of issued descriptors */
Jassi Brarb3040e42010-05-23 20:28:19 -0700423 struct list_head work_list;
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +0200424 /* List of completed descriptors */
425 struct list_head completed_list;
Jassi Brarb3040e42010-05-23 20:28:19 -0700426
427 /* Pointer to the DMAC that manages this channel,
428 * NULL if the channel is available to be acquired.
429 * As the parent, this DMAC also provides descriptors
430 * to the channel.
431 */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200432 struct pl330_dmac *dmac;
Jassi Brarb3040e42010-05-23 20:28:19 -0700433
434 /* To protect channel manipulation */
435 spinlock_t lock;
436
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +0200437 /*
438 * Hardware channel thread of PL330 DMAC. NULL if the channel is
439 * available.
Jassi Brarb3040e42010-05-23 20:28:19 -0700440 */
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +0200441 struct pl330_thread *thread;
Boojin Kim1b9bb712011-09-02 09:44:30 +0900442
443 /* For D-to-M and M-to-D channels */
444 int burst_sz; /* the peripheral fifo width */
Boojin Kim1d0c1d62011-09-02 09:44:31 +0900445 int burst_len; /* the number of burst */
Robin Murphy4d6d74e2017-05-19 15:06:44 +0100446 phys_addr_t fifo_addr;
447 /* DMA-mapped view of the FIFO; may differ if an IOMMU is present */
448 dma_addr_t fifo_dma;
449 enum dma_data_direction dir;
Vinod Koul445897c2018-10-25 15:26:07 +0100450 struct dma_slave_config slave_config;
Boojin Kim42bc9cf2011-09-02 09:44:33 +0900451
452 /* for cyclic capability */
453 bool cyclic;
Marek Szyprowski5c9e6c22016-12-16 11:39:11 +0100454
455 /* for runtime pm tracking */
456 bool active;
Jassi Brarb3040e42010-05-23 20:28:19 -0700457};
458
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200459struct pl330_dmac {
Jassi Brarb3040e42010-05-23 20:28:19 -0700460 /* DMA-Engine Device */
461 struct dma_device ddma;
462
Lars-Peter Clausenb714b842013-11-25 16:07:46 +0100463 /* Holds info about sg limitations */
464 struct device_dma_parameters dma_parms;
465
Jassi Brarb3040e42010-05-23 20:28:19 -0700466 /* Pool of descriptors available for the DMAC's channels */
467 struct list_head desc_pool;
468 /* To protect desc_pool manipulation */
469 spinlock_t pool_lock;
470
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200471 /* Size of MicroCode buffers for each channel. */
472 unsigned mcbufsz;
473 /* ioremap'ed address of PL330 registers. */
474 void __iomem *base;
475 /* Populated by the PL330 core driver during pl330_add */
476 struct pl330_config pcfg;
477
478 spinlock_t lock;
479 /* Maximum possible events/irqs */
480 int events[32];
481 /* BUS address of MicroCode buffer */
482 dma_addr_t mcode_bus;
483 /* CPU address of MicroCode buffer */
484 void *mcode_cpu;
485 /* List of all Channel threads */
486 struct pl330_thread *channels;
487 /* Pointer to the MANAGER thread */
488 struct pl330_thread *manager;
489 /* To handle bad news in interrupt */
490 struct tasklet_struct tasks;
491 struct _pl330_tbd dmac_tbd;
492 /* State of DMAC operation */
493 enum pl330_dmac_state state;
494 /* Holds list of reqs with due callbacks */
495 struct list_head req_done;
496
Jassi Brarb3040e42010-05-23 20:28:19 -0700497 /* Peripheral channels connected to this DMAC */
Lars-Peter Clausen70cbb162014-01-11 20:08:39 +0100498 unsigned int num_peripherals;
Rob Herring4e0e6102011-07-25 16:05:04 -0500499 struct dma_pl330_chan *peripherals; /* keep at end */
Addy Ke271e1b862016-01-22 19:06:46 +0800500 int quirks;
Dinh Nguyen0eaab702019-06-11 10:34:33 -0500501
502 struct reset_control *rstc;
503 struct reset_control *rstc_ocp;
Addy Ke271e1b862016-01-22 19:06:46 +0800504};
505
506static struct pl330_of_quirks {
507 char *quirk;
508 int id;
509} of_quirks[] = {
510 {
511 .quirk = "arm,pl330-broken-no-flushp",
512 .id = PL330_QUIRK_BROKEN_NO_FLUSHP,
Sugar Zhang5fb9e3a2020-06-29 22:05:45 +0800513 },
514 {
515 .quirk = "arm,pl330-periph-burst",
516 .id = PL330_QUIRK_PERIPH_BURST,
Addy Ke271e1b862016-01-22 19:06:46 +0800517 }
Jassi Brarb3040e42010-05-23 20:28:19 -0700518};
519
520struct dma_pl330_desc {
521 /* To attach to a queue as child */
522 struct list_head node;
523
524 /* Descriptor for the DMA Engine API */
525 struct dma_async_tx_descriptor txd;
526
527 /* Xfer for PL330 core */
528 struct pl330_xfer px;
529
530 struct pl330_reqcfg rqcfg;
Jassi Brarb3040e42010-05-23 20:28:19 -0700531
532 enum desc_status status;
533
Robert Baldygaaee4d1f2015-02-11 13:23:17 +0100534 int bytes_requested;
535 bool last;
536
Jassi Brarb3040e42010-05-23 20:28:19 -0700537 /* The channel which currently holds this desc */
538 struct dma_pl330_chan *pchan;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +0200539
540 enum dma_transfer_direction rqtype;
541 /* Index of peripheral for the xfer. */
542 unsigned peri:5;
543 /* Hook to attach to DMAC's list of reqs with due callback */
544 struct list_head rqd;
545};
546
547struct _xfer_spec {
548 u32 ccr;
549 struct dma_pl330_desc *desc;
Jassi Brarb3040e42010-05-23 20:28:19 -0700550};
551
Vinod Koul445897c2018-10-25 15:26:07 +0100552static int pl330_config_write(struct dma_chan *chan,
553 struct dma_slave_config *slave_config,
554 enum dma_transfer_direction direction);
555
Boojin Kimb7d861d2011-12-26 18:49:52 +0900556static inline bool _queue_full(struct pl330_thread *thrd)
557{
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +0200558 return thrd->req[0].desc != NULL && thrd->req[1].desc != NULL;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900559}
560
561static inline bool is_manager(struct pl330_thread *thrd)
562{
Lars-Peter Clausenfbbcd9b2014-07-06 20:32:28 +0200563 return thrd->dmac->manager == thrd;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900564}
565
566/* If manager of the thread is in Non-Secure mode */
567static inline bool _manager_ns(struct pl330_thread *thrd)
568{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200569 return (thrd->dmac->pcfg.mode & DMAC_MODE_NS) ? true : false;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900570}
571
Boojin Kim3ecf51a2011-12-26 18:55:47 +0900572static inline u32 get_revision(u32 periph_id)
573{
574 return (periph_id >> PERIPH_REV_SHIFT) & PERIPH_REV_MASK;
575}
576
Boojin Kimb7d861d2011-12-26 18:49:52 +0900577static inline u32 _emit_END(unsigned dry_run, u8 buf[])
578{
579 if (dry_run)
580 return SZ_DMAEND;
581
582 buf[0] = CMD_DMAEND;
583
584 PL330_DBGCMD_DUMP(SZ_DMAEND, "\tDMAEND\n");
585
586 return SZ_DMAEND;
587}
588
589static inline u32 _emit_FLUSHP(unsigned dry_run, u8 buf[], u8 peri)
590{
591 if (dry_run)
592 return SZ_DMAFLUSHP;
593
594 buf[0] = CMD_DMAFLUSHP;
595
596 peri &= 0x1f;
597 peri <<= 3;
598 buf[1] = peri;
599
600 PL330_DBGCMD_DUMP(SZ_DMAFLUSHP, "\tDMAFLUSHP %u\n", peri >> 3);
601
602 return SZ_DMAFLUSHP;
603}
604
605static inline u32 _emit_LD(unsigned dry_run, u8 buf[], enum pl330_cond cond)
606{
607 if (dry_run)
608 return SZ_DMALD;
609
610 buf[0] = CMD_DMALD;
611
612 if (cond == SINGLE)
613 buf[0] |= (0 << 1) | (1 << 0);
614 else if (cond == BURST)
615 buf[0] |= (1 << 1) | (1 << 0);
616
617 PL330_DBGCMD_DUMP(SZ_DMALD, "\tDMALD%c\n",
618 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'A'));
619
620 return SZ_DMALD;
621}
622
623static inline u32 _emit_LDP(unsigned dry_run, u8 buf[],
624 enum pl330_cond cond, u8 peri)
625{
626 if (dry_run)
627 return SZ_DMALDP;
628
629 buf[0] = CMD_DMALDP;
630
631 if (cond == BURST)
632 buf[0] |= (1 << 1);
633
634 peri &= 0x1f;
635 peri <<= 3;
636 buf[1] = peri;
637
638 PL330_DBGCMD_DUMP(SZ_DMALDP, "\tDMALDP%c %u\n",
639 cond == SINGLE ? 'S' : 'B', peri >> 3);
640
641 return SZ_DMALDP;
642}
643
644static inline u32 _emit_LP(unsigned dry_run, u8 buf[],
645 unsigned loop, u8 cnt)
646{
647 if (dry_run)
648 return SZ_DMALP;
649
650 buf[0] = CMD_DMALP;
651
652 if (loop)
653 buf[0] |= (1 << 1);
654
655 cnt--; /* DMAC increments by 1 internally */
656 buf[1] = cnt;
657
658 PL330_DBGCMD_DUMP(SZ_DMALP, "\tDMALP_%c %u\n", loop ? '1' : '0', cnt);
659
660 return SZ_DMALP;
661}
662
663struct _arg_LPEND {
664 enum pl330_cond cond;
665 bool forever;
666 unsigned loop;
667 u8 bjump;
668};
669
670static inline u32 _emit_LPEND(unsigned dry_run, u8 buf[],
671 const struct _arg_LPEND *arg)
672{
673 enum pl330_cond cond = arg->cond;
674 bool forever = arg->forever;
675 unsigned loop = arg->loop;
676 u8 bjump = arg->bjump;
677
678 if (dry_run)
679 return SZ_DMALPEND;
680
681 buf[0] = CMD_DMALPEND;
682
683 if (loop)
684 buf[0] |= (1 << 2);
685
686 if (!forever)
687 buf[0] |= (1 << 4);
688
689 if (cond == SINGLE)
690 buf[0] |= (0 << 1) | (1 << 0);
691 else if (cond == BURST)
692 buf[0] |= (1 << 1) | (1 << 0);
693
694 buf[1] = bjump;
695
696 PL330_DBGCMD_DUMP(SZ_DMALPEND, "\tDMALP%s%c_%c bjmpto_%x\n",
697 forever ? "FE" : "END",
698 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'A'),
699 loop ? '1' : '0',
700 bjump);
701
702 return SZ_DMALPEND;
703}
704
705static inline u32 _emit_KILL(unsigned dry_run, u8 buf[])
706{
707 if (dry_run)
708 return SZ_DMAKILL;
709
710 buf[0] = CMD_DMAKILL;
711
712 return SZ_DMAKILL;
713}
714
715static inline u32 _emit_MOV(unsigned dry_run, u8 buf[],
716 enum dmamov_dst dst, u32 val)
717{
718 if (dry_run)
719 return SZ_DMAMOV;
720
721 buf[0] = CMD_DMAMOV;
722 buf[1] = dst;
Vladimir Murzind07c9e12016-12-07 13:17:40 +0000723 buf[2] = val;
724 buf[3] = val >> 8;
725 buf[4] = val >> 16;
726 buf[5] = val >> 24;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900727
728 PL330_DBGCMD_DUMP(SZ_DMAMOV, "\tDMAMOV %s 0x%x\n",
729 dst == SAR ? "SAR" : (dst == DAR ? "DAR" : "CCR"), val);
730
731 return SZ_DMAMOV;
732}
733
Boojin Kimb7d861d2011-12-26 18:49:52 +0900734static inline u32 _emit_RMB(unsigned dry_run, u8 buf[])
735{
736 if (dry_run)
737 return SZ_DMARMB;
738
739 buf[0] = CMD_DMARMB;
740
741 PL330_DBGCMD_DUMP(SZ_DMARMB, "\tDMARMB\n");
742
743 return SZ_DMARMB;
744}
745
746static inline u32 _emit_SEV(unsigned dry_run, u8 buf[], u8 ev)
747{
748 if (dry_run)
749 return SZ_DMASEV;
750
751 buf[0] = CMD_DMASEV;
752
753 ev &= 0x1f;
754 ev <<= 3;
755 buf[1] = ev;
756
757 PL330_DBGCMD_DUMP(SZ_DMASEV, "\tDMASEV %u\n", ev >> 3);
758
759 return SZ_DMASEV;
760}
761
762static inline u32 _emit_ST(unsigned dry_run, u8 buf[], enum pl330_cond cond)
763{
764 if (dry_run)
765 return SZ_DMAST;
766
767 buf[0] = CMD_DMAST;
768
769 if (cond == SINGLE)
770 buf[0] |= (0 << 1) | (1 << 0);
771 else if (cond == BURST)
772 buf[0] |= (1 << 1) | (1 << 0);
773
774 PL330_DBGCMD_DUMP(SZ_DMAST, "\tDMAST%c\n",
775 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'A'));
776
777 return SZ_DMAST;
778}
779
780static inline u32 _emit_STP(unsigned dry_run, u8 buf[],
781 enum pl330_cond cond, u8 peri)
782{
783 if (dry_run)
784 return SZ_DMASTP;
785
786 buf[0] = CMD_DMASTP;
787
788 if (cond == BURST)
789 buf[0] |= (1 << 1);
790
791 peri &= 0x1f;
792 peri <<= 3;
793 buf[1] = peri;
794
795 PL330_DBGCMD_DUMP(SZ_DMASTP, "\tDMASTP%c %u\n",
796 cond == SINGLE ? 'S' : 'B', peri >> 3);
797
798 return SZ_DMASTP;
799}
800
Boojin Kimb7d861d2011-12-26 18:49:52 +0900801static inline u32 _emit_WFP(unsigned dry_run, u8 buf[],
802 enum pl330_cond cond, u8 peri)
803{
804 if (dry_run)
805 return SZ_DMAWFP;
806
807 buf[0] = CMD_DMAWFP;
808
809 if (cond == SINGLE)
810 buf[0] |= (0 << 1) | (0 << 0);
811 else if (cond == BURST)
812 buf[0] |= (1 << 1) | (0 << 0);
813 else
814 buf[0] |= (0 << 1) | (1 << 0);
815
816 peri &= 0x1f;
817 peri <<= 3;
818 buf[1] = peri;
819
820 PL330_DBGCMD_DUMP(SZ_DMAWFP, "\tDMAWFP%c %u\n",
821 cond == SINGLE ? 'S' : (cond == BURST ? 'B' : 'P'), peri >> 3);
822
823 return SZ_DMAWFP;
824}
825
826static inline u32 _emit_WMB(unsigned dry_run, u8 buf[])
827{
828 if (dry_run)
829 return SZ_DMAWMB;
830
831 buf[0] = CMD_DMAWMB;
832
833 PL330_DBGCMD_DUMP(SZ_DMAWMB, "\tDMAWMB\n");
834
835 return SZ_DMAWMB;
836}
837
838struct _arg_GO {
839 u8 chan;
840 u32 addr;
841 unsigned ns;
842};
843
844static inline u32 _emit_GO(unsigned dry_run, u8 buf[],
845 const struct _arg_GO *arg)
846{
847 u8 chan = arg->chan;
848 u32 addr = arg->addr;
849 unsigned ns = arg->ns;
850
851 if (dry_run)
852 return SZ_DMAGO;
853
854 buf[0] = CMD_DMAGO;
855 buf[0] |= (ns << 1);
Boojin Kimb7d861d2011-12-26 18:49:52 +0900856 buf[1] = chan & 0x7;
Vladimir Murzind07c9e12016-12-07 13:17:40 +0000857 buf[2] = addr;
858 buf[3] = addr >> 8;
859 buf[4] = addr >> 16;
860 buf[5] = addr >> 24;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900861
862 return SZ_DMAGO;
863}
864
865#define msecs_to_loops(t) (loops_per_jiffy / 1000 * HZ * t)
866
867/* Returns Time-Out */
868static bool _until_dmac_idle(struct pl330_thread *thrd)
869{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200870 void __iomem *regs = thrd->dmac->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900871 unsigned long loops = msecs_to_loops(5);
872
873 do {
874 /* Until Manager is Idle */
875 if (!(readl(regs + DBGSTATUS) & DBG_BUSY))
876 break;
877
878 cpu_relax();
879 } while (--loops);
880
881 if (!loops)
882 return true;
883
884 return false;
885}
886
887static inline void _execute_DBGINSN(struct pl330_thread *thrd,
888 u8 insn[], bool as_manager)
889{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200890 void __iomem *regs = thrd->dmac->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900891 u32 val;
892
Sugar Zhangd12ea552020-06-04 09:36:38 +0800893 /* If timed out due to halted state-machine */
894 if (_until_dmac_idle(thrd)) {
895 dev_err(thrd->dmac->ddma.dev, "DMAC halted!\n");
896 return;
897 }
898
Boojin Kimb7d861d2011-12-26 18:49:52 +0900899 val = (insn[0] << 16) | (insn[1] << 24);
900 if (!as_manager) {
901 val |= (1 << 0);
902 val |= (thrd->id << 8); /* Channel Number */
903 }
904 writel(val, regs + DBGINST0);
905
Ben Dooks3a2307f2015-03-16 11:52:43 +0000906 val = le32_to_cpu(*((__le32 *)&insn[2]));
Boojin Kimb7d861d2011-12-26 18:49:52 +0900907 writel(val, regs + DBGINST1);
908
Boojin Kimb7d861d2011-12-26 18:49:52 +0900909 /* Get going */
910 writel(0, regs + DBGCMD);
911}
912
Boojin Kimb7d861d2011-12-26 18:49:52 +0900913static inline u32 _state(struct pl330_thread *thrd)
914{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200915 void __iomem *regs = thrd->dmac->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900916 u32 val;
917
918 if (is_manager(thrd))
919 val = readl(regs + DS) & 0xf;
920 else
921 val = readl(regs + CS(thrd->id)) & 0xf;
922
923 switch (val) {
924 case DS_ST_STOP:
925 return PL330_STATE_STOPPED;
926 case DS_ST_EXEC:
927 return PL330_STATE_EXECUTING;
928 case DS_ST_CMISS:
929 return PL330_STATE_CACHEMISS;
930 case DS_ST_UPDTPC:
931 return PL330_STATE_UPDTPC;
932 case DS_ST_WFE:
933 return PL330_STATE_WFE;
934 case DS_ST_FAULT:
935 return PL330_STATE_FAULTING;
936 case DS_ST_ATBRR:
937 if (is_manager(thrd))
938 return PL330_STATE_INVALID;
939 else
940 return PL330_STATE_ATBARRIER;
941 case DS_ST_QBUSY:
942 if (is_manager(thrd))
943 return PL330_STATE_INVALID;
944 else
945 return PL330_STATE_QUEUEBUSY;
946 case DS_ST_WFP:
947 if (is_manager(thrd))
948 return PL330_STATE_INVALID;
949 else
950 return PL330_STATE_WFP;
951 case DS_ST_KILL:
952 if (is_manager(thrd))
953 return PL330_STATE_INVALID;
954 else
955 return PL330_STATE_KILLING;
956 case DS_ST_CMPLT:
957 if (is_manager(thrd))
958 return PL330_STATE_INVALID;
959 else
960 return PL330_STATE_COMPLETING;
961 case DS_ST_FLTCMP:
962 if (is_manager(thrd))
963 return PL330_STATE_INVALID;
964 else
965 return PL330_STATE_FAULT_COMPLETING;
966 default:
967 return PL330_STATE_INVALID;
968 }
969}
970
971static void _stop(struct pl330_thread *thrd)
972{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +0200973 void __iomem *regs = thrd->dmac->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +0900974 u8 insn[6] = {0, 0, 0, 0, 0, 0};
Sugar Zhang2da254cc2019-04-03 19:06:22 +0800975 u32 inten = readl(regs + INTEN);
Boojin Kimb7d861d2011-12-26 18:49:52 +0900976
977 if (_state(thrd) == PL330_STATE_FAULT_COMPLETING)
978 UNTIL(thrd, PL330_STATE_FAULTING | PL330_STATE_KILLING);
979
980 /* Return if nothing needs to be done */
981 if (_state(thrd) == PL330_STATE_COMPLETING
982 || _state(thrd) == PL330_STATE_KILLING
983 || _state(thrd) == PL330_STATE_STOPPED)
984 return;
985
986 _emit_KILL(0, insn);
987
Boojin Kimb7d861d2011-12-26 18:49:52 +0900988 _execute_DBGINSN(thrd, insn, is_manager(thrd));
Sugar Zhang2da254cc2019-04-03 19:06:22 +0800989
990 /* clear the event */
991 if (inten & (1 << thrd->ev))
992 writel(1 << thrd->ev, regs + INTCLR);
993 /* Stop generating interrupts for SEV */
994 writel(inten & ~(1 << thrd->ev), regs + INTEN);
Boojin Kimb7d861d2011-12-26 18:49:52 +0900995}
996
997/* Start doing req 'idx' of thread 'thrd' */
998static bool _trigger(struct pl330_thread *thrd)
999{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001000 void __iomem *regs = thrd->dmac->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001001 struct _pl330_req *req;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001002 struct dma_pl330_desc *desc;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001003 struct _arg_GO go;
1004 unsigned ns;
1005 u8 insn[6] = {0, 0, 0, 0, 0, 0};
1006 int idx;
1007
1008 /* Return if already ACTIVE */
1009 if (_state(thrd) != PL330_STATE_STOPPED)
1010 return true;
1011
1012 idx = 1 - thrd->lstenq;
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001013 if (thrd->req[idx].desc != NULL) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001014 req = &thrd->req[idx];
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001015 } else {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001016 idx = thrd->lstenq;
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001017 if (thrd->req[idx].desc != NULL)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001018 req = &thrd->req[idx];
1019 else
1020 req = NULL;
1021 }
1022
1023 /* Return if no request */
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001024 if (!req)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001025 return true;
1026
Addy Ke0091b9d2014-12-08 19:28:20 +08001027 /* Return if req is running */
1028 if (idx == thrd->req_running)
1029 return true;
1030
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001031 desc = req->desc;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001032
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001033 ns = desc->rqcfg.nonsecure ? 1 : 0;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001034
1035 /* See 'Abort Sources' point-4 at Page 2-25 */
1036 if (_manager_ns(thrd) && !ns)
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001037 dev_info(thrd->dmac->ddma.dev, "%s:%d Recipe for ABORT!\n",
Boojin Kimb7d861d2011-12-26 18:49:52 +09001038 __func__, __LINE__);
1039
1040 go.chan = thrd->id;
1041 go.addr = req->mc_bus;
1042 go.ns = ns;
1043 _emit_GO(0, insn, &go);
1044
1045 /* Set to generate interrupts for SEV */
1046 writel(readl(regs + INTEN) | (1 << thrd->ev), regs + INTEN);
1047
1048 /* Only manager can execute GO */
1049 _execute_DBGINSN(thrd, insn, true);
1050
1051 thrd->req_running = idx;
1052
1053 return true;
1054}
1055
1056static bool _start(struct pl330_thread *thrd)
1057{
1058 switch (_state(thrd)) {
1059 case PL330_STATE_FAULT_COMPLETING:
1060 UNTIL(thrd, PL330_STATE_FAULTING | PL330_STATE_KILLING);
1061
1062 if (_state(thrd) == PL330_STATE_KILLING)
1063 UNTIL(thrd, PL330_STATE_STOPPED)
Vinod Koulbbcb8752018-07-09 17:09:58 +05301064 /* fall through */
Boojin Kimb7d861d2011-12-26 18:49:52 +09001065
1066 case PL330_STATE_FAULTING:
1067 _stop(thrd);
Vinod Koulbbcb8752018-07-09 17:09:58 +05301068 /* fall through */
Boojin Kimb7d861d2011-12-26 18:49:52 +09001069
1070 case PL330_STATE_KILLING:
1071 case PL330_STATE_COMPLETING:
1072 UNTIL(thrd, PL330_STATE_STOPPED)
Vinod Koulbbcb8752018-07-09 17:09:58 +05301073 /* fall through */
Boojin Kimb7d861d2011-12-26 18:49:52 +09001074
1075 case PL330_STATE_STOPPED:
1076 return _trigger(thrd);
1077
1078 case PL330_STATE_WFP:
1079 case PL330_STATE_QUEUEBUSY:
1080 case PL330_STATE_ATBARRIER:
1081 case PL330_STATE_UPDTPC:
1082 case PL330_STATE_CACHEMISS:
1083 case PL330_STATE_EXECUTING:
1084 return true;
1085
1086 case PL330_STATE_WFE: /* For RESUME, nothing yet */
1087 default:
1088 return false;
1089 }
1090}
1091
1092static inline int _ldst_memtomem(unsigned dry_run, u8 buf[],
1093 const struct _xfer_spec *pxs, int cyc)
1094{
1095 int off = 0;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001096 struct pl330_config *pcfg = pxs->desc->rqcfg.pcfg;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001097
Boojin Kim3ecf51a2011-12-26 18:55:47 +09001098 /* check lock-up free version */
1099 if (get_revision(pcfg->periph_id) >= PERIPH_REV_R1P0) {
1100 while (cyc--) {
1101 off += _emit_LD(dry_run, &buf[off], ALWAYS);
1102 off += _emit_ST(dry_run, &buf[off], ALWAYS);
1103 }
1104 } else {
1105 while (cyc--) {
1106 off += _emit_LD(dry_run, &buf[off], ALWAYS);
1107 off += _emit_RMB(dry_run, &buf[off]);
1108 off += _emit_ST(dry_run, &buf[off], ALWAYS);
1109 off += _emit_WMB(dry_run, &buf[off]);
1110 }
Boojin Kimb7d861d2011-12-26 18:49:52 +09001111 }
1112
1113 return off;
1114}
1115
Frank Mori Hess1d487452018-04-18 20:31:06 -04001116static u32 _emit_load(unsigned int dry_run, u8 buf[],
1117 enum pl330_cond cond, enum dma_transfer_direction direction,
1118 u8 peri)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001119{
1120 int off = 0;
Boojin Kim848e9772016-01-22 19:06:44 +08001121
Frank Mori Hess1d487452018-04-18 20:31:06 -04001122 switch (direction) {
1123 case DMA_MEM_TO_MEM:
1124 /* fall through */
1125 case DMA_MEM_TO_DEV:
1126 off += _emit_LD(dry_run, &buf[off], cond);
1127 break;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001128
Frank Mori Hess1d487452018-04-18 20:31:06 -04001129 case DMA_DEV_TO_MEM:
1130 if (cond == ALWAYS) {
1131 off += _emit_LDP(dry_run, &buf[off], SINGLE,
1132 peri);
1133 off += _emit_LDP(dry_run, &buf[off], BURST,
1134 peri);
1135 } else {
1136 off += _emit_LDP(dry_run, &buf[off], cond,
1137 peri);
1138 }
1139 break;
Addy Ke271e1b862016-01-22 19:06:46 +08001140
Frank Mori Hess1d487452018-04-18 20:31:06 -04001141 default:
1142 /* this code should be unreachable */
1143 WARN_ON(1);
1144 break;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001145 }
1146
1147 return off;
1148}
1149
Frank Mori Hess1d487452018-04-18 20:31:06 -04001150static inline u32 _emit_store(unsigned int dry_run, u8 buf[],
1151 enum pl330_cond cond, enum dma_transfer_direction direction,
1152 u8 peri)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001153{
1154 int off = 0;
Frank Mori Hess1d487452018-04-18 20:31:06 -04001155
1156 switch (direction) {
1157 case DMA_MEM_TO_MEM:
1158 /* fall through */
1159 case DMA_DEV_TO_MEM:
1160 off += _emit_ST(dry_run, &buf[off], cond);
1161 break;
1162
1163 case DMA_MEM_TO_DEV:
1164 if (cond == ALWAYS) {
1165 off += _emit_STP(dry_run, &buf[off], SINGLE,
1166 peri);
1167 off += _emit_STP(dry_run, &buf[off], BURST,
1168 peri);
1169 } else {
1170 off += _emit_STP(dry_run, &buf[off], cond,
1171 peri);
1172 }
1173 break;
1174
1175 default:
1176 /* this code should be unreachable */
1177 WARN_ON(1);
1178 break;
1179 }
1180
1181 return off;
1182}
1183
1184static inline int _ldst_peripheral(struct pl330_dmac *pl330,
1185 unsigned dry_run, u8 buf[],
1186 const struct _xfer_spec *pxs, int cyc,
1187 enum pl330_cond cond)
1188{
1189 int off = 0;
Boojin Kim848e9772016-01-22 19:06:44 +08001190
Frank Mori Hess1d487452018-04-18 20:31:06 -04001191 /*
1192 * do FLUSHP at beginning to clear any stale dma requests before the
1193 * first WFP.
1194 */
1195 if (!(pl330->quirks & PL330_QUIRK_BROKEN_NO_FLUSHP))
1196 off += _emit_FLUSHP(dry_run, &buf[off], pxs->desc->peri);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001197 while (cyc--) {
Boojin Kim848e9772016-01-22 19:06:44 +08001198 off += _emit_WFP(dry_run, &buf[off], cond, pxs->desc->peri);
Frank Mori Hess1d487452018-04-18 20:31:06 -04001199 off += _emit_load(dry_run, &buf[off], cond, pxs->desc->rqtype,
1200 pxs->desc->peri);
1201 off += _emit_store(dry_run, &buf[off], cond, pxs->desc->rqtype,
1202 pxs->desc->peri);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001203 }
1204
1205 return off;
1206}
1207
Addy Ke271e1b862016-01-22 19:06:46 +08001208static int _bursts(struct pl330_dmac *pl330, unsigned dry_run, u8 buf[],
Boojin Kimb7d861d2011-12-26 18:49:52 +09001209 const struct _xfer_spec *pxs, int cyc)
1210{
1211 int off = 0;
Frank Mori Hess1d487452018-04-18 20:31:06 -04001212 enum pl330_cond cond = BRST_LEN(pxs->ccr) > 1 ? BURST : SINGLE;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001213
Sugar Zhang5fb9e3a2020-06-29 22:05:45 +08001214 if (pl330->quirks & PL330_QUIRK_PERIPH_BURST)
1215 cond = BURST;
1216
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001217 switch (pxs->desc->rqtype) {
Lars-Peter Clausen585a9d02014-07-06 20:32:18 +02001218 case DMA_MEM_TO_DEV:
Frank Mori Hess1d487452018-04-18 20:31:06 -04001219 /* fall through */
Lars-Peter Clausen585a9d02014-07-06 20:32:18 +02001220 case DMA_DEV_TO_MEM:
Frank Mori Hess1d487452018-04-18 20:31:06 -04001221 off += _ldst_peripheral(pl330, dry_run, &buf[off], pxs, cyc,
1222 cond);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001223 break;
Frank Mori Hess1d487452018-04-18 20:31:06 -04001224
Lars-Peter Clausen585a9d02014-07-06 20:32:18 +02001225 case DMA_MEM_TO_MEM:
Boojin Kimb7d861d2011-12-26 18:49:52 +09001226 off += _ldst_memtomem(dry_run, &buf[off], pxs, cyc);
1227 break;
Frank Mori Hess1d487452018-04-18 20:31:06 -04001228
Boojin Kimb7d861d2011-12-26 18:49:52 +09001229 default:
Frank Mori Hess1d487452018-04-18 20:31:06 -04001230 /* this code should be unreachable */
1231 WARN_ON(1);
1232 break;
1233 }
1234
1235 return off;
1236}
1237
1238/*
Sugar Zhang3e7f0bd2020-06-29 22:05:43 +08001239 * only the unaligned burst transfers have the dregs.
1240 * so, still transfer dregs with a reduced size burst
1241 * for mem-to-mem, mem-to-dev or dev-to-mem.
Frank Mori Hess1d487452018-04-18 20:31:06 -04001242 */
1243static int _dregs(struct pl330_dmac *pl330, unsigned int dry_run, u8 buf[],
1244 const struct _xfer_spec *pxs, int transfer_length)
1245{
1246 int off = 0;
1247 int dregs_ccr;
1248
1249 if (transfer_length == 0)
1250 return off;
1251
Sugar Zhang3e7f0bd2020-06-29 22:05:43 +08001252 /*
1253 * dregs_len = (total bytes - BURST_TO_BYTE(bursts, ccr)) /
1254 * BRST_SIZE(ccr)
1255 * the dregs len must be smaller than burst len,
1256 * so, for higher efficiency, we can modify CCR
1257 * to use a reduced size burst len for the dregs.
1258 */
1259 dregs_ccr = pxs->ccr;
1260 dregs_ccr &= ~((0xf << CC_SRCBRSTLEN_SHFT) |
1261 (0xf << CC_DSTBRSTLEN_SHFT));
1262 dregs_ccr |= (((transfer_length - 1) & 0xf) <<
1263 CC_SRCBRSTLEN_SHFT);
1264 dregs_ccr |= (((transfer_length - 1) & 0xf) <<
1265 CC_DSTBRSTLEN_SHFT);
1266
Frank Mori Hess1d487452018-04-18 20:31:06 -04001267 switch (pxs->desc->rqtype) {
1268 case DMA_MEM_TO_DEV:
1269 /* fall through */
1270 case DMA_DEV_TO_MEM:
Sugar Zhang3e7f0bd2020-06-29 22:05:43 +08001271 off += _emit_MOV(dry_run, &buf[off], CCR, dregs_ccr);
1272 off += _ldst_peripheral(pl330, dry_run, &buf[off], pxs, 1,
1273 BURST);
Frank Mori Hess1d487452018-04-18 20:31:06 -04001274 break;
1275
1276 case DMA_MEM_TO_MEM:
Frank Mori Hess1d487452018-04-18 20:31:06 -04001277 off += _emit_MOV(dry_run, &buf[off], CCR, dregs_ccr);
1278 off += _ldst_memtomem(dry_run, &buf[off], pxs, 1);
1279 break;
1280
1281 default:
1282 /* this code should be unreachable */
1283 WARN_ON(1);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001284 break;
1285 }
1286
1287 return off;
1288}
1289
1290/* Returns bytes consumed and updates bursts */
Addy Ke271e1b862016-01-22 19:06:46 +08001291static inline int _loop(struct pl330_dmac *pl330, unsigned dry_run, u8 buf[],
Boojin Kimb7d861d2011-12-26 18:49:52 +09001292 unsigned long *bursts, const struct _xfer_spec *pxs)
1293{
1294 int cyc, cycmax, szlp, szlpend, szbrst, off;
1295 unsigned lcnt0, lcnt1, ljmp0, ljmp1;
1296 struct _arg_LPEND lpend;
1297
Michal Suchanek31495d62015-07-23 18:04:49 +02001298 if (*bursts == 1)
Boojin Kim848e9772016-01-22 19:06:44 +08001299 return _bursts(pl330, dry_run, buf, pxs, 1);
Michal Suchanek31495d62015-07-23 18:04:49 +02001300
Boojin Kimb7d861d2011-12-26 18:49:52 +09001301 /* Max iterations possible in DMALP is 256 */
1302 if (*bursts >= 256*256) {
1303 lcnt1 = 256;
1304 lcnt0 = 256;
1305 cyc = *bursts / lcnt1 / lcnt0;
1306 } else if (*bursts > 256) {
1307 lcnt1 = 256;
1308 lcnt0 = *bursts / lcnt1;
1309 cyc = 1;
1310 } else {
1311 lcnt1 = *bursts;
1312 lcnt0 = 0;
1313 cyc = 1;
1314 }
1315
1316 szlp = _emit_LP(1, buf, 0, 0);
Addy Ke271e1b862016-01-22 19:06:46 +08001317 szbrst = _bursts(pl330, 1, buf, pxs, 1);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001318
1319 lpend.cond = ALWAYS;
1320 lpend.forever = false;
1321 lpend.loop = 0;
1322 lpend.bjump = 0;
1323 szlpend = _emit_LPEND(1, buf, &lpend);
1324
1325 if (lcnt0) {
1326 szlp *= 2;
1327 szlpend *= 2;
1328 }
1329
1330 /*
1331 * Max bursts that we can unroll due to limit on the
1332 * size of backward jump that can be encoded in DMALPEND
1333 * which is 8-bits and hence 255
1334 */
1335 cycmax = (255 - (szlp + szlpend)) / szbrst;
1336
1337 cyc = (cycmax < cyc) ? cycmax : cyc;
1338
1339 off = 0;
1340
1341 if (lcnt0) {
1342 off += _emit_LP(dry_run, &buf[off], 0, lcnt0);
1343 ljmp0 = off;
1344 }
1345
1346 off += _emit_LP(dry_run, &buf[off], 1, lcnt1);
1347 ljmp1 = off;
1348
Addy Ke271e1b862016-01-22 19:06:46 +08001349 off += _bursts(pl330, dry_run, &buf[off], pxs, cyc);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001350
1351 lpend.cond = ALWAYS;
1352 lpend.forever = false;
1353 lpend.loop = 1;
1354 lpend.bjump = off - ljmp1;
1355 off += _emit_LPEND(dry_run, &buf[off], &lpend);
1356
1357 if (lcnt0) {
1358 lpend.cond = ALWAYS;
1359 lpend.forever = false;
1360 lpend.loop = 0;
1361 lpend.bjump = off - ljmp0;
1362 off += _emit_LPEND(dry_run, &buf[off], &lpend);
1363 }
1364
1365 *bursts = lcnt1 * cyc;
1366 if (lcnt0)
1367 *bursts *= lcnt0;
1368
1369 return off;
1370}
1371
Addy Ke271e1b862016-01-22 19:06:46 +08001372static inline int _setup_loops(struct pl330_dmac *pl330,
1373 unsigned dry_run, u8 buf[],
1374 const struct _xfer_spec *pxs)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001375{
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001376 struct pl330_xfer *x = &pxs->desc->px;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001377 u32 ccr = pxs->ccr;
1378 unsigned long c, bursts = BYTE_TO_BURST(x->bytes, ccr);
Frank Mori Hess1d487452018-04-18 20:31:06 -04001379 int num_dregs = (x->bytes - BURST_TO_BYTE(bursts, ccr)) /
1380 BRST_SIZE(ccr);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001381 int off = 0;
1382
1383 while (bursts) {
1384 c = bursts;
Addy Ke271e1b862016-01-22 19:06:46 +08001385 off += _loop(pl330, dry_run, &buf[off], &c, pxs);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001386 bursts -= c;
1387 }
Frank Mori Hess1d487452018-04-18 20:31:06 -04001388 off += _dregs(pl330, dry_run, &buf[off], pxs, num_dregs);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001389
1390 return off;
1391}
1392
Addy Ke271e1b862016-01-22 19:06:46 +08001393static inline int _setup_xfer(struct pl330_dmac *pl330,
1394 unsigned dry_run, u8 buf[],
1395 const struct _xfer_spec *pxs)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001396{
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001397 struct pl330_xfer *x = &pxs->desc->px;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001398 int off = 0;
1399
1400 /* DMAMOV SAR, x->src_addr */
1401 off += _emit_MOV(dry_run, &buf[off], SAR, x->src_addr);
1402 /* DMAMOV DAR, x->dst_addr */
1403 off += _emit_MOV(dry_run, &buf[off], DAR, x->dst_addr);
1404
1405 /* Setup Loop(s) */
Addy Ke271e1b862016-01-22 19:06:46 +08001406 off += _setup_loops(pl330, dry_run, &buf[off], pxs);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001407
1408 return off;
1409}
1410
1411/*
1412 * A req is a sequence of one or more xfer units.
1413 * Returns the number of bytes taken to setup the MC for the req.
1414 */
Addy Ke271e1b862016-01-22 19:06:46 +08001415static int _setup_req(struct pl330_dmac *pl330, unsigned dry_run,
1416 struct pl330_thread *thrd, unsigned index,
1417 struct _xfer_spec *pxs)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001418{
1419 struct _pl330_req *req = &thrd->req[index];
Boojin Kimb7d861d2011-12-26 18:49:52 +09001420 u8 *buf = req->mc_cpu;
1421 int off = 0;
1422
1423 PL330_DBGMC_START(req->mc_bus);
1424
1425 /* DMAMOV CCR, ccr */
1426 off += _emit_MOV(dry_run, &buf[off], CCR, pxs->ccr);
1427
Addy Ke271e1b862016-01-22 19:06:46 +08001428 off += _setup_xfer(pl330, dry_run, &buf[off], pxs);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001429
1430 /* DMASEV peripheral/event */
1431 off += _emit_SEV(dry_run, &buf[off], thrd->ev);
1432 /* DMAEND */
1433 off += _emit_END(dry_run, &buf[off]);
1434
1435 return off;
1436}
1437
1438static inline u32 _prepare_ccr(const struct pl330_reqcfg *rqc)
1439{
1440 u32 ccr = 0;
1441
1442 if (rqc->src_inc)
1443 ccr |= CC_SRCINC;
1444
1445 if (rqc->dst_inc)
1446 ccr |= CC_DSTINC;
1447
1448 /* We set same protection levels for Src and DST for now */
1449 if (rqc->privileged)
1450 ccr |= CC_SRCPRI | CC_DSTPRI;
1451 if (rqc->nonsecure)
1452 ccr |= CC_SRCNS | CC_DSTNS;
1453 if (rqc->insnaccess)
1454 ccr |= CC_SRCIA | CC_DSTIA;
1455
1456 ccr |= (((rqc->brst_len - 1) & 0xf) << CC_SRCBRSTLEN_SHFT);
1457 ccr |= (((rqc->brst_len - 1) & 0xf) << CC_DSTBRSTLEN_SHFT);
1458
1459 ccr |= (rqc->brst_size << CC_SRCBRSTSIZE_SHFT);
1460 ccr |= (rqc->brst_size << CC_DSTBRSTSIZE_SHFT);
1461
1462 ccr |= (rqc->scctl << CC_SRCCCTRL_SHFT);
1463 ccr |= (rqc->dcctl << CC_DSTCCTRL_SHFT);
1464
1465 ccr |= (rqc->swap << CC_SWAP_SHFT);
1466
1467 return ccr;
1468}
1469
Boojin Kimb7d861d2011-12-26 18:49:52 +09001470/*
1471 * Submit a list of xfers after which the client wants notification.
1472 * Client is not notified after each xfer unit, just once after all
1473 * xfer units are done or some error occurs.
1474 */
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001475static int pl330_submit_req(struct pl330_thread *thrd,
1476 struct dma_pl330_desc *desc)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001477{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001478 struct pl330_dmac *pl330 = thrd->dmac;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001479 struct _xfer_spec xs;
1480 unsigned long flags;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001481 unsigned idx;
1482 u32 ccr;
1483 int ret = 0;
1484
Frank Mori Hess1d487452018-04-18 20:31:06 -04001485 switch (desc->rqtype) {
1486 case DMA_MEM_TO_DEV:
1487 break;
1488
1489 case DMA_DEV_TO_MEM:
1490 break;
1491
1492 case DMA_MEM_TO_MEM:
1493 break;
1494
1495 default:
1496 return -ENOTSUPP;
1497 }
1498
Boojin Kimb7d861d2011-12-26 18:49:52 +09001499 if (pl330->state == DYING
1500 || pl330->dmac_tbd.reset_chan & (1 << thrd->id)) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001501 dev_info(thrd->dmac->ddma.dev, "%s:%d\n",
Boojin Kimb7d861d2011-12-26 18:49:52 +09001502 __func__, __LINE__);
1503 return -EAGAIN;
1504 }
1505
1506 /* If request for non-existing peripheral */
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001507 if (desc->rqtype != DMA_MEM_TO_MEM &&
1508 desc->peri >= pl330->pcfg.num_peri) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001509 dev_info(thrd->dmac->ddma.dev,
Boojin Kimb7d861d2011-12-26 18:49:52 +09001510 "%s:%d Invalid peripheral(%u)!\n",
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001511 __func__, __LINE__, desc->peri);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001512 return -EINVAL;
1513 }
1514
1515 spin_lock_irqsave(&pl330->lock, flags);
1516
1517 if (_queue_full(thrd)) {
1518 ret = -EAGAIN;
1519 goto xfer_exit;
1520 }
1521
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001522 /* Prefer Secure Channel */
1523 if (!_manager_ns(thrd))
1524 desc->rqcfg.nonsecure = 0;
1525 else
1526 desc->rqcfg.nonsecure = 1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001527
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001528 ccr = _prepare_ccr(&desc->rqcfg);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001529
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001530 idx = thrd->req[0].desc == NULL ? 0 : 1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001531
1532 xs.ccr = ccr;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001533 xs.desc = desc;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001534
1535 /* First dry run to check if req is acceptable */
Addy Ke271e1b862016-01-22 19:06:46 +08001536 ret = _setup_req(pl330, 1, thrd, idx, &xs);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001537 if (ret < 0)
1538 goto xfer_exit;
1539
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001540 if (ret > pl330->mcbufsz / 2) {
Michal Suchaneke5489d52015-06-03 21:26:41 +00001541 dev_info(pl330->ddma.dev, "%s:%d Try increasing mcbufsz (%i/%i)\n",
1542 __func__, __LINE__, ret, pl330->mcbufsz / 2);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001543 ret = -ENOMEM;
1544 goto xfer_exit;
1545 }
1546
1547 /* Hook the request */
1548 thrd->lstenq = idx;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001549 thrd->req[idx].desc = desc;
Addy Ke271e1b862016-01-22 19:06:46 +08001550 _setup_req(pl330, 0, thrd, idx, &xs);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001551
1552 ret = 0;
1553
1554xfer_exit:
1555 spin_unlock_irqrestore(&pl330->lock, flags);
1556
1557 return ret;
1558}
1559
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001560static void dma_pl330_rqcb(struct dma_pl330_desc *desc, enum pl330_op_err err)
Lars-Peter Clausen6079d382014-07-06 20:32:25 +02001561{
Javier Martinez Canillasb1e51d72014-07-19 03:21:47 +02001562 struct dma_pl330_chan *pch;
Lars-Peter Clausen6079d382014-07-06 20:32:25 +02001563 unsigned long flags;
1564
Javier Martinez Canillasb1e51d72014-07-19 03:21:47 +02001565 if (!desc)
1566 return;
1567
1568 pch = desc->pchan;
1569
Lars-Peter Clausen6079d382014-07-06 20:32:25 +02001570 /* If desc aborted */
1571 if (!pch)
1572 return;
1573
1574 spin_lock_irqsave(&pch->lock, flags);
1575
1576 desc->status = DONE;
1577
1578 spin_unlock_irqrestore(&pch->lock, flags);
1579
1580 tasklet_schedule(&pch->task);
1581}
1582
Boojin Kimb7d861d2011-12-26 18:49:52 +09001583static void pl330_dotask(unsigned long data)
1584{
1585 struct pl330_dmac *pl330 = (struct pl330_dmac *) data;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001586 unsigned long flags;
1587 int i;
1588
1589 spin_lock_irqsave(&pl330->lock, flags);
1590
1591 /* The DMAC itself gone nuts */
1592 if (pl330->dmac_tbd.reset_dmac) {
1593 pl330->state = DYING;
1594 /* Reset the manager too */
1595 pl330->dmac_tbd.reset_mngr = true;
1596 /* Clear the reset flag */
1597 pl330->dmac_tbd.reset_dmac = false;
1598 }
1599
1600 if (pl330->dmac_tbd.reset_mngr) {
1601 _stop(pl330->manager);
1602 /* Reset all channels */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001603 pl330->dmac_tbd.reset_chan = (1 << pl330->pcfg.num_chan) - 1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001604 /* Clear the reset flag */
1605 pl330->dmac_tbd.reset_mngr = false;
1606 }
1607
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001608 for (i = 0; i < pl330->pcfg.num_chan; i++) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001609
1610 if (pl330->dmac_tbd.reset_chan & (1 << i)) {
1611 struct pl330_thread *thrd = &pl330->channels[i];
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001612 void __iomem *regs = pl330->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001613 enum pl330_op_err err;
1614
1615 _stop(thrd);
1616
1617 if (readl(regs + FSC) & (1 << thrd->id))
1618 err = PL330_ERR_FAIL;
1619 else
1620 err = PL330_ERR_ABORT;
1621
1622 spin_unlock_irqrestore(&pl330->lock, flags);
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001623 dma_pl330_rqcb(thrd->req[1 - thrd->lstenq].desc, err);
1624 dma_pl330_rqcb(thrd->req[thrd->lstenq].desc, err);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001625 spin_lock_irqsave(&pl330->lock, flags);
1626
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001627 thrd->req[0].desc = NULL;
1628 thrd->req[1].desc = NULL;
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001629 thrd->req_running = -1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001630
1631 /* Clear the reset flag */
1632 pl330->dmac_tbd.reset_chan &= ~(1 << i);
1633 }
1634 }
1635
1636 spin_unlock_irqrestore(&pl330->lock, flags);
1637
1638 return;
1639}
1640
1641/* Returns 1 if state was updated, 0 otherwise */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001642static int pl330_update(struct pl330_dmac *pl330)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001643{
Qi Houa3ca831242018-03-06 09:13:37 +08001644 struct dma_pl330_desc *descdone;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001645 unsigned long flags;
1646 void __iomem *regs;
1647 u32 val;
1648 int id, ev, ret = 0;
1649
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001650 regs = pl330->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001651
1652 spin_lock_irqsave(&pl330->lock, flags);
1653
1654 val = readl(regs + FSM) & 0x1;
1655 if (val)
1656 pl330->dmac_tbd.reset_mngr = true;
1657 else
1658 pl330->dmac_tbd.reset_mngr = false;
1659
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001660 val = readl(regs + FSC) & ((1 << pl330->pcfg.num_chan) - 1);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001661 pl330->dmac_tbd.reset_chan |= val;
1662 if (val) {
1663 int i = 0;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001664 while (i < pl330->pcfg.num_chan) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001665 if (val & (1 << i)) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001666 dev_info(pl330->ddma.dev,
Boojin Kimb7d861d2011-12-26 18:49:52 +09001667 "Reset Channel-%d\t CS-%x FTC-%x\n",
1668 i, readl(regs + CS(i)),
1669 readl(regs + FTC(i)));
1670 _stop(&pl330->channels[i]);
1671 }
1672 i++;
1673 }
1674 }
1675
1676 /* Check which event happened i.e, thread notified */
1677 val = readl(regs + ES);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001678 if (pl330->pcfg.num_events < 32
1679 && val & ~((1 << pl330->pcfg.num_events) - 1)) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001680 pl330->dmac_tbd.reset_dmac = true;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001681 dev_err(pl330->ddma.dev, "%s:%d Unexpected!\n", __func__,
1682 __LINE__);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001683 ret = 1;
1684 goto updt_exit;
1685 }
1686
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001687 for (ev = 0; ev < pl330->pcfg.num_events; ev++) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001688 if (val & (1 << ev)) { /* Event occurred */
1689 struct pl330_thread *thrd;
1690 u32 inten = readl(regs + INTEN);
1691 int active;
1692
1693 /* Clear the event */
1694 if (inten & (1 << ev))
1695 writel(1 << ev, regs + INTCLR);
1696
1697 ret = 1;
1698
1699 id = pl330->events[ev];
1700
1701 thrd = &pl330->channels[id];
1702
1703 active = thrd->req_running;
1704 if (active == -1) /* Aborted */
1705 continue;
1706
Javi Merinofdec53d2012-06-13 15:07:00 +01001707 /* Detach the req */
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001708 descdone = thrd->req[active].desc;
1709 thrd->req[active].desc = NULL;
Javi Merinofdec53d2012-06-13 15:07:00 +01001710
Addy Ke0091b9d2014-12-08 19:28:20 +08001711 thrd->req_running = -1;
1712
Boojin Kimb7d861d2011-12-26 18:49:52 +09001713 /* Get going again ASAP */
1714 _start(thrd);
1715
1716 /* For now, just make a list of callbacks to be done */
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001717 list_add_tail(&descdone->rqd, &pl330->req_done);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001718 }
1719 }
1720
1721 /* Now that we are in no hurry, do the callbacks */
Qi Houa3ca831242018-03-06 09:13:37 +08001722 while (!list_empty(&pl330->req_done)) {
1723 descdone = list_first_entry(&pl330->req_done,
1724 struct dma_pl330_desc, rqd);
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001725 list_del(&descdone->rqd);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001726 spin_unlock_irqrestore(&pl330->lock, flags);
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001727 dma_pl330_rqcb(descdone, PL330_ERR_NONE);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001728 spin_lock_irqsave(&pl330->lock, flags);
1729 }
1730
1731updt_exit:
1732 spin_unlock_irqrestore(&pl330->lock, flags);
1733
1734 if (pl330->dmac_tbd.reset_dmac
1735 || pl330->dmac_tbd.reset_mngr
1736 || pl330->dmac_tbd.reset_chan) {
1737 ret = 1;
1738 tasklet_schedule(&pl330->tasks);
1739 }
1740
1741 return ret;
1742}
1743
Boojin Kimb7d861d2011-12-26 18:49:52 +09001744/* Reserve an event */
1745static inline int _alloc_event(struct pl330_thread *thrd)
1746{
1747 struct pl330_dmac *pl330 = thrd->dmac;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001748 int ev;
1749
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001750 for (ev = 0; ev < pl330->pcfg.num_events; ev++)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001751 if (pl330->events[ev] == -1) {
1752 pl330->events[ev] = thrd->id;
1753 return ev;
1754 }
1755
1756 return -1;
1757}
1758
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001759static bool _chan_ns(const struct pl330_dmac *pl330, int i)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001760{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001761 return pl330->pcfg.irq_ns & (1 << i);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001762}
1763
1764/* Upon success, returns IdentityToken for the
1765 * allocated channel, NULL otherwise.
1766 */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001767static struct pl330_thread *pl330_request_channel(struct pl330_dmac *pl330)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001768{
1769 struct pl330_thread *thrd = NULL;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001770 int chans, i;
1771
Boojin Kimb7d861d2011-12-26 18:49:52 +09001772 if (pl330->state == DYING)
1773 return NULL;
1774
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001775 chans = pl330->pcfg.num_chan;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001776
Boojin Kimb7d861d2011-12-26 18:49:52 +09001777 for (i = 0; i < chans; i++) {
1778 thrd = &pl330->channels[i];
1779 if ((thrd->free) && (!_manager_ns(thrd) ||
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001780 _chan_ns(pl330, i))) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09001781 thrd->ev = _alloc_event(thrd);
1782 if (thrd->ev >= 0) {
1783 thrd->free = false;
1784 thrd->lstenq = 1;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001785 thrd->req[0].desc = NULL;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001786 thrd->req[1].desc = NULL;
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001787 thrd->req_running = -1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001788 break;
1789 }
1790 }
1791 thrd = NULL;
1792 }
1793
Boojin Kimb7d861d2011-12-26 18:49:52 +09001794 return thrd;
1795}
1796
1797/* Release an event */
1798static inline void _free_event(struct pl330_thread *thrd, int ev)
1799{
1800 struct pl330_dmac *pl330 = thrd->dmac;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001801
1802 /* If the event is valid and was held by the thread */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001803 if (ev >= 0 && ev < pl330->pcfg.num_events
Boojin Kimb7d861d2011-12-26 18:49:52 +09001804 && pl330->events[ev] == thrd->id)
1805 pl330->events[ev] = -1;
1806}
1807
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +02001808static void pl330_release_channel(struct pl330_thread *thrd)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001809{
Boojin Kimb7d861d2011-12-26 18:49:52 +09001810 if (!thrd || thrd->free)
1811 return;
1812
1813 _stop(thrd);
1814
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001815 dma_pl330_rqcb(thrd->req[1 - thrd->lstenq].desc, PL330_ERR_ABORT);
1816 dma_pl330_rqcb(thrd->req[thrd->lstenq].desc, PL330_ERR_ABORT);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001817
Boojin Kimb7d861d2011-12-26 18:49:52 +09001818 _free_event(thrd, thrd->ev);
1819 thrd->free = true;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001820}
1821
1822/* Initialize the structure for PL330 configuration, that can be used
1823 * by the client driver the make best use of the DMAC
1824 */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001825static void read_dmac_config(struct pl330_dmac *pl330)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001826{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001827 void __iomem *regs = pl330->base;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001828 u32 val;
1829
1830 val = readl(regs + CRD) >> CRD_DATA_WIDTH_SHIFT;
1831 val &= CRD_DATA_WIDTH_MASK;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001832 pl330->pcfg.data_bus_width = 8 * (1 << val);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001833
1834 val = readl(regs + CRD) >> CRD_DATA_BUFF_SHIFT;
1835 val &= CRD_DATA_BUFF_MASK;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001836 pl330->pcfg.data_buf_dep = val + 1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001837
1838 val = readl(regs + CR0) >> CR0_NUM_CHANS_SHIFT;
1839 val &= CR0_NUM_CHANS_MASK;
1840 val += 1;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001841 pl330->pcfg.num_chan = val;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001842
1843 val = readl(regs + CR0);
1844 if (val & CR0_PERIPH_REQ_SET) {
1845 val = (val >> CR0_NUM_PERIPH_SHIFT) & CR0_NUM_PERIPH_MASK;
1846 val += 1;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001847 pl330->pcfg.num_peri = val;
1848 pl330->pcfg.peri_ns = readl(regs + CR4);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001849 } else {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001850 pl330->pcfg.num_peri = 0;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001851 }
1852
1853 val = readl(regs + CR0);
1854 if (val & CR0_BOOT_MAN_NS)
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001855 pl330->pcfg.mode |= DMAC_MODE_NS;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001856 else
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001857 pl330->pcfg.mode &= ~DMAC_MODE_NS;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001858
1859 val = readl(regs + CR0) >> CR0_NUM_EVENTS_SHIFT;
1860 val &= CR0_NUM_EVENTS_MASK;
1861 val += 1;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001862 pl330->pcfg.num_events = val;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001863
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001864 pl330->pcfg.irq_ns = readl(regs + CR3);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001865}
1866
1867static inline void _reset_thread(struct pl330_thread *thrd)
1868{
1869 struct pl330_dmac *pl330 = thrd->dmac;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001870
1871 thrd->req[0].mc_cpu = pl330->mcode_cpu
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001872 + (thrd->id * pl330->mcbufsz);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001873 thrd->req[0].mc_bus = pl330->mcode_bus
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001874 + (thrd->id * pl330->mcbufsz);
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001875 thrd->req[0].desc = NULL;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001876
1877 thrd->req[1].mc_cpu = thrd->req[0].mc_cpu
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001878 + pl330->mcbufsz / 2;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001879 thrd->req[1].mc_bus = thrd->req[0].mc_bus
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001880 + pl330->mcbufsz / 2;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02001881 thrd->req[1].desc = NULL;
Lars-Peter Clausen8ed30a12014-07-06 20:32:31 +02001882
1883 thrd->req_running = -1;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001884}
1885
1886static int dmac_alloc_threads(struct pl330_dmac *pl330)
1887{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001888 int chans = pl330->pcfg.num_chan;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001889 struct pl330_thread *thrd;
1890 int i;
1891
1892 /* Allocate 1 Manager and 'chans' Channel threads */
Kees Cook6396bb22018-06-12 14:03:40 -07001893 pl330->channels = kcalloc(1 + chans, sizeof(*thrd),
Boojin Kimb7d861d2011-12-26 18:49:52 +09001894 GFP_KERNEL);
1895 if (!pl330->channels)
1896 return -ENOMEM;
1897
1898 /* Init Channel threads */
1899 for (i = 0; i < chans; i++) {
1900 thrd = &pl330->channels[i];
1901 thrd->id = i;
1902 thrd->dmac = pl330;
1903 _reset_thread(thrd);
1904 thrd->free = true;
1905 }
1906
1907 /* MANAGER is indexed at the end */
1908 thrd = &pl330->channels[chans];
1909 thrd->id = chans;
1910 thrd->dmac = pl330;
1911 thrd->free = false;
1912 pl330->manager = thrd;
1913
1914 return 0;
1915}
1916
1917static int dmac_alloc_resources(struct pl330_dmac *pl330)
1918{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001919 int chans = pl330->pcfg.num_chan;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001920 int ret;
1921
1922 /*
1923 * Alloc MicroCode buffer for 'chans' Channel threads.
1924 * A channel's buffer offset is (Channel_Id * MCODE_BUFF_PERCHAN)
1925 */
Mitchel Humpherys1b2354d2017-01-06 18:58:14 +05301926 pl330->mcode_cpu = dma_alloc_attrs(pl330->ddma.dev,
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001927 chans * pl330->mcbufsz,
Mitchel Humpherys1b2354d2017-01-06 18:58:14 +05301928 &pl330->mcode_bus, GFP_KERNEL,
1929 DMA_ATTR_PRIVILEGED);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001930 if (!pl330->mcode_cpu) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001931 dev_err(pl330->ddma.dev, "%s:%d Can't allocate memory!\n",
Boojin Kimb7d861d2011-12-26 18:49:52 +09001932 __func__, __LINE__);
1933 return -ENOMEM;
1934 }
1935
1936 ret = dmac_alloc_threads(pl330);
1937 if (ret) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001938 dev_err(pl330->ddma.dev, "%s:%d Can't to create channels for DMAC!\n",
Boojin Kimb7d861d2011-12-26 18:49:52 +09001939 __func__, __LINE__);
Fuqian Huangd1b622f2019-07-26 18:59:47 +08001940 dma_free_attrs(pl330->ddma.dev,
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001941 chans * pl330->mcbufsz,
Fuqian Huangd1b622f2019-07-26 18:59:47 +08001942 pl330->mcode_cpu, pl330->mcode_bus,
1943 DMA_ATTR_PRIVILEGED);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001944 return ret;
1945 }
1946
1947 return 0;
1948}
1949
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001950static int pl330_add(struct pl330_dmac *pl330)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001951{
Boojin Kimb7d861d2011-12-26 18:49:52 +09001952 int i, ret;
1953
Boojin Kimb7d861d2011-12-26 18:49:52 +09001954 /* Check if we can handle this DMAC */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001955 if ((pl330->pcfg.periph_id & 0xfffff) != PERIPH_ID_VAL) {
1956 dev_err(pl330->ddma.dev, "PERIPH_ID 0x%x !\n",
1957 pl330->pcfg.periph_id);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001958 return -EINVAL;
1959 }
1960
1961 /* Read the configuration of the DMAC */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001962 read_dmac_config(pl330);
Boojin Kimb7d861d2011-12-26 18:49:52 +09001963
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001964 if (pl330->pcfg.num_events == 0) {
1965 dev_err(pl330->ddma.dev, "%s:%d Can't work without events!\n",
Boojin Kimb7d861d2011-12-26 18:49:52 +09001966 __func__, __LINE__);
1967 return -EINVAL;
1968 }
1969
Boojin Kimb7d861d2011-12-26 18:49:52 +09001970 spin_lock_init(&pl330->lock);
1971
1972 INIT_LIST_HEAD(&pl330->req_done);
1973
1974 /* Use default MC buffer size if not provided */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001975 if (!pl330->mcbufsz)
1976 pl330->mcbufsz = MCODE_BUFF_PER_REQ * 2;
Boojin Kimb7d861d2011-12-26 18:49:52 +09001977
1978 /* Mark all events as free */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001979 for (i = 0; i < pl330->pcfg.num_events; i++)
Boojin Kimb7d861d2011-12-26 18:49:52 +09001980 pl330->events[i] = -1;
1981
1982 /* Allocate resources needed by the DMAC */
1983 ret = dmac_alloc_resources(pl330);
1984 if (ret) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02001985 dev_err(pl330->ddma.dev, "Unable to create channels for DMAC\n");
Boojin Kimb7d861d2011-12-26 18:49:52 +09001986 return ret;
1987 }
1988
1989 tasklet_init(&pl330->tasks, pl330_dotask, (unsigned long) pl330);
1990
1991 pl330->state = INIT;
1992
1993 return 0;
1994}
1995
1996static int dmac_free_threads(struct pl330_dmac *pl330)
1997{
Boojin Kimb7d861d2011-12-26 18:49:52 +09001998 struct pl330_thread *thrd;
1999 int i;
2000
2001 /* Release Channel threads */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002002 for (i = 0; i < pl330->pcfg.num_chan; i++) {
Boojin Kimb7d861d2011-12-26 18:49:52 +09002003 thrd = &pl330->channels[i];
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +02002004 pl330_release_channel(thrd);
Boojin Kimb7d861d2011-12-26 18:49:52 +09002005 }
2006
2007 /* Free memory */
2008 kfree(pl330->channels);
2009
2010 return 0;
2011}
2012
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002013static void pl330_del(struct pl330_dmac *pl330)
Boojin Kimb7d861d2011-12-26 18:49:52 +09002014{
Boojin Kimb7d861d2011-12-26 18:49:52 +09002015 pl330->state = UNINIT;
2016
2017 tasklet_kill(&pl330->tasks);
2018
2019 /* Free DMAC resources */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002020 dmac_free_threads(pl330);
Boojin Kimb7d861d2011-12-26 18:49:52 +09002021
Fuqian Huangd1b622f2019-07-26 18:59:47 +08002022 dma_free_attrs(pl330->ddma.dev,
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002023 pl330->pcfg.num_chan * pl330->mcbufsz, pl330->mcode_cpu,
Fuqian Huangd1b622f2019-07-26 18:59:47 +08002024 pl330->mcode_bus, DMA_ATTR_PRIVILEGED);
Boojin Kimb7d861d2011-12-26 18:49:52 +09002025}
2026
Thomas Abraham3e2ec132011-10-24 11:43:02 +02002027/* forward declaration */
2028static struct amba_driver pl330_driver;
2029
Jassi Brarb3040e42010-05-23 20:28:19 -07002030static inline struct dma_pl330_chan *
2031to_pchan(struct dma_chan *ch)
2032{
2033 if (!ch)
2034 return NULL;
2035
2036 return container_of(ch, struct dma_pl330_chan, chan);
2037}
2038
2039static inline struct dma_pl330_desc *
2040to_desc(struct dma_async_tx_descriptor *tx)
2041{
2042 return container_of(tx, struct dma_pl330_desc, txd);
2043}
2044
Jassi Brarb3040e42010-05-23 20:28:19 -07002045static inline void fill_queue(struct dma_pl330_chan *pch)
2046{
2047 struct dma_pl330_desc *desc;
2048 int ret;
2049
2050 list_for_each_entry(desc, &pch->work_list, node) {
2051
2052 /* If already submitted */
2053 if (desc->status == BUSY)
Jassi Brar30fb9802013-02-13 16:13:14 +05302054 continue;
Jassi Brarb3040e42010-05-23 20:28:19 -07002055
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02002056 ret = pl330_submit_req(pch->thread, desc);
Jassi Brarb3040e42010-05-23 20:28:19 -07002057 if (!ret) {
2058 desc->status = BUSY;
Jassi Brarb3040e42010-05-23 20:28:19 -07002059 } else if (ret == -EAGAIN) {
2060 /* QFull or DMAC Dying */
2061 break;
2062 } else {
2063 /* Unacceptable request */
2064 desc->status = DONE;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002065 dev_err(pch->dmac->ddma.dev, "%s:%d Bad Desc(%d)\n",
Jassi Brarb3040e42010-05-23 20:28:19 -07002066 __func__, __LINE__, desc->txd.cookie);
2067 tasklet_schedule(&pch->task);
2068 }
2069 }
2070}
2071
2072static void pl330_tasklet(unsigned long data)
2073{
2074 struct dma_pl330_chan *pch = (struct dma_pl330_chan *)data;
2075 struct dma_pl330_desc *desc, *_dt;
2076 unsigned long flags;
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +01002077 bool power_down = false;
Jassi Brarb3040e42010-05-23 20:28:19 -07002078
2079 spin_lock_irqsave(&pch->lock, flags);
2080
2081 /* Pick up ripe tomatoes */
2082 list_for_each_entry_safe(desc, _dt, &pch->work_list, node)
2083 if (desc->status == DONE) {
Tushar Behera30c1dc02012-05-23 16:47:31 +05302084 if (!pch->cyclic)
Vinod Kouleab21582012-05-11 11:24:41 +05302085 dma_cookie_complete(&desc->txd);
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002086 list_move_tail(&desc->node, &pch->completed_list);
Jassi Brarb3040e42010-05-23 20:28:19 -07002087 }
2088
2089 /* Try to submit a req imm. next to the last completed cookie */
2090 fill_queue(pch);
2091
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +01002092 if (list_empty(&pch->work_list)) {
2093 spin_lock(&pch->thread->dmac->lock);
2094 _stop(pch->thread);
2095 spin_unlock(&pch->thread->dmac->lock);
2096 power_down = true;
Marek Szyprowski5c9e6c22016-12-16 11:39:11 +01002097 pch->active = false;
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +01002098 } else {
2099 /* Make sure the PL330 Channel thread is active */
2100 spin_lock(&pch->thread->dmac->lock);
2101 _start(pch->thread);
2102 spin_unlock(&pch->thread->dmac->lock);
2103 }
Jassi Brarb3040e42010-05-23 20:28:19 -07002104
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002105 while (!list_empty(&pch->completed_list)) {
Dave Jiangf08462c2016-07-20 13:12:35 -07002106 struct dmaengine_desc_callback cb;
Jassi Brarb3040e42010-05-23 20:28:19 -07002107
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002108 desc = list_first_entry(&pch->completed_list,
2109 struct dma_pl330_desc, node);
2110
Dave Jiangf08462c2016-07-20 13:12:35 -07002111 dmaengine_desc_get_callback(&desc->txd, &cb);
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002112
2113 if (pch->cyclic) {
2114 desc->status = PREP;
2115 list_move_tail(&desc->node, &pch->work_list);
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +01002116 if (power_down) {
Marek Szyprowski5c9e6c22016-12-16 11:39:11 +01002117 pch->active = true;
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +01002118 spin_lock(&pch->thread->dmac->lock);
2119 _start(pch->thread);
2120 spin_unlock(&pch->thread->dmac->lock);
2121 power_down = false;
2122 }
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002123 } else {
2124 desc->status = FREE;
2125 list_move_tail(&desc->node, &pch->dmac->desc_pool);
2126 }
2127
Dan Williamsd38a8c62013-10-18 19:35:23 +02002128 dma_descriptor_unmap(&desc->txd);
2129
Dave Jiangf08462c2016-07-20 13:12:35 -07002130 if (dmaengine_desc_callback_valid(&cb)) {
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002131 spin_unlock_irqrestore(&pch->lock, flags);
Dave Jiangf08462c2016-07-20 13:12:35 -07002132 dmaengine_desc_callback_invoke(&cb, NULL);
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002133 spin_lock_irqsave(&pch->lock, flags);
2134 }
2135 }
2136 spin_unlock_irqrestore(&pch->lock, flags);
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +01002137
2138 /* If work list empty, power down */
2139 if (power_down) {
2140 pm_runtime_mark_last_busy(pch->dmac->ddma.dev);
2141 pm_runtime_put_autosuspend(pch->dmac->ddma.dev);
2142 }
Jassi Brarb3040e42010-05-23 20:28:19 -07002143}
2144
Padmavathi Vennaa80258f2013-02-14 09:10:06 +05302145static struct dma_chan *of_dma_pl330_xlate(struct of_phandle_args *dma_spec,
2146 struct of_dma *ofdma)
2147{
2148 int count = dma_spec->args_count;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002149 struct pl330_dmac *pl330 = ofdma->of_dma_data;
Lars-Peter Clausen70cbb162014-01-11 20:08:39 +01002150 unsigned int chan_id;
Padmavathi Vennaa80258f2013-02-14 09:10:06 +05302151
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002152 if (!pl330)
2153 return NULL;
2154
Padmavathi Vennaa80258f2013-02-14 09:10:06 +05302155 if (count != 1)
2156 return NULL;
2157
Lars-Peter Clausen70cbb162014-01-11 20:08:39 +01002158 chan_id = dma_spec->args[0];
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002159 if (chan_id >= pl330->num_peripherals)
Lars-Peter Clausen70cbb162014-01-11 20:08:39 +01002160 return NULL;
Padmavathi Vennaa80258f2013-02-14 09:10:06 +05302161
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002162 return dma_get_slave_channel(&pl330->peripherals[chan_id].chan);
Padmavathi Vennaa80258f2013-02-14 09:10:06 +05302163}
2164
Jassi Brarb3040e42010-05-23 20:28:19 -07002165static int pl330_alloc_chan_resources(struct dma_chan *chan)
2166{
2167 struct dma_pl330_chan *pch = to_pchan(chan);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002168 struct pl330_dmac *pl330 = pch->dmac;
Jassi Brarb3040e42010-05-23 20:28:19 -07002169 unsigned long flags;
2170
Iago Abal91539eb12017-01-11 14:00:21 +01002171 spin_lock_irqsave(&pl330->lock, flags);
Jassi Brarb3040e42010-05-23 20:28:19 -07002172
Russell King - ARM Linuxd3ee98cdc2012-03-06 22:35:47 +00002173 dma_cookie_init(chan);
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002174 pch->cyclic = false;
Jassi Brarb3040e42010-05-23 20:28:19 -07002175
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002176 pch->thread = pl330_request_channel(pl330);
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +02002177 if (!pch->thread) {
Iago Abal91539eb12017-01-11 14:00:21 +01002178 spin_unlock_irqrestore(&pl330->lock, flags);
Inderpal Singh02747882012-09-17 09:57:45 +05302179 return -ENOMEM;
Jassi Brarb3040e42010-05-23 20:28:19 -07002180 }
2181
2182 tasklet_init(&pch->task, pl330_tasklet, (unsigned long) pch);
2183
Iago Abal91539eb12017-01-11 14:00:21 +01002184 spin_unlock_irqrestore(&pl330->lock, flags);
Jassi Brarb3040e42010-05-23 20:28:19 -07002185
2186 return 1;
2187}
2188
Robin Murphy4d6d74e2017-05-19 15:06:44 +01002189/*
2190 * We need the data direction between the DMAC (the dma-mapping "device") and
2191 * the FIFO (the dmaengine "dev"), from the FIFO's point of view. Confusing!
2192 */
2193static enum dma_data_direction
2194pl330_dma_slave_map_dir(enum dma_transfer_direction dir)
2195{
2196 switch (dir) {
2197 case DMA_MEM_TO_DEV:
2198 return DMA_FROM_DEVICE;
2199 case DMA_DEV_TO_MEM:
2200 return DMA_TO_DEVICE;
2201 case DMA_DEV_TO_DEV:
2202 return DMA_BIDIRECTIONAL;
2203 default:
2204 return DMA_NONE;
2205 }
2206}
2207
2208static void pl330_unprep_slave_fifo(struct dma_pl330_chan *pch)
2209{
2210 if (pch->dir != DMA_NONE)
2211 dma_unmap_resource(pch->chan.device->dev, pch->fifo_dma,
2212 1 << pch->burst_sz, pch->dir, 0);
2213 pch->dir = DMA_NONE;
2214}
2215
2216
2217static bool pl330_prep_slave_fifo(struct dma_pl330_chan *pch,
2218 enum dma_transfer_direction dir)
2219{
2220 struct device *dev = pch->chan.device->dev;
2221 enum dma_data_direction dma_dir = pl330_dma_slave_map_dir(dir);
2222
2223 /* Already mapped for this config? */
2224 if (pch->dir == dma_dir)
2225 return true;
2226
2227 pl330_unprep_slave_fifo(pch);
2228 pch->fifo_dma = dma_map_resource(dev, pch->fifo_addr,
2229 1 << pch->burst_sz, dma_dir, 0);
2230 if (dma_mapping_error(dev, pch->fifo_dma))
2231 return false;
2232
2233 pch->dir = dma_dir;
2234 return true;
2235}
2236
Frank Mori Hess1d487452018-04-18 20:31:06 -04002237static int fixup_burst_len(int max_burst_len, int quirks)
2238{
Sugar Zhang05611a92020-06-29 22:05:42 +08002239 if (max_burst_len > PL330_MAX_BURST)
Frank Mori Hess1d487452018-04-18 20:31:06 -04002240 return PL330_MAX_BURST;
2241 else if (max_burst_len < 1)
2242 return 1;
2243 else
2244 return max_burst_len;
2245}
2246
Vinod Koul445897c2018-10-25 15:26:07 +01002247static int pl330_config_write(struct dma_chan *chan,
2248 struct dma_slave_config *slave_config,
2249 enum dma_transfer_direction direction)
Maxime Ripard740aa952014-11-17 14:42:29 +01002250{
2251 struct dma_pl330_chan *pch = to_pchan(chan);
2252
Robin Murphy4d6d74e2017-05-19 15:06:44 +01002253 pl330_unprep_slave_fifo(pch);
Vinod Koul445897c2018-10-25 15:26:07 +01002254 if (direction == DMA_MEM_TO_DEV) {
Maxime Ripard740aa952014-11-17 14:42:29 +01002255 if (slave_config->dst_addr)
2256 pch->fifo_addr = slave_config->dst_addr;
2257 if (slave_config->dst_addr_width)
2258 pch->burst_sz = __ffs(slave_config->dst_addr_width);
Frank Mori Hess1d487452018-04-18 20:31:06 -04002259 pch->burst_len = fixup_burst_len(slave_config->dst_maxburst,
2260 pch->dmac->quirks);
Vinod Koul445897c2018-10-25 15:26:07 +01002261 } else if (direction == DMA_DEV_TO_MEM) {
Maxime Ripard740aa952014-11-17 14:42:29 +01002262 if (slave_config->src_addr)
2263 pch->fifo_addr = slave_config->src_addr;
2264 if (slave_config->src_addr_width)
2265 pch->burst_sz = __ffs(slave_config->src_addr_width);
Frank Mori Hess1d487452018-04-18 20:31:06 -04002266 pch->burst_len = fixup_burst_len(slave_config->src_maxburst,
2267 pch->dmac->quirks);
Maxime Ripard740aa952014-11-17 14:42:29 +01002268 }
2269
2270 return 0;
2271}
2272
Vinod Koul445897c2018-10-25 15:26:07 +01002273static int pl330_config(struct dma_chan *chan,
2274 struct dma_slave_config *slave_config)
2275{
2276 struct dma_pl330_chan *pch = to_pchan(chan);
2277
2278 memcpy(&pch->slave_config, slave_config, sizeof(*slave_config));
2279
2280 return 0;
2281}
2282
Maxime Ripard740aa952014-11-17 14:42:29 +01002283static int pl330_terminate_all(struct dma_chan *chan)
Jassi Brarb3040e42010-05-23 20:28:19 -07002284{
2285 struct dma_pl330_chan *pch = to_pchan(chan);
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02002286 struct dma_pl330_desc *desc;
Jassi Brarb3040e42010-05-23 20:28:19 -07002287 unsigned long flags;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002288 struct pl330_dmac *pl330 = pch->dmac;
Marek Szyprowski5c9e6c22016-12-16 11:39:11 +01002289 bool power_down = false;
Jassi Brarb3040e42010-05-23 20:28:19 -07002290
Krzysztof Kozlowski81cc6ed2015-05-21 09:34:09 +09002291 pm_runtime_get_sync(pl330->ddma.dev);
Maxime Ripard740aa952014-11-17 14:42:29 +01002292 spin_lock_irqsave(&pch->lock, flags);
John Keepinge4975652018-07-17 11:48:16 +01002293
Maxime Ripard740aa952014-11-17 14:42:29 +01002294 spin_lock(&pl330->lock);
2295 _stop(pch->thread);
Maxime Ripard740aa952014-11-17 14:42:29 +01002296 pch->thread->req[0].desc = NULL;
2297 pch->thread->req[1].desc = NULL;
2298 pch->thread->req_running = -1;
John Keepinge4975652018-07-17 11:48:16 +01002299 spin_unlock(&pl330->lock);
2300
Marek Szyprowski5c9e6c22016-12-16 11:39:11 +01002301 power_down = pch->active;
2302 pch->active = false;
Lars-Peter Clausenc26939e2014-07-06 20:32:32 +02002303
Maxime Ripard740aa952014-11-17 14:42:29 +01002304 /* Mark all desc done */
2305 list_for_each_entry(desc, &pch->submitted_list, node) {
2306 desc->status = FREE;
2307 dma_cookie_complete(&desc->txd);
Boojin Kim1d0c1d62011-09-02 09:44:31 +09002308 }
Jassi Brarb3040e42010-05-23 20:28:19 -07002309
Maxime Ripard740aa952014-11-17 14:42:29 +01002310 list_for_each_entry(desc, &pch->work_list , node) {
2311 desc->status = FREE;
2312 dma_cookie_complete(&desc->txd);
2313 }
2314
2315 list_splice_tail_init(&pch->submitted_list, &pl330->desc_pool);
2316 list_splice_tail_init(&pch->work_list, &pl330->desc_pool);
2317 list_splice_tail_init(&pch->completed_list, &pl330->desc_pool);
2318 spin_unlock_irqrestore(&pch->lock, flags);
Krzysztof Kozlowski81cc6ed2015-05-21 09:34:09 +09002319 pm_runtime_mark_last_busy(pl330->ddma.dev);
Marek Szyprowski5c9e6c22016-12-16 11:39:11 +01002320 if (power_down)
2321 pm_runtime_put_autosuspend(pl330->ddma.dev);
Krzysztof Kozlowski81cc6ed2015-05-21 09:34:09 +09002322 pm_runtime_put_autosuspend(pl330->ddma.dev);
Maxime Ripard740aa952014-11-17 14:42:29 +01002323
Jassi Brarb3040e42010-05-23 20:28:19 -07002324 return 0;
2325}
2326
Robert Baldyga88987d22015-02-11 13:23:18 +01002327/*
2328 * We don't support DMA_RESUME command because of hardware
2329 * limitations, so after pausing the channel we cannot restore
2330 * it to active state. We have to terminate channel and setup
2331 * DMA transfer again. This pause feature was implemented to
2332 * allow safely read residue before channel termination.
2333 */
Ben Dooks5503aed2015-03-16 11:52:44 +00002334static int pl330_pause(struct dma_chan *chan)
Robert Baldyga88987d22015-02-11 13:23:18 +01002335{
2336 struct dma_pl330_chan *pch = to_pchan(chan);
2337 struct pl330_dmac *pl330 = pch->dmac;
2338 unsigned long flags;
2339
2340 pm_runtime_get_sync(pl330->ddma.dev);
2341 spin_lock_irqsave(&pch->lock, flags);
2342
2343 spin_lock(&pl330->lock);
2344 _stop(pch->thread);
2345 spin_unlock(&pl330->lock);
2346
2347 spin_unlock_irqrestore(&pch->lock, flags);
2348 pm_runtime_mark_last_busy(pl330->ddma.dev);
2349 pm_runtime_put_autosuspend(pl330->ddma.dev);
2350
2351 return 0;
2352}
2353
Jassi Brarb3040e42010-05-23 20:28:19 -07002354static void pl330_free_chan_resources(struct dma_chan *chan)
2355{
2356 struct dma_pl330_chan *pch = to_pchan(chan);
Iago Abal91539eb12017-01-11 14:00:21 +01002357 struct pl330_dmac *pl330 = pch->dmac;
Jassi Brarb3040e42010-05-23 20:28:19 -07002358 unsigned long flags;
2359
Jassi Brarb3040e42010-05-23 20:28:19 -07002360 tasklet_kill(&pch->task);
2361
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +01002362 pm_runtime_get_sync(pch->dmac->ddma.dev);
Iago Abal91539eb12017-01-11 14:00:21 +01002363 spin_lock_irqsave(&pl330->lock, flags);
Bartlomiej Zolnierkiewiczda331ba2013-07-03 15:00:43 -07002364
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +02002365 pl330_release_channel(pch->thread);
2366 pch->thread = NULL;
Jassi Brarb3040e42010-05-23 20:28:19 -07002367
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002368 if (pch->cyclic)
2369 list_splice_tail_init(&pch->work_list, &pch->dmac->desc_pool);
2370
Iago Abal91539eb12017-01-11 14:00:21 +01002371 spin_unlock_irqrestore(&pl330->lock, flags);
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +01002372 pm_runtime_mark_last_busy(pch->dmac->ddma.dev);
2373 pm_runtime_put_autosuspend(pch->dmac->ddma.dev);
Robin Murphy4d6d74e2017-05-19 15:06:44 +01002374 pl330_unprep_slave_fifo(pch);
Jassi Brarb3040e42010-05-23 20:28:19 -07002375}
2376
Ben Dooks5503aed2015-03-16 11:52:44 +00002377static int pl330_get_current_xferred_count(struct dma_pl330_chan *pch,
2378 struct dma_pl330_desc *desc)
Robert Baldygaaee4d1f2015-02-11 13:23:17 +01002379{
2380 struct pl330_thread *thrd = pch->thread;
2381 struct pl330_dmac *pl330 = pch->dmac;
2382 void __iomem *regs = thrd->dmac->base;
2383 u32 val, addr;
2384
2385 pm_runtime_get_sync(pl330->ddma.dev);
2386 val = addr = 0;
2387 if (desc->rqcfg.src_inc) {
2388 val = readl(regs + SA(thrd->id));
2389 addr = desc->px.src_addr;
2390 } else {
2391 val = readl(regs + DA(thrd->id));
2392 addr = desc->px.dst_addr;
2393 }
2394 pm_runtime_mark_last_busy(pch->dmac->ddma.dev);
2395 pm_runtime_put_autosuspend(pl330->ddma.dev);
Stephen Barberc44da032016-11-01 16:44:27 -07002396
2397 /* If DMAMOV hasn't finished yet, SAR/DAR can be zero */
2398 if (!val)
2399 return 0;
2400
Robert Baldygaaee4d1f2015-02-11 13:23:17 +01002401 return val - addr;
2402}
2403
Jassi Brarb3040e42010-05-23 20:28:19 -07002404static enum dma_status
2405pl330_tx_status(struct dma_chan *chan, dma_cookie_t cookie,
2406 struct dma_tx_state *txstate)
2407{
Robert Baldygaaee4d1f2015-02-11 13:23:17 +01002408 enum dma_status ret;
2409 unsigned long flags;
Stephen Barberd64e9a22016-08-18 17:59:59 -07002410 struct dma_pl330_desc *desc, *running = NULL, *last_enq = NULL;
Robert Baldygaaee4d1f2015-02-11 13:23:17 +01002411 struct dma_pl330_chan *pch = to_pchan(chan);
2412 unsigned int transferred, residual = 0;
2413
2414 ret = dma_cookie_status(chan, cookie, txstate);
2415
2416 if (!txstate)
2417 return ret;
2418
2419 if (ret == DMA_COMPLETE)
2420 goto out;
2421
2422 spin_lock_irqsave(&pch->lock, flags);
Hsin-Yu Chaoa40235a2016-08-23 17:16:55 +08002423 spin_lock(&pch->thread->dmac->lock);
Robert Baldygaaee4d1f2015-02-11 13:23:17 +01002424
2425 if (pch->thread->req_running != -1)
2426 running = pch->thread->req[pch->thread->req_running].desc;
2427
Stephen Barberd64e9a22016-08-18 17:59:59 -07002428 last_enq = pch->thread->req[pch->thread->lstenq].desc;
2429
Robert Baldygaaee4d1f2015-02-11 13:23:17 +01002430 /* Check in pending list */
2431 list_for_each_entry(desc, &pch->work_list, node) {
2432 if (desc->status == DONE)
2433 transferred = desc->bytes_requested;
2434 else if (running && desc == running)
2435 transferred =
2436 pl330_get_current_xferred_count(pch, desc);
Stephen Barberd64e9a22016-08-18 17:59:59 -07002437 else if (desc->status == BUSY)
2438 /*
2439 * Busy but not running means either just enqueued,
2440 * or finished and not yet marked done
2441 */
2442 if (desc == last_enq)
2443 transferred = 0;
2444 else
2445 transferred = desc->bytes_requested;
Robert Baldygaaee4d1f2015-02-11 13:23:17 +01002446 else
2447 transferred = 0;
2448 residual += desc->bytes_requested - transferred;
2449 if (desc->txd.cookie == cookie) {
Ben Dooks75967b72015-03-16 11:52:45 +00002450 switch (desc->status) {
2451 case DONE:
2452 ret = DMA_COMPLETE;
2453 break;
2454 case PREP:
2455 case BUSY:
2456 ret = DMA_IN_PROGRESS;
2457 break;
2458 default:
2459 WARN_ON(1);
2460 }
Robert Baldygaaee4d1f2015-02-11 13:23:17 +01002461 break;
2462 }
2463 if (desc->last)
2464 residual = 0;
2465 }
Hsin-Yu Chaoa40235a2016-08-23 17:16:55 +08002466 spin_unlock(&pch->thread->dmac->lock);
Robert Baldygaaee4d1f2015-02-11 13:23:17 +01002467 spin_unlock_irqrestore(&pch->lock, flags);
2468
2469out:
2470 dma_set_residue(txstate, residual);
2471
2472 return ret;
Jassi Brarb3040e42010-05-23 20:28:19 -07002473}
2474
2475static void pl330_issue_pending(struct dma_chan *chan)
2476{
Lars-Peter Clausen04abf5da2014-01-11 20:08:38 +01002477 struct dma_pl330_chan *pch = to_pchan(chan);
2478 unsigned long flags;
2479
2480 spin_lock_irqsave(&pch->lock, flags);
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +01002481 if (list_empty(&pch->work_list)) {
2482 /*
2483 * Warn on nothing pending. Empty submitted_list may
2484 * break our pm_runtime usage counter as it is
2485 * updated on work_list emptiness status.
2486 */
2487 WARN_ON(list_empty(&pch->submitted_list));
Marek Szyprowski5c9e6c22016-12-16 11:39:11 +01002488 pch->active = true;
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +01002489 pm_runtime_get_sync(pch->dmac->ddma.dev);
2490 }
Lars-Peter Clausen04abf5da2014-01-11 20:08:38 +01002491 list_splice_tail_init(&pch->submitted_list, &pch->work_list);
2492 spin_unlock_irqrestore(&pch->lock, flags);
2493
2494 pl330_tasklet((unsigned long)pch);
Jassi Brarb3040e42010-05-23 20:28:19 -07002495}
2496
2497/*
2498 * We returned the last one of the circular list of descriptor(s)
2499 * from prep_xxx, so the argument to submit corresponds to the last
2500 * descriptor of the list.
2501 */
2502static dma_cookie_t pl330_tx_submit(struct dma_async_tx_descriptor *tx)
2503{
2504 struct dma_pl330_desc *desc, *last = to_desc(tx);
2505 struct dma_pl330_chan *pch = to_pchan(tx->chan);
2506 dma_cookie_t cookie;
2507 unsigned long flags;
2508
2509 spin_lock_irqsave(&pch->lock, flags);
2510
2511 /* Assign cookies to all nodes */
Jassi Brarb3040e42010-05-23 20:28:19 -07002512 while (!list_empty(&last->node)) {
2513 desc = list_entry(last->node.next, struct dma_pl330_desc, node);
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002514 if (pch->cyclic) {
2515 desc->txd.callback = last->txd.callback;
2516 desc->txd.callback_param = last->txd.callback_param;
2517 }
Krzysztof Kozlowski5dd90e52015-06-15 23:00:09 +09002518 desc->last = false;
Jassi Brarb3040e42010-05-23 20:28:19 -07002519
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00002520 dma_cookie_assign(&desc->txd);
Jassi Brarb3040e42010-05-23 20:28:19 -07002521
Lars-Peter Clausen04abf5da2014-01-11 20:08:38 +01002522 list_move_tail(&desc->node, &pch->submitted_list);
Jassi Brarb3040e42010-05-23 20:28:19 -07002523 }
2524
Robert Baldygaaee4d1f2015-02-11 13:23:17 +01002525 last->last = true;
Russell King - ARM Linux884485e2012-03-06 22:34:46 +00002526 cookie = dma_cookie_assign(&last->txd);
Lars-Peter Clausen04abf5da2014-01-11 20:08:38 +01002527 list_add_tail(&last->node, &pch->submitted_list);
Jassi Brarb3040e42010-05-23 20:28:19 -07002528 spin_unlock_irqrestore(&pch->lock, flags);
2529
2530 return cookie;
2531}
2532
2533static inline void _init_desc(struct dma_pl330_desc *desc)
2534{
Jassi Brarb3040e42010-05-23 20:28:19 -07002535 desc->rqcfg.swap = SWAP_NO;
Lars-Peter Clausenf0564c72014-07-06 20:32:19 +02002536 desc->rqcfg.scctl = CCTRL0;
2537 desc->rqcfg.dcctl = CCTRL0;
Jassi Brarb3040e42010-05-23 20:28:19 -07002538 desc->txd.tx_submit = pl330_tx_submit;
2539
2540 INIT_LIST_HEAD(&desc->node);
2541}
2542
2543/* Returns the number of descriptors added to the DMAC pool */
Alexander Kochetkove5887102017-10-04 14:37:23 +03002544static int add_desc(struct list_head *pool, spinlock_t *lock,
2545 gfp_t flg, int count)
Jassi Brarb3040e42010-05-23 20:28:19 -07002546{
2547 struct dma_pl330_desc *desc;
2548 unsigned long flags;
2549 int i;
2550
Will Deacon0baf8f62013-12-02 18:01:30 +00002551 desc = kcalloc(count, sizeof(*desc), flg);
Jassi Brarb3040e42010-05-23 20:28:19 -07002552 if (!desc)
2553 return 0;
2554
Alexander Kochetkove5887102017-10-04 14:37:23 +03002555 spin_lock_irqsave(lock, flags);
Jassi Brarb3040e42010-05-23 20:28:19 -07002556
2557 for (i = 0; i < count; i++) {
2558 _init_desc(&desc[i]);
Alexander Kochetkove5887102017-10-04 14:37:23 +03002559 list_add_tail(&desc[i].node, pool);
Jassi Brarb3040e42010-05-23 20:28:19 -07002560 }
2561
Alexander Kochetkove5887102017-10-04 14:37:23 +03002562 spin_unlock_irqrestore(lock, flags);
Jassi Brarb3040e42010-05-23 20:28:19 -07002563
2564 return count;
2565}
2566
Alexander Kochetkove5887102017-10-04 14:37:23 +03002567static struct dma_pl330_desc *pluck_desc(struct list_head *pool,
2568 spinlock_t *lock)
Jassi Brarb3040e42010-05-23 20:28:19 -07002569{
2570 struct dma_pl330_desc *desc = NULL;
2571 unsigned long flags;
2572
Alexander Kochetkove5887102017-10-04 14:37:23 +03002573 spin_lock_irqsave(lock, flags);
Jassi Brarb3040e42010-05-23 20:28:19 -07002574
Alexander Kochetkove5887102017-10-04 14:37:23 +03002575 if (!list_empty(pool)) {
2576 desc = list_entry(pool->next,
Jassi Brarb3040e42010-05-23 20:28:19 -07002577 struct dma_pl330_desc, node);
2578
2579 list_del_init(&desc->node);
2580
2581 desc->status = PREP;
2582 desc->txd.callback = NULL;
2583 }
2584
Alexander Kochetkove5887102017-10-04 14:37:23 +03002585 spin_unlock_irqrestore(lock, flags);
Jassi Brarb3040e42010-05-23 20:28:19 -07002586
2587 return desc;
2588}
2589
2590static struct dma_pl330_desc *pl330_get_desc(struct dma_pl330_chan *pch)
2591{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002592 struct pl330_dmac *pl330 = pch->dmac;
Thomas Abrahamcd072512011-10-24 11:43:11 +02002593 u8 *peri_id = pch->chan.private;
Jassi Brarb3040e42010-05-23 20:28:19 -07002594 struct dma_pl330_desc *desc;
2595
2596 /* Pluck one desc from the pool of DMAC */
Alexander Kochetkove5887102017-10-04 14:37:23 +03002597 desc = pluck_desc(&pl330->desc_pool, &pl330->pool_lock);
Jassi Brarb3040e42010-05-23 20:28:19 -07002598
2599 /* If the DMAC pool is empty, alloc new */
2600 if (!desc) {
Alexander Kochetkove5887102017-10-04 14:37:23 +03002601 DEFINE_SPINLOCK(lock);
2602 LIST_HEAD(pool);
2603
2604 if (!add_desc(&pool, &lock, GFP_ATOMIC, 1))
Jassi Brarb3040e42010-05-23 20:28:19 -07002605 return NULL;
2606
Alexander Kochetkove5887102017-10-04 14:37:23 +03002607 desc = pluck_desc(&pool, &lock);
2608 WARN_ON(!desc || !list_empty(&pool));
Jassi Brarb3040e42010-05-23 20:28:19 -07002609 }
2610
2611 /* Initialize the descriptor */
2612 desc->pchan = pch;
2613 desc->txd.cookie = 0;
2614 async_tx_ack(&desc->txd);
2615
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02002616 desc->peri = peri_id ? pch->chan.chan_id : 0;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002617 desc->rqcfg.pcfg = &pch->dmac->pcfg;
Jassi Brarb3040e42010-05-23 20:28:19 -07002618
2619 dma_async_tx_descriptor_init(&desc->txd, &pch->chan);
2620
2621 return desc;
2622}
2623
2624static inline void fill_px(struct pl330_xfer *px,
2625 dma_addr_t dst, dma_addr_t src, size_t len)
2626{
Jassi Brarb3040e42010-05-23 20:28:19 -07002627 px->bytes = len;
2628 px->dst_addr = dst;
2629 px->src_addr = src;
2630}
2631
2632static struct dma_pl330_desc *
2633__pl330_prep_dma_memcpy(struct dma_pl330_chan *pch, dma_addr_t dst,
2634 dma_addr_t src, size_t len)
2635{
2636 struct dma_pl330_desc *desc = pl330_get_desc(pch);
2637
2638 if (!desc) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002639 dev_err(pch->dmac->ddma.dev, "%s:%d Unable to fetch desc\n",
Jassi Brarb3040e42010-05-23 20:28:19 -07002640 __func__, __LINE__);
2641 return NULL;
2642 }
2643
2644 /*
2645 * Ideally we should lookout for reqs bigger than
2646 * those that can be programmed with 256 bytes of
2647 * MC buffer, but considering a req size is seldom
2648 * going to be word-unaligned and more than 200MB,
2649 * we take it easy.
2650 * Also, should the limit is reached we'd rather
2651 * have the platform increase MC buffer size than
2652 * complicating this API driver.
2653 */
2654 fill_px(&desc->px, dst, src, len);
2655
2656 return desc;
2657}
2658
2659/* Call after fixing burst size */
2660static inline int get_burst_len(struct dma_pl330_desc *desc, size_t len)
2661{
2662 struct dma_pl330_chan *pch = desc->pchan;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002663 struct pl330_dmac *pl330 = pch->dmac;
Jassi Brarb3040e42010-05-23 20:28:19 -07002664 int burst_len;
2665
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002666 burst_len = pl330->pcfg.data_bus_width / 8;
Jon Medhurstc27f9552014-11-07 18:05:18 +00002667 burst_len *= pl330->pcfg.data_buf_dep / pl330->pcfg.num_chan;
Jassi Brarb3040e42010-05-23 20:28:19 -07002668 burst_len >>= desc->rqcfg.brst_size;
2669
2670 /* src/dst_burst_len can't be more than 16 */
Frank Mori Hess1d487452018-04-18 20:31:06 -04002671 if (burst_len > PL330_MAX_BURST)
2672 burst_len = PL330_MAX_BURST;
Jassi Brarb3040e42010-05-23 20:28:19 -07002673
2674 return burst_len;
2675}
2676
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002677static struct dma_async_tx_descriptor *pl330_prep_dma_cyclic(
2678 struct dma_chan *chan, dma_addr_t dma_addr, size_t len,
Alexandre Bounine185ecb52012-03-08 15:35:13 -05002679 size_t period_len, enum dma_transfer_direction direction,
Laurent Pinchart31c1e5a2014-08-01 12:20:10 +02002680 unsigned long flags)
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002681{
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002682 struct dma_pl330_desc *desc = NULL, *first = NULL;
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002683 struct dma_pl330_chan *pch = to_pchan(chan);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002684 struct pl330_dmac *pl330 = pch->dmac;
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002685 unsigned int i;
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002686 dma_addr_t dst;
2687 dma_addr_t src;
2688
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002689 if (len % period_len != 0)
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002690 return NULL;
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002691
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002692 if (!is_slave_direction(direction)) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002693 dev_err(pch->dmac->ddma.dev, "%s:%d Invalid dma direction\n",
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002694 __func__, __LINE__);
2695 return NULL;
2696 }
2697
Vinod Koul445897c2018-10-25 15:26:07 +01002698 pl330_config_write(chan, &pch->slave_config, direction);
2699
Robin Murphy4d6d74e2017-05-19 15:06:44 +01002700 if (!pl330_prep_slave_fifo(pch, direction))
2701 return NULL;
2702
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002703 for (i = 0; i < len / period_len; i++) {
2704 desc = pl330_get_desc(pch);
2705 if (!desc) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002706 dev_err(pch->dmac->ddma.dev, "%s:%d Unable to fetch desc\n",
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002707 __func__, __LINE__);
2708
2709 if (!first)
2710 return NULL;
2711
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002712 spin_lock_irqsave(&pl330->pool_lock, flags);
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002713
2714 while (!list_empty(&first->node)) {
2715 desc = list_entry(first->node.next,
2716 struct dma_pl330_desc, node);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002717 list_move_tail(&desc->node, &pl330->desc_pool);
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002718 }
2719
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002720 list_move_tail(&first->node, &pl330->desc_pool);
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002721
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002722 spin_unlock_irqrestore(&pl330->pool_lock, flags);
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002723
2724 return NULL;
2725 }
2726
2727 switch (direction) {
2728 case DMA_MEM_TO_DEV:
2729 desc->rqcfg.src_inc = 1;
2730 desc->rqcfg.dst_inc = 0;
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002731 src = dma_addr;
Robin Murphy4d6d74e2017-05-19 15:06:44 +01002732 dst = pch->fifo_dma;
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002733 break;
2734 case DMA_DEV_TO_MEM:
2735 desc->rqcfg.src_inc = 0;
2736 desc->rqcfg.dst_inc = 1;
Robin Murphy4d6d74e2017-05-19 15:06:44 +01002737 src = pch->fifo_dma;
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002738 dst = dma_addr;
2739 break;
2740 default:
2741 break;
2742 }
2743
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02002744 desc->rqtype = direction;
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002745 desc->rqcfg.brst_size = pch->burst_sz;
Frank Mori Hess1d487452018-04-18 20:31:06 -04002746 desc->rqcfg.brst_len = pch->burst_len;
Robert Baldygaaee4d1f2015-02-11 13:23:17 +01002747 desc->bytes_requested = period_len;
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002748 fill_px(&desc->px, dst, src, period_len);
2749
2750 if (!first)
2751 first = desc;
2752 else
2753 list_add_tail(&desc->node, &first->node);
2754
2755 dma_addr += period_len;
2756 }
2757
2758 if (!desc)
2759 return NULL;
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002760
2761 pch->cyclic = true;
Lars-Peter Clausenfc514462013-07-23 10:24:50 +02002762 desc->txd.flags = flags;
Boojin Kim42bc9cf2011-09-02 09:44:33 +09002763
2764 return &desc->txd;
2765}
2766
Jassi Brarb3040e42010-05-23 20:28:19 -07002767static struct dma_async_tx_descriptor *
2768pl330_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dst,
2769 dma_addr_t src, size_t len, unsigned long flags)
2770{
2771 struct dma_pl330_desc *desc;
2772 struct dma_pl330_chan *pch = to_pchan(chan);
Maninder Singhf5636852015-05-26 00:40:05 +05302773 struct pl330_dmac *pl330;
Jassi Brarb3040e42010-05-23 20:28:19 -07002774 int burst;
2775
Rob Herring4e0e6102011-07-25 16:05:04 -05002776 if (unlikely(!pch || !len))
Jassi Brarb3040e42010-05-23 20:28:19 -07002777 return NULL;
2778
Maninder Singhf5636852015-05-26 00:40:05 +05302779 pl330 = pch->dmac;
2780
Jassi Brarb3040e42010-05-23 20:28:19 -07002781 desc = __pl330_prep_dma_memcpy(pch, dst, src, len);
2782 if (!desc)
2783 return NULL;
2784
2785 desc->rqcfg.src_inc = 1;
2786 desc->rqcfg.dst_inc = 1;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02002787 desc->rqtype = DMA_MEM_TO_MEM;
Jassi Brarb3040e42010-05-23 20:28:19 -07002788
2789 /* Select max possible burst size */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002790 burst = pl330->pcfg.data_bus_width / 8;
Jassi Brarb3040e42010-05-23 20:28:19 -07002791
Jon Medhurst137bd112014-11-07 18:05:17 +00002792 /*
2793 * Make sure we use a burst size that aligns with all the memcpy
2794 * parameters because our DMA programming algorithm doesn't cope with
2795 * transfers which straddle an entry in the DMA device's MFIFO.
2796 */
2797 while ((src | dst | len) & (burst - 1))
Jassi Brarb3040e42010-05-23 20:28:19 -07002798 burst /= 2;
Jassi Brarb3040e42010-05-23 20:28:19 -07002799
2800 desc->rqcfg.brst_size = 0;
2801 while (burst != (1 << desc->rqcfg.brst_size))
2802 desc->rqcfg.brst_size++;
2803
Jon Medhurst137bd112014-11-07 18:05:17 +00002804 /*
2805 * If burst size is smaller than bus width then make sure we only
2806 * transfer one at a time to avoid a burst stradling an MFIFO entry.
2807 */
2808 if (desc->rqcfg.brst_size * 8 < pl330->pcfg.data_bus_width)
2809 desc->rqcfg.brst_len = 1;
2810
Jassi Brarb3040e42010-05-23 20:28:19 -07002811 desc->rqcfg.brst_len = get_burst_len(desc, len);
Krzysztof Kozlowskiae128292015-06-15 17:25:16 +09002812 desc->bytes_requested = len;
Jassi Brarb3040e42010-05-23 20:28:19 -07002813
2814 desc->txd.flags = flags;
2815
2816 return &desc->txd;
2817}
2818
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002819static void __pl330_giveback_desc(struct pl330_dmac *pl330,
Chanho Park52a9d172013-08-09 20:11:33 +09002820 struct dma_pl330_desc *first)
2821{
2822 unsigned long flags;
2823 struct dma_pl330_desc *desc;
2824
2825 if (!first)
2826 return;
2827
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002828 spin_lock_irqsave(&pl330->pool_lock, flags);
Chanho Park52a9d172013-08-09 20:11:33 +09002829
2830 while (!list_empty(&first->node)) {
2831 desc = list_entry(first->node.next,
2832 struct dma_pl330_desc, node);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002833 list_move_tail(&desc->node, &pl330->desc_pool);
Chanho Park52a9d172013-08-09 20:11:33 +09002834 }
2835
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002836 list_move_tail(&first->node, &pl330->desc_pool);
Chanho Park52a9d172013-08-09 20:11:33 +09002837
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002838 spin_unlock_irqrestore(&pl330->pool_lock, flags);
Chanho Park52a9d172013-08-09 20:11:33 +09002839}
2840
Jassi Brarb3040e42010-05-23 20:28:19 -07002841static struct dma_async_tx_descriptor *
2842pl330_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
Vinod Kouldb8196d2011-10-13 22:34:23 +05302843 unsigned int sg_len, enum dma_transfer_direction direction,
Alexandre Bounine185ecb52012-03-08 15:35:13 -05002844 unsigned long flg, void *context)
Jassi Brarb3040e42010-05-23 20:28:19 -07002845{
2846 struct dma_pl330_desc *first, *desc = NULL;
2847 struct dma_pl330_chan *pch = to_pchan(chan);
Jassi Brarb3040e42010-05-23 20:28:19 -07002848 struct scatterlist *sg;
Boojin Kim1b9bb712011-09-02 09:44:30 +09002849 int i;
Jassi Brarb3040e42010-05-23 20:28:19 -07002850
Thomas Abrahamcd072512011-10-24 11:43:11 +02002851 if (unlikely(!pch || !sgl || !sg_len))
Jassi Brarb3040e42010-05-23 20:28:19 -07002852 return NULL;
2853
Vinod Koul445897c2018-10-25 15:26:07 +01002854 pl330_config_write(chan, &pch->slave_config, direction);
2855
Robin Murphy4d6d74e2017-05-19 15:06:44 +01002856 if (!pl330_prep_slave_fifo(pch, direction))
2857 return NULL;
Jassi Brarb3040e42010-05-23 20:28:19 -07002858
2859 first = NULL;
2860
2861 for_each_sg(sgl, sg, sg_len, i) {
2862
2863 desc = pl330_get_desc(pch);
2864 if (!desc) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002865 struct pl330_dmac *pl330 = pch->dmac;
Jassi Brarb3040e42010-05-23 20:28:19 -07002866
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002867 dev_err(pch->dmac->ddma.dev,
Jassi Brarb3040e42010-05-23 20:28:19 -07002868 "%s:%d Unable to fetch desc\n",
2869 __func__, __LINE__);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02002870 __pl330_giveback_desc(pl330, first);
Jassi Brarb3040e42010-05-23 20:28:19 -07002871
2872 return NULL;
2873 }
2874
2875 if (!first)
2876 first = desc;
2877 else
2878 list_add_tail(&desc->node, &first->node);
2879
Vinod Kouldb8196d2011-10-13 22:34:23 +05302880 if (direction == DMA_MEM_TO_DEV) {
Jassi Brarb3040e42010-05-23 20:28:19 -07002881 desc->rqcfg.src_inc = 1;
2882 desc->rqcfg.dst_inc = 0;
Robin Murphy4d6d74e2017-05-19 15:06:44 +01002883 fill_px(&desc->px, pch->fifo_dma, sg_dma_address(sg),
2884 sg_dma_len(sg));
Jassi Brarb3040e42010-05-23 20:28:19 -07002885 } else {
2886 desc->rqcfg.src_inc = 0;
2887 desc->rqcfg.dst_inc = 1;
Robin Murphy4d6d74e2017-05-19 15:06:44 +01002888 fill_px(&desc->px, sg_dma_address(sg), pch->fifo_dma,
2889 sg_dma_len(sg));
Jassi Brarb3040e42010-05-23 20:28:19 -07002890 }
2891
Boojin Kim1b9bb712011-09-02 09:44:30 +09002892 desc->rqcfg.brst_size = pch->burst_sz;
Frank Mori Hess1d487452018-04-18 20:31:06 -04002893 desc->rqcfg.brst_len = pch->burst_len;
Lars-Peter Clausen9dc5a312014-07-06 20:32:30 +02002894 desc->rqtype = direction;
Robert Baldygaaee4d1f2015-02-11 13:23:17 +01002895 desc->bytes_requested = sg_dma_len(sg);
Jassi Brarb3040e42010-05-23 20:28:19 -07002896 }
2897
2898 /* Return the last desc in the chain */
2899 desc->txd.flags = flg;
2900 return &desc->txd;
2901}
2902
2903static irqreturn_t pl330_irq_handler(int irq, void *data)
2904{
2905 if (pl330_update(data))
2906 return IRQ_HANDLED;
2907 else
2908 return IRQ_NONE;
2909}
2910
Lars-Peter Clausenca38ff12013-07-15 17:53:08 +02002911#define PL330_DMA_BUSWIDTHS \
2912 BIT(DMA_SLAVE_BUSWIDTH_UNDEFINED) | \
2913 BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) | \
2914 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) | \
2915 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES) | \
2916 BIT(DMA_SLAVE_BUSWIDTH_8_BYTES)
2917
Katsuhiro Suzukib45aef32019-03-17 19:03:06 +09002918#ifdef CONFIG_DEBUG_FS
2919static int pl330_debugfs_show(struct seq_file *s, void *data)
2920{
2921 struct pl330_dmac *pl330 = s->private;
2922 int chans, pchs, ch, pr;
2923
2924 chans = pl330->pcfg.num_chan;
2925 pchs = pl330->num_peripherals;
2926
2927 seq_puts(s, "PL330 physical channels:\n");
2928 seq_puts(s, "THREAD:\t\tCHANNEL:\n");
2929 seq_puts(s, "--------\t-----\n");
2930 for (ch = 0; ch < chans; ch++) {
2931 struct pl330_thread *thrd = &pl330->channels[ch];
2932 int found = -1;
2933
2934 for (pr = 0; pr < pchs; pr++) {
2935 struct dma_pl330_chan *pch = &pl330->peripherals[pr];
2936
2937 if (!pch->thread || thrd->id != pch->thread->id)
2938 continue;
2939
2940 found = pr;
2941 }
2942
2943 seq_printf(s, "%d\t\t", thrd->id);
2944 if (found == -1)
2945 seq_puts(s, "--\n");
2946 else
2947 seq_printf(s, "%d\n", found);
2948 }
2949
2950 return 0;
2951}
2952
2953DEFINE_SHOW_ATTRIBUTE(pl330_debugfs);
2954
2955static inline void init_pl330_debugfs(struct pl330_dmac *pl330)
2956{
2957 debugfs_create_file(dev_name(pl330->ddma.dev),
2958 S_IFREG | 0444, NULL, pl330,
2959 &pl330_debugfs_fops);
2960}
2961#else
2962static inline void init_pl330_debugfs(struct pl330_dmac *pl330)
2963{
2964}
2965#endif
2966
Krzysztof Kozlowskib816ccc2014-11-18 12:17:56 +01002967/*
2968 * Runtime PM callbacks are provided by amba/bus.c driver.
2969 *
2970 * It is assumed here that IRQ safe runtime PM is chosen in probe and amba
2971 * bus driver will only disable/enable the clock in runtime PM callbacks.
2972 */
2973static int __maybe_unused pl330_suspend(struct device *dev)
2974{
2975 struct amba_device *pcdev = to_amba_device(dev);
2976
Ulf Hanssona39cddc2019-12-05 15:37:45 +01002977 pm_runtime_force_suspend(dev);
Krzysztof Kozlowskib816ccc2014-11-18 12:17:56 +01002978 amba_pclk_unprepare(pcdev);
2979
2980 return 0;
2981}
2982
2983static int __maybe_unused pl330_resume(struct device *dev)
2984{
2985 struct amba_device *pcdev = to_amba_device(dev);
2986 int ret;
2987
2988 ret = amba_pclk_prepare(pcdev);
2989 if (ret)
2990 return ret;
2991
Ulf Hanssona39cddc2019-12-05 15:37:45 +01002992 pm_runtime_force_resume(dev);
Krzysztof Kozlowskib816ccc2014-11-18 12:17:56 +01002993
2994 return ret;
2995}
2996
Ulf Hanssonf68190c2019-12-05 15:37:46 +01002997static const struct dev_pm_ops pl330_pm = {
2998 SET_LATE_SYSTEM_SLEEP_PM_OPS(pl330_suspend, pl330_resume)
2999};
Krzysztof Kozlowskib816ccc2014-11-18 12:17:56 +01003000
Bill Pemberton463a1f82012-11-19 13:22:55 -05003001static int
Russell Kingaa25afa2011-02-19 15:55:00 +00003002pl330_probe(struct amba_device *adev, const struct amba_id *id)
Jassi Brarb3040e42010-05-23 20:28:19 -07003003{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003004 struct pl330_config *pcfg;
3005 struct pl330_dmac *pl330;
Padmavathi Venna0b94c572013-03-05 14:55:31 +05303006 struct dma_pl330_chan *pch, *_p;
Jassi Brarb3040e42010-05-23 20:28:19 -07003007 struct dma_device *pd;
3008 struct resource *res;
3009 int i, ret, irq;
Rob Herring4e0e6102011-07-25 16:05:04 -05003010 int num_chan;
Addy Ke271e1b862016-01-22 19:06:46 +08003011 struct device_node *np = adev->dev.of_node;
Jassi Brarb3040e42010-05-23 20:28:19 -07003012
Russell King64113012013-06-27 10:29:32 +01003013 ret = dma_set_mask_and_coherent(&adev->dev, DMA_BIT_MASK(32));
3014 if (ret)
3015 return ret;
3016
Jassi Brarb3040e42010-05-23 20:28:19 -07003017 /* Allocate a new DMAC and its Channels */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003018 pl330 = devm_kzalloc(&adev->dev, sizeof(*pl330), GFP_KERNEL);
Peter Griffinaef94fe2016-06-07 18:38:41 +01003019 if (!pl330)
Jassi Brarb3040e42010-05-23 20:28:19 -07003020 return -ENOMEM;
Jassi Brarb3040e42010-05-23 20:28:19 -07003021
Andrew Jacksoncee42392014-11-06 11:39:47 +00003022 pd = &pl330->ddma;
3023 pd->dev = &adev->dev;
3024
Marek Szyprowskie8bb4672017-03-27 07:31:03 +02003025 pl330->mcbufsz = 0;
Jassi Brarb3040e42010-05-23 20:28:19 -07003026
Addy Ke271e1b862016-01-22 19:06:46 +08003027 /* get quirk */
3028 for (i = 0; i < ARRAY_SIZE(of_quirks); i++)
3029 if (of_property_read_bool(np, of_quirks[i].quirk))
3030 pl330->quirks |= of_quirks[i].id;
3031
Jassi Brarb3040e42010-05-23 20:28:19 -07003032 res = &adev->res;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003033 pl330->base = devm_ioremap_resource(&adev->dev, res);
3034 if (IS_ERR(pl330->base))
3035 return PTR_ERR(pl330->base);
Jassi Brarb3040e42010-05-23 20:28:19 -07003036
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003037 amba_set_drvdata(adev, pl330);
Boojin Kima2f52032011-09-02 09:44:29 +09003038
Dinh Nguyen0eaab702019-06-11 10:34:33 -05003039 pl330->rstc = devm_reset_control_get_optional(&adev->dev, "dma");
3040 if (IS_ERR(pl330->rstc)) {
3041 if (PTR_ERR(pl330->rstc) != -EPROBE_DEFER)
3042 dev_err(&adev->dev, "Failed to get reset!\n");
3043 return PTR_ERR(pl330->rstc);
3044 } else {
3045 ret = reset_control_deassert(pl330->rstc);
3046 if (ret) {
3047 dev_err(&adev->dev, "Couldn't deassert the device from reset!\n");
3048 return ret;
3049 }
3050 }
3051
3052 pl330->rstc_ocp = devm_reset_control_get_optional(&adev->dev, "dma-ocp");
3053 if (IS_ERR(pl330->rstc_ocp)) {
3054 if (PTR_ERR(pl330->rstc_ocp) != -EPROBE_DEFER)
3055 dev_err(&adev->dev, "Failed to get OCP reset!\n");
3056 return PTR_ERR(pl330->rstc_ocp);
3057 } else {
3058 ret = reset_control_deassert(pl330->rstc_ocp);
3059 if (ret) {
3060 dev_err(&adev->dev, "Couldn't deassert the device from OCP reset!\n");
3061 return ret;
3062 }
3063 }
3064
Dan Carpenter02808b42013-11-08 12:50:24 +03003065 for (i = 0; i < AMBA_NR_IRQS; i++) {
Michal Simeke98b3ca2013-09-30 08:50:48 +02003066 irq = adev->irq[i];
3067 if (irq) {
3068 ret = devm_request_irq(&adev->dev, irq,
3069 pl330_irq_handler, 0,
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003070 dev_name(&adev->dev), pl330);
Michal Simeke98b3ca2013-09-30 08:50:48 +02003071 if (ret)
3072 return ret;
3073 } else {
3074 break;
3075 }
3076 }
Jassi Brarb3040e42010-05-23 20:28:19 -07003077
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003078 pcfg = &pl330->pcfg;
3079
3080 pcfg->periph_id = adev->periphid;
3081 ret = pl330_add(pl330);
Jassi Brarb3040e42010-05-23 20:28:19 -07003082 if (ret)
Michal Simek173e8382013-09-04 16:40:17 +02003083 return ret;
Jassi Brarb3040e42010-05-23 20:28:19 -07003084
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003085 INIT_LIST_HEAD(&pl330->desc_pool);
3086 spin_lock_init(&pl330->pool_lock);
Jassi Brarb3040e42010-05-23 20:28:19 -07003087
3088 /* Create a descriptor pool of default size */
Alexander Kochetkove5887102017-10-04 14:37:23 +03003089 if (!add_desc(&pl330->desc_pool, &pl330->pool_lock,
3090 GFP_KERNEL, NR_DEFAULT_DESC))
Jassi Brarb3040e42010-05-23 20:28:19 -07003091 dev_warn(&adev->dev, "unable to allocate desc\n");
3092
Jassi Brarb3040e42010-05-23 20:28:19 -07003093 INIT_LIST_HEAD(&pd->channels);
3094
3095 /* Initialize channel parameters */
Marek Szyprowskie8bb4672017-03-27 07:31:03 +02003096 num_chan = max_t(int, pcfg->num_peri, pcfg->num_chan);
Olof Johanssonc8473822012-04-08 16:26:19 -07003097
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003098 pl330->num_peripherals = num_chan;
Lars-Peter Clausen70cbb162014-01-11 20:08:39 +01003099
Kees Cook6396bb22018-06-12 14:03:40 -07003100 pl330->peripherals = kcalloc(num_chan, sizeof(*pch), GFP_KERNEL);
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003101 if (!pl330->peripherals) {
Sachin Kamat61c6e752012-09-17 15:20:23 +05303102 ret = -ENOMEM;
Sachin Kamate4d43c12012-11-15 06:27:50 +00003103 goto probe_err2;
Sachin Kamat61c6e752012-09-17 15:20:23 +05303104 }
Jassi Brarb3040e42010-05-23 20:28:19 -07003105
Rob Herring4e0e6102011-07-25 16:05:04 -05003106 for (i = 0; i < num_chan; i++) {
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003107 pch = &pl330->peripherals[i];
Jassi Brarb3040e42010-05-23 20:28:19 -07003108
Marek Szyprowskie8bb4672017-03-27 07:31:03 +02003109 pch->chan.private = adev->dev.of_node;
Lars-Peter Clausen04abf5da2014-01-11 20:08:38 +01003110 INIT_LIST_HEAD(&pch->submitted_list);
Jassi Brarb3040e42010-05-23 20:28:19 -07003111 INIT_LIST_HEAD(&pch->work_list);
Lars-Peter Clausen39ff8612013-08-27 20:34:05 +02003112 INIT_LIST_HEAD(&pch->completed_list);
Jassi Brarb3040e42010-05-23 20:28:19 -07003113 spin_lock_init(&pch->lock);
Lars-Peter Clausen65ad6062014-07-06 20:32:26 +02003114 pch->thread = NULL;
Jassi Brarb3040e42010-05-23 20:28:19 -07003115 pch->chan.device = pd;
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003116 pch->dmac = pl330;
Robin Murphy4d6d74e2017-05-19 15:06:44 +01003117 pch->dir = DMA_NONE;
Jassi Brarb3040e42010-05-23 20:28:19 -07003118
3119 /* Add the channel to the DMAC list */
Jassi Brarb3040e42010-05-23 20:28:19 -07003120 list_add_tail(&pch->chan.device_node, &pd->channels);
3121 }
3122
Marek Szyprowskie8bb4672017-03-27 07:31:03 +02003123 dma_cap_set(DMA_MEMCPY, pd->cap_mask);
3124 if (pcfg->num_peri) {
3125 dma_cap_set(DMA_SLAVE, pd->cap_mask);
3126 dma_cap_set(DMA_CYCLIC, pd->cap_mask);
3127 dma_cap_set(DMA_PRIVATE, pd->cap_mask);
Thomas Abraham93ed5542011-10-24 11:43:31 +02003128 }
Jassi Brarb3040e42010-05-23 20:28:19 -07003129
3130 pd->device_alloc_chan_resources = pl330_alloc_chan_resources;
3131 pd->device_free_chan_resources = pl330_free_chan_resources;
3132 pd->device_prep_dma_memcpy = pl330_prep_dma_memcpy;
Boojin Kim42bc9cf2011-09-02 09:44:33 +09003133 pd->device_prep_dma_cyclic = pl330_prep_dma_cyclic;
Jassi Brarb3040e42010-05-23 20:28:19 -07003134 pd->device_tx_status = pl330_tx_status;
3135 pd->device_prep_slave_sg = pl330_prep_slave_sg;
Maxime Ripard740aa952014-11-17 14:42:29 +01003136 pd->device_config = pl330_config;
Robert Baldyga88987d22015-02-11 13:23:18 +01003137 pd->device_pause = pl330_pause;
Maxime Ripard740aa952014-11-17 14:42:29 +01003138 pd->device_terminate_all = pl330_terminate_all;
Jassi Brarb3040e42010-05-23 20:28:19 -07003139 pd->device_issue_pending = pl330_issue_pending;
Maxime Riparddcabe4562014-11-17 14:42:50 +01003140 pd->src_addr_widths = PL330_DMA_BUSWIDTHS;
3141 pd->dst_addr_widths = PL330_DMA_BUSWIDTHS;
3142 pd->directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
Marek Szyprowskie3f329c2018-06-19 15:20:50 +02003143 pd->residue_granularity = DMA_RESIDUE_GRANULARITY_BURST;
Sugar Zhang05611a92020-06-29 22:05:42 +08003144 pd->max_burst = PL330_MAX_BURST;
Jassi Brarb3040e42010-05-23 20:28:19 -07003145
3146 ret = dma_async_device_register(pd);
3147 if (ret) {
3148 dev_err(&adev->dev, "unable to register DMAC\n");
Padmavathi Venna0b94c572013-03-05 14:55:31 +05303149 goto probe_err3;
3150 }
3151
3152 if (adev->dev.of_node) {
3153 ret = of_dma_controller_register(adev->dev.of_node,
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003154 of_dma_pl330_xlate, pl330);
Padmavathi Venna0b94c572013-03-05 14:55:31 +05303155 if (ret) {
3156 dev_err(&adev->dev,
3157 "unable to register DMA to the generic DT DMA helpers\n");
3158 }
Jassi Brarb3040e42010-05-23 20:28:19 -07003159 }
Lars-Peter Clausenb714b842013-11-25 16:07:46 +01003160
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003161 adev->dev.dma_parms = &pl330->dma_parms;
Lars-Peter Clausenb714b842013-11-25 16:07:46 +01003162
Vinod Kouldbaf6d82013-09-02 21:54:48 +05303163 /*
3164 * This is the limit for transfers with a buswidth of 1, larger
3165 * buswidths will have larger limits.
3166 */
3167 ret = dma_set_max_seg_size(&adev->dev, 1900800);
3168 if (ret)
3169 dev_err(&adev->dev, "unable to set the seg size\n");
3170
Jassi Brarb3040e42010-05-23 20:28:19 -07003171
Katsuhiro Suzukib45aef32019-03-17 19:03:06 +09003172 init_pl330_debugfs(pl330);
Jassi Brarb3040e42010-05-23 20:28:19 -07003173 dev_info(&adev->dev,
Liviu Dudau1f0a5cb2014-11-06 17:20:12 +00003174 "Loaded driver for PL330 DMAC-%x\n", adev->periphid);
Jassi Brarb3040e42010-05-23 20:28:19 -07003175 dev_info(&adev->dev,
3176 "\tDBUFF-%ux%ubytes Num_Chans-%u Num_Peri-%u Num_Events-%u\n",
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003177 pcfg->data_buf_dep, pcfg->data_bus_width / 8, pcfg->num_chan,
3178 pcfg->num_peri, pcfg->num_events);
Jassi Brarb3040e42010-05-23 20:28:19 -07003179
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +01003180 pm_runtime_irq_safe(&adev->dev);
3181 pm_runtime_use_autosuspend(&adev->dev);
3182 pm_runtime_set_autosuspend_delay(&adev->dev, PL330_AUTOSUSPEND_DELAY);
3183 pm_runtime_mark_last_busy(&adev->dev);
3184 pm_runtime_put_autosuspend(&adev->dev);
3185
Jassi Brarb3040e42010-05-23 20:28:19 -07003186 return 0;
Padmavathi Venna0b94c572013-03-05 14:55:31 +05303187probe_err3:
Padmavathi Venna0b94c572013-03-05 14:55:31 +05303188 /* Idle the DMAC */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003189 list_for_each_entry_safe(pch, _p, &pl330->ddma.channels,
Padmavathi Venna0b94c572013-03-05 14:55:31 +05303190 chan.device_node) {
3191
3192 /* Remove the channel */
3193 list_del(&pch->chan.device_node);
3194
3195 /* Flush the channel */
Krzysztof Kozlowski0f5ebab2014-09-29 14:42:20 +02003196 if (pch->thread) {
Maxime Ripard740aa952014-11-17 14:42:29 +01003197 pl330_terminate_all(&pch->chan);
Krzysztof Kozlowski0f5ebab2014-09-29 14:42:20 +02003198 pl330_free_chan_resources(&pch->chan);
3199 }
Padmavathi Venna0b94c572013-03-05 14:55:31 +05303200 }
Jassi Brarb3040e42010-05-23 20:28:19 -07003201probe_err2:
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003202 pl330_del(pl330);
Jassi Brarb3040e42010-05-23 20:28:19 -07003203
Dinh Nguyen0eaab702019-06-11 10:34:33 -05003204 if (pl330->rstc_ocp)
3205 reset_control_assert(pl330->rstc_ocp);
3206
3207 if (pl330->rstc)
3208 reset_control_assert(pl330->rstc);
Jassi Brarb3040e42010-05-23 20:28:19 -07003209 return ret;
3210}
3211
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -08003212static int pl330_remove(struct amba_device *adev)
Jassi Brarb3040e42010-05-23 20:28:19 -07003213{
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003214 struct pl330_dmac *pl330 = amba_get_drvdata(adev);
Jassi Brarb3040e42010-05-23 20:28:19 -07003215 struct dma_pl330_chan *pch, *_p;
Vinod Koul46cf94d2016-07-05 10:02:16 +05303216 int i, irq;
Jassi Brarb3040e42010-05-23 20:28:19 -07003217
Krzysztof Kozlowskiae43b322014-11-14 09:48:57 +01003218 pm_runtime_get_noresume(pl330->ddma.dev);
3219
Padmavathi Venna0b94c572013-03-05 14:55:31 +05303220 if (adev->dev.of_node)
3221 of_dma_controller_free(adev->dev.of_node);
Padmavathi Venna421da892013-02-14 09:10:07 +05303222
Vinod Koul46cf94d2016-07-05 10:02:16 +05303223 for (i = 0; i < AMBA_NR_IRQS; i++) {
3224 irq = adev->irq[i];
Jean-Philippe Bruckerebcdaee2017-06-01 19:22:01 +01003225 if (irq)
3226 devm_free_irq(&adev->dev, irq, pl330);
Vinod Koul46cf94d2016-07-05 10:02:16 +05303227 }
3228
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003229 dma_async_device_unregister(&pl330->ddma);
Jassi Brarb3040e42010-05-23 20:28:19 -07003230
3231 /* Idle the DMAC */
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003232 list_for_each_entry_safe(pch, _p, &pl330->ddma.channels,
Jassi Brarb3040e42010-05-23 20:28:19 -07003233 chan.device_node) {
3234
3235 /* Remove the channel */
3236 list_del(&pch->chan.device_node);
3237
3238 /* Flush the channel */
Krzysztof Kozlowski6e4a2a82014-09-29 14:42:21 +02003239 if (pch->thread) {
Maxime Ripard740aa952014-11-17 14:42:29 +01003240 pl330_terminate_all(&pch->chan);
Krzysztof Kozlowski6e4a2a82014-09-29 14:42:21 +02003241 pl330_free_chan_resources(&pch->chan);
3242 }
Jassi Brarb3040e42010-05-23 20:28:19 -07003243 }
3244
Lars-Peter Clausenf6f24212014-07-06 20:32:29 +02003245 pl330_del(pl330);
Jassi Brarb3040e42010-05-23 20:28:19 -07003246
Dinh Nguyen0eaab702019-06-11 10:34:33 -05003247 if (pl330->rstc_ocp)
3248 reset_control_assert(pl330->rstc_ocp);
3249
3250 if (pl330->rstc)
3251 reset_control_assert(pl330->rstc);
Jassi Brarb3040e42010-05-23 20:28:19 -07003252 return 0;
3253}
3254
Arvind Yadavb7533512017-08-23 21:57:31 +05303255static const struct amba_id pl330_ids[] = {
Jassi Brarb3040e42010-05-23 20:28:19 -07003256 {
3257 .id = 0x00041330,
3258 .mask = 0x000fffff,
3259 },
3260 { 0, 0 },
3261};
3262
Dave Martine8fa5162011-10-05 15:15:20 +01003263MODULE_DEVICE_TABLE(amba, pl330_ids);
3264
Jassi Brarb3040e42010-05-23 20:28:19 -07003265static struct amba_driver pl330_driver = {
3266 .drv = {
3267 .owner = THIS_MODULE,
3268 .name = "dma-pl330",
Krzysztof Kozlowskib816ccc2014-11-18 12:17:56 +01003269 .pm = &pl330_pm,
Jassi Brarb3040e42010-05-23 20:28:19 -07003270 },
3271 .id_table = pl330_ids,
3272 .probe = pl330_probe,
3273 .remove = pl330_remove,
3274};
3275
viresh kumar9e5ed092012-03-15 10:40:38 +01003276module_amba_driver(pl330_driver);
Jassi Brarb3040e42010-05-23 20:28:19 -07003277
Jassi Brar046209f2014-12-05 19:07:49 +05303278MODULE_AUTHOR("Jaswinder Singh <jassisinghbrar@gmail.com>");
Jassi Brarb3040e42010-05-23 20:28:19 -07003279MODULE_DESCRIPTION("API Driver for PL330 DMAC");
3280MODULE_LICENSE("GPL");