Merge 5.0-rc6 into driver-core-next
[linux/fpc-iii.git] / arch / arm / mm / dma-mapping-nommu.c
blobf304b10e23a4cbfa9c3c89335dd917418f82c45f
1 /*
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>
13 #include <linux/mm.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>
20 #include <asm/cp15.h>
22 #include "dma.h"
25 * The generic direct mapping code is used if
26 * - MMU/MPU is off
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,
39 unsigned long attrs)
42 void *ret;
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_pages(dev, size, dma_handle, gfp,
51 attrs);
53 ret = dma_alloc_from_global_coherent(size, dma_handle);
56 * dma_alloc_from_global_coherent() may fail because:
58 * - no consistent DMA region has been defined, so we can't
59 * continue.
60 * - there is no space left in consistent DMA region, so we
61 * only can fallback to generic allocator if we are
62 * advertised that consistency is not required.
65 WARN_ON_ONCE(ret == NULL);
66 return ret;
69 static void arm_nommu_dma_free(struct device *dev, size_t size,
70 void *cpu_addr, dma_addr_t dma_addr,
71 unsigned long attrs)
73 if (attrs & DMA_ATTR_NON_CONSISTENT) {
74 dma_direct_free_pages(dev, size, cpu_addr, dma_addr, attrs);
75 } else {
76 int ret = dma_release_from_global_coherent(get_order(size),
77 cpu_addr);
79 WARN_ON_ONCE(ret == 0);
82 return;
85 static int arm_nommu_dma_mmap(struct device *dev, struct vm_area_struct *vma,
86 void *cpu_addr, dma_addr_t dma_addr, size_t size,
87 unsigned long attrs)
89 int ret;
91 if (dma_mmap_from_global_coherent(vma, cpu_addr, size, &ret))
92 return ret;
94 return dma_common_mmap(dev, vma, cpu_addr, dma_addr, size, attrs);
98 static void __dma_page_cpu_to_dev(phys_addr_t paddr, size_t size,
99 enum dma_data_direction dir)
101 dmac_map_area(__va(paddr), size, dir);
103 if (dir == DMA_FROM_DEVICE)
104 outer_inv_range(paddr, paddr + size);
105 else
106 outer_clean_range(paddr, paddr + size);
109 static void __dma_page_dev_to_cpu(phys_addr_t paddr, size_t size,
110 enum dma_data_direction dir)
112 if (dir != DMA_TO_DEVICE) {
113 outer_inv_range(paddr, paddr + size);
114 dmac_unmap_area(__va(paddr), size, dir);
118 static dma_addr_t arm_nommu_dma_map_page(struct device *dev, struct page *page,
119 unsigned long offset, size_t size,
120 enum dma_data_direction dir,
121 unsigned long attrs)
123 dma_addr_t handle = page_to_phys(page) + offset;
125 __dma_page_cpu_to_dev(handle, size, dir);
127 return handle;
130 static void arm_nommu_dma_unmap_page(struct device *dev, dma_addr_t handle,
131 size_t size, enum dma_data_direction dir,
132 unsigned long attrs)
134 __dma_page_dev_to_cpu(handle, size, dir);
138 static int arm_nommu_dma_map_sg(struct device *dev, struct scatterlist *sgl,
139 int nents, enum dma_data_direction dir,
140 unsigned long attrs)
142 int i;
143 struct scatterlist *sg;
145 for_each_sg(sgl, sg, nents, i) {
146 sg_dma_address(sg) = sg_phys(sg);
147 sg_dma_len(sg) = sg->length;
148 __dma_page_cpu_to_dev(sg_dma_address(sg), sg_dma_len(sg), dir);
151 return nents;
154 static void arm_nommu_dma_unmap_sg(struct device *dev, struct scatterlist *sgl,
155 int nents, enum dma_data_direction dir,
156 unsigned long attrs)
158 struct scatterlist *sg;
159 int i;
161 for_each_sg(sgl, sg, nents, i)
162 __dma_page_dev_to_cpu(sg_dma_address(sg), sg_dma_len(sg), dir);
165 static void arm_nommu_dma_sync_single_for_device(struct device *dev,
166 dma_addr_t handle, size_t size, enum dma_data_direction dir)
168 __dma_page_cpu_to_dev(handle, size, dir);
171 static void arm_nommu_dma_sync_single_for_cpu(struct device *dev,
172 dma_addr_t handle, size_t size, enum dma_data_direction dir)
174 __dma_page_cpu_to_dev(handle, size, dir);
177 static void arm_nommu_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sgl,
178 int nents, enum dma_data_direction dir)
180 struct scatterlist *sg;
181 int i;
183 for_each_sg(sgl, sg, nents, i)
184 __dma_page_cpu_to_dev(sg_dma_address(sg), sg_dma_len(sg), dir);
187 static void arm_nommu_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sgl,
188 int nents, enum dma_data_direction dir)
190 struct scatterlist *sg;
191 int i;
193 for_each_sg(sgl, sg, nents, i)
194 __dma_page_dev_to_cpu(sg_dma_address(sg), sg_dma_len(sg), dir);
197 const struct dma_map_ops arm_nommu_dma_ops = {
198 .alloc = arm_nommu_dma_alloc,
199 .free = arm_nommu_dma_free,
200 .mmap = arm_nommu_dma_mmap,
201 .map_page = arm_nommu_dma_map_page,
202 .unmap_page = arm_nommu_dma_unmap_page,
203 .map_sg = arm_nommu_dma_map_sg,
204 .unmap_sg = arm_nommu_dma_unmap_sg,
205 .sync_single_for_device = arm_nommu_dma_sync_single_for_device,
206 .sync_single_for_cpu = arm_nommu_dma_sync_single_for_cpu,
207 .sync_sg_for_device = arm_nommu_dma_sync_sg_for_device,
208 .sync_sg_for_cpu = arm_nommu_dma_sync_sg_for_cpu,
210 EXPORT_SYMBOL(arm_nommu_dma_ops);
212 void arch_setup_dma_ops(struct device *dev, u64 dma_base, u64 size,
213 const struct iommu_ops *iommu, bool coherent)
215 if (IS_ENABLED(CONFIG_CPU_V7M)) {
217 * Cache support for v7m is optional, so can be treated as
218 * coherent if no cache has been detected. Note that it is not
219 * enough to check if MPU is in use or not since in absense of
220 * MPU system memory map is used.
222 dev->archdata.dma_coherent = (cacheid) ? coherent : true;
223 } else {
225 * Assume coherent DMA in case MMU/MPU has not been set up.
227 dev->archdata.dma_coherent = (get_cr() & CR_M) ? coherent : true;
230 if (!dev->archdata.dma_coherent)
231 set_dma_ops(dev, &arm_nommu_dma_ops);