1 // SPDX-License-Identifier: GPL-2.0-only
3 * Based on linux/arch/arm/mm/dma-mapping.c
5 * Copyright (C) 2000-2004 Russell King
8 #include <linux/export.h>
10 #include <linux/dma-direct.h>
11 #include <linux/scatterlist.h>
13 #include <asm/cachetype.h>
14 #include <asm/cacheflush.h>
15 #include <asm/outercache.h>
21 * The generic direct mapping code is used if
23 * - cpu is v7m w/o cache support
24 * - device is coherent
25 * otherwise arm_nommu_dma_ops is used.
27 * arm_nommu_dma_ops rely on consistent DMA memory (please, refer to
28 * [1] on how to declare such memory).
30 * [1] Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt
33 static void *arm_nommu_dma_alloc(struct device
*dev
, size_t size
,
34 dma_addr_t
*dma_handle
, gfp_t gfp
,
38 void *ret
= dma_alloc_from_global_coherent(dev
, size
, dma_handle
);
41 * dma_alloc_from_global_coherent() may fail because:
43 * - no consistent DMA region has been defined, so we can't
45 * - there is no space left in consistent DMA region, so we
46 * only can fallback to generic allocator if we are
47 * advertised that consistency is not required.
50 WARN_ON_ONCE(ret
== NULL
);
54 static void arm_nommu_dma_free(struct device
*dev
, size_t size
,
55 void *cpu_addr
, dma_addr_t dma_addr
,
58 int ret
= dma_release_from_global_coherent(get_order(size
), cpu_addr
);
60 WARN_ON_ONCE(ret
== 0);
63 static int arm_nommu_dma_mmap(struct device
*dev
, struct vm_area_struct
*vma
,
64 void *cpu_addr
, dma_addr_t dma_addr
, size_t size
,
69 if (dma_mmap_from_global_coherent(vma
, cpu_addr
, size
, &ret
))
71 if (dma_mmap_from_dev_coherent(dev
, vma
, cpu_addr
, size
, &ret
))
77 static void __dma_page_cpu_to_dev(phys_addr_t paddr
, size_t size
,
78 enum dma_data_direction dir
)
80 dmac_map_area(__va(paddr
), size
, dir
);
82 if (dir
== DMA_FROM_DEVICE
)
83 outer_inv_range(paddr
, paddr
+ size
);
85 outer_clean_range(paddr
, paddr
+ size
);
88 static void __dma_page_dev_to_cpu(phys_addr_t paddr
, size_t size
,
89 enum dma_data_direction dir
)
91 if (dir
!= DMA_TO_DEVICE
) {
92 outer_inv_range(paddr
, paddr
+ size
);
93 dmac_unmap_area(__va(paddr
), size
, dir
);
97 static dma_addr_t
arm_nommu_dma_map_page(struct device
*dev
, struct page
*page
,
98 unsigned long offset
, size_t size
,
99 enum dma_data_direction dir
,
102 dma_addr_t handle
= page_to_phys(page
) + offset
;
104 __dma_page_cpu_to_dev(handle
, size
, dir
);
109 static void arm_nommu_dma_unmap_page(struct device
*dev
, dma_addr_t handle
,
110 size_t size
, enum dma_data_direction dir
,
113 __dma_page_dev_to_cpu(handle
, size
, dir
);
117 static int arm_nommu_dma_map_sg(struct device
*dev
, struct scatterlist
*sgl
,
118 int nents
, enum dma_data_direction dir
,
122 struct scatterlist
*sg
;
124 for_each_sg(sgl
, sg
, nents
, i
) {
125 sg_dma_address(sg
) = sg_phys(sg
);
126 sg_dma_len(sg
) = sg
->length
;
127 __dma_page_cpu_to_dev(sg_dma_address(sg
), sg_dma_len(sg
), dir
);
133 static void arm_nommu_dma_unmap_sg(struct device
*dev
, struct scatterlist
*sgl
,
134 int nents
, enum dma_data_direction dir
,
137 struct scatterlist
*sg
;
140 for_each_sg(sgl
, sg
, nents
, i
)
141 __dma_page_dev_to_cpu(sg_dma_address(sg
), sg_dma_len(sg
), dir
);
144 static void arm_nommu_dma_sync_single_for_device(struct device
*dev
,
145 dma_addr_t handle
, size_t size
, enum dma_data_direction dir
)
147 __dma_page_cpu_to_dev(handle
, size
, dir
);
150 static void arm_nommu_dma_sync_single_for_cpu(struct device
*dev
,
151 dma_addr_t handle
, size_t size
, enum dma_data_direction dir
)
153 __dma_page_cpu_to_dev(handle
, size
, dir
);
156 static void arm_nommu_dma_sync_sg_for_device(struct device
*dev
, struct scatterlist
*sgl
,
157 int nents
, enum dma_data_direction dir
)
159 struct scatterlist
*sg
;
162 for_each_sg(sgl
, sg
, nents
, i
)
163 __dma_page_cpu_to_dev(sg_dma_address(sg
), sg_dma_len(sg
), dir
);
166 static void arm_nommu_dma_sync_sg_for_cpu(struct device
*dev
, struct scatterlist
*sgl
,
167 int nents
, enum dma_data_direction dir
)
169 struct scatterlist
*sg
;
172 for_each_sg(sgl
, sg
, nents
, i
)
173 __dma_page_dev_to_cpu(sg_dma_address(sg
), sg_dma_len(sg
), dir
);
176 const struct dma_map_ops arm_nommu_dma_ops
= {
177 .alloc
= arm_nommu_dma_alloc
,
178 .free
= arm_nommu_dma_free
,
179 .mmap
= arm_nommu_dma_mmap
,
180 .map_page
= arm_nommu_dma_map_page
,
181 .unmap_page
= arm_nommu_dma_unmap_page
,
182 .map_sg
= arm_nommu_dma_map_sg
,
183 .unmap_sg
= arm_nommu_dma_unmap_sg
,
184 .sync_single_for_device
= arm_nommu_dma_sync_single_for_device
,
185 .sync_single_for_cpu
= arm_nommu_dma_sync_single_for_cpu
,
186 .sync_sg_for_device
= arm_nommu_dma_sync_sg_for_device
,
187 .sync_sg_for_cpu
= arm_nommu_dma_sync_sg_for_cpu
,
189 EXPORT_SYMBOL(arm_nommu_dma_ops
);
191 void arch_setup_dma_ops(struct device
*dev
, u64 dma_base
, u64 size
,
192 const struct iommu_ops
*iommu
, bool coherent
)
194 if (IS_ENABLED(CONFIG_CPU_V7M
)) {
196 * Cache support for v7m is optional, so can be treated as
197 * coherent if no cache has been detected. Note that it is not
198 * enough to check if MPU is in use or not since in absense of
199 * MPU system memory map is used.
201 dev
->archdata
.dma_coherent
= (cacheid
) ? coherent
: true;
204 * Assume coherent DMA in case MMU/MPU has not been set up.
206 dev
->archdata
.dma_coherent
= (get_cr() & CR_M
) ? coherent
: true;
209 if (!dev
->archdata
.dma_coherent
)
210 set_dma_ops(dev
, &arm_nommu_dma_ops
);