blob: 7eefbf1e1c94a3d68fffa3dc5df33048dc8c66d8 [file] [log] [blame]
Matt Porterc2dde5f2012-08-22 21:09:34 -04001/*
2 * TI EDMA DMA engine driver
3 *
4 * Copyright 2012 Texas Instruments
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation version 2.
9 *
10 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
11 * kind, whether express or implied; without even the implied warranty
12 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16#include <linux/dmaengine.h>
17#include <linux/dma-mapping.h>
Lad, Prabhakarb7a4fd52015-02-04 13:03:27 +000018#include <linux/edma.h>
Matt Porterc2dde5f2012-08-22 21:09:34 -040019#include <linux/err.h>
20#include <linux/init.h>
21#include <linux/interrupt.h>
22#include <linux/list.h>
23#include <linux/module.h>
24#include <linux/platform_device.h>
25#include <linux/slab.h>
26#include <linux/spinlock.h>
Peter Ujfalusied646102014-07-31 13:12:38 +030027#include <linux/of.h>
Peter Ujfalusidc9b60552015-10-14 14:42:47 +030028#include <linux/of_dma.h>
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +030029#include <linux/of_irq.h>
30#include <linux/of_address.h>
31#include <linux/of_device.h>
32#include <linux/pm_runtime.h>
Matt Porterc2dde5f2012-08-22 21:09:34 -040033
Matt Porter3ad7a422013-03-06 11:15:31 -050034#include <linux/platform_data/edma.h>
Matt Porterc2dde5f2012-08-22 21:09:34 -040035
36#include "dmaengine.h"
37#include "virt-dma.h"
38
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +030039/* Offsets matching "struct edmacc_param" */
40#define PARM_OPT 0x00
41#define PARM_SRC 0x04
42#define PARM_A_B_CNT 0x08
43#define PARM_DST 0x0c
44#define PARM_SRC_DST_BIDX 0x10
45#define PARM_LINK_BCNTRLD 0x14
46#define PARM_SRC_DST_CIDX 0x18
47#define PARM_CCNT 0x1c
48
49#define PARM_SIZE 0x20
50
51/* Offsets for EDMA CC global channel registers and their shadows */
52#define SH_ER 0x00 /* 64 bits */
53#define SH_ECR 0x08 /* 64 bits */
54#define SH_ESR 0x10 /* 64 bits */
55#define SH_CER 0x18 /* 64 bits */
56#define SH_EER 0x20 /* 64 bits */
57#define SH_EECR 0x28 /* 64 bits */
58#define SH_EESR 0x30 /* 64 bits */
59#define SH_SER 0x38 /* 64 bits */
60#define SH_SECR 0x40 /* 64 bits */
61#define SH_IER 0x50 /* 64 bits */
62#define SH_IECR 0x58 /* 64 bits */
63#define SH_IESR 0x60 /* 64 bits */
64#define SH_IPR 0x68 /* 64 bits */
65#define SH_ICR 0x70 /* 64 bits */
66#define SH_IEVAL 0x78
67#define SH_QER 0x80
68#define SH_QEER 0x84
69#define SH_QEECR 0x88
70#define SH_QEESR 0x8c
71#define SH_QSER 0x90
72#define SH_QSECR 0x94
73#define SH_SIZE 0x200
74
75/* Offsets for EDMA CC global registers */
76#define EDMA_REV 0x0000
77#define EDMA_CCCFG 0x0004
78#define EDMA_QCHMAP 0x0200 /* 8 registers */
79#define EDMA_DMAQNUM 0x0240 /* 8 registers (4 on OMAP-L1xx) */
80#define EDMA_QDMAQNUM 0x0260
81#define EDMA_QUETCMAP 0x0280
82#define EDMA_QUEPRI 0x0284
83#define EDMA_EMR 0x0300 /* 64 bits */
84#define EDMA_EMCR 0x0308 /* 64 bits */
85#define EDMA_QEMR 0x0310
86#define EDMA_QEMCR 0x0314
87#define EDMA_CCERR 0x0318
88#define EDMA_CCERRCLR 0x031c
89#define EDMA_EEVAL 0x0320
90#define EDMA_DRAE 0x0340 /* 4 x 64 bits*/
91#define EDMA_QRAE 0x0380 /* 4 registers */
92#define EDMA_QUEEVTENTRY 0x0400 /* 2 x 16 registers */
93#define EDMA_QSTAT 0x0600 /* 2 registers */
94#define EDMA_QWMTHRA 0x0620
95#define EDMA_QWMTHRB 0x0624
96#define EDMA_CCSTAT 0x0640
97
98#define EDMA_M 0x1000 /* global channel registers */
99#define EDMA_ECR 0x1008
100#define EDMA_ECRH 0x100C
101#define EDMA_SHADOW0 0x2000 /* 4 shadow regions */
102#define EDMA_PARM 0x4000 /* PaRAM entries */
103
104#define PARM_OFFSET(param_no) (EDMA_PARM + ((param_no) << 5))
105
106#define EDMA_DCHMAP 0x0100 /* 64 registers */
107
108/* CCCFG register */
109#define GET_NUM_DMACH(x) (x & 0x7) /* bits 0-2 */
110#define GET_NUM_PAENTRY(x) ((x & 0x7000) >> 12) /* bits 12-14 */
111#define GET_NUM_EVQUE(x) ((x & 0x70000) >> 16) /* bits 16-18 */
112#define GET_NUM_REGN(x) ((x & 0x300000) >> 20) /* bits 20-21 */
113#define CHMAP_EXIST BIT(24)
114
Matt Porterc2dde5f2012-08-22 21:09:34 -0400115/*
Joel Fernandes2abd5f12013-09-23 18:05:15 -0500116 * Max of 20 segments per channel to conserve PaRAM slots
117 * Also note that MAX_NR_SG should be atleast the no.of periods
118 * that are required for ASoC, otherwise DMA prep calls will
119 * fail. Today davinci-pcm is the only user of this driver and
120 * requires atleast 17 slots, so we setup the default to 20.
121 */
122#define MAX_NR_SG 20
Matt Porterc2dde5f2012-08-22 21:09:34 -0400123#define EDMA_MAX_SLOTS MAX_NR_SG
124#define EDMA_DESCRIPTORS 16
125
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300126#define EDMA_CHANNEL_ANY -1 /* for edma_alloc_channel() */
127#define EDMA_SLOT_ANY -1 /* for edma_alloc_slot() */
128#define EDMA_CONT_PARAMS_ANY 1001
129#define EDMA_CONT_PARAMS_FIXED_EXACT 1002
130#define EDMA_CONT_PARAMS_FIXED_NOT_EXACT 1003
131
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300132/* PaRAM slots are laid out like this */
133struct edmacc_param {
134 u32 opt;
135 u32 src;
136 u32 a_b_cnt;
137 u32 dst;
138 u32 src_dst_bidx;
139 u32 link_bcntrld;
140 u32 src_dst_cidx;
141 u32 ccnt;
142} __packed;
143
144/* fields in edmacc_param.opt */
145#define SAM BIT(0)
146#define DAM BIT(1)
147#define SYNCDIM BIT(2)
148#define STATIC BIT(3)
149#define EDMA_FWID (0x07 << 8)
150#define TCCMODE BIT(11)
151#define EDMA_TCC(t) ((t) << 12)
152#define TCINTEN BIT(20)
153#define ITCINTEN BIT(21)
154#define TCCHEN BIT(22)
155#define ITCCHEN BIT(23)
156
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -0500157struct edma_pset {
Thomas Gleixnerc2da2342014-04-28 14:29:57 -0500158 u32 len;
159 dma_addr_t addr;
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -0500160 struct edmacc_param param;
161};
162
Matt Porterc2dde5f2012-08-22 21:09:34 -0400163struct edma_desc {
164 struct virt_dma_desc vdesc;
165 struct list_head node;
Thomas Gleixnerc2da2342014-04-28 14:29:57 -0500166 enum dma_transfer_direction direction;
Joel Fernandes50a9c702013-10-31 16:31:23 -0500167 int cyclic;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400168 int absync;
169 int pset_nr;
Thomas Gleixner740b41f2014-04-28 14:34:11 -0500170 struct edma_chan *echan;
Joel Fernandes04361d82014-04-28 15:19:31 -0500171 int processed;
172
173 /*
174 * The following 4 elements are used for residue accounting.
175 *
176 * - processed_stat: the number of SG elements we have traversed
177 * so far to cover accounting. This is updated directly to processed
178 * during edma_callback and is always <= processed, because processed
179 * refers to the number of pending transfer (programmed to EDMA
180 * controller), where as processed_stat tracks number of transfers
181 * accounted for so far.
182 *
183 * - residue: The amount of bytes we have left to transfer for this desc
184 *
185 * - residue_stat: The residue in bytes of data we have covered
186 * so far for accounting. This is updated directly to residue
187 * during callbacks to keep it current.
188 *
189 * - sg_len: Tracks the length of the current intermediate transfer,
190 * this is required to update the residue during intermediate transfer
191 * completion callback.
192 */
193 int processed_stat;
194 u32 sg_len;
195 u32 residue;
196 u32 residue_stat;
197
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -0500198 struct edma_pset pset[0];
Matt Porterc2dde5f2012-08-22 21:09:34 -0400199};
200
201struct edma_cc;
202
203struct edma_chan {
204 struct virt_dma_chan vchan;
205 struct list_head node;
206 struct edma_desc *edesc;
207 struct edma_cc *ecc;
208 int ch_num;
209 bool alloced;
210 int slot[EDMA_MAX_SLOTS];
Joel Fernandesc5f47992013-08-29 18:05:43 -0500211 int missed;
Matt Porter661f7cb2013-01-10 13:41:04 -0500212 struct dma_slave_config cfg;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400213};
214
215struct edma_cc {
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300216 struct device *dev;
217 struct edma_soc_info *info;
218 void __iomem *base;
219 int id;
220
221 /* eDMA3 resource information */
222 unsigned num_channels;
223 unsigned num_region;
224 unsigned num_slots;
225 unsigned num_tc;
Peter Ujfalusi4ab54f62015-10-14 14:43:04 +0300226 bool chmap_exist;
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300227 enum dma_event_q default_queue;
228
229 bool unused_chan_list_done;
Peter Ujfalusi7a73b132015-10-14 14:43:05 +0300230 /* The slot_inuse bit for each PaRAM slot is clear unless the
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300231 * channel is in use ... by ARM or DSP, for QDMA, or whatever.
232 */
Peter Ujfalusi7a73b132015-10-14 14:43:05 +0300233 unsigned long *slot_inuse;
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300234
Peter Ujfalusi7a73b132015-10-14 14:43:05 +0300235 /* The channel_unused bit for each channel is clear unless
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300236 * it is not being used on this platform. It uses a bit
237 * of SOC-specific initialization code.
238 */
Peter Ujfalusi7a73b132015-10-14 14:43:05 +0300239 unsigned long *channel_unused;
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300240
Matt Porterc2dde5f2012-08-22 21:09:34 -0400241 struct dma_device dma_slave;
Peter Ujfalusicb782052015-10-14 14:42:54 +0300242 struct edma_chan *slave_chans;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400243 int dummy_slot;
244};
245
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300246/* dummy param set used to (re)initialize parameter RAM slots */
247static const struct edmacc_param dummy_paramset = {
248 .link_bcntrld = 0xffff,
249 .ccnt = 1,
250};
251
252static const struct of_device_id edma_of_ids[] = {
253 { .compatible = "ti,edma3", },
254 {}
255};
256
257static inline unsigned int edma_read(struct edma_cc *ecc, int offset)
258{
259 return (unsigned int)__raw_readl(ecc->base + offset);
260}
261
262static inline void edma_write(struct edma_cc *ecc, int offset, int val)
263{
264 __raw_writel(val, ecc->base + offset);
265}
266
267static inline void edma_modify(struct edma_cc *ecc, int offset, unsigned and,
268 unsigned or)
269{
270 unsigned val = edma_read(ecc, offset);
271
272 val &= and;
273 val |= or;
274 edma_write(ecc, offset, val);
275}
276
277static inline void edma_and(struct edma_cc *ecc, int offset, unsigned and)
278{
279 unsigned val = edma_read(ecc, offset);
280
281 val &= and;
282 edma_write(ecc, offset, val);
283}
284
285static inline void edma_or(struct edma_cc *ecc, int offset, unsigned or)
286{
287 unsigned val = edma_read(ecc, offset);
288
289 val |= or;
290 edma_write(ecc, offset, val);
291}
292
293static inline unsigned int edma_read_array(struct edma_cc *ecc, int offset,
294 int i)
295{
296 return edma_read(ecc, offset + (i << 2));
297}
298
299static inline void edma_write_array(struct edma_cc *ecc, int offset, int i,
300 unsigned val)
301{
302 edma_write(ecc, offset + (i << 2), val);
303}
304
305static inline void edma_modify_array(struct edma_cc *ecc, int offset, int i,
306 unsigned and, unsigned or)
307{
308 edma_modify(ecc, offset + (i << 2), and, or);
309}
310
311static inline void edma_or_array(struct edma_cc *ecc, int offset, int i,
312 unsigned or)
313{
314 edma_or(ecc, offset + (i << 2), or);
315}
316
317static inline void edma_or_array2(struct edma_cc *ecc, int offset, int i, int j,
318 unsigned or)
319{
320 edma_or(ecc, offset + ((i * 2 + j) << 2), or);
321}
322
323static inline void edma_write_array2(struct edma_cc *ecc, int offset, int i,
324 int j, unsigned val)
325{
326 edma_write(ecc, offset + ((i * 2 + j) << 2), val);
327}
328
329static inline unsigned int edma_shadow0_read(struct edma_cc *ecc, int offset)
330{
331 return edma_read(ecc, EDMA_SHADOW0 + offset);
332}
333
334static inline unsigned int edma_shadow0_read_array(struct edma_cc *ecc,
335 int offset, int i)
336{
337 return edma_read(ecc, EDMA_SHADOW0 + offset + (i << 2));
338}
339
340static inline void edma_shadow0_write(struct edma_cc *ecc, int offset,
341 unsigned val)
342{
343 edma_write(ecc, EDMA_SHADOW0 + offset, val);
344}
345
346static inline void edma_shadow0_write_array(struct edma_cc *ecc, int offset,
347 int i, unsigned val)
348{
349 edma_write(ecc, EDMA_SHADOW0 + offset + (i << 2), val);
350}
351
352static inline unsigned int edma_parm_read(struct edma_cc *ecc, int offset,
353 int param_no)
354{
355 return edma_read(ecc, EDMA_PARM + offset + (param_no << 5));
356}
357
358static inline void edma_parm_write(struct edma_cc *ecc, int offset,
359 int param_no, unsigned val)
360{
361 edma_write(ecc, EDMA_PARM + offset + (param_no << 5), val);
362}
363
364static inline void edma_parm_modify(struct edma_cc *ecc, int offset,
365 int param_no, unsigned and, unsigned or)
366{
367 edma_modify(ecc, EDMA_PARM + offset + (param_no << 5), and, or);
368}
369
370static inline void edma_parm_and(struct edma_cc *ecc, int offset, int param_no,
371 unsigned and)
372{
373 edma_and(ecc, EDMA_PARM + offset + (param_no << 5), and);
374}
375
376static inline void edma_parm_or(struct edma_cc *ecc, int offset, int param_no,
377 unsigned or)
378{
379 edma_or(ecc, EDMA_PARM + offset + (param_no << 5), or);
380}
381
382static inline void set_bits(int offset, int len, unsigned long *p)
383{
384 for (; len > 0; len--)
385 set_bit(offset + (len - 1), p);
386}
387
388static inline void clear_bits(int offset, int len, unsigned long *p)
389{
390 for (; len > 0; len--)
391 clear_bit(offset + (len - 1), p);
392}
393
394static void edma_map_dmach_to_queue(struct edma_cc *ecc, unsigned ch_no,
395 enum dma_event_q queue_no)
396{
397 int bit = (ch_no & 0x7) * 4;
398
399 /* default to low priority queue */
400 if (queue_no == EVENTQ_DEFAULT)
401 queue_no = ecc->default_queue;
402
403 queue_no &= 7;
404 edma_modify_array(ecc, EDMA_DMAQNUM, (ch_no >> 3), ~(0x7 << bit),
405 queue_no << bit);
406}
407
408static void edma_assign_priority_to_queue(struct edma_cc *ecc, int queue_no,
409 int priority)
410{
411 int bit = queue_no * 4;
412
413 edma_modify(ecc, EDMA_QUEPRI, ~(0x7 << bit), ((priority & 0x7) << bit));
414}
415
Peter Ujfalusie4e886c2015-10-14 14:43:06 +0300416static void edma_set_chmap(struct edma_cc *ecc, int channel, int slot)
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300417{
Peter Ujfalusie4e886c2015-10-14 14:43:06 +0300418 if (ecc->chmap_exist) {
419 channel = EDMA_CHAN_SLOT(channel);
420 slot = EDMA_CHAN_SLOT(slot);
421 edma_write_array(ecc, EDMA_DCHMAP, channel, (slot << 5));
422 }
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300423}
424
425static int prepare_unused_channel_list(struct device *dev, void *data)
426{
427 struct platform_device *pdev = to_platform_device(dev);
428 struct edma_cc *ecc = data;
Peter Ujfalusicb782052015-10-14 14:42:54 +0300429 int dma_req_min = EDMA_CTLR_CHAN(ecc->id, 0);
430 int dma_req_max = dma_req_min + ecc->num_channels;
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300431 int i, count;
432 struct of_phandle_args dma_spec;
433
434 if (dev->of_node) {
435 struct platform_device *dma_pdev;
436
437 count = of_property_count_strings(dev->of_node, "dma-names");
438 if (count < 0)
439 return 0;
440 for (i = 0; i < count; i++) {
441 if (of_parse_phandle_with_args(dev->of_node, "dmas",
442 "#dma-cells", i,
443 &dma_spec))
444 continue;
445
446 if (!of_match_node(edma_of_ids, dma_spec.np)) {
447 of_node_put(dma_spec.np);
448 continue;
449 }
450
451 dma_pdev = of_find_device_by_node(dma_spec.np);
452 if (&dma_pdev->dev != ecc->dev)
453 continue;
454
455 clear_bit(EDMA_CHAN_SLOT(dma_spec.args[0]),
Peter Ujfalusi7a73b132015-10-14 14:43:05 +0300456 ecc->channel_unused);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300457 of_node_put(dma_spec.np);
458 }
459 return 0;
460 }
461
462 /* For non-OF case */
463 for (i = 0; i < pdev->num_resources; i++) {
464 struct resource *res = &pdev->resource[i];
Peter Ujfalusicb782052015-10-14 14:42:54 +0300465 int dma_req;
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300466
Peter Ujfalusicb782052015-10-14 14:42:54 +0300467 if (!(res->flags & IORESOURCE_DMA))
468 continue;
469
470 dma_req = (int)res->start;
471 if (dma_req >= dma_req_min && dma_req < dma_req_max)
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300472 clear_bit(EDMA_CHAN_SLOT(pdev->resource[i].start),
Peter Ujfalusi7a73b132015-10-14 14:43:05 +0300473 ecc->channel_unused);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300474 }
475
476 return 0;
477}
478
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +0300479static void edma_setup_interrupt(struct edma_cc *ecc, unsigned lch, bool enable)
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300480{
481 lch = EDMA_CHAN_SLOT(lch);
482
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +0300483 if (enable) {
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300484 edma_shadow0_write_array(ecc, SH_ICR, lch >> 5,
485 BIT(lch & 0x1f));
486 edma_shadow0_write_array(ecc, SH_IESR, lch >> 5,
487 BIT(lch & 0x1f));
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +0300488 } else {
489 edma_shadow0_write_array(ecc, SH_IECR, lch >> 5,
490 BIT(lch & 0x1f));
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300491 }
492}
493
494/*
Peter Ujfalusi11c15732015-10-14 14:43:00 +0300495 * paRAM slot management functions
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300496 */
497static void edma_write_slot(struct edma_cc *ecc, unsigned slot,
498 const struct edmacc_param *param)
499{
500 slot = EDMA_CHAN_SLOT(slot);
501 if (slot >= ecc->num_slots)
502 return;
503 memcpy_toio(ecc->base + PARM_OFFSET(slot), param, PARM_SIZE);
504}
505
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300506static void edma_read_slot(struct edma_cc *ecc, unsigned slot,
507 struct edmacc_param *param)
508{
509 slot = EDMA_CHAN_SLOT(slot);
510 if (slot >= ecc->num_slots)
511 return;
512 memcpy_fromio(param, ecc->base + PARM_OFFSET(slot), PARM_SIZE);
513}
514
515/**
516 * edma_alloc_slot - allocate DMA parameter RAM
517 * @ecc: pointer to edma_cc struct
518 * @slot: specific slot to allocate; negative for "any unused slot"
519 *
520 * This allocates a parameter RAM slot, initializing it to hold a
521 * dummy transfer. Slots allocated using this routine have not been
522 * mapped to a hardware DMA channel, and will normally be used by
523 * linking to them from a slot associated with a DMA channel.
524 *
525 * Normal use is to pass EDMA_SLOT_ANY as the @slot, but specific
526 * slots may be allocated on behalf of DSP firmware.
527 *
528 * Returns the number of the slot, else negative errno.
529 */
530static int edma_alloc_slot(struct edma_cc *ecc, int slot)
531{
Peter Ujfalusie4e886c2015-10-14 14:43:06 +0300532 if (slot > 0) {
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300533 slot = EDMA_CHAN_SLOT(slot);
Peter Ujfalusie4e886c2015-10-14 14:43:06 +0300534 /* Requesting entry paRAM slot for a HW triggered channel. */
535 if (ecc->chmap_exist && slot < ecc->num_channels)
536 slot = EDMA_SLOT_ANY;
537 }
538
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300539 if (slot < 0) {
Peter Ujfalusie4e886c2015-10-14 14:43:06 +0300540 if (ecc->chmap_exist)
541 slot = 0;
542 else
543 slot = ecc->num_channels;
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300544 for (;;) {
Peter Ujfalusi7a73b132015-10-14 14:43:05 +0300545 slot = find_next_zero_bit(ecc->slot_inuse,
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300546 ecc->num_slots,
547 slot);
548 if (slot == ecc->num_slots)
549 return -ENOMEM;
Peter Ujfalusi7a73b132015-10-14 14:43:05 +0300550 if (!test_and_set_bit(slot, ecc->slot_inuse))
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300551 break;
552 }
Peter Ujfalusie4e886c2015-10-14 14:43:06 +0300553 } else if (slot >= ecc->num_slots) {
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300554 return -EINVAL;
Peter Ujfalusi7a73b132015-10-14 14:43:05 +0300555 } else if (test_and_set_bit(slot, ecc->slot_inuse)) {
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300556 return -EBUSY;
557 }
558
559 edma_write_slot(ecc, slot, &dummy_paramset);
560
561 return EDMA_CTLR_CHAN(ecc->id, slot);
562}
563
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300564static void edma_free_slot(struct edma_cc *ecc, unsigned slot)
565{
566 slot = EDMA_CHAN_SLOT(slot);
Peter Ujfalusie4e886c2015-10-14 14:43:06 +0300567 if (slot >= ecc->num_slots)
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300568 return;
569
570 edma_write_slot(ecc, slot, &dummy_paramset);
Peter Ujfalusi7a73b132015-10-14 14:43:05 +0300571 clear_bit(slot, ecc->slot_inuse);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300572}
573
574/**
575 * edma_link - link one parameter RAM slot to another
576 * @ecc: pointer to edma_cc struct
577 * @from: parameter RAM slot originating the link
578 * @to: parameter RAM slot which is the link target
579 *
580 * The originating slot should not be part of any active DMA transfer.
581 */
582static void edma_link(struct edma_cc *ecc, unsigned from, unsigned to)
583{
Peter Ujfalusifc014092015-10-14 14:42:59 +0300584 if (unlikely(EDMA_CTLR(from) != EDMA_CTLR(to)))
585 dev_warn(ecc->dev, "Ignoring eDMA instance for linking\n");
586
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300587 from = EDMA_CHAN_SLOT(from);
588 to = EDMA_CHAN_SLOT(to);
589 if (from >= ecc->num_slots || to >= ecc->num_slots)
590 return;
591
592 edma_parm_modify(ecc, PARM_LINK_BCNTRLD, from, 0xffff0000,
593 PARM_OFFSET(to));
594}
595
596/**
597 * edma_get_position - returns the current transfer point
598 * @ecc: pointer to edma_cc struct
599 * @slot: parameter RAM slot being examined
600 * @dst: true selects the dest position, false the source
601 *
602 * Returns the position of the current active slot
603 */
604static dma_addr_t edma_get_position(struct edma_cc *ecc, unsigned slot,
605 bool dst)
606{
607 u32 offs;
608
609 slot = EDMA_CHAN_SLOT(slot);
610 offs = PARM_OFFSET(slot);
611 offs += dst ? PARM_DST : PARM_SRC;
612
613 return edma_read(ecc, offs);
614}
615
616/*-----------------------------------------------------------------------*/
617/**
618 * edma_start - start dma on a channel
619 * @ecc: pointer to edma_cc struct
620 * @channel: channel being activated
621 *
622 * Channels with event associations will be triggered by their hardware
623 * events, and channels without such associations will be triggered by
624 * software. (At this writing there is no interface for using software
625 * triggers except with channels that don't support hardware triggers.)
626 *
627 * Returns zero on success, else negative errno.
628 */
629static int edma_start(struct edma_cc *ecc, unsigned channel)
630{
631 if (ecc->id != EDMA_CTLR(channel)) {
632 dev_err(ecc->dev, "%s: ID mismatch for eDMA%d: %d\n", __func__,
633 ecc->id, EDMA_CTLR(channel));
634 return -EINVAL;
635 }
636 channel = EDMA_CHAN_SLOT(channel);
637
638 if (channel < ecc->num_channels) {
639 int j = channel >> 5;
640 unsigned int mask = BIT(channel & 0x1f);
641
642 /* EDMA channels without event association */
Peter Ujfalusi7a73b132015-10-14 14:43:05 +0300643 if (test_bit(channel, ecc->channel_unused)) {
Peter Ujfalusi3287fb42015-10-14 14:42:57 +0300644 dev_dbg(ecc->dev, "ESR%d %08x\n", j,
645 edma_shadow0_read_array(ecc, SH_ESR, j));
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300646 edma_shadow0_write_array(ecc, SH_ESR, j, mask);
647 return 0;
648 }
649
650 /* EDMA channel with event association */
Peter Ujfalusi3287fb42015-10-14 14:42:57 +0300651 dev_dbg(ecc->dev, "ER%d %08x\n", j,
652 edma_shadow0_read_array(ecc, SH_ER, j));
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300653 /* Clear any pending event or error */
654 edma_write_array(ecc, EDMA_ECR, j, mask);
655 edma_write_array(ecc, EDMA_EMCR, j, mask);
656 /* Clear any SER */
657 edma_shadow0_write_array(ecc, SH_SECR, j, mask);
658 edma_shadow0_write_array(ecc, SH_EESR, j, mask);
Peter Ujfalusi3287fb42015-10-14 14:42:57 +0300659 dev_dbg(ecc->dev, "EER%d %08x\n", j,
660 edma_shadow0_read_array(ecc, SH_EER, j));
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300661 return 0;
662 }
663
664 return -EINVAL;
665}
666
667/**
668 * edma_stop - stops dma on the channel passed
669 * @ecc: pointer to edma_cc struct
670 * @channel: channel being deactivated
671 *
Peter Ujfalusi11c15732015-10-14 14:43:00 +0300672 * Any active transfer is paused and all pending hardware events are cleared.
673 * The current transfer may not be resumed, and the channel's Parameter RAM
674 * should be reinitialized before being reused.
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300675 */
676static void edma_stop(struct edma_cc *ecc, unsigned channel)
677{
678 if (ecc->id != EDMA_CTLR(channel)) {
679 dev_err(ecc->dev, "%s: ID mismatch for eDMA%d: %d\n", __func__,
680 ecc->id, EDMA_CTLR(channel));
681 return;
682 }
683 channel = EDMA_CHAN_SLOT(channel);
684
685 if (channel < ecc->num_channels) {
686 int j = channel >> 5;
687 unsigned int mask = BIT(channel & 0x1f);
688
689 edma_shadow0_write_array(ecc, SH_EECR, j, mask);
690 edma_shadow0_write_array(ecc, SH_ECR, j, mask);
691 edma_shadow0_write_array(ecc, SH_SECR, j, mask);
692 edma_write_array(ecc, EDMA_EMCR, j, mask);
693
694 /* clear possibly pending completion interrupt */
695 edma_shadow0_write_array(ecc, SH_ICR, j, mask);
696
Peter Ujfalusi3287fb42015-10-14 14:42:57 +0300697 dev_dbg(ecc->dev, "EER%d %08x\n", j,
698 edma_shadow0_read_array(ecc, SH_EER, j));
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300699
700 /* REVISIT: consider guarding against inappropriate event
701 * chaining by overwriting with dummy_paramset.
702 */
703 }
704}
705
Peter Ujfalusi11c15732015-10-14 14:43:00 +0300706/*
707 * Temporarily disable EDMA hardware events on the specified channel,
708 * preventing them from triggering new transfers
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300709 */
710static void edma_pause(struct edma_cc *ecc, unsigned channel)
711{
712 if (ecc->id != EDMA_CTLR(channel)) {
713 dev_err(ecc->dev, "%s: ID mismatch for eDMA%d: %d\n", __func__,
714 ecc->id, EDMA_CTLR(channel));
715 return;
716 }
717 channel = EDMA_CHAN_SLOT(channel);
718
719 if (channel < ecc->num_channels) {
720 unsigned int mask = BIT(channel & 0x1f);
721
722 edma_shadow0_write_array(ecc, SH_EECR, channel >> 5, mask);
723 }
724}
725
Peter Ujfalusi11c15732015-10-14 14:43:00 +0300726/* Re-enable EDMA hardware events on the specified channel. */
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300727static void edma_resume(struct edma_cc *ecc, unsigned channel)
728{
729 if (ecc->id != EDMA_CTLR(channel)) {
730 dev_err(ecc->dev, "%s: ID mismatch for eDMA%d: %d\n", __func__,
731 ecc->id, EDMA_CTLR(channel));
732 return;
733 }
734 channel = EDMA_CHAN_SLOT(channel);
735
736 if (channel < ecc->num_channels) {
737 unsigned int mask = BIT(channel & 0x1f);
738
739 edma_shadow0_write_array(ecc, SH_EESR, channel >> 5, mask);
740 }
741}
742
743static int edma_trigger_channel(struct edma_cc *ecc, unsigned channel)
744{
745 unsigned int mask;
746
747 if (ecc->id != EDMA_CTLR(channel)) {
748 dev_err(ecc->dev, "%s: ID mismatch for eDMA%d: %d\n", __func__,
749 ecc->id, EDMA_CTLR(channel));
750 return -EINVAL;
751 }
752 channel = EDMA_CHAN_SLOT(channel);
753 mask = BIT(channel & 0x1f);
754
755 edma_shadow0_write_array(ecc, SH_ESR, (channel >> 5), mask);
756
Peter Ujfalusi3287fb42015-10-14 14:42:57 +0300757 dev_dbg(ecc->dev, "ESR%d %08x\n", (channel >> 5),
758 edma_shadow0_read_array(ecc, SH_ESR, (channel >> 5)));
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300759 return 0;
760}
761
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300762static void edma_clean_channel(struct edma_cc *ecc, unsigned channel)
763{
764 if (ecc->id != EDMA_CTLR(channel)) {
765 dev_err(ecc->dev, "%s: ID mismatch for eDMA%d: %d\n", __func__,
766 ecc->id, EDMA_CTLR(channel));
767 return;
768 }
769 channel = EDMA_CHAN_SLOT(channel);
770
771 if (channel < ecc->num_channels) {
772 int j = (channel >> 5);
773 unsigned int mask = BIT(channel & 0x1f);
774
Peter Ujfalusi3287fb42015-10-14 14:42:57 +0300775 dev_dbg(ecc->dev, "EMR%d %08x\n", j,
776 edma_read_array(ecc, EDMA_EMR, j));
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300777 edma_shadow0_write_array(ecc, SH_ECR, j, mask);
778 /* Clear the corresponding EMR bits */
779 edma_write_array(ecc, EDMA_EMCR, j, mask);
780 /* Clear any SER */
781 edma_shadow0_write_array(ecc, SH_SECR, j, mask);
782 edma_write(ecc, EDMA_CCERRCLR, BIT(16) | BIT(1) | BIT(0));
783 }
784}
785
786/**
787 * edma_alloc_channel - allocate DMA channel and paired parameter RAM
788 * @ecc: pointer to edma_cc struct
789 * @channel: specific channel to allocate; negative for "any unmapped channel"
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300790 * @eventq_no: an EVENTQ_* constant, used to choose which Transfer
791 * Controller (TC) executes requests using this channel. Use
792 * EVENTQ_DEFAULT unless you really need a high priority queue.
793 *
794 * This allocates a DMA channel and its associated parameter RAM slot.
795 * The parameter RAM is initialized to hold a dummy transfer.
796 *
797 * Normal use is to pass a specific channel number as @channel, to make
798 * use of hardware events mapped to that channel. When the channel will
799 * be used only for software triggering or event chaining, channels not
800 * mapped to hardware events (or mapped to unused events) are preferable.
801 *
802 * DMA transfers start from a channel using edma_start(), or by
803 * chaining. When the transfer described in that channel's parameter RAM
804 * slot completes, that slot's data may be reloaded through a link.
805 *
806 * DMA errors are only reported to the @callback associated with the
807 * channel driving that transfer, but transfer completion callbacks can
808 * be sent to another channel under control of the TCC field in
809 * the option word of the transfer's parameter RAM set. Drivers must not
810 * use DMA transfer completion callbacks for channels they did not allocate.
811 * (The same applies to TCC codes used in transfer chaining.)
812 *
813 * Returns the number of the channel, else negative errno.
814 */
815static int edma_alloc_channel(struct edma_cc *ecc, int channel,
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +0300816 enum dma_event_q eventq_no)
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300817{
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300818 int ret = 0;
819
820 if (!ecc->unused_chan_list_done) {
821 /*
822 * Scan all the platform devices to find out the EDMA channels
823 * used and clear them in the unused list, making the rest
824 * available for ARM usage.
825 */
826 ret = bus_for_each_dev(&platform_bus_type, NULL, ecc,
827 prepare_unused_channel_list);
828 if (ret < 0)
829 return ret;
830
831 ecc->unused_chan_list_done = true;
832 }
833
834 if (channel >= 0) {
835 if (ecc->id != EDMA_CTLR(channel)) {
836 dev_err(ecc->dev, "%s: ID mismatch for eDMA%d: %d\n",
837 __func__, ecc->id, EDMA_CTLR(channel));
838 return -EINVAL;
839 }
840 channel = EDMA_CHAN_SLOT(channel);
841 }
842
843 if (channel < 0) {
Peter Ujfalusie4e886c2015-10-14 14:43:06 +0300844 channel = find_next_bit(ecc->channel_unused, ecc->num_channels,
845 0);
846 if (channel == ecc->num_channels)
847 return -EBUSY;
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300848 } else if (channel >= ecc->num_channels) {
849 return -EINVAL;
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300850 }
851
852 /* ensure access through shadow region 0 */
853 edma_or_array2(ecc, EDMA_DRAE, 0, channel >> 5, BIT(channel & 0x1f));
854
855 /* ensure no events are pending */
856 edma_stop(ecc, EDMA_CTLR_CHAN(ecc->id, channel));
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300857
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +0300858 edma_setup_interrupt(ecc, EDMA_CTLR_CHAN(ecc->id, channel), true);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300859
860 edma_map_dmach_to_queue(ecc, channel, eventq_no);
861
862 return EDMA_CTLR_CHAN(ecc->id, channel);
863}
864
865/**
866 * edma_free_channel - deallocate DMA channel
867 * @ecc: pointer to edma_cc struct
868 * @channel: dma channel returned from edma_alloc_channel()
869 *
870 * This deallocates the DMA channel and associated parameter RAM slot
871 * allocated by edma_alloc_channel().
872 *
873 * Callers are responsible for ensuring the channel is inactive, and
874 * will not be reactivated by linking, chaining, or software calls to
875 * edma_start().
876 */
877static void edma_free_channel(struct edma_cc *ecc, unsigned channel)
878{
879 if (ecc->id != EDMA_CTLR(channel)) {
880 dev_err(ecc->dev, "%s: ID mismatch for eDMA%d: %d\n", __func__,
881 ecc->id, EDMA_CTLR(channel));
882 return;
883 }
884 channel = EDMA_CHAN_SLOT(channel);
885
886 if (channel >= ecc->num_channels)
887 return;
888
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300889 /* REVISIT should probably take out of shadow region 0 */
Peter Ujfalusie4e886c2015-10-14 14:43:06 +0300890 edma_setup_interrupt(ecc, channel, false);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300891}
892
Peter Ujfalusi11c15732015-10-14 14:43:00 +0300893/* Move channel to a specific event queue */
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300894static void edma_assign_channel_eventq(struct edma_cc *ecc, unsigned channel,
895 enum dma_event_q eventq_no)
896{
897 if (ecc->id != EDMA_CTLR(channel)) {
898 dev_err(ecc->dev, "%s: ID mismatch for eDMA%d: %d\n", __func__,
899 ecc->id, EDMA_CTLR(channel));
900 return;
901 }
902 channel = EDMA_CHAN_SLOT(channel);
903
904 if (channel >= ecc->num_channels)
905 return;
906
907 /* default to low priority queue */
908 if (eventq_no == EVENTQ_DEFAULT)
909 eventq_no = ecc->default_queue;
910 if (eventq_no >= ecc->num_tc)
911 return;
912
913 edma_map_dmach_to_queue(ecc, channel, eventq_no);
914}
915
Matt Porterc2dde5f2012-08-22 21:09:34 -0400916static inline struct edma_cc *to_edma_cc(struct dma_device *d)
917{
918 return container_of(d, struct edma_cc, dma_slave);
919}
920
921static inline struct edma_chan *to_edma_chan(struct dma_chan *c)
922{
923 return container_of(c, struct edma_chan, vchan.chan);
924}
925
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300926static inline struct edma_desc *to_edma_desc(struct dma_async_tx_descriptor *tx)
Matt Porterc2dde5f2012-08-22 21:09:34 -0400927{
928 return container_of(tx, struct edma_desc, vdesc.tx);
929}
930
931static void edma_desc_free(struct virt_dma_desc *vdesc)
932{
933 kfree(container_of(vdesc, struct edma_desc, vdesc));
934}
935
936/* Dispatch a queued descriptor to the controller (caller holds lock) */
937static void edma_execute(struct edma_chan *echan)
938{
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300939 struct edma_cc *ecc = echan->ecc;
Joel Fernandes53407062013-09-03 10:02:46 -0500940 struct virt_dma_desc *vdesc;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400941 struct edma_desc *edesc;
Joel Fernandes53407062013-09-03 10:02:46 -0500942 struct device *dev = echan->vchan.chan.device->dev;
943 int i, j, left, nslots;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400944
Peter Ujfalusi8fa7ff42015-10-14 14:42:45 +0300945 if (!echan->edesc) {
946 /* Setup is needed for the first transfer */
Joel Fernandes53407062013-09-03 10:02:46 -0500947 vdesc = vchan_next_desc(&echan->vchan);
Peter Ujfalusi8fa7ff42015-10-14 14:42:45 +0300948 if (!vdesc)
Joel Fernandes53407062013-09-03 10:02:46 -0500949 return;
Joel Fernandes53407062013-09-03 10:02:46 -0500950 list_del(&vdesc->node);
951 echan->edesc = to_edma_desc(&vdesc->tx);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400952 }
953
Joel Fernandes53407062013-09-03 10:02:46 -0500954 edesc = echan->edesc;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400955
Joel Fernandes53407062013-09-03 10:02:46 -0500956 /* Find out how many left */
957 left = edesc->pset_nr - edesc->processed;
958 nslots = min(MAX_NR_SG, left);
Thomas Gleixner740b41f2014-04-28 14:34:11 -0500959 edesc->sg_len = 0;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400960
961 /* Write descriptor PaRAM set(s) */
Joel Fernandes53407062013-09-03 10:02:46 -0500962 for (i = 0; i < nslots; i++) {
963 j = i + edesc->processed;
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300964 edma_write_slot(ecc, echan->slot[i], &edesc->pset[j].param);
Thomas Gleixner740b41f2014-04-28 14:34:11 -0500965 edesc->sg_len += edesc->pset[j].len;
Peter Ujfalusi907f74a2015-10-14 14:42:56 +0300966 dev_vdbg(dev,
967 "\n pset[%d]:\n"
968 " chnum\t%d\n"
969 " slot\t%d\n"
970 " opt\t%08x\n"
971 " src\t%08x\n"
972 " dst\t%08x\n"
973 " abcnt\t%08x\n"
974 " ccnt\t%08x\n"
975 " bidx\t%08x\n"
976 " cidx\t%08x\n"
977 " lkrld\t%08x\n",
978 j, echan->ch_num, echan->slot[i],
979 edesc->pset[j].param.opt,
980 edesc->pset[j].param.src,
981 edesc->pset[j].param.dst,
982 edesc->pset[j].param.a_b_cnt,
983 edesc->pset[j].param.ccnt,
984 edesc->pset[j].param.src_dst_bidx,
985 edesc->pset[j].param.src_dst_cidx,
986 edesc->pset[j].param.link_bcntrld);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400987 /* Link to the previous slot if not the last set */
Joel Fernandes53407062013-09-03 10:02:46 -0500988 if (i != (nslots - 1))
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +0300989 edma_link(ecc, echan->slot[i], echan->slot[i + 1]);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400990 }
991
Joel Fernandes53407062013-09-03 10:02:46 -0500992 edesc->processed += nslots;
993
Joel Fernandesb267b3b2013-08-29 18:05:44 -0500994 /*
995 * If this is either the last set in a set of SG-list transactions
996 * then setup a link to the dummy slot, this results in all future
997 * events being absorbed and that's OK because we're done
998 */
Joel Fernandes50a9c702013-10-31 16:31:23 -0500999 if (edesc->processed == edesc->pset_nr) {
1000 if (edesc->cyclic)
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001001 edma_link(ecc, echan->slot[nslots - 1], echan->slot[1]);
Joel Fernandes50a9c702013-10-31 16:31:23 -05001002 else
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001003 edma_link(ecc, echan->slot[nslots - 1],
Joel Fernandes50a9c702013-10-31 16:31:23 -05001004 echan->ecc->dummy_slot);
1005 }
Joel Fernandesb267b3b2013-08-29 18:05:44 -05001006
Peter Ujfalusi8fa7ff42015-10-14 14:42:45 +03001007 if (echan->missed) {
1008 /*
1009 * This happens due to setup times between intermediate
1010 * transfers in long SG lists which have to be broken up into
1011 * transfers of MAX_NR_SG
1012 */
1013 dev_dbg(dev, "missed event on channel %d\n", echan->ch_num);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001014 edma_clean_channel(ecc, echan->ch_num);
1015 edma_stop(ecc, echan->ch_num);
1016 edma_start(ecc, echan->ch_num);
1017 edma_trigger_channel(ecc, echan->ch_num);
Peter Ujfalusi8fa7ff42015-10-14 14:42:45 +03001018 echan->missed = 0;
1019 } else if (edesc->processed <= MAX_NR_SG) {
Peter Ujfalusi9aac9092014-04-24 10:29:50 +03001020 dev_dbg(dev, "first transfer starting on channel %d\n",
1021 echan->ch_num);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001022 edma_start(ecc, echan->ch_num);
Sekhar Nori5fc68a62014-03-19 11:25:50 +05301023 } else {
1024 dev_dbg(dev, "chan: %d: completed %d elements, resuming\n",
1025 echan->ch_num, edesc->processed);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001026 edma_resume(ecc, echan->ch_num);
Joel Fernandes53407062013-09-03 10:02:46 -05001027 }
Matt Porterc2dde5f2012-08-22 21:09:34 -04001028}
1029
Maxime Ripardaa7c09b2014-11-17 14:42:13 +01001030static int edma_terminate_all(struct dma_chan *chan)
Matt Porterc2dde5f2012-08-22 21:09:34 -04001031{
Maxime Ripardaa7c09b2014-11-17 14:42:13 +01001032 struct edma_chan *echan = to_edma_chan(chan);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001033 unsigned long flags;
1034 LIST_HEAD(head);
1035
1036 spin_lock_irqsave(&echan->vchan.lock, flags);
1037
1038 /*
1039 * Stop DMA activity: we assume the callback will not be called
1040 * after edma_dma() returns (even if it does, it will see
1041 * echan->edesc is NULL and exit.)
1042 */
1043 if (echan->edesc) {
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001044 edma_stop(echan->ecc, echan->ch_num);
Peter Ujfalusi8fa7ff42015-10-14 14:42:45 +03001045 /* Move the cyclic channel back to default queue */
1046 if (echan->edesc->cyclic)
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001047 edma_assign_channel_eventq(echan->ecc, echan->ch_num,
Peter Ujfalusi8fa7ff42015-10-14 14:42:45 +03001048 EVENTQ_DEFAULT);
Petr Kulhavy5ca9e7c2015-03-27 13:35:51 +02001049 /*
1050 * free the running request descriptor
1051 * since it is not in any of the vdesc lists
1052 */
1053 edma_desc_free(&echan->edesc->vdesc);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001054 echan->edesc = NULL;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001055 }
1056
1057 vchan_get_all_descriptors(&echan->vchan, &head);
1058 spin_unlock_irqrestore(&echan->vchan.lock, flags);
1059 vchan_dma_desc_free_list(&echan->vchan, &head);
1060
1061 return 0;
1062}
1063
Maxime Ripardaa7c09b2014-11-17 14:42:13 +01001064static int edma_slave_config(struct dma_chan *chan,
Matt Porter661f7cb2013-01-10 13:41:04 -05001065 struct dma_slave_config *cfg)
Matt Porterc2dde5f2012-08-22 21:09:34 -04001066{
Maxime Ripardaa7c09b2014-11-17 14:42:13 +01001067 struct edma_chan *echan = to_edma_chan(chan);
1068
Matt Porter661f7cb2013-01-10 13:41:04 -05001069 if (cfg->src_addr_width == DMA_SLAVE_BUSWIDTH_8_BYTES ||
1070 cfg->dst_addr_width == DMA_SLAVE_BUSWIDTH_8_BYTES)
Matt Porterc2dde5f2012-08-22 21:09:34 -04001071 return -EINVAL;
1072
Matt Porter661f7cb2013-01-10 13:41:04 -05001073 memcpy(&echan->cfg, cfg, sizeof(echan->cfg));
Matt Porterc2dde5f2012-08-22 21:09:34 -04001074
1075 return 0;
1076}
1077
Maxime Ripardaa7c09b2014-11-17 14:42:13 +01001078static int edma_dma_pause(struct dma_chan *chan)
Peter Ujfalusi72c7b672014-04-14 14:41:59 +03001079{
Maxime Ripardaa7c09b2014-11-17 14:42:13 +01001080 struct edma_chan *echan = to_edma_chan(chan);
1081
John Ogness02ec6042015-04-27 13:52:25 +02001082 if (!echan->edesc)
Peter Ujfalusi72c7b672014-04-14 14:41:59 +03001083 return -EINVAL;
1084
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001085 edma_pause(echan->ecc, echan->ch_num);
Peter Ujfalusi72c7b672014-04-14 14:41:59 +03001086 return 0;
1087}
1088
Maxime Ripardaa7c09b2014-11-17 14:42:13 +01001089static int edma_dma_resume(struct dma_chan *chan)
Peter Ujfalusi72c7b672014-04-14 14:41:59 +03001090{
Maxime Ripardaa7c09b2014-11-17 14:42:13 +01001091 struct edma_chan *echan = to_edma_chan(chan);
1092
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001093 edma_resume(echan->ecc, echan->ch_num);
Peter Ujfalusi72c7b672014-04-14 14:41:59 +03001094 return 0;
1095}
1096
Joel Fernandesfd009032013-09-23 18:05:13 -05001097/*
1098 * A PaRAM set configuration abstraction used by other modes
1099 * @chan: Channel who's PaRAM set we're configuring
1100 * @pset: PaRAM set to initialize and setup.
1101 * @src_addr: Source address of the DMA
1102 * @dst_addr: Destination address of the DMA
1103 * @burst: In units of dev_width, how much to send
1104 * @dev_width: How much is the dev_width
1105 * @dma_length: Total length of the DMA transfer
1106 * @direction: Direction of the transfer
1107 */
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -05001108static int edma_config_pset(struct dma_chan *chan, struct edma_pset *epset,
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001109 dma_addr_t src_addr, dma_addr_t dst_addr, u32 burst,
1110 enum dma_slave_buswidth dev_width,
1111 unsigned int dma_length,
1112 enum dma_transfer_direction direction)
Joel Fernandesfd009032013-09-23 18:05:13 -05001113{
1114 struct edma_chan *echan = to_edma_chan(chan);
1115 struct device *dev = chan->device->dev;
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -05001116 struct edmacc_param *param = &epset->param;
Joel Fernandesfd009032013-09-23 18:05:13 -05001117 int acnt, bcnt, ccnt, cidx;
1118 int src_bidx, dst_bidx, src_cidx, dst_cidx;
1119 int absync;
1120
1121 acnt = dev_width;
Peter Ujfalusib2b617d2014-04-14 14:41:58 +03001122
1123 /* src/dst_maxburst == 0 is the same case as src/dst_maxburst == 1 */
1124 if (!burst)
1125 burst = 1;
Joel Fernandesfd009032013-09-23 18:05:13 -05001126 /*
1127 * If the maxburst is equal to the fifo width, use
1128 * A-synced transfers. This allows for large contiguous
1129 * buffer transfers using only one PaRAM set.
1130 */
1131 if (burst == 1) {
1132 /*
1133 * For the A-sync case, bcnt and ccnt are the remainder
1134 * and quotient respectively of the division of:
1135 * (dma_length / acnt) by (SZ_64K -1). This is so
1136 * that in case bcnt over flows, we have ccnt to use.
1137 * Note: In A-sync tranfer only, bcntrld is used, but it
1138 * only applies for sg_dma_len(sg) >= SZ_64K.
1139 * In this case, the best way adopted is- bccnt for the
1140 * first frame will be the remainder below. Then for
1141 * every successive frame, bcnt will be SZ_64K-1. This
1142 * is assured as bcntrld = 0xffff in end of function.
1143 */
1144 absync = false;
1145 ccnt = dma_length / acnt / (SZ_64K - 1);
1146 bcnt = dma_length / acnt - ccnt * (SZ_64K - 1);
1147 /*
1148 * If bcnt is non-zero, we have a remainder and hence an
1149 * extra frame to transfer, so increment ccnt.
1150 */
1151 if (bcnt)
1152 ccnt++;
1153 else
1154 bcnt = SZ_64K - 1;
1155 cidx = acnt;
1156 } else {
1157 /*
1158 * If maxburst is greater than the fifo address_width,
1159 * use AB-synced transfers where A count is the fifo
1160 * address_width and B count is the maxburst. In this
1161 * case, we are limited to transfers of C count frames
1162 * of (address_width * maxburst) where C count is limited
1163 * to SZ_64K-1. This places an upper bound on the length
1164 * of an SG segment that can be handled.
1165 */
1166 absync = true;
1167 bcnt = burst;
1168 ccnt = dma_length / (acnt * bcnt);
1169 if (ccnt > (SZ_64K - 1)) {
1170 dev_err(dev, "Exceeded max SG segment size\n");
1171 return -EINVAL;
1172 }
1173 cidx = acnt * bcnt;
1174 }
1175
Thomas Gleixnerc2da2342014-04-28 14:29:57 -05001176 epset->len = dma_length;
1177
Joel Fernandesfd009032013-09-23 18:05:13 -05001178 if (direction == DMA_MEM_TO_DEV) {
1179 src_bidx = acnt;
1180 src_cidx = cidx;
1181 dst_bidx = 0;
1182 dst_cidx = 0;
Thomas Gleixnerc2da2342014-04-28 14:29:57 -05001183 epset->addr = src_addr;
Joel Fernandesfd009032013-09-23 18:05:13 -05001184 } else if (direction == DMA_DEV_TO_MEM) {
1185 src_bidx = 0;
1186 src_cidx = 0;
1187 dst_bidx = acnt;
1188 dst_cidx = cidx;
Thomas Gleixnerc2da2342014-04-28 14:29:57 -05001189 epset->addr = dst_addr;
Joel Fernandes8cc3e302014-04-18 21:50:33 -05001190 } else if (direction == DMA_MEM_TO_MEM) {
1191 src_bidx = acnt;
1192 src_cidx = cidx;
1193 dst_bidx = acnt;
1194 dst_cidx = cidx;
Joel Fernandesfd009032013-09-23 18:05:13 -05001195 } else {
1196 dev_err(dev, "%s: direction not implemented yet\n", __func__);
1197 return -EINVAL;
1198 }
1199
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -05001200 param->opt = EDMA_TCC(EDMA_CHAN_SLOT(echan->ch_num));
Joel Fernandesfd009032013-09-23 18:05:13 -05001201 /* Configure A or AB synchronized transfers */
1202 if (absync)
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -05001203 param->opt |= SYNCDIM;
Joel Fernandesfd009032013-09-23 18:05:13 -05001204
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -05001205 param->src = src_addr;
1206 param->dst = dst_addr;
Joel Fernandesfd009032013-09-23 18:05:13 -05001207
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -05001208 param->src_dst_bidx = (dst_bidx << 16) | src_bidx;
1209 param->src_dst_cidx = (dst_cidx << 16) | src_cidx;
Joel Fernandesfd009032013-09-23 18:05:13 -05001210
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -05001211 param->a_b_cnt = bcnt << 16 | acnt;
1212 param->ccnt = ccnt;
Joel Fernandesfd009032013-09-23 18:05:13 -05001213 /*
1214 * Only time when (bcntrld) auto reload is required is for
1215 * A-sync case, and in this case, a requirement of reload value
1216 * of SZ_64K-1 only is assured. 'link' is initially set to NULL
1217 * and then later will be populated by edma_execute.
1218 */
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -05001219 param->link_bcntrld = 0xffffffff;
Joel Fernandesfd009032013-09-23 18:05:13 -05001220 return absync;
1221}
1222
Matt Porterc2dde5f2012-08-22 21:09:34 -04001223static struct dma_async_tx_descriptor *edma_prep_slave_sg(
1224 struct dma_chan *chan, struct scatterlist *sgl,
1225 unsigned int sg_len, enum dma_transfer_direction direction,
1226 unsigned long tx_flags, void *context)
1227{
1228 struct edma_chan *echan = to_edma_chan(chan);
1229 struct device *dev = chan->device->dev;
1230 struct edma_desc *edesc;
Joel Fernandesfd009032013-09-23 18:05:13 -05001231 dma_addr_t src_addr = 0, dst_addr = 0;
Matt Porter661f7cb2013-01-10 13:41:04 -05001232 enum dma_slave_buswidth dev_width;
1233 u32 burst;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001234 struct scatterlist *sg;
Joel Fernandesfd009032013-09-23 18:05:13 -05001235 int i, nslots, ret;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001236
1237 if (unlikely(!echan || !sgl || !sg_len))
1238 return NULL;
1239
Matt Porter661f7cb2013-01-10 13:41:04 -05001240 if (direction == DMA_DEV_TO_MEM) {
Joel Fernandesfd009032013-09-23 18:05:13 -05001241 src_addr = echan->cfg.src_addr;
Matt Porter661f7cb2013-01-10 13:41:04 -05001242 dev_width = echan->cfg.src_addr_width;
1243 burst = echan->cfg.src_maxburst;
1244 } else if (direction == DMA_MEM_TO_DEV) {
Joel Fernandesfd009032013-09-23 18:05:13 -05001245 dst_addr = echan->cfg.dst_addr;
Matt Porter661f7cb2013-01-10 13:41:04 -05001246 dev_width = echan->cfg.dst_addr_width;
1247 burst = echan->cfg.dst_maxburst;
1248 } else {
Peter Ujfalusie6fad592014-04-14 14:42:05 +03001249 dev_err(dev, "%s: bad direction: %d\n", __func__, direction);
Matt Porter661f7cb2013-01-10 13:41:04 -05001250 return NULL;
1251 }
1252
1253 if (dev_width == DMA_SLAVE_BUSWIDTH_UNDEFINED) {
Peter Ujfalusic594c892014-04-14 14:42:03 +03001254 dev_err(dev, "%s: Undefined slave buswidth\n", __func__);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001255 return NULL;
1256 }
1257
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001258 edesc = kzalloc(sizeof(*edesc) + sg_len * sizeof(edesc->pset[0]),
1259 GFP_ATOMIC);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001260 if (!edesc) {
Peter Ujfalusic594c892014-04-14 14:42:03 +03001261 dev_err(dev, "%s: Failed to allocate a descriptor\n", __func__);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001262 return NULL;
1263 }
1264
1265 edesc->pset_nr = sg_len;
Thomas Gleixnerb6205c32014-04-28 14:18:45 -05001266 edesc->residue = 0;
Thomas Gleixnerc2da2342014-04-28 14:29:57 -05001267 edesc->direction = direction;
Thomas Gleixner740b41f2014-04-28 14:34:11 -05001268 edesc->echan = echan;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001269
Joel Fernandes6fbe24d2013-08-29 18:05:40 -05001270 /* Allocate a PaRAM slot, if needed */
1271 nslots = min_t(unsigned, MAX_NR_SG, sg_len);
1272
1273 for (i = 0; i < nslots; i++) {
Matt Porterc2dde5f2012-08-22 21:09:34 -04001274 if (echan->slot[i] < 0) {
1275 echan->slot[i] =
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001276 edma_alloc_slot(echan->ecc, EDMA_SLOT_ANY);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001277 if (echan->slot[i] < 0) {
Valentin Ilie4b6271a2013-10-24 16:14:22 +03001278 kfree(edesc);
Peter Ujfalusic594c892014-04-14 14:42:03 +03001279 dev_err(dev, "%s: Failed to allocate slot\n",
1280 __func__);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001281 return NULL;
1282 }
1283 }
Joel Fernandes6fbe24d2013-08-29 18:05:40 -05001284 }
1285
1286 /* Configure PaRAM sets for each SG */
1287 for_each_sg(sgl, sg, sg_len, i) {
Joel Fernandesfd009032013-09-23 18:05:13 -05001288 /* Get address for each SG */
1289 if (direction == DMA_DEV_TO_MEM)
1290 dst_addr = sg_dma_address(sg);
1291 else
1292 src_addr = sg_dma_address(sg);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001293
Joel Fernandesfd009032013-09-23 18:05:13 -05001294 ret = edma_config_pset(chan, &edesc->pset[i], src_addr,
1295 dst_addr, burst, dev_width,
1296 sg_dma_len(sg), direction);
Vinod Koulb967aec2013-10-30 13:07:18 +05301297 if (ret < 0) {
1298 kfree(edesc);
Joel Fernandesfd009032013-09-23 18:05:13 -05001299 return NULL;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001300 }
1301
Joel Fernandesfd009032013-09-23 18:05:13 -05001302 edesc->absync = ret;
Thomas Gleixnerb6205c32014-04-28 14:18:45 -05001303 edesc->residue += sg_dma_len(sg);
Joel Fernandes6fbe24d2013-08-29 18:05:40 -05001304
1305 /* If this is the last in a current SG set of transactions,
1306 enable interrupts so that next set is processed */
1307 if (!((i+1) % MAX_NR_SG))
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -05001308 edesc->pset[i].param.opt |= TCINTEN;
Joel Fernandes6fbe24d2013-08-29 18:05:40 -05001309
Matt Porterc2dde5f2012-08-22 21:09:34 -04001310 /* If this is the last set, enable completion interrupt flag */
1311 if (i == sg_len - 1)
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -05001312 edesc->pset[i].param.opt |= TCINTEN;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001313 }
Thomas Gleixner740b41f2014-04-28 14:34:11 -05001314 edesc->residue_stat = edesc->residue;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001315
Matt Porterc2dde5f2012-08-22 21:09:34 -04001316 return vchan_tx_prep(&echan->vchan, &edesc->vdesc, tx_flags);
1317}
Matt Porterc2dde5f2012-08-22 21:09:34 -04001318
Lad, Prabhakarb7a4fd52015-02-04 13:03:27 +00001319static struct dma_async_tx_descriptor *edma_prep_dma_memcpy(
Joel Fernandes8cc3e302014-04-18 21:50:33 -05001320 struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
1321 size_t len, unsigned long tx_flags)
1322{
1323 int ret;
1324 struct edma_desc *edesc;
1325 struct device *dev = chan->device->dev;
1326 struct edma_chan *echan = to_edma_chan(chan);
1327
1328 if (unlikely(!echan || !len))
1329 return NULL;
1330
1331 edesc = kzalloc(sizeof(*edesc) + sizeof(edesc->pset[0]), GFP_ATOMIC);
1332 if (!edesc) {
1333 dev_dbg(dev, "Failed to allocate a descriptor\n");
1334 return NULL;
1335 }
1336
1337 edesc->pset_nr = 1;
1338
1339 ret = edma_config_pset(chan, &edesc->pset[0], src, dest, 1,
1340 DMA_SLAVE_BUSWIDTH_4_BYTES, len, DMA_MEM_TO_MEM);
1341 if (ret < 0)
1342 return NULL;
1343
1344 edesc->absync = ret;
1345
1346 /*
1347 * Enable intermediate transfer chaining to re-trigger channel
1348 * on completion of every TR, and enable transfer-completion
1349 * interrupt on completion of the whole transfer.
1350 */
Joel Fernandesb0cce4c2014-04-28 15:30:32 -05001351 edesc->pset[0].param.opt |= ITCCHEN;
1352 edesc->pset[0].param.opt |= TCINTEN;
Joel Fernandes8cc3e302014-04-18 21:50:33 -05001353
1354 return vchan_tx_prep(&echan->vchan, &edesc->vdesc, tx_flags);
1355}
1356
Joel Fernandes50a9c702013-10-31 16:31:23 -05001357static struct dma_async_tx_descriptor *edma_prep_dma_cyclic(
1358 struct dma_chan *chan, dma_addr_t buf_addr, size_t buf_len,
1359 size_t period_len, enum dma_transfer_direction direction,
Laurent Pinchart31c1e5a2014-08-01 12:20:10 +02001360 unsigned long tx_flags)
Joel Fernandes50a9c702013-10-31 16:31:23 -05001361{
1362 struct edma_chan *echan = to_edma_chan(chan);
1363 struct device *dev = chan->device->dev;
1364 struct edma_desc *edesc;
1365 dma_addr_t src_addr, dst_addr;
1366 enum dma_slave_buswidth dev_width;
1367 u32 burst;
1368 int i, ret, nslots;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001369
Joel Fernandes50a9c702013-10-31 16:31:23 -05001370 if (unlikely(!echan || !buf_len || !period_len))
1371 return NULL;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001372
Joel Fernandes50a9c702013-10-31 16:31:23 -05001373 if (direction == DMA_DEV_TO_MEM) {
1374 src_addr = echan->cfg.src_addr;
1375 dst_addr = buf_addr;
1376 dev_width = echan->cfg.src_addr_width;
1377 burst = echan->cfg.src_maxburst;
1378 } else if (direction == DMA_MEM_TO_DEV) {
1379 src_addr = buf_addr;
1380 dst_addr = echan->cfg.dst_addr;
1381 dev_width = echan->cfg.dst_addr_width;
1382 burst = echan->cfg.dst_maxburst;
1383 } else {
Peter Ujfalusie6fad592014-04-14 14:42:05 +03001384 dev_err(dev, "%s: bad direction: %d\n", __func__, direction);
Joel Fernandes50a9c702013-10-31 16:31:23 -05001385 return NULL;
1386 }
1387
1388 if (dev_width == DMA_SLAVE_BUSWIDTH_UNDEFINED) {
Peter Ujfalusic594c892014-04-14 14:42:03 +03001389 dev_err(dev, "%s: Undefined slave buswidth\n", __func__);
Joel Fernandes50a9c702013-10-31 16:31:23 -05001390 return NULL;
1391 }
1392
1393 if (unlikely(buf_len % period_len)) {
1394 dev_err(dev, "Period should be multiple of Buffer length\n");
1395 return NULL;
1396 }
1397
1398 nslots = (buf_len / period_len) + 1;
1399
1400 /*
1401 * Cyclic DMA users such as audio cannot tolerate delays introduced
1402 * by cases where the number of periods is more than the maximum
1403 * number of SGs the EDMA driver can handle at a time. For DMA types
1404 * such as Slave SGs, such delays are tolerable and synchronized,
1405 * but the synchronization is difficult to achieve with Cyclic and
1406 * cannot be guaranteed, so we error out early.
1407 */
1408 if (nslots > MAX_NR_SG)
1409 return NULL;
1410
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001411 edesc = kzalloc(sizeof(*edesc) + nslots * sizeof(edesc->pset[0]),
1412 GFP_ATOMIC);
Joel Fernandes50a9c702013-10-31 16:31:23 -05001413 if (!edesc) {
Peter Ujfalusic594c892014-04-14 14:42:03 +03001414 dev_err(dev, "%s: Failed to allocate a descriptor\n", __func__);
Joel Fernandes50a9c702013-10-31 16:31:23 -05001415 return NULL;
1416 }
1417
1418 edesc->cyclic = 1;
1419 edesc->pset_nr = nslots;
Thomas Gleixner740b41f2014-04-28 14:34:11 -05001420 edesc->residue = edesc->residue_stat = buf_len;
Thomas Gleixnerc2da2342014-04-28 14:29:57 -05001421 edesc->direction = direction;
Thomas Gleixner740b41f2014-04-28 14:34:11 -05001422 edesc->echan = echan;
Joel Fernandes50a9c702013-10-31 16:31:23 -05001423
Peter Ujfalusi83bb3122014-04-14 14:42:02 +03001424 dev_dbg(dev, "%s: channel=%d nslots=%d period_len=%zu buf_len=%zu\n",
1425 __func__, echan->ch_num, nslots, period_len, buf_len);
Joel Fernandes50a9c702013-10-31 16:31:23 -05001426
1427 for (i = 0; i < nslots; i++) {
1428 /* Allocate a PaRAM slot, if needed */
1429 if (echan->slot[i] < 0) {
1430 echan->slot[i] =
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001431 edma_alloc_slot(echan->ecc, EDMA_SLOT_ANY);
Joel Fernandes50a9c702013-10-31 16:31:23 -05001432 if (echan->slot[i] < 0) {
Christian Engelmayere3ddc972013-12-30 20:48:39 +01001433 kfree(edesc);
Peter Ujfalusic594c892014-04-14 14:42:03 +03001434 dev_err(dev, "%s: Failed to allocate slot\n",
1435 __func__);
Joel Fernandes50a9c702013-10-31 16:31:23 -05001436 return NULL;
1437 }
1438 }
1439
1440 if (i == nslots - 1) {
1441 memcpy(&edesc->pset[i], &edesc->pset[0],
1442 sizeof(edesc->pset[0]));
1443 break;
1444 }
1445
1446 ret = edma_config_pset(chan, &edesc->pset[i], src_addr,
1447 dst_addr, burst, dev_width, period_len,
1448 direction);
Christian Engelmayere3ddc972013-12-30 20:48:39 +01001449 if (ret < 0) {
1450 kfree(edesc);
Joel Fernandes50a9c702013-10-31 16:31:23 -05001451 return NULL;
Christian Engelmayere3ddc972013-12-30 20:48:39 +01001452 }
Joel Fernandes50a9c702013-10-31 16:31:23 -05001453
1454 if (direction == DMA_DEV_TO_MEM)
1455 dst_addr += period_len;
1456 else
1457 src_addr += period_len;
1458
Peter Ujfalusi83bb3122014-04-14 14:42:02 +03001459 dev_vdbg(dev, "%s: Configure period %d of buf:\n", __func__, i);
1460 dev_vdbg(dev,
Joel Fernandes50a9c702013-10-31 16:31:23 -05001461 "\n pset[%d]:\n"
1462 " chnum\t%d\n"
1463 " slot\t%d\n"
1464 " opt\t%08x\n"
1465 " src\t%08x\n"
1466 " dst\t%08x\n"
1467 " abcnt\t%08x\n"
1468 " ccnt\t%08x\n"
1469 " bidx\t%08x\n"
1470 " cidx\t%08x\n"
1471 " lkrld\t%08x\n",
1472 i, echan->ch_num, echan->slot[i],
Thomas Gleixnerb5088ad2014-04-28 14:23:55 -05001473 edesc->pset[i].param.opt,
1474 edesc->pset[i].param.src,
1475 edesc->pset[i].param.dst,
1476 edesc->pset[i].param.a_b_cnt,
1477 edesc->pset[i].param.ccnt,
1478 edesc->pset[i].param.src_dst_bidx,
1479 edesc->pset[i].param.src_dst_cidx,
1480 edesc->pset[i].param.link_bcntrld);
Joel Fernandes50a9c702013-10-31 16:31:23 -05001481
1482 edesc->absync = ret;
1483
1484 /*
Peter Ujfalusia1f146f2014-07-16 15:29:21 +03001485 * Enable period interrupt only if it is requested
Joel Fernandes50a9c702013-10-31 16:31:23 -05001486 */
Peter Ujfalusia1f146f2014-07-16 15:29:21 +03001487 if (tx_flags & DMA_PREP_INTERRUPT)
1488 edesc->pset[i].param.opt |= TCINTEN;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001489 }
1490
Peter Ujfalusi8e8805d2014-07-08 13:46:38 +03001491 /* Place the cyclic channel to highest priority queue */
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001492 edma_assign_channel_eventq(echan->ecc, echan->ch_num, EVENTQ_0);
Peter Ujfalusi8e8805d2014-07-08 13:46:38 +03001493
Matt Porterc2dde5f2012-08-22 21:09:34 -04001494 return vchan_tx_prep(&echan->vchan, &edesc->vdesc, tx_flags);
1495}
1496
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001497static void edma_completion_handler(struct edma_chan *echan)
Matt Porterc2dde5f2012-08-22 21:09:34 -04001498{
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001499 struct edma_cc *ecc = echan->ecc;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001500 struct device *dev = echan->vchan.chan.device->dev;
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001501 struct edma_desc *edesc = echan->edesc;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001502
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001503 if (!edesc)
1504 return;
Joel Fernandes50a9c702013-10-31 16:31:23 -05001505
Peter Ujfalusi8fa7ff42015-10-14 14:42:45 +03001506 spin_lock(&echan->vchan.lock);
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001507 if (edesc->cyclic) {
1508 vchan_cyclic_callback(&edesc->vdesc);
1509 spin_unlock(&echan->vchan.lock);
1510 return;
1511 } else if (edesc->processed == edesc->pset_nr) {
1512 edesc->residue = 0;
1513 edma_stop(ecc, echan->ch_num);
1514 vchan_cookie_complete(&edesc->vdesc);
1515 echan->edesc = NULL;
Thomas Gleixner740b41f2014-04-28 14:34:11 -05001516
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001517 dev_dbg(dev, "Transfer completed on channel %d\n",
1518 echan->ch_num);
1519 } else {
1520 dev_dbg(dev, "Sub transfer completed on channel %d\n",
1521 echan->ch_num);
Peter Ujfalusi8fa7ff42015-10-14 14:42:45 +03001522
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001523 edma_pause(ecc, echan->ch_num);
Joel Fernandesc5f47992013-08-29 18:05:43 -05001524
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001525 /* Update statistics for tx_status */
1526 edesc->residue -= edesc->sg_len;
1527 edesc->residue_stat = edesc->residue;
1528 edesc->processed_stat = edesc->processed;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001529 }
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001530 edma_execute(echan);
1531
Peter Ujfalusi8fa7ff42015-10-14 14:42:45 +03001532 spin_unlock(&echan->vchan.lock);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001533}
1534
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001535/* eDMA interrupt handler */
1536static irqreturn_t dma_irq_handler(int irq, void *data)
1537{
1538 struct edma_cc *ecc = data;
1539 int ctlr;
1540 u32 sh_ier;
1541 u32 sh_ipr;
1542 u32 bank;
1543
1544 ctlr = ecc->id;
1545 if (ctlr < 0)
1546 return IRQ_NONE;
1547
1548 dev_vdbg(ecc->dev, "dma_irq_handler\n");
1549
1550 sh_ipr = edma_shadow0_read_array(ecc, SH_IPR, 0);
1551 if (!sh_ipr) {
1552 sh_ipr = edma_shadow0_read_array(ecc, SH_IPR, 1);
1553 if (!sh_ipr)
1554 return IRQ_NONE;
1555 sh_ier = edma_shadow0_read_array(ecc, SH_IER, 1);
1556 bank = 1;
1557 } else {
1558 sh_ier = edma_shadow0_read_array(ecc, SH_IER, 0);
1559 bank = 0;
1560 }
1561
1562 do {
1563 u32 slot;
1564 u32 channel;
1565
1566 slot = __ffs(sh_ipr);
1567 sh_ipr &= ~(BIT(slot));
1568
1569 if (sh_ier & BIT(slot)) {
1570 channel = (bank << 5) | slot;
1571 /* Clear the corresponding IPR bits */
1572 edma_shadow0_write_array(ecc, SH_ICR, bank, BIT(slot));
1573 edma_completion_handler(&ecc->slave_chans[channel]);
1574 }
1575 } while (sh_ipr);
1576
1577 edma_shadow0_write(ecc, SH_IEVAL, 1);
1578 return IRQ_HANDLED;
1579}
1580
1581static void edma_error_handler(struct edma_chan *echan)
1582{
1583 struct edma_cc *ecc = echan->ecc;
1584 struct device *dev = echan->vchan.chan.device->dev;
1585 struct edmacc_param p;
1586
1587 if (!echan->edesc)
1588 return;
1589
1590 spin_lock(&echan->vchan.lock);
1591
1592 edma_read_slot(ecc, echan->slot[0], &p);
1593 /*
1594 * Issue later based on missed flag which will be sure
1595 * to happen as:
1596 * (1) we finished transmitting an intermediate slot and
1597 * edma_execute is coming up.
1598 * (2) or we finished current transfer and issue will
1599 * call edma_execute.
1600 *
1601 * Important note: issuing can be dangerous here and
1602 * lead to some nasty recursion when we are in a NULL
1603 * slot. So we avoid doing so and set the missed flag.
1604 */
1605 if (p.a_b_cnt == 0 && p.ccnt == 0) {
1606 dev_dbg(dev, "Error on null slot, setting miss\n");
1607 echan->missed = 1;
1608 } else {
1609 /*
1610 * The slot is already programmed but the event got
1611 * missed, so its safe to issue it here.
1612 */
1613 dev_dbg(dev, "Missed event, TRIGGERING\n");
1614 edma_clean_channel(ecc, echan->ch_num);
1615 edma_stop(ecc, echan->ch_num);
1616 edma_start(ecc, echan->ch_num);
1617 edma_trigger_channel(ecc, echan->ch_num);
1618 }
1619 spin_unlock(&echan->vchan.lock);
1620}
1621
Peter Ujfalusi7c3b8b32015-10-14 14:43:02 +03001622static inline bool edma_error_pending(struct edma_cc *ecc)
1623{
1624 if (edma_read_array(ecc, EDMA_EMR, 0) ||
1625 edma_read_array(ecc, EDMA_EMR, 1) ||
1626 edma_read(ecc, EDMA_QEMR) || edma_read(ecc, EDMA_CCERR))
1627 return true;
1628
1629 return false;
1630}
1631
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001632/* eDMA error interrupt handler */
1633static irqreturn_t dma_ccerr_handler(int irq, void *data)
1634{
1635 struct edma_cc *ecc = data;
Peter Ujfalusie4402a12015-10-14 14:43:03 +03001636 int i, j;
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001637 int ctlr;
1638 unsigned int cnt = 0;
Peter Ujfalusie4402a12015-10-14 14:43:03 +03001639 unsigned int val;
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001640
1641 ctlr = ecc->id;
1642 if (ctlr < 0)
1643 return IRQ_NONE;
1644
1645 dev_vdbg(ecc->dev, "dma_ccerr_handler\n");
1646
Peter Ujfalusi7c3b8b32015-10-14 14:43:02 +03001647 if (!edma_error_pending(ecc))
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001648 return IRQ_NONE;
1649
1650 while (1) {
Peter Ujfalusie4402a12015-10-14 14:43:03 +03001651 /* Event missed register(s) */
1652 for (j = 0; j < 2; j++) {
1653 unsigned long emr;
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001654
Peter Ujfalusie4402a12015-10-14 14:43:03 +03001655 val = edma_read_array(ecc, EDMA_EMR, j);
1656 if (!val)
1657 continue;
1658
1659 dev_dbg(ecc->dev, "EMR%d 0x%08x\n", j, val);
1660 emr = val;
1661 for (i = find_next_bit(&emr, 32, 0); i < 32;
1662 i = find_next_bit(&emr, 32, i + 1)) {
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001663 int k = (j << 5) + i;
1664
Peter Ujfalusie4402a12015-10-14 14:43:03 +03001665 /* Clear the corresponding EMR bits */
1666 edma_write_array(ecc, EDMA_EMCR, j, BIT(i));
1667 /* Clear any SER */
1668 edma_shadow0_write_array(ecc, SH_SECR, j,
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001669 BIT(i));
Peter Ujfalusie4402a12015-10-14 14:43:03 +03001670 edma_error_handler(&ecc->slave_chans[k]);
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001671 }
1672 }
Peter Ujfalusie4402a12015-10-14 14:43:03 +03001673
1674 val = edma_read(ecc, EDMA_QEMR);
1675 if (val) {
1676 dev_dbg(ecc->dev, "QEMR 0x%02x\n", val);
1677 /* Not reported, just clear the interrupt reason. */
1678 edma_write(ecc, EDMA_QEMCR, val);
1679 edma_shadow0_write(ecc, SH_QSECR, val);
1680 }
1681
1682 val = edma_read(ecc, EDMA_CCERR);
1683 if (val) {
1684 dev_warn(ecc->dev, "CCERR 0x%08x\n", val);
1685 /* Not reported, just clear the interrupt reason. */
1686 edma_write(ecc, EDMA_CCERRCLR, val);
1687 }
1688
Peter Ujfalusi7c3b8b32015-10-14 14:43:02 +03001689 if (!edma_error_pending(ecc))
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001690 break;
1691 cnt++;
1692 if (cnt > 10)
1693 break;
1694 }
1695 edma_write(ecc, EDMA_EEVAL, 1);
1696 return IRQ_HANDLED;
1697}
1698
Matt Porterc2dde5f2012-08-22 21:09:34 -04001699/* Alloc channel resources */
1700static int edma_alloc_chan_resources(struct dma_chan *chan)
1701{
1702 struct edma_chan *echan = to_edma_chan(chan);
1703 struct device *dev = chan->device->dev;
1704 int ret;
1705 int a_ch_num;
1706 LIST_HEAD(descs);
1707
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03001708 a_ch_num = edma_alloc_channel(echan->ecc, echan->ch_num, EVENTQ_DEFAULT);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001709
1710 if (a_ch_num < 0) {
1711 ret = -ENODEV;
1712 goto err_no_chan;
1713 }
1714
1715 if (a_ch_num != echan->ch_num) {
1716 dev_err(dev, "failed to allocate requested channel %u:%u\n",
1717 EDMA_CTLR(echan->ch_num),
1718 EDMA_CHAN_SLOT(echan->ch_num));
1719 ret = -ENODEV;
1720 goto err_wrong_chan;
1721 }
1722
1723 echan->alloced = true;
Peter Ujfalusie4e886c2015-10-14 14:43:06 +03001724 echan->slot[0] = edma_alloc_slot(echan->ecc, echan->ch_num);
1725 if (echan->slot[0] < 0) {
1726 dev_err(dev, "Entry slot allocation failed for channel %u\n",
1727 EDMA_CHAN_SLOT(echan->ch_num));
1728 goto err_wrong_chan;
1729 }
1730
1731 /* Set up channel -> slot mapping for the entry slot */
1732 edma_set_chmap(echan->ecc, echan->ch_num, echan->slot[0]);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001733
Peter Ujfalusi9aac9092014-04-24 10:29:50 +03001734 dev_dbg(dev, "allocated channel %d for %u:%u\n", echan->ch_num,
Ezequiel Garcia0e772c62013-12-13 11:06:18 -03001735 EDMA_CTLR(echan->ch_num), EDMA_CHAN_SLOT(echan->ch_num));
Matt Porterc2dde5f2012-08-22 21:09:34 -04001736
1737 return 0;
1738
1739err_wrong_chan:
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001740 edma_free_channel(echan->ecc, a_ch_num);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001741err_no_chan:
1742 return ret;
1743}
1744
1745/* Free channel resources */
1746static void edma_free_chan_resources(struct dma_chan *chan)
1747{
1748 struct edma_chan *echan = to_edma_chan(chan);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001749 int i;
1750
1751 /* Terminate transfers */
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001752 edma_stop(echan->ecc, echan->ch_num);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001753
1754 vchan_free_chan_resources(&echan->vchan);
1755
1756 /* Free EDMA PaRAM slots */
Peter Ujfalusie4e886c2015-10-14 14:43:06 +03001757 for (i = 0; i < EDMA_MAX_SLOTS; i++) {
Matt Porterc2dde5f2012-08-22 21:09:34 -04001758 if (echan->slot[i] >= 0) {
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001759 edma_free_slot(echan->ecc, echan->slot[i]);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001760 echan->slot[i] = -1;
1761 }
1762 }
1763
Peter Ujfalusie4e886c2015-10-14 14:43:06 +03001764 /* Set entry slot to the dummy slot */
1765 edma_set_chmap(echan->ecc, echan->ch_num, echan->ecc->dummy_slot);
1766
Matt Porterc2dde5f2012-08-22 21:09:34 -04001767 /* Free EDMA channel */
1768 if (echan->alloced) {
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001769 edma_free_channel(echan->ecc, echan->ch_num);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001770 echan->alloced = false;
1771 }
1772
Peter Ujfalusi907f74a2015-10-14 14:42:56 +03001773 dev_dbg(chan->device->dev, "freeing channel for %u\n", echan->ch_num);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001774}
1775
1776/* Send pending descriptor to hardware */
1777static void edma_issue_pending(struct dma_chan *chan)
1778{
1779 struct edma_chan *echan = to_edma_chan(chan);
1780 unsigned long flags;
1781
1782 spin_lock_irqsave(&echan->vchan.lock, flags);
1783 if (vchan_issue_pending(&echan->vchan) && !echan->edesc)
1784 edma_execute(echan);
1785 spin_unlock_irqrestore(&echan->vchan.lock, flags);
1786}
1787
Thomas Gleixner740b41f2014-04-28 14:34:11 -05001788static u32 edma_residue(struct edma_desc *edesc)
1789{
1790 bool dst = edesc->direction == DMA_DEV_TO_MEM;
1791 struct edma_pset *pset = edesc->pset;
1792 dma_addr_t done, pos;
1793 int i;
1794
1795 /*
1796 * We always read the dst/src position from the first RamPar
1797 * pset. That's the one which is active now.
1798 */
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001799 pos = edma_get_position(edesc->echan->ecc, edesc->echan->slot[0], dst);
Thomas Gleixner740b41f2014-04-28 14:34:11 -05001800
1801 /*
1802 * Cyclic is simple. Just subtract pset[0].addr from pos.
1803 *
1804 * We never update edesc->residue in the cyclic case, so we
1805 * can tell the remaining room to the end of the circular
1806 * buffer.
1807 */
1808 if (edesc->cyclic) {
1809 done = pos - pset->addr;
1810 edesc->residue_stat = edesc->residue - done;
1811 return edesc->residue_stat;
1812 }
1813
1814 /*
1815 * For SG operation we catch up with the last processed
1816 * status.
1817 */
1818 pset += edesc->processed_stat;
1819
1820 for (i = edesc->processed_stat; i < edesc->processed; i++, pset++) {
1821 /*
1822 * If we are inside this pset address range, we know
1823 * this is the active one. Get the current delta and
1824 * stop walking the psets.
1825 */
1826 if (pos >= pset->addr && pos < pset->addr + pset->len)
1827 return edesc->residue_stat - (pos - pset->addr);
1828
1829 /* Otherwise mark it done and update residue_stat. */
1830 edesc->processed_stat++;
1831 edesc->residue_stat -= pset->len;
1832 }
1833 return edesc->residue_stat;
1834}
1835
Matt Porterc2dde5f2012-08-22 21:09:34 -04001836/* Check request completion status */
1837static enum dma_status edma_tx_status(struct dma_chan *chan,
1838 dma_cookie_t cookie,
1839 struct dma_tx_state *txstate)
1840{
1841 struct edma_chan *echan = to_edma_chan(chan);
1842 struct virt_dma_desc *vdesc;
1843 enum dma_status ret;
1844 unsigned long flags;
1845
1846 ret = dma_cookie_status(chan, cookie, txstate);
Vinod Koul9d386ec2013-10-16 13:42:15 +05301847 if (ret == DMA_COMPLETE || !txstate)
Matt Porterc2dde5f2012-08-22 21:09:34 -04001848 return ret;
1849
1850 spin_lock_irqsave(&echan->vchan.lock, flags);
Thomas Gleixnerde135932014-04-28 14:19:51 -05001851 if (echan->edesc && echan->edesc->vdesc.tx.cookie == cookie)
Thomas Gleixner740b41f2014-04-28 14:34:11 -05001852 txstate->residue = edma_residue(echan->edesc);
Thomas Gleixnerde135932014-04-28 14:19:51 -05001853 else if ((vdesc = vchan_find_desc(&echan->vchan, cookie)))
1854 txstate->residue = to_edma_desc(&vdesc->tx)->residue;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001855 spin_unlock_irqrestore(&echan->vchan.lock, flags);
1856
1857 return ret;
1858}
1859
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001860static void __init edma_chan_init(struct edma_cc *ecc, struct dma_device *dma,
Matt Porterc2dde5f2012-08-22 21:09:34 -04001861 struct edma_chan *echans)
1862{
1863 int i, j;
1864
Peter Ujfalusicb782052015-10-14 14:42:54 +03001865 for (i = 0; i < ecc->num_channels; i++) {
Matt Porterc2dde5f2012-08-22 21:09:34 -04001866 struct edma_chan *echan = &echans[i];
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001867 echan->ch_num = EDMA_CTLR_CHAN(ecc->id, i);
Matt Porterc2dde5f2012-08-22 21:09:34 -04001868 echan->ecc = ecc;
1869 echan->vchan.desc_free = edma_desc_free;
1870
1871 vchan_init(&echan->vchan, dma);
1872
1873 INIT_LIST_HEAD(&echan->node);
1874 for (j = 0; j < EDMA_MAX_SLOTS; j++)
1875 echan->slot[j] = -1;
1876 }
1877}
1878
Peter Ujfalusi2c88ee62014-04-14 14:42:01 +03001879#define EDMA_DMA_BUSWIDTHS (BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) | \
1880 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) | \
Peter Ujfalusie4a899d2014-07-03 07:51:56 +03001881 BIT(DMA_SLAVE_BUSWIDTH_3_BYTES) | \
Peter Ujfalusi2c88ee62014-04-14 14:42:01 +03001882 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES))
1883
Matt Porterc2dde5f2012-08-22 21:09:34 -04001884static void edma_dma_init(struct edma_cc *ecc, struct dma_device *dma,
1885 struct device *dev)
1886{
1887 dma->device_prep_slave_sg = edma_prep_slave_sg;
Joel Fernandes50a9c702013-10-31 16:31:23 -05001888 dma->device_prep_dma_cyclic = edma_prep_dma_cyclic;
Joel Fernandes8cc3e302014-04-18 21:50:33 -05001889 dma->device_prep_dma_memcpy = edma_prep_dma_memcpy;
Matt Porterc2dde5f2012-08-22 21:09:34 -04001890 dma->device_alloc_chan_resources = edma_alloc_chan_resources;
1891 dma->device_free_chan_resources = edma_free_chan_resources;
1892 dma->device_issue_pending = edma_issue_pending;
1893 dma->device_tx_status = edma_tx_status;
Maxime Ripardaa7c09b2014-11-17 14:42:13 +01001894 dma->device_config = edma_slave_config;
1895 dma->device_pause = edma_dma_pause;
1896 dma->device_resume = edma_dma_resume;
1897 dma->device_terminate_all = edma_terminate_all;
Maxime Ripard9f59cd02014-11-17 14:42:47 +01001898
1899 dma->src_addr_widths = EDMA_DMA_BUSWIDTHS;
1900 dma->dst_addr_widths = EDMA_DMA_BUSWIDTHS;
1901 dma->directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
1902 dma->residue_granularity = DMA_RESIDUE_GRANULARITY_BURST;
1903
Matt Porterc2dde5f2012-08-22 21:09:34 -04001904 dma->dev = dev;
1905
Joel Fernandes8cc3e302014-04-18 21:50:33 -05001906 /*
1907 * code using dma memcpy must make sure alignment of
1908 * length is at dma->copy_align boundary.
1909 */
Maxime Ripard77a68e52015-07-20 10:41:32 +02001910 dma->copy_align = DMAENGINE_ALIGN_4_BYTES;
Joel Fernandes8cc3e302014-04-18 21:50:33 -05001911
Matt Porterc2dde5f2012-08-22 21:09:34 -04001912 INIT_LIST_HEAD(&dma->channels);
1913}
1914
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001915static int edma_setup_from_hw(struct device *dev, struct edma_soc_info *pdata,
1916 struct edma_cc *ecc)
1917{
1918 int i;
1919 u32 value, cccfg;
1920 s8 (*queue_priority_map)[2];
1921
1922 /* Decode the eDMA3 configuration from CCCFG register */
1923 cccfg = edma_read(ecc, EDMA_CCCFG);
1924
1925 value = GET_NUM_REGN(cccfg);
1926 ecc->num_region = BIT(value);
1927
1928 value = GET_NUM_DMACH(cccfg);
1929 ecc->num_channels = BIT(value + 1);
1930
1931 value = GET_NUM_PAENTRY(cccfg);
1932 ecc->num_slots = BIT(value + 4);
1933
1934 value = GET_NUM_EVQUE(cccfg);
1935 ecc->num_tc = value + 1;
1936
Peter Ujfalusi4ab54f62015-10-14 14:43:04 +03001937 ecc->chmap_exist = (cccfg & CHMAP_EXIST) ? true : false;
1938
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001939 dev_dbg(dev, "eDMA3 CC HW configuration (cccfg: 0x%08x):\n", cccfg);
1940 dev_dbg(dev, "num_region: %u\n", ecc->num_region);
1941 dev_dbg(dev, "num_channels: %u\n", ecc->num_channels);
1942 dev_dbg(dev, "num_slots: %u\n", ecc->num_slots);
1943 dev_dbg(dev, "num_tc: %u\n", ecc->num_tc);
Peter Ujfalusi4ab54f62015-10-14 14:43:04 +03001944 dev_dbg(dev, "chmap_exist: %s\n", ecc->chmap_exist ? "yes" : "no");
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001945
1946 /* Nothing need to be done if queue priority is provided */
1947 if (pdata->queue_priority_mapping)
1948 return 0;
1949
1950 /*
1951 * Configure TC/queue priority as follows:
1952 * Q0 - priority 0
1953 * Q1 - priority 1
1954 * Q2 - priority 2
1955 * ...
1956 * The meaning of priority numbers: 0 highest priority, 7 lowest
1957 * priority. So Q0 is the highest priority queue and the last queue has
1958 * the lowest priority.
1959 */
Peter Ujfalusi547c6e22015-10-14 14:42:55 +03001960 queue_priority_map = devm_kcalloc(dev, ecc->num_tc + 1, sizeof(s8),
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001961 GFP_KERNEL);
1962 if (!queue_priority_map)
1963 return -ENOMEM;
1964
1965 for (i = 0; i < ecc->num_tc; i++) {
1966 queue_priority_map[i][0] = i;
1967 queue_priority_map[i][1] = i;
1968 }
1969 queue_priority_map[i][0] = -1;
1970 queue_priority_map[i][1] = -1;
1971
1972 pdata->queue_priority_mapping = queue_priority_map;
1973 /* Default queue has the lowest priority */
1974 pdata->default_queue = i - 1;
1975
1976 return 0;
1977}
1978
1979#if IS_ENABLED(CONFIG_OF)
1980static int edma_xbar_event_map(struct device *dev, struct edma_soc_info *pdata,
1981 size_t sz)
1982{
1983 const char pname[] = "ti,edma-xbar-event-map";
1984 struct resource res;
1985 void __iomem *xbar;
1986 s16 (*xbar_chans)[2];
1987 size_t nelm = sz / sizeof(s16);
1988 u32 shift, offset, mux;
1989 int ret, i;
1990
Peter Ujfalusi547c6e22015-10-14 14:42:55 +03001991 xbar_chans = devm_kcalloc(dev, nelm + 2, sizeof(s16), GFP_KERNEL);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03001992 if (!xbar_chans)
1993 return -ENOMEM;
1994
1995 ret = of_address_to_resource(dev->of_node, 1, &res);
1996 if (ret)
1997 return -ENOMEM;
1998
1999 xbar = devm_ioremap(dev, res.start, resource_size(&res));
2000 if (!xbar)
2001 return -ENOMEM;
2002
2003 ret = of_property_read_u16_array(dev->of_node, pname, (u16 *)xbar_chans,
2004 nelm);
2005 if (ret)
2006 return -EIO;
2007
2008 /* Invalidate last entry for the other user of this mess */
2009 nelm >>= 1;
2010 xbar_chans[nelm][0] = -1;
2011 xbar_chans[nelm][1] = -1;
2012
2013 for (i = 0; i < nelm; i++) {
2014 shift = (xbar_chans[i][1] & 0x03) << 3;
2015 offset = xbar_chans[i][1] & 0xfffffffc;
2016 mux = readl(xbar + offset);
2017 mux &= ~(0xff << shift);
2018 mux |= xbar_chans[i][0] << shift;
2019 writel(mux, (xbar + offset));
2020 }
2021
2022 pdata->xbar_chans = (const s16 (*)[2]) xbar_chans;
2023 return 0;
2024}
2025
2026static int edma_of_parse_dt(struct device *dev, struct edma_soc_info *pdata)
2027{
2028 int ret = 0;
2029 struct property *prop;
2030 size_t sz;
2031 struct edma_rsv_info *rsv_info;
2032
2033 rsv_info = devm_kzalloc(dev, sizeof(struct edma_rsv_info), GFP_KERNEL);
2034 if (!rsv_info)
2035 return -ENOMEM;
2036 pdata->rsv = rsv_info;
2037
2038 prop = of_find_property(dev->of_node, "ti,edma-xbar-event-map", &sz);
2039 if (prop)
2040 ret = edma_xbar_event_map(dev, pdata, sz);
2041
2042 return ret;
2043}
2044
2045static struct edma_soc_info *edma_setup_info_from_dt(struct device *dev)
2046{
2047 struct edma_soc_info *info;
2048 int ret;
2049
2050 info = devm_kzalloc(dev, sizeof(struct edma_soc_info), GFP_KERNEL);
2051 if (!info)
2052 return ERR_PTR(-ENOMEM);
2053
2054 ret = edma_of_parse_dt(dev, info);
2055 if (ret)
2056 return ERR_PTR(ret);
2057
2058 return info;
2059}
2060#else
2061static struct edma_soc_info *edma_setup_info_from_dt(struct device *dev)
2062{
2063 return ERR_PTR(-EINVAL);
2064}
2065#endif
2066
Bill Pemberton463a1f82012-11-19 13:22:55 -05002067static int edma_probe(struct platform_device *pdev)
Matt Porterc2dde5f2012-08-22 21:09:34 -04002068{
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002069 struct edma_soc_info *info = pdev->dev.platform_data;
2070 s8 (*queue_priority_mapping)[2];
2071 int i, off, ln;
2072 const s16 (*rsv_chans)[2];
2073 const s16 (*rsv_slots)[2];
2074 const s16 (*xbar_chans)[2];
2075 int irq;
2076 char *irq_name;
2077 struct resource *mem;
2078 struct device_node *node = pdev->dev.of_node;
2079 struct device *dev = &pdev->dev;
2080 struct edma_cc *ecc;
Matt Porterc2dde5f2012-08-22 21:09:34 -04002081 int ret;
2082
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002083 if (node) {
2084 info = edma_setup_info_from_dt(dev);
2085 if (IS_ERR(info)) {
2086 dev_err(dev, "failed to get DT data\n");
2087 return PTR_ERR(info);
2088 }
2089 }
2090
2091 if (!info)
2092 return -ENODEV;
2093
2094 pm_runtime_enable(dev);
2095 ret = pm_runtime_get_sync(dev);
2096 if (ret < 0) {
2097 dev_err(dev, "pm_runtime_get_sync() failed\n");
2098 return ret;
2099 }
2100
Peter Ujfalusi907f74a2015-10-14 14:42:56 +03002101 ret = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(32));
Russell King94cb0e72013-06-27 13:45:16 +01002102 if (ret)
2103 return ret;
2104
Peter Ujfalusi907f74a2015-10-14 14:42:56 +03002105 ecc = devm_kzalloc(dev, sizeof(*ecc), GFP_KERNEL);
Matt Porterc2dde5f2012-08-22 21:09:34 -04002106 if (!ecc) {
Peter Ujfalusi907f74a2015-10-14 14:42:56 +03002107 dev_err(dev, "Can't allocate controller\n");
Matt Porterc2dde5f2012-08-22 21:09:34 -04002108 return -ENOMEM;
2109 }
2110
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002111 ecc->dev = dev;
2112 ecc->id = pdev->id;
2113 /* When booting with DT the pdev->id is -1 */
2114 if (ecc->id < 0)
2115 ecc->id = 0;
Peter Ujfalusica304fa2015-10-14 14:42:49 +03002116
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002117 mem = platform_get_resource_byname(pdev, IORESOURCE_MEM, "edma3_cc");
2118 if (!mem) {
2119 dev_dbg(dev, "mem resource not found, using index 0\n");
2120 mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2121 if (!mem) {
2122 dev_err(dev, "no mem resource?\n");
2123 return -ENODEV;
2124 }
2125 }
2126 ecc->base = devm_ioremap_resource(dev, mem);
2127 if (IS_ERR(ecc->base))
2128 return PTR_ERR(ecc->base);
Peter Ujfalusib2c843a2015-10-14 14:42:50 +03002129
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002130 platform_set_drvdata(pdev, ecc);
2131
2132 /* Get eDMA3 configuration from IP */
2133 ret = edma_setup_from_hw(dev, info, ecc);
2134 if (ret)
2135 return ret;
2136
Peter Ujfalusicb782052015-10-14 14:42:54 +03002137 /* Allocate memory based on the information we got from the IP */
2138 ecc->slave_chans = devm_kcalloc(dev, ecc->num_channels,
2139 sizeof(*ecc->slave_chans), GFP_KERNEL);
2140 if (!ecc->slave_chans)
2141 return -ENOMEM;
2142
Peter Ujfalusi7a73b132015-10-14 14:43:05 +03002143 ecc->channel_unused = devm_kcalloc(dev,
2144 BITS_TO_LONGS(ecc->num_channels),
2145 sizeof(unsigned long), GFP_KERNEL);
2146 if (!ecc->channel_unused)
Peter Ujfalusicb782052015-10-14 14:42:54 +03002147 return -ENOMEM;
2148
Peter Ujfalusi7a73b132015-10-14 14:43:05 +03002149 ecc->slot_inuse = devm_kcalloc(dev, BITS_TO_LONGS(ecc->num_slots),
Peter Ujfalusicb782052015-10-14 14:42:54 +03002150 sizeof(unsigned long), GFP_KERNEL);
Peter Ujfalusi7a73b132015-10-14 14:43:05 +03002151 if (!ecc->slot_inuse)
Peter Ujfalusicb782052015-10-14 14:42:54 +03002152 return -ENOMEM;
2153
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002154 ecc->default_queue = info->default_queue;
2155
2156 for (i = 0; i < ecc->num_slots; i++)
2157 edma_write_slot(ecc, i, &dummy_paramset);
2158
2159 /* Mark all channels as unused */
Peter Ujfalusi7a73b132015-10-14 14:43:05 +03002160 memset(ecc->channel_unused, 0xff, sizeof(ecc->channel_unused));
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002161
2162 if (info->rsv) {
2163 /* Clear the reserved channels in unused list */
2164 rsv_chans = info->rsv->rsv_chans;
2165 if (rsv_chans) {
2166 for (i = 0; rsv_chans[i][0] != -1; i++) {
2167 off = rsv_chans[i][0];
2168 ln = rsv_chans[i][1];
Peter Ujfalusi7a73b132015-10-14 14:43:05 +03002169 clear_bits(off, ln, ecc->channel_unused);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002170 }
2171 }
2172
2173 /* Set the reserved slots in inuse list */
2174 rsv_slots = info->rsv->rsv_slots;
2175 if (rsv_slots) {
2176 for (i = 0; rsv_slots[i][0] != -1; i++) {
2177 off = rsv_slots[i][0];
2178 ln = rsv_slots[i][1];
Peter Ujfalusi7a73b132015-10-14 14:43:05 +03002179 set_bits(off, ln, ecc->slot_inuse);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002180 }
2181 }
2182 }
2183
2184 /* Clear the xbar mapped channels in unused list */
2185 xbar_chans = info->xbar_chans;
2186 if (xbar_chans) {
2187 for (i = 0; xbar_chans[i][1] != -1; i++) {
2188 off = xbar_chans[i][1];
Peter Ujfalusi7a73b132015-10-14 14:43:05 +03002189 clear_bits(off, 1, ecc->channel_unused);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002190 }
2191 }
2192
2193 irq = platform_get_irq_byname(pdev, "edma3_ccint");
2194 if (irq < 0 && node)
2195 irq = irq_of_parse_and_map(node, 0);
2196
2197 if (irq >= 0) {
2198 irq_name = devm_kasprintf(dev, GFP_KERNEL, "%s_ccint",
2199 dev_name(dev));
2200 ret = devm_request_irq(dev, irq, dma_irq_handler, 0, irq_name,
2201 ecc);
2202 if (ret) {
2203 dev_err(dev, "CCINT (%d) failed --> %d\n", irq, ret);
2204 return ret;
2205 }
2206 }
2207
2208 irq = platform_get_irq_byname(pdev, "edma3_ccerrint");
2209 if (irq < 0 && node)
2210 irq = irq_of_parse_and_map(node, 2);
2211
2212 if (irq >= 0) {
2213 irq_name = devm_kasprintf(dev, GFP_KERNEL, "%s_ccerrint",
2214 dev_name(dev));
2215 ret = devm_request_irq(dev, irq, dma_ccerr_handler, 0, irq_name,
2216 ecc);
2217 if (ret) {
2218 dev_err(dev, "CCERRINT (%d) failed --> %d\n", irq, ret);
2219 return ret;
2220 }
2221 }
2222
Peter Ujfalusie4e886c2015-10-14 14:43:06 +03002223 ecc->dummy_slot = edma_alloc_slot(ecc, EDMA_SLOT_ANY);
2224 if (ecc->dummy_slot < 0) {
2225 dev_err(dev, "Can't allocate PaRAM dummy slot\n");
2226 return ecc->dummy_slot;
2227 }
2228
2229 for (i = 0; i < ecc->num_channels; i++) {
2230 /* Assign all channels to the default queue */
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002231 edma_map_dmach_to_queue(ecc, i, info->default_queue);
Peter Ujfalusie4e886c2015-10-14 14:43:06 +03002232 /* Set entry slot to the dummy slot */
2233 edma_set_chmap(ecc, i, ecc->dummy_slot);
2234 }
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002235
2236 queue_priority_mapping = info->queue_priority_mapping;
2237
2238 /* Event queue priority mapping */
2239 for (i = 0; queue_priority_mapping[i][0] != -1; i++)
2240 edma_assign_priority_to_queue(ecc, queue_priority_mapping[i][0],
2241 queue_priority_mapping[i][1]);
2242
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002243 for (i = 0; i < ecc->num_region; i++) {
2244 edma_write_array2(ecc, EDMA_DRAE, i, 0, 0x0);
2245 edma_write_array2(ecc, EDMA_DRAE, i, 1, 0x0);
2246 edma_write_array(ecc, EDMA_QRAE, i, 0x0);
2247 }
2248 ecc->info = info;
2249
Matt Porterc2dde5f2012-08-22 21:09:34 -04002250 dma_cap_zero(ecc->dma_slave.cap_mask);
2251 dma_cap_set(DMA_SLAVE, ecc->dma_slave.cap_mask);
Peter Ujfalusi232b223d2014-04-14 14:42:00 +03002252 dma_cap_set(DMA_CYCLIC, ecc->dma_slave.cap_mask);
Joel Fernandes8cc3e302014-04-18 21:50:33 -05002253 dma_cap_set(DMA_MEMCPY, ecc->dma_slave.cap_mask);
Matt Porterc2dde5f2012-08-22 21:09:34 -04002254
Peter Ujfalusi907f74a2015-10-14 14:42:56 +03002255 edma_dma_init(ecc, &ecc->dma_slave, dev);
Matt Porterc2dde5f2012-08-22 21:09:34 -04002256
2257 edma_chan_init(ecc, &ecc->dma_slave, ecc->slave_chans);
2258
2259 ret = dma_async_device_register(&ecc->dma_slave);
2260 if (ret)
2261 goto err_reg1;
2262
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002263 if (node)
2264 of_dma_controller_register(node, of_dma_xlate_by_chan_id,
Peter Ujfalusib2c843a2015-10-14 14:42:50 +03002265 &ecc->dma_slave);
Peter Ujfalusidc9b60552015-10-14 14:42:47 +03002266
Peter Ujfalusi907f74a2015-10-14 14:42:56 +03002267 dev_info(dev, "TI EDMA DMA engine driver\n");
Matt Porterc2dde5f2012-08-22 21:09:34 -04002268
2269 return 0;
2270
2271err_reg1:
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002272 edma_free_slot(ecc, ecc->dummy_slot);
Matt Porterc2dde5f2012-08-22 21:09:34 -04002273 return ret;
2274}
2275
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -08002276static int edma_remove(struct platform_device *pdev)
Matt Porterc2dde5f2012-08-22 21:09:34 -04002277{
2278 struct device *dev = &pdev->dev;
2279 struct edma_cc *ecc = dev_get_drvdata(dev);
2280
Peter Ujfalusi907f74a2015-10-14 14:42:56 +03002281 if (dev->of_node)
2282 of_dma_controller_free(dev->of_node);
Matt Porterc2dde5f2012-08-22 21:09:34 -04002283 dma_async_device_unregister(&ecc->dma_slave);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002284 edma_free_slot(ecc, ecc->dummy_slot);
Matt Porterc2dde5f2012-08-22 21:09:34 -04002285
2286 return 0;
2287}
2288
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002289#ifdef CONFIG_PM_SLEEP
2290static int edma_pm_resume(struct device *dev)
2291{
2292 struct edma_cc *ecc = dev_get_drvdata(dev);
Peter Ujfalusie4e886c2015-10-14 14:43:06 +03002293 struct edma_chan *echan = ecc->slave_chans;
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002294 int i;
2295 s8 (*queue_priority_mapping)[2];
2296
2297 queue_priority_mapping = ecc->info->queue_priority_mapping;
2298
2299 /* Event queue priority mapping */
2300 for (i = 0; queue_priority_mapping[i][0] != -1; i++)
2301 edma_assign_priority_to_queue(ecc, queue_priority_mapping[i][0],
2302 queue_priority_mapping[i][1]);
2303
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002304 for (i = 0; i < ecc->num_channels; i++) {
Peter Ujfalusie4e886c2015-10-14 14:43:06 +03002305 if (echan[i].alloced) {
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002306 /* ensure access through shadow region 0 */
2307 edma_or_array2(ecc, EDMA_DRAE, 0, i >> 5,
2308 BIT(i & 0x1f));
2309
2310 edma_setup_interrupt(ecc, EDMA_CTLR_CHAN(ecc->id, i),
Peter Ujfalusi79ad2e32015-10-14 14:43:01 +03002311 true);
Peter Ujfalusie4e886c2015-10-14 14:43:06 +03002312
2313 /* Set up channel -> slot mapping for the entry slot */
2314 edma_set_chmap(ecc, echan[i].ch_num, echan[i].slot[0]);
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002315 }
2316 }
2317
2318 return 0;
2319}
2320#endif
2321
2322static const struct dev_pm_ops edma_pm_ops = {
2323 SET_LATE_SYSTEM_SLEEP_PM_OPS(NULL, edma_pm_resume)
2324};
2325
Matt Porterc2dde5f2012-08-22 21:09:34 -04002326static struct platform_driver edma_driver = {
2327 .probe = edma_probe,
Bill Pembertona7d6e3e2012-11-19 13:20:04 -05002328 .remove = edma_remove,
Matt Porterc2dde5f2012-08-22 21:09:34 -04002329 .driver = {
Peter Ujfalusi2b6b3b72015-10-14 14:42:53 +03002330 .name = "edma",
2331 .pm = &edma_pm_ops,
2332 .of_match_table = edma_of_ids,
Matt Porterc2dde5f2012-08-22 21:09:34 -04002333 },
2334};
2335
2336bool edma_filter_fn(struct dma_chan *chan, void *param)
2337{
2338 if (chan->device->dev->driver == &edma_driver.driver) {
2339 struct edma_chan *echan = to_edma_chan(chan);
2340 unsigned ch_req = *(unsigned *)param;
2341 return ch_req == echan->ch_num;
2342 }
2343 return false;
2344}
2345EXPORT_SYMBOL(edma_filter_fn);
2346
Matt Porterc2dde5f2012-08-22 21:09:34 -04002347static int edma_init(void)
2348{
Arnd Bergmann5305e4d2014-10-24 18:14:01 +02002349 return platform_driver_register(&edma_driver);
Matt Porterc2dde5f2012-08-22 21:09:34 -04002350}
2351subsys_initcall(edma_init);
2352
2353static void __exit edma_exit(void)
2354{
Matt Porterc2dde5f2012-08-22 21:09:34 -04002355 platform_driver_unregister(&edma_driver);
2356}
2357module_exit(edma_exit);
2358
Josh Boyerd71505b2013-09-04 10:32:50 -04002359MODULE_AUTHOR("Matt Porter <matt.porter@linaro.org>");
Matt Porterc2dde5f2012-08-22 21:09:34 -04002360MODULE_DESCRIPTION("TI EDMA DMA engine driver");
2361MODULE_LICENSE("GPL v2");