blob: 5b21f14802e16b40535990d5245398a59b52391f [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 (*dma_supported)(struct device *dev, u64 mask);
Milton Miller3a8f7552011-06-24 09:05:23 +0000132 u64 (*get_required_mask)(struct device *dev);
Joerg Roedel133d6242019-02-07 12:59:15 +0100133 size_t (*max_mapping_size)(struct device *dev);
FUJITA Tomonorif0402a22009-01-05 23:59:01 +0900134};
135
Christoph Hellwig42ee3ca2018-11-21 18:52:35 +0100136#define DMA_MAPPING_ERROR (~(dma_addr_t)0)
137
Bart Van Assche551199a2017-01-20 13:04:07 -0800138extern const struct dma_map_ops dma_virt_ops;
Robin Murphy90ac7062018-12-06 13:14:44 -0800139extern const struct dma_map_ops dma_dummy_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
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800198static inline bool dma_is_direct(const struct dma_map_ops *ops)
199{
200 return likely(!ops);
201}
202
203/*
204 * All the dma_direct_* declarations are here just for the indirect call bypass,
205 * and must not be used directly drivers!
206 */
207dma_addr_t dma_direct_map_page(struct device *dev, struct page *page,
208 unsigned long offset, size_t size, enum dma_data_direction dir,
209 unsigned long attrs);
210int dma_direct_map_sg(struct device *dev, struct scatterlist *sgl, int nents,
211 enum dma_data_direction dir, unsigned long attrs);
212
213#if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE) || \
214 defined(CONFIG_SWIOTLB)
215void dma_direct_sync_single_for_device(struct device *dev,
216 dma_addr_t addr, size_t size, enum dma_data_direction dir);
217void dma_direct_sync_sg_for_device(struct device *dev,
218 struct scatterlist *sgl, int nents, enum dma_data_direction dir);
219#else
220static inline void dma_direct_sync_single_for_device(struct device *dev,
221 dma_addr_t addr, size_t size, enum dma_data_direction dir)
222{
223}
224static inline void dma_direct_sync_sg_for_device(struct device *dev,
225 struct scatterlist *sgl, int nents, enum dma_data_direction dir)
226{
227}
228#endif
229
230#if defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU) || \
231 defined(CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU_ALL) || \
232 defined(CONFIG_SWIOTLB)
233void dma_direct_unmap_page(struct device *dev, dma_addr_t addr,
234 size_t size, enum dma_data_direction dir, unsigned long attrs);
235void dma_direct_unmap_sg(struct device *dev, struct scatterlist *sgl,
236 int nents, enum dma_data_direction dir, unsigned long attrs);
237void dma_direct_sync_single_for_cpu(struct device *dev,
238 dma_addr_t addr, size_t size, enum dma_data_direction dir);
239void dma_direct_sync_sg_for_cpu(struct device *dev,
240 struct scatterlist *sgl, int nents, enum dma_data_direction dir);
241#else
242static inline void dma_direct_unmap_page(struct device *dev, dma_addr_t addr,
243 size_t size, enum dma_data_direction dir, unsigned long attrs)
244{
245}
246static inline void dma_direct_unmap_sg(struct device *dev,
247 struct scatterlist *sgl, int nents, enum dma_data_direction dir,
248 unsigned long attrs)
249{
250}
251static inline void dma_direct_sync_single_for_cpu(struct device *dev,
252 dma_addr_t addr, size_t size, enum dma_data_direction dir)
253{
254}
255static inline void dma_direct_sync_sg_for_cpu(struct device *dev,
256 struct scatterlist *sgl, int nents, enum dma_data_direction dir)
257{
258}
259#endif
260
Joerg Roedel133d6242019-02-07 12:59:15 +0100261size_t dma_direct_max_mapping_size(struct device *dev);
262
Christoph Hellwiged6ccf12018-12-26 07:52:13 +0100263#ifdef CONFIG_HAS_DMA
264#include <asm/dma-mapping.h>
265
266static inline const struct dma_map_ops *get_dma_ops(struct device *dev)
267{
268 if (dev && dev->dma_ops)
269 return dev->dma_ops;
270 return get_arch_dma_ops(dev ? dev->bus : NULL);
271}
272
273static inline void set_dma_ops(struct device *dev,
274 const struct dma_map_ops *dma_ops)
275{
276 dev->dma_ops = dma_ops;
277}
278
Christoph Hellwig2e05ea52018-12-25 08:50:35 +0100279static inline dma_addr_t dma_map_page_attrs(struct device *dev,
280 struct page *page, size_t offset, size_t size,
281 enum dma_data_direction dir, unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800282{
Bart Van Assche52997092017-01-20 13:04:01 -0800283 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800284 dma_addr_t addr;
285
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800286 BUG_ON(!valid_dma_direction(dir));
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800287 if (dma_is_direct(ops))
Christoph Hellwig2e05ea52018-12-25 08:50:35 +0100288 addr = dma_direct_map_page(dev, page, offset, size, dir, attrs);
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800289 else
Christoph Hellwig2e05ea52018-12-25 08:50:35 +0100290 addr = ops->map_page(dev, page, offset, size, dir, attrs);
291 debug_dma_map_page(dev, page, offset, size, dir, addr);
292
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800293 return addr;
294}
295
Christoph Hellwig2e05ea52018-12-25 08:50:35 +0100296static inline void dma_unmap_page_attrs(struct device *dev, dma_addr_t addr,
297 size_t size, enum dma_data_direction dir, unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800298{
Bart Van Assche52997092017-01-20 13:04:01 -0800299 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800300
301 BUG_ON(!valid_dma_direction(dir));
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800302 if (dma_is_direct(ops))
303 dma_direct_unmap_page(dev, addr, size, dir, attrs);
304 else if (ops->unmap_page)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800305 ops->unmap_page(dev, addr, size, dir, attrs);
Christoph Hellwig2e05ea52018-12-25 08:50:35 +0100306 debug_dma_unmap_page(dev, addr, size, dir);
Christoph Hellwig7f0fee22018-12-06 12:24:27 -0800307}
308
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800309/*
310 * dma_maps_sg_attrs returns 0 on error and > 0 on success.
311 * It should never return a value < 0.
312 */
313static inline int dma_map_sg_attrs(struct device *dev, struct scatterlist *sg,
314 int nents, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700315 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800316{
Bart Van Assche52997092017-01-20 13:04:01 -0800317 const struct dma_map_ops *ops = get_dma_ops(dev);
Levin, Alexander (Sasha Levin)49502762017-11-15 17:35:51 -0800318 int ents;
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800319
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800320 BUG_ON(!valid_dma_direction(dir));
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800321 if (dma_is_direct(ops))
322 ents = dma_direct_map_sg(dev, sg, nents, dir, attrs);
323 else
324 ents = ops->map_sg(dev, sg, nents, dir, attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800325 BUG_ON(ents < 0);
326 debug_dma_map_sg(dev, sg, nents, ents, dir);
327
328 return ents;
329}
330
331static inline void dma_unmap_sg_attrs(struct device *dev, struct scatterlist *sg,
332 int nents, enum dma_data_direction dir,
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700333 unsigned long attrs)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800334{
Bart Van Assche52997092017-01-20 13:04:01 -0800335 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800336
337 BUG_ON(!valid_dma_direction(dir));
338 debug_dma_unmap_sg(dev, sg, nents, dir);
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800339 if (dma_is_direct(ops))
340 dma_direct_unmap_sg(dev, sg, nents, dir, attrs);
341 else if (ops->unmap_sg)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800342 ops->unmap_sg(dev, sg, nents, dir, attrs);
343}
344
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200345static inline dma_addr_t dma_map_resource(struct device *dev,
346 phys_addr_t phys_addr,
347 size_t size,
348 enum dma_data_direction dir,
349 unsigned long attrs)
350{
Bart Van Assche52997092017-01-20 13:04:01 -0800351 const struct dma_map_ops *ops = get_dma_ops(dev);
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200352 dma_addr_t addr;
353
354 BUG_ON(!valid_dma_direction(dir));
355
356 /* Don't allow RAM to be mapped */
Niklas Söderlund3757dc42016-09-29 12:02:40 +0200357 BUG_ON(pfn_valid(PHYS_PFN(phys_addr)));
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200358
359 addr = phys_addr;
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800360 if (ops && ops->map_resource)
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200361 addr = ops->map_resource(dev, phys_addr, size, dir, attrs);
362
363 debug_dma_map_resource(dev, phys_addr, size, dir, addr);
364
365 return addr;
366}
367
368static inline void dma_unmap_resource(struct device *dev, dma_addr_t addr,
369 size_t size, enum dma_data_direction dir,
370 unsigned long attrs)
371{
Bart Van Assche52997092017-01-20 13:04:01 -0800372 const struct dma_map_ops *ops = get_dma_ops(dev);
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200373
374 BUG_ON(!valid_dma_direction(dir));
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800375 if (ops && ops->unmap_resource)
Niklas Söderlund6f3d8792016-08-10 13:22:16 +0200376 ops->unmap_resource(dev, addr, size, dir, attrs);
377 debug_dma_unmap_resource(dev, addr, size, dir);
378}
379
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800380static inline void dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr,
381 size_t size,
382 enum dma_data_direction dir)
383{
Bart Van Assche52997092017-01-20 13:04:01 -0800384 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800385
386 BUG_ON(!valid_dma_direction(dir));
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800387 if (dma_is_direct(ops))
388 dma_direct_sync_single_for_cpu(dev, addr, size, dir);
389 else if (ops->sync_single_for_cpu)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800390 ops->sync_single_for_cpu(dev, addr, size, dir);
391 debug_dma_sync_single_for_cpu(dev, addr, size, dir);
392}
393
394static inline void dma_sync_single_for_device(struct device *dev,
395 dma_addr_t addr, size_t size,
396 enum dma_data_direction dir)
397{
Bart Van Assche52997092017-01-20 13:04:01 -0800398 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800399
400 BUG_ON(!valid_dma_direction(dir));
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800401 if (dma_is_direct(ops))
402 dma_direct_sync_single_for_device(dev, addr, size, dir);
403 else if (ops->sync_single_for_device)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800404 ops->sync_single_for_device(dev, addr, size, dir);
405 debug_dma_sync_single_for_device(dev, addr, size, dir);
406}
407
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800408static inline void
409dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
410 int nelems, enum dma_data_direction dir)
411{
Bart Van Assche52997092017-01-20 13:04:01 -0800412 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800413
414 BUG_ON(!valid_dma_direction(dir));
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800415 if (dma_is_direct(ops))
416 dma_direct_sync_sg_for_cpu(dev, sg, nelems, dir);
417 else if (ops->sync_sg_for_cpu)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800418 ops->sync_sg_for_cpu(dev, sg, nelems, dir);
419 debug_dma_sync_sg_for_cpu(dev, sg, nelems, dir);
420}
421
422static inline void
423dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
424 int nelems, enum dma_data_direction dir)
425{
Bart Van Assche52997092017-01-20 13:04:01 -0800426 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800427
428 BUG_ON(!valid_dma_direction(dir));
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800429 if (dma_is_direct(ops))
430 dma_direct_sync_sg_for_device(dev, sg, nelems, dir);
431 else if (ops->sync_sg_for_device)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800432 ops->sync_sg_for_device(dev, sg, nelems, dir);
433 debug_dma_sync_sg_for_device(dev, sg, nelems, dir);
434
435}
436
Christoph Hellwiged6ccf12018-12-26 07:52:13 +0100437static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
438{
439 debug_dma_mapping_error(dev, dma_addr);
440
441 if (dma_addr == DMA_MAPPING_ERROR)
442 return -ENOMEM;
443 return 0;
444}
445
446void *dma_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
447 gfp_t flag, unsigned long attrs);
448void dma_free_attrs(struct device *dev, size_t size, void *cpu_addr,
449 dma_addr_t dma_handle, unsigned long attrs);
450void *dmam_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
451 gfp_t gfp, unsigned long attrs);
452void dmam_free_coherent(struct device *dev, size_t size, void *vaddr,
453 dma_addr_t dma_handle);
454void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
455 enum dma_data_direction dir);
456int dma_get_sgtable_attrs(struct device *dev, struct sg_table *sgt,
457 void *cpu_addr, dma_addr_t dma_addr, size_t size,
458 unsigned long attrs);
459int dma_mmap_attrs(struct device *dev, struct vm_area_struct *vma,
460 void *cpu_addr, dma_addr_t dma_addr, size_t size,
461 unsigned long attrs);
462int dma_supported(struct device *dev, u64 mask);
463int dma_set_mask(struct device *dev, u64 mask);
464int dma_set_coherent_mask(struct device *dev, u64 mask);
465u64 dma_get_required_mask(struct device *dev);
Joerg Roedel133d6242019-02-07 12:59:15 +0100466size_t dma_max_mapping_size(struct device *dev);
Christoph Hellwiged6ccf12018-12-26 07:52:13 +0100467#else /* CONFIG_HAS_DMA */
468static inline dma_addr_t dma_map_page_attrs(struct device *dev,
469 struct page *page, size_t offset, size_t size,
470 enum dma_data_direction dir, unsigned long attrs)
471{
472 return DMA_MAPPING_ERROR;
473}
474static inline void dma_unmap_page_attrs(struct device *dev, dma_addr_t addr,
475 size_t size, enum dma_data_direction dir, unsigned long attrs)
476{
477}
478static inline int dma_map_sg_attrs(struct device *dev, struct scatterlist *sg,
479 int nents, enum dma_data_direction dir, unsigned long attrs)
480{
481 return 0;
482}
483static inline void dma_unmap_sg_attrs(struct device *dev,
484 struct scatterlist *sg, int nents, enum dma_data_direction dir,
485 unsigned long attrs)
486{
487}
488static inline dma_addr_t dma_map_resource(struct device *dev,
489 phys_addr_t phys_addr, size_t size, enum dma_data_direction dir,
490 unsigned long attrs)
491{
492 return DMA_MAPPING_ERROR;
493}
494static inline void dma_unmap_resource(struct device *dev, dma_addr_t addr,
495 size_t size, enum dma_data_direction dir, unsigned long attrs)
496{
497}
498static inline void dma_sync_single_for_cpu(struct device *dev, dma_addr_t addr,
499 size_t size, enum dma_data_direction dir)
500{
501}
502static inline void dma_sync_single_for_device(struct device *dev,
503 dma_addr_t addr, size_t size, enum dma_data_direction dir)
504{
505}
506static inline void dma_sync_sg_for_cpu(struct device *dev,
507 struct scatterlist *sg, int nelems, enum dma_data_direction dir)
508{
509}
510static inline void dma_sync_sg_for_device(struct device *dev,
511 struct scatterlist *sg, int nelems, enum dma_data_direction dir)
512{
513}
514static inline int dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
515{
516 return -ENOMEM;
517}
518static inline void *dma_alloc_attrs(struct device *dev, size_t size,
519 dma_addr_t *dma_handle, gfp_t flag, unsigned long attrs)
520{
521 return NULL;
522}
523static void dma_free_attrs(struct device *dev, size_t size, void *cpu_addr,
524 dma_addr_t dma_handle, unsigned long attrs)
525{
526}
527static inline void *dmam_alloc_attrs(struct device *dev, size_t size,
528 dma_addr_t *dma_handle, gfp_t gfp, unsigned long attrs)
529{
530 return NULL;
531}
532static inline void dmam_free_coherent(struct device *dev, size_t size,
533 void *vaddr, dma_addr_t dma_handle)
534{
535}
536static inline void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
537 enum dma_data_direction dir)
538{
539}
540static inline int dma_get_sgtable_attrs(struct device *dev,
541 struct sg_table *sgt, void *cpu_addr, dma_addr_t dma_addr,
542 size_t size, unsigned long attrs)
543{
544 return -ENXIO;
545}
546static inline int dma_mmap_attrs(struct device *dev, struct vm_area_struct *vma,
547 void *cpu_addr, dma_addr_t dma_addr, size_t size,
548 unsigned long attrs)
549{
550 return -ENXIO;
551}
552static inline int dma_supported(struct device *dev, u64 mask)
553{
554 return 0;
555}
556static inline int dma_set_mask(struct device *dev, u64 mask)
557{
558 return -EIO;
559}
560static inline int dma_set_coherent_mask(struct device *dev, u64 mask)
561{
562 return -EIO;
563}
564static inline u64 dma_get_required_mask(struct device *dev)
565{
566 return 0;
567}
Joerg Roedel133d6242019-02-07 12:59:15 +0100568static inline size_t dma_max_mapping_size(struct device *dev)
569{
570 return 0;
571}
Christoph Hellwiged6ccf12018-12-26 07:52:13 +0100572#endif /* CONFIG_HAS_DMA */
573
Christoph Hellwig2e05ea52018-12-25 08:50:35 +0100574static inline dma_addr_t dma_map_single_attrs(struct device *dev, void *ptr,
575 size_t size, enum dma_data_direction dir, unsigned long attrs)
576{
577 debug_dma_map_single(dev, ptr, size);
578 return dma_map_page_attrs(dev, virt_to_page(ptr), offset_in_page(ptr),
579 size, dir, attrs);
580}
581
582static inline void dma_unmap_single_attrs(struct device *dev, dma_addr_t addr,
583 size_t size, enum dma_data_direction dir, unsigned long attrs)
584{
585 return dma_unmap_page_attrs(dev, addr, size, dir, attrs);
586}
587
Christoph Hellwiged6ccf12018-12-26 07:52:13 +0100588static inline void dma_sync_single_range_for_cpu(struct device *dev,
589 dma_addr_t addr, unsigned long offset, size_t size,
590 enum dma_data_direction dir)
591{
592 return dma_sync_single_for_cpu(dev, addr + offset, size, dir);
593}
594
595static inline void dma_sync_single_range_for_device(struct device *dev,
596 dma_addr_t addr, unsigned long offset, size_t size,
597 enum dma_data_direction dir)
598{
599 return dma_sync_single_for_device(dev, addr + offset, size, dir);
600}
601
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700602#define dma_map_single(d, a, s, r) dma_map_single_attrs(d, a, s, r, 0)
603#define dma_unmap_single(d, a, s, r) dma_unmap_single_attrs(d, a, s, r, 0)
604#define dma_map_sg(d, s, n, r) dma_map_sg_attrs(d, s, n, r, 0)
605#define dma_unmap_sg(d, s, n, r) dma_unmap_sg_attrs(d, s, n, r, 0)
Alexander Duyck0495c3d2016-12-14 15:05:23 -0800606#define dma_map_page(d, p, o, s, r) dma_map_page_attrs(d, p, o, s, r, 0)
607#define dma_unmap_page(d, a, s, r) dma_unmap_page_attrs(d, a, s, r, 0)
Christoph Hellwiged6ccf12018-12-26 07:52:13 +0100608#define dma_get_sgtable(d, t, v, h, s) dma_get_sgtable_attrs(d, t, v, h, s, 0)
609#define dma_mmap_coherent(d, v, c, h, s) dma_mmap_attrs(d, v, c, h, s, 0)
Christoph Hellwigc9eb6172017-08-27 10:37:15 +0200610
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800611extern int dma_common_mmap(struct device *dev, struct vm_area_struct *vma,
Christoph Hellwig58b04402018-09-11 08:55:28 +0200612 void *cpu_addr, dma_addr_t dma_addr, size_t size,
613 unsigned long attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800614
615void *dma_common_contiguous_remap(struct page *page, size_t size,
616 unsigned long vm_flags,
617 pgprot_t prot, const void *caller);
618
619void *dma_common_pages_remap(struct page **pages, size_t size,
620 unsigned long vm_flags, pgprot_t prot,
621 const void *caller);
622void dma_common_free_remap(void *cpu_addr, size_t size, unsigned long vm_flags);
623
Christoph Hellwig0c3b3172018-11-04 20:29:28 +0100624int __init dma_atomic_pool_init(gfp_t gfp, pgprot_t prot);
625bool dma_in_atomic_pool(void *start, size_t size);
626void *dma_alloc_from_pool(size_t size, struct page **ret_page, gfp_t flags);
627bool dma_free_from_pool(void *start, size_t size);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800628
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800629int
Christoph Hellwig9406a492018-08-23 09:39:38 +0200630dma_common_get_sgtable(struct device *dev, struct sg_table *sgt, void *cpu_addr,
631 dma_addr_t dma_addr, size_t size, unsigned long attrs);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800632
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800633static inline void *dma_alloc_coherent(struct device *dev, size_t size,
Christoph Hellwig7ed1d912018-09-24 13:06:58 +0200634 dma_addr_t *dma_handle, gfp_t gfp)
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800635{
Christoph Hellwig7ed1d912018-09-24 13:06:58 +0200636
637 return dma_alloc_attrs(dev, size, dma_handle, gfp,
638 (gfp & __GFP_NOWARN) ? DMA_ATTR_NO_WARN : 0);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800639}
640
641static inline void dma_free_coherent(struct device *dev, size_t size,
642 void *cpu_addr, dma_addr_t dma_handle)
643{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700644 return dma_free_attrs(dev, size, cpu_addr, dma_handle, 0);
Christoph Hellwige1c7e322016-01-20 15:02:05 -0800645}
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
FUJITA Tomonori589fc9a2008-09-12 19:42:34 +0900648static inline u64 dma_get_mask(struct device *dev)
649{
FUJITA Tomonori07a2c012008-09-19 02:02:05 +0900650 if (dev && dev->dma_mask && *dev->dma_mask)
FUJITA Tomonori589fc9a2008-09-12 19:42:34 +0900651 return *dev->dma_mask;
Yang Hongyang284901a2009-04-06 19:01:15 -0700652 return DMA_BIT_MASK(32);
FUJITA Tomonori589fc9a2008-09-12 19:42:34 +0900653}
654
Russell King4aa806b2013-06-26 13:49:44 +0100655/*
656 * Set both the DMA mask and the coherent DMA mask to the same thing.
657 * Note that we don't check the return value from dma_set_coherent_mask()
658 * as the DMA API guarantees that the coherent DMA mask can be set to
659 * the same or smaller than the streaming DMA mask.
660 */
661static inline int dma_set_mask_and_coherent(struct device *dev, u64 mask)
662{
663 int rc = dma_set_mask(dev, mask);
664 if (rc == 0)
665 dma_set_coherent_mask(dev, mask);
666 return rc;
667}
668
Russell Kingfa6a8d62013-06-27 12:21:45 +0100669/*
670 * Similar to the above, except it deals with the case where the device
671 * does not have dev->dma_mask appropriately setup.
672 */
673static inline int dma_coerce_mask_and_coherent(struct device *dev, u64 mask)
674{
675 dev->dma_mask = &dev->coherent_dma_mask;
676 return dma_set_mask_and_coherent(dev, mask);
677}
678
Will Deacona3a60f82014-08-27 15:49:10 +0100679#ifndef arch_setup_dma_ops
Will Deacon97890ba2014-08-27 16:24:20 +0100680static inline void arch_setup_dma_ops(struct device *dev, u64 dma_base,
Robin Murphy53c92d72016-04-07 18:42:05 +0100681 u64 size, const struct iommu_ops *iommu,
Will Deacon97890ba2014-08-27 16:24:20 +0100682 bool coherent) { }
683#endif
684
685#ifndef arch_teardown_dma_ops
Christoph Hellwig1a0afc12018-09-25 13:16:55 -0700686static inline void arch_teardown_dma_ops(struct device *dev) { }
Santosh Shilimkar591c1ee2014-04-24 11:30:04 -0400687#endif
688
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800689static inline unsigned int dma_get_max_seg_size(struct device *dev)
690{
Robin Murphy002edb62015-11-06 16:32:51 -0800691 if (dev->dma_parms && dev->dma_parms->max_segment_size)
692 return dev->dma_parms->max_segment_size;
693 return SZ_64K;
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800694}
695
Niklas Söderlundc9d76d02018-08-29 23:29:21 +0200696static inline int dma_set_max_seg_size(struct device *dev, unsigned int size)
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800697{
698 if (dev->dma_parms) {
699 dev->dma_parms->max_segment_size = size;
700 return 0;
Robin Murphy002edb62015-11-06 16:32:51 -0800701 }
702 return -EIO;
FUJITA Tomonori6b7b6512008-02-04 22:27:55 -0800703}
704
FUJITA Tomonorid22a6962008-02-04 22:28:13 -0800705static inline unsigned long dma_get_seg_boundary(struct device *dev)
706{
Robin Murphy002edb62015-11-06 16:32:51 -0800707 if (dev->dma_parms && dev->dma_parms->segment_boundary_mask)
708 return dev->dma_parms->segment_boundary_mask;
709 return DMA_BIT_MASK(32);
FUJITA Tomonorid22a6962008-02-04 22:28:13 -0800710}
711
712static inline int dma_set_seg_boundary(struct device *dev, unsigned long mask)
713{
714 if (dev->dma_parms) {
715 dev->dma_parms->segment_boundary_mask = mask;
716 return 0;
Robin Murphy002edb62015-11-06 16:32:51 -0800717 }
718 return -EIO;
FUJITA Tomonorid22a6962008-02-04 22:28:13 -0800719}
720
Santosh Shilimkar00c8f162013-07-29 14:18:48 +0100721#ifndef dma_max_pfn
722static inline unsigned long dma_max_pfn(struct device *dev)
723{
Christoph Hellwiga41ef1e2017-11-30 07:32:51 -0800724 return (*dev->dma_mask >> PAGE_SHIFT) + dev->dma_pfn_offset;
Santosh Shilimkar00c8f162013-07-29 14:18:48 +0100725}
726#endif
727
FUJITA Tomonori4565f012010-08-10 18:03:22 -0700728static inline int dma_get_cache_alignment(void)
729{
730#ifdef ARCH_DMA_MINALIGN
731 return ARCH_DMA_MINALIGN;
732#endif
733 return 1;
734}
735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736/* flags for the coherent memory api */
Christoph Hellwig2436bdc2017-08-25 17:13:09 +0200737#define DMA_MEMORY_EXCLUSIVE 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800739#ifdef CONFIG_HAVE_GENERIC_DMA_COHERENT
740int dma_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr,
741 dma_addr_t device_addr, size_t size, int flags);
742void dma_release_declared_memory(struct device *dev);
743void *dma_mark_declared_memory_occupied(struct device *dev,
744 dma_addr_t device_addr, size_t size);
745#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746static inline int
Bjorn Helgaas88a984b2014-05-20 16:54:22 -0600747dma_declare_coherent_memory(struct device *dev, phys_addr_t phys_addr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 dma_addr_t device_addr, size_t size, int flags)
749{
Christoph Hellwig2436bdc2017-08-25 17:13:09 +0200750 return -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
753static inline void
754dma_release_declared_memory(struct device *dev)
755{
756}
757
758static inline void *
759dma_mark_declared_memory_occupied(struct device *dev,
760 dma_addr_t device_addr, size_t size)
761{
762 return ERR_PTR(-EBUSY);
763}
Christoph Hellwig20d666e2016-01-20 15:02:09 -0800764#endif /* CONFIG_HAVE_GENERIC_DMA_COHERENT */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Christoph Hellwigd7076f02018-12-25 17:44:19 +0100766static inline void *dmam_alloc_coherent(struct device *dev, size_t size,
767 dma_addr_t *dma_handle, gfp_t gfp)
768{
769 return dmam_alloc_attrs(dev, size, dma_handle, gfp,
770 (gfp & __GFP_NOWARN) ? DMA_ATTR_NO_WARN : 0);
771}
772
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800773static inline void *dma_alloc_wc(struct device *dev, size_t size,
774 dma_addr_t *dma_addr, gfp_t gfp)
Thierry Redingb4bbb102014-06-27 11:56:58 +0200775{
Christoph Hellwig0cd60eb2018-12-22 09:21:08 +0100776 unsigned long attrs = DMA_ATTR_WRITE_COMBINE;
Christoph Hellwig7ed1d912018-09-24 13:06:58 +0200777
778 if (gfp & __GFP_NOWARN)
779 attrs |= DMA_ATTR_NO_WARN;
780
781 return dma_alloc_attrs(dev, size, dma_addr, gfp, attrs);
Thierry Redingb4bbb102014-06-27 11:56:58 +0200782}
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800783#ifndef dma_alloc_writecombine
784#define dma_alloc_writecombine dma_alloc_wc
785#endif
Thierry Redingb4bbb102014-06-27 11:56:58 +0200786
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800787static inline void dma_free_wc(struct device *dev, size_t size,
788 void *cpu_addr, dma_addr_t dma_addr)
Thierry Redingb4bbb102014-06-27 11:56:58 +0200789{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700790 return dma_free_attrs(dev, size, cpu_addr, dma_addr,
791 DMA_ATTR_WRITE_COMBINE);
Thierry Redingb4bbb102014-06-27 11:56:58 +0200792}
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800793#ifndef dma_free_writecombine
794#define dma_free_writecombine dma_free_wc
795#endif
Thierry Redingb4bbb102014-06-27 11:56:58 +0200796
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800797static inline int dma_mmap_wc(struct device *dev,
798 struct vm_area_struct *vma,
799 void *cpu_addr, dma_addr_t dma_addr,
800 size_t size)
Thierry Redingb4bbb102014-06-27 11:56:58 +0200801{
Krzysztof Kozlowski00085f12016-08-03 13:46:00 -0700802 return dma_mmap_attrs(dev, vma, cpu_addr, dma_addr, size,
803 DMA_ATTR_WRITE_COMBINE);
Thierry Redingb4bbb102014-06-27 11:56:58 +0200804}
Luis R. Rodriguezf6e45662016-01-22 18:34:22 -0800805#ifndef dma_mmap_writecombine
806#define dma_mmap_writecombine dma_mmap_wc
807#endif
Arthur Kepner74bc7ce2008-04-29 01:00:30 -0700808
Christoph Hellwigf616ab52018-05-09 06:53:49 +0200809#ifdef CONFIG_NEED_DMA_MAP_STATE
FUJITA Tomonori0acedc12010-03-10 15:23:31 -0800810#define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME) dma_addr_t ADDR_NAME
811#define DEFINE_DMA_UNMAP_LEN(LEN_NAME) __u32 LEN_NAME
812#define dma_unmap_addr(PTR, ADDR_NAME) ((PTR)->ADDR_NAME)
813#define dma_unmap_addr_set(PTR, ADDR_NAME, VAL) (((PTR)->ADDR_NAME) = (VAL))
814#define dma_unmap_len(PTR, LEN_NAME) ((PTR)->LEN_NAME)
815#define dma_unmap_len_set(PTR, LEN_NAME, VAL) (((PTR)->LEN_NAME) = (VAL))
816#else
817#define DEFINE_DMA_UNMAP_ADDR(ADDR_NAME)
818#define DEFINE_DMA_UNMAP_LEN(LEN_NAME)
819#define dma_unmap_addr(PTR, ADDR_NAME) (0)
820#define dma_unmap_addr_set(PTR, ADDR_NAME, VAL) do { } while (0)
821#define dma_unmap_len(PTR, LEN_NAME) (0)
822#define dma_unmap_len_set(PTR, LEN_NAME, VAL) do { } while (0)
823#endif
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825#endif