audit: complex interfield comparison helper
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / dma / pl330.c
blob09adcfcd953e6841e840fb9caa663212c20c03f7
1 /* linux/drivers/dma/pl330.c
3 * Copyright (C) 2010 Samsung Electronics Co. Ltd.
4 * Jaswinder Singh <jassi.brar@samsung.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
12 #include <linux/io.h>
13 #include <linux/init.h>
14 #include <linux/slab.h>
15 #include <linux/module.h>
16 #include <linux/dmaengine.h>
17 #include <linux/interrupt.h>
18 #include <linux/amba/bus.h>
19 #include <linux/amba/pl330.h>
20 #include <linux/pm_runtime.h>
21 #include <linux/scatterlist.h>
22 #include <linux/of.h>
24 #define NR_DEFAULT_DESC 16
26 enum desc_status {
27 /* In the DMAC pool */
28 FREE,
30 * Allocted to some channel during prep_xxx
31 * Also may be sitting on the work_list.
33 PREP,
35 * Sitting on the work_list and already submitted
36 * to the PL330 core. Not more than two descriptors
37 * of a channel can be BUSY at any time.
39 BUSY,
41 * Sitting on the channel work_list but xfer done
42 * by PL330 core
44 DONE,
47 struct dma_pl330_chan {
48 /* Schedule desc completion */
49 struct tasklet_struct task;
51 /* DMA-Engine Channel */
52 struct dma_chan chan;
54 /* Last completed cookie */
55 dma_cookie_t completed;
57 /* List of to be xfered descriptors */
58 struct list_head work_list;
60 /* Pointer to the DMAC that manages this channel,
61 * NULL if the channel is available to be acquired.
62 * As the parent, this DMAC also provides descriptors
63 * to the channel.
65 struct dma_pl330_dmac *dmac;
67 /* To protect channel manipulation */
68 spinlock_t lock;
70 /* Token of a hardware channel thread of PL330 DMAC
71 * NULL if the channel is available to be acquired.
73 void *pl330_chid;
75 /* For D-to-M and M-to-D channels */
76 int burst_sz; /* the peripheral fifo width */
77 int burst_len; /* the number of burst */
78 dma_addr_t fifo_addr;
80 /* for cyclic capability */
81 bool cyclic;
84 struct dma_pl330_dmac {
85 struct pl330_info pif;
87 /* DMA-Engine Device */
88 struct dma_device ddma;
90 /* Pool of descriptors available for the DMAC's channels */
91 struct list_head desc_pool;
92 /* To protect desc_pool manipulation */
93 spinlock_t pool_lock;
95 /* Peripheral channels connected to this DMAC */
96 struct dma_pl330_chan *peripherals; /* keep at end */
98 struct clk *clk;
101 struct dma_pl330_desc {
102 /* To attach to a queue as child */
103 struct list_head node;
105 /* Descriptor for the DMA Engine API */
106 struct dma_async_tx_descriptor txd;
108 /* Xfer for PL330 core */
109 struct pl330_xfer px;
111 struct pl330_reqcfg rqcfg;
112 struct pl330_req req;
114 enum desc_status status;
116 /* The channel which currently holds this desc */
117 struct dma_pl330_chan *pchan;
120 /* forward declaration */
121 static struct amba_driver pl330_driver;
123 static inline struct dma_pl330_chan *
124 to_pchan(struct dma_chan *ch)
126 if (!ch)
127 return NULL;
129 return container_of(ch, struct dma_pl330_chan, chan);
132 static inline struct dma_pl330_desc *
133 to_desc(struct dma_async_tx_descriptor *tx)
135 return container_of(tx, struct dma_pl330_desc, txd);
138 static inline void free_desc_list(struct list_head *list)
140 struct dma_pl330_dmac *pdmac;
141 struct dma_pl330_desc *desc;
142 struct dma_pl330_chan *pch;
143 unsigned long flags;
145 if (list_empty(list))
146 return;
148 /* Finish off the work list */
149 list_for_each_entry(desc, list, node) {
150 dma_async_tx_callback callback;
151 void *param;
153 /* All desc in a list belong to same channel */
154 pch = desc->pchan;
155 callback = desc->txd.callback;
156 param = desc->txd.callback_param;
158 if (callback)
159 callback(param);
161 desc->pchan = NULL;
164 pdmac = pch->dmac;
166 spin_lock_irqsave(&pdmac->pool_lock, flags);
167 list_splice_tail_init(list, &pdmac->desc_pool);
168 spin_unlock_irqrestore(&pdmac->pool_lock, flags);
171 static inline void handle_cyclic_desc_list(struct list_head *list)
173 struct dma_pl330_desc *desc;
174 struct dma_pl330_chan *pch;
175 unsigned long flags;
177 if (list_empty(list))
178 return;
180 list_for_each_entry(desc, list, node) {
181 dma_async_tx_callback callback;
183 /* Change status to reload it */
184 desc->status = PREP;
185 pch = desc->pchan;
186 callback = desc->txd.callback;
187 if (callback)
188 callback(desc->txd.callback_param);
191 spin_lock_irqsave(&pch->lock, flags);
192 list_splice_tail_init(list, &pch->work_list);
193 spin_unlock_irqrestore(&pch->lock, flags);
196 static inline void fill_queue(struct dma_pl330_chan *pch)
198 struct dma_pl330_desc *desc;
199 int ret;
201 list_for_each_entry(desc, &pch->work_list, node) {
203 /* If already submitted */
204 if (desc->status == BUSY)
205 break;
207 ret = pl330_submit_req(pch->pl330_chid,
208 &desc->req);
209 if (!ret) {
210 desc->status = BUSY;
211 break;
212 } else if (ret == -EAGAIN) {
213 /* QFull or DMAC Dying */
214 break;
215 } else {
216 /* Unacceptable request */
217 desc->status = DONE;
218 dev_err(pch->dmac->pif.dev, "%s:%d Bad Desc(%d)\n",
219 __func__, __LINE__, desc->txd.cookie);
220 tasklet_schedule(&pch->task);
225 static void pl330_tasklet(unsigned long data)
227 struct dma_pl330_chan *pch = (struct dma_pl330_chan *)data;
228 struct dma_pl330_desc *desc, *_dt;
229 unsigned long flags;
230 LIST_HEAD(list);
232 spin_lock_irqsave(&pch->lock, flags);
234 /* Pick up ripe tomatoes */
235 list_for_each_entry_safe(desc, _dt, &pch->work_list, node)
236 if (desc->status == DONE) {
237 pch->completed = desc->txd.cookie;
238 list_move_tail(&desc->node, &list);
241 /* Try to submit a req imm. next to the last completed cookie */
242 fill_queue(pch);
244 /* Make sure the PL330 Channel thread is active */
245 pl330_chan_ctrl(pch->pl330_chid, PL330_OP_START);
247 spin_unlock_irqrestore(&pch->lock, flags);
249 if (pch->cyclic)
250 handle_cyclic_desc_list(&list);
251 else
252 free_desc_list(&list);
255 static void dma_pl330_rqcb(void *token, enum pl330_op_err err)
257 struct dma_pl330_desc *desc = token;
258 struct dma_pl330_chan *pch = desc->pchan;
259 unsigned long flags;
261 /* If desc aborted */
262 if (!pch)
263 return;
265 spin_lock_irqsave(&pch->lock, flags);
267 desc->status = DONE;
269 spin_unlock_irqrestore(&pch->lock, flags);
271 tasklet_schedule(&pch->task);
274 bool pl330_filter(struct dma_chan *chan, void *param)
276 u8 *peri_id;
278 if (chan->device->dev->driver != &pl330_driver.drv)
279 return false;
281 #ifdef CONFIG_OF
282 if (chan->device->dev->of_node) {
283 const __be32 *prop_value;
284 phandle phandle;
285 struct device_node *node;
287 prop_value = ((struct property *)param)->value;
288 phandle = be32_to_cpup(prop_value++);
289 node = of_find_node_by_phandle(phandle);
290 return ((chan->private == node) &&
291 (chan->chan_id == be32_to_cpup(prop_value)));
293 #endif
295 peri_id = chan->private;
296 return *peri_id == (unsigned)param;
298 EXPORT_SYMBOL(pl330_filter);
300 static int pl330_alloc_chan_resources(struct dma_chan *chan)
302 struct dma_pl330_chan *pch = to_pchan(chan);
303 struct dma_pl330_dmac *pdmac = pch->dmac;
304 unsigned long flags;
306 spin_lock_irqsave(&pch->lock, flags);
308 pch->completed = chan->cookie = 1;
309 pch->cyclic = false;
311 pch->pl330_chid = pl330_request_channel(&pdmac->pif);
312 if (!pch->pl330_chid) {
313 spin_unlock_irqrestore(&pch->lock, flags);
314 return 0;
317 tasklet_init(&pch->task, pl330_tasklet, (unsigned long) pch);
319 spin_unlock_irqrestore(&pch->lock, flags);
321 return 1;
324 static int pl330_control(struct dma_chan *chan, enum dma_ctrl_cmd cmd, unsigned long arg)
326 struct dma_pl330_chan *pch = to_pchan(chan);
327 struct dma_pl330_desc *desc, *_dt;
328 unsigned long flags;
329 struct dma_pl330_dmac *pdmac = pch->dmac;
330 struct dma_slave_config *slave_config;
331 LIST_HEAD(list);
333 switch (cmd) {
334 case DMA_TERMINATE_ALL:
335 spin_lock_irqsave(&pch->lock, flags);
337 /* FLUSH the PL330 Channel thread */
338 pl330_chan_ctrl(pch->pl330_chid, PL330_OP_FLUSH);
340 /* Mark all desc done */
341 list_for_each_entry_safe(desc, _dt, &pch->work_list , node) {
342 desc->status = DONE;
343 pch->completed = desc->txd.cookie;
344 list_move_tail(&desc->node, &list);
347 list_splice_tail_init(&list, &pdmac->desc_pool);
348 spin_unlock_irqrestore(&pch->lock, flags);
349 break;
350 case DMA_SLAVE_CONFIG:
351 slave_config = (struct dma_slave_config *)arg;
353 if (slave_config->direction == DMA_TO_DEVICE) {
354 if (slave_config->dst_addr)
355 pch->fifo_addr = slave_config->dst_addr;
356 if (slave_config->dst_addr_width)
357 pch->burst_sz = __ffs(slave_config->dst_addr_width);
358 if (slave_config->dst_maxburst)
359 pch->burst_len = slave_config->dst_maxburst;
360 } else if (slave_config->direction == DMA_FROM_DEVICE) {
361 if (slave_config->src_addr)
362 pch->fifo_addr = slave_config->src_addr;
363 if (slave_config->src_addr_width)
364 pch->burst_sz = __ffs(slave_config->src_addr_width);
365 if (slave_config->src_maxburst)
366 pch->burst_len = slave_config->src_maxburst;
368 break;
369 default:
370 dev_err(pch->dmac->pif.dev, "Not supported command.\n");
371 return -ENXIO;
374 return 0;
377 static void pl330_free_chan_resources(struct dma_chan *chan)
379 struct dma_pl330_chan *pch = to_pchan(chan);
380 unsigned long flags;
382 spin_lock_irqsave(&pch->lock, flags);
384 tasklet_kill(&pch->task);
386 pl330_release_channel(pch->pl330_chid);
387 pch->pl330_chid = NULL;
389 if (pch->cyclic)
390 list_splice_tail_init(&pch->work_list, &pch->dmac->desc_pool);
392 spin_unlock_irqrestore(&pch->lock, flags);
395 static enum dma_status
396 pl330_tx_status(struct dma_chan *chan, dma_cookie_t cookie,
397 struct dma_tx_state *txstate)
399 struct dma_pl330_chan *pch = to_pchan(chan);
400 dma_cookie_t last_done, last_used;
401 int ret;
403 last_done = pch->completed;
404 last_used = chan->cookie;
406 ret = dma_async_is_complete(cookie, last_done, last_used);
408 dma_set_tx_state(txstate, last_done, last_used, 0);
410 return ret;
413 static void pl330_issue_pending(struct dma_chan *chan)
415 pl330_tasklet((unsigned long) to_pchan(chan));
419 * We returned the last one of the circular list of descriptor(s)
420 * from prep_xxx, so the argument to submit corresponds to the last
421 * descriptor of the list.
423 static dma_cookie_t pl330_tx_submit(struct dma_async_tx_descriptor *tx)
425 struct dma_pl330_desc *desc, *last = to_desc(tx);
426 struct dma_pl330_chan *pch = to_pchan(tx->chan);
427 dma_cookie_t cookie;
428 unsigned long flags;
430 spin_lock_irqsave(&pch->lock, flags);
432 /* Assign cookies to all nodes */
433 cookie = tx->chan->cookie;
435 while (!list_empty(&last->node)) {
436 desc = list_entry(last->node.next, struct dma_pl330_desc, node);
438 if (++cookie < 0)
439 cookie = 1;
440 desc->txd.cookie = cookie;
442 list_move_tail(&desc->node, &pch->work_list);
445 if (++cookie < 0)
446 cookie = 1;
447 last->txd.cookie = cookie;
449 list_add_tail(&last->node, &pch->work_list);
451 tx->chan->cookie = cookie;
453 spin_unlock_irqrestore(&pch->lock, flags);
455 return cookie;
458 static inline void _init_desc(struct dma_pl330_desc *desc)
460 desc->pchan = NULL;
461 desc->req.x = &desc->px;
462 desc->req.token = desc;
463 desc->rqcfg.swap = SWAP_NO;
464 desc->rqcfg.privileged = 0;
465 desc->rqcfg.insnaccess = 0;
466 desc->rqcfg.scctl = SCCTRL0;
467 desc->rqcfg.dcctl = DCCTRL0;
468 desc->req.cfg = &desc->rqcfg;
469 desc->req.xfer_cb = dma_pl330_rqcb;
470 desc->txd.tx_submit = pl330_tx_submit;
472 INIT_LIST_HEAD(&desc->node);
475 /* Returns the number of descriptors added to the DMAC pool */
476 int add_desc(struct dma_pl330_dmac *pdmac, gfp_t flg, int count)
478 struct dma_pl330_desc *desc;
479 unsigned long flags;
480 int i;
482 if (!pdmac)
483 return 0;
485 desc = kmalloc(count * sizeof(*desc), flg);
486 if (!desc)
487 return 0;
489 spin_lock_irqsave(&pdmac->pool_lock, flags);
491 for (i = 0; i < count; i++) {
492 _init_desc(&desc[i]);
493 list_add_tail(&desc[i].node, &pdmac->desc_pool);
496 spin_unlock_irqrestore(&pdmac->pool_lock, flags);
498 return count;
501 static struct dma_pl330_desc *
502 pluck_desc(struct dma_pl330_dmac *pdmac)
504 struct dma_pl330_desc *desc = NULL;
505 unsigned long flags;
507 if (!pdmac)
508 return NULL;
510 spin_lock_irqsave(&pdmac->pool_lock, flags);
512 if (!list_empty(&pdmac->desc_pool)) {
513 desc = list_entry(pdmac->desc_pool.next,
514 struct dma_pl330_desc, node);
516 list_del_init(&desc->node);
518 desc->status = PREP;
519 desc->txd.callback = NULL;
522 spin_unlock_irqrestore(&pdmac->pool_lock, flags);
524 return desc;
527 static struct dma_pl330_desc *pl330_get_desc(struct dma_pl330_chan *pch)
529 struct dma_pl330_dmac *pdmac = pch->dmac;
530 u8 *peri_id = pch->chan.private;
531 struct dma_pl330_desc *desc;
533 /* Pluck one desc from the pool of DMAC */
534 desc = pluck_desc(pdmac);
536 /* If the DMAC pool is empty, alloc new */
537 if (!desc) {
538 if (!add_desc(pdmac, GFP_ATOMIC, 1))
539 return NULL;
541 /* Try again */
542 desc = pluck_desc(pdmac);
543 if (!desc) {
544 dev_err(pch->dmac->pif.dev,
545 "%s:%d ALERT!\n", __func__, __LINE__);
546 return NULL;
550 /* Initialize the descriptor */
551 desc->pchan = pch;
552 desc->txd.cookie = 0;
553 async_tx_ack(&desc->txd);
555 desc->req.peri = peri_id ? pch->chan.chan_id : 0;
557 dma_async_tx_descriptor_init(&desc->txd, &pch->chan);
559 return desc;
562 static inline void fill_px(struct pl330_xfer *px,
563 dma_addr_t dst, dma_addr_t src, size_t len)
565 px->next = NULL;
566 px->bytes = len;
567 px->dst_addr = dst;
568 px->src_addr = src;
571 static struct dma_pl330_desc *
572 __pl330_prep_dma_memcpy(struct dma_pl330_chan *pch, dma_addr_t dst,
573 dma_addr_t src, size_t len)
575 struct dma_pl330_desc *desc = pl330_get_desc(pch);
577 if (!desc) {
578 dev_err(pch->dmac->pif.dev, "%s:%d Unable to fetch desc\n",
579 __func__, __LINE__);
580 return NULL;
584 * Ideally we should lookout for reqs bigger than
585 * those that can be programmed with 256 bytes of
586 * MC buffer, but considering a req size is seldom
587 * going to be word-unaligned and more than 200MB,
588 * we take it easy.
589 * Also, should the limit is reached we'd rather
590 * have the platform increase MC buffer size than
591 * complicating this API driver.
593 fill_px(&desc->px, dst, src, len);
595 return desc;
598 /* Call after fixing burst size */
599 static inline int get_burst_len(struct dma_pl330_desc *desc, size_t len)
601 struct dma_pl330_chan *pch = desc->pchan;
602 struct pl330_info *pi = &pch->dmac->pif;
603 int burst_len;
605 burst_len = pi->pcfg.data_bus_width / 8;
606 burst_len *= pi->pcfg.data_buf_dep;
607 burst_len >>= desc->rqcfg.brst_size;
609 /* src/dst_burst_len can't be more than 16 */
610 if (burst_len > 16)
611 burst_len = 16;
613 while (burst_len > 1) {
614 if (!(len % (burst_len << desc->rqcfg.brst_size)))
615 break;
616 burst_len--;
619 return burst_len;
622 static struct dma_async_tx_descriptor *pl330_prep_dma_cyclic(
623 struct dma_chan *chan, dma_addr_t dma_addr, size_t len,
624 size_t period_len, enum dma_data_direction direction)
626 struct dma_pl330_desc *desc;
627 struct dma_pl330_chan *pch = to_pchan(chan);
628 dma_addr_t dst;
629 dma_addr_t src;
631 desc = pl330_get_desc(pch);
632 if (!desc) {
633 dev_err(pch->dmac->pif.dev, "%s:%d Unable to fetch desc\n",
634 __func__, __LINE__);
635 return NULL;
638 switch (direction) {
639 case DMA_TO_DEVICE:
640 desc->rqcfg.src_inc = 1;
641 desc->rqcfg.dst_inc = 0;
642 desc->req.rqtype = MEMTODEV;
643 src = dma_addr;
644 dst = pch->fifo_addr;
645 break;
646 case DMA_FROM_DEVICE:
647 desc->rqcfg.src_inc = 0;
648 desc->rqcfg.dst_inc = 1;
649 desc->req.rqtype = DEVTOMEM;
650 src = pch->fifo_addr;
651 dst = dma_addr;
652 break;
653 default:
654 dev_err(pch->dmac->pif.dev, "%s:%d Invalid dma direction\n",
655 __func__, __LINE__);
656 return NULL;
659 desc->rqcfg.brst_size = pch->burst_sz;
660 desc->rqcfg.brst_len = 1;
662 pch->cyclic = true;
664 fill_px(&desc->px, dst, src, period_len);
666 return &desc->txd;
669 static struct dma_async_tx_descriptor *
670 pl330_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dst,
671 dma_addr_t src, size_t len, unsigned long flags)
673 struct dma_pl330_desc *desc;
674 struct dma_pl330_chan *pch = to_pchan(chan);
675 struct pl330_info *pi;
676 int burst;
678 if (unlikely(!pch || !len))
679 return NULL;
681 pi = &pch->dmac->pif;
683 desc = __pl330_prep_dma_memcpy(pch, dst, src, len);
684 if (!desc)
685 return NULL;
687 desc->rqcfg.src_inc = 1;
688 desc->rqcfg.dst_inc = 1;
689 desc->req.rqtype = MEMTOMEM;
691 /* Select max possible burst size */
692 burst = pi->pcfg.data_bus_width / 8;
694 while (burst > 1) {
695 if (!(len % burst))
696 break;
697 burst /= 2;
700 desc->rqcfg.brst_size = 0;
701 while (burst != (1 << desc->rqcfg.brst_size))
702 desc->rqcfg.brst_size++;
704 desc->rqcfg.brst_len = get_burst_len(desc, len);
706 desc->txd.flags = flags;
708 return &desc->txd;
711 static struct dma_async_tx_descriptor *
712 pl330_prep_slave_sg(struct dma_chan *chan, struct scatterlist *sgl,
713 unsigned int sg_len, enum dma_data_direction direction,
714 unsigned long flg)
716 struct dma_pl330_desc *first, *desc = NULL;
717 struct dma_pl330_chan *pch = to_pchan(chan);
718 struct scatterlist *sg;
719 unsigned long flags;
720 int i;
721 dma_addr_t addr;
723 if (unlikely(!pch || !sgl || !sg_len))
724 return NULL;
726 addr = pch->fifo_addr;
728 first = NULL;
730 for_each_sg(sgl, sg, sg_len, i) {
732 desc = pl330_get_desc(pch);
733 if (!desc) {
734 struct dma_pl330_dmac *pdmac = pch->dmac;
736 dev_err(pch->dmac->pif.dev,
737 "%s:%d Unable to fetch desc\n",
738 __func__, __LINE__);
739 if (!first)
740 return NULL;
742 spin_lock_irqsave(&pdmac->pool_lock, flags);
744 while (!list_empty(&first->node)) {
745 desc = list_entry(first->node.next,
746 struct dma_pl330_desc, node);
747 list_move_tail(&desc->node, &pdmac->desc_pool);
750 list_move_tail(&first->node, &pdmac->desc_pool);
752 spin_unlock_irqrestore(&pdmac->pool_lock, flags);
754 return NULL;
757 if (!first)
758 first = desc;
759 else
760 list_add_tail(&desc->node, &first->node);
762 if (direction == DMA_TO_DEVICE) {
763 desc->rqcfg.src_inc = 1;
764 desc->rqcfg.dst_inc = 0;
765 desc->req.rqtype = MEMTODEV;
766 fill_px(&desc->px,
767 addr, sg_dma_address(sg), sg_dma_len(sg));
768 } else {
769 desc->rqcfg.src_inc = 0;
770 desc->rqcfg.dst_inc = 1;
771 desc->req.rqtype = DEVTOMEM;
772 fill_px(&desc->px,
773 sg_dma_address(sg), addr, sg_dma_len(sg));
776 desc->rqcfg.brst_size = pch->burst_sz;
777 desc->rqcfg.brst_len = 1;
780 /* Return the last desc in the chain */
781 desc->txd.flags = flg;
782 return &desc->txd;
785 static irqreturn_t pl330_irq_handler(int irq, void *data)
787 if (pl330_update(data))
788 return IRQ_HANDLED;
789 else
790 return IRQ_NONE;
793 static int __devinit
794 pl330_probe(struct amba_device *adev, const struct amba_id *id)
796 struct dma_pl330_platdata *pdat;
797 struct dma_pl330_dmac *pdmac;
798 struct dma_pl330_chan *pch;
799 struct pl330_info *pi;
800 struct dma_device *pd;
801 struct resource *res;
802 int i, ret, irq;
803 int num_chan;
805 pdat = adev->dev.platform_data;
807 /* Allocate a new DMAC and its Channels */
808 pdmac = kzalloc(sizeof(*pdmac), GFP_KERNEL);
809 if (!pdmac) {
810 dev_err(&adev->dev, "unable to allocate mem\n");
811 return -ENOMEM;
814 pi = &pdmac->pif;
815 pi->dev = &adev->dev;
816 pi->pl330_data = NULL;
817 pi->mcbufsz = pdat ? pdat->mcbuf_sz : 0;
819 res = &adev->res;
820 request_mem_region(res->start, resource_size(res), "dma-pl330");
822 pi->base = ioremap(res->start, resource_size(res));
823 if (!pi->base) {
824 ret = -ENXIO;
825 goto probe_err1;
828 pdmac->clk = clk_get(&adev->dev, "dma");
829 if (IS_ERR(pdmac->clk)) {
830 dev_err(&adev->dev, "Cannot get operation clock.\n");
831 ret = -EINVAL;
832 goto probe_err1;
835 amba_set_drvdata(adev, pdmac);
837 #ifdef CONFIG_PM_RUNTIME
838 /* to use the runtime PM helper functions */
839 pm_runtime_enable(&adev->dev);
841 /* enable the power domain */
842 if (pm_runtime_get_sync(&adev->dev)) {
843 dev_err(&adev->dev, "failed to get runtime pm\n");
844 ret = -ENODEV;
845 goto probe_err1;
847 #else
848 /* enable dma clk */
849 clk_enable(pdmac->clk);
850 #endif
852 irq = adev->irq[0];
853 ret = request_irq(irq, pl330_irq_handler, 0,
854 dev_name(&adev->dev), pi);
855 if (ret)
856 goto probe_err2;
858 ret = pl330_add(pi);
859 if (ret)
860 goto probe_err3;
862 INIT_LIST_HEAD(&pdmac->desc_pool);
863 spin_lock_init(&pdmac->pool_lock);
865 /* Create a descriptor pool of default size */
866 if (!add_desc(pdmac, GFP_KERNEL, NR_DEFAULT_DESC))
867 dev_warn(&adev->dev, "unable to allocate desc\n");
869 pd = &pdmac->ddma;
870 INIT_LIST_HEAD(&pd->channels);
872 /* Initialize channel parameters */
873 num_chan = max(pdat ? pdat->nr_valid_peri : (u8)pi->pcfg.num_peri,
874 (u8)pi->pcfg.num_chan);
875 pdmac->peripherals = kzalloc(num_chan * sizeof(*pch), GFP_KERNEL);
877 for (i = 0; i < num_chan; i++) {
878 pch = &pdmac->peripherals[i];
879 if (!adev->dev.of_node)
880 pch->chan.private = pdat ? &pdat->peri_id[i] : NULL;
881 else
882 pch->chan.private = adev->dev.of_node;
884 INIT_LIST_HEAD(&pch->work_list);
885 spin_lock_init(&pch->lock);
886 pch->pl330_chid = NULL;
887 pch->chan.device = pd;
888 pch->dmac = pdmac;
890 /* Add the channel to the DMAC list */
891 list_add_tail(&pch->chan.device_node, &pd->channels);
894 pd->dev = &adev->dev;
895 if (pdat) {
896 pd->cap_mask = pdat->cap_mask;
897 } else {
898 dma_cap_set(DMA_MEMCPY, pd->cap_mask);
899 if (pi->pcfg.num_peri) {
900 dma_cap_set(DMA_SLAVE, pd->cap_mask);
901 dma_cap_set(DMA_CYCLIC, pd->cap_mask);
905 pd->device_alloc_chan_resources = pl330_alloc_chan_resources;
906 pd->device_free_chan_resources = pl330_free_chan_resources;
907 pd->device_prep_dma_memcpy = pl330_prep_dma_memcpy;
908 pd->device_prep_dma_cyclic = pl330_prep_dma_cyclic;
909 pd->device_tx_status = pl330_tx_status;
910 pd->device_prep_slave_sg = pl330_prep_slave_sg;
911 pd->device_control = pl330_control;
912 pd->device_issue_pending = pl330_issue_pending;
914 ret = dma_async_device_register(pd);
915 if (ret) {
916 dev_err(&adev->dev, "unable to register DMAC\n");
917 goto probe_err4;
920 dev_info(&adev->dev,
921 "Loaded driver for PL330 DMAC-%d\n", adev->periphid);
922 dev_info(&adev->dev,
923 "\tDBUFF-%ux%ubytes Num_Chans-%u Num_Peri-%u Num_Events-%u\n",
924 pi->pcfg.data_buf_dep,
925 pi->pcfg.data_bus_width / 8, pi->pcfg.num_chan,
926 pi->pcfg.num_peri, pi->pcfg.num_events);
928 return 0;
930 probe_err4:
931 pl330_del(pi);
932 probe_err3:
933 free_irq(irq, pi);
934 probe_err2:
935 iounmap(pi->base);
936 probe_err1:
937 release_mem_region(res->start, resource_size(res));
938 kfree(pdmac);
940 return ret;
943 static int __devexit pl330_remove(struct amba_device *adev)
945 struct dma_pl330_dmac *pdmac = amba_get_drvdata(adev);
946 struct dma_pl330_chan *pch, *_p;
947 struct pl330_info *pi;
948 struct resource *res;
949 int irq;
951 if (!pdmac)
952 return 0;
954 amba_set_drvdata(adev, NULL);
956 /* Idle the DMAC */
957 list_for_each_entry_safe(pch, _p, &pdmac->ddma.channels,
958 chan.device_node) {
960 /* Remove the channel */
961 list_del(&pch->chan.device_node);
963 /* Flush the channel */
964 pl330_control(&pch->chan, DMA_TERMINATE_ALL, 0);
965 pl330_free_chan_resources(&pch->chan);
968 pi = &pdmac->pif;
970 pl330_del(pi);
972 irq = adev->irq[0];
973 free_irq(irq, pi);
975 iounmap(pi->base);
977 res = &adev->res;
978 release_mem_region(res->start, resource_size(res));
980 #ifdef CONFIG_PM_RUNTIME
981 pm_runtime_put(&adev->dev);
982 pm_runtime_disable(&adev->dev);
983 #else
984 clk_disable(pdmac->clk);
985 #endif
987 kfree(pdmac);
989 return 0;
992 static struct amba_id pl330_ids[] = {
994 .id = 0x00041330,
995 .mask = 0x000fffff,
997 { 0, 0 },
1000 MODULE_DEVICE_TABLE(amba, pl330_ids);
1002 #ifdef CONFIG_PM_RUNTIME
1003 static int pl330_runtime_suspend(struct device *dev)
1005 struct dma_pl330_dmac *pdmac = dev_get_drvdata(dev);
1007 if (!pdmac) {
1008 dev_err(dev, "failed to get dmac\n");
1009 return -ENODEV;
1012 clk_disable(pdmac->clk);
1014 return 0;
1017 static int pl330_runtime_resume(struct device *dev)
1019 struct dma_pl330_dmac *pdmac = dev_get_drvdata(dev);
1021 if (!pdmac) {
1022 dev_err(dev, "failed to get dmac\n");
1023 return -ENODEV;
1026 clk_enable(pdmac->clk);
1028 return 0;
1030 #else
1031 #define pl330_runtime_suspend NULL
1032 #define pl330_runtime_resume NULL
1033 #endif /* CONFIG_PM_RUNTIME */
1035 static const struct dev_pm_ops pl330_pm_ops = {
1036 .runtime_suspend = pl330_runtime_suspend,
1037 .runtime_resume = pl330_runtime_resume,
1040 static struct amba_driver pl330_driver = {
1041 .drv = {
1042 .owner = THIS_MODULE,
1043 .name = "dma-pl330",
1044 .pm = &pl330_pm_ops,
1046 .id_table = pl330_ids,
1047 .probe = pl330_probe,
1048 .remove = pl330_remove,
1051 static int __init pl330_init(void)
1053 return amba_driver_register(&pl330_driver);
1055 module_init(pl330_init);
1057 static void __exit pl330_exit(void)
1059 amba_driver_unregister(&pl330_driver);
1060 return;
1062 module_exit(pl330_exit);
1064 MODULE_AUTHOR("Jaswinder Singh <jassi.brar@samsung.com>");
1065 MODULE_DESCRIPTION("API Driver for PL330 DMAC");
1066 MODULE_LICENSE("GPL");