dmaengine: mv_xor: convert tasklets to use new tasklet_setup() API
[linux-2.6-block.git] / drivers / dma / mxs-dma.c
CommitLineData
d9617a3f
FE
1// SPDX-License-Identifier: GPL-2.0
2//
3// Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
4//
5// Refer to drivers/dma/imx-sdma.c
a580b8c5
SG
6
7#include <linux/init.h>
8#include <linux/types.h>
9#include <linux/mm.h>
10#include <linux/interrupt.h>
11#include <linux/clk.h>
12#include <linux/wait.h>
13#include <linux/sched.h>
14#include <linux/semaphore.h>
15#include <linux/device.h>
16#include <linux/dma-mapping.h>
17#include <linux/slab.h>
18#include <linux/platform_device.h>
19#include <linux/dmaengine.h>
20#include <linux/delay.h>
90c9abc5 21#include <linux/module.h>
f5b7efcc 22#include <linux/stmp_device.h>
90c9abc5
DA
23#include <linux/of.h>
24#include <linux/of_device.h>
d84f638b 25#include <linux/of_dma.h>
b2d63989 26#include <linux/list.h>
e0ddaab7 27#include <linux/dma/mxs-dma.h>
a580b8c5
SG
28
29#include <asm/irq.h>
a580b8c5 30
d2ebfb33
RKAL
31#include "dmaengine.h"
32
a580b8c5
SG
33/*
34 * NOTE: The term "PIO" throughout the mxs-dma implementation means
35 * PIO mode of mxs apbh-dma and apbx-dma. With this working mode,
36 * dma can program the controller registers of peripheral devices.
37 */
38
8c920136
SG
39#define dma_is_apbh(mxs_dma) ((mxs_dma)->type == MXS_DMA_APBH)
40#define apbh_is_old(mxs_dma) ((mxs_dma)->dev_id == IMX23_DMA)
a580b8c5
SG
41
42#define HW_APBHX_CTRL0 0x000
43#define BM_APBH_CTRL0_APB_BURST8_EN (1 << 29)
44#define BM_APBH_CTRL0_APB_BURST_EN (1 << 28)
a580b8c5
SG
45#define BP_APBH_CTRL0_RESET_CHANNEL 16
46#define HW_APBHX_CTRL1 0x010
47#define HW_APBHX_CTRL2 0x020
48#define HW_APBHX_CHANNEL_CTRL 0x030
49#define BP_APBHX_CHANNEL_CTRL_RESET_CHANNEL 16
bb11fb63
SG
50/*
51 * The offset of NXTCMDAR register is different per both dma type and version,
52 * while stride for each channel is all the same 0x70.
53 */
54#define HW_APBHX_CHn_NXTCMDAR(d, n) \
55 (((dma_is_apbh(d) && apbh_is_old(d)) ? 0x050 : 0x110) + (n) * 0x70)
56#define HW_APBHX_CHn_SEMA(d, n) \
57 (((dma_is_apbh(d) && apbh_is_old(d)) ? 0x080 : 0x140) + (n) * 0x70)
7b11304a
MP
58#define HW_APBHX_CHn_BAR(d, n) \
59 (((dma_is_apbh(d) && apbh_is_old(d)) ? 0x070 : 0x130) + (n) * 0x70)
702e94d6 60#define HW_APBX_CHn_DEBUG1(d, n) (0x150 + (n) * 0x70)
a580b8c5
SG
61
62/*
63 * ccw bits definitions
64 *
65 * COMMAND: 0..1 (2)
66 * CHAIN: 2 (1)
67 * IRQ: 3 (1)
68 * NAND_LOCK: 4 (1) - not implemented
69 * NAND_WAIT4READY: 5 (1) - not implemented
70 * DEC_SEM: 6 (1)
71 * WAIT4END: 7 (1)
72 * HALT_ON_TERMINATE: 8 (1)
73 * TERMINATE_FLUSH: 9 (1)
74 * RESERVED: 10..11 (2)
75 * PIO_NUM: 12..15 (4)
76 */
77#define BP_CCW_COMMAND 0
78#define BM_CCW_COMMAND (3 << 0)
79#define CCW_CHAIN (1 << 2)
80#define CCW_IRQ (1 << 3)
ef347c0c 81#define CCW_WAIT4RDY (1 << 5)
a580b8c5
SG
82#define CCW_DEC_SEM (1 << 6)
83#define CCW_WAIT4END (1 << 7)
84#define CCW_HALT_ON_TERM (1 << 8)
85#define CCW_TERM_FLUSH (1 << 9)
86#define BP_CCW_PIO_NUM 12
87#define BM_CCW_PIO_NUM (0xf << 12)
88
89#define BF_CCW(value, field) (((value) << BP_CCW_##field) & BM_CCW_##field)
90
91#define MXS_DMA_CMD_NO_XFER 0
92#define MXS_DMA_CMD_WRITE 1
93#define MXS_DMA_CMD_READ 2
94#define MXS_DMA_CMD_DMA_SENSE 3 /* not implemented */
95
96struct mxs_dma_ccw {
97 u32 next;
98 u16 bits;
99 u16 xfer_bytes;
100#define MAX_XFER_BYTES 0xff00
101 u32 bufaddr;
102#define MXS_PIO_WORDS 16
103 u32 pio_words[MXS_PIO_WORDS];
104};
105
5e97fa91
MV
106#define CCW_BLOCK_SIZE (4 * PAGE_SIZE)
107#define NUM_CCW (int)(CCW_BLOCK_SIZE / sizeof(struct mxs_dma_ccw))
a580b8c5
SG
108
109struct mxs_dma_chan {
110 struct mxs_dma_engine *mxs_dma;
111 struct dma_chan chan;
112 struct dma_async_tx_descriptor desc;
113 struct tasklet_struct tasklet;
f2ad6992 114 unsigned int chan_irq;
a580b8c5
SG
115 struct mxs_dma_ccw *ccw;
116 dma_addr_t ccw_phys;
6d23ea4b 117 int desc_count;
a580b8c5
SG
118 enum dma_status status;
119 unsigned int flags;
2dcbdce3 120 bool reset;
a580b8c5 121#define MXS_DMA_SG_LOOP (1 << 0)
2dcbdce3 122#define MXS_DMA_USE_SEMAPHORE (1 << 1)
a580b8c5
SG
123};
124
125#define MXS_DMA_CHANNELS 16
126#define MXS_DMA_CHANNELS_MASK 0xffff
127
8c920136
SG
128enum mxs_dma_devtype {
129 MXS_DMA_APBH,
130 MXS_DMA_APBX,
131};
132
133enum mxs_dma_id {
134 IMX23_DMA,
135 IMX28_DMA,
136};
137
a580b8c5 138struct mxs_dma_engine {
8c920136
SG
139 enum mxs_dma_id dev_id;
140 enum mxs_dma_devtype type;
a580b8c5
SG
141 void __iomem *base;
142 struct clk *clk;
143 struct dma_device dma_device;
a580b8c5 144 struct mxs_dma_chan mxs_chans[MXS_DMA_CHANNELS];
d84f638b
SG
145 struct platform_device *pdev;
146 unsigned int nr_channels;
a580b8c5
SG
147};
148
8c920136
SG
149struct mxs_dma_type {
150 enum mxs_dma_id id;
151 enum mxs_dma_devtype type;
152};
153
154static struct mxs_dma_type mxs_dma_types[] = {
155 {
156 .id = IMX23_DMA,
157 .type = MXS_DMA_APBH,
158 }, {
159 .id = IMX23_DMA,
160 .type = MXS_DMA_APBX,
161 }, {
162 .id = IMX28_DMA,
163 .type = MXS_DMA_APBH,
164 }, {
165 .id = IMX28_DMA,
166 .type = MXS_DMA_APBX,
167 }
168};
169
0d850504 170static const struct platform_device_id mxs_dma_ids[] = {
8c920136
SG
171 {
172 .name = "imx23-dma-apbh",
173 .driver_data = (kernel_ulong_t) &mxs_dma_types[0],
174 }, {
175 .name = "imx23-dma-apbx",
176 .driver_data = (kernel_ulong_t) &mxs_dma_types[1],
177 }, {
178 .name = "imx28-dma-apbh",
179 .driver_data = (kernel_ulong_t) &mxs_dma_types[2],
180 }, {
181 .name = "imx28-dma-apbx",
182 .driver_data = (kernel_ulong_t) &mxs_dma_types[3],
183 }, {
184 /* end of list */
185 }
186};
187
90c9abc5
DA
188static const struct of_device_id mxs_dma_dt_ids[] = {
189 { .compatible = "fsl,imx23-dma-apbh", .data = &mxs_dma_ids[0], },
190 { .compatible = "fsl,imx23-dma-apbx", .data = &mxs_dma_ids[1], },
191 { .compatible = "fsl,imx28-dma-apbh", .data = &mxs_dma_ids[2], },
192 { .compatible = "fsl,imx28-dma-apbx", .data = &mxs_dma_ids[3], },
193 { /* sentinel */ }
194};
195MODULE_DEVICE_TABLE(of, mxs_dma_dt_ids);
196
8c920136
SG
197static struct mxs_dma_chan *to_mxs_dma_chan(struct dma_chan *chan)
198{
199 return container_of(chan, struct mxs_dma_chan, chan);
200}
201
5c9d2e37 202static void mxs_dma_reset_chan(struct dma_chan *chan)
a580b8c5 203{
5c9d2e37 204 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
a580b8c5
SG
205 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
206 int chan_id = mxs_chan->chan.chan_id;
207
2dcbdce3
MP
208 /*
209 * mxs dma channel resets can cause a channel stall. To recover from a
210 * channel stall, we have to reset the whole DMA engine. To avoid this,
211 * we use cyclic DMA with semaphores, that are enhanced in
212 * mxs_dma_int_handler. To reset the channel, we can simply stop writing
213 * into the semaphore counter.
214 */
215 if (mxs_chan->flags & MXS_DMA_USE_SEMAPHORE &&
216 mxs_chan->flags & MXS_DMA_SG_LOOP) {
217 mxs_chan->reset = true;
218 } else if (dma_is_apbh(mxs_dma) && apbh_is_old(mxs_dma)) {
a580b8c5 219 writel(1 << (chan_id + BP_APBH_CTRL0_RESET_CHANNEL),
f5b7efcc 220 mxs_dma->base + HW_APBHX_CTRL0 + STMP_OFFSET_REG_SET);
702e94d6
MP
221 } else {
222 unsigned long elapsed = 0;
223 const unsigned long max_wait = 50000; /* 50ms */
224 void __iomem *reg_dbg1 = mxs_dma->base +
225 HW_APBX_CHn_DEBUG1(mxs_dma, chan_id);
226
227 /*
228 * On i.MX28 APBX, the DMA channel can stop working if we reset
229 * the channel while it is in READ_FLUSH (0x08) state.
230 * We wait here until we leave the state. Then we trigger the
231 * reset. Waiting a maximum of 50ms, the kernel shouldn't crash
232 * because of this.
233 */
234 while ((readl(reg_dbg1) & 0xf) == 0x8 && elapsed < max_wait) {
235 udelay(100);
236 elapsed += 100;
237 }
238
239 if (elapsed >= max_wait)
240 dev_err(&mxs_chan->mxs_dma->pdev->dev,
241 "Failed waiting for the DMA channel %d to leave state READ_FLUSH, trying to reset channel in READ_FLUSH state now\n",
242 chan_id);
243
a580b8c5 244 writel(1 << (chan_id + BP_APBHX_CHANNEL_CTRL_RESET_CHANNEL),
f5b7efcc 245 mxs_dma->base + HW_APBHX_CHANNEL_CTRL + STMP_OFFSET_REG_SET);
702e94d6 246 }
bb3660f1
MP
247
248 mxs_chan->status = DMA_COMPLETE;
a580b8c5
SG
249}
250
5c9d2e37 251static void mxs_dma_enable_chan(struct dma_chan *chan)
a580b8c5 252{
5c9d2e37 253 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
a580b8c5
SG
254 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
255 int chan_id = mxs_chan->chan.chan_id;
256
257 /* set cmd_addr up */
258 writel(mxs_chan->ccw_phys,
bb11fb63 259 mxs_dma->base + HW_APBHX_CHn_NXTCMDAR(mxs_dma, chan_id));
a580b8c5 260
a580b8c5 261 /* write 1 to SEMA to kick off the channel */
2dcbdce3
MP
262 if (mxs_chan->flags & MXS_DMA_USE_SEMAPHORE &&
263 mxs_chan->flags & MXS_DMA_SG_LOOP) {
264 /* A cyclic DMA consists of at least 2 segments, so initialize
265 * the semaphore with 2 so we have enough time to add 1 to the
266 * semaphore if we need to */
267 writel(2, mxs_dma->base + HW_APBHX_CHn_SEMA(mxs_dma, chan_id));
268 } else {
269 writel(1, mxs_dma->base + HW_APBHX_CHn_SEMA(mxs_dma, chan_id));
270 }
271 mxs_chan->reset = false;
a580b8c5
SG
272}
273
5c9d2e37 274static void mxs_dma_disable_chan(struct dma_chan *chan)
a580b8c5 275{
5c9d2e37
MR
276 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
277
2737583e 278 mxs_chan->status = DMA_COMPLETE;
a580b8c5
SG
279}
280
a29c3956 281static int mxs_dma_pause_chan(struct dma_chan *chan)
a580b8c5 282{
5c9d2e37 283 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
a580b8c5
SG
284 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
285 int chan_id = mxs_chan->chan.chan_id;
286
287 /* freeze the channel */
bb11fb63 288 if (dma_is_apbh(mxs_dma) && apbh_is_old(mxs_dma))
a580b8c5 289 writel(1 << chan_id,
f5b7efcc 290 mxs_dma->base + HW_APBHX_CTRL0 + STMP_OFFSET_REG_SET);
a580b8c5
SG
291 else
292 writel(1 << chan_id,
f5b7efcc 293 mxs_dma->base + HW_APBHX_CHANNEL_CTRL + STMP_OFFSET_REG_SET);
a580b8c5
SG
294
295 mxs_chan->status = DMA_PAUSED;
a29c3956 296 return 0;
a580b8c5
SG
297}
298
a29c3956 299static int mxs_dma_resume_chan(struct dma_chan *chan)
a580b8c5 300{
5c9d2e37 301 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
a580b8c5
SG
302 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
303 int chan_id = mxs_chan->chan.chan_id;
304
305 /* unfreeze the channel */
bb11fb63 306 if (dma_is_apbh(mxs_dma) && apbh_is_old(mxs_dma))
a580b8c5 307 writel(1 << chan_id,
f5b7efcc 308 mxs_dma->base + HW_APBHX_CTRL0 + STMP_OFFSET_REG_CLR);
a580b8c5
SG
309 else
310 writel(1 << chan_id,
f5b7efcc 311 mxs_dma->base + HW_APBHX_CHANNEL_CTRL + STMP_OFFSET_REG_CLR);
a580b8c5
SG
312
313 mxs_chan->status = DMA_IN_PROGRESS;
a29c3956 314 return 0;
a580b8c5
SG
315}
316
a580b8c5
SG
317static dma_cookie_t mxs_dma_tx_submit(struct dma_async_tx_descriptor *tx)
318{
884485e1 319 return dma_cookie_assign(tx);
a580b8c5
SG
320}
321
322static void mxs_dma_tasklet(unsigned long data)
323{
324 struct mxs_dma_chan *mxs_chan = (struct mxs_dma_chan *) data;
325
064370c6 326 dmaengine_desc_get_callback_invoke(&mxs_chan->desc, NULL);
a580b8c5
SG
327}
328
b2d63989
MP
329static int mxs_dma_irq_to_chan(struct mxs_dma_engine *mxs_dma, int irq)
330{
331 int i;
332
333 for (i = 0; i != mxs_dma->nr_channels; ++i)
334 if (mxs_dma->mxs_chans[i].chan_irq == irq)
335 return i;
336
337 return -EINVAL;
338}
339
a580b8c5
SG
340static irqreturn_t mxs_dma_int_handler(int irq, void *dev_id)
341{
342 struct mxs_dma_engine *mxs_dma = dev_id;
b2d63989
MP
343 struct mxs_dma_chan *mxs_chan;
344 u32 completed;
345 u32 err;
346 int chan = mxs_dma_irq_to_chan(mxs_dma, irq);
347
348 if (chan < 0)
349 return IRQ_NONE;
a580b8c5
SG
350
351 /* completion status */
b2d63989
MP
352 completed = readl(mxs_dma->base + HW_APBHX_CTRL1);
353 completed = (completed >> chan) & 0x1;
354
355 /* Clear interrupt */
356 writel((1 << chan),
357 mxs_dma->base + HW_APBHX_CTRL1 + STMP_OFFSET_REG_CLR);
a580b8c5
SG
358
359 /* error status */
b2d63989
MP
360 err = readl(mxs_dma->base + HW_APBHX_CTRL2);
361 err &= (1 << (MXS_DMA_CHANNELS + chan)) | (1 << chan);
362
363 /*
364 * error status bit is in the upper 16 bits, error irq bit in the lower
365 * 16 bits. We transform it into a simpler error code:
366 * err: 0x00 = no error, 0x01 = TERMINATION, 0x02 = BUS_ERROR
367 */
368 err = (err >> (MXS_DMA_CHANNELS + chan)) + (err >> chan);
369
370 /* Clear error irq */
371 writel((1 << chan),
372 mxs_dma->base + HW_APBHX_CTRL2 + STMP_OFFSET_REG_CLR);
a580b8c5
SG
373
374 /*
375 * When both completion and error of termination bits set at the
376 * same time, we do not take it as an error. IOW, it only becomes
b2d63989
MP
377 * an error we need to handle here in case of either it's a bus
378 * error or a termination error with no completion. 0x01 is termination
379 * error, so we can subtract err & completed to get the real error case.
a580b8c5 380 */
b2d63989
MP
381 err -= err & completed;
382
383 mxs_chan = &mxs_dma->mxs_chans[chan];
384
385 if (err) {
386 dev_dbg(mxs_dma->dma_device.dev,
387 "%s: error in channel %d\n", __func__,
388 chan);
389 mxs_chan->status = DMA_ERROR;
e0cad7a0 390 mxs_dma_reset_chan(&mxs_chan->chan);
bb3660f1 391 } else if (mxs_chan->status != DMA_COMPLETE) {
2dcbdce3 392 if (mxs_chan->flags & MXS_DMA_SG_LOOP) {
b2d63989 393 mxs_chan->status = DMA_IN_PROGRESS;
2dcbdce3
MP
394 if (mxs_chan->flags & MXS_DMA_USE_SEMAPHORE)
395 writel(1, mxs_dma->base +
396 HW_APBHX_CHn_SEMA(mxs_dma, chan));
397 } else {
b2d63989 398 mxs_chan->status = DMA_COMPLETE;
2dcbdce3 399 }
a580b8c5
SG
400 }
401
2dcbdce3
MP
402 if (mxs_chan->status == DMA_COMPLETE) {
403 if (mxs_chan->reset)
404 return IRQ_HANDLED;
b2d63989 405 dma_cookie_complete(&mxs_chan->desc);
2dcbdce3 406 }
b2d63989
MP
407
408 /* schedule tasklet on this channel */
409 tasklet_schedule(&mxs_chan->tasklet);
410
a580b8c5
SG
411 return IRQ_HANDLED;
412}
413
414static int mxs_dma_alloc_chan_resources(struct dma_chan *chan)
415{
416 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
a580b8c5
SG
417 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
418 int ret;
419
750afb08
LC
420 mxs_chan->ccw = dma_alloc_coherent(mxs_dma->dma_device.dev,
421 CCW_BLOCK_SIZE,
422 &mxs_chan->ccw_phys, GFP_KERNEL);
a580b8c5
SG
423 if (!mxs_chan->ccw) {
424 ret = -ENOMEM;
425 goto err_alloc;
426 }
427
028e84a1
AB
428 ret = request_irq(mxs_chan->chan_irq, mxs_dma_int_handler,
429 0, "mxs-dma", mxs_dma);
430 if (ret)
431 goto err_irq;
a580b8c5 432
759a2e30 433 ret = clk_prepare_enable(mxs_dma->clk);
a580b8c5
SG
434 if (ret)
435 goto err_clk;
436
5c9d2e37 437 mxs_dma_reset_chan(chan);
a580b8c5
SG
438
439 dma_async_tx_descriptor_init(&mxs_chan->desc, chan);
440 mxs_chan->desc.tx_submit = mxs_dma_tx_submit;
441
442 /* the descriptor is ready */
443 async_tx_ack(&mxs_chan->desc);
444
445 return 0;
446
447err_clk:
448 free_irq(mxs_chan->chan_irq, mxs_dma);
449err_irq:
5e97fa91 450 dma_free_coherent(mxs_dma->dma_device.dev, CCW_BLOCK_SIZE,
a580b8c5
SG
451 mxs_chan->ccw, mxs_chan->ccw_phys);
452err_alloc:
453 return ret;
454}
455
456static void mxs_dma_free_chan_resources(struct dma_chan *chan)
457{
458 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
459 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
460
5c9d2e37 461 mxs_dma_disable_chan(chan);
a580b8c5
SG
462
463 free_irq(mxs_chan->chan_irq, mxs_dma);
464
5e97fa91 465 dma_free_coherent(mxs_dma->dma_device.dev, CCW_BLOCK_SIZE,
a580b8c5
SG
466 mxs_chan->ccw, mxs_chan->ccw_phys);
467
759a2e30 468 clk_disable_unprepare(mxs_dma->clk);
a580b8c5
SG
469}
470
921de864
HS
471/*
472 * How to use the flags for ->device_prep_slave_sg() :
473 * [1] If there is only one DMA command in the DMA chain, the code should be:
474 * ......
475 * ->device_prep_slave_sg(DMA_CTRL_ACK);
476 * ......
477 * [2] If there are two DMA commands in the DMA chain, the code should be
478 * ......
479 * ->device_prep_slave_sg(0);
480 * ......
d443cb25 481 * ->device_prep_slave_sg(DMA_CTRL_ACK);
921de864
HS
482 * ......
483 * [3] If there are more than two DMA commands in the DMA chain, the code
484 * should be:
485 * ......
486 * ->device_prep_slave_sg(0); // First
487 * ......
d443cb25 488 * ->device_prep_slave_sg(DMA_CTRL_ACK]);
921de864 489 * ......
d443cb25 490 * ->device_prep_slave_sg(DMA_CTRL_ACK); // Last
921de864
HS
491 * ......
492 */
a580b8c5
SG
493static struct dma_async_tx_descriptor *mxs_dma_prep_slave_sg(
494 struct dma_chan *chan, struct scatterlist *sgl,
db8196df 495 unsigned int sg_len, enum dma_transfer_direction direction,
623ff773 496 unsigned long flags, void *context)
a580b8c5
SG
497{
498 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
499 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
500 struct mxs_dma_ccw *ccw;
501 struct scatterlist *sg;
f2ad6992 502 u32 i, j;
a580b8c5 503 u32 *pio;
d443cb25 504 int idx = 0;
a580b8c5 505
d443cb25
SH
506 if (mxs_chan->status == DMA_IN_PROGRESS)
507 idx = mxs_chan->desc_count;
a580b8c5 508
d443cb25 509 if (sg_len + idx > NUM_CCW) {
a580b8c5
SG
510 dev_err(mxs_dma->dma_device.dev,
511 "maximum number of sg exceeded: %d > %d\n",
512 sg_len, NUM_CCW);
513 goto err_out;
514 }
515
516 mxs_chan->status = DMA_IN_PROGRESS;
517 mxs_chan->flags = 0;
518
519 /*
520 * If the sg is prepared with append flag set, the sg
521 * will be appended to the last prepared sg.
522 */
d443cb25 523 if (idx) {
a580b8c5
SG
524 BUG_ON(idx < 1);
525 ccw = &mxs_chan->ccw[idx - 1];
526 ccw->next = mxs_chan->ccw_phys + sizeof(*ccw) * idx;
527 ccw->bits |= CCW_CHAIN;
528 ccw->bits &= ~CCW_IRQ;
529 ccw->bits &= ~CCW_DEC_SEM;
a580b8c5
SG
530 } else {
531 idx = 0;
532 }
533
62268ce9 534 if (direction == DMA_TRANS_NONE) {
a580b8c5
SG
535 ccw = &mxs_chan->ccw[idx++];
536 pio = (u32 *) sgl;
537
538 for (j = 0; j < sg_len;)
539 ccw->pio_words[j++] = *pio++;
540
541 ccw->bits = 0;
542 ccw->bits |= CCW_IRQ;
543 ccw->bits |= CCW_DEC_SEM;
ceeeb99c 544 if (flags & MXS_DMA_CTRL_WAIT4END)
921de864 545 ccw->bits |= CCW_WAIT4END;
a580b8c5
SG
546 ccw->bits |= CCW_HALT_ON_TERM;
547 ccw->bits |= CCW_TERM_FLUSH;
548 ccw->bits |= BF_CCW(sg_len, PIO_NUM);
549 ccw->bits |= BF_CCW(MXS_DMA_CMD_NO_XFER, COMMAND);
ef347c0c
SH
550 if (flags & MXS_DMA_CTRL_WAIT4RDY)
551 ccw->bits |= CCW_WAIT4RDY;
a580b8c5
SG
552 } else {
553 for_each_sg(sgl, sg, sg_len, i) {
fdaf9c4b 554 if (sg_dma_len(sg) > MAX_XFER_BYTES) {
a580b8c5 555 dev_err(mxs_dma->dma_device.dev, "maximum bytes for sg entry exceeded: %d > %d\n",
fdaf9c4b 556 sg_dma_len(sg), MAX_XFER_BYTES);
a580b8c5
SG
557 goto err_out;
558 }
559
560 ccw = &mxs_chan->ccw[idx++];
561
562 ccw->next = mxs_chan->ccw_phys + sizeof(*ccw) * idx;
563 ccw->bufaddr = sg->dma_address;
fdaf9c4b 564 ccw->xfer_bytes = sg_dma_len(sg);
a580b8c5
SG
565
566 ccw->bits = 0;
567 ccw->bits |= CCW_CHAIN;
568 ccw->bits |= CCW_HALT_ON_TERM;
569 ccw->bits |= CCW_TERM_FLUSH;
db8196df 570 ccw->bits |= BF_CCW(direction == DMA_DEV_TO_MEM ?
a580b8c5
SG
571 MXS_DMA_CMD_WRITE : MXS_DMA_CMD_READ,
572 COMMAND);
573
574 if (i + 1 == sg_len) {
575 ccw->bits &= ~CCW_CHAIN;
576 ccw->bits |= CCW_IRQ;
577 ccw->bits |= CCW_DEC_SEM;
ceeeb99c 578 if (flags & MXS_DMA_CTRL_WAIT4END)
921de864 579 ccw->bits |= CCW_WAIT4END;
a580b8c5
SG
580 }
581 }
582 }
6d23ea4b 583 mxs_chan->desc_count = idx;
a580b8c5
SG
584
585 return &mxs_chan->desc;
586
587err_out:
588 mxs_chan->status = DMA_ERROR;
589 return NULL;
590}
591
592static struct dma_async_tx_descriptor *mxs_dma_prep_dma_cyclic(
593 struct dma_chan *chan, dma_addr_t dma_addr, size_t buf_len,
185ecb5f 594 size_t period_len, enum dma_transfer_direction direction,
31c1e5a1 595 unsigned long flags)
a580b8c5
SG
596{
597 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
598 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
f2ad6992
FE
599 u32 num_periods = buf_len / period_len;
600 u32 i = 0, buf = 0;
a580b8c5
SG
601
602 if (mxs_chan->status == DMA_IN_PROGRESS)
603 return NULL;
604
605 mxs_chan->status = DMA_IN_PROGRESS;
606 mxs_chan->flags |= MXS_DMA_SG_LOOP;
2dcbdce3 607 mxs_chan->flags |= MXS_DMA_USE_SEMAPHORE;
a580b8c5
SG
608
609 if (num_periods > NUM_CCW) {
610 dev_err(mxs_dma->dma_device.dev,
611 "maximum number of sg exceeded: %d > %d\n",
612 num_periods, NUM_CCW);
613 goto err_out;
614 }
615
616 if (period_len > MAX_XFER_BYTES) {
617 dev_err(mxs_dma->dma_device.dev,
4aff2f93 618 "maximum period size exceeded: %zu > %d\n",
a580b8c5
SG
619 period_len, MAX_XFER_BYTES);
620 goto err_out;
621 }
622
623 while (buf < buf_len) {
624 struct mxs_dma_ccw *ccw = &mxs_chan->ccw[i];
625
626 if (i + 1 == num_periods)
627 ccw->next = mxs_chan->ccw_phys;
628 else
629 ccw->next = mxs_chan->ccw_phys + sizeof(*ccw) * (i + 1);
630
631 ccw->bufaddr = dma_addr;
632 ccw->xfer_bytes = period_len;
633
634 ccw->bits = 0;
635 ccw->bits |= CCW_CHAIN;
636 ccw->bits |= CCW_IRQ;
637 ccw->bits |= CCW_HALT_ON_TERM;
638 ccw->bits |= CCW_TERM_FLUSH;
2dcbdce3 639 ccw->bits |= CCW_DEC_SEM;
db8196df 640 ccw->bits |= BF_CCW(direction == DMA_DEV_TO_MEM ?
a580b8c5
SG
641 MXS_DMA_CMD_WRITE : MXS_DMA_CMD_READ, COMMAND);
642
643 dma_addr += period_len;
644 buf += period_len;
645
646 i++;
647 }
6d23ea4b 648 mxs_chan->desc_count = i;
a580b8c5
SG
649
650 return &mxs_chan->desc;
651
652err_out:
653 mxs_chan->status = DMA_ERROR;
654 return NULL;
655}
656
5c9d2e37 657static int mxs_dma_terminate_all(struct dma_chan *chan)
a580b8c5 658{
5c9d2e37
MR
659 mxs_dma_reset_chan(chan);
660 mxs_dma_disable_chan(chan);
661
662 return 0;
a580b8c5
SG
663}
664
665static enum dma_status mxs_dma_tx_status(struct dma_chan *chan,
666 dma_cookie_t cookie, struct dma_tx_state *txstate)
667{
668 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
7b11304a
MP
669 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
670 u32 residue = 0;
671
672 if (mxs_chan->status == DMA_IN_PROGRESS &&
673 mxs_chan->flags & MXS_DMA_SG_LOOP) {
674 struct mxs_dma_ccw *last_ccw;
675 u32 bar;
676
677 last_ccw = &mxs_chan->ccw[mxs_chan->desc_count - 1];
678 residue = last_ccw->xfer_bytes + last_ccw->bufaddr;
679
680 bar = readl(mxs_dma->base +
681 HW_APBHX_CHn_BAR(mxs_dma, chan->chan_id));
682 residue -= bar;
683 }
a580b8c5 684
7b11304a
MP
685 dma_set_tx_state(txstate, chan->completed_cookie, chan->cookie,
686 residue);
a580b8c5
SG
687
688 return mxs_chan->status;
689}
690
a580b8c5
SG
691static int __init mxs_dma_init(struct mxs_dma_engine *mxs_dma)
692{
693 int ret;
694
759a2e30 695 ret = clk_prepare_enable(mxs_dma->clk);
a580b8c5 696 if (ret)
feb397de 697 return ret;
a580b8c5 698
f5b7efcc 699 ret = stmp_reset_block(mxs_dma->base);
a580b8c5
SG
700 if (ret)
701 goto err_out;
702
a580b8c5 703 /* enable apbh burst */
bb11fb63 704 if (dma_is_apbh(mxs_dma)) {
a580b8c5 705 writel(BM_APBH_CTRL0_APB_BURST_EN,
f5b7efcc 706 mxs_dma->base + HW_APBHX_CTRL0 + STMP_OFFSET_REG_SET);
a580b8c5 707 writel(BM_APBH_CTRL0_APB_BURST8_EN,
f5b7efcc 708 mxs_dma->base + HW_APBHX_CTRL0 + STMP_OFFSET_REG_SET);
a580b8c5
SG
709 }
710
711 /* enable irq for all the channels */
712 writel(MXS_DMA_CHANNELS_MASK << MXS_DMA_CHANNELS,
f5b7efcc 713 mxs_dma->base + HW_APBHX_CTRL1 + STMP_OFFSET_REG_SET);
a580b8c5 714
a580b8c5 715err_out:
57f2685c 716 clk_disable_unprepare(mxs_dma->clk);
a580b8c5
SG
717 return ret;
718}
719
d84f638b 720struct mxs_dma_filter_param {
d84f638b
SG
721 unsigned int chan_id;
722};
723
724static bool mxs_dma_filter_fn(struct dma_chan *chan, void *fn_param)
725{
726 struct mxs_dma_filter_param *param = fn_param;
727 struct mxs_dma_chan *mxs_chan = to_mxs_dma_chan(chan);
728 struct mxs_dma_engine *mxs_dma = mxs_chan->mxs_dma;
729 int chan_irq;
730
d84f638b
SG
731 if (chan->chan_id != param->chan_id)
732 return false;
733
734 chan_irq = platform_get_irq(mxs_dma->pdev, param->chan_id);
735 if (chan_irq < 0)
736 return false;
737
738 mxs_chan->chan_irq = chan_irq;
739
740 return true;
741}
742
3208b370 743static struct dma_chan *mxs_dma_xlate(struct of_phandle_args *dma_spec,
d84f638b
SG
744 struct of_dma *ofdma)
745{
746 struct mxs_dma_engine *mxs_dma = ofdma->of_dma_data;
747 dma_cap_mask_t mask = mxs_dma->dma_device.cap_mask;
748 struct mxs_dma_filter_param param;
749
750 if (dma_spec->args_count != 1)
751 return NULL;
752
d84f638b
SG
753 param.chan_id = dma_spec->args[0];
754
755 if (param.chan_id >= mxs_dma->nr_channels)
756 return NULL;
757
caf5e3e6
BW
758 return __dma_request_channel(&mask, mxs_dma_filter_fn, &param,
759 ofdma->of_node);
d84f638b
SG
760}
761
a580b8c5
SG
762static int __init mxs_dma_probe(struct platform_device *pdev)
763{
d84f638b 764 struct device_node *np = pdev->dev.of_node;
90c9abc5
DA
765 const struct platform_device_id *id_entry;
766 const struct of_device_id *of_id;
767 const struct mxs_dma_type *dma_type;
a580b8c5
SG
768 struct mxs_dma_engine *mxs_dma;
769 struct resource *iores;
770 int ret, i;
771
aaa20517 772 mxs_dma = devm_kzalloc(&pdev->dev, sizeof(*mxs_dma), GFP_KERNEL);
a580b8c5
SG
773 if (!mxs_dma)
774 return -ENOMEM;
775
d84f638b
SG
776 ret = of_property_read_u32(np, "dma-channels", &mxs_dma->nr_channels);
777 if (ret) {
778 dev_err(&pdev->dev, "failed to read dma-channels\n");
779 return ret;
780 }
781
90c9abc5
DA
782 of_id = of_match_device(mxs_dma_dt_ids, &pdev->dev);
783 if (of_id)
784 id_entry = of_id->data;
785 else
786 id_entry = platform_get_device_id(pdev);
787
788 dma_type = (struct mxs_dma_type *)id_entry->driver_data;
8c920136 789 mxs_dma->type = dma_type->type;
90c9abc5 790 mxs_dma->dev_id = dma_type->id;
a580b8c5
SG
791
792 iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
aaa20517
SG
793 mxs_dma->base = devm_ioremap_resource(&pdev->dev, iores);
794 if (IS_ERR(mxs_dma->base))
795 return PTR_ERR(mxs_dma->base);
a580b8c5 796
aaa20517
SG
797 mxs_dma->clk = devm_clk_get(&pdev->dev, NULL);
798 if (IS_ERR(mxs_dma->clk))
799 return PTR_ERR(mxs_dma->clk);
a580b8c5
SG
800
801 dma_cap_set(DMA_SLAVE, mxs_dma->dma_device.cap_mask);
802 dma_cap_set(DMA_CYCLIC, mxs_dma->dma_device.cap_mask);
803
804 INIT_LIST_HEAD(&mxs_dma->dma_device.channels);
805
806 /* Initialize channel parameters */
807 for (i = 0; i < MXS_DMA_CHANNELS; i++) {
808 struct mxs_dma_chan *mxs_chan = &mxs_dma->mxs_chans[i];
809
810 mxs_chan->mxs_dma = mxs_dma;
811 mxs_chan->chan.device = &mxs_dma->dma_device;
8ac69546 812 dma_cookie_init(&mxs_chan->chan);
a580b8c5
SG
813
814 tasklet_init(&mxs_chan->tasklet, mxs_dma_tasklet,
815 (unsigned long) mxs_chan);
816
817
818 /* Add the channel to mxs_chan list */
819 list_add_tail(&mxs_chan->chan.device_node,
820 &mxs_dma->dma_device.channels);
821 }
822
823 ret = mxs_dma_init(mxs_dma);
824 if (ret)
aaa20517 825 return ret;
a580b8c5 826
d84f638b 827 mxs_dma->pdev = pdev;
a580b8c5
SG
828 mxs_dma->dma_device.dev = &pdev->dev;
829
830 /* mxs_dma gets 65535 bytes maximum sg size */
a580b8c5
SG
831 dma_set_max_seg_size(mxs_dma->dma_device.dev, MAX_XFER_BYTES);
832
833 mxs_dma->dma_device.device_alloc_chan_resources = mxs_dma_alloc_chan_resources;
834 mxs_dma->dma_device.device_free_chan_resources = mxs_dma_free_chan_resources;
835 mxs_dma->dma_device.device_tx_status = mxs_dma_tx_status;
836 mxs_dma->dma_device.device_prep_slave_sg = mxs_dma_prep_slave_sg;
837 mxs_dma->dma_device.device_prep_dma_cyclic = mxs_dma_prep_dma_cyclic;
5c9d2e37
MR
838 mxs_dma->dma_device.device_pause = mxs_dma_pause_chan;
839 mxs_dma->dma_device.device_resume = mxs_dma_resume_chan;
840 mxs_dma->dma_device.device_terminate_all = mxs_dma_terminate_all;
ef9d2a92
FE
841 mxs_dma->dma_device.src_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_4_BYTES);
842 mxs_dma->dma_device.dst_addr_widths = BIT(DMA_SLAVE_BUSWIDTH_4_BYTES);
843 mxs_dma->dma_device.directions = BIT(DMA_DEV_TO_MEM) | BIT(DMA_MEM_TO_DEV);
844 mxs_dma->dma_device.residue_granularity = DMA_RESIDUE_GRANULARITY_BURST;
5c9d2e37 845 mxs_dma->dma_device.device_issue_pending = mxs_dma_enable_chan;
a580b8c5 846
fbb69ece 847 ret = dmaenginem_async_device_register(&mxs_dma->dma_device);
a580b8c5
SG
848 if (ret) {
849 dev_err(mxs_dma->dma_device.dev, "unable to register\n");
aaa20517 850 return ret;
a580b8c5
SG
851 }
852
d84f638b
SG
853 ret = of_dma_controller_register(np, mxs_dma_xlate, mxs_dma);
854 if (ret) {
855 dev_err(mxs_dma->dma_device.dev,
856 "failed to register controller\n");
d84f638b
SG
857 }
858
a580b8c5
SG
859 dev_info(mxs_dma->dma_device.dev, "initialized\n");
860
861 return 0;
a580b8c5
SG
862}
863
a580b8c5
SG
864static struct platform_driver mxs_dma_driver = {
865 .driver = {
866 .name = "mxs-dma",
90c9abc5 867 .of_match_table = mxs_dma_dt_ids,
a580b8c5 868 },
8c920136 869 .id_table = mxs_dma_ids,
a580b8c5
SG
870};
871
872static int __init mxs_dma_module_init(void)
873{
874 return platform_driver_probe(&mxs_dma_driver, mxs_dma_probe);
875}
876subsys_initcall(mxs_dma_module_init);