projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
569432e
)
dw_dmac: Adding support for 64 bit access width for memcpy xfers
author
Viresh Kumar
<viresh.kumar@st.com>
Thu, 3 Mar 2011 10:17:18 +0000
(15:47 +0530)
committer
Vinod Koul
<vinod.koul@intel.com>
Sun, 6 Mar 2011 19:42:27 +0000
(
01:12
+0530)
Signed-off-by: Viresh Kumar <viresh.kumar@st.com>
Signed-off-by: Vinod Koul <vinod.koul@intel.com>
drivers/dma/dw_dmac.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/dma/dw_dmac.c
b/drivers/dma/dw_dmac.c
index 2b0d5e99ae7148d56335ad7fda9db186202ac3cc..e5d97bf9264afa017356ccd066fd8f6220719eb4 100644
(file)
--- a/
drivers/dma/dw_dmac.c
+++ b/
drivers/dma/dw_dmac.c
@@
-583,7
+583,9
@@
dwc_prep_dma_memcpy(struct dma_chan *chan, dma_addr_t dest, dma_addr_t src,
* We can be a lot more clever here, but this should take care
* of the most common optimization.
*/
- if (!((src | dest | len) & 3))
+ if (!((src | dest | len) & 7))
+ src_width = dst_width = 3;
+ else if (!((src | dest | len) & 3))
src_width = dst_width = 2;
else if (!((src | dest | len) & 1))
src_width = dst_width = 1;