Merge branch 'next' of git://git.monstr.eu/linux-2.6-microblaze
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / dma / imx-dma.c
blobe4383ee2c9acd015b72675557ad03a06357f4eda
1 /*
2 * drivers/dma/imx-dma.c
4 * This file contains a driver for the Freescale i.MX DMA engine
5 * found on i.MX1/21/27
7 * Copyright 2010 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
9 * The code contained herein is licensed under the GNU General Public
10 * License. You may obtain a copy of the GNU General Public License
11 * Version 2 or later at the following locations:
13 * http://www.opensource.org/licenses/gpl-license.html
14 * http://www.gnu.org/copyleft/gpl.html
16 #include <linux/init.h>
17 #include <linux/module.h>
18 #include <linux/types.h>
19 #include <linux/mm.h>
20 #include <linux/interrupt.h>
21 #include <linux/spinlock.h>
22 #include <linux/device.h>
23 #include <linux/dma-mapping.h>
24 #include <linux/slab.h>
25 #include <linux/platform_device.h>
26 #include <linux/dmaengine.h>
27 #include <linux/module.h>
29 #include <asm/irq.h>
30 #include <mach/dma-v1.h>
31 #include <mach/hardware.h>
33 struct imxdma_channel {
34 struct imxdma_engine *imxdma;
35 unsigned int channel;
36 unsigned int imxdma_channel;
38 enum dma_slave_buswidth word_size;
39 dma_addr_t per_address;
40 u32 watermark_level;
41 struct dma_chan chan;
42 spinlock_t lock;
43 struct dma_async_tx_descriptor desc;
44 dma_cookie_t last_completed;
45 enum dma_status status;
46 int dma_request;
47 struct scatterlist *sg_list;
50 #define MAX_DMA_CHANNELS 8
52 struct imxdma_engine {
53 struct device *dev;
54 struct device_dma_parameters dma_parms;
55 struct dma_device dma_device;
56 struct imxdma_channel channel[MAX_DMA_CHANNELS];
59 static struct imxdma_channel *to_imxdma_chan(struct dma_chan *chan)
61 return container_of(chan, struct imxdma_channel, chan);
64 static void imxdma_handle(struct imxdma_channel *imxdmac)
66 if (imxdmac->desc.callback)
67 imxdmac->desc.callback(imxdmac->desc.callback_param);
68 imxdmac->last_completed = imxdmac->desc.cookie;
71 static void imxdma_irq_handler(int channel, void *data)
73 struct imxdma_channel *imxdmac = data;
75 imxdmac->status = DMA_SUCCESS;
76 imxdma_handle(imxdmac);
79 static void imxdma_err_handler(int channel, void *data, int error)
81 struct imxdma_channel *imxdmac = data;
83 imxdmac->status = DMA_ERROR;
84 imxdma_handle(imxdmac);
87 static void imxdma_progression(int channel, void *data,
88 struct scatterlist *sg)
90 struct imxdma_channel *imxdmac = data;
92 imxdmac->status = DMA_SUCCESS;
93 imxdma_handle(imxdmac);
96 static int imxdma_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd,
97 unsigned long arg)
99 struct imxdma_channel *imxdmac = to_imxdma_chan(chan);
100 struct dma_slave_config *dmaengine_cfg = (void *)arg;
101 int ret;
102 unsigned int mode = 0;
104 switch (cmd) {
105 case DMA_TERMINATE_ALL:
106 imxdmac->status = DMA_ERROR;
107 imx_dma_disable(imxdmac->imxdma_channel);
108 return 0;
109 case DMA_SLAVE_CONFIG:
110 if (dmaengine_cfg->direction == DMA_DEV_TO_MEM) {
111 imxdmac->per_address = dmaengine_cfg->src_addr;
112 imxdmac->watermark_level = dmaengine_cfg->src_maxburst;
113 imxdmac->word_size = dmaengine_cfg->src_addr_width;
114 } else {
115 imxdmac->per_address = dmaengine_cfg->dst_addr;
116 imxdmac->watermark_level = dmaengine_cfg->dst_maxburst;
117 imxdmac->word_size = dmaengine_cfg->dst_addr_width;
120 switch (imxdmac->word_size) {
121 case DMA_SLAVE_BUSWIDTH_1_BYTE:
122 mode = IMX_DMA_MEMSIZE_8;
123 break;
124 case DMA_SLAVE_BUSWIDTH_2_BYTES:
125 mode = IMX_DMA_MEMSIZE_16;
126 break;
127 default:
128 case DMA_SLAVE_BUSWIDTH_4_BYTES:
129 mode = IMX_DMA_MEMSIZE_32;
130 break;
132 ret = imx_dma_config_channel(imxdmac->imxdma_channel,
133 mode | IMX_DMA_TYPE_FIFO,
134 IMX_DMA_MEMSIZE_32 | IMX_DMA_TYPE_LINEAR,
135 imxdmac->dma_request, 1);
137 if (ret)
138 return ret;
140 imx_dma_config_burstlen(imxdmac->imxdma_channel,
141 imxdmac->watermark_level * imxdmac->word_size);
143 return 0;
144 default:
145 return -ENOSYS;
148 return -EINVAL;
151 static enum dma_status imxdma_tx_status(struct dma_chan *chan,
152 dma_cookie_t cookie,
153 struct dma_tx_state *txstate)
155 struct imxdma_channel *imxdmac = to_imxdma_chan(chan);
156 dma_cookie_t last_used;
157 enum dma_status ret;
159 last_used = chan->cookie;
161 ret = dma_async_is_complete(cookie, imxdmac->last_completed, last_used);
162 dma_set_tx_state(txstate, imxdmac->last_completed, last_used, 0);
164 return ret;
167 static dma_cookie_t imxdma_assign_cookie(struct imxdma_channel *imxdma)
169 dma_cookie_t cookie = imxdma->chan.cookie;
171 if (++cookie < 0)
172 cookie = 1;
174 imxdma->chan.cookie = cookie;
175 imxdma->desc.cookie = cookie;
177 return cookie;
180 static dma_cookie_t imxdma_tx_submit(struct dma_async_tx_descriptor *tx)
182 struct imxdma_channel *imxdmac = to_imxdma_chan(tx->chan);
183 dma_cookie_t cookie;
185 spin_lock_irq(&imxdmac->lock);
187 cookie = imxdma_assign_cookie(imxdmac);
189 imx_dma_enable(imxdmac->imxdma_channel);
191 spin_unlock_irq(&imxdmac->lock);
193 return cookie;
196 static int imxdma_alloc_chan_resources(struct dma_chan *chan)
198 struct imxdma_channel *imxdmac = to_imxdma_chan(chan);
199 struct imx_dma_data *data = chan->private;
201 imxdmac->dma_request = data->dma_request;
203 dma_async_tx_descriptor_init(&imxdmac->desc, chan);
204 imxdmac->desc.tx_submit = imxdma_tx_submit;
205 /* txd.flags will be overwritten in prep funcs */
206 imxdmac->desc.flags = DMA_CTRL_ACK;
208 imxdmac->status = DMA_SUCCESS;
210 return 0;
213 static void imxdma_free_chan_resources(struct dma_chan *chan)
215 struct imxdma_channel *imxdmac = to_imxdma_chan(chan);
217 imx_dma_disable(imxdmac->imxdma_channel);
219 if (imxdmac->sg_list) {
220 kfree(imxdmac->sg_list);
221 imxdmac->sg_list = NULL;
225 static struct dma_async_tx_descriptor *imxdma_prep_slave_sg(
226 struct dma_chan *chan, struct scatterlist *sgl,
227 unsigned int sg_len, enum dma_transfer_direction direction,
228 unsigned long flags)
230 struct imxdma_channel *imxdmac = to_imxdma_chan(chan);
231 struct scatterlist *sg;
232 int i, ret, dma_length = 0;
233 unsigned int dmamode;
235 if (imxdmac->status == DMA_IN_PROGRESS)
236 return NULL;
238 imxdmac->status = DMA_IN_PROGRESS;
240 for_each_sg(sgl, sg, sg_len, i) {
241 dma_length += sg->length;
244 if (direction == DMA_DEV_TO_MEM)
245 dmamode = DMA_MODE_READ;
246 else
247 dmamode = DMA_MODE_WRITE;
249 switch (imxdmac->word_size) {
250 case DMA_SLAVE_BUSWIDTH_4_BYTES:
251 if (sgl->length & 3 || sgl->dma_address & 3)
252 return NULL;
253 break;
254 case DMA_SLAVE_BUSWIDTH_2_BYTES:
255 if (sgl->length & 1 || sgl->dma_address & 1)
256 return NULL;
257 break;
258 case DMA_SLAVE_BUSWIDTH_1_BYTE:
259 break;
260 default:
261 return NULL;
264 ret = imx_dma_setup_sg(imxdmac->imxdma_channel, sgl, sg_len,
265 dma_length, imxdmac->per_address, dmamode);
266 if (ret)
267 return NULL;
269 return &imxdmac->desc;
272 static struct dma_async_tx_descriptor *imxdma_prep_dma_cyclic(
273 struct dma_chan *chan, dma_addr_t dma_addr, size_t buf_len,
274 size_t period_len, enum dma_transfer_direction direction)
276 struct imxdma_channel *imxdmac = to_imxdma_chan(chan);
277 struct imxdma_engine *imxdma = imxdmac->imxdma;
278 int i, ret;
279 unsigned int periods = buf_len / period_len;
280 unsigned int dmamode;
282 dev_dbg(imxdma->dev, "%s channel: %d buf_len=%d period_len=%d\n",
283 __func__, imxdmac->channel, buf_len, period_len);
285 if (imxdmac->status == DMA_IN_PROGRESS)
286 return NULL;
287 imxdmac->status = DMA_IN_PROGRESS;
289 ret = imx_dma_setup_progression_handler(imxdmac->imxdma_channel,
290 imxdma_progression);
291 if (ret) {
292 dev_err(imxdma->dev, "Failed to setup the DMA handler\n");
293 return NULL;
296 if (imxdmac->sg_list)
297 kfree(imxdmac->sg_list);
299 imxdmac->sg_list = kcalloc(periods + 1,
300 sizeof(struct scatterlist), GFP_KERNEL);
301 if (!imxdmac->sg_list)
302 return NULL;
304 sg_init_table(imxdmac->sg_list, periods);
306 for (i = 0; i < periods; i++) {
307 imxdmac->sg_list[i].page_link = 0;
308 imxdmac->sg_list[i].offset = 0;
309 imxdmac->sg_list[i].dma_address = dma_addr;
310 imxdmac->sg_list[i].length = period_len;
311 dma_addr += period_len;
314 /* close the loop */
315 imxdmac->sg_list[periods].offset = 0;
316 imxdmac->sg_list[periods].length = 0;
317 imxdmac->sg_list[periods].page_link =
318 ((unsigned long)imxdmac->sg_list | 0x01) & ~0x02;
320 if (direction == DMA_DEV_TO_MEM)
321 dmamode = DMA_MODE_READ;
322 else
323 dmamode = DMA_MODE_WRITE;
325 ret = imx_dma_setup_sg(imxdmac->imxdma_channel, imxdmac->sg_list, periods,
326 IMX_DMA_LENGTH_LOOP, imxdmac->per_address, dmamode);
327 if (ret)
328 return NULL;
330 return &imxdmac->desc;
333 static void imxdma_issue_pending(struct dma_chan *chan)
336 * Nothing to do. We only have a single descriptor
340 static int __init imxdma_probe(struct platform_device *pdev)
342 struct imxdma_engine *imxdma;
343 int ret, i;
345 imxdma = kzalloc(sizeof(*imxdma), GFP_KERNEL);
346 if (!imxdma)
347 return -ENOMEM;
349 INIT_LIST_HEAD(&imxdma->dma_device.channels);
351 dma_cap_set(DMA_SLAVE, imxdma->dma_device.cap_mask);
352 dma_cap_set(DMA_CYCLIC, imxdma->dma_device.cap_mask);
354 /* Initialize channel parameters */
355 for (i = 0; i < MAX_DMA_CHANNELS; i++) {
356 struct imxdma_channel *imxdmac = &imxdma->channel[i];
358 imxdmac->imxdma_channel = imx_dma_request_by_prio("dmaengine",
359 DMA_PRIO_MEDIUM);
360 if ((int)imxdmac->channel < 0) {
361 ret = -ENODEV;
362 goto err_init;
365 imx_dma_setup_handlers(imxdmac->imxdma_channel,
366 imxdma_irq_handler, imxdma_err_handler, imxdmac);
368 imxdmac->imxdma = imxdma;
369 spin_lock_init(&imxdmac->lock);
371 imxdmac->chan.device = &imxdma->dma_device;
372 imxdmac->channel = i;
374 /* Add the channel to the DMAC list */
375 list_add_tail(&imxdmac->chan.device_node, &imxdma->dma_device.channels);
378 imxdma->dev = &pdev->dev;
379 imxdma->dma_device.dev = &pdev->dev;
381 imxdma->dma_device.device_alloc_chan_resources = imxdma_alloc_chan_resources;
382 imxdma->dma_device.device_free_chan_resources = imxdma_free_chan_resources;
383 imxdma->dma_device.device_tx_status = imxdma_tx_status;
384 imxdma->dma_device.device_prep_slave_sg = imxdma_prep_slave_sg;
385 imxdma->dma_device.device_prep_dma_cyclic = imxdma_prep_dma_cyclic;
386 imxdma->dma_device.device_control = imxdma_control;
387 imxdma->dma_device.device_issue_pending = imxdma_issue_pending;
389 platform_set_drvdata(pdev, imxdma);
391 imxdma->dma_device.dev->dma_parms = &imxdma->dma_parms;
392 dma_set_max_seg_size(imxdma->dma_device.dev, 0xffffff);
394 ret = dma_async_device_register(&imxdma->dma_device);
395 if (ret) {
396 dev_err(&pdev->dev, "unable to register\n");
397 goto err_init;
400 return 0;
402 err_init:
403 while (--i >= 0) {
404 struct imxdma_channel *imxdmac = &imxdma->channel[i];
405 imx_dma_free(imxdmac->imxdma_channel);
408 kfree(imxdma);
409 return ret;
412 static int __exit imxdma_remove(struct platform_device *pdev)
414 struct imxdma_engine *imxdma = platform_get_drvdata(pdev);
415 int i;
417 dma_async_device_unregister(&imxdma->dma_device);
419 for (i = 0; i < MAX_DMA_CHANNELS; i++) {
420 struct imxdma_channel *imxdmac = &imxdma->channel[i];
422 imx_dma_free(imxdmac->imxdma_channel);
425 kfree(imxdma);
427 return 0;
430 static struct platform_driver imxdma_driver = {
431 .driver = {
432 .name = "imx-dma",
434 .remove = __exit_p(imxdma_remove),
437 static int __init imxdma_module_init(void)
439 return platform_driver_probe(&imxdma_driver, imxdma_probe);
441 subsys_initcall(imxdma_module_init);
443 MODULE_AUTHOR("Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>");
444 MODULE_DESCRIPTION("i.MX dma driver");
445 MODULE_LICENSE("GPL");