diff options
author | Dan Williams <dan.j.williams@intel.com> | 2009-01-05 19:14:31 -0500 |
---|---|---|
committer | Dan Williams <dan.j.williams@intel.com> | 2009-01-05 20:10:19 -0500 |
commit | 07f2211e4fbce6990722d78c4f04225da9c0e9cf (patch) | |
tree | 51934e20a334e93c8c399d2e6375f264551e9bc3 /drivers | |
parent | 28405d8d9ce05f5bd869ef8b48da5086f9527d73 (diff) |
dmaengine: remove dependency on async_tx
async_tx.ko is a consumer of dma channels. A circular dependency arises
if modules in drivers/dma rely on common code in async_tx.ko. It
prevents either module from being unloaded.
Move dma_wait_for_async_tx and async_tx_run_dependencies to dmaeninge.o
where they should have been from the beginning.
Reviewed-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Dan Williams <dan.j.williams@intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/dma/Kconfig | 2 | ||||
-rw-r--r-- | drivers/dma/dmaengine.c | 84 | ||||
-rw-r--r-- | drivers/dma/iop-adma.c | 3 | ||||
-rw-r--r-- | drivers/dma/mv_xor.c | 3 |
4 files changed, 86 insertions, 6 deletions
diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index 904e57558bb5..e34b06420816 100644 --- a/drivers/dma/Kconfig +++ b/drivers/dma/Kconfig | |||
@@ -33,7 +33,6 @@ config INTEL_IOATDMA | |||
33 | config INTEL_IOP_ADMA | 33 | config INTEL_IOP_ADMA |
34 | tristate "Intel IOP ADMA support" | 34 | tristate "Intel IOP ADMA support" |
35 | depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IOP13XX | 35 | depends on ARCH_IOP32X || ARCH_IOP33X || ARCH_IOP13XX |
36 | select ASYNC_CORE | ||
37 | select DMA_ENGINE | 36 | select DMA_ENGINE |
38 | help | 37 | help |
39 | Enable support for the Intel(R) IOP Series RAID engines. | 38 | Enable support for the Intel(R) IOP Series RAID engines. |
@@ -59,7 +58,6 @@ config FSL_DMA | |||
59 | config MV_XOR | 58 | config MV_XOR |
60 | bool "Marvell XOR engine support" | 59 | bool "Marvell XOR engine support" |
61 | depends on PLAT_ORION | 60 | depends on PLAT_ORION |
62 | select ASYNC_CORE | ||
63 | select DMA_ENGINE | 61 | select DMA_ENGINE |
64 | ---help--- | 62 | ---help--- |
65 | Enable support for the Marvell XOR engine. | 63 | Enable support for the Marvell XOR engine. |
diff --git a/drivers/dma/dmaengine.c b/drivers/dma/dmaengine.c index 657996517374..b9008932a8f3 100644 --- a/drivers/dma/dmaengine.c +++ b/drivers/dma/dmaengine.c | |||
@@ -626,6 +626,90 @@ void dma_async_tx_descriptor_init(struct dma_async_tx_descriptor *tx, | |||
626 | } | 626 | } |
627 | EXPORT_SYMBOL(dma_async_tx_descriptor_init); | 627 | EXPORT_SYMBOL(dma_async_tx_descriptor_init); |
628 | 628 | ||
629 | /* dma_wait_for_async_tx - spin wait for a transaction to complete | ||
630 | * @tx: in-flight transaction to wait on | ||
631 | * | ||
632 | * This routine assumes that tx was obtained from a call to async_memcpy, | ||
633 | * async_xor, async_memset, etc which ensures that tx is "in-flight" (prepped | ||
634 | * and submitted). Walking the parent chain is only meant to cover for DMA | ||
635 | * drivers that do not implement the DMA_INTERRUPT capability and may race with | ||
636 | * the driver's descriptor cleanup routine. | ||
637 | */ | ||
638 | enum dma_status | ||
639 | dma_wait_for_async_tx(struct dma_async_tx_descriptor *tx) | ||
640 | { | ||
641 | enum dma_status status; | ||
642 | struct dma_async_tx_descriptor *iter; | ||
643 | struct dma_async_tx_descriptor *parent; | ||
644 | |||
645 | if (!tx) | ||
646 | return DMA_SUCCESS; | ||
647 | |||
648 | WARN_ONCE(tx->parent, "%s: speculatively walking dependency chain for" | ||
649 | " %s\n", __func__, dev_name(&tx->chan->dev)); | ||
650 | |||
651 | /* poll through the dependency chain, return when tx is complete */ | ||
652 | do { | ||
653 | iter = tx; | ||
654 | |||
655 | /* find the root of the unsubmitted dependency chain */ | ||
656 | do { | ||
657 | parent = iter->parent; | ||
658 | if (!parent) | ||
659 | break; | ||
660 | else | ||
661 | iter = parent; | ||
662 | } while (parent); | ||
663 | |||
664 | /* there is a small window for ->parent == NULL and | ||
665 | * ->cookie == -EBUSY | ||
666 | */ | ||
667 | while (iter->cookie == -EBUSY) | ||
668 | cpu_relax(); | ||
669 | |||
670 | status = dma_sync_wait(iter->chan, iter->cookie); | ||
671 | } while (status == DMA_IN_PROGRESS || (iter != tx)); | ||
672 | |||
673 | return status; | ||
674 | } | ||
675 | EXPORT_SYMBOL_GPL(dma_wait_for_async_tx); | ||
676 | |||
677 | /* dma_run_dependencies - helper routine for dma drivers to process | ||
678 | * (start) dependent operations on their target channel | ||
679 | * @tx: transaction with dependencies | ||
680 | */ | ||
681 | void dma_run_dependencies(struct dma_async_tx_descriptor *tx) | ||
682 | { | ||
683 | struct dma_async_tx_descriptor *dep = tx->next; | ||
684 | struct dma_async_tx_descriptor *dep_next; | ||
685 | struct dma_chan *chan; | ||
686 | |||
687 | if (!dep) | ||
688 | return; | ||
689 | |||
690 | chan = dep->chan; | ||
691 | |||
692 | /* keep submitting up until a channel switch is detected | ||
693 | * in that case we will be called again as a result of | ||
694 | * processing the interrupt from async_tx_channel_switch | ||
695 | */ | ||
696 | for (; dep; dep = dep_next) { | ||
697 | spin_lock_bh(&dep->lock); | ||
698 | dep->parent = NULL; | ||
699 | dep_next = dep->next; | ||
700 | if (dep_next && dep_next->chan == chan) | ||
701 | dep->next = NULL; /* ->next will be submitted */ | ||
702 | else | ||
703 | dep_next = NULL; /* submit current dep and terminate */ | ||
704 | spin_unlock_bh(&dep->lock); | ||
705 | |||
706 | dep->tx_submit(dep); | ||
707 | } | ||
708 | |||
709 | chan->device->device_issue_pending(chan); | ||
710 | } | ||
711 | EXPORT_SYMBOL_GPL(dma_run_dependencies); | ||
712 | |||
629 | static int __init dma_bus_init(void) | 713 | static int __init dma_bus_init(void) |
630 | { | 714 | { |
631 | mutex_init(&dma_list_mutex); | 715 | mutex_init(&dma_list_mutex); |
diff --git a/drivers/dma/iop-adma.c b/drivers/dma/iop-adma.c index 6be317262200..be9ea9f88805 100644 --- a/drivers/dma/iop-adma.c +++ b/drivers/dma/iop-adma.c | |||
@@ -24,7 +24,6 @@ | |||
24 | 24 | ||
25 | #include <linux/init.h> | 25 | #include <linux/init.h> |
26 | #include <linux/module.h> | 26 | #include <linux/module.h> |
27 | #include <linux/async_tx.h> | ||
28 | #include <linux/delay.h> | 27 | #include <linux/delay.h> |
29 | #include <linux/dma-mapping.h> | 28 | #include <linux/dma-mapping.h> |
30 | #include <linux/spinlock.h> | 29 | #include <linux/spinlock.h> |
@@ -116,7 +115,7 @@ iop_adma_run_tx_complete_actions(struct iop_adma_desc_slot *desc, | |||
116 | } | 115 | } |
117 | 116 | ||
118 | /* run dependent operations */ | 117 | /* run dependent operations */ |
119 | async_tx_run_dependencies(&desc->async_tx); | 118 | dma_run_dependencies(&desc->async_tx); |
120 | 119 | ||
121 | return cookie; | 120 | return cookie; |
122 | } | 121 | } |
diff --git a/drivers/dma/mv_xor.c b/drivers/dma/mv_xor.c index bcda17426411..3f46df3390c7 100644 --- a/drivers/dma/mv_xor.c +++ b/drivers/dma/mv_xor.c | |||
@@ -18,7 +18,6 @@ | |||
18 | 18 | ||
19 | #include <linux/init.h> | 19 | #include <linux/init.h> |
20 | #include <linux/module.h> | 20 | #include <linux/module.h> |
21 | #include <linux/async_tx.h> | ||
22 | #include <linux/delay.h> | 21 | #include <linux/delay.h> |
23 | #include <linux/dma-mapping.h> | 22 | #include <linux/dma-mapping.h> |
24 | #include <linux/spinlock.h> | 23 | #include <linux/spinlock.h> |
@@ -340,7 +339,7 @@ mv_xor_run_tx_complete_actions(struct mv_xor_desc_slot *desc, | |||
340 | } | 339 | } |
341 | 340 | ||
342 | /* run dependent operations */ | 341 | /* run dependent operations */ |
343 | async_tx_run_dependencies(&desc->async_tx); | 342 | dma_run_dependencies(&desc->async_tx); |
344 | 343 | ||
345 | return cookie; | 344 | return cookie; |
346 | } | 345 | } |