aboutsummaryrefslogtreecommitdiffstats
path: root/arch/blackfin/include/asm/bfin-global.h
diff options
context:
space:
mode:
authorBarry Song <barry.song@analog.com>2009-12-02 09:13:36 +0000
committerMike Frysinger <vapier@gentoo.org>2009-12-15 00:15:48 -0500
commitc45c06596e0d45125d25beb0fe24a68aef1f1046 (patch)
treea556caee3f3f14ae9fd0eb5bb9e7053ecd8c63e8 /arch/blackfin/include/asm/bfin-global.h
parentBlackfin: push BF5Xx configs down into mach-specific Kconfigs (diff)
downloadlinux-dev-c45c06596e0d45125d25beb0fe24a68aef1f1046.tar.xz
linux-dev-c45c06596e0d45125d25beb0fe24a68aef1f1046.zip
Blackfin: support smaller uncached DMA chunks for memory constrained systems
When working with 8 meg systems, forcing a 1 meg DMA chunk heavily cuts into the available resources. So support smaller chunks to better cover needs for these systems. Signed-off-by: Barry Song <barry.song@analog.com> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/include/asm/bfin-global.h')
-rw-r--r--arch/blackfin/include/asm/bfin-global.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/blackfin/include/asm/bfin-global.h b/arch/blackfin/include/asm/bfin-global.h
index 741c02112c06..e6485c305ea6 100644
--- a/arch/blackfin/include/asm/bfin-global.h
+++ b/arch/blackfin/include/asm/bfin-global.h
@@ -20,6 +20,12 @@
# define DMA_UNCACHED_REGION (2 * 1024 * 1024)
#elif defined(CONFIG_DMA_UNCACHED_1M)
# define DMA_UNCACHED_REGION (1024 * 1024)
+#elif defined(CONFIG_DMA_UNCACHED_512K)
+# define DMA_UNCACHED_REGION (512 * 1024)
+#elif defined(CONFIG_DMA_UNCACHED_256K)
+# define DMA_UNCACHED_REGION (256 * 1024)
+#elif defined(CONFIG_DMA_UNCACHED_128K)
+# define DMA_UNCACHED_REGION (128 * 1024)
#else
# define DMA_UNCACHED_REGION (0)
#endif