1 // SPDX-License-Identifier: GPL-2.0-only
3 * RISC-V specific functions to support DMA for non-coherent devices
5 * Copyright (c) 2021 Western Digital Corporation or its affiliates.
8 #include <linux/dma-direct.h>
9 #include <linux/dma-map-ops.h>
11 #include <asm/cacheflush.h>
12 #include <asm/dma-noncoherent.h>
14 static bool noncoherent_supported __ro_after_init
;
15 int dma_cache_alignment __ro_after_init
= ARCH_DMA_MINALIGN
;
16 EXPORT_SYMBOL_GPL(dma_cache_alignment
);
18 static inline void arch_dma_cache_wback(phys_addr_t paddr
, size_t size
)
20 void *vaddr
= phys_to_virt(paddr
);
22 #ifdef CONFIG_RISCV_NONSTANDARD_CACHE_OPS
23 if (unlikely(noncoherent_cache_ops
.wback
)) {
24 noncoherent_cache_ops
.wback(paddr
, size
);
28 ALT_CMO_OP(CLEAN
, vaddr
, size
, riscv_cbom_block_size
);
31 static inline void arch_dma_cache_inv(phys_addr_t paddr
, size_t size
)
33 void *vaddr
= phys_to_virt(paddr
);
35 #ifdef CONFIG_RISCV_NONSTANDARD_CACHE_OPS
36 if (unlikely(noncoherent_cache_ops
.inv
)) {
37 noncoherent_cache_ops
.inv(paddr
, size
);
42 ALT_CMO_OP(INVAL
, vaddr
, size
, riscv_cbom_block_size
);
45 static inline void arch_dma_cache_wback_inv(phys_addr_t paddr
, size_t size
)
47 void *vaddr
= phys_to_virt(paddr
);
49 #ifdef CONFIG_RISCV_NONSTANDARD_CACHE_OPS
50 if (unlikely(noncoherent_cache_ops
.wback_inv
)) {
51 noncoherent_cache_ops
.wback_inv(paddr
, size
);
56 ALT_CMO_OP(FLUSH
, vaddr
, size
, riscv_cbom_block_size
);
59 static inline bool arch_sync_dma_clean_before_fromdevice(void)
64 static inline bool arch_sync_dma_cpu_needs_post_dma_flush(void)
69 void arch_sync_dma_for_device(phys_addr_t paddr
, size_t size
,
70 enum dma_data_direction dir
)
74 arch_dma_cache_wback(paddr
, size
);
78 if (!arch_sync_dma_clean_before_fromdevice()) {
79 arch_dma_cache_inv(paddr
, size
);
84 case DMA_BIDIRECTIONAL
:
85 /* Skip the invalidate here if it's done later */
86 if (IS_ENABLED(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU
) &&
87 arch_sync_dma_cpu_needs_post_dma_flush())
88 arch_dma_cache_wback(paddr
, size
);
90 arch_dma_cache_wback_inv(paddr
, size
);
98 void arch_sync_dma_for_cpu(phys_addr_t paddr
, size_t size
,
99 enum dma_data_direction dir
)
105 case DMA_FROM_DEVICE
:
106 case DMA_BIDIRECTIONAL
:
107 /* FROM_DEVICE invalidate needed if speculative CPU prefetch only */
108 if (arch_sync_dma_cpu_needs_post_dma_flush())
109 arch_dma_cache_inv(paddr
, size
);
117 void arch_dma_prep_coherent(struct page
*page
, size_t size
)
119 void *flush_addr
= page_address(page
);
121 #ifdef CONFIG_RISCV_NONSTANDARD_CACHE_OPS
122 if (unlikely(noncoherent_cache_ops
.wback_inv
)) {
123 noncoherent_cache_ops
.wback_inv(page_to_phys(page
), size
);
128 ALT_CMO_OP(FLUSH
, flush_addr
, size
, riscv_cbom_block_size
);
131 void arch_setup_dma_ops(struct device
*dev
, bool coherent
)
133 WARN_TAINT(!coherent
&& riscv_cbom_block_size
> ARCH_DMA_MINALIGN
,
134 TAINT_CPU_OUT_OF_SPEC
,
135 "%s %s: ARCH_DMA_MINALIGN smaller than riscv,cbom-block-size (%d < %d)",
136 dev_driver_string(dev
), dev_name(dev
),
137 ARCH_DMA_MINALIGN
, riscv_cbom_block_size
);
139 WARN_TAINT(!coherent
&& !noncoherent_supported
, TAINT_CPU_OUT_OF_SPEC
,
140 "%s %s: device non-coherent but no non-coherent operations supported",
141 dev_driver_string(dev
), dev_name(dev
));
143 dev
->dma_coherent
= coherent
;
146 void riscv_noncoherent_supported(void)
148 WARN(!riscv_cbom_block_size
,
149 "Non-coherent DMA support enabled without a block size\n");
150 noncoherent_supported
= true;
153 void __init
riscv_set_dma_cache_alignment(void)
155 if (!noncoherent_supported
)
156 dma_cache_alignment
= 1;