blob: 547a48bcfa3d33a9a8e3fb34ddd125a81fa846dd [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 u64 (*get_required_mask)(struct device *dev);
FUJITA Tomonorif0402a22009-01-05 23:59:01 +0900134};
135
Christoph Hellwig002e6742018-01-09 16:30:23 +0100136extern const struct dma_map_ops dma_direct_ops;
Bart Van Assche551199a2017-01-20 13:04:07 -0800137extern const struct dma_map_ops dma_virt_ops;
Christian Borntraegera8463d42016-02-02 21:46:32 -0800138
Andrew Morton8f286c32007-10-18 03:05:07 -0700139#define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1))
Borislav Petkov34c65382007-10-18 03:05:06 -0700140
James Bottomley32e8f702007-10-16 01:23:55 -0700141#define DMA_MASK_NONE 0x0ULL
142
Rolf Eike Beerd6bd3a32006-09-29 01:59:48 -0700143static inline int valid_dma_direction(int dma_direction)
144{
145 return ((dma_direction == DMA_BIDIRECTIONAL) ||
146 (dma_direction == DMA_TO_DEVICE) ||
147 (dma_direction == DMA_FROM_DEVICE));
148}
149
James Bottomley32e8f702007-10-16 01:23:55 -0700150static inline int is_device_dma_capable(struct device *dev)
151{
152 return dev->dma_mask != NULL && *dev->dma_mask != DMA_MASK_NONE;
153}
154
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800155#ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT
156/*
157 * These three functions are only for dma allocator.
158 * Don't use them in device drivers.
159 */
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100160int dma_alloc_from_dev_coherent(struct device *dev, ssize_t size,
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800161 dma_addr_t *dma_handle, void **ret);
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100162int dma_release_from_dev_coherent(struct device *dev, int order, void *vaddr);
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800163
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100164int dma_mmap_from_dev_coherent(struct device *dev, struct vm_area_struct *vma,
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800165 void *cpu_addr, size_t size, int *ret);
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100166
167void *dma_alloc_from_global_coherent(ssize_t size, dma_addr_t *dma_handle);
168int dma_release_from_global_coherent(int order, void *vaddr);
169int dma_mmap_from_global_coherent(struct vm_area_struct *vma, void *cpu_addr,
170 size_t size, int *ret);
171
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800172#else
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100173#define dma_alloc_from_dev_coherent(dev, size, handle, ret) (0)
174#define dma_release_from_dev_coherent(dev, order, vaddr) (0)
175#define dma_mmap_from_dev_coherent(dev, vma, vaddr, order, ret) (0)
176
177static inline void *dma_alloc_from_global_coherent(ssize_t size,
178 dma_addr_t *dma_handle)
179{
180 return NULL;
181}
182
183static inline int dma_release_from_global_coherent(int order, void *vaddr)
184{
185 return 0;
186}
187
188static inline int dma_mmap_from_global_coherent(struct vm_area_struct *vma,
189 void *cpu_addr, size_t size,
190 int *ret)
191{
192 return 0;
193}
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800194#endif /* CONFIG_HAVE_GENERIC_DMA_COHERENT */
195
Dan Williams1b0fac42007-07-15 23:40:26 -0700196#ifdef CONFIG_HAS_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197#include <asm/dma-mapping.h>
Bart Van Assche815dd182017-01-20 13:04:04 -0800198static inline const struct dma_map_ops *get_dma_ops(struct device *dev)
199{
200 if (dev && dev->dma_ops)
201 return dev->dma_ops;
202 return get_arch_dma_ops(dev ? dev->bus : NULL);
203}
204
Bart Van Asscheca6e8e12017-01-20 13:04:03 -0800205static inline void set_dma_ops(struct device *dev,
206 const struct dma_map_ops *dma_ops)
207{
208 dev->dma_ops = dma_ops;
209}
Dan Williams1b0fac42007-07-15 23:40:26 -0700210#else
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800211/*
Geert Uytterhoevenf29ab492018-03-16 14:25:40 +0100212 * Define the dma api to allow compilation of dma dependent code.
213 * Code that depends on the dma-mapping API needs to set 'depends on HAS_DMA'
214 * in its Kconfig, unless it already depends on <something> || COMPILE_TEST,
215 * where <something> guarantuees the availability of the dma-mapping API.
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800216 */
Bart Van Assche52997092017-01-20 13:04:01 -0800217static inline const struct dma_map_ops *get_dma_ops(struct device *dev)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800218{
Geert Uytterhoevenf29ab492018-03-16 14:25:40 +0100219 return NULL;
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800220}
221#endif
222
223static inline dma_addr_t dma_map_single_attrs(struct device *dev, void *ptr,
224 size_t size,
225 enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700226 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800227{
Bart Van Assche52997092017-01-20 13:04:01 -0800228 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800229 dma_addr_t addr;
230
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800231 BUG_ON(!valid_dma_direction(dir));
Stephen Boyd99c65fa2018-10-08 00:20:07 -0700232 debug_dma_map_single(dev, ptr, size);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800233 addr = ops->map_page(dev, virt_to_page(ptr),
Geliang Tang8e994692016-01-20 15:02:12 -0800234 offset_in_page(ptr), size,
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800235 dir, attrs);
236 debug_dma_map_page(dev, virt_to_page(ptr),
Geliang Tang8e994692016-01-20 15:02:12 -0800237 offset_in_page(ptr), size,
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800238 dir, addr, true);
239 return addr;
240}
241
242static inline void dma_unmap_single_attrs(struct device *dev, dma_addr_t addr,
243 size_t size,
244 enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700245 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800246{
Bart Van Assche52997092017-01-20 13:04:01 -0800247 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800248
249 BUG_ON(!valid_dma_direction(dir));
250 if (ops->unmap_page)
251 ops->unmap_page(dev, addr, size, dir, attrs);
252 debug_dma_unmap_page(dev, addr, size, dir, true);
253}
254
255/*
256 * dma_maps_sg_attrs returns 0 on error and > 0 on success.
257 * It should never return a value < 0.
258 */
259static inline int dma_map_sg_attrs(struct device *dev, struct scatterlist *sg,
260 int nents, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700261 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800262{
Bart Van Assche52997092017-01-20 13:04:01 -0800263 const struct dma_map_ops *ops = get_dma_ops(dev);
Levin, Alexander (Sasha Levin)49502762017-11-15 17:35:51 -0800264 int ents;
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800265
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800266 BUG_ON(!valid_dma_direction(dir));
267 ents = ops->map_sg(dev, sg, nents, dir, attrs);
268 BUG_ON(ents < 0);
269 debug_dma_map_sg(dev, sg, nents, ents, dir);
270
271 return ents;
272}
273
274static inline void dma_unmap_sg_attrs(struct device *dev, struct scatterlist *sg,
275 int nents, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700276 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800277{
Bart Van Assche52997092017-01-20 13:04:01 -0800278 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800279
280 BUG_ON(!valid_dma_direction(dir));
281 debug_dma_unmap_sg(dev, sg, nents, dir);
282 if (ops->unmap_sg)
283 ops->unmap_sg(dev, sg, nents, dir, attrs);
284}
285
Alexander Duyck0495c3d2016-12-14 15:05:23 -0800286static inline dma_addr_t dma_map_page_attrs(struct device *dev,
287 struct page *page,
288 size_t offset, size_t size,
289 enum dma_data_direction dir,
290 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800291{
Bart Van Assche52997092017-01-20 13:04:01 -0800292 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800293 dma_addr_t addr;
294
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800295 BUG_ON(!valid_dma_direction(dir));
Alexander Duyck0495c3d2016-12-14 15:05:23 -0800296 addr = ops->map_page(dev, page, offset, size, dir, attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800297 debug_dma_map_page(dev, page, offset, size, dir, addr, false);
298
299 return addr;
300}
301
Alexander Duyck0495c3d2016-12-14 15:05:23 -0800302static inline void dma_unmap_page_attrs(struct device *dev,
303 dma_addr_t addr, size_t size,
304 enum dma_data_direction dir,
305 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800306{
Bart Van Assche52997092017-01-20 13:04:01 -0800307 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800308
309 BUG_ON(!valid_dma_direction(dir));
310 if (ops->unmap_page)
Alexander Duyck0495c3d2016-12-14 15:05:23 -0800311 ops->unmap_page(dev, addr, size, dir, attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800312 debug_dma_unmap_page(dev, addr, size, dir, false);
313}
314
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200315static inline dma_addr_t dma_map_resource(struct device *dev,
316 phys_addr_t phys_addr,
317 size_t size,
318 enum dma_data_direction dir,
319 unsigned long attrs)
320{
Bart Van Assche52997092017-01-20 13:04:01 -0800321 const struct dma_map_ops *ops = get_dma_ops(dev);
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200322 dma_addr_t addr;
323
324 BUG_ON(!valid_dma_direction(dir));
325
326 /* Don't allow RAM to be mapped */
Niklas Söderlund3757dc42016-09-29 12:02:40 +0200327 BUG_ON(pfn_valid(PHYS_PFN(phys_addr)));
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200328
329 addr = phys_addr;
330 if (ops->map_resource)
331 addr = ops->map_resource(dev, phys_addr, size, dir, attrs);
332
333 debug_dma_map_resource(dev, phys_addr, size, dir, addr);
334
335 return addr;
336}
337
338static inline void dma_unmap_resource(struct device *dev, dma_addr_t addr,
339 size_t size, enum dma_data_direction dir,
340 unsigned long attrs)
341{
Bart Van Assche52997092017-01-20 13:04:01 -0800342 const struct dma_map_ops *ops = get_dma_ops(dev);
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200343
344 BUG_ON(!valid_dma_direction(dir));
345 if (ops->unmap_resource)
346 ops->unmap_resource(dev, addr, size, dir, attrs);
347 debug_dma_unmap_resource(dev, addr, size, dir);
348}
349
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800350static inline void dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr,
351 size_t size,
352 enum dma_data_direction dir)
353{
Bart Van Assche52997092017-01-20 13:04:01 -0800354 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800355
356 BUG_ON(!valid_dma_direction(dir));
357 if (ops->sync_single_for_cpu)
358 ops->sync_single_for_cpu(dev, addr, size, dir);
359 debug_dma_sync_single_for_cpu(dev, addr, size, dir);
360}
361
362static inline void dma_sync_single_for_device(struct device *dev,
363 dma_addr_t addr, size_t size,
364 enum dma_data_direction dir)
365{
Bart Van Assche52997092017-01-20 13:04:01 -0800366 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800367
368 BUG_ON(!valid_dma_direction(dir));
369 if (ops->sync_single_for_device)
370 ops->sync_single_for_device(dev, addr, size, dir);
371 debug_dma_sync_single_for_device(dev, addr, size, dir);
372}
373
374static inline void dma_sync_single_range_for_cpu(struct device *dev,
375 dma_addr_t addr,
376 unsigned long offset,
377 size_t size,
378 enum dma_data_direction dir)
379{
380 const struct dma_map_ops *ops = get_dma_ops(dev);
381
382 BUG_ON(!valid_dma_direction(dir));
383 if (ops->sync_single_for_cpu)
384 ops->sync_single_for_cpu(dev, addr + offset, size, dir);
385 debug_dma_sync_single_range_for_cpu(dev, addr, offset, size, dir);
386}
387
388static inline void dma_sync_single_range_for_device(struct device *dev,
389 dma_addr_t addr,
390 unsigned long offset,
391 size_t size,
392 enum dma_data_direction dir)
393{
394 const struct dma_map_ops *ops = get_dma_ops(dev);
395
396 BUG_ON(!valid_dma_direction(dir));
397 if (ops->sync_single_for_device)
398 ops->sync_single_for_device(dev, addr + offset, size, dir);
399 debug_dma_sync_single_range_for_device(dev, addr, offset, size, dir);
400}
401
402static inline void
403dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
404 int nelems, enum dma_data_direction dir)
405{
Bart Van Assche52997092017-01-20 13:04:01 -0800406 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800407
408 BUG_ON(!valid_dma_direction(dir));
409 if (ops->sync_sg_for_cpu)
410 ops->sync_sg_for_cpu(dev, sg, nelems, dir);
411 debug_dma_sync_sg_for_cpu(dev, sg, nelems, dir);
412}
413
414static inline void
415dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
416 int nelems, enum dma_data_direction dir)
417{
Bart Van Assche52997092017-01-20 13:04:01 -0800418 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800419
420 BUG_ON(!valid_dma_direction(dir));
421 if (ops->sync_sg_for_device)
422 ops->sync_sg_for_device(dev, sg, nelems, dir);
423 debug_dma_sync_sg_for_device(dev, sg, nelems, dir);
424
425}
426
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700427#define dma_map_single(d, a, s, r) dma_map_single_attrs(d, a, s, r, 0)
428#define dma_unmap_single(d, a, s, r) dma_unmap_single_attrs(d, a, s, r, 0)
429#define dma_map_sg(d, s, n, r) dma_map_sg_attrs(d, s, n, r, 0)
430#define dma_unmap_sg(d, s, n, r) dma_unmap_sg_attrs(d, s, n, r, 0)
Alexander Duyck0495c3d2016-12-14 15:05:23 -0800431#define dma_map_page(d, p, o, s, r) dma_map_page_attrs(d, p, o, s, r, 0)
432#define dma_unmap_page(d, a, s, r) dma_unmap_page_attrs(d, a, s, r, 0)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800433
Christoph Hellwigc9eb6172017-08-27 10:37:15 +0200434static inline void
435dma_cache_sync(struct device *dev, void *vaddr, size_t size,
436 enum dma_data_direction dir)
437{
438 const struct dma_map_ops *ops = get_dma_ops(dev);
439
440 BUG_ON(!valid_dma_direction(dir));
441 if (ops->cache_sync)
442 ops->cache_sync(dev, vaddr, size, dir);
443}
444
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800445extern int dma_common_mmap(struct device *dev, struct vm_area_struct *vma,
Christoph Hellwig58b04402018-09-11 08:55:28 +0200446 void *cpu_addr, dma_addr_t dma_addr, size_t size,
447 unsigned long attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800448
449void *dma_common_contiguous_remap(struct page *page, size_t size,
450 unsigned long vm_flags,
451 pgprot_t prot, const void *caller);
452
453void *dma_common_pages_remap(struct page **pages, size_t size,
454 unsigned long vm_flags, pgprot_t prot,
455 const void *caller);
456void dma_common_free_remap(void *cpu_addr, size_t size, unsigned long vm_flags);
457
458/**
459 * dma_mmap_attrs - map a coherent DMA allocation into user space
460 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
461 * @vma: vm_area_struct describing requested user mapping
462 * @cpu_addr: kernel CPU-view address returned from dma_alloc_attrs
463 * @handle: device-view address returned from dma_alloc_attrs
464 * @size: size of memory originally requested in dma_alloc_attrs
465 * @attrs: attributes of mapping properties requested in dma_alloc_attrs
466 *
467 * Map a coherent DMA buffer previously allocated by dma_alloc_attrs
468 * into user space. The coherent DMA buffer must not be freed by the
469 * driver until the user space mapping has been released.
470 */
471static inline int
472dma_mmap_attrs(struct device *dev, struct vm_area_struct *vma, void *cpu_addr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700473 dma_addr_t dma_addr, size_t size, unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800474{
Bart Van Assche52997092017-01-20 13:04:01 -0800475 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800476 BUG_ON(!ops);
477 if (ops->mmap)
478 return ops->mmap(dev, vma, cpu_addr, dma_addr, size, attrs);
Christoph Hellwig58b04402018-09-11 08:55:28 +0200479 return dma_common_mmap(dev, vma, cpu_addr, dma_addr, size, attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800480}
481
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700482#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 -0800483
484int
Christoph Hellwig9406a492018-08-23 09:39:38 +0200485dma_common_get_sgtable(struct device *dev, struct sg_table *sgt, void *cpu_addr,
486 dma_addr_t dma_addr, size_t size, unsigned long attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800487
488static inline int
489dma_get_sgtable_attrs(struct device *dev, struct sg_table *sgt, void *cpu_addr,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700490 dma_addr_t dma_addr, size_t size,
491 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800492{
Bart Van Assche52997092017-01-20 13:04:01 -0800493 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800494 BUG_ON(!ops);
495 if (ops->get_sgtable)
496 return ops->get_sgtable(dev, sgt, cpu_addr, dma_addr, size,
497 attrs);
Christoph Hellwig9406a492018-08-23 09:39:38 +0200498 return dma_common_get_sgtable(dev, sgt, cpu_addr, dma_addr, size,
499 attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800500}
501
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700502#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 -0800503
504#ifndef arch_dma_alloc_attrs
Huaisheng Ye884571f2018-05-25 13:00:00 +0800505#define arch_dma_alloc_attrs(dev) (true)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800506#endif
507
508static inline void *dma_alloc_attrs(struct device *dev, size_t size,
509 dma_addr_t *dma_handle, gfp_t flag,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700510 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800511{
Bart Van Assche52997092017-01-20 13:04:01 -0800512 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800513 void *cpu_addr;
514
515 BUG_ON(!ops);
Christoph Hellwig205e1b72017-12-22 14:50:47 +0100516 WARN_ON_ONCE(dev && !dev->coherent_dma_mask);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800517
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100518 if (dma_alloc_from_dev_coherent(dev, size, dma_handle, &cpu_addr))
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800519 return cpu_addr;
520
Christoph Hellwige89f5b32018-03-28 15:35:35 +0200521 /* let the implementation decide on the zone to allocate from: */
522 flag &= ~(__GFP_DMA | __GFP_DMA32 | __GFP_HIGHMEM);
Christoph Hellwig57bf5a82017-12-22 16:05:15 +0100523
Huaisheng Ye884571f2018-05-25 13:00:00 +0800524 if (!arch_dma_alloc_attrs(&dev))
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800525 return NULL;
526 if (!ops->alloc)
527 return NULL;
528
529 cpu_addr = ops->alloc(dev, size, dma_handle, flag, attrs);
530 debug_dma_alloc_coherent(dev, size, *dma_handle, cpu_addr);
531 return cpu_addr;
532}
533
534static inline void dma_free_attrs(struct device *dev, size_t size,
535 void *cpu_addr, dma_addr_t dma_handle,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700536 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800537{
Bart Van Assche52997092017-01-20 13:04:01 -0800538 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800539
540 BUG_ON(!ops);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800541
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100542 if (dma_release_from_dev_coherent(dev, get_order(size), cpu_addr))
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800543 return;
Robin Murphyd27fb992018-07-23 22:42:48 +0100544 /*
545 * On non-coherent platforms which implement DMA-coherent buffers via
546 * non-cacheable remaps, ops->free() may call vunmap(). Thus getting
547 * this far in IRQ context is a) at risk of a BUG_ON() or trying to
548 * sleep on some machines, and b) an indication that the driver is
549 * probably misusing the coherent API anyway.
550 */
551 WARN_ON(irqs_disabled());
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800552
Zhen Leid6b7eae2016-03-09 14:08:38 -0800553 if (!ops->free || !cpu_addr)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800554 return;
555
556 debug_dma_free_coherent(dev, size, cpu_addr, dma_handle);
557 ops->free(dev, size, cpu_addr, dma_handle, attrs);
558}
559
560static inline void *dma_alloc_coherent(struct device *dev, size_t size,
561 dma_addr_t *dma_handle, gfp_t flag)
562{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700563 return dma_alloc_attrs(dev, size, dma_handle, flag, 0);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800564}
565
566static inline void dma_free_coherent(struct device *dev, size_t size,
567 void *cpu_addr, dma_addr_t dma_handle)
568{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700569 return dma_free_attrs(dev, size, cpu_addr, dma_handle, 0);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800570}
571
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800572static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
573{
Robin Murphy5237e952017-07-24 18:29:27 +0100574 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800575
Robin Murphy5237e952017-07-24 18:29:27 +0100576 debug_dma_mapping_error(dev, dma_addr);
577 if (ops->mapping_error)
578 return ops->mapping_error(dev, dma_addr);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800579 return 0;
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800580}
581
Tom Lendacky648babb2017-07-17 16:10:22 -0500582static inline void dma_check_mask(struct device *dev, u64 mask)
583{
584 if (sme_active() && (mask < (((u64)sme_get_me_mask() << 1) - 1)))
585 dev_warn(dev, "SME is active, device will require DMA bounce buffers\n");
586}
587
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800588static inline int dma_supported(struct device *dev, u64 mask)
589{
Bart Van Assche52997092017-01-20 13:04:01 -0800590 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800591
592 if (!ops)
593 return 0;
594 if (!ops->dma_supported)
595 return 1;
596 return ops->dma_supported(dev, mask);
597}
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800598
599#ifndef HAVE_ARCH_DMA_SET_MASK
600static inline int dma_set_mask(struct device *dev, u64 mask)
601{
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800602 if (!dev->dma_mask || !dma_supported(dev, mask))
603 return -EIO;
Tom Lendacky648babb2017-07-17 16:10:22 -0500604
605 dma_check_mask(dev, mask);
606
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800607 *dev->dma_mask = mask;
608 return 0;
609}
Dan Williams1b0fac42007-07-15 23:40:26 -0700610#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
FUJITA Tomonori589fc9a2008-09-12 19:42:34 +0900612static inline u64 dma_get_mask(struct device *dev)
613{
FUJITA Tomonori07a2c012008-09-19 02:02:05 +0900614 if (dev && dev->dma_mask && *dev->dma_mask)
FUJITA Tomonori589fc9a2008-09-12 19:42:34 +0900615 return *dev->dma_mask;
Yang Hongyang284901a2009-04-06 19:01:15 -0700616 return DMA_BIT_MASK(32);
FUJITA Tomonori589fc9a2008-09-12 19:42:34 +0900617}
618
Rob Herring58af4a22012-03-20 14:33:01 -0500619#ifdef CONFIG_ARCH_HAS_DMA_SET_COHERENT_MASK
FUJITA Tomonori710224f2010-09-22 13:04:55 -0700620int dma_set_coherent_mask(struct device *dev, u64 mask);
621#else
FUJITA Tomonori6a1961f2010-03-10 15:23:39 -0800622static inline int dma_set_coherent_mask(struct device *dev, u64 mask)
623{
624 if (!dma_supported(dev, mask))
625 return -EIO;
Tom Lendacky648babb2017-07-17 16:10:22 -0500626
627 dma_check_mask(dev, mask);
628
FUJITA Tomonori6a1961f2010-03-10 15:23:39 -0800629 dev->coherent_dma_mask = mask;
630 return 0;
631}
FUJITA Tomonori710224f2010-09-22 13:04:55 -0700632#endif
FUJITA Tomonori6a1961f2010-03-10 15:23:39 -0800633
Russell King4aa806b2013-06-26 13:49:44 +0100634/*
635 * Set both the DMA mask and the coherent DMA mask to the same thing.
636 * Note that we don't check the return value from dma_set_coherent_mask()
637 * as the DMA API guarantees that the coherent DMA mask can be set to
638 * the same or smaller than the streaming DMA mask.
639 */
640static inline int dma_set_mask_and_coherent(struct device *dev, u64 mask)
641{
642 int rc = dma_set_mask(dev, mask);
643 if (rc == 0)
644 dma_set_coherent_mask(dev, mask);
645 return rc;
646}
647
Russell Kingfa6a8d62013-06-27 12:21:45 +0100648/*
649 * Similar to the above, except it deals with the case where the device
650 * does not have dev->dma_mask appropriately setup.
651 */
652static inline int dma_coerce_mask_and_coherent(struct device *dev, u64 mask)
653{
654 dev->dma_mask = &dev->coherent_dma_mask;
655 return dma_set_mask_and_coherent(dev, mask);
656}
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658extern u64 dma_get_required_mask(struct device *dev);
659
Will Deacona3a60f82014-08-27 15:49:10 +0100660#ifndef arch_setup_dma_ops
Will Deacon97890ba2014-08-27 16:24:20 +0100661static inline void arch_setup_dma_ops(struct device *dev, u64 dma_base,
Robin Murphy53c92d72016-04-07 18:42:05 +0100662 u64 size, const struct iommu_ops *iommu,
Will Deacon97890ba2014-08-27 16:24:20 +0100663 bool coherent) { }
664#endif
665
666#ifndef arch_teardown_dma_ops
Christoph Hellwig1a0afc12018-09-25 13:16:55 -0700667static inline void arch_teardown_dma_ops(struct device *dev) { }
Santosh Shilimkar591c1ee42014-04-24 11:30:04 -0400668#endif
669
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800670static inline unsigned int dma_get_max_seg_size(struct device *dev)
671{
Robin Murphy002edb62015-11-06 16:32:51 -0800672 if (dev->dma_parms && dev->dma_parms->max_segment_size)
673 return dev->dma_parms->max_segment_size;
674 return SZ_64K;
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800675}
676
677static inline unsigned int dma_set_max_seg_size(struct device *dev,
678 unsigned int size)
679{
680 if (dev->dma_parms) {
681 dev->dma_parms->max_segment_size = size;
682 return 0;
Robin Murphy002edb62015-11-06 16:32:51 -0800683 }
684 return -EIO;
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800685}
686
FUJITA Tomonorid22a6962008-02-04 22:28:13 -0800687static inline unsigned long dma_get_seg_boundary(struct device *dev)
688{
Robin Murphy002edb62015-11-06 16:32:51 -0800689 if (dev->dma_parms && dev->dma_parms->segment_boundary_mask)
690 return dev->dma_parms->segment_boundary_mask;
691 return DMA_BIT_MASK(32);
FUJITA Tomonorid22a6962008-02-04 22:28:13 -0800692}
693
694static inline int dma_set_seg_boundary(struct device *dev, unsigned long mask)
695{
696 if (dev->dma_parms) {
697 dev->dma_parms->segment_boundary_mask = mask;
698 return 0;
Robin Murphy002edb62015-11-06 16:32:51 -0800699 }
700 return -EIO;
FUJITA Tomonorid22a6962008-02-04 22:28:13 -0800701}
702
Santosh Shilimkar00c8f162013-07-29 14:18:48 +0100703#ifndef dma_max_pfn
704static inline unsigned long dma_max_pfn(struct device *dev)
705{
Christoph Hellwiga41ef1e2017-11-30 07:32:51 -0800706 return (*dev->dma_mask >> PAGE_SHIFT) + dev->dma_pfn_offset;
Santosh Shilimkar00c8f162013-07-29 14:18:48 +0100707}
708#endif
709
Andrew Morton842fa692011-11-02 13:39:33 -0700710static inline void *dma_zalloc_coherent(struct device *dev, size_t size,
711 dma_addr_t *dma_handle, gfp_t flag)
712{
Joe Perchesede23fa82013-08-26 22:45:23 -0700713 void *ret = dma_alloc_coherent(dev, size, dma_handle,
714 flag | __GFP_ZERO);
Andrew Morton842fa692011-11-02 13:39:33 -0700715 return ret;
716}
717
FUJITA Tomonori4565f012010-08-10 18:03:22 -0700718static inline int dma_get_cache_alignment(void)
719{
720#ifdef ARCH_DMA_MINALIGN
721 return ARCH_DMA_MINALIGN;
722#endif
723 return 1;
724}
725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726/* flags for the coherent memory api */
Christoph Hellwig2436bdc2017-08-25 17:13:09 +0200727#define DMA_MEMORY_EXCLUSIVE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800729#ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT
730int dma_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr,
731 dma_addr_t device_addr, size_t size, int flags);
732void dma_release_declared_memory(struct device *dev);
733void *dma_mark_declared_memory_occupied(struct device *dev,
734 dma_addr_t device_addr, size_t size);
735#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736static inline int
Bjorn Helgaas88a984b2014-05-20 16:54:22 -0600737dma_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 dma_addr_t device_addr, size_t size, int flags)
739{
Christoph Hellwig2436bdc2017-08-25 17:13:09 +0200740 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
743static inline void
744dma_release_declared_memory(struct device *dev)
745{
746}
747
748static inline void *
749dma_mark_declared_memory_occupied(struct device *dev,
750 dma_addr_t device_addr, size_t size)
751{
752 return ERR_PTR(-EBUSY);
753}
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800754#endif /* CONFIG_HAVE_GENERIC_DMA_COHERENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Tejun Heo9ac78492007-01-20 16:00:26 +0900756/*
757 * Managed DMA API
758 */
Geert Uytterhoevenab642e92018-03-16 14:25:41 +0100759#ifdef CONFIG_HAS_DMA
Tejun Heo9ac78492007-01-20 16:00:26 +0900760extern void *dmam_alloc_coherent(struct device *dev, size_t size,
761 dma_addr_t *dma_handle, gfp_t gfp);
762extern void dmam_free_coherent(struct device *dev, size_t size, void *vaddr,
763 dma_addr_t dma_handle);
Geert Uytterhoevenab642e92018-03-16 14:25:41 +0100764#else /* !CONFIG_HAS_DMA */
765static inline void *dmam_alloc_coherent(struct device *dev, size_t size,
766 dma_addr_t *dma_handle, gfp_t gfp)
767{ return NULL; }
768static inline void dmam_free_coherent(struct device *dev, size_t size,
769 void *vaddr, dma_addr_t dma_handle) { }
770#endif /* !CONFIG_HAS_DMA */
771
Christoph Hellwig63d36c92017-06-12 19:15:04 +0200772extern void *dmam_alloc_attrs(struct device *dev, size_t size,
773 dma_addr_t *dma_handle, gfp_t gfp,
774 unsigned long attrs);
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800775#ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT
Bjorn Helgaas88a984b2014-05-20 16:54:22 -0600776extern int dmam_declare_coherent_memory(struct device *dev,
777 phys_addr_t phys_addr,
Tejun Heo9ac78492007-01-20 16:00:26 +0900778 dma_addr_t device_addr, size_t size,
779 int flags);
780extern void dmam_release_declared_memory(struct device *dev);
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800781#else /* CONFIG_HAVE_GENERIC_DMA_COHERENT */
Tejun Heo9ac78492007-01-20 16:00:26 +0900782static inline int dmam_declare_coherent_memory(struct device *dev,
Bjorn Helgaas88a984b2014-05-20 16:54:22 -0600783 phys_addr_t phys_addr, dma_addr_t device_addr,
Tejun Heo9ac78492007-01-20 16:00:26 +0900784 size_t size, gfp_t gfp)
785{
786 return 0;
787}
788
789static inline void dmam_release_declared_memory(struct device *dev)
790{
791}
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800792#endif /* CONFIG_HAVE_GENERIC_DMA_COHERENT */
Tejun Heo9ac78492007-01-20 16:00:26 +0900793
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800794static inline void *dma_alloc_wc(struct device *dev, size_t size,
795 dma_addr_t *dma_addr, gfp_t gfp)
Thierry Redingb4bbb102014-06-27 11:56:58 +0200796{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700797 return dma_alloc_attrs(dev, size, dma_addr, gfp,
798 DMA_ATTR_WRITE_COMBINE);
Thierry Redingb4bbb102014-06-27 11:56:58 +0200799}
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800800#ifndef dma_alloc_writecombine
801#define dma_alloc_writecombine dma_alloc_wc
802#endif
Thierry Redingb4bbb102014-06-27 11:56:58 +0200803
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800804static inline void dma_free_wc(struct device *dev, size_t size,
805 void *cpu_addr, dma_addr_t dma_addr)
Thierry Redingb4bbb102014-06-27 11:56:58 +0200806{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700807 return dma_free_attrs(dev, size, cpu_addr, dma_addr,
808 DMA_ATTR_WRITE_COMBINE);
Thierry Redingb4bbb102014-06-27 11:56:58 +0200809}
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800810#ifndef dma_free_writecombine
811#define dma_free_writecombine dma_free_wc
812#endif
Thierry Redingb4bbb102014-06-27 11:56:58 +0200813
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800814static inline int dma_mmap_wc(struct device *dev,
815 struct vm_area_struct *vma,
816 void *cpu_addr, dma_addr_t dma_addr,
817 size_t size)
Thierry Redingb4bbb102014-06-27 11:56:58 +0200818{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700819 return dma_mmap_attrs(dev, vma, cpu_addr, dma_addr, size,
820 DMA_ATTR_WRITE_COMBINE);
Thierry Redingb4bbb102014-06-27 11:56:58 +0200821}
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800822#ifndef dma_mmap_writecombine
823#define dma_mmap_writecombine dma_mmap_wc
824#endif
Arthur Kepner74bc7ce2008-04-29 01:00:30 -0700825
Christoph Hellwigf616ab52018-05-09 06:53:49 +0200826#ifdef CONFIG_NEED_DMA_MAP_STATE
FUJITA Tomonori0acedc12010-03-10 15:23:31 -0800827#define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME) dma_addr_t ADDR_NAME
828#define DEFINE_DMA_UNMAP_LEN(LEN_NAME) __u32 LEN_NAME
829#define dma_unmap_addr(PTR, ADDR_NAME) ((PTR)->ADDR_NAME)
830#define dma_unmap_addr_set(PTR, ADDR_NAME, VAL) (((PTR)->ADDR_NAME) = (VAL))
831#define dma_unmap_len(PTR, LEN_NAME) ((PTR)->LEN_NAME)
832#define dma_unmap_len_set(PTR, LEN_NAME, VAL) (((PTR)->LEN_NAME) = (VAL))
833#else
834#define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME)
835#define DEFINE_DMA_UNMAP_LEN(LEN_NAME)
836#define dma_unmap_addr(PTR, ADDR_NAME) (0)
837#define dma_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
838#define dma_unmap_len(PTR, LEN_NAME) (0)
839#define dma_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
840#endif
841
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842#endif