2 * Based on linux/arch/arm/mm/dma-mapping.c
4 * Copyright (C) 2000-2004 Russell King
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
12 #include <linux/export.h>
14 #include <linux/dma-direct.h>
15 #include <linux/scatterlist.h>
17 #include <asm/cachetype.h>
18 #include <asm/cacheflush.h>
19 #include <asm/outercache.h>
25 * dma_direct_ops is used if
27 * - cpu is v7m w/o cache support
28 * - device is coherent
29 * otherwise arm_nommu_dma_ops is used.
31 * arm_nommu_dma_ops rely on consistent DMA memory (please, refer to
32 * [1] on how to declare such memory).
34 * [1] Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt
37 static void *arm_nommu_dma_alloc(struct device
*dev
, size_t size
,
38 dma_addr_t
*dma_handle
, gfp_t gfp
,
45 * Try generic allocator first if we are advertised that
46 * consistency is not required.
49 if (attrs
& DMA_ATTR_NON_CONSISTENT
)
50 return dma_direct_alloc(dev
, size
, dma_handle
, gfp
, attrs
);
52 ret
= dma_alloc_from_global_coherent(size
, dma_handle
);
55 * dma_alloc_from_global_coherent() may fail because:
57 * - no consistent DMA region has been defined, so we can't
59 * - there is no space left in consistent DMA region, so we
60 * only can fallback to generic allocator if we are
61 * advertised that consistency is not required.
64 WARN_ON_ONCE(ret
== NULL
);
68 static void arm_nommu_dma_free(struct device
*dev
, size_t size
,
69 void *cpu_addr
, dma_addr_t dma_addr
,
72 if (attrs
& DMA_ATTR_NON_CONSISTENT
) {
73 dma_direct_free(dev
, size
, cpu_addr
, dma_addr
, attrs
);
75 int ret
= dma_release_from_global_coherent(get_order(size
),
78 WARN_ON_ONCE(ret
== 0);
84 static int arm_nommu_dma_mmap(struct device
*dev
, struct vm_area_struct
*vma
,
85 void *cpu_addr
, dma_addr_t dma_addr
, size_t size
,
90 if (dma_mmap_from_global_coherent(vma
, cpu_addr
, size
, &ret
))
93 return dma_common_mmap(dev
, vma
, cpu_addr
, dma_addr
, size
);
97 static void __dma_page_cpu_to_dev(phys_addr_t paddr
, size_t size
,
98 enum dma_data_direction dir
)
100 dmac_map_area(__va(paddr
), size
, dir
);
102 if (dir
== DMA_FROM_DEVICE
)
103 outer_inv_range(paddr
, paddr
+ size
);
105 outer_clean_range(paddr
, paddr
+ size
);
108 static void __dma_page_dev_to_cpu(phys_addr_t paddr
, size_t size
,
109 enum dma_data_direction dir
)
111 if (dir
!= DMA_TO_DEVICE
) {
112 outer_inv_range(paddr
, paddr
+ size
);
113 dmac_unmap_area(__va(paddr
), size
, dir
);
117 static dma_addr_t
arm_nommu_dma_map_page(struct device
*dev
, struct page
*page
,
118 unsigned long offset
, size_t size
,
119 enum dma_data_direction dir
,
122 dma_addr_t handle
= page_to_phys(page
) + offset
;
124 __dma_page_cpu_to_dev(handle
, size
, dir
);
129 static void arm_nommu_dma_unmap_page(struct device
*dev
, dma_addr_t handle
,
130 size_t size
, enum dma_data_direction dir
,
133 __dma_page_dev_to_cpu(handle
, size
, dir
);
137 static int arm_nommu_dma_map_sg(struct device
*dev
, struct scatterlist
*sgl
,
138 int nents
, enum dma_data_direction dir
,
142 struct scatterlist
*sg
;
144 for_each_sg(sgl
, sg
, nents
, i
) {
145 sg_dma_address(sg
) = sg_phys(sg
);
146 sg_dma_len(sg
) = sg
->length
;
147 __dma_page_cpu_to_dev(sg_dma_address(sg
), sg_dma_len(sg
), dir
);
153 static void arm_nommu_dma_unmap_sg(struct device
*dev
, struct scatterlist
*sgl
,
154 int nents
, enum dma_data_direction dir
,
157 struct scatterlist
*sg
;
160 for_each_sg(sgl
, sg
, nents
, i
)
161 __dma_page_dev_to_cpu(sg_dma_address(sg
), sg_dma_len(sg
), dir
);
164 static void arm_nommu_dma_sync_single_for_device(struct device
*dev
,
165 dma_addr_t handle
, size_t size
, enum dma_data_direction dir
)
167 __dma_page_cpu_to_dev(handle
, size
, dir
);
170 static void arm_nommu_dma_sync_single_for_cpu(struct device
*dev
,
171 dma_addr_t handle
, size_t size
, enum dma_data_direction dir
)
173 __dma_page_cpu_to_dev(handle
, size
, dir
);
176 static void arm_nommu_dma_sync_sg_for_device(struct device
*dev
, struct scatterlist
*sgl
,
177 int nents
, enum dma_data_direction dir
)
179 struct scatterlist
*sg
;
182 for_each_sg(sgl
, sg
, nents
, i
)
183 __dma_page_cpu_to_dev(sg_dma_address(sg
), sg_dma_len(sg
), dir
);
186 static void arm_nommu_dma_sync_sg_for_cpu(struct device
*dev
, struct scatterlist
*sgl
,
187 int nents
, enum dma_data_direction dir
)
189 struct scatterlist
*sg
;
192 for_each_sg(sgl
, sg
, nents
, i
)
193 __dma_page_dev_to_cpu(sg_dma_address(sg
), sg_dma_len(sg
), dir
);
196 const struct dma_map_ops arm_nommu_dma_ops
= {
197 .alloc
= arm_nommu_dma_alloc
,
198 .free
= arm_nommu_dma_free
,
199 .mmap
= arm_nommu_dma_mmap
,
200 .map_page
= arm_nommu_dma_map_page
,
201 .unmap_page
= arm_nommu_dma_unmap_page
,
202 .map_sg
= arm_nommu_dma_map_sg
,
203 .unmap_sg
= arm_nommu_dma_unmap_sg
,
204 .sync_single_for_device
= arm_nommu_dma_sync_single_for_device
,
205 .sync_single_for_cpu
= arm_nommu_dma_sync_single_for_cpu
,
206 .sync_sg_for_device
= arm_nommu_dma_sync_sg_for_device
,
207 .sync_sg_for_cpu
= arm_nommu_dma_sync_sg_for_cpu
,
209 EXPORT_SYMBOL(arm_nommu_dma_ops
);
211 static const struct dma_map_ops
*arm_nommu_get_dma_map_ops(bool coherent
)
213 return coherent
? &dma_direct_ops
: &arm_nommu_dma_ops
;
216 void arch_setup_dma_ops(struct device
*dev
, u64 dma_base
, u64 size
,
217 const struct iommu_ops
*iommu
, bool coherent
)
219 const struct dma_map_ops
*dma_ops
;
221 if (IS_ENABLED(CONFIG_CPU_V7M
)) {
223 * Cache support for v7m is optional, so can be treated as
224 * coherent if no cache has been detected. Note that it is not
225 * enough to check if MPU is in use or not since in absense of
226 * MPU system memory map is used.
228 dev
->archdata
.dma_coherent
= (cacheid
) ? coherent
: true;
231 * Assume coherent DMA in case MMU/MPU has not been set up.
233 dev
->archdata
.dma_coherent
= (get_cr() & CR_M
) ? coherent
: true;
236 dma_ops
= arm_nommu_get_dma_map_ops(dev
->archdata
.dma_coherent
);
238 set_dma_ops(dev
, dma_ops
);
241 void arch_teardown_dma_ops(struct device
*dev
)
245 #define PREALLOC_DMA_DEBUG_ENTRIES 4096
247 static int __init
dma_debug_do_init(void)
249 dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES
);
252 core_initcall(dma_debug_do_init
);