diff options
author | Christoph Hellwig <hch@lst.de> | 2023-10-12 09:52:27 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2023-10-22 16:38:55 +0200 |
commit | 7a360df941a4bd60847208de59f1ac8b166265a2 (patch) | |
tree | b7697b7e734e8c0af0d9ed4fac41e4a257d6e176 /arch/m68k/Kconfig | |
parent | net: fec: use dma_alloc_noncoherent for data cache enabled coldfire (diff) | |
download | linux-7a360df941a4bd60847208de59f1ac8b166265a2.tar.xz linux-7a360df941a4bd60847208de59f1ac8b166265a2.zip |
m68k: don't provide arch_dma_alloc for nommu/coldfire
Coldfire cores configured with a data cache can't provide coherent
DMA allocations at all.
Instead of returning non-coherent kernel memory in this case,
return NULL and fail the allocation.
The only driver that used to rely on the previous behavior (fec) has
been switched to use non-coherent allocations for this case recently.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Greg Ungerer <gerg@linux-m68k.org>
Tested-by: Greg Ungerer <gerg@linux-m68k.org>
Diffstat (limited to 'arch/m68k/Kconfig')
-rw-r--r-- | arch/m68k/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/arch/m68k/Kconfig b/arch/m68k/Kconfig index 50ada24dfbba..c1c0faffb0d4 100644 --- a/arch/m68k/Kconfig +++ b/arch/m68k/Kconfig @@ -6,7 +6,6 @@ config M68K select ARCH_HAS_BINFMT_FLAT select ARCH_HAS_CPU_FINALIZE_INIT if MMU select ARCH_HAS_CURRENT_STACK_POINTER - select ARCH_HAS_DMA_ALLOC if M68K_NONCOHERENT_DMA && COLDFIRE select ARCH_HAS_DMA_PREP_COHERENT if M68K_NONCOHERENT_DMA && !COLDFIRE select ARCH_HAS_SYNC_DMA_FOR_DEVICE if M68K_NONCOHERENT_DMA select ARCH_HAVE_NMI_SAFE_CMPXCHG if RMW_INSNS |