Linux MIPS Architecture development
 help / color / mirror / Atom feed
* fix oops in dma_unmap_page on not coherent mips platforms
@ 2008-11-28  7:52 Jan Nikitenko
  2008-12-26 15:07 ` Atsushi Nemoto
  2009-03-13 23:00 ` Ralf Baechle
  0 siblings, 2 replies; 4+ messages in thread
From: Jan Nikitenko @ 2008-11-28  7:52 UTC (permalink / raw)
  To: Ralf Baechle; +Cc: linux-mips

dma_cache_wback_inv() expects virtual address, but physical was provided
due to translation via plat_dma_addr_to_phys().
If replaced with dma_addr_to_virt(), page fault oops from dma_unmap_page()
is gone on au1550 platform.

Signed-off-by: Jan Nikitenko <jan.nikitenko@gmail.com>
---
 arch/mips/mm/dma-default.c |    2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/mips/mm/dma-default.c b/arch/mips/mm/dma-default.c
index 5b98d0e..5f336c1 100644
--- a/arch/mips/mm/dma-default.c
+++ b/arch/mips/mm/dma-default.c
@@ -222,7 +222,7 @@ void dma_unmap_page(struct device *dev, dma_addr_t dma_address, size_t size,
 	if (!plat_device_is_coherent(dev) && direction != DMA_TO_DEVICE) {
 		unsigned long addr;
 
-		addr = plat_dma_addr_to_phys(dma_address);
+		addr = dma_addr_to_virt(dma_address);
 		dma_cache_wback_inv(addr, size);
 	}
 

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-03-14 16:17 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-28  7:52 fix oops in dma_unmap_page on not coherent mips platforms Jan Nikitenko
2008-12-26 15:07 ` Atsushi Nemoto
2009-03-13 23:00 ` Ralf Baechle
2009-03-14 16:17   ` Atsushi Nemoto

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox