blob: d9334f31a5afb08b9f0413e7df18d35f703f5a09 [file] [log] [blame]
Greg Kroah-Hartman989d42e2017-11-07 17:30:07 +01001// SPDX-License-Identifier: GPL-2.0
Tejun Heo9ac78492007-01-20 16:00:26 +09002/*
Christoph Hellwigcf65a0f2018-06-12 19:01:45 +02003 * arch-independent dma-mapping routines
Tejun Heo9ac78492007-01-20 16:00:26 +09004 *
5 * Copyright (c) 2006 SUSE Linux Products GmbH
6 * Copyright (c) 2006 Tejun Heo <teheo@suse.de>
Tejun Heo9ac78492007-01-20 16:00:26 +09007 */
Christoph Hellwig05887cb2018-12-06 12:25:54 -08008#include <linux/memblock.h> /* for max_pfn */
Sricharan R09515ef2017-04-10 16:51:01 +05309#include <linux/acpi.h>
Christoph Hellwig356da6d2018-12-06 13:39:32 -080010#include <linux/dma-direct.h>
Christoph Hellwig58b04402018-09-11 08:55:28 +020011#include <linux/dma-noncoherent.h>
Paul Gortmaker1b6bc322011-05-27 07:12:15 -040012#include <linux/export.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/gfp.h>
Sricharan R09515ef2017-04-10 16:51:01 +053014#include <linux/of_device.h>
Laura Abbott513510d2014-10-09 15:26:40 -070015#include <linux/slab.h>
16#include <linux/vmalloc.h>
Tejun Heo9ac78492007-01-20 16:00:26 +090017
18/*
19 * Managed DMA API
20 */
21struct dma_devres {
22 size_t size;
23 void *vaddr;
24 dma_addr_t dma_handle;
Christoph Hellwig63d36c92017-06-12 19:15:04 +020025 unsigned long attrs;
Tejun Heo9ac78492007-01-20 16:00:26 +090026};
27
Christoph Hellwig63d36c92017-06-12 19:15:04 +020028static void dmam_release(struct device *dev, void *res)
Tejun Heo9ac78492007-01-20 16:00:26 +090029{
30 struct dma_devres *this = res;
31
Christoph Hellwig63d36c92017-06-12 19:15:04 +020032 dma_free_attrs(dev, this->size, this->vaddr, this->dma_handle,
33 this->attrs);
Tejun Heo9ac78492007-01-20 16:00:26 +090034}
35
36static int dmam_match(struct device *dev, void *res, void *match_data)
37{
38 struct dma_devres *this = res, *match = match_data;
39
40 if (this->vaddr == match->vaddr) {
41 WARN_ON(this->size != match->size ||
42 this->dma_handle != match->dma_handle);
43 return 1;
44 }
45 return 0;
46}
47
48/**
Tejun Heo9ac78492007-01-20 16:00:26 +090049 * dmam_free_coherent - Managed dma_free_coherent()
50 * @dev: Device to free coherent memory for
51 * @size: Size of allocation
52 * @vaddr: Virtual address of the memory to free
53 * @dma_handle: DMA handle of the memory to free
54 *
55 * Managed dma_free_coherent().
56 */
57void dmam_free_coherent(struct device *dev, size_t size, void *vaddr,
58 dma_addr_t dma_handle)
59{
60 struct dma_devres match_data = { size, vaddr, dma_handle };
61
62 dma_free_coherent(dev, size, vaddr, dma_handle);
Christoph Hellwig63d36c92017-06-12 19:15:04 +020063 WARN_ON(devres_destroy(dev, dmam_release, dmam_match, &match_data));
Tejun Heo9ac78492007-01-20 16:00:26 +090064}
65EXPORT_SYMBOL(dmam_free_coherent);
66
67/**
Christoph Hellwig63d36c92017-06-12 19:15:04 +020068 * dmam_alloc_attrs - Managed dma_alloc_attrs()
Tejun Heo9ac78492007-01-20 16:00:26 +090069 * @dev: Device to allocate non_coherent memory for
70 * @size: Size of allocation
71 * @dma_handle: Out argument for allocated DMA handle
72 * @gfp: Allocation flags
Christoph Hellwig63d36c92017-06-12 19:15:04 +020073 * @attrs: Flags in the DMA_ATTR_* namespace.
Tejun Heo9ac78492007-01-20 16:00:26 +090074 *
Christoph Hellwig63d36c92017-06-12 19:15:04 +020075 * Managed dma_alloc_attrs(). Memory allocated using this function will be
76 * automatically released on driver detach.
Tejun Heo9ac78492007-01-20 16:00:26 +090077 *
78 * RETURNS:
79 * Pointer to allocated memory on success, NULL on failure.
80 */
Christoph Hellwig63d36c92017-06-12 19:15:04 +020081void *dmam_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
82 gfp_t gfp, unsigned long attrs)
Tejun Heo9ac78492007-01-20 16:00:26 +090083{
84 struct dma_devres *dr;
85 void *vaddr;
86
Christoph Hellwig63d36c92017-06-12 19:15:04 +020087 dr = devres_alloc(dmam_release, sizeof(*dr), gfp);
Tejun Heo9ac78492007-01-20 16:00:26 +090088 if (!dr)
89 return NULL;
90
Christoph Hellwig63d36c92017-06-12 19:15:04 +020091 vaddr = dma_alloc_attrs(dev, size, dma_handle, gfp, attrs);
Tejun Heo9ac78492007-01-20 16:00:26 +090092 if (!vaddr) {
93 devres_free(dr);
94 return NULL;
95 }
96
97 dr->vaddr = vaddr;
98 dr->dma_handle = *dma_handle;
99 dr->size = size;
Christoph Hellwig63d36c92017-06-12 19:15:04 +0200100 dr->attrs = attrs;
Tejun Heo9ac78492007-01-20 16:00:26 +0900101
102 devres_add(dev, dr);
103
104 return vaddr;
105}
Christoph Hellwig63d36c92017-06-12 19:15:04 +0200106EXPORT_SYMBOL(dmam_alloc_attrs);
Tejun Heo9ac78492007-01-20 16:00:26 +0900107
Marek Szyprowskid2b74282012-06-13 10:05:52 +0200108/*
109 * Create scatter-list for the already allocated DMA buffer.
110 */
111int dma_common_get_sgtable(struct device *dev, struct sg_table *sgt,
Christoph Hellwig9406a492018-08-23 09:39:38 +0200112 void *cpu_addr, dma_addr_t dma_addr, size_t size,
113 unsigned long attrs)
Marek Szyprowskid2b74282012-06-13 10:05:52 +0200114{
Christoph Hellwig9406a492018-08-23 09:39:38 +0200115 struct page *page;
Marek Szyprowskid2b74282012-06-13 10:05:52 +0200116 int ret;
117
Christoph Hellwig9406a492018-08-23 09:39:38 +0200118 if (!dev_is_dma_coherent(dev)) {
Christoph Hellwig66d77802019-07-08 11:51:56 -0700119 unsigned long pfn;
120
Christoph Hellwig9406a492018-08-23 09:39:38 +0200121 if (!IS_ENABLED(CONFIG_ARCH_HAS_DMA_COHERENT_TO_PFN))
122 return -ENXIO;
Marek Szyprowskid2b74282012-06-13 10:05:52 +0200123
Christoph Hellwig66d77802019-07-08 11:51:56 -0700124 /* If the PFN is not valid, we do not have a struct page */
125 pfn = arch_dma_coherent_to_pfn(dev, cpu_addr, dma_addr);
126 if (!pfn_valid(pfn))
127 return -ENXIO;
128 page = pfn_to_page(pfn);
Christoph Hellwig9406a492018-08-23 09:39:38 +0200129 } else {
130 page = virt_to_page(cpu_addr);
131 }
132
133 ret = sg_alloc_table(sgt, 1, GFP_KERNEL);
134 if (!ret)
135 sg_set_page(sgt->sgl, page, PAGE_ALIGN(size), 0);
136 return ret;
Marek Szyprowskid2b74282012-06-13 10:05:52 +0200137}
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800138
Christoph Hellwig14451462019-03-15 17:56:43 +0100139/*
140 * The whole dma_get_sgtable() idea is fundamentally unsafe - it seems
141 * that the intention is to allow exporting memory allocated via the
142 * coherent DMA APIs through the dma_buf API, which only accepts a
143 * scattertable. This presents a couple of problems:
144 * 1. Not all memory allocated via the coherent DMA APIs is backed by
145 * a struct page
146 * 2. Passing coherent DMA memory into the streaming APIs is not allowed
147 * as we will try to flush the memory through a different alias to that
148 * actually being used (and the flushes are redundant.)
149 */
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800150int dma_get_sgtable_attrs(struct device *dev, struct sg_table *sgt,
151 void *cpu_addr, dma_addr_t dma_addr, size_t size,
152 unsigned long attrs)
153{
154 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800155
Christoph Hellwigf9f32322019-08-06 15:01:50 +0300156 if (dma_is_direct(ops))
157 return dma_common_get_sgtable(dev, sgt, cpu_addr, dma_addr,
158 size, attrs);
159 if (!ops->get_sgtable)
160 return -ENXIO;
161 return ops->get_sgtable(dev, sgt, cpu_addr, dma_addr, size, attrs);
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800162}
163EXPORT_SYMBOL(dma_get_sgtable_attrs);
Marek Szyprowskid2b74282012-06-13 10:05:52 +0200164
Christoph Hellwig33dcb372019-07-26 09:26:40 +0200165#ifdef CONFIG_MMU
166/*
167 * Return the page attributes used for mapping dma_alloc_* memory, either in
168 * kernel space if remapping is needed, or to userspace through dma_mmap_*.
169 */
170pgprot_t dma_pgprot(struct device *dev, pgprot_t prot, unsigned long attrs)
171{
172 if (dev_is_dma_coherent(dev) ||
173 (IS_ENABLED(CONFIG_DMA_NONCOHERENT_CACHE_SYNC) &&
174 (attrs & DMA_ATTR_NON_CONSISTENT)))
175 return prot;
Christoph Hellwig419e2f12019-08-26 09:03:44 +0200176#ifdef CONFIG_ARCH_HAS_DMA_WRITE_COMBINE
177 if (attrs & DMA_ATTR_WRITE_COMBINE)
178 return pgprot_writecombine(prot);
179#endif
180 return pgprot_dmacoherent(prot);
Christoph Hellwig33dcb372019-07-26 09:26:40 +0200181}
182#endif /* CONFIG_MMU */
183
Marek Szyprowski64ccc9c2012-06-14 13:03:04 +0200184/*
185 * Create userspace mapping for the DMA-coherent memory.
186 */
187int dma_common_mmap(struct device *dev, struct vm_area_struct *vma,
Christoph Hellwig58b04402018-09-11 08:55:28 +0200188 void *cpu_addr, dma_addr_t dma_addr, size_t size,
189 unsigned long attrs)
Marek Szyprowski64ccc9c2012-06-14 13:03:04 +0200190{
Christoph Hellwig62fcee92019-08-06 15:06:40 +0300191#ifdef CONFIG_MMU
Muhammad Falak R Wani95da00e2016-05-21 18:52:22 +0530192 unsigned long user_count = vma_pages(vma);
Marek Szyprowski64ccc9c2012-06-14 13:03:04 +0200193 unsigned long count = PAGE_ALIGN(size) >> PAGE_SHIFT;
Marek Szyprowski64ccc9c2012-06-14 13:03:04 +0200194 unsigned long off = vma->vm_pgoff;
Christoph Hellwig58b04402018-09-11 08:55:28 +0200195 unsigned long pfn;
196 int ret = -ENXIO;
Marek Szyprowski64ccc9c2012-06-14 13:03:04 +0200197
Christoph Hellwig33dcb372019-07-26 09:26:40 +0200198 vma->vm_page_prot = dma_pgprot(dev, vma->vm_page_prot, attrs);
Marek Szyprowski64ccc9c2012-06-14 13:03:04 +0200199
Vladimir Murzin43fc5092017-07-20 11:19:58 +0100200 if (dma_mmap_from_dev_coherent(dev, vma, cpu_addr, size, &ret))
Marek Szyprowski64ccc9c2012-06-14 13:03:04 +0200201 return ret;
202
Christoph Hellwig58b04402018-09-11 08:55:28 +0200203 if (off >= count || user_count > count - off)
204 return -ENXIO;
Marek Szyprowski64ccc9c2012-06-14 13:03:04 +0200205
Christoph Hellwig58b04402018-09-11 08:55:28 +0200206 if (!dev_is_dma_coherent(dev)) {
207 if (!IS_ENABLED(CONFIG_ARCH_HAS_DMA_COHERENT_TO_PFN))
208 return -ENXIO;
Christoph Hellwig66d77802019-07-08 11:51:56 -0700209
210 /* If the PFN is not valid, we do not have a struct page */
Christoph Hellwig58b04402018-09-11 08:55:28 +0200211 pfn = arch_dma_coherent_to_pfn(dev, cpu_addr, dma_addr);
Christoph Hellwig66d77802019-07-08 11:51:56 -0700212 if (!pfn_valid(pfn))
213 return -ENXIO;
Christoph Hellwig58b04402018-09-11 08:55:28 +0200214 } else {
215 pfn = page_to_pfn(virt_to_page(cpu_addr));
216 }
217
218 return remap_pfn_range(vma, vma->vm_start, pfn + vma->vm_pgoff,
219 user_count << PAGE_SHIFT, vma->vm_page_prot);
220#else
221 return -ENXIO;
Christoph Hellwig62fcee92019-08-06 15:06:40 +0300222#endif /* CONFIG_MMU */
Marek Szyprowski64ccc9c2012-06-14 13:03:04 +0200223}
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800224
225/**
Christoph Hellwige29ccc12019-08-03 13:31:25 +0300226 * dma_can_mmap - check if a given device supports dma_mmap_*
227 * @dev: device to check
228 *
229 * Returns %true if @dev supports dma_mmap_coherent() and dma_mmap_attrs() to
230 * map DMA allocations to userspace.
231 */
232bool dma_can_mmap(struct device *dev)
233{
234 const struct dma_map_ops *ops = get_dma_ops(dev);
235
Christoph Hellwige29ccc12019-08-03 13:31:25 +0300236 if (dma_is_direct(ops)) {
Christoph Hellwig62fcee92019-08-06 15:06:40 +0300237 return IS_ENABLED(CONFIG_MMU) &&
238 (dev_is_dma_coherent(dev) ||
239 IS_ENABLED(CONFIG_ARCH_HAS_DMA_COHERENT_TO_PFN));
Christoph Hellwige29ccc12019-08-03 13:31:25 +0300240 }
241
242 return ops->mmap != NULL;
243}
244EXPORT_SYMBOL_GPL(dma_can_mmap);
245
246/**
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800247 * dma_mmap_attrs - map a coherent DMA allocation into user space
248 * @dev: valid struct device pointer, or NULL for ISA and EISA-like devices
249 * @vma: vm_area_struct describing requested user mapping
250 * @cpu_addr: kernel CPU-view address returned from dma_alloc_attrs
251 * @dma_addr: device-view address returned from dma_alloc_attrs
252 * @size: size of memory originally requested in dma_alloc_attrs
253 * @attrs: attributes of mapping properties requested in dma_alloc_attrs
254 *
255 * Map a coherent DMA buffer previously allocated by dma_alloc_attrs into user
256 * space. The coherent DMA buffer must not be freed by the driver until the
257 * user space mapping has been released.
258 */
259int dma_mmap_attrs(struct device *dev, struct vm_area_struct *vma,
260 void *cpu_addr, dma_addr_t dma_addr, size_t size,
261 unsigned long attrs)
262{
263 const struct dma_map_ops *ops = get_dma_ops(dev);
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800264
Christoph Hellwigf9f32322019-08-06 15:01:50 +0300265 if (dma_is_direct(ops))
266 return dma_common_mmap(dev, vma, cpu_addr, dma_addr, size,
267 attrs);
268 if (!ops->mmap)
269 return -ENXIO;
270 return ops->mmap(dev, vma, cpu_addr, dma_addr, size, attrs);
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800271}
272EXPORT_SYMBOL(dma_mmap_attrs);
Christoph Hellwig05887cb2018-12-06 12:25:54 -0800273
Christoph Hellwig05887cb2018-12-06 12:25:54 -0800274u64 dma_get_required_mask(struct device *dev)
275{
276 const struct dma_map_ops *ops = get_dma_ops(dev);
277
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800278 if (dma_is_direct(ops))
279 return dma_direct_get_required_mask(dev);
Christoph Hellwig05887cb2018-12-06 12:25:54 -0800280 if (ops->get_required_mask)
281 return ops->get_required_mask(dev);
Christoph Hellwig249baa52019-08-06 15:01:38 +0300282
283 /*
284 * We require every DMA ops implementation to at least support a 32-bit
285 * DMA mask (and use bounce buffering if that isn't supported in
286 * hardware). As the direct mapping code has its own routine to
287 * actually report an optimal mask we default to 32-bit here as that
288 * is the right thing for most IOMMUs, and at least not actively
289 * harmful in general.
290 */
291 return DMA_BIT_MASK(32);
Christoph Hellwig05887cb2018-12-06 12:25:54 -0800292}
293EXPORT_SYMBOL_GPL(dma_get_required_mask);
Christoph Hellwig05887cb2018-12-06 12:25:54 -0800294
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800295void *dma_alloc_attrs(struct device *dev, size_t size, dma_addr_t *dma_handle,
296 gfp_t flag, unsigned long attrs)
297{
298 const struct dma_map_ops *ops = get_dma_ops(dev);
299 void *cpu_addr;
300
Dan Carpenter148a97d2019-04-24 17:24:37 +0300301 WARN_ON_ONCE(!dev->coherent_dma_mask);
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800302
303 if (dma_alloc_from_dev_coherent(dev, size, dma_handle, &cpu_addr))
304 return cpu_addr;
305
306 /* let the implementation decide on the zone to allocate from: */
307 flag &= ~(__GFP_DMA | __GFP_DMA32 | __GFP_HIGHMEM);
308
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800309 if (dma_is_direct(ops))
310 cpu_addr = dma_direct_alloc(dev, size, dma_handle, flag, attrs);
311 else if (ops->alloc)
312 cpu_addr = ops->alloc(dev, size, dma_handle, flag, attrs);
313 else
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800314 return NULL;
315
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800316 debug_dma_alloc_coherent(dev, size, *dma_handle, cpu_addr);
317 return cpu_addr;
318}
319EXPORT_SYMBOL(dma_alloc_attrs);
320
321void dma_free_attrs(struct device *dev, size_t size, void *cpu_addr,
322 dma_addr_t dma_handle, unsigned long attrs)
323{
324 const struct dma_map_ops *ops = get_dma_ops(dev);
325
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800326 if (dma_release_from_dev_coherent(dev, get_order(size), cpu_addr))
327 return;
328 /*
329 * On non-coherent platforms which implement DMA-coherent buffers via
330 * non-cacheable remaps, ops->free() may call vunmap(). Thus getting
331 * this far in IRQ context is a) at risk of a BUG_ON() or trying to
332 * sleep on some machines, and b) an indication that the driver is
333 * probably misusing the coherent API anyway.
334 */
335 WARN_ON(irqs_disabled());
336
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800337 if (!cpu_addr)
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800338 return;
339
340 debug_dma_free_coherent(dev, size, cpu_addr, dma_handle);
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800341 if (dma_is_direct(ops))
342 dma_direct_free(dev, size, cpu_addr, dma_handle, attrs);
343 else if (ops->free)
344 ops->free(dev, size, cpu_addr, dma_handle, attrs);
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800345}
346EXPORT_SYMBOL(dma_free_attrs);
347
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800348int dma_supported(struct device *dev, u64 mask)
349{
350 const struct dma_map_ops *ops = get_dma_ops(dev);
351
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800352 if (dma_is_direct(ops))
353 return dma_direct_supported(dev, mask);
Thierry Reding8b1cce92018-12-20 17:35:47 +0100354 if (!ops->dma_supported)
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800355 return 1;
356 return ops->dma_supported(dev, mask);
357}
358EXPORT_SYMBOL(dma_supported);
359
Christoph Hellwig11ddce12019-02-13 08:01:22 +0100360#ifdef CONFIG_ARCH_HAS_DMA_SET_MASK
361void arch_dma_set_mask(struct device *dev, u64 mask);
362#else
363#define arch_dma_set_mask(dev, mask) do { } while (0)
364#endif
365
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800366int dma_set_mask(struct device *dev, u64 mask)
367{
Christoph Hellwig4a54d162019-04-29 09:16:42 -0500368 /*
369 * Truncate the mask to the actually supported dma_addr_t width to
370 * avoid generating unsupportable addresses.
371 */
372 mask = (dma_addr_t)mask;
373
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800374 if (!dev->dma_mask || !dma_supported(dev, mask))
375 return -EIO;
376
Christoph Hellwig11ddce12019-02-13 08:01:22 +0100377 arch_dma_set_mask(dev, mask);
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800378 *dev->dma_mask = mask;
379 return 0;
380}
381EXPORT_SYMBOL(dma_set_mask);
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800382
383#ifndef CONFIG_ARCH_HAS_DMA_SET_COHERENT_MASK
384int dma_set_coherent_mask(struct device *dev, u64 mask)
385{
Christoph Hellwig4a54d162019-04-29 09:16:42 -0500386 /*
387 * Truncate the mask to the actually supported dma_addr_t width to
388 * avoid generating unsupportable addresses.
389 */
390 mask = (dma_addr_t)mask;
391
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800392 if (!dma_supported(dev, mask))
393 return -EIO;
394
Christoph Hellwig7249c1a2018-12-06 12:43:30 -0800395 dev->coherent_dma_mask = mask;
396 return 0;
397}
398EXPORT_SYMBOL(dma_set_coherent_mask);
399#endif
Christoph Hellwig8ddbe592018-12-06 12:47:50 -0800400
401void dma_cache_sync(struct device *dev, void *vaddr, size_t size,
402 enum dma_data_direction dir)
403{
404 const struct dma_map_ops *ops = get_dma_ops(dev);
405
406 BUG_ON(!valid_dma_direction(dir));
Christoph Hellwig356da6d2018-12-06 13:39:32 -0800407
408 if (dma_is_direct(ops))
409 arch_dma_cache_sync(dev, vaddr, size, dir);
410 else if (ops->cache_sync)
Christoph Hellwig8ddbe592018-12-06 12:47:50 -0800411 ops->cache_sync(dev, vaddr, size, dir);
412}
413EXPORT_SYMBOL(dma_cache_sync);
Joerg Roedel133d6242019-02-07 12:59:15 +0100414
415size_t dma_max_mapping_size(struct device *dev)
416{
417 const struct dma_map_ops *ops = get_dma_ops(dev);
418 size_t size = SIZE_MAX;
419
420 if (dma_is_direct(ops))
421 size = dma_direct_max_mapping_size(dev);
422 else if (ops && ops->max_mapping_size)
423 size = ops->max_mapping_size(dev);
424
425 return size;
426}
427EXPORT_SYMBOL_GPL(dma_max_mapping_size);
Yoshihiro Shimoda6ba99412019-08-28 21:35:40 +0900428
429unsigned long dma_get_merge_boundary(struct device *dev)
430{
431 const struct dma_map_ops *ops = get_dma_ops(dev);
432
433 if (!ops || !ops->get_merge_boundary)
434 return 0; /* can't merge */
435
436 return ops->get_merge_boundary(dev);
437}
438EXPORT_SYMBOL_GPL(dma_get_merge_boundary);