blob: 43f56a7d9d61b0751894158106b1a7e2e1a4f312 [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>
18#include <linux/err.h>
19#include <linux/init.h>
20#include <linux/interrupt.h>
21#include <linux/list.h>
22#include <linux/module.h>
23#include <linux/platform_device.h>
24#include <linux/slab.h>
25#include <linux/spinlock.h>
26
Matt Porter3ad7a422013-03-06 11:15:31 -050027#include <linux/platform_data/edma.h>
Matt Porterc2dde5f2012-08-22 21:09:34 -040028
29#include "dmaengine.h"
30#include "virt-dma.h"
31
32/*
33 * This will go away when the private EDMA API is folded
34 * into this driver and the platform device(s) are
35 * instantiated in the arch code. We can only get away
36 * with this simplification because DA8XX may not be built
37 * in the same kernel image with other DaVinci parts. This
38 * avoids having to sprinkle dmaengine driver platform devices
39 * and data throughout all the existing board files.
40 */
41#ifdef CONFIG_ARCH_DAVINCI_DA8XX
42#define EDMA_CTLRS 2
43#define EDMA_CHANS 32
44#else
45#define EDMA_CTLRS 1
46#define EDMA_CHANS 64
47#endif /* CONFIG_ARCH_DAVINCI_DA8XX */
48
Joel Fernandes2abd5f12013-09-23 18:05:15 -050049/*
50 * Max of 20 segments per channel to conserve PaRAM slots
51 * Also note that MAX_NR_SG should be atleast the no.of periods
52 * that are required for ASoC, otherwise DMA prep calls will
53 * fail. Today davinci-pcm is the only user of this driver and
54 * requires atleast 17 slots, so we setup the default to 20.
55 */
56#define MAX_NR_SG 20
Matt Porterc2dde5f2012-08-22 21:09:34 -040057#define EDMA_MAX_SLOTS MAX_NR_SG
58#define EDMA_DESCRIPTORS 16
59
60struct edma_desc {
61 struct virt_dma_desc vdesc;
62 struct list_head node;
Joel Fernandes50a9c702013-10-31 16:31:23 -050063 int cyclic;
Matt Porterc2dde5f2012-08-22 21:09:34 -040064 int absync;
65 int pset_nr;
Joel Fernandes53407062013-09-03 10:02:46 -050066 int processed;
Matt Porterc2dde5f2012-08-22 21:09:34 -040067 struct edmacc_param pset[0];
68};
69
70struct edma_cc;
71
72struct edma_chan {
73 struct virt_dma_chan vchan;
74 struct list_head node;
75 struct edma_desc *edesc;
76 struct edma_cc *ecc;
77 int ch_num;
78 bool alloced;
79 int slot[EDMA_MAX_SLOTS];
Joel Fernandesc5f47992013-08-29 18:05:43 -050080 int missed;
Matt Porter661f7cb2013-01-10 13:41:04 -050081 struct dma_slave_config cfg;
Matt Porterc2dde5f2012-08-22 21:09:34 -040082};
83
84struct edma_cc {
85 int ctlr;
86 struct dma_device dma_slave;
87 struct edma_chan slave_chans[EDMA_CHANS];
88 int num_slave_chans;
89 int dummy_slot;
90};
91
92static inline struct edma_cc *to_edma_cc(struct dma_device *d)
93{
94 return container_of(d, struct edma_cc, dma_slave);
95}
96
97static inline struct edma_chan *to_edma_chan(struct dma_chan *c)
98{
99 return container_of(c, struct edma_chan, vchan.chan);
100}
101
102static inline struct edma_desc
103*to_edma_desc(struct dma_async_tx_descriptor *tx)
104{
105 return container_of(tx, struct edma_desc, vdesc.tx);
106}
107
108static void edma_desc_free(struct virt_dma_desc *vdesc)
109{
110 kfree(container_of(vdesc, struct edma_desc, vdesc));
111}
112
113/* Dispatch a queued descriptor to the controller (caller holds lock) */
114static void edma_execute(struct edma_chan *echan)
115{
Joel Fernandes53407062013-09-03 10:02:46 -0500116 struct virt_dma_desc *vdesc;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400117 struct edma_desc *edesc;
Joel Fernandes53407062013-09-03 10:02:46 -0500118 struct device *dev = echan->vchan.chan.device->dev;
119 int i, j, left, nslots;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400120
Joel Fernandes53407062013-09-03 10:02:46 -0500121 /* If either we processed all psets or we're still not started */
122 if (!echan->edesc ||
123 echan->edesc->pset_nr == echan->edesc->processed) {
124 /* Get next vdesc */
125 vdesc = vchan_next_desc(&echan->vchan);
126 if (!vdesc) {
127 echan->edesc = NULL;
128 return;
129 }
130 list_del(&vdesc->node);
131 echan->edesc = to_edma_desc(&vdesc->tx);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400132 }
133
Joel Fernandes53407062013-09-03 10:02:46 -0500134 edesc = echan->edesc;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400135
Joel Fernandes53407062013-09-03 10:02:46 -0500136 /* Find out how many left */
137 left = edesc->pset_nr - edesc->processed;
138 nslots = min(MAX_NR_SG, left);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400139
140 /* Write descriptor PaRAM set(s) */
Joel Fernandes53407062013-09-03 10:02:46 -0500141 for (i = 0; i < nslots; i++) {
142 j = i + edesc->processed;
143 edma_write_slot(echan->slot[i], &edesc->pset[j]);
Peter Ujfalusi83bb3122014-04-14 14:42:02 +0300144 dev_vdbg(echan->vchan.chan.device->dev,
Matt Porterc2dde5f2012-08-22 21:09:34 -0400145 "\n pset[%d]:\n"
146 " chnum\t%d\n"
147 " slot\t%d\n"
148 " opt\t%08x\n"
149 " src\t%08x\n"
150 " dst\t%08x\n"
151 " abcnt\t%08x\n"
152 " ccnt\t%08x\n"
153 " bidx\t%08x\n"
154 " cidx\t%08x\n"
155 " lkrld\t%08x\n",
Joel Fernandes53407062013-09-03 10:02:46 -0500156 j, echan->ch_num, echan->slot[i],
157 edesc->pset[j].opt,
158 edesc->pset[j].src,
159 edesc->pset[j].dst,
160 edesc->pset[j].a_b_cnt,
161 edesc->pset[j].ccnt,
162 edesc->pset[j].src_dst_bidx,
163 edesc->pset[j].src_dst_cidx,
164 edesc->pset[j].link_bcntrld);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400165 /* Link to the previous slot if not the last set */
Joel Fernandes53407062013-09-03 10:02:46 -0500166 if (i != (nslots - 1))
Matt Porterc2dde5f2012-08-22 21:09:34 -0400167 edma_link(echan->slot[i], echan->slot[i+1]);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400168 }
169
Joel Fernandes53407062013-09-03 10:02:46 -0500170 edesc->processed += nslots;
171
Joel Fernandesb267b3b2013-08-29 18:05:44 -0500172 /*
173 * If this is either the last set in a set of SG-list transactions
174 * then setup a link to the dummy slot, this results in all future
175 * events being absorbed and that's OK because we're done
176 */
Joel Fernandes50a9c702013-10-31 16:31:23 -0500177 if (edesc->processed == edesc->pset_nr) {
178 if (edesc->cyclic)
179 edma_link(echan->slot[nslots-1], echan->slot[1]);
180 else
181 edma_link(echan->slot[nslots-1],
182 echan->ecc->dummy_slot);
183 }
Joel Fernandesb267b3b2013-08-29 18:05:44 -0500184
Joel Fernandes53407062013-09-03 10:02:46 -0500185 if (edesc->processed <= MAX_NR_SG) {
186 dev_dbg(dev, "first transfer starting %d\n", echan->ch_num);
187 edma_start(echan->ch_num);
Sekhar Nori5fc68a62014-03-19 11:25:50 +0530188 } else {
189 dev_dbg(dev, "chan: %d: completed %d elements, resuming\n",
190 echan->ch_num, edesc->processed);
191 edma_resume(echan->ch_num);
Joel Fernandes53407062013-09-03 10:02:46 -0500192 }
Joel Fernandesc5f47992013-08-29 18:05:43 -0500193
194 /*
195 * This happens due to setup times between intermediate transfers
196 * in long SG lists which have to be broken up into transfers of
197 * MAX_NR_SG
198 */
199 if (echan->missed) {
200 dev_dbg(dev, "missed event in execute detected\n");
201 edma_clean_channel(echan->ch_num);
202 edma_stop(echan->ch_num);
203 edma_start(echan->ch_num);
204 edma_trigger_channel(echan->ch_num);
205 echan->missed = 0;
206 }
Matt Porterc2dde5f2012-08-22 21:09:34 -0400207}
208
209static int edma_terminate_all(struct edma_chan *echan)
210{
211 unsigned long flags;
212 LIST_HEAD(head);
213
214 spin_lock_irqsave(&echan->vchan.lock, flags);
215
216 /*
217 * Stop DMA activity: we assume the callback will not be called
218 * after edma_dma() returns (even if it does, it will see
219 * echan->edesc is NULL and exit.)
220 */
221 if (echan->edesc) {
222 echan->edesc = NULL;
223 edma_stop(echan->ch_num);
224 }
225
226 vchan_get_all_descriptors(&echan->vchan, &head);
227 spin_unlock_irqrestore(&echan->vchan.lock, flags);
228 vchan_dma_desc_free_list(&echan->vchan, &head);
229
230 return 0;
231}
232
Matt Porterc2dde5f2012-08-22 21:09:34 -0400233static int edma_slave_config(struct edma_chan *echan,
Matt Porter661f7cb2013-01-10 13:41:04 -0500234 struct dma_slave_config *cfg)
Matt Porterc2dde5f2012-08-22 21:09:34 -0400235{
Matt Porter661f7cb2013-01-10 13:41:04 -0500236 if (cfg->src_addr_width == DMA_SLAVE_BUSWIDTH_8_BYTES ||
237 cfg->dst_addr_width == DMA_SLAVE_BUSWIDTH_8_BYTES)
Matt Porterc2dde5f2012-08-22 21:09:34 -0400238 return -EINVAL;
239
Matt Porter661f7cb2013-01-10 13:41:04 -0500240 memcpy(&echan->cfg, cfg, sizeof(echan->cfg));
Matt Porterc2dde5f2012-08-22 21:09:34 -0400241
242 return 0;
243}
244
Peter Ujfalusi72c7b672014-04-14 14:41:59 +0300245static int edma_dma_pause(struct edma_chan *echan)
246{
247 /* Pause/Resume only allowed with cyclic mode */
248 if (!echan->edesc->cyclic)
249 return -EINVAL;
250
251 edma_pause(echan->ch_num);
252 return 0;
253}
254
255static int edma_dma_resume(struct edma_chan *echan)
256{
257 /* Pause/Resume only allowed with cyclic mode */
258 if (!echan->edesc->cyclic)
259 return -EINVAL;
260
261 edma_resume(echan->ch_num);
262 return 0;
263}
264
Matt Porterc2dde5f2012-08-22 21:09:34 -0400265static int edma_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
266 unsigned long arg)
267{
268 int ret = 0;
269 struct dma_slave_config *config;
270 struct edma_chan *echan = to_edma_chan(chan);
271
272 switch (cmd) {
273 case DMA_TERMINATE_ALL:
274 edma_terminate_all(echan);
275 break;
276 case DMA_SLAVE_CONFIG:
277 config = (struct dma_slave_config *)arg;
278 ret = edma_slave_config(echan, config);
279 break;
Peter Ujfalusi72c7b672014-04-14 14:41:59 +0300280 case DMA_PAUSE:
281 ret = edma_dma_pause(echan);
282 break;
283
284 case DMA_RESUME:
285 ret = edma_dma_resume(echan);
286 break;
287
Matt Porterc2dde5f2012-08-22 21:09:34 -0400288 default:
289 ret = -ENOSYS;
290 }
291
292 return ret;
293}
294
Joel Fernandesfd009032013-09-23 18:05:13 -0500295/*
296 * A PaRAM set configuration abstraction used by other modes
297 * @chan: Channel who's PaRAM set we're configuring
298 * @pset: PaRAM set to initialize and setup.
299 * @src_addr: Source address of the DMA
300 * @dst_addr: Destination address of the DMA
301 * @burst: In units of dev_width, how much to send
302 * @dev_width: How much is the dev_width
303 * @dma_length: Total length of the DMA transfer
304 * @direction: Direction of the transfer
305 */
306static int edma_config_pset(struct dma_chan *chan, struct edmacc_param *pset,
307 dma_addr_t src_addr, dma_addr_t dst_addr, u32 burst,
308 enum dma_slave_buswidth dev_width, unsigned int dma_length,
309 enum dma_transfer_direction direction)
310{
311 struct edma_chan *echan = to_edma_chan(chan);
312 struct device *dev = chan->device->dev;
313 int acnt, bcnt, ccnt, cidx;
314 int src_bidx, dst_bidx, src_cidx, dst_cidx;
315 int absync;
316
317 acnt = dev_width;
Peter Ujfalusib2b617d2014-04-14 14:41:58 +0300318
319 /* src/dst_maxburst == 0 is the same case as src/dst_maxburst == 1 */
320 if (!burst)
321 burst = 1;
Joel Fernandesfd009032013-09-23 18:05:13 -0500322 /*
323 * If the maxburst is equal to the fifo width, use
324 * A-synced transfers. This allows for large contiguous
325 * buffer transfers using only one PaRAM set.
326 */
327 if (burst == 1) {
328 /*
329 * For the A-sync case, bcnt and ccnt are the remainder
330 * and quotient respectively of the division of:
331 * (dma_length / acnt) by (SZ_64K -1). This is so
332 * that in case bcnt over flows, we have ccnt to use.
333 * Note: In A-sync tranfer only, bcntrld is used, but it
334 * only applies for sg_dma_len(sg) >= SZ_64K.
335 * In this case, the best way adopted is- bccnt for the
336 * first frame will be the remainder below. Then for
337 * every successive frame, bcnt will be SZ_64K-1. This
338 * is assured as bcntrld = 0xffff in end of function.
339 */
340 absync = false;
341 ccnt = dma_length / acnt / (SZ_64K - 1);
342 bcnt = dma_length / acnt - ccnt * (SZ_64K - 1);
343 /*
344 * If bcnt is non-zero, we have a remainder and hence an
345 * extra frame to transfer, so increment ccnt.
346 */
347 if (bcnt)
348 ccnt++;
349 else
350 bcnt = SZ_64K - 1;
351 cidx = acnt;
352 } else {
353 /*
354 * If maxburst is greater than the fifo address_width,
355 * use AB-synced transfers where A count is the fifo
356 * address_width and B count is the maxburst. In this
357 * case, we are limited to transfers of C count frames
358 * of (address_width * maxburst) where C count is limited
359 * to SZ_64K-1. This places an upper bound on the length
360 * of an SG segment that can be handled.
361 */
362 absync = true;
363 bcnt = burst;
364 ccnt = dma_length / (acnt * bcnt);
365 if (ccnt > (SZ_64K - 1)) {
366 dev_err(dev, "Exceeded max SG segment size\n");
367 return -EINVAL;
368 }
369 cidx = acnt * bcnt;
370 }
371
372 if (direction == DMA_MEM_TO_DEV) {
373 src_bidx = acnt;
374 src_cidx = cidx;
375 dst_bidx = 0;
376 dst_cidx = 0;
377 } else if (direction == DMA_DEV_TO_MEM) {
378 src_bidx = 0;
379 src_cidx = 0;
380 dst_bidx = acnt;
381 dst_cidx = cidx;
Joel Fernandes8cc3e302014-04-18 21:50:33 -0500382 } else if (direction == DMA_MEM_TO_MEM) {
383 src_bidx = acnt;
384 src_cidx = cidx;
385 dst_bidx = acnt;
386 dst_cidx = cidx;
Joel Fernandesfd009032013-09-23 18:05:13 -0500387 } else {
388 dev_err(dev, "%s: direction not implemented yet\n", __func__);
389 return -EINVAL;
390 }
391
392 pset->opt = EDMA_TCC(EDMA_CHAN_SLOT(echan->ch_num));
393 /* Configure A or AB synchronized transfers */
394 if (absync)
395 pset->opt |= SYNCDIM;
396
397 pset->src = src_addr;
398 pset->dst = dst_addr;
399
400 pset->src_dst_bidx = (dst_bidx << 16) | src_bidx;
401 pset->src_dst_cidx = (dst_cidx << 16) | src_cidx;
402
403 pset->a_b_cnt = bcnt << 16 | acnt;
404 pset->ccnt = ccnt;
405 /*
406 * Only time when (bcntrld) auto reload is required is for
407 * A-sync case, and in this case, a requirement of reload value
408 * of SZ_64K-1 only is assured. 'link' is initially set to NULL
409 * and then later will be populated by edma_execute.
410 */
411 pset->link_bcntrld = 0xffffffff;
412 return absync;
413}
414
Matt Porterc2dde5f2012-08-22 21:09:34 -0400415static struct dma_async_tx_descriptor *edma_prep_slave_sg(
416 struct dma_chan *chan, struct scatterlist *sgl,
417 unsigned int sg_len, enum dma_transfer_direction direction,
418 unsigned long tx_flags, void *context)
419{
420 struct edma_chan *echan = to_edma_chan(chan);
421 struct device *dev = chan->device->dev;
422 struct edma_desc *edesc;
Joel Fernandesfd009032013-09-23 18:05:13 -0500423 dma_addr_t src_addr = 0, dst_addr = 0;
Matt Porter661f7cb2013-01-10 13:41:04 -0500424 enum dma_slave_buswidth dev_width;
425 u32 burst;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400426 struct scatterlist *sg;
Joel Fernandesfd009032013-09-23 18:05:13 -0500427 int i, nslots, ret;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400428
429 if (unlikely(!echan || !sgl || !sg_len))
430 return NULL;
431
Matt Porter661f7cb2013-01-10 13:41:04 -0500432 if (direction == DMA_DEV_TO_MEM) {
Joel Fernandesfd009032013-09-23 18:05:13 -0500433 src_addr = echan->cfg.src_addr;
Matt Porter661f7cb2013-01-10 13:41:04 -0500434 dev_width = echan->cfg.src_addr_width;
435 burst = echan->cfg.src_maxburst;
436 } else if (direction == DMA_MEM_TO_DEV) {
Joel Fernandesfd009032013-09-23 18:05:13 -0500437 dst_addr = echan->cfg.dst_addr;
Matt Porter661f7cb2013-01-10 13:41:04 -0500438 dev_width = echan->cfg.dst_addr_width;
439 burst = echan->cfg.dst_maxburst;
440 } else {
Peter Ujfalusie6fad592014-04-14 14:42:05 +0300441 dev_err(dev, "%s: bad direction: %d\n", __func__, direction);
Matt Porter661f7cb2013-01-10 13:41:04 -0500442 return NULL;
443 }
444
445 if (dev_width == DMA_SLAVE_BUSWIDTH_UNDEFINED) {
Peter Ujfalusic594c892014-04-14 14:42:03 +0300446 dev_err(dev, "%s: Undefined slave buswidth\n", __func__);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400447 return NULL;
448 }
449
Matt Porterc2dde5f2012-08-22 21:09:34 -0400450 edesc = kzalloc(sizeof(*edesc) + sg_len *
451 sizeof(edesc->pset[0]), GFP_ATOMIC);
452 if (!edesc) {
Peter Ujfalusic594c892014-04-14 14:42:03 +0300453 dev_err(dev, "%s: Failed to allocate a descriptor\n", __func__);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400454 return NULL;
455 }
456
457 edesc->pset_nr = sg_len;
458
Joel Fernandes6fbe24d2013-08-29 18:05:40 -0500459 /* Allocate a PaRAM slot, if needed */
460 nslots = min_t(unsigned, MAX_NR_SG, sg_len);
461
462 for (i = 0; i < nslots; i++) {
Matt Porterc2dde5f2012-08-22 21:09:34 -0400463 if (echan->slot[i] < 0) {
464 echan->slot[i] =
465 edma_alloc_slot(EDMA_CTLR(echan->ch_num),
466 EDMA_SLOT_ANY);
467 if (echan->slot[i] < 0) {
Valentin Ilie4b6271a2013-10-24 16:14:22 +0300468 kfree(edesc);
Peter Ujfalusic594c892014-04-14 14:42:03 +0300469 dev_err(dev, "%s: Failed to allocate slot\n",
470 __func__);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400471 return NULL;
472 }
473 }
Joel Fernandes6fbe24d2013-08-29 18:05:40 -0500474 }
475
476 /* Configure PaRAM sets for each SG */
477 for_each_sg(sgl, sg, sg_len, i) {
Joel Fernandesfd009032013-09-23 18:05:13 -0500478 /* Get address for each SG */
479 if (direction == DMA_DEV_TO_MEM)
480 dst_addr = sg_dma_address(sg);
481 else
482 src_addr = sg_dma_address(sg);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400483
Joel Fernandesfd009032013-09-23 18:05:13 -0500484 ret = edma_config_pset(chan, &edesc->pset[i], src_addr,
485 dst_addr, burst, dev_width,
486 sg_dma_len(sg), direction);
Vinod Koulb967aec2013-10-30 13:07:18 +0530487 if (ret < 0) {
488 kfree(edesc);
Joel Fernandesfd009032013-09-23 18:05:13 -0500489 return NULL;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400490 }
491
Joel Fernandesfd009032013-09-23 18:05:13 -0500492 edesc->absync = ret;
Joel Fernandes6fbe24d2013-08-29 18:05:40 -0500493
494 /* If this is the last in a current SG set of transactions,
495 enable interrupts so that next set is processed */
496 if (!((i+1) % MAX_NR_SG))
497 edesc->pset[i].opt |= TCINTEN;
498
Matt Porterc2dde5f2012-08-22 21:09:34 -0400499 /* If this is the last set, enable completion interrupt flag */
500 if (i == sg_len - 1)
501 edesc->pset[i].opt |= TCINTEN;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400502 }
Matt Porterc2dde5f2012-08-22 21:09:34 -0400503
Matt Porterc2dde5f2012-08-22 21:09:34 -0400504 return vchan_tx_prep(&echan->vchan, &edesc->vdesc, tx_flags);
505}
Matt Porterc2dde5f2012-08-22 21:09:34 -0400506
Joel Fernandes8cc3e302014-04-18 21:50:33 -0500507struct dma_async_tx_descriptor *edma_prep_dma_memcpy(
508 struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
509 size_t len, unsigned long tx_flags)
510{
511 int ret;
512 struct edma_desc *edesc;
513 struct device *dev = chan->device->dev;
514 struct edma_chan *echan = to_edma_chan(chan);
515
516 if (unlikely(!echan || !len))
517 return NULL;
518
519 edesc = kzalloc(sizeof(*edesc) + sizeof(edesc->pset[0]), GFP_ATOMIC);
520 if (!edesc) {
521 dev_dbg(dev, "Failed to allocate a descriptor\n");
522 return NULL;
523 }
524
525 edesc->pset_nr = 1;
526
527 ret = edma_config_pset(chan, &edesc->pset[0], src, dest, 1,
528 DMA_SLAVE_BUSWIDTH_4_BYTES, len, DMA_MEM_TO_MEM);
529 if (ret < 0)
530 return NULL;
531
532 edesc->absync = ret;
533
534 /*
535 * Enable intermediate transfer chaining to re-trigger channel
536 * on completion of every TR, and enable transfer-completion
537 * interrupt on completion of the whole transfer.
538 */
539 edesc->pset[0].opt |= ITCCHEN;
540 edesc->pset[0].opt |= TCINTEN;
541
542 return vchan_tx_prep(&echan->vchan, &edesc->vdesc, tx_flags);
543}
544
Joel Fernandes50a9c702013-10-31 16:31:23 -0500545static struct dma_async_tx_descriptor *edma_prep_dma_cyclic(
546 struct dma_chan *chan, dma_addr_t buf_addr, size_t buf_len,
547 size_t period_len, enum dma_transfer_direction direction,
548 unsigned long tx_flags, void *context)
549{
550 struct edma_chan *echan = to_edma_chan(chan);
551 struct device *dev = chan->device->dev;
552 struct edma_desc *edesc;
553 dma_addr_t src_addr, dst_addr;
554 enum dma_slave_buswidth dev_width;
555 u32 burst;
556 int i, ret, nslots;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400557
Joel Fernandes50a9c702013-10-31 16:31:23 -0500558 if (unlikely(!echan || !buf_len || !period_len))
559 return NULL;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400560
Joel Fernandes50a9c702013-10-31 16:31:23 -0500561 if (direction == DMA_DEV_TO_MEM) {
562 src_addr = echan->cfg.src_addr;
563 dst_addr = buf_addr;
564 dev_width = echan->cfg.src_addr_width;
565 burst = echan->cfg.src_maxburst;
566 } else if (direction == DMA_MEM_TO_DEV) {
567 src_addr = buf_addr;
568 dst_addr = echan->cfg.dst_addr;
569 dev_width = echan->cfg.dst_addr_width;
570 burst = echan->cfg.dst_maxburst;
571 } else {
Peter Ujfalusie6fad592014-04-14 14:42:05 +0300572 dev_err(dev, "%s: bad direction: %d\n", __func__, direction);
Joel Fernandes50a9c702013-10-31 16:31:23 -0500573 return NULL;
574 }
575
576 if (dev_width == DMA_SLAVE_BUSWIDTH_UNDEFINED) {
Peter Ujfalusic594c892014-04-14 14:42:03 +0300577 dev_err(dev, "%s: Undefined slave buswidth\n", __func__);
Joel Fernandes50a9c702013-10-31 16:31:23 -0500578 return NULL;
579 }
580
581 if (unlikely(buf_len % period_len)) {
582 dev_err(dev, "Period should be multiple of Buffer length\n");
583 return NULL;
584 }
585
586 nslots = (buf_len / period_len) + 1;
587
588 /*
589 * Cyclic DMA users such as audio cannot tolerate delays introduced
590 * by cases where the number of periods is more than the maximum
591 * number of SGs the EDMA driver can handle at a time. For DMA types
592 * such as Slave SGs, such delays are tolerable and synchronized,
593 * but the synchronization is difficult to achieve with Cyclic and
594 * cannot be guaranteed, so we error out early.
595 */
596 if (nslots > MAX_NR_SG)
597 return NULL;
598
599 edesc = kzalloc(sizeof(*edesc) + nslots *
600 sizeof(edesc->pset[0]), GFP_ATOMIC);
601 if (!edesc) {
Peter Ujfalusic594c892014-04-14 14:42:03 +0300602 dev_err(dev, "%s: Failed to allocate a descriptor\n", __func__);
Joel Fernandes50a9c702013-10-31 16:31:23 -0500603 return NULL;
604 }
605
606 edesc->cyclic = 1;
607 edesc->pset_nr = nslots;
608
Peter Ujfalusi83bb3122014-04-14 14:42:02 +0300609 dev_dbg(dev, "%s: channel=%d nslots=%d period_len=%zu buf_len=%zu\n",
610 __func__, echan->ch_num, nslots, period_len, buf_len);
Joel Fernandes50a9c702013-10-31 16:31:23 -0500611
612 for (i = 0; i < nslots; i++) {
613 /* Allocate a PaRAM slot, if needed */
614 if (echan->slot[i] < 0) {
615 echan->slot[i] =
616 edma_alloc_slot(EDMA_CTLR(echan->ch_num),
617 EDMA_SLOT_ANY);
618 if (echan->slot[i] < 0) {
Christian Engelmayere3ddc972013-12-30 20:48:39 +0100619 kfree(edesc);
Peter Ujfalusic594c892014-04-14 14:42:03 +0300620 dev_err(dev, "%s: Failed to allocate slot\n",
621 __func__);
Joel Fernandes50a9c702013-10-31 16:31:23 -0500622 return NULL;
623 }
624 }
625
626 if (i == nslots - 1) {
627 memcpy(&edesc->pset[i], &edesc->pset[0],
628 sizeof(edesc->pset[0]));
629 break;
630 }
631
632 ret = edma_config_pset(chan, &edesc->pset[i], src_addr,
633 dst_addr, burst, dev_width, period_len,
634 direction);
Christian Engelmayere3ddc972013-12-30 20:48:39 +0100635 if (ret < 0) {
636 kfree(edesc);
Joel Fernandes50a9c702013-10-31 16:31:23 -0500637 return NULL;
Christian Engelmayere3ddc972013-12-30 20:48:39 +0100638 }
Joel Fernandes50a9c702013-10-31 16:31:23 -0500639
640 if (direction == DMA_DEV_TO_MEM)
641 dst_addr += period_len;
642 else
643 src_addr += period_len;
644
Peter Ujfalusi83bb3122014-04-14 14:42:02 +0300645 dev_vdbg(dev, "%s: Configure period %d of buf:\n", __func__, i);
646 dev_vdbg(dev,
Joel Fernandes50a9c702013-10-31 16:31:23 -0500647 "\n pset[%d]:\n"
648 " chnum\t%d\n"
649 " slot\t%d\n"
650 " opt\t%08x\n"
651 " src\t%08x\n"
652 " dst\t%08x\n"
653 " abcnt\t%08x\n"
654 " ccnt\t%08x\n"
655 " bidx\t%08x\n"
656 " cidx\t%08x\n"
657 " lkrld\t%08x\n",
658 i, echan->ch_num, echan->slot[i],
659 edesc->pset[i].opt,
660 edesc->pset[i].src,
661 edesc->pset[i].dst,
662 edesc->pset[i].a_b_cnt,
663 edesc->pset[i].ccnt,
664 edesc->pset[i].src_dst_bidx,
665 edesc->pset[i].src_dst_cidx,
666 edesc->pset[i].link_bcntrld);
667
668 edesc->absync = ret;
669
670 /*
671 * Enable interrupts for every period because callback
672 * has to be called for every period.
673 */
674 edesc->pset[i].opt |= TCINTEN;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400675 }
676
677 return vchan_tx_prep(&echan->vchan, &edesc->vdesc, tx_flags);
678}
679
680static void edma_callback(unsigned ch_num, u16 ch_status, void *data)
681{
682 struct edma_chan *echan = data;
683 struct device *dev = echan->vchan.chan.device->dev;
684 struct edma_desc *edesc;
685 unsigned long flags;
Joel Fernandesc5f47992013-08-29 18:05:43 -0500686 struct edmacc_param p;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400687
Joel Fernandes50a9c702013-10-31 16:31:23 -0500688 edesc = echan->edesc;
689
690 /* Pause the channel for non-cyclic */
691 if (!edesc || (edesc && !edesc->cyclic))
692 edma_pause(echan->ch_num);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400693
694 switch (ch_status) {
Vinod Kouldb60d8d2013-10-30 18:22:30 +0530695 case EDMA_DMA_COMPLETE:
Matt Porterc2dde5f2012-08-22 21:09:34 -0400696 spin_lock_irqsave(&echan->vchan.lock, flags);
697
Matt Porterc2dde5f2012-08-22 21:09:34 -0400698 if (edesc) {
Joel Fernandes50a9c702013-10-31 16:31:23 -0500699 if (edesc->cyclic) {
700 vchan_cyclic_callback(&edesc->vdesc);
701 } else if (edesc->processed == edesc->pset_nr) {
Joel Fernandes53407062013-09-03 10:02:46 -0500702 dev_dbg(dev, "Transfer complete, stopping channel %d\n", ch_num);
703 edma_stop(echan->ch_num);
704 vchan_cookie_complete(&edesc->vdesc);
Joel Fernandes50a9c702013-10-31 16:31:23 -0500705 edma_execute(echan);
Joel Fernandes53407062013-09-03 10:02:46 -0500706 } else {
707 dev_dbg(dev, "Intermediate transfer complete on channel %d\n", ch_num);
Joel Fernandes50a9c702013-10-31 16:31:23 -0500708 edma_execute(echan);
Joel Fernandes53407062013-09-03 10:02:46 -0500709 }
Matt Porterc2dde5f2012-08-22 21:09:34 -0400710 }
711
712 spin_unlock_irqrestore(&echan->vchan.lock, flags);
713
714 break;
Vinod Kouldb60d8d2013-10-30 18:22:30 +0530715 case EDMA_DMA_CC_ERROR:
Joel Fernandesc5f47992013-08-29 18:05:43 -0500716 spin_lock_irqsave(&echan->vchan.lock, flags);
717
718 edma_read_slot(EDMA_CHAN_SLOT(echan->slot[0]), &p);
719
720 /*
721 * Issue later based on missed flag which will be sure
722 * to happen as:
723 * (1) we finished transmitting an intermediate slot and
724 * edma_execute is coming up.
725 * (2) or we finished current transfer and issue will
726 * call edma_execute.
727 *
728 * Important note: issuing can be dangerous here and
729 * lead to some nasty recursion when we are in a NULL
730 * slot. So we avoid doing so and set the missed flag.
731 */
732 if (p.a_b_cnt == 0 && p.ccnt == 0) {
733 dev_dbg(dev, "Error occurred, looks like slot is null, just setting miss\n");
734 echan->missed = 1;
735 } else {
736 /*
737 * The slot is already programmed but the event got
738 * missed, so its safe to issue it here.
739 */
740 dev_dbg(dev, "Error occurred but slot is non-null, TRIGGERING\n");
741 edma_clean_channel(echan->ch_num);
742 edma_stop(echan->ch_num);
743 edma_start(echan->ch_num);
744 edma_trigger_channel(echan->ch_num);
745 }
746
747 spin_unlock_irqrestore(&echan->vchan.lock, flags);
748
Matt Porterc2dde5f2012-08-22 21:09:34 -0400749 break;
750 default:
751 break;
752 }
753}
754
755/* Alloc channel resources */
756static int edma_alloc_chan_resources(struct dma_chan *chan)
757{
758 struct edma_chan *echan = to_edma_chan(chan);
759 struct device *dev = chan->device->dev;
760 int ret;
761 int a_ch_num;
762 LIST_HEAD(descs);
763
764 a_ch_num = edma_alloc_channel(echan->ch_num, edma_callback,
765 chan, EVENTQ_DEFAULT);
766
767 if (a_ch_num < 0) {
768 ret = -ENODEV;
769 goto err_no_chan;
770 }
771
772 if (a_ch_num != echan->ch_num) {
773 dev_err(dev, "failed to allocate requested channel %u:%u\n",
774 EDMA_CTLR(echan->ch_num),
775 EDMA_CHAN_SLOT(echan->ch_num));
776 ret = -ENODEV;
777 goto err_wrong_chan;
778 }
779
780 echan->alloced = true;
781 echan->slot[0] = echan->ch_num;
782
Ezequiel Garcia0e772c62013-12-13 11:06:18 -0300783 dev_dbg(dev, "allocated channel for %u:%u\n",
784 EDMA_CTLR(echan->ch_num), EDMA_CHAN_SLOT(echan->ch_num));
Matt Porterc2dde5f2012-08-22 21:09:34 -0400785
786 return 0;
787
788err_wrong_chan:
789 edma_free_channel(a_ch_num);
790err_no_chan:
791 return ret;
792}
793
794/* Free channel resources */
795static void edma_free_chan_resources(struct dma_chan *chan)
796{
797 struct edma_chan *echan = to_edma_chan(chan);
798 struct device *dev = chan->device->dev;
799 int i;
800
801 /* Terminate transfers */
802 edma_stop(echan->ch_num);
803
804 vchan_free_chan_resources(&echan->vchan);
805
806 /* Free EDMA PaRAM slots */
807 for (i = 1; i < EDMA_MAX_SLOTS; i++) {
808 if (echan->slot[i] >= 0) {
809 edma_free_slot(echan->slot[i]);
810 echan->slot[i] = -1;
811 }
812 }
813
814 /* Free EDMA channel */
815 if (echan->alloced) {
816 edma_free_channel(echan->ch_num);
817 echan->alloced = false;
818 }
819
Ezequiel Garcia0e772c62013-12-13 11:06:18 -0300820 dev_dbg(dev, "freeing channel for %u\n", echan->ch_num);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400821}
822
823/* Send pending descriptor to hardware */
824static void edma_issue_pending(struct dma_chan *chan)
825{
826 struct edma_chan *echan = to_edma_chan(chan);
827 unsigned long flags;
828
829 spin_lock_irqsave(&echan->vchan.lock, flags);
830 if (vchan_issue_pending(&echan->vchan) && !echan->edesc)
831 edma_execute(echan);
832 spin_unlock_irqrestore(&echan->vchan.lock, flags);
833}
834
835static size_t edma_desc_size(struct edma_desc *edesc)
836{
837 int i;
838 size_t size;
839
840 if (edesc->absync)
841 for (size = i = 0; i < edesc->pset_nr; i++)
842 size += (edesc->pset[i].a_b_cnt & 0xffff) *
843 (edesc->pset[i].a_b_cnt >> 16) *
844 edesc->pset[i].ccnt;
845 else
846 size = (edesc->pset[0].a_b_cnt & 0xffff) *
847 (edesc->pset[0].a_b_cnt >> 16) +
848 (edesc->pset[0].a_b_cnt & 0xffff) *
849 (SZ_64K - 1) * edesc->pset[0].ccnt;
850
851 return size;
852}
853
854/* Check request completion status */
855static enum dma_status edma_tx_status(struct dma_chan *chan,
856 dma_cookie_t cookie,
857 struct dma_tx_state *txstate)
858{
859 struct edma_chan *echan = to_edma_chan(chan);
860 struct virt_dma_desc *vdesc;
861 enum dma_status ret;
862 unsigned long flags;
863
864 ret = dma_cookie_status(chan, cookie, txstate);
Vinod Koul9d386ec2013-10-16 13:42:15 +0530865 if (ret == DMA_COMPLETE || !txstate)
Matt Porterc2dde5f2012-08-22 21:09:34 -0400866 return ret;
867
868 spin_lock_irqsave(&echan->vchan.lock, flags);
869 vdesc = vchan_find_desc(&echan->vchan, cookie);
870 if (vdesc) {
871 txstate->residue = edma_desc_size(to_edma_desc(&vdesc->tx));
872 } else if (echan->edesc && echan->edesc->vdesc.tx.cookie == cookie) {
873 struct edma_desc *edesc = echan->edesc;
874 txstate->residue = edma_desc_size(edesc);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400875 }
876 spin_unlock_irqrestore(&echan->vchan.lock, flags);
877
878 return ret;
879}
880
881static void __init edma_chan_init(struct edma_cc *ecc,
882 struct dma_device *dma,
883 struct edma_chan *echans)
884{
885 int i, j;
886
887 for (i = 0; i < EDMA_CHANS; i++) {
888 struct edma_chan *echan = &echans[i];
889 echan->ch_num = EDMA_CTLR_CHAN(ecc->ctlr, i);
890 echan->ecc = ecc;
891 echan->vchan.desc_free = edma_desc_free;
892
893 vchan_init(&echan->vchan, dma);
894
895 INIT_LIST_HEAD(&echan->node);
896 for (j = 0; j < EDMA_MAX_SLOTS; j++)
897 echan->slot[j] = -1;
898 }
899}
900
Peter Ujfalusi2c88ee62014-04-14 14:42:01 +0300901#define EDMA_DMA_BUSWIDTHS (BIT(DMA_SLAVE_BUSWIDTH_1_BYTE) | \
902 BIT(DMA_SLAVE_BUSWIDTH_2_BYTES) | \
903 BIT(DMA_SLAVE_BUSWIDTH_4_BYTES))
904
905static int edma_dma_device_slave_caps(struct dma_chan *dchan,
906 struct dma_slave_caps *caps)
907{
908 caps->src_addr_widths = EDMA_DMA_BUSWIDTHS;
909 caps->dstn_addr_widths = EDMA_DMA_BUSWIDTHS;
910 caps->directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
911 caps->cmd_pause = true;
912 caps->cmd_terminate = true;
913 caps->residue_granularity = DMA_RESIDUE_GRANULARITY_DESCRIPTOR;
914
915 return 0;
916}
917
Matt Porterc2dde5f2012-08-22 21:09:34 -0400918static void edma_dma_init(struct edma_cc *ecc, struct dma_device *dma,
919 struct device *dev)
920{
921 dma->device_prep_slave_sg = edma_prep_slave_sg;
Joel Fernandes50a9c702013-10-31 16:31:23 -0500922 dma->device_prep_dma_cyclic = edma_prep_dma_cyclic;
Joel Fernandes8cc3e302014-04-18 21:50:33 -0500923 dma->device_prep_dma_memcpy = edma_prep_dma_memcpy;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400924 dma->device_alloc_chan_resources = edma_alloc_chan_resources;
925 dma->device_free_chan_resources = edma_free_chan_resources;
926 dma->device_issue_pending = edma_issue_pending;
927 dma->device_tx_status = edma_tx_status;
928 dma->device_control = edma_control;
Peter Ujfalusi2c88ee62014-04-14 14:42:01 +0300929 dma->device_slave_caps = edma_dma_device_slave_caps;
Matt Porterc2dde5f2012-08-22 21:09:34 -0400930 dma->dev = dev;
931
Joel Fernandes8cc3e302014-04-18 21:50:33 -0500932 /*
933 * code using dma memcpy must make sure alignment of
934 * length is at dma->copy_align boundary.
935 */
936 dma->copy_align = DMA_SLAVE_BUSWIDTH_4_BYTES;
937
Matt Porterc2dde5f2012-08-22 21:09:34 -0400938 INIT_LIST_HEAD(&dma->channels);
939}
940
Bill Pemberton463a1f82012-11-19 13:22:55 -0500941static int edma_probe(struct platform_device *pdev)
Matt Porterc2dde5f2012-08-22 21:09:34 -0400942{
943 struct edma_cc *ecc;
944 int ret;
945
Russell King94cb0e72013-06-27 13:45:16 +0100946 ret = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
947 if (ret)
948 return ret;
949
Matt Porterc2dde5f2012-08-22 21:09:34 -0400950 ecc = devm_kzalloc(&pdev->dev, sizeof(*ecc), GFP_KERNEL);
951 if (!ecc) {
952 dev_err(&pdev->dev, "Can't allocate controller\n");
953 return -ENOMEM;
954 }
955
956 ecc->ctlr = pdev->id;
957 ecc->dummy_slot = edma_alloc_slot(ecc->ctlr, EDMA_SLOT_ANY);
958 if (ecc->dummy_slot < 0) {
959 dev_err(&pdev->dev, "Can't allocate PaRAM dummy slot\n");
960 return -EIO;
961 }
962
963 dma_cap_zero(ecc->dma_slave.cap_mask);
964 dma_cap_set(DMA_SLAVE, ecc->dma_slave.cap_mask);
Peter Ujfalusi232b223d2014-04-14 14:42:00 +0300965 dma_cap_set(DMA_CYCLIC, ecc->dma_slave.cap_mask);
Joel Fernandes8cc3e302014-04-18 21:50:33 -0500966 dma_cap_set(DMA_MEMCPY, ecc->dma_slave.cap_mask);
Matt Porterc2dde5f2012-08-22 21:09:34 -0400967
968 edma_dma_init(ecc, &ecc->dma_slave, &pdev->dev);
969
970 edma_chan_init(ecc, &ecc->dma_slave, ecc->slave_chans);
971
972 ret = dma_async_device_register(&ecc->dma_slave);
973 if (ret)
974 goto err_reg1;
975
976 platform_set_drvdata(pdev, ecc);
977
978 dev_info(&pdev->dev, "TI EDMA DMA engine driver\n");
979
980 return 0;
981
982err_reg1:
983 edma_free_slot(ecc->dummy_slot);
984 return ret;
985}
986
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -0800987static int edma_remove(struct platform_device *pdev)
Matt Porterc2dde5f2012-08-22 21:09:34 -0400988{
989 struct device *dev = &pdev->dev;
990 struct edma_cc *ecc = dev_get_drvdata(dev);
991
992 dma_async_device_unregister(&ecc->dma_slave);
993 edma_free_slot(ecc->dummy_slot);
994
995 return 0;
996}
997
998static struct platform_driver edma_driver = {
999 .probe = edma_probe,
Bill Pembertona7d6e3e2012-11-19 13:20:04 -05001000 .remove = edma_remove,
Matt Porterc2dde5f2012-08-22 21:09:34 -04001001 .driver = {
1002 .name = "edma-dma-engine",
1003 .owner = THIS_MODULE,
1004 },
1005};
1006
1007bool edma_filter_fn(struct dma_chan *chan, void *param)
1008{
1009 if (chan->device->dev->driver == &edma_driver.driver) {
1010 struct edma_chan *echan = to_edma_chan(chan);
1011 unsigned ch_req = *(unsigned *)param;
1012 return ch_req == echan->ch_num;
1013 }
1014 return false;
1015}
1016EXPORT_SYMBOL(edma_filter_fn);
1017
1018static struct platform_device *pdev0, *pdev1;
1019
1020static const struct platform_device_info edma_dev_info0 = {
1021 .name = "edma-dma-engine",
1022 .id = 0,
Russell King94cb0e72013-06-27 13:45:16 +01001023 .dma_mask = DMA_BIT_MASK(32),
Matt Porterc2dde5f2012-08-22 21:09:34 -04001024};
1025
1026static const struct platform_device_info edma_dev_info1 = {
1027 .name = "edma-dma-engine",
1028 .id = 1,
Russell King94cb0e72013-06-27 13:45:16 +01001029 .dma_mask = DMA_BIT_MASK(32),
Matt Porterc2dde5f2012-08-22 21:09:34 -04001030};
1031
1032static int edma_init(void)
1033{
1034 int ret = platform_driver_register(&edma_driver);
1035
1036 if (ret == 0) {
1037 pdev0 = platform_device_register_full(&edma_dev_info0);
1038 if (IS_ERR(pdev0)) {
1039 platform_driver_unregister(&edma_driver);
1040 ret = PTR_ERR(pdev0);
1041 goto out;
1042 }
1043 }
1044
1045 if (EDMA_CTLRS == 2) {
1046 pdev1 = platform_device_register_full(&edma_dev_info1);
1047 if (IS_ERR(pdev1)) {
1048 platform_driver_unregister(&edma_driver);
1049 platform_device_unregister(pdev0);
1050 ret = PTR_ERR(pdev1);
1051 }
Matt Porterc2dde5f2012-08-22 21:09:34 -04001052 }
1053
1054out:
1055 return ret;
1056}
1057subsys_initcall(edma_init);
1058
1059static void __exit edma_exit(void)
1060{
1061 platform_device_unregister(pdev0);
1062 if (pdev1)
1063 platform_device_unregister(pdev1);
1064 platform_driver_unregister(&edma_driver);
1065}
1066module_exit(edma_exit);
1067
Josh Boyerd71505b2013-09-04 10:32:50 -04001068MODULE_AUTHOR("Matt Porter <matt.porter@linaro.org>");
Matt Porterc2dde5f2012-08-22 21:09:34 -04001069MODULE_DESCRIPTION("TI EDMA DMA engine driver");
1070MODULE_LICENSE("GPL v2");