blob: 50e64e113ffb1b2071566f78a7f3ce070c95f4de [file] [log] [blame]
Shawn Guoa580b8c2011-02-27 00:47:42 +08001/*
2 * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
3 *
4 * Refer to drivers/dma/imx-sdma.c
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 */
10
11#include <linux/init.h>
12#include <linux/types.h>
13#include <linux/mm.h>
14#include <linux/interrupt.h>
15#include <linux/clk.h>
16#include <linux/wait.h>
17#include <linux/sched.h>
18#include <linux/semaphore.h>
19#include <linux/device.h>
20#include <linux/dma-mapping.h>
21#include <linux/slab.h>
22#include <linux/platform_device.h>
23#include <linux/dmaengine.h>
24#include <linux/delay.h>
Dong Aisheng90c9abc2012-05-04 20:12:17 +080025#include <linux/module.h>
Dong Aishengf5b7efc2012-05-04 20:12:15 +080026#include <linux/stmp_device.h>
Dong Aisheng90c9abc2012-05-04 20:12:17 +080027#include <linux/of.h>
28#include <linux/of_device.h>
Shawn Guod84f6382013-02-26 09:42:09 +080029#include <linux/of_dma.h>
Markus Pargmannb2d63982013-10-29 08:47:45 +010030#include <linux/list.h>
Shawn Guoa580b8c2011-02-27 00:47:42 +080031
32#include <asm/irq.h>
Shawn Guoa580b8c2011-02-27 00:47:42 +080033
Russell King - ARM Linuxd2ebfb32012-03-06 22:34:26 +000034#include "dmaengine.h"
35
Shawn Guoa580b8c2011-02-27 00:47:42 +080036/*
37 * NOTE: The term "PIO" throughout the mxs-dma implementation means
38 * PIO mode of mxs apbh-dma and apbx-dma. With this working mode,
39 * dma can program the controller registers of peripheral devices.
40 */
41
Shawn Guo8c920132012-05-10 06:23:26 +080042#define dma_is_apbh(mxs_dma) ((mxs_dma)->type == MXS_DMA_APBH)
43#define apbh_is_old(mxs_dma) ((mxs_dma)->dev_id == IMX23_DMA)
Shawn Guoa580b8c2011-02-27 00:47:42 +080044
45#define HW_APBHX_CTRL0 0x000
46#define BM_APBH_CTRL0_APB_BURST8_EN (1 << 29)
47#define BM_APBH_CTRL0_APB_BURST_EN (1 << 28)
Shawn Guoa580b8c2011-02-27 00:47:42 +080048#define BP_APBH_CTRL0_RESET_CHANNEL 16
49#define HW_APBHX_CTRL1 0x010
50#define HW_APBHX_CTRL2 0x020
51#define HW_APBHX_CHANNEL_CTRL 0x030
52#define BP_APBHX_CHANNEL_CTRL_RESET_CHANNEL 16
Shawn Guobb11fb62012-05-07 14:14:08 +080053/*
54 * The offset of NXTCMDAR register is different per both dma type and version,
55 * while stride for each channel is all the same 0x70.
56 */
57#define HW_APBHX_CHn_NXTCMDAR(d, n) \
58 (((dma_is_apbh(d) && apbh_is_old(d)) ? 0x050 : 0x110) + (n) * 0x70)
59#define HW_APBHX_CHn_SEMA(d, n) \
60 (((dma_is_apbh(d) && apbh_is_old(d)) ? 0x080 : 0x140) + (n) * 0x70)
Markus Pargmann7b113042013-10-29 08:47:46 +010061#define HW_APBHX_CHn_BAR(d, n) \
62 (((dma_is_apbh(d) && apbh_is_old(d)) ? 0x070 : 0x130) + (n) * 0x70)
Markus Pargmann702e94d2013-10-29 08:47:47 +010063#define HW_APBX_CHn_DEBUG1(d, n) (0x150 + (n) * 0x70)
Shawn Guoa580b8c2011-02-27 00:47:42 +080064
65/*
66 * ccw bits definitions
67 *
68 * COMMAND: 0..1 (2)
69 * CHAIN: 2 (1)
70 * IRQ: 3 (1)
71 * NAND_LOCK: 4 (1) - not implemented
72 * NAND_WAIT4READY: 5 (1) - not implemented
73 * DEC_SEM: 6 (1)
74 * WAIT4END: 7 (1)
75 * HALT_ON_TERMINATE: 8 (1)
76 * TERMINATE_FLUSH: 9 (1)
77 * RESERVED: 10..11 (2)
78 * PIO_NUM: 12..15 (4)
79 */
80#define BP_CCW_COMMAND 0
81#define BM_CCW_COMMAND (3 << 0)
82#define CCW_CHAIN (1 << 2)
83#define CCW_IRQ (1 << 3)
84#define CCW_DEC_SEM (1 << 6)
85#define CCW_WAIT4END (1 << 7)
86#define CCW_HALT_ON_TERM (1 << 8)
87#define CCW_TERM_FLUSH (1 << 9)
88#define BP_CCW_PIO_NUM 12
89#define BM_CCW_PIO_NUM (0xf << 12)
90
91#define BF_CCW(value, field) (((value) << BP_CCW_##field) & BM_CCW_##field)
92
93#define MXS_DMA_CMD_NO_XFER 0
94#define MXS_DMA_CMD_WRITE 1
95#define MXS_DMA_CMD_READ 2
96#define MXS_DMA_CMD_DMA_SENSE 3 /* not implemented */
97
98struct mxs_dma_ccw {
99 u32 next;
100 u16 bits;
101 u16 xfer_bytes;
102#define MAX_XFER_BYTES 0xff00
103 u32 bufaddr;
104#define MXS_PIO_WORDS 16
105 u32 pio_words[MXS_PIO_WORDS];
106};
107
Marek Vasut5e97fa92012-09-04 06:04:25 +0200108#define CCW_BLOCK_SIZE (4 * PAGE_SIZE)
109#define NUM_CCW (int)(CCW_BLOCK_SIZE / sizeof(struct mxs_dma_ccw))
Shawn Guoa580b8c2011-02-27 00:47:42 +0800110
111struct mxs_dma_chan {
112 struct mxs_dma_engine *mxs_dma;
113 struct dma_chan chan;
114 struct dma_async_tx_descriptor desc;
115 struct tasklet_struct tasklet;
Fabio Estevamf2ad6992013-01-07 23:48:39 -0200116 unsigned int chan_irq;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800117 struct mxs_dma_ccw *ccw;
118 dma_addr_t ccw_phys;
Lothar Waßmann6d23ea42011-12-08 09:15:43 +0100119 int desc_count;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800120 enum dma_status status;
121 unsigned int flags;
Markus Pargmann2dcbdce2013-10-29 08:47:49 +0100122 bool reset;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800123#define MXS_DMA_SG_LOOP (1 << 0)
Markus Pargmann2dcbdce2013-10-29 08:47:49 +0100124#define MXS_DMA_USE_SEMAPHORE (1 << 1)
Shawn Guoa580b8c2011-02-27 00:47:42 +0800125};
126
127#define MXS_DMA_CHANNELS 16
128#define MXS_DMA_CHANNELS_MASK 0xffff
129
Shawn Guo8c920132012-05-10 06:23:26 +0800130enum mxs_dma_devtype {
131 MXS_DMA_APBH,
132 MXS_DMA_APBX,
133};
134
135enum mxs_dma_id {
136 IMX23_DMA,
137 IMX28_DMA,
138};
139
Shawn Guoa580b8c2011-02-27 00:47:42 +0800140struct mxs_dma_engine {
Shawn Guo8c920132012-05-10 06:23:26 +0800141 enum mxs_dma_id dev_id;
142 enum mxs_dma_devtype type;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800143 void __iomem *base;
144 struct clk *clk;
145 struct dma_device dma_device;
146 struct device_dma_parameters dma_parms;
147 struct mxs_dma_chan mxs_chans[MXS_DMA_CHANNELS];
Shawn Guod84f6382013-02-26 09:42:09 +0800148 struct platform_device *pdev;
149 unsigned int nr_channels;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800150};
151
Shawn Guo8c920132012-05-10 06:23:26 +0800152struct mxs_dma_type {
153 enum mxs_dma_id id;
154 enum mxs_dma_devtype type;
155};
156
157static struct mxs_dma_type mxs_dma_types[] = {
158 {
159 .id = IMX23_DMA,
160 .type = MXS_DMA_APBH,
161 }, {
162 .id = IMX23_DMA,
163 .type = MXS_DMA_APBX,
164 }, {
165 .id = IMX28_DMA,
166 .type = MXS_DMA_APBH,
167 }, {
168 .id = IMX28_DMA,
169 .type = MXS_DMA_APBX,
170 }
171};
172
Krzysztof Kozlowski0d850502015-05-02 00:57:47 +0900173static const struct platform_device_id mxs_dma_ids[] = {
Shawn Guo8c920132012-05-10 06:23:26 +0800174 {
175 .name = "imx23-dma-apbh",
176 .driver_data = (kernel_ulong_t) &mxs_dma_types[0],
177 }, {
178 .name = "imx23-dma-apbx",
179 .driver_data = (kernel_ulong_t) &mxs_dma_types[1],
180 }, {
181 .name = "imx28-dma-apbh",
182 .driver_data = (kernel_ulong_t) &mxs_dma_types[2],
183 }, {
184 .name = "imx28-dma-apbx",
185 .driver_data = (kernel_ulong_t) &mxs_dma_types[3],
186 }, {
187 /* end of list */
188 }
189};
190
Dong Aisheng90c9abc2012-05-04 20:12:17 +0800191static const struct of_device_id mxs_dma_dt_ids[] = {
192 { .compatible = "fsl,imx23-dma-apbh", .data = &mxs_dma_ids[0], },
193 { .compatible = "fsl,imx23-dma-apbx", .data = &mxs_dma_ids[1], },
194 { .compatible = "fsl,imx28-dma-apbh", .data = &mxs_dma_ids[2], },
195 { .compatible = "fsl,imx28-dma-apbx", .data = &mxs_dma_ids[3], },
196 { /* sentinel */ }
197};
198MODULE_DEVICE_TABLE(of, mxs_dma_dt_ids);
199
Shawn Guo8c920132012-05-10 06:23:26 +0800200static struct mxs_dma_chan *to_mxs_dma_chan(struct dma_chan *chan)
201{
202 return container_of(chan, struct mxs_dma_chan, chan);
203}
204
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100205static void mxs_dma_reset_chan(struct dma_chan *chan)
Shawn Guoa580b8c2011-02-27 00:47:42 +0800206{
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100207 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800208 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
209 int chan_id = mxs_chan->chan.chan_id;
210
Markus Pargmann2dcbdce2013-10-29 08:47:49 +0100211 /*
212 * mxs dma channel resets can cause a channel stall. To recover from a
213 * channel stall, we have to reset the whole DMA engine. To avoid this,
214 * we use cyclic DMA with semaphores, that are enhanced in
215 * mxs_dma_int_handler. To reset the channel, we can simply stop writing
216 * into the semaphore counter.
217 */
218 if (mxs_chan->flags & MXS_DMA_USE_SEMAPHORE &&
219 mxs_chan->flags & MXS_DMA_SG_LOOP) {
220 mxs_chan->reset = true;
221 } else if (dma_is_apbh(mxs_dma) && apbh_is_old(mxs_dma)) {
Shawn Guoa580b8c2011-02-27 00:47:42 +0800222 writel(1 << (chan_id + BP_APBH_CTRL0_RESET_CHANNEL),
Dong Aishengf5b7efc2012-05-04 20:12:15 +0800223 mxs_dma->base + HW_APBHX_CTRL0 + STMP_OFFSET_REG_SET);
Markus Pargmann702e94d2013-10-29 08:47:47 +0100224 } else {
225 unsigned long elapsed = 0;
226 const unsigned long max_wait = 50000; /* 50ms */
227 void __iomem *reg_dbg1 = mxs_dma->base +
228 HW_APBX_CHn_DEBUG1(mxs_dma, chan_id);
229
230 /*
231 * On i.MX28 APBX, the DMA channel can stop working if we reset
232 * the channel while it is in READ_FLUSH (0x08) state.
233 * We wait here until we leave the state. Then we trigger the
234 * reset. Waiting a maximum of 50ms, the kernel shouldn't crash
235 * because of this.
236 */
237 while ((readl(reg_dbg1) & 0xf) == 0x8 && elapsed < max_wait) {
238 udelay(100);
239 elapsed += 100;
240 }
241
242 if (elapsed >= max_wait)
243 dev_err(&mxs_chan->mxs_dma->pdev->dev,
244 "Failed waiting for the DMA channel %d to leave state READ_FLUSH, trying to reset channel in READ_FLUSH state now\n",
245 chan_id);
246
Shawn Guoa580b8c2011-02-27 00:47:42 +0800247 writel(1 << (chan_id + BP_APBHX_CHANNEL_CTRL_RESET_CHANNEL),
Dong Aishengf5b7efc2012-05-04 20:12:15 +0800248 mxs_dma->base + HW_APBHX_CHANNEL_CTRL + STMP_OFFSET_REG_SET);
Markus Pargmann702e94d2013-10-29 08:47:47 +0100249 }
Markus Pargmannbb3660f2013-10-29 08:47:48 +0100250
251 mxs_chan->status = DMA_COMPLETE;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800252}
253
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100254static void mxs_dma_enable_chan(struct dma_chan *chan)
Shawn Guoa580b8c2011-02-27 00:47:42 +0800255{
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100256 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800257 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
258 int chan_id = mxs_chan->chan.chan_id;
259
260 /* set cmd_addr up */
261 writel(mxs_chan->ccw_phys,
Shawn Guobb11fb62012-05-07 14:14:08 +0800262 mxs_dma->base + HW_APBHX_CHn_NXTCMDAR(mxs_dma, chan_id));
Shawn Guoa580b8c2011-02-27 00:47:42 +0800263
Shawn Guoa580b8c2011-02-27 00:47:42 +0800264 /* write 1 to SEMA to kick off the channel */
Markus Pargmann2dcbdce2013-10-29 08:47:49 +0100265 if (mxs_chan->flags & MXS_DMA_USE_SEMAPHORE &&
266 mxs_chan->flags & MXS_DMA_SG_LOOP) {
267 /* A cyclic DMA consists of at least 2 segments, so initialize
268 * the semaphore with 2 so we have enough time to add 1 to the
269 * semaphore if we need to */
270 writel(2, mxs_dma->base + HW_APBHX_CHn_SEMA(mxs_dma, chan_id));
271 } else {
272 writel(1, mxs_dma->base + HW_APBHX_CHn_SEMA(mxs_dma, chan_id));
273 }
274 mxs_chan->reset = false;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800275}
276
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100277static void mxs_dma_disable_chan(struct dma_chan *chan)
Shawn Guoa580b8c2011-02-27 00:47:42 +0800278{
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100279 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
280
Vinod Koul27375832013-10-16 20:51:30 +0530281 mxs_chan->status = DMA_COMPLETE;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800282}
283
Vinod Koula29c3952014-12-08 11:24:09 +0530284static int mxs_dma_pause_chan(struct dma_chan *chan)
Shawn Guoa580b8c2011-02-27 00:47:42 +0800285{
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100286 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800287 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
288 int chan_id = mxs_chan->chan.chan_id;
289
290 /* freeze the channel */
Shawn Guobb11fb62012-05-07 14:14:08 +0800291 if (dma_is_apbh(mxs_dma) && apbh_is_old(mxs_dma))
Shawn Guoa580b8c2011-02-27 00:47:42 +0800292 writel(1 << chan_id,
Dong Aishengf5b7efc2012-05-04 20:12:15 +0800293 mxs_dma->base + HW_APBHX_CTRL0 + STMP_OFFSET_REG_SET);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800294 else
295 writel(1 << chan_id,
Dong Aishengf5b7efc2012-05-04 20:12:15 +0800296 mxs_dma->base + HW_APBHX_CHANNEL_CTRL + STMP_OFFSET_REG_SET);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800297
298 mxs_chan->status = DMA_PAUSED;
Vinod Koula29c3952014-12-08 11:24:09 +0530299 return 0;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800300}
301
Vinod Koula29c3952014-12-08 11:24:09 +0530302static int mxs_dma_resume_chan(struct dma_chan *chan)
Shawn Guoa580b8c2011-02-27 00:47:42 +0800303{
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100304 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800305 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
306 int chan_id = mxs_chan->chan.chan_id;
307
308 /* unfreeze the channel */
Shawn Guobb11fb62012-05-07 14:14:08 +0800309 if (dma_is_apbh(mxs_dma) && apbh_is_old(mxs_dma))
Shawn Guoa580b8c2011-02-27 00:47:42 +0800310 writel(1 << chan_id,
Dong Aishengf5b7efc2012-05-04 20:12:15 +0800311 mxs_dma->base + HW_APBHX_CTRL0 + STMP_OFFSET_REG_CLR);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800312 else
313 writel(1 << chan_id,
Dong Aishengf5b7efc2012-05-04 20:12:15 +0800314 mxs_dma->base + HW_APBHX_CHANNEL_CTRL + STMP_OFFSET_REG_CLR);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800315
316 mxs_chan->status = DMA_IN_PROGRESS;
Vinod Koula29c3952014-12-08 11:24:09 +0530317 return 0;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800318}
319
Shawn Guoa580b8c2011-02-27 00:47:42 +0800320static dma_cookie_t mxs_dma_tx_submit(struct dma_async_tx_descriptor *tx)
321{
Russell King - ARM Linux884485e2012-03-06 22:34:46 +0000322 return dma_cookie_assign(tx);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800323}
324
325static void mxs_dma_tasklet(unsigned long data)
326{
327 struct mxs_dma_chan *mxs_chan = (struct mxs_dma_chan *) data;
328
Dave Jiang064370c2016-07-20 13:12:18 -0700329 dmaengine_desc_get_callback_invoke(&mxs_chan->desc, NULL);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800330}
331
Markus Pargmannb2d63982013-10-29 08:47:45 +0100332static int mxs_dma_irq_to_chan(struct mxs_dma_engine *mxs_dma, int irq)
333{
334 int i;
335
336 for (i = 0; i != mxs_dma->nr_channels; ++i)
337 if (mxs_dma->mxs_chans[i].chan_irq == irq)
338 return i;
339
340 return -EINVAL;
341}
342
Shawn Guoa580b8c2011-02-27 00:47:42 +0800343static irqreturn_t mxs_dma_int_handler(int irq, void *dev_id)
344{
345 struct mxs_dma_engine *mxs_dma = dev_id;
Markus Pargmannb2d63982013-10-29 08:47:45 +0100346 struct mxs_dma_chan *mxs_chan;
347 u32 completed;
348 u32 err;
349 int chan = mxs_dma_irq_to_chan(mxs_dma, irq);
350
351 if (chan < 0)
352 return IRQ_NONE;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800353
354 /* completion status */
Markus Pargmannb2d63982013-10-29 08:47:45 +0100355 completed = readl(mxs_dma->base + HW_APBHX_CTRL1);
356 completed = (completed >> chan) & 0x1;
357
358 /* Clear interrupt */
359 writel((1 << chan),
360 mxs_dma->base + HW_APBHX_CTRL1 + STMP_OFFSET_REG_CLR);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800361
362 /* error status */
Markus Pargmannb2d63982013-10-29 08:47:45 +0100363 err = readl(mxs_dma->base + HW_APBHX_CTRL2);
364 err &= (1 << (MXS_DMA_CHANNELS + chan)) | (1 << chan);
365
366 /*
367 * error status bit is in the upper 16 bits, error irq bit in the lower
368 * 16 bits. We transform it into a simpler error code:
369 * err: 0x00 = no error, 0x01 = TERMINATION, 0x02 = BUS_ERROR
370 */
371 err = (err >> (MXS_DMA_CHANNELS + chan)) + (err >> chan);
372
373 /* Clear error irq */
374 writel((1 << chan),
375 mxs_dma->base + HW_APBHX_CTRL2 + STMP_OFFSET_REG_CLR);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800376
377 /*
378 * When both completion and error of termination bits set at the
379 * same time, we do not take it as an error. IOW, it only becomes
Markus Pargmannb2d63982013-10-29 08:47:45 +0100380 * an error we need to handle here in case of either it's a bus
381 * error or a termination error with no completion. 0x01 is termination
382 * error, so we can subtract err & completed to get the real error case.
Shawn Guoa580b8c2011-02-27 00:47:42 +0800383 */
Markus Pargmannb2d63982013-10-29 08:47:45 +0100384 err -= err & completed;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800385
Markus Pargmannb2d63982013-10-29 08:47:45 +0100386 mxs_chan = &mxs_dma->mxs_chans[chan];
Shawn Guoa580b8c2011-02-27 00:47:42 +0800387
Markus Pargmannb2d63982013-10-29 08:47:45 +0100388 if (err) {
389 dev_dbg(mxs_dma->dma_device.dev,
390 "%s: error in channel %d\n", __func__,
391 chan);
392 mxs_chan->status = DMA_ERROR;
Vinod Koule0cad7a2014-12-07 23:07:38 +0530393 mxs_dma_reset_chan(&mxs_chan->chan);
Markus Pargmannbb3660f2013-10-29 08:47:48 +0100394 } else if (mxs_chan->status != DMA_COMPLETE) {
Markus Pargmann2dcbdce2013-10-29 08:47:49 +0100395 if (mxs_chan->flags & MXS_DMA_SG_LOOP) {
Markus Pargmannb2d63982013-10-29 08:47:45 +0100396 mxs_chan->status = DMA_IN_PROGRESS;
Markus Pargmann2dcbdce2013-10-29 08:47:49 +0100397 if (mxs_chan->flags & MXS_DMA_USE_SEMAPHORE)
398 writel(1, mxs_dma->base +
399 HW_APBHX_CHn_SEMA(mxs_dma, chan));
400 } else {
Markus Pargmannb2d63982013-10-29 08:47:45 +0100401 mxs_chan->status = DMA_COMPLETE;
Markus Pargmann2dcbdce2013-10-29 08:47:49 +0100402 }
Shawn Guoa580b8c2011-02-27 00:47:42 +0800403 }
404
Markus Pargmann2dcbdce2013-10-29 08:47:49 +0100405 if (mxs_chan->status == DMA_COMPLETE) {
406 if (mxs_chan->reset)
407 return IRQ_HANDLED;
Markus Pargmannb2d63982013-10-29 08:47:45 +0100408 dma_cookie_complete(&mxs_chan->desc);
Markus Pargmann2dcbdce2013-10-29 08:47:49 +0100409 }
Markus Pargmannb2d63982013-10-29 08:47:45 +0100410
411 /* schedule tasklet on this channel */
412 tasklet_schedule(&mxs_chan->tasklet);
413
Shawn Guoa580b8c2011-02-27 00:47:42 +0800414 return IRQ_HANDLED;
415}
416
417static int mxs_dma_alloc_chan_resources(struct dma_chan *chan)
418{
419 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800420 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
421 int ret;
422
Joe Perches9f92d222014-06-15 13:37:35 -0700423 mxs_chan->ccw = dma_zalloc_coherent(mxs_dma->dma_device.dev,
424 CCW_BLOCK_SIZE,
425 &mxs_chan->ccw_phys, GFP_KERNEL);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800426 if (!mxs_chan->ccw) {
427 ret = -ENOMEM;
428 goto err_alloc;
429 }
430
Shawn Guo95bfea12011-06-30 16:06:33 +0800431 if (mxs_chan->chan_irq != NO_IRQ) {
432 ret = request_irq(mxs_chan->chan_irq, mxs_dma_int_handler,
433 0, "mxs-dma", mxs_dma);
434 if (ret)
435 goto err_irq;
436 }
Shawn Guoa580b8c2011-02-27 00:47:42 +0800437
Shawn Guo759a2e32011-12-20 13:54:00 +0800438 ret = clk_prepare_enable(mxs_dma->clk);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800439 if (ret)
440 goto err_clk;
441
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100442 mxs_dma_reset_chan(chan);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800443
444 dma_async_tx_descriptor_init(&mxs_chan->desc, chan);
445 mxs_chan->desc.tx_submit = mxs_dma_tx_submit;
446
447 /* the descriptor is ready */
448 async_tx_ack(&mxs_chan->desc);
449
450 return 0;
451
452err_clk:
453 free_irq(mxs_chan->chan_irq, mxs_dma);
454err_irq:
Marek Vasut5e97fa92012-09-04 06:04:25 +0200455 dma_free_coherent(mxs_dma->dma_device.dev, CCW_BLOCK_SIZE,
Shawn Guoa580b8c2011-02-27 00:47:42 +0800456 mxs_chan->ccw, mxs_chan->ccw_phys);
457err_alloc:
458 return ret;
459}
460
461static void mxs_dma_free_chan_resources(struct dma_chan *chan)
462{
463 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
464 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
465
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100466 mxs_dma_disable_chan(chan);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800467
468 free_irq(mxs_chan->chan_irq, mxs_dma);
469
Marek Vasut5e97fa92012-09-04 06:04:25 +0200470 dma_free_coherent(mxs_dma->dma_device.dev, CCW_BLOCK_SIZE,
Shawn Guoa580b8c2011-02-27 00:47:42 +0800471 mxs_chan->ccw, mxs_chan->ccw_phys);
472
Shawn Guo759a2e32011-12-20 13:54:00 +0800473 clk_disable_unprepare(mxs_dma->clk);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800474}
475
Huang Shijie921de862012-02-16 14:17:33 +0800476/*
477 * How to use the flags for ->device_prep_slave_sg() :
478 * [1] If there is only one DMA command in the DMA chain, the code should be:
479 * ......
480 * ->device_prep_slave_sg(DMA_CTRL_ACK);
481 * ......
482 * [2] If there are two DMA commands in the DMA chain, the code should be
483 * ......
484 * ->device_prep_slave_sg(0);
485 * ......
486 * ->device_prep_slave_sg(DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
487 * ......
488 * [3] If there are more than two DMA commands in the DMA chain, the code
489 * should be:
490 * ......
491 * ->device_prep_slave_sg(0); // First
492 * ......
493 * ->device_prep_slave_sg(DMA_PREP_INTERRUPT [| DMA_CTRL_ACK]);
494 * ......
495 * ->device_prep_slave_sg(DMA_PREP_INTERRUPT | DMA_CTRL_ACK); // Last
496 * ......
497 */
Shawn Guoa580b8c2011-02-27 00:47:42 +0800498static struct dma_async_tx_descriptor *mxs_dma_prep_slave_sg(
499 struct dma_chan *chan, struct scatterlist *sgl,
Vinod Kouldb8196d2011-10-13 22:34:23 +0530500 unsigned int sg_len, enum dma_transfer_direction direction,
Linus Torvalds623ff772012-03-30 17:31:56 -0700501 unsigned long flags, void *context)
Shawn Guoa580b8c2011-02-27 00:47:42 +0800502{
503 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
504 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
505 struct mxs_dma_ccw *ccw;
506 struct scatterlist *sg;
Fabio Estevamf2ad6992013-01-07 23:48:39 -0200507 u32 i, j;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800508 u32 *pio;
Huang Shijie921de862012-02-16 14:17:33 +0800509 bool append = flags & DMA_PREP_INTERRUPT;
Lothar Waßmann6d23ea42011-12-08 09:15:43 +0100510 int idx = append ? mxs_chan->desc_count : 0;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800511
512 if (mxs_chan->status == DMA_IN_PROGRESS && !append)
513 return NULL;
514
515 if (sg_len + (append ? idx : 0) > NUM_CCW) {
516 dev_err(mxs_dma->dma_device.dev,
517 "maximum number of sg exceeded: %d > %d\n",
518 sg_len, NUM_CCW);
519 goto err_out;
520 }
521
522 mxs_chan->status = DMA_IN_PROGRESS;
523 mxs_chan->flags = 0;
524
525 /*
526 * If the sg is prepared with append flag set, the sg
527 * will be appended to the last prepared sg.
528 */
529 if (append) {
530 BUG_ON(idx < 1);
531 ccw = &mxs_chan->ccw[idx - 1];
532 ccw->next = mxs_chan->ccw_phys + sizeof(*ccw) * idx;
533 ccw->bits |= CCW_CHAIN;
534 ccw->bits &= ~CCW_IRQ;
535 ccw->bits &= ~CCW_DEC_SEM;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800536 } else {
537 idx = 0;
538 }
539
Shawn Guo62268ce2011-12-13 23:48:03 +0800540 if (direction == DMA_TRANS_NONE) {
Shawn Guoa580b8c2011-02-27 00:47:42 +0800541 ccw = &mxs_chan->ccw[idx++];
542 pio = (u32 *) sgl;
543
544 for (j = 0; j < sg_len;)
545 ccw->pio_words[j++] = *pio++;
546
547 ccw->bits = 0;
548 ccw->bits |= CCW_IRQ;
549 ccw->bits |= CCW_DEC_SEM;
Huang Shijie921de862012-02-16 14:17:33 +0800550 if (flags & DMA_CTRL_ACK)
551 ccw->bits |= CCW_WAIT4END;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800552 ccw->bits |= CCW_HALT_ON_TERM;
553 ccw->bits |= CCW_TERM_FLUSH;
554 ccw->bits |= BF_CCW(sg_len, PIO_NUM);
555 ccw->bits |= BF_CCW(MXS_DMA_CMD_NO_XFER, COMMAND);
556 } else {
557 for_each_sg(sgl, sg, sg_len, i) {
Lars-Peter Clausenfdaf9c42012-04-25 20:50:52 +0200558 if (sg_dma_len(sg) > MAX_XFER_BYTES) {
Shawn Guoa580b8c2011-02-27 00:47:42 +0800559 dev_err(mxs_dma->dma_device.dev, "maximum bytes for sg entry exceeded: %d > %d\n",
Lars-Peter Clausenfdaf9c42012-04-25 20:50:52 +0200560 sg_dma_len(sg), MAX_XFER_BYTES);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800561 goto err_out;
562 }
563
564 ccw = &mxs_chan->ccw[idx++];
565
566 ccw->next = mxs_chan->ccw_phys + sizeof(*ccw) * idx;
567 ccw->bufaddr = sg->dma_address;
Lars-Peter Clausenfdaf9c42012-04-25 20:50:52 +0200568 ccw->xfer_bytes = sg_dma_len(sg);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800569
570 ccw->bits = 0;
571 ccw->bits |= CCW_CHAIN;
572 ccw->bits |= CCW_HALT_ON_TERM;
573 ccw->bits |= CCW_TERM_FLUSH;
Vinod Kouldb8196d2011-10-13 22:34:23 +0530574 ccw->bits |= BF_CCW(direction == DMA_DEV_TO_MEM ?
Shawn Guoa580b8c2011-02-27 00:47:42 +0800575 MXS_DMA_CMD_WRITE : MXS_DMA_CMD_READ,
576 COMMAND);
577
578 if (i + 1 == sg_len) {
579 ccw->bits &= ~CCW_CHAIN;
580 ccw->bits |= CCW_IRQ;
581 ccw->bits |= CCW_DEC_SEM;
Huang Shijie921de862012-02-16 14:17:33 +0800582 if (flags & DMA_CTRL_ACK)
583 ccw->bits |= CCW_WAIT4END;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800584 }
585 }
586 }
Lothar Waßmann6d23ea42011-12-08 09:15:43 +0100587 mxs_chan->desc_count = idx;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800588
589 return &mxs_chan->desc;
590
591err_out:
592 mxs_chan->status = DMA_ERROR;
593 return NULL;
594}
595
596static struct dma_async_tx_descriptor *mxs_dma_prep_dma_cyclic(
597 struct dma_chan *chan, dma_addr_t dma_addr, size_t buf_len,
Alexandre Bounine185ecb52012-03-08 15:35:13 -0500598 size_t period_len, enum dma_transfer_direction direction,
Laurent Pinchart31c1e5a2014-08-01 12:20:10 +0200599 unsigned long flags)
Shawn Guoa580b8c2011-02-27 00:47:42 +0800600{
601 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
602 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
Fabio Estevamf2ad6992013-01-07 23:48:39 -0200603 u32 num_periods = buf_len / period_len;
604 u32 i = 0, buf = 0;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800605
606 if (mxs_chan->status == DMA_IN_PROGRESS)
607 return NULL;
608
609 mxs_chan->status = DMA_IN_PROGRESS;
610 mxs_chan->flags |= MXS_DMA_SG_LOOP;
Markus Pargmann2dcbdce2013-10-29 08:47:49 +0100611 mxs_chan->flags |= MXS_DMA_USE_SEMAPHORE;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800612
613 if (num_periods > NUM_CCW) {
614 dev_err(mxs_dma->dma_device.dev,
615 "maximum number of sg exceeded: %d > %d\n",
616 num_periods, NUM_CCW);
617 goto err_out;
618 }
619
620 if (period_len > MAX_XFER_BYTES) {
621 dev_err(mxs_dma->dma_device.dev,
622 "maximum period size exceeded: %d > %d\n",
623 period_len, MAX_XFER_BYTES);
624 goto err_out;
625 }
626
627 while (buf < buf_len) {
628 struct mxs_dma_ccw *ccw = &mxs_chan->ccw[i];
629
630 if (i + 1 == num_periods)
631 ccw->next = mxs_chan->ccw_phys;
632 else
633 ccw->next = mxs_chan->ccw_phys + sizeof(*ccw) * (i + 1);
634
635 ccw->bufaddr = dma_addr;
636 ccw->xfer_bytes = period_len;
637
638 ccw->bits = 0;
639 ccw->bits |= CCW_CHAIN;
640 ccw->bits |= CCW_IRQ;
641 ccw->bits |= CCW_HALT_ON_TERM;
642 ccw->bits |= CCW_TERM_FLUSH;
Markus Pargmann2dcbdce2013-10-29 08:47:49 +0100643 ccw->bits |= CCW_DEC_SEM;
Vinod Kouldb8196d2011-10-13 22:34:23 +0530644 ccw->bits |= BF_CCW(direction == DMA_DEV_TO_MEM ?
Shawn Guoa580b8c2011-02-27 00:47:42 +0800645 MXS_DMA_CMD_WRITE : MXS_DMA_CMD_READ, COMMAND);
646
647 dma_addr += period_len;
648 buf += period_len;
649
650 i++;
651 }
Lothar Waßmann6d23ea42011-12-08 09:15:43 +0100652 mxs_chan->desc_count = i;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800653
654 return &mxs_chan->desc;
655
656err_out:
657 mxs_chan->status = DMA_ERROR;
658 return NULL;
659}
660
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100661static int mxs_dma_terminate_all(struct dma_chan *chan)
Shawn Guoa580b8c2011-02-27 00:47:42 +0800662{
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100663 mxs_dma_reset_chan(chan);
664 mxs_dma_disable_chan(chan);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800665
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100666 return 0;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800667}
668
669static enum dma_status mxs_dma_tx_status(struct dma_chan *chan,
670 dma_cookie_t cookie, struct dma_tx_state *txstate)
671{
672 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
Markus Pargmann7b113042013-10-29 08:47:46 +0100673 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
674 u32 residue = 0;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800675
Markus Pargmann7b113042013-10-29 08:47:46 +0100676 if (mxs_chan->status == DMA_IN_PROGRESS &&
677 mxs_chan->flags & MXS_DMA_SG_LOOP) {
678 struct mxs_dma_ccw *last_ccw;
679 u32 bar;
680
681 last_ccw = &mxs_chan->ccw[mxs_chan->desc_count - 1];
682 residue = last_ccw->xfer_bytes + last_ccw->bufaddr;
683
684 bar = readl(mxs_dma->base +
685 HW_APBHX_CHn_BAR(mxs_dma, chan->chan_id));
686 residue -= bar;
687 }
688
689 dma_set_tx_state(txstate, chan->completed_cookie, chan->cookie,
690 residue);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800691
692 return mxs_chan->status;
693}
694
Shawn Guoa580b8c2011-02-27 00:47:42 +0800695static int __init mxs_dma_init(struct mxs_dma_engine *mxs_dma)
696{
697 int ret;
698
Shawn Guo759a2e32011-12-20 13:54:00 +0800699 ret = clk_prepare_enable(mxs_dma->clk);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800700 if (ret)
Lothar Waßmannfeb397d2011-12-08 09:15:42 +0100701 return ret;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800702
Dong Aishengf5b7efc2012-05-04 20:12:15 +0800703 ret = stmp_reset_block(mxs_dma->base);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800704 if (ret)
705 goto err_out;
706
Shawn Guoa580b8c2011-02-27 00:47:42 +0800707 /* enable apbh burst */
Shawn Guobb11fb62012-05-07 14:14:08 +0800708 if (dma_is_apbh(mxs_dma)) {
Shawn Guoa580b8c2011-02-27 00:47:42 +0800709 writel(BM_APBH_CTRL0_APB_BURST_EN,
Dong Aishengf5b7efc2012-05-04 20:12:15 +0800710 mxs_dma->base + HW_APBHX_CTRL0 + STMP_OFFSET_REG_SET);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800711 writel(BM_APBH_CTRL0_APB_BURST8_EN,
Dong Aishengf5b7efc2012-05-04 20:12:15 +0800712 mxs_dma->base + HW_APBHX_CTRL0 + STMP_OFFSET_REG_SET);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800713 }
714
715 /* enable irq for all the channels */
716 writel(MXS_DMA_CHANNELS_MASK << MXS_DMA_CHANNELS,
Dong Aishengf5b7efc2012-05-04 20:12:15 +0800717 mxs_dma->base + HW_APBHX_CTRL1 + STMP_OFFSET_REG_SET);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800718
Shawn Guoa580b8c2011-02-27 00:47:42 +0800719err_out:
Linus Torvalds57f26852012-01-17 18:40:24 -0800720 clk_disable_unprepare(mxs_dma->clk);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800721 return ret;
722}
723
Shawn Guod84f6382013-02-26 09:42:09 +0800724struct mxs_dma_filter_param {
725 struct device_node *of_node;
726 unsigned int chan_id;
727};
728
729static bool mxs_dma_filter_fn(struct dma_chan *chan, void *fn_param)
730{
731 struct mxs_dma_filter_param *param = fn_param;
732 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
733 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
734 int chan_irq;
735
736 if (mxs_dma->dma_device.dev->of_node != param->of_node)
737 return false;
738
739 if (chan->chan_id != param->chan_id)
740 return false;
741
742 chan_irq = platform_get_irq(mxs_dma->pdev, param->chan_id);
743 if (chan_irq < 0)
744 return false;
745
746 mxs_chan->chan_irq = chan_irq;
747
748 return true;
749}
750
Fabio Estevam3208b372013-05-24 16:37:27 -0300751static struct dma_chan *mxs_dma_xlate(struct of_phandle_args *dma_spec,
Shawn Guod84f6382013-02-26 09:42:09 +0800752 struct of_dma *ofdma)
753{
754 struct mxs_dma_engine *mxs_dma = ofdma->of_dma_data;
755 dma_cap_mask_t mask = mxs_dma->dma_device.cap_mask;
756 struct mxs_dma_filter_param param;
757
758 if (dma_spec->args_count != 1)
759 return NULL;
760
761 param.of_node = ofdma->of_node;
762 param.chan_id = dma_spec->args[0];
763
764 if (param.chan_id >= mxs_dma->nr_channels)
765 return NULL;
766
767 return dma_request_channel(mask, mxs_dma_filter_fn, &param);
768}
769
Shawn Guoa580b8c2011-02-27 00:47:42 +0800770static int __init mxs_dma_probe(struct platform_device *pdev)
771{
Shawn Guod84f6382013-02-26 09:42:09 +0800772 struct device_node *np = pdev->dev.of_node;
Dong Aisheng90c9abc2012-05-04 20:12:17 +0800773 const struct platform_device_id *id_entry;
774 const struct of_device_id *of_id;
775 const struct mxs_dma_type *dma_type;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800776 struct mxs_dma_engine *mxs_dma;
777 struct resource *iores;
778 int ret, i;
779
Shawn Guoaaa20512013-02-25 14:57:26 +0800780 mxs_dma = devm_kzalloc(&pdev->dev, sizeof(*mxs_dma), GFP_KERNEL);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800781 if (!mxs_dma)
782 return -ENOMEM;
783
Shawn Guod84f6382013-02-26 09:42:09 +0800784 ret = of_property_read_u32(np, "dma-channels", &mxs_dma->nr_channels);
785 if (ret) {
786 dev_err(&pdev->dev, "failed to read dma-channels\n");
787 return ret;
788 }
789
Dong Aisheng90c9abc2012-05-04 20:12:17 +0800790 of_id = of_match_device(mxs_dma_dt_ids, &pdev->dev);
791 if (of_id)
792 id_entry = of_id->data;
793 else
794 id_entry = platform_get_device_id(pdev);
795
796 dma_type = (struct mxs_dma_type *)id_entry->driver_data;
Shawn Guo8c920132012-05-10 06:23:26 +0800797 mxs_dma->type = dma_type->type;
Dong Aisheng90c9abc2012-05-04 20:12:17 +0800798 mxs_dma->dev_id = dma_type->id;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800799
800 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Shawn Guoaaa20512013-02-25 14:57:26 +0800801 mxs_dma->base = devm_ioremap_resource(&pdev->dev, iores);
802 if (IS_ERR(mxs_dma->base))
803 return PTR_ERR(mxs_dma->base);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800804
Shawn Guoaaa20512013-02-25 14:57:26 +0800805 mxs_dma->clk = devm_clk_get(&pdev->dev, NULL);
806 if (IS_ERR(mxs_dma->clk))
807 return PTR_ERR(mxs_dma->clk);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800808
809 dma_cap_set(DMA_SLAVE, mxs_dma->dma_device.cap_mask);
810 dma_cap_set(DMA_CYCLIC, mxs_dma->dma_device.cap_mask);
811
812 INIT_LIST_HEAD(&mxs_dma->dma_device.channels);
813
814 /* Initialize channel parameters */
815 for (i = 0; i < MXS_DMA_CHANNELS; i++) {
816 struct mxs_dma_chan *mxs_chan = &mxs_dma->mxs_chans[i];
817
818 mxs_chan->mxs_dma = mxs_dma;
819 mxs_chan->chan.device = &mxs_dma->dma_device;
Russell King - ARM Linux8ac69542012-03-06 22:36:27 +0000820 dma_cookie_init(&mxs_chan->chan);
Shawn Guoa580b8c2011-02-27 00:47:42 +0800821
822 tasklet_init(&mxs_chan->tasklet, mxs_dma_tasklet,
823 (unsigned long) mxs_chan);
824
825
826 /* Add the channel to mxs_chan list */
827 list_add_tail(&mxs_chan->chan.device_node,
828 &mxs_dma->dma_device.channels);
829 }
830
831 ret = mxs_dma_init(mxs_dma);
832 if (ret)
Shawn Guoaaa20512013-02-25 14:57:26 +0800833 return ret;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800834
Shawn Guod84f6382013-02-26 09:42:09 +0800835 mxs_dma->pdev = pdev;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800836 mxs_dma->dma_device.dev = &pdev->dev;
837
838 /* mxs_dma gets 65535 bytes maximum sg size */
839 mxs_dma->dma_device.dev->dma_parms = &mxs_dma->dma_parms;
840 dma_set_max_seg_size(mxs_dma->dma_device.dev, MAX_XFER_BYTES);
841
842 mxs_dma->dma_device.device_alloc_chan_resources = mxs_dma_alloc_chan_resources;
843 mxs_dma->dma_device.device_free_chan_resources = mxs_dma_free_chan_resources;
844 mxs_dma->dma_device.device_tx_status = mxs_dma_tx_status;
845 mxs_dma->dma_device.device_prep_slave_sg = mxs_dma_prep_slave_sg;
846 mxs_dma->dma_device.device_prep_dma_cyclic = mxs_dma_prep_dma_cyclic;
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100847 mxs_dma->dma_device.device_pause = mxs_dma_pause_chan;
848 mxs_dma->dma_device.device_resume = mxs_dma_resume_chan;
849 mxs_dma->dma_device.device_terminate_all = mxs_dma_terminate_all;
Fabio Estevamef9d2a92014-12-29 15:21:19 -0200850 mxs_dma->dma_device.src_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_4_BYTES);
851 mxs_dma->dma_device.dst_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_4_BYTES);
852 mxs_dma->dma_device.directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
853 mxs_dma->dma_device.residue_granularity = DMA_RESIDUE_GRANULARITY_BURST;
Maxime Ripard5c9d2e32014-11-17 14:42:26 +0100854 mxs_dma->dma_device.device_issue_pending = mxs_dma_enable_chan;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800855
856 ret = dma_async_device_register(&mxs_dma->dma_device);
857 if (ret) {
858 dev_err(mxs_dma->dma_device.dev, "unable to register\n");
Shawn Guoaaa20512013-02-25 14:57:26 +0800859 return ret;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800860 }
861
Shawn Guod84f6382013-02-26 09:42:09 +0800862 ret = of_dma_controller_register(np, mxs_dma_xlate, mxs_dma);
863 if (ret) {
864 dev_err(mxs_dma->dma_device.dev,
865 "failed to register controller\n");
866 dma_async_device_unregister(&mxs_dma->dma_device);
867 }
868
Shawn Guoa580b8c2011-02-27 00:47:42 +0800869 dev_info(mxs_dma->dma_device.dev, "initialized\n");
870
871 return 0;
Shawn Guoa580b8c2011-02-27 00:47:42 +0800872}
873
Shawn Guoa580b8c2011-02-27 00:47:42 +0800874static struct platform_driver mxs_dma_driver = {
875 .driver = {
876 .name = "mxs-dma",
Dong Aisheng90c9abc2012-05-04 20:12:17 +0800877 .of_match_table = mxs_dma_dt_ids,
Shawn Guoa580b8c2011-02-27 00:47:42 +0800878 },
Shawn Guo8c920132012-05-10 06:23:26 +0800879 .id_table = mxs_dma_ids,
Shawn Guoa580b8c2011-02-27 00:47:42 +0800880};
881
882static int __init mxs_dma_module_init(void)
883{
884 return platform_driver_probe(&mxs_dma_driver, mxs_dma_probe);
885}
886subsys_initcall(mxs_dma_module_init);