From: Anton Staaf Date: Mon, 17 Oct 2011 23:46:06 +0000 (-0700) Subject: powerpc: cache: define ARCH_DMA_MINALIGN for DMA buffer alignment X-Git-Tag: v2011.12-rc1~471 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=0991701a27e7f1de983ff2250dbdb88a7c8c60ec;p=u-boot powerpc: cache: define ARCH_DMA_MINALIGN for DMA buffer alignment Signed-off-by: Anton Staaf Acked-by: Stefan Roese Cc: Mike Frysinger Cc: Lukasz Majewski Cc: Wolfgang Denk Cc: Stefan Roese --- diff --git a/arch/powerpc/include/asm/cache.h b/arch/powerpc/include/asm/cache.h index 53e8d05f50..e6b8f69b76 100644 --- a/arch/powerpc/include/asm/cache.h +++ b/arch/powerpc/include/asm/cache.h @@ -20,6 +20,12 @@ #define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT) +/* + * Use the L1 data cache line size value for the minimum DMA buffer alignment + * on PowerPC. + */ +#define ARCH_DMA_MINALIGN L1_CACHE_BYTES + /* * For compatibility reasons support the CONFIG_SYS_CACHELINE_SIZE too */