blob: bd81e74cca7b114eda2ee508689f69e8a9de3890 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Robert P. J. Day96532ba2008-02-03 15:06:26 +02002#ifndef _LINUX_DMA_MAPPING_H
3#define _LINUX_DMA_MAPPING_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
Robin Murphy002edb62015-11-06 16:32:51 -08005#include <linux/sizes.h>
Andrew Morton842fa692011-11-02 13:39:33 -07006#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/device.h>
8#include <linux/err.h>
Christoph Hellwige1c7e322016-01-20 15:02:05 -08009#include <linux/dma-debug.h>
Alexey Dobriyanb7f080c2011-06-16 11:01:34 +000010#include <linux/dma-direction.h>
FUJITA Tomonorif0402a22009-01-05 23:59:01 +090011#include <linux/scatterlist.h>
Christoph Hellwige1c7e322016-01-20 15:02:05 -080012#include <linux/bug.h>
Tom Lendacky648babb2017-07-17 16:10:22 -050013#include <linux/mem_encrypt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -070015/**
16 * List of possible attributes associated with a DMA mapping. The semantics
17 * of each attribute should be defined in Documentation/DMA-attributes.txt.
18 *
19 * DMA_ATTR_WRITE_BARRIER: DMA to a memory region with this attribute
20 * forces all pending DMA writes to complete.
21 */
22#define DMA_ATTR_WRITE_BARRIER (1UL << 0)
23/*
24 * DMA_ATTR_WEAK_ORDERING: Specifies that reads and writes to the mapping
25 * may be weakly ordered, that is that reads and writes may pass each other.
26 */
27#define DMA_ATTR_WEAK_ORDERING (1UL << 1)
28/*
29 * DMA_ATTR_WRITE_COMBINE: Specifies that writes to the mapping may be
30 * buffered to improve performance.
31 */
32#define DMA_ATTR_WRITE_COMBINE (1UL << 2)
33/*
34 * DMA_ATTR_NON_CONSISTENT: Lets the platform to choose to return either
35 * consistent or non-consistent memory as it sees fit.
36 */
37#define DMA_ATTR_NON_CONSISTENT (1UL << 3)
38/*
39 * DMA_ATTR_NO_KERNEL_MAPPING: Lets the platform to avoid creating a kernel
40 * virtual mapping for the allocated buffer.
41 */
42#define DMA_ATTR_NO_KERNEL_MAPPING (1UL << 4)
43/*
44 * DMA_ATTR_SKIP_CPU_SYNC: Allows platform code to skip synchronization of
45 * the CPU cache for the given buffer assuming that it has been already
46 * transferred to 'device' domain.
47 */
48#define DMA_ATTR_SKIP_CPU_SYNC (1UL << 5)
49/*
50 * DMA_ATTR_FORCE_CONTIGUOUS: Forces contiguous allocation of the buffer
51 * in physical memory.
52 */
53#define DMA_ATTR_FORCE_CONTIGUOUS (1UL << 6)
54/*
55 * DMA_ATTR_ALLOC_SINGLE_PAGES: This is a hint to the DMA-mapping subsystem
56 * that it's probably not worth the time to try to allocate memory to in a way
57 * that gives better TLB efficiency.
58 */
59#define DMA_ATTR_ALLOC_SINGLE_PAGES (1UL << 7)
Mauricio Faria de Oliveiraa9a62c92016-10-11 13:54:14 -070060/*
61 * DMA_ATTR_NO_WARN: This tells the DMA-mapping subsystem to suppress
62 * allocation failure reports (similarly to __GFP_NOWARN).
63 */
64#define DMA_ATTR_NO_WARN (1UL << 8)
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -070065
Bjorn Helgaas77f2ea22014-04-30 11:20:53 -060066/*
Mitchel Humpherysb2fb3662017-01-06 18:58:11 +053067 * DMA_ATTR_PRIVILEGED: used to indicate that the buffer is fully
68 * accessible at an elevated privilege level (and ideally inaccessible or
69 * at least read-only at lesser-privileged levels).
70 */
71#define DMA_ATTR_PRIVILEGED (1UL << 9)
72
73/*
Bjorn Helgaas77f2ea22014-04-30 11:20:53 -060074 * A dma_addr_t can hold any valid DMA or bus address for the platform.
75 * It can be given to a device to use as a DMA source or target. A CPU cannot
76 * reference a dma_addr_t directly because there may be translation between
77 * its physical address space and the bus address space.
78 */
FUJITA Tomonorif0402a22009-01-05 23:59:01 +090079struct dma_map_ops {
Marek Szyprowski613c4572012-03-28 16:36:27 +020080 void* (*alloc)(struct device *dev, size_t size,
81 dma_addr_t *dma_handle, gfp_t gfp,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -070082 unsigned long attrs);
Marek Szyprowski613c4572012-03-28 16:36:27 +020083 void (*free)(struct device *dev, size_t size,
84 void *vaddr, dma_addr_t dma_handle,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -070085 unsigned long attrs);
Marek Szyprowski9adc5372011-12-21 16:55:33 +010086 int (*mmap)(struct device *, struct vm_area_struct *,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -070087 void *, dma_addr_t, size_t,
88 unsigned long attrs);
Marek Szyprowski9adc5372011-12-21 16:55:33 +010089
Marek Szyprowskid2b74282012-06-13 10:05:52 +020090 int (*get_sgtable)(struct device *dev, struct sg_table *sgt, void *,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -070091 dma_addr_t, size_t, unsigned long attrs);
Marek Szyprowskid2b74282012-06-13 10:05:52 +020092
FUJITA Tomonorif0402a22009-01-05 23:59:01 +090093 dma_addr_t (*map_page)(struct device *dev, struct page *page,
94 unsigned long offset, size_t size,
95 enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -070096 unsigned long attrs);
FUJITA Tomonorif0402a22009-01-05 23:59:01 +090097 void (*unmap_page)(struct device *dev, dma_addr_t dma_handle,
98 size_t size, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -070099 unsigned long attrs);
Ricardo Ribalda Delgado04abab62015-02-11 13:53:15 +0100100 /*
101 * map_sg returns 0 on error and a value > 0 on success.
102 * It should never return a value < 0.
103 */
FUJITA Tomonorif0402a22009-01-05 23:59:01 +0900104 int (*map_sg)(struct device *dev, struct scatterlist *sg,
105 int nents, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700106 unsigned long attrs);
FUJITA Tomonorif0402a22009-01-05 23:59:01 +0900107 void (*unmap_sg)(struct device *dev,
108 struct scatterlist *sg, int nents,
109 enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700110 unsigned long attrs);
Niklas Söderlundba409b32016-08-10 13:22:14 +0200111 dma_addr_t (*map_resource)(struct device *dev, phys_addr_t phys_addr,
112 size_t size, enum dma_data_direction dir,
113 unsigned long attrs);
114 void (*unmap_resource)(struct device *dev, dma_addr_t dma_handle,
115 size_t size, enum dma_data_direction dir,
116 unsigned long attrs);
FUJITA Tomonorif0402a22009-01-05 23:59:01 +0900117 void (*sync_single_for_cpu)(struct device *dev,
118 dma_addr_t dma_handle, size_t size,
119 enum dma_data_direction dir);
120 void (*sync_single_for_device)(struct device *dev,
121 dma_addr_t dma_handle, size_t size,
122 enum dma_data_direction dir);
FUJITA Tomonorif0402a22009-01-05 23:59:01 +0900123 void (*sync_sg_for_cpu)(struct device *dev,
124 struct scatterlist *sg, int nents,
125 enum dma_data_direction dir);
126 void (*sync_sg_for_device)(struct device *dev,
127 struct scatterlist *sg, int nents,
128 enum dma_data_direction dir);
Christoph Hellwigc9eb6172017-08-27 10:37:15 +0200129 void (*cache_sync)(struct device *dev, void *vaddr, size_t size,
130 enum dma_data_direction direction);
FUJITA Tomonorif0402a22009-01-05 23:59:01 +0900131 int (*mapping_error)(struct device *dev, dma_addr_t dma_addr);
132 int (*dma_supported)(struct device *dev, u64 mask);
Milton Miller3a8f7552011-06-24 09:05:23 +0000133#ifdef ARCH_HAS_DMA_GET_REQUIRED_MASK
134 u64 (*get_required_mask)(struct device *dev);
135#endif
FUJITA Tomonorif0402a22009-01-05 23:59:01 +0900136};
137
Christoph Hellwig002e6742018-01-09 16:30:23 +0100138extern const struct dma_map_ops dma_direct_ops;
Bart Van Assche551199a2017-01-20 13:04:07 -0800139extern const struct dma_map_ops dma_virt_ops;
Christian Borntraegera8463d42016-02-02 21:46:32 -0800140
Andrew Morton8f286c32007-10-18 03:05:07 -0700141#define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1))
Borislav Petkov34c65382007-10-18 03:05:06 -0700142
James Bottomley32e8f702007-10-16 01:23:55 -0700143#define DMA_MASK_NONE 0x0ULL
144
Rolf Eike Beerd6bd3a32006-09-29 01:59:48 -0700145static inline int valid_dma_direction(int dma_direction)
146{
147 return ((dma_direction == DMA_BIDIRECTIONAL) ||
148 (dma_direction == DMA_TO_DEVICE) ||
149 (dma_direction == DMA_FROM_DEVICE));
150}
151
James Bottomley32e8f702007-10-16 01:23:55 -0700152static inline int is_device_dma_capable(struct device *dev)
153{
154 return dev->dma_mask != NULL && *dev->dma_mask != DMA_MASK_NONE;
155}
156
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800157#ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT
158/*
159 * These three functions are only for dma allocator.
160 * Don't use them in device drivers.
161 */
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100162int dma_alloc_from_dev_coherent(struct device *dev, ssize_t size,
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800163 dma_addr_t *dma_handle, void **ret);
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100164int dma_release_from_dev_coherent(struct device *dev, int order, void *vaddr);
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800165
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100166int dma_mmap_from_dev_coherent(struct device *dev, struct vm_area_struct *vma,
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800167 void *cpu_addr, size_t size, int *ret);
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100168
169void *dma_alloc_from_global_coherent(ssize_t size, dma_addr_t *dma_handle);
170int dma_release_from_global_coherent(int order, void *vaddr);
171int dma_mmap_from_global_coherent(struct vm_area_struct *vma, void *cpu_addr,
172 size_t size, int *ret);
173
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800174#else
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100175#define dma_alloc_from_dev_coherent(dev, size, handle, ret) (0)
176#define dma_release_from_dev_coherent(dev, order, vaddr) (0)
177#define dma_mmap_from_dev_coherent(dev, vma, vaddr, order, ret) (0)
178
179static inline void *dma_alloc_from_global_coherent(ssize_t size,
180 dma_addr_t *dma_handle)
181{
182 return NULL;
183}
184
185static inline int dma_release_from_global_coherent(int order, void *vaddr)
186{
187 return 0;
188}
189
190static inline int dma_mmap_from_global_coherent(struct vm_area_struct *vma,
191 void *cpu_addr, size_t size,
192 int *ret)
193{
194 return 0;
195}
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800196#endif /* CONFIG_HAVE_GENERIC_DMA_COHERENT */
197
Dan Williams1b0fac42007-07-15 23:40:26 -0700198#ifdef CONFIG_HAS_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199#include <asm/dma-mapping.h>
Bart Van Assche815dd182017-01-20 13:04:04 -0800200static inline const struct dma_map_ops *get_dma_ops(struct device *dev)
201{
202 if (dev && dev->dma_ops)
203 return dev->dma_ops;
204 return get_arch_dma_ops(dev ? dev->bus : NULL);
205}
206
Bart Van Asscheca6e8e12017-01-20 13:04:03 -0800207static inline void set_dma_ops(struct device *dev,
208 const struct dma_map_ops *dma_ops)
209{
210 dev->dma_ops = dma_ops;
211}
Dan Williams1b0fac42007-07-15 23:40:26 -0700212#else
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800213/*
Geert Uytterhoevenf29ab492018-03-16 14:25:40 +0100214 * Define the dma api to allow compilation of dma dependent code.
215 * Code that depends on the dma-mapping API needs to set 'depends on HAS_DMA'
216 * in its Kconfig, unless it already depends on <something> || COMPILE_TEST,
217 * where <something> guarantuees the availability of the dma-mapping API.
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800218 */
Bart Van Assche52997092017-01-20 13:04:01 -0800219static inline const struct dma_map_ops *get_dma_ops(struct device *dev)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800220{
Geert Uytterhoevenf29ab492018-03-16 14:25:40 +0100221 return NULL;
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800222}
223#endif
224
225static inline dma_addr_t dma_map_single_attrs(struct device *dev, void *ptr,
226 size_t size,
227 enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700228 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800229{
Bart Van Assche52997092017-01-20 13:04:01 -0800230 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800231 dma_addr_t addr;
232
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800233 BUG_ON(!valid_dma_direction(dir));
234 addr = ops->map_page(dev, virt_to_page(ptr),
Geliang Tang8e994692016-01-20 15:02:12 -0800235 offset_in_page(ptr), size,
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800236 dir, attrs);
237 debug_dma_map_page(dev, virt_to_page(ptr),
Geliang Tang8e994692016-01-20 15:02:12 -0800238 offset_in_page(ptr), size,
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800239 dir, addr, true);
240 return addr;
241}
242
243static inline void dma_unmap_single_attrs(struct device *dev, dma_addr_t addr,
244 size_t size,
245 enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700246 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800247{
Bart Van Assche52997092017-01-20 13:04:01 -0800248 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800249
250 BUG_ON(!valid_dma_direction(dir));
251 if (ops->unmap_page)
252 ops->unmap_page(dev, addr, size, dir, attrs);
253 debug_dma_unmap_page(dev, addr, size, dir, true);
254}
255
256/*
257 * dma_maps_sg_attrs returns 0 on error and > 0 on success.
258 * It should never return a value < 0.
259 */
260static inline int dma_map_sg_attrs(struct device *dev, struct scatterlist *sg,
261 int nents, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700262 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800263{
Bart Van Assche52997092017-01-20 13:04:01 -0800264 const struct dma_map_ops *ops = get_dma_ops(dev);
Levin, Alexander (Sasha Levin)49502762017-11-15 17:35:51 -0800265 int ents;
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800266
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800267 BUG_ON(!valid_dma_direction(dir));
268 ents = ops->map_sg(dev, sg, nents, dir, attrs);
269 BUG_ON(ents < 0);
270 debug_dma_map_sg(dev, sg, nents, ents, dir);
271
272 return ents;
273}
274
275static inline void dma_unmap_sg_attrs(struct device *dev, struct scatterlist *sg,
276 int nents, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700277 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800278{
Bart Van Assche52997092017-01-20 13:04:01 -0800279 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800280
281 BUG_ON(!valid_dma_direction(dir));
282 debug_dma_unmap_sg(dev, sg, nents, dir);
283 if (ops->unmap_sg)
284 ops->unmap_sg(dev, sg, nents, dir, attrs);
285}
286
Alexander Duyck0495c3d2016-12-14 15:05:23 -0800287static inline dma_addr_t dma_map_page_attrs(struct device *dev,
288 struct page *page,
289 size_t offset, size_t size,
290 enum dma_data_direction dir,
291 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800292{
Bart Van Assche52997092017-01-20 13:04:01 -0800293 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800294 dma_addr_t addr;
295
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800296 BUG_ON(!valid_dma_direction(dir));
Alexander Duyck0495c3d2016-12-14 15:05:23 -0800297 addr = ops->map_page(dev, page, offset, size, dir, attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800298 debug_dma_map_page(dev, page, offset, size, dir, addr, false);
299
300 return addr;
301}
302
Alexander Duyck0495c3d2016-12-14 15:05:23 -0800303static inline void dma_unmap_page_attrs(struct device *dev,
304 dma_addr_t addr, size_t size,
305 enum dma_data_direction dir,
306 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800307{
Bart Van Assche52997092017-01-20 13:04:01 -0800308 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800309
310 BUG_ON(!valid_dma_direction(dir));
311 if (ops->unmap_page)
Alexander Duyck0495c3d2016-12-14 15:05:23 -0800312 ops->unmap_page(dev, addr, size, dir, attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800313 debug_dma_unmap_page(dev, addr, size, dir, false);
314}
315
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200316static inline dma_addr_t dma_map_resource(struct device *dev,
317 phys_addr_t phys_addr,
318 size_t size,
319 enum dma_data_direction dir,
320 unsigned long attrs)
321{
Bart Van Assche52997092017-01-20 13:04:01 -0800322 const struct dma_map_ops *ops = get_dma_ops(dev);
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200323 dma_addr_t addr;
324
325 BUG_ON(!valid_dma_direction(dir));
326
327 /* Don't allow RAM to be mapped */
Niklas Söderlund3757dc42016-09-29 12:02:40 +0200328 BUG_ON(pfn_valid(PHYS_PFN(phys_addr)));
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200329
330 addr = phys_addr;
331 if (ops->map_resource)
332 addr = ops->map_resource(dev, phys_addr, size, dir, attrs);
333
334 debug_dma_map_resource(dev, phys_addr, size, dir, addr);
335
336 return addr;
337}
338
339static inline void dma_unmap_resource(struct device *dev, dma_addr_t addr,
340 size_t size, enum dma_data_direction dir,
341 unsigned long attrs)
342{
Bart Van Assche52997092017-01-20 13:04:01 -0800343 const struct dma_map_ops *ops = get_dma_ops(dev);
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200344
345 BUG_ON(!valid_dma_direction(dir));
346 if (ops->unmap_resource)
347 ops->unmap_resource(dev, addr, size, dir, attrs);
348 debug_dma_unmap_resource(dev, addr, size, dir);
349}
350
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800351static inline void dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr,
352 size_t size,
353 enum dma_data_direction dir)
354{
Bart Van Assche52997092017-01-20 13:04:01 -0800355 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800356
357 BUG_ON(!valid_dma_direction(dir));
358 if (ops->sync_single_for_cpu)
359 ops->sync_single_for_cpu(dev, addr, size, dir);
360 debug_dma_sync_single_for_cpu(dev, addr, size, dir);
361}
362
363static inline void dma_sync_single_for_device(struct device *dev,
364 dma_addr_t addr, size_t size,
365 enum dma_data_direction dir)
366{
Bart Van Assche52997092017-01-20 13:04:01 -0800367 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800368
369 BUG_ON(!valid_dma_direction(dir));
370 if (ops->sync_single_for_device)
371 ops->sync_single_for_device(dev, addr, size, dir);
372 debug_dma_sync_single_for_device(dev, addr, size, dir);
373}
374
375static inline void dma_sync_single_range_for_cpu(struct device *dev,
376 dma_addr_t addr,
377 unsigned long offset,
378 size_t size,
379 enum dma_data_direction dir)
380{
381 const struct dma_map_ops *ops = get_dma_ops(dev);
382
383 BUG_ON(!valid_dma_direction(dir));
384 if (ops->sync_single_for_cpu)
385 ops->sync_single_for_cpu(dev, addr + offset, size, dir);
386 debug_dma_sync_single_range_for_cpu(dev, addr, offset, size, dir);
387}
388
389static inline void dma_sync_single_range_for_device(struct device *dev,
390 dma_addr_t addr,
391 unsigned long offset,
392 size_t size,
393 enum dma_data_direction dir)
394{
395 const struct dma_map_ops *ops = get_dma_ops(dev);
396
397 BUG_ON(!valid_dma_direction(dir));
398 if (ops->sync_single_for_device)
399 ops->sync_single_for_device(dev, addr + offset, size, dir);
400 debug_dma_sync_single_range_for_device(dev, addr, offset, size, dir);
401}
402
403static inline void
404dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
405 int nelems, enum dma_data_direction dir)
406{
Bart Van Assche52997092017-01-20 13:04:01 -0800407 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800408
409 BUG_ON(!valid_dma_direction(dir));
410 if (ops->sync_sg_for_cpu)
411 ops->sync_sg_for_cpu(dev, sg, nelems, dir);
412 debug_dma_sync_sg_for_cpu(dev, sg, nelems, dir);
413}
414
415static inline void
416dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
417 int nelems, enum dma_data_direction dir)
418{
Bart Van Assche52997092017-01-20 13:04:01 -0800419 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800420
421 BUG_ON(!valid_dma_direction(dir));
422 if (ops->sync_sg_for_device)
423 ops->sync_sg_for_device(dev, sg, nelems, dir);
424 debug_dma_sync_sg_for_device(dev, sg, nelems, dir);
425
426}
427
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700428#define dma_map_single(d, a, s, r) dma_map_single_attrs(d, a, s, r, 0)
429#define dma_unmap_single(d, a, s, r) dma_unmap_single_attrs(d, a, s, r, 0)
430#define dma_map_sg(d, s, n, r) dma_map_sg_attrs(d, s, n, r, 0)
431#define dma_unmap_sg(d, s, n, r) dma_unmap_sg_attrs(d, s, n, r, 0)
Alexander Duyck0495c3d2016-12-14 15:05:23 -0800432#define dma_map_page(d, p, o, s, r) dma_map_page_attrs(d, p, o, s, r, 0)
433#define dma_unmap_page(d, a, s, r) dma_unmap_page_attrs(d, a, s, r, 0)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800434
Christoph Hellwigc9eb6172017-08-27 10:37:15 +0200435static inline void
436dma_cache_sync(struct device *dev, void *vaddr, size_t size,
437 enum dma_data_direction dir)
438{
439 const struct dma_map_ops *ops = get_dma_ops(dev);
440
441 BUG_ON(!valid_dma_direction(dir));
442 if (ops->cache_sync)
443 ops->cache_sync(dev, vaddr, size, dir);
444}
445
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800446extern int dma_common_mmap(struct device *dev, struct vm_area_struct *vma,
Christoph Hellwig58b04402018-09-11 08:55:28 +0200447 void *cpu_addr, dma_addr_t dma_addr, size_t size,
448 unsigned long attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800449
450void *dma_common_contiguous_remap(struct page *page, size_t size,
451 unsigned long vm_flags,
452 pgprot_t prot, const void *caller);
453
454void *dma_common_pages_remap(struct page **pages, size_t size,
455 unsigned long vm_flags, pgprot_t prot,
456 const void *caller);
457void dma_common_free_remap(void *cpu_addr, size_t size, unsigned long vm_flags);
458
459/**
460 * dma_mmap_attrs - map a coherent DMA allocation into user space
461 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
462 * @vma: vm_area_struct describing requested user mapping
463 * @cpu_addr: kernel CPU-view address returned from dma_alloc_attrs
464 * @handle: device-view address returned from dma_alloc_attrs
465 * @size: size of memory originally requested in dma_alloc_attrs
466 * @attrs: attributes of mapping properties requested in dma_alloc_attrs
467 *
468 * Map a coherent DMA buffer previously allocated by dma_alloc_attrs
469 * into user space. The coherent DMA buffer must not be freed by the
470 * driver until the user space mapping has been released.
471 */
472static inline int
473dma_mmap_attrs(struct device *dev, struct vm_area_struct *vma, void *cpu_addr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700474 dma_addr_t dma_addr, size_t size, unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800475{
Bart Van Assche52997092017-01-20 13:04:01 -0800476 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800477 BUG_ON(!ops);
478 if (ops->mmap)
479 return ops->mmap(dev, vma, cpu_addr, dma_addr, size, attrs);
Christoph Hellwig58b04402018-09-11 08:55:28 +0200480 return dma_common_mmap(dev, vma, cpu_addr, dma_addr, size, attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800481}
482
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700483#define dma_mmap_coherent(d, v, c, h, s) dma_mmap_attrs(d, v, c, h, s, 0)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800484
485int
Christoph Hellwig9406a492018-08-23 09:39:38 +0200486dma_common_get_sgtable(struct device *dev, struct sg_table *sgt, void *cpu_addr,
487 dma_addr_t dma_addr, size_t size, unsigned long attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800488
489static inline int
490dma_get_sgtable_attrs(struct device *dev, struct sg_table *sgt, void *cpu_addr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700491 dma_addr_t dma_addr, size_t size,
492 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800493{
Bart Van Assche52997092017-01-20 13:04:01 -0800494 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800495 BUG_ON(!ops);
496 if (ops->get_sgtable)
497 return ops->get_sgtable(dev, sgt, cpu_addr, dma_addr, size,
498 attrs);
Christoph Hellwig9406a492018-08-23 09:39:38 +0200499 return dma_common_get_sgtable(dev, sgt, cpu_addr, dma_addr, size,
500 attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800501}
502
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700503#define dma_get_sgtable(d, t, v, h, s) dma_get_sgtable_attrs(d, t, v, h, s, 0)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800504
505#ifndef arch_dma_alloc_attrs
Huaisheng Ye884571f2018-05-25 13:00:00 +0800506#define arch_dma_alloc_attrs(dev) (true)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800507#endif
508
509static inline void *dma_alloc_attrs(struct device *dev, size_t size,
510 dma_addr_t *dma_handle, gfp_t flag,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700511 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800512{
Bart Van Assche52997092017-01-20 13:04:01 -0800513 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800514 void *cpu_addr;
515
516 BUG_ON(!ops);
Christoph Hellwig205e1b72017-12-22 14:50:47 +0100517 WARN_ON_ONCE(dev && !dev->coherent_dma_mask);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800518
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100519 if (dma_alloc_from_dev_coherent(dev, size, dma_handle, &cpu_addr))
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800520 return cpu_addr;
521
Christoph Hellwige89f5b32018-03-28 15:35:35 +0200522 /* let the implementation decide on the zone to allocate from: */
523 flag &= ~(__GFP_DMA | __GFP_DMA32 | __GFP_HIGHMEM);
Christoph Hellwig57bf5a82017-12-22 16:05:15 +0100524
Huaisheng Ye884571f2018-05-25 13:00:00 +0800525 if (!arch_dma_alloc_attrs(&dev))
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800526 return NULL;
527 if (!ops->alloc)
528 return NULL;
529
530 cpu_addr = ops->alloc(dev, size, dma_handle, flag, attrs);
531 debug_dma_alloc_coherent(dev, size, *dma_handle, cpu_addr);
532 return cpu_addr;
533}
534
535static inline void dma_free_attrs(struct device *dev, size_t size,
536 void *cpu_addr, dma_addr_t dma_handle,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700537 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800538{
Bart Van Assche52997092017-01-20 13:04:01 -0800539 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800540
541 BUG_ON(!ops);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800542
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100543 if (dma_release_from_dev_coherent(dev, get_order(size), cpu_addr))
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800544 return;
Robin Murphyd27fb992018-07-23 22:42:48 +0100545 /*
546 * On non-coherent platforms which implement DMA-coherent buffers via
547 * non-cacheable remaps, ops->free() may call vunmap(). Thus getting
548 * this far in IRQ context is a) at risk of a BUG_ON() or trying to
549 * sleep on some machines, and b) an indication that the driver is
550 * probably misusing the coherent API anyway.
551 */
552 WARN_ON(irqs_disabled());
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800553
Zhen Leid6b7eae2016-03-09 14:08:38 -0800554 if (!ops->free || !cpu_addr)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800555 return;
556
557 debug_dma_free_coherent(dev, size, cpu_addr, dma_handle);
558 ops->free(dev, size, cpu_addr, dma_handle, attrs);
559}
560
561static inline void *dma_alloc_coherent(struct device *dev, size_t size,
562 dma_addr_t *dma_handle, gfp_t flag)
563{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700564 return dma_alloc_attrs(dev, size, dma_handle, flag, 0);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800565}
566
567static inline void dma_free_coherent(struct device *dev, size_t size,
568 void *cpu_addr, dma_addr_t dma_handle)
569{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700570 return dma_free_attrs(dev, size, cpu_addr, dma_handle, 0);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800571}
572
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800573static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
574{
Robin Murphy5237e952017-07-24 18:29:27 +0100575 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800576
Robin Murphy5237e952017-07-24 18:29:27 +0100577 debug_dma_mapping_error(dev, dma_addr);
578 if (ops->mapping_error)
579 return ops->mapping_error(dev, dma_addr);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800580 return 0;
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800581}
582
Tom Lendacky648babb2017-07-17 16:10:22 -0500583static inline void dma_check_mask(struct device *dev, u64 mask)
584{
585 if (sme_active() && (mask < (((u64)sme_get_me_mask() << 1) - 1)))
586 dev_warn(dev, "SME is active, device will require DMA bounce buffers\n");
587}
588
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800589static inline int dma_supported(struct device *dev, u64 mask)
590{
Bart Van Assche52997092017-01-20 13:04:01 -0800591 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800592
593 if (!ops)
594 return 0;
595 if (!ops->dma_supported)
596 return 1;
597 return ops->dma_supported(dev, mask);
598}
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800599
600#ifndef HAVE_ARCH_DMA_SET_MASK
601static inline int dma_set_mask(struct device *dev, u64 mask)
602{
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800603 if (!dev->dma_mask || !dma_supported(dev, mask))
604 return -EIO;
Tom Lendacky648babb2017-07-17 16:10:22 -0500605
606 dma_check_mask(dev, mask);
607
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800608 *dev->dma_mask = mask;
609 return 0;
610}
Dan Williams1b0fac42007-07-15 23:40:26 -0700611#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
FUJITA Tomonori589fc9a2008-09-12 19:42:34 +0900613static inline u64 dma_get_mask(struct device *dev)
614{
FUJITA Tomonori07a2c012008-09-19 02:02:05 +0900615 if (dev && dev->dma_mask && *dev->dma_mask)
FUJITA Tomonori589fc9a2008-09-12 19:42:34 +0900616 return *dev->dma_mask;
Yang Hongyang284901a2009-04-06 19:01:15 -0700617 return DMA_BIT_MASK(32);
FUJITA Tomonori589fc9a2008-09-12 19:42:34 +0900618}
619
Rob Herring58af4a22012-03-20 14:33:01 -0500620#ifdef CONFIG_ARCH_HAS_DMA_SET_COHERENT_MASK
FUJITA Tomonori710224f2010-09-22 13:04:55 -0700621int dma_set_coherent_mask(struct device *dev, u64 mask);
622#else
FUJITA Tomonori6a1961f2010-03-10 15:23:39 -0800623static inline int dma_set_coherent_mask(struct device *dev, u64 mask)
624{
625 if (!dma_supported(dev, mask))
626 return -EIO;
Tom Lendacky648babb2017-07-17 16:10:22 -0500627
628 dma_check_mask(dev, mask);
629
FUJITA Tomonori6a1961f2010-03-10 15:23:39 -0800630 dev->coherent_dma_mask = mask;
631 return 0;
632}
FUJITA Tomonori710224f2010-09-22 13:04:55 -0700633#endif
FUJITA Tomonori6a1961f2010-03-10 15:23:39 -0800634
Russell King4aa806b2013-06-26 13:49:44 +0100635/*
636 * Set both the DMA mask and the coherent DMA mask to the same thing.
637 * Note that we don't check the return value from dma_set_coherent_mask()
638 * as the DMA API guarantees that the coherent DMA mask can be set to
639 * the same or smaller than the streaming DMA mask.
640 */
641static inline int dma_set_mask_and_coherent(struct device *dev, u64 mask)
642{
643 int rc = dma_set_mask(dev, mask);
644 if (rc == 0)
645 dma_set_coherent_mask(dev, mask);
646 return rc;
647}
648
Russell Kingfa6a8d62013-06-27 12:21:45 +0100649/*
650 * Similar to the above, except it deals with the case where the device
651 * does not have dev->dma_mask appropriately setup.
652 */
653static inline int dma_coerce_mask_and_coherent(struct device *dev, u64 mask)
654{
655 dev->dma_mask = &dev->coherent_dma_mask;
656 return dma_set_mask_and_coherent(dev, mask);
657}
658
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659extern u64 dma_get_required_mask(struct device *dev);
660
Will Deacona3a60f82014-08-27 15:49:10 +0100661#ifndef arch_setup_dma_ops
Will Deacon97890ba2014-08-27 16:24:20 +0100662static inline void arch_setup_dma_ops(struct device *dev, u64 dma_base,
Robin Murphy53c92d72016-04-07 18:42:05 +0100663 u64 size, const struct iommu_ops *iommu,
Will Deacon97890ba2014-08-27 16:24:20 +0100664 bool coherent) { }
665#endif
666
667#ifndef arch_teardown_dma_ops
Christoph Hellwig46053c72018-08-24 10:29:02 +0200668static inline void arch_teardown_dma_ops(struct device *dev)
669{
670 dev->dma_ops = NULL;
671}
Santosh Shilimkar591c1ee42014-04-24 11:30:04 -0400672#endif
673
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800674static inline unsigned int dma_get_max_seg_size(struct device *dev)
675{
Robin Murphy002edb62015-11-06 16:32:51 -0800676 if (dev->dma_parms && dev->dma_parms->max_segment_size)
677 return dev->dma_parms->max_segment_size;
678 return SZ_64K;
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800679}
680
681static inline unsigned int dma_set_max_seg_size(struct device *dev,
682 unsigned int size)
683{
684 if (dev->dma_parms) {
685 dev->dma_parms->max_segment_size = size;
686 return 0;
Robin Murphy002edb62015-11-06 16:32:51 -0800687 }
688 return -EIO;
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800689}
690
FUJITA Tomonorid22a6962008-02-04 22:28:13 -0800691static inline unsigned long dma_get_seg_boundary(struct device *dev)
692{
Robin Murphy002edb62015-11-06 16:32:51 -0800693 if (dev->dma_parms && dev->dma_parms->segment_boundary_mask)
694 return dev->dma_parms->segment_boundary_mask;
695 return DMA_BIT_MASK(32);
FUJITA Tomonorid22a6962008-02-04 22:28:13 -0800696}
697
698static inline int dma_set_seg_boundary(struct device *dev, unsigned long mask)
699{
700 if (dev->dma_parms) {
701 dev->dma_parms->segment_boundary_mask = mask;
702 return 0;
Robin Murphy002edb62015-11-06 16:32:51 -0800703 }
704 return -EIO;
FUJITA Tomonorid22a6962008-02-04 22:28:13 -0800705}
706
Santosh Shilimkar00c8f162013-07-29 14:18:48 +0100707#ifndef dma_max_pfn
708static inline unsigned long dma_max_pfn(struct device *dev)
709{
Christoph Hellwiga41ef1e2017-11-30 07:32:51 -0800710 return (*dev->dma_mask >> PAGE_SHIFT) + dev->dma_pfn_offset;
Santosh Shilimkar00c8f162013-07-29 14:18:48 +0100711}
712#endif
713
Andrew Morton842fa692011-11-02 13:39:33 -0700714static inline void *dma_zalloc_coherent(struct device *dev, size_t size,
715 dma_addr_t *dma_handle, gfp_t flag)
716{
Joe Perchesede23fa82013-08-26 22:45:23 -0700717 void *ret = dma_alloc_coherent(dev, size, dma_handle,
718 flag | __GFP_ZERO);
Andrew Morton842fa692011-11-02 13:39:33 -0700719 return ret;
720}
721
FUJITA Tomonori4565f012010-08-10 18:03:22 -0700722static inline int dma_get_cache_alignment(void)
723{
724#ifdef ARCH_DMA_MINALIGN
725 return ARCH_DMA_MINALIGN;
726#endif
727 return 1;
728}
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730/* flags for the coherent memory api */
Christoph Hellwig2436bdc2017-08-25 17:13:09 +0200731#define DMA_MEMORY_EXCLUSIVE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800733#ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT
734int dma_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr,
735 dma_addr_t device_addr, size_t size, int flags);
736void dma_release_declared_memory(struct device *dev);
737void *dma_mark_declared_memory_occupied(struct device *dev,
738 dma_addr_t device_addr, size_t size);
739#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740static inline int
Bjorn Helgaas88a984b2014-05-20 16:54:22 -0600741dma_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 dma_addr_t device_addr, size_t size, int flags)
743{
Christoph Hellwig2436bdc2017-08-25 17:13:09 +0200744 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
746
747static inline void
748dma_release_declared_memory(struct device *dev)
749{
750}
751
752static inline void *
753dma_mark_declared_memory_occupied(struct device *dev,
754 dma_addr_t device_addr, size_t size)
755{
756 return ERR_PTR(-EBUSY);
757}
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800758#endif /* CONFIG_HAVE_GENERIC_DMA_COHERENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Tejun Heo9ac78492007-01-20 16:00:26 +0900760/*
761 * Managed DMA API
762 */
Geert Uytterhoevenab642e92018-03-16 14:25:41 +0100763#ifdef CONFIG_HAS_DMA
Tejun Heo9ac78492007-01-20 16:00:26 +0900764extern void *dmam_alloc_coherent(struct device *dev, size_t size,
765 dma_addr_t *dma_handle, gfp_t gfp);
766extern void dmam_free_coherent(struct device *dev, size_t size, void *vaddr,
767 dma_addr_t dma_handle);
Geert Uytterhoevenab642e92018-03-16 14:25:41 +0100768#else /* !CONFIG_HAS_DMA */
769static inline void *dmam_alloc_coherent(struct device *dev, size_t size,
770 dma_addr_t *dma_handle, gfp_t gfp)
771{ return NULL; }
772static inline void dmam_free_coherent(struct device *dev, size_t size,
773 void *vaddr, dma_addr_t dma_handle) { }
774#endif /* !CONFIG_HAS_DMA */
775
Christoph Hellwig63d36c92017-06-12 19:15:04 +0200776extern void *dmam_alloc_attrs(struct device *dev, size_t size,
777 dma_addr_t *dma_handle, gfp_t gfp,
778 unsigned long attrs);
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800779#ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT
Bjorn Helgaas88a984b2014-05-20 16:54:22 -0600780extern int dmam_declare_coherent_memory(struct device *dev,
781 phys_addr_t phys_addr,
Tejun Heo9ac78492007-01-20 16:00:26 +0900782 dma_addr_t device_addr, size_t size,
783 int flags);
784extern void dmam_release_declared_memory(struct device *dev);
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800785#else /* CONFIG_HAVE_GENERIC_DMA_COHERENT */
Tejun Heo9ac78492007-01-20 16:00:26 +0900786static inline int dmam_declare_coherent_memory(struct device *dev,
Bjorn Helgaas88a984b2014-05-20 16:54:22 -0600787 phys_addr_t phys_addr, dma_addr_t device_addr,
Tejun Heo9ac78492007-01-20 16:00:26 +0900788 size_t size, gfp_t gfp)
789{
790 return 0;
791}
792
793static inline void dmam_release_declared_memory(struct device *dev)
794{
795}
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800796#endif /* CONFIG_HAVE_GENERIC_DMA_COHERENT */
Tejun Heo9ac78492007-01-20 16:00:26 +0900797
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800798static inline void *dma_alloc_wc(struct device *dev, size_t size,
799 dma_addr_t *dma_addr, gfp_t gfp)
Thierry Redingb4bbb102014-06-27 11:56:58 +0200800{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700801 return dma_alloc_attrs(dev, size, dma_addr, gfp,
802 DMA_ATTR_WRITE_COMBINE);
Thierry Redingb4bbb102014-06-27 11:56:58 +0200803}
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800804#ifndef dma_alloc_writecombine
805#define dma_alloc_writecombine dma_alloc_wc
806#endif
Thierry Redingb4bbb102014-06-27 11:56:58 +0200807
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800808static inline void dma_free_wc(struct device *dev, size_t size,
809 void *cpu_addr, dma_addr_t dma_addr)
Thierry Redingb4bbb102014-06-27 11:56:58 +0200810{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700811 return dma_free_attrs(dev, size, cpu_addr, dma_addr,
812 DMA_ATTR_WRITE_COMBINE);
Thierry Redingb4bbb102014-06-27 11:56:58 +0200813}
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800814#ifndef dma_free_writecombine
815#define dma_free_writecombine dma_free_wc
816#endif
Thierry Redingb4bbb102014-06-27 11:56:58 +0200817
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800818static inline int dma_mmap_wc(struct device *dev,
819 struct vm_area_struct *vma,
820 void *cpu_addr, dma_addr_t dma_addr,
821 size_t size)
Thierry Redingb4bbb102014-06-27 11:56:58 +0200822{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700823 return dma_mmap_attrs(dev, vma, cpu_addr, dma_addr, size,
824 DMA_ATTR_WRITE_COMBINE);
Thierry Redingb4bbb102014-06-27 11:56:58 +0200825}
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800826#ifndef dma_mmap_writecombine
827#define dma_mmap_writecombine dma_mmap_wc
828#endif
Arthur Kepner74bc7ce2008-04-29 01:00:30 -0700829
Christoph Hellwigf616ab52018-05-09 06:53:49 +0200830#ifdef CONFIG_NEED_DMA_MAP_STATE
FUJITA Tomonori0acedc12010-03-10 15:23:31 -0800831#define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME) dma_addr_t ADDR_NAME
832#define DEFINE_DMA_UNMAP_LEN(LEN_NAME) __u32 LEN_NAME
833#define dma_unmap_addr(PTR, ADDR_NAME) ((PTR)->ADDR_NAME)
834#define dma_unmap_addr_set(PTR, ADDR_NAME, VAL) (((PTR)->ADDR_NAME) = (VAL))
835#define dma_unmap_len(PTR, LEN_NAME) ((PTR)->LEN_NAME)
836#define dma_unmap_len_set(PTR, LEN_NAME, VAL) (((PTR)->LEN_NAME) = (VAL))
837#else
838#define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME)
839#define DEFINE_DMA_UNMAP_LEN(LEN_NAME)
840#define dma_unmap_addr(PTR, ADDR_NAME) (0)
841#define dma_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
842#define dma_unmap_len(PTR, LEN_NAME) (0)
843#define dma_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
844#endif
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846#endif