projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fc1b138
)
arch/avr32: add option to skip sync on DMA map
author
Alexander Duyck
<
[email protected]
>
Wed, 14 Dec 2016 23:04:35 +0000
(15:04 -0800)
committer
Linus Torvalds
<
[email protected]
>
Thu, 15 Dec 2016 00:04:07 +0000
(16:04 -0800)
The use of DMA_ATTR_SKIP_CPU_SYNC was not consistent across all of the
DMA APIs in the arch/arm folder. This change is meant to correct that
so that we get consistent behavior.
Link:
http://lkml.kernel.org/r/
[email protected]
Signed-off-by: Alexander Duyck <
[email protected]
>
Acked-by: Hans-Christian Noren Egtvedt <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/avr32/mm/dma-coherent.c
patch
|
blob
|
history
diff --git
a/arch/avr32/mm/dma-coherent.c
b/arch/avr32/mm/dma-coherent.c
index 58610d0df7ededdde8eefadefba9a3bacdce4d12..54534e5d0781bb343a5ae72f482cea4fa228d104 100644
(file)
--- a/
arch/avr32/mm/dma-coherent.c
+++ b/
arch/avr32/mm/dma-coherent.c
@@
-146,7
+146,8
@@
static dma_addr_t avr32_dma_map_page(struct device *dev, struct page *page,
{
void *cpu_addr = page_address(page) + offset;
- dma_cache_sync(dev, cpu_addr, size, direction);
+ if (!(attrs & DMA_ATTR_SKIP_CPU_SYNC))
+ dma_cache_sync(dev, cpu_addr, size, direction);
return virt_to_bus(cpu_addr);
}
@@
-162,6
+163,10
@@
static int avr32_dma_map_sg(struct device *dev, struct scatterlist *sglist,
sg->dma_address = page_to_bus(sg_page(sg)) + sg->offset;
virt = sg_virt(sg);
+
+ if (attrs & DMA_ATTR_SKIP_CPU_SYNC)
+ continue;
+
dma_cache_sync(dev, virt, sg->length, direction);
}