From: FUJITA Tomonori Date: Wed, 11 Aug 2010 01:03:23 +0000 (-0700) Subject: dma-mapping: parisc: set ARCH_DMA_MINALIGN X-Git-Tag: v3.0~3702 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7896bfa451b209f73bc8ec14721dcc2c5329a0a9;p=platform%2Fkernel%2Flinux-amlogic.git dma-mapping: parisc: set ARCH_DMA_MINALIGN Architectures that handle DMA-non-coherent memory need to set ARCH_DMA_MINALIGN to make sure that kmalloc'ed buffer is DMA-safe: the buffer doesn't share a cache with the others. Signed-off-by: FUJITA Tomonori Cc: Kyle McMartin Cc: Helge Deller Cc: James E.J. Bottomley Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/parisc/include/asm/cache.h b/arch/parisc/include/asm/cache.h index 45effe6..039880e 100644 --- a/arch/parisc/include/asm/cache.h +++ b/arch/parisc/include/asm/cache.h @@ -28,6 +28,8 @@ #define SMP_CACHE_BYTES L1_CACHE_BYTES +#define ARCH_DMA_MINALIGN L1_CACHE_BYTES + #define __read_mostly __attribute__((__section__(".data..read_mostly"))) void parisc_cache_init(void); /* initializes cache-flushing */