blob: 6ad30e2c5038351ed80e6abc8b965c9b1efa38f5 [file] [log] [blame]
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +08001/*
2 * Driver For Marvell Two-channel DMA Engine
3 *
4 * Copyright: Marvell International Ltd.
5 *
6 * The code contained herein is licensed under the GNU General Public
7 * License. You may obtain a copy of the GNU General Public License
8 * Version 2 or later at the following locations:
9 *
10 */
11
Thierry Reding73312052013-01-21 11:09:00 +010012#include <linux/err.h>
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +080013#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/types.h>
16#include <linux/interrupt.h>
17#include <linux/dma-mapping.h>
18#include <linux/slab.h>
19#include <linux/dmaengine.h>
20#include <linux/platform_device.h>
21#include <linux/device.h>
22#include <mach/regs-icu.h>
Arnd Bergmann293b2da2012-08-24 15:16:48 +020023#include <linux/platform_data/dma-mmp_tdma.h>
Zhangfei Gaof1a77572012-09-03 11:03:46 +080024#include <linux/of_device.h>
Nenghua Cao7dedc002014-01-20 20:39:01 +080025#include <linux/of_dma.h>
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +080026
27#include "dmaengine.h"
28
29/*
30 * Two-Channel DMA registers
31 */
32#define TDBCR 0x00 /* Byte Count */
33#define TDSAR 0x10 /* Src Addr */
34#define TDDAR 0x20 /* Dst Addr */
35#define TDNDPR 0x30 /* Next Desc */
36#define TDCR 0x40 /* Control */
37#define TDCP 0x60 /* Priority*/
38#define TDCDPR 0x70 /* Current Desc */
39#define TDIMR 0x80 /* Int Mask */
40#define TDISR 0xa0 /* Int Status */
41
42/* Two-Channel DMA Control Register */
43#define TDCR_SSZ_8_BITS (0x0 << 22) /* Sample Size */
44#define TDCR_SSZ_12_BITS (0x1 << 22)
45#define TDCR_SSZ_16_BITS (0x2 << 22)
46#define TDCR_SSZ_20_BITS (0x3 << 22)
47#define TDCR_SSZ_24_BITS (0x4 << 22)
48#define TDCR_SSZ_32_BITS (0x5 << 22)
49#define TDCR_SSZ_SHIFT (0x1 << 22)
50#define TDCR_SSZ_MASK (0x7 << 22)
51#define TDCR_SSPMOD (0x1 << 21) /* SSP MOD */
52#define TDCR_ABR (0x1 << 20) /* Channel Abort */
53#define TDCR_CDE (0x1 << 17) /* Close Desc Enable */
54#define TDCR_PACKMOD (0x1 << 16) /* Pack Mode (ADMA Only) */
55#define TDCR_CHANACT (0x1 << 14) /* Channel Active */
56#define TDCR_FETCHND (0x1 << 13) /* Fetch Next Desc */
57#define TDCR_CHANEN (0x1 << 12) /* Channel Enable */
58#define TDCR_INTMODE (0x1 << 10) /* Interrupt Mode */
59#define TDCR_CHAINMOD (0x1 << 9) /* Chain Mode */
60#define TDCR_BURSTSZ_MSK (0x7 << 6) /* Burst Size */
61#define TDCR_BURSTSZ_4B (0x0 << 6)
62#define TDCR_BURSTSZ_8B (0x1 << 6)
63#define TDCR_BURSTSZ_16B (0x3 << 6)
64#define TDCR_BURSTSZ_32B (0x6 << 6)
65#define TDCR_BURSTSZ_64B (0x7 << 6)
Qiao Zhou20a90b02013-10-11 09:07:01 +080066#define TDCR_BURSTSZ_SQU_1B (0x5 << 6)
67#define TDCR_BURSTSZ_SQU_2B (0x6 << 6)
68#define TDCR_BURSTSZ_SQU_4B (0x0 << 6)
69#define TDCR_BURSTSZ_SQU_8B (0x1 << 6)
70#define TDCR_BURSTSZ_SQU_16B (0x3 << 6)
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +080071#define TDCR_BURSTSZ_SQU_32B (0x7 << 6)
72#define TDCR_BURSTSZ_128B (0x5 << 6)
73#define TDCR_DSTDIR_MSK (0x3 << 4) /* Dst Direction */
74#define TDCR_DSTDIR_ADDR_HOLD (0x2 << 4) /* Dst Addr Hold */
75#define TDCR_DSTDIR_ADDR_INC (0x0 << 4) /* Dst Addr Increment */
76#define TDCR_SRCDIR_MSK (0x3 << 2) /* Src Direction */
77#define TDCR_SRCDIR_ADDR_HOLD (0x2 << 2) /* Src Addr Hold */
78#define TDCR_SRCDIR_ADDR_INC (0x0 << 2) /* Src Addr Increment */
79#define TDCR_DSTDESCCONT (0x1 << 1)
80#define TDCR_SRCDESTCONT (0x1 << 0)
81
82/* Two-Channel DMA Int Mask Register */
83#define TDIMR_COMP (0x1 << 0)
84
85/* Two-Channel DMA Int Status Register */
86#define TDISR_COMP (0x1 << 0)
87
88/*
89 * Two-Channel DMA Descriptor Struct
90 * NOTE: desc's buf must be aligned to 16 bytes.
91 */
92struct mmp_tdma_desc {
93 u32 byte_cnt;
94 u32 src_addr;
95 u32 dst_addr;
96 u32 nxt_desc;
97};
98
99enum mmp_tdma_type {
100 MMP_AUD_TDMA = 0,
101 PXA910_SQU,
102};
103
104#define TDMA_ALIGNMENT 3
105#define TDMA_MAX_XFER_BYTES SZ_64K
106
107struct mmp_tdma_chan {
108 struct device *dev;
109 struct dma_chan chan;
110 struct dma_async_tx_descriptor desc;
111 struct tasklet_struct tasklet;
112
113 struct mmp_tdma_desc *desc_arr;
114 phys_addr_t desc_arr_phys;
115 int desc_num;
116 enum dma_transfer_direction dir;
117 dma_addr_t dev_addr;
118 u32 burst_sz;
119 enum dma_slave_buswidth buswidth;
120 enum dma_status status;
121
122 int idx;
123 enum mmp_tdma_type type;
124 int irq;
Vinod Koul9d0f1fa62013-11-28 14:59:39 +0530125 void __iomem *reg_base;
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800126
127 size_t buf_len;
128 size_t period_len;
129 size_t pos;
Nenghua Cao3b0f4a52013-12-13 16:14:31 +0800130
131 struct gen_pool *pool;
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800132};
133
134#define TDMA_CHANNEL_NUM 2
135struct mmp_tdma_device {
136 struct device *dev;
137 void __iomem *base;
138 struct dma_device device;
139 struct mmp_tdma_chan *tdmac[TDMA_CHANNEL_NUM];
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800140};
141
142#define to_mmp_tdma_chan(dchan) container_of(dchan, struct mmp_tdma_chan, chan)
143
144static void mmp_tdma_chan_set_desc(struct mmp_tdma_chan *tdmac, dma_addr_t phys)
145{
146 writel(phys, tdmac->reg_base + TDNDPR);
147 writel(readl(tdmac->reg_base + TDCR) | TDCR_FETCHND,
148 tdmac->reg_base + TDCR);
149}
150
151static void mmp_tdma_enable_chan(struct mmp_tdma_chan *tdmac)
152{
153 /* enable irq */
154 writel(TDIMR_COMP, tdmac->reg_base + TDIMR);
155 /* enable dma chan */
156 writel(readl(tdmac->reg_base + TDCR) | TDCR_CHANEN,
157 tdmac->reg_base + TDCR);
158 tdmac->status = DMA_IN_PROGRESS;
159}
160
161static void mmp_tdma_disable_chan(struct mmp_tdma_chan *tdmac)
162{
163 writel(readl(tdmac->reg_base + TDCR) & ~TDCR_CHANEN,
164 tdmac->reg_base + TDCR);
Qiao Zhou8e3c5182013-06-15 12:51:48 +0800165
166 /* disable irq */
167 writel(0, tdmac->reg_base + TDIMR);
168
Vinod Koulf64eabd2013-10-16 20:50:36 +0530169 tdmac->status = DMA_COMPLETE;
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800170}
171
172static void mmp_tdma_resume_chan(struct mmp_tdma_chan *tdmac)
173{
174 writel(readl(tdmac->reg_base + TDCR) | TDCR_CHANEN,
175 tdmac->reg_base + TDCR);
176 tdmac->status = DMA_IN_PROGRESS;
177}
178
179static void mmp_tdma_pause_chan(struct mmp_tdma_chan *tdmac)
180{
181 writel(readl(tdmac->reg_base + TDCR) & ~TDCR_CHANEN,
182 tdmac->reg_base + TDCR);
183 tdmac->status = DMA_PAUSED;
184}
185
186static int mmp_tdma_config_chan(struct mmp_tdma_chan *tdmac)
187{
Vinod Koula9ebbcd2013-11-29 10:52:52 +0530188 unsigned int tdcr = 0;
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800189
190 mmp_tdma_disable_chan(tdmac);
191
192 if (tdmac->dir == DMA_MEM_TO_DEV)
193 tdcr = TDCR_DSTDIR_ADDR_HOLD | TDCR_SRCDIR_ADDR_INC;
194 else if (tdmac->dir == DMA_DEV_TO_MEM)
195 tdcr = TDCR_SRCDIR_ADDR_HOLD | TDCR_DSTDIR_ADDR_INC;
196
197 if (tdmac->type == MMP_AUD_TDMA) {
198 tdcr |= TDCR_PACKMOD;
199
200 switch (tdmac->burst_sz) {
201 case 4:
202 tdcr |= TDCR_BURSTSZ_4B;
203 break;
204 case 8:
205 tdcr |= TDCR_BURSTSZ_8B;
206 break;
207 case 16:
208 tdcr |= TDCR_BURSTSZ_16B;
209 break;
210 case 32:
211 tdcr |= TDCR_BURSTSZ_32B;
212 break;
213 case 64:
214 tdcr |= TDCR_BURSTSZ_64B;
215 break;
216 case 128:
217 tdcr |= TDCR_BURSTSZ_128B;
218 break;
219 default:
220 dev_err(tdmac->dev, "mmp_tdma: unknown burst size.\n");
221 return -EINVAL;
222 }
223
224 switch (tdmac->buswidth) {
225 case DMA_SLAVE_BUSWIDTH_1_BYTE:
226 tdcr |= TDCR_SSZ_8_BITS;
227 break;
228 case DMA_SLAVE_BUSWIDTH_2_BYTES:
229 tdcr |= TDCR_SSZ_16_BITS;
230 break;
231 case DMA_SLAVE_BUSWIDTH_4_BYTES:
232 tdcr |= TDCR_SSZ_32_BITS;
233 break;
234 default:
235 dev_err(tdmac->dev, "mmp_tdma: unknown bus size.\n");
236 return -EINVAL;
237 }
238 } else if (tdmac->type == PXA910_SQU) {
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800239 tdcr |= TDCR_SSPMOD;
Qiao Zhou20a90b02013-10-11 09:07:01 +0800240
241 switch (tdmac->burst_sz) {
242 case 1:
243 tdcr |= TDCR_BURSTSZ_SQU_1B;
244 break;
245 case 2:
246 tdcr |= TDCR_BURSTSZ_SQU_2B;
247 break;
248 case 4:
249 tdcr |= TDCR_BURSTSZ_SQU_4B;
250 break;
251 case 8:
252 tdcr |= TDCR_BURSTSZ_SQU_8B;
253 break;
254 case 16:
255 tdcr |= TDCR_BURSTSZ_SQU_16B;
256 break;
257 case 32:
258 tdcr |= TDCR_BURSTSZ_SQU_32B;
259 break;
260 default:
261 dev_err(tdmac->dev, "mmp_tdma: unknown burst size.\n");
262 return -EINVAL;
263 }
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800264 }
265
266 writel(tdcr, tdmac->reg_base + TDCR);
267 return 0;
268}
269
270static int mmp_tdma_clear_chan_irq(struct mmp_tdma_chan *tdmac)
271{
272 u32 reg = readl(tdmac->reg_base + TDISR);
273
274 if (reg & TDISR_COMP) {
275 /* clear irq */
276 reg &= ~TDISR_COMP;
277 writel(reg, tdmac->reg_base + TDISR);
278
279 return 0;
280 }
281 return -EAGAIN;
282}
283
284static irqreturn_t mmp_tdma_chan_handler(int irq, void *dev_id)
285{
286 struct mmp_tdma_chan *tdmac = dev_id;
287
288 if (mmp_tdma_clear_chan_irq(tdmac) == 0) {
289 tdmac->pos = (tdmac->pos + tdmac->period_len) % tdmac->buf_len;
290 tasklet_schedule(&tdmac->tasklet);
291 return IRQ_HANDLED;
292 } else
293 return IRQ_NONE;
294}
295
296static irqreturn_t mmp_tdma_int_handler(int irq, void *dev_id)
297{
298 struct mmp_tdma_device *tdev = dev_id;
299 int i, ret;
300 int irq_num = 0;
301
302 for (i = 0; i < TDMA_CHANNEL_NUM; i++) {
303 struct mmp_tdma_chan *tdmac = tdev->tdmac[i];
304
305 ret = mmp_tdma_chan_handler(irq, tdmac);
306 if (ret == IRQ_HANDLED)
307 irq_num++;
308 }
309
310 if (irq_num)
311 return IRQ_HANDLED;
312 else
313 return IRQ_NONE;
314}
315
316static void dma_do_tasklet(unsigned long data)
317{
318 struct mmp_tdma_chan *tdmac = (struct mmp_tdma_chan *)data;
319
320 if (tdmac->desc.callback)
321 tdmac->desc.callback(tdmac->desc.callback_param);
322
323}
324
325static void mmp_tdma_free_descriptor(struct mmp_tdma_chan *tdmac)
326{
327 struct gen_pool *gpool;
328 int size = tdmac->desc_num * sizeof(struct mmp_tdma_desc);
329
Nenghua Cao3b0f4a52013-12-13 16:14:31 +0800330 gpool = tdmac->pool;
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800331 if (tdmac->desc_arr)
332 gen_pool_free(gpool, (unsigned long)tdmac->desc_arr,
333 size);
334 tdmac->desc_arr = NULL;
335
336 return;
337}
338
339static dma_cookie_t mmp_tdma_tx_submit(struct dma_async_tx_descriptor *tx)
340{
341 struct mmp_tdma_chan *tdmac = to_mmp_tdma_chan(tx->chan);
342
343 mmp_tdma_chan_set_desc(tdmac, tdmac->desc_arr_phys);
344
345 return 0;
346}
347
348static int mmp_tdma_alloc_chan_resources(struct dma_chan *chan)
349{
350 struct mmp_tdma_chan *tdmac = to_mmp_tdma_chan(chan);
351 int ret;
352
353 dma_async_tx_descriptor_init(&tdmac->desc, chan);
354 tdmac->desc.tx_submit = mmp_tdma_tx_submit;
355
356 if (tdmac->irq) {
357 ret = devm_request_irq(tdmac->dev, tdmac->irq,
Michael Opdenacker174b5372013-10-13 07:10:51 +0200358 mmp_tdma_chan_handler, 0, "tdma", tdmac);
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800359 if (ret)
360 return ret;
361 }
362 return 1;
363}
364
365static void mmp_tdma_free_chan_resources(struct dma_chan *chan)
366{
367 struct mmp_tdma_chan *tdmac = to_mmp_tdma_chan(chan);
368
369 if (tdmac->irq)
370 devm_free_irq(tdmac->dev, tdmac->irq, tdmac);
371 mmp_tdma_free_descriptor(tdmac);
372 return;
373}
374
375struct mmp_tdma_desc *mmp_tdma_alloc_descriptor(struct mmp_tdma_chan *tdmac)
376{
377 struct gen_pool *gpool;
378 int size = tdmac->desc_num * sizeof(struct mmp_tdma_desc);
379
Nenghua Cao3b0f4a52013-12-13 16:14:31 +0800380 gpool = tdmac->pool;
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800381 if (!gpool)
382 return NULL;
383
Nicolin Chena6dd30e2013-11-12 15:09:55 -0800384 tdmac->desc_arr = gen_pool_dma_alloc(gpool, size, &tdmac->desc_arr_phys);
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800385
386 return tdmac->desc_arr;
387}
388
389static struct dma_async_tx_descriptor *mmp_tdma_prep_dma_cyclic(
390 struct dma_chan *chan, dma_addr_t dma_addr, size_t buf_len,
391 size_t period_len, enum dma_transfer_direction direction,
Laurent Pinchart31c1e5a2014-08-01 12:20:10 +0200392 unsigned long flags)
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800393{
394 struct mmp_tdma_chan *tdmac = to_mmp_tdma_chan(chan);
395 struct mmp_tdma_desc *desc;
396 int num_periods = buf_len / period_len;
397 int i = 0, buf = 0;
398
Vinod Koulf64eabd2013-10-16 20:50:36 +0530399 if (tdmac->status != DMA_COMPLETE)
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800400 return NULL;
401
402 if (period_len > TDMA_MAX_XFER_BYTES) {
403 dev_err(tdmac->dev,
404 "maximum period size exceeded: %d > %d\n",
405 period_len, TDMA_MAX_XFER_BYTES);
406 goto err_out;
407 }
408
409 tdmac->status = DMA_IN_PROGRESS;
410 tdmac->desc_num = num_periods;
411 desc = mmp_tdma_alloc_descriptor(tdmac);
412 if (!desc)
413 goto err_out;
414
415 while (buf < buf_len) {
416 desc = &tdmac->desc_arr[i];
417
418 if (i + 1 == num_periods)
419 desc->nxt_desc = tdmac->desc_arr_phys;
420 else
421 desc->nxt_desc = tdmac->desc_arr_phys +
422 sizeof(*desc) * (i + 1);
423
424 if (direction == DMA_MEM_TO_DEV) {
425 desc->src_addr = dma_addr;
426 desc->dst_addr = tdmac->dev_addr;
427 } else {
428 desc->src_addr = tdmac->dev_addr;
429 desc->dst_addr = dma_addr;
430 }
431 desc->byte_cnt = period_len;
432 dma_addr += period_len;
433 buf += period_len;
434 i++;
435 }
436
437 tdmac->buf_len = buf_len;
438 tdmac->period_len = period_len;
439 tdmac->pos = 0;
440
441 return &tdmac->desc;
442
443err_out:
444 tdmac->status = DMA_ERROR;
445 return NULL;
446}
447
448static int mmp_tdma_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
449 unsigned long arg)
450{
451 struct mmp_tdma_chan *tdmac = to_mmp_tdma_chan(chan);
452 struct dma_slave_config *dmaengine_cfg = (void *)arg;
453 int ret = 0;
454
455 switch (cmd) {
456 case DMA_TERMINATE_ALL:
457 mmp_tdma_disable_chan(tdmac);
458 break;
459 case DMA_PAUSE:
460 mmp_tdma_pause_chan(tdmac);
461 break;
462 case DMA_RESUME:
463 mmp_tdma_resume_chan(tdmac);
464 break;
465 case DMA_SLAVE_CONFIG:
466 if (dmaengine_cfg->direction == DMA_DEV_TO_MEM) {
467 tdmac->dev_addr = dmaengine_cfg->src_addr;
468 tdmac->burst_sz = dmaengine_cfg->src_maxburst;
469 tdmac->buswidth = dmaengine_cfg->src_addr_width;
470 } else {
471 tdmac->dev_addr = dmaengine_cfg->dst_addr;
472 tdmac->burst_sz = dmaengine_cfg->dst_maxburst;
473 tdmac->buswidth = dmaengine_cfg->dst_addr_width;
474 }
475 tdmac->dir = dmaengine_cfg->direction;
476 return mmp_tdma_config_chan(tdmac);
477 default:
478 ret = -ENOSYS;
479 }
480
481 return ret;
482}
483
484static enum dma_status mmp_tdma_tx_status(struct dma_chan *chan,
485 dma_cookie_t cookie, struct dma_tx_state *txstate)
486{
487 struct mmp_tdma_chan *tdmac = to_mmp_tdma_chan(chan);
488
Andy Shevchenkoc14d2bc2013-05-27 15:14:41 +0300489 dma_set_tx_state(txstate, chan->completed_cookie, chan->cookie,
490 tdmac->buf_len - tdmac->pos);
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800491
492 return tdmac->status;
493}
494
495static void mmp_tdma_issue_pending(struct dma_chan *chan)
496{
497 struct mmp_tdma_chan *tdmac = to_mmp_tdma_chan(chan);
498
499 mmp_tdma_enable_chan(tdmac);
500}
501
Greg Kroah-Hartman4bf27b82012-12-21 15:09:59 -0800502static int mmp_tdma_remove(struct platform_device *pdev)
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800503{
504 struct mmp_tdma_device *tdev = platform_get_drvdata(pdev);
505
506 dma_async_device_unregister(&tdev->device);
507 return 0;
508}
509
Bill Pemberton463a1f82012-11-19 13:22:55 -0500510static int mmp_tdma_chan_init(struct mmp_tdma_device *tdev,
Nenghua Cao3b0f4a52013-12-13 16:14:31 +0800511 int idx, int irq,
512 int type, struct gen_pool *pool)
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800513{
514 struct mmp_tdma_chan *tdmac;
515
516 if (idx >= TDMA_CHANNEL_NUM) {
517 dev_err(tdev->dev, "too many channels for device!\n");
518 return -EINVAL;
519 }
520
521 /* alloc channel */
522 tdmac = devm_kzalloc(tdev->dev, sizeof(*tdmac), GFP_KERNEL);
523 if (!tdmac) {
524 dev_err(tdev->dev, "no free memory for DMA channels!\n");
525 return -ENOMEM;
526 }
527 if (irq)
Zhangfei Gaof1a77572012-09-03 11:03:46 +0800528 tdmac->irq = irq;
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800529 tdmac->dev = tdev->dev;
530 tdmac->chan.device = &tdev->device;
531 tdmac->idx = idx;
532 tdmac->type = type;
Vinod Koul9d0f1fa62013-11-28 14:59:39 +0530533 tdmac->reg_base = tdev->base + idx * 4;
Nenghua Cao3b0f4a52013-12-13 16:14:31 +0800534 tdmac->pool = pool;
Vinod Koulf64eabd2013-10-16 20:50:36 +0530535 tdmac->status = DMA_COMPLETE;
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800536 tdev->tdmac[tdmac->idx] = tdmac;
537 tasklet_init(&tdmac->tasklet, dma_do_tasklet, (unsigned long)tdmac);
538
539 /* add the channel to tdma_chan list */
540 list_add_tail(&tdmac->chan.device_node,
541 &tdev->device.channels);
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800542 return 0;
543}
544
Nenghua Cao7dedc002014-01-20 20:39:01 +0800545struct mmp_tdma_filter_param {
546 struct device_node *of_node;
547 unsigned int chan_id;
548};
549
550static bool mmp_tdma_filter_fn(struct dma_chan *chan, void *fn_param)
551{
552 struct mmp_tdma_filter_param *param = fn_param;
553 struct mmp_tdma_chan *tdmac = to_mmp_tdma_chan(chan);
554 struct dma_device *pdma_device = tdmac->chan.device;
555
556 if (pdma_device->dev->of_node != param->of_node)
557 return false;
558
559 if (chan->chan_id != param->chan_id)
560 return false;
561
562 return true;
563}
564
565struct dma_chan *mmp_tdma_xlate(struct of_phandle_args *dma_spec,
566 struct of_dma *ofdma)
567{
568 struct mmp_tdma_device *tdev = ofdma->of_dma_data;
569 dma_cap_mask_t mask = tdev->device.cap_mask;
570 struct mmp_tdma_filter_param param;
571
572 if (dma_spec->args_count != 1)
573 return NULL;
574
575 param.of_node = ofdma->of_node;
576 param.chan_id = dma_spec->args[0];
577
578 if (param.chan_id >= TDMA_CHANNEL_NUM)
579 return NULL;
580
581 return dma_request_channel(mask, mmp_tdma_filter_fn, &param);
582}
583
Zhangfei Gaof1a77572012-09-03 11:03:46 +0800584static struct of_device_id mmp_tdma_dt_ids[] = {
585 { .compatible = "marvell,adma-1.0", .data = (void *)MMP_AUD_TDMA},
586 { .compatible = "marvell,pxa910-squ", .data = (void *)PXA910_SQU},
587 {}
588};
589MODULE_DEVICE_TABLE(of, mmp_tdma_dt_ids);
590
Bill Pemberton463a1f82012-11-19 13:22:55 -0500591static int mmp_tdma_probe(struct platform_device *pdev)
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800592{
Zhangfei Gaof1a77572012-09-03 11:03:46 +0800593 enum mmp_tdma_type type;
594 const struct of_device_id *of_id;
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800595 struct mmp_tdma_device *tdev;
596 struct resource *iores;
597 int i, ret;
Zhangfei Gaof1a77572012-09-03 11:03:46 +0800598 int irq = 0, irq_num = 0;
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800599 int chan_num = TDMA_CHANNEL_NUM;
Nenghua Cao3b0f4a52013-12-13 16:14:31 +0800600 struct gen_pool *pool;
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800601
Zhangfei Gaof1a77572012-09-03 11:03:46 +0800602 of_id = of_match_device(mmp_tdma_dt_ids, &pdev->dev);
603 if (of_id)
604 type = (enum mmp_tdma_type) of_id->data;
605 else
606 type = platform_get_device_id(pdev)->driver_data;
607
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800608 /* always have couple channels */
609 tdev = devm_kzalloc(&pdev->dev, sizeof(*tdev), GFP_KERNEL);
610 if (!tdev)
611 return -ENOMEM;
612
613 tdev->dev = &pdev->dev;
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800614
Zhangfei Gaof1a77572012-09-03 11:03:46 +0800615 for (i = 0; i < chan_num; i++) {
616 if (platform_get_irq(pdev, i) > 0)
617 irq_num++;
618 }
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800619
620 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Thierry Reding73312052013-01-21 11:09:00 +0100621 tdev->base = devm_ioremap_resource(&pdev->dev, iores);
622 if (IS_ERR(tdev->base))
623 return PTR_ERR(tdev->base);
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800624
Zhangfei Gaof1a77572012-09-03 11:03:46 +0800625 INIT_LIST_HEAD(&tdev->device.channels);
626
Nenghua Cao3b0f4a52013-12-13 16:14:31 +0800627 if (pdev->dev.of_node)
628 pool = of_get_named_gen_pool(pdev->dev.of_node, "asram", 0);
629 else
630 pool = sram_get_gpool("asram");
631 if (!pool) {
632 dev_err(&pdev->dev, "asram pool not available\n");
633 return -ENOMEM;
634 }
635
Zhangfei Gaof1a77572012-09-03 11:03:46 +0800636 if (irq_num != chan_num) {
637 irq = platform_get_irq(pdev, 0);
638 ret = devm_request_irq(&pdev->dev, irq,
Michael Opdenacker174b5372013-10-13 07:10:51 +0200639 mmp_tdma_int_handler, 0, "tdma", tdev);
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800640 if (ret)
641 return ret;
642 }
643
Zhangfei Gaof1a77572012-09-03 11:03:46 +0800644 /* initialize channel parameters */
645 for (i = 0; i < chan_num; i++) {
646 irq = (irq_num != chan_num) ? 0 : platform_get_irq(pdev, i);
Nenghua Cao3b0f4a52013-12-13 16:14:31 +0800647 ret = mmp_tdma_chan_init(tdev, i, irq, type, pool);
Zhangfei Gaof1a77572012-09-03 11:03:46 +0800648 if (ret)
649 return ret;
650 }
651
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800652 dma_cap_set(DMA_SLAVE, tdev->device.cap_mask);
653 dma_cap_set(DMA_CYCLIC, tdev->device.cap_mask);
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800654 tdev->device.dev = &pdev->dev;
655 tdev->device.device_alloc_chan_resources =
656 mmp_tdma_alloc_chan_resources;
657 tdev->device.device_free_chan_resources =
658 mmp_tdma_free_chan_resources;
659 tdev->device.device_prep_dma_cyclic = mmp_tdma_prep_dma_cyclic;
660 tdev->device.device_tx_status = mmp_tdma_tx_status;
661 tdev->device.device_issue_pending = mmp_tdma_issue_pending;
662 tdev->device.device_control = mmp_tdma_control;
663 tdev->device.copy_align = TDMA_ALIGNMENT;
664
665 dma_set_mask(&pdev->dev, DMA_BIT_MASK(64));
666 platform_set_drvdata(pdev, tdev);
667
668 ret = dma_async_device_register(&tdev->device);
669 if (ret) {
670 dev_err(tdev->device.dev, "unable to register\n");
671 return ret;
672 }
673
Nenghua Cao7dedc002014-01-20 20:39:01 +0800674 if (pdev->dev.of_node) {
675 ret = of_dma_controller_register(pdev->dev.of_node,
676 mmp_tdma_xlate, tdev);
677 if (ret) {
678 dev_err(tdev->device.dev,
679 "failed to register controller\n");
680 dma_async_device_unregister(&tdev->device);
681 }
682 }
683
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800684 dev_info(tdev->device.dev, "initialized\n");
685 return 0;
686}
687
688static const struct platform_device_id mmp_tdma_id_table[] = {
689 { "mmp-adma", MMP_AUD_TDMA },
690 { "pxa910-squ", PXA910_SQU },
691 { },
692};
693
694static struct platform_driver mmp_tdma_driver = {
695 .driver = {
696 .name = "mmp-tdma",
697 .owner = THIS_MODULE,
Zhangfei Gaof1a77572012-09-03 11:03:46 +0800698 .of_match_table = mmp_tdma_dt_ids,
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800699 },
700 .id_table = mmp_tdma_id_table,
701 .probe = mmp_tdma_probe,
Bill Pembertona7d6e3e2012-11-19 13:20:04 -0500702 .remove = mmp_tdma_remove,
Zhangfei Gaoc6da0ba2012-06-15 11:04:08 +0800703};
704
705module_platform_driver(mmp_tdma_driver);
706
707MODULE_LICENSE("GPL");
708MODULE_DESCRIPTION("MMP Two-Channel DMA Driver");
709MODULE_ALIAS("platform:mmp-tdma");
710MODULE_AUTHOR("Leo Yan <leoy@marvell.com>");
711MODULE_AUTHOR("Zhangfei Gao <zhangfei.gao@marvell.com>");