diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-09-27 08:41:44 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2014-01-22 14:43:10 -0500 |
commit | 885014bcf284cdfbe3428f2cfa3882edde5ff5fa (patch) | |
tree | cb0eeee346b51eb7af6c8cf8c49a046bb937f296 /arch/mips/Kconfig | |
parent | 5792bf6438658cb129c3022aa2cf7e9b19b5de3a (diff) |
MIPS: improve checks for noncoherent DMA
Only one MIPS development board actually supports enabling/disabling DMA
coherency at runtime, so it's not a good idea to push the overhead of
checking that configuration setting onto every other supported target as
well.
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Signed-off-by: John Crispin <blogic@openwrt.org>
Patchwork: http://patchwork.linux-mips.org/patch/5912/
Diffstat (limited to 'arch/mips/Kconfig')
-rw-r--r-- | arch/mips/Kconfig | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/mips/Kconfig b/arch/mips/Kconfig index a7ec153be0b9..57a887334a65 100644 --- a/arch/mips/Kconfig +++ b/arch/mips/Kconfig | |||
@@ -301,7 +301,7 @@ config MIPS_MALTA | |||
301 | select CEVT_R4K | 301 | select CEVT_R4K |
302 | select CSRC_R4K | 302 | select CSRC_R4K |
303 | select CSRC_GIC | 303 | select CSRC_GIC |
304 | select DMA_NONCOHERENT | 304 | select DMA_MAYBE_COHERENT |
305 | select GENERIC_ISA_DMA | 305 | select GENERIC_ISA_DMA |
306 | select HAVE_PCSPKR_PLATFORM | 306 | select HAVE_PCSPKR_PLATFORM |
307 | select IRQ_CPU | 307 | select IRQ_CPU |
@@ -893,6 +893,10 @@ config FW_CFE | |||
893 | config ARCH_DMA_ADDR_T_64BIT | 893 | config ARCH_DMA_ADDR_T_64BIT |
894 | def_bool (HIGHMEM && 64BIT_PHYS_ADDR) || 64BIT | 894 | def_bool (HIGHMEM && 64BIT_PHYS_ADDR) || 64BIT |
895 | 895 | ||
896 | config DMA_MAYBE_COHERENT | ||
897 | select DMA_NONCOHERENT | ||
898 | bool | ||
899 | |||
896 | config DMA_COHERENT | 900 | config DMA_COHERENT |
897 | bool | 901 | bool |
898 | 902 | ||