blob: 45b5ab54c9eeb04730d363d13fc43a40d138aabe [file] [log] [blame]
Catalin Marinas09b55412012-03-05 11:49:30 +00001/*
2 * SWIOTLB-based DMA API implementation
3 *
4 * Copyright (C) 2012 ARM Ltd.
5 * Author: Catalin Marinas <catalin.marinas@arm.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <linux/gfp.h>
21#include <linux/export.h>
22#include <linux/slab.h>
23#include <linux/dma-mapping.h>
Laura Abbott6ac21042013-12-12 19:28:33 +000024#include <linux/dma-contiguous.h>
Catalin Marinas09b55412012-03-05 11:49:30 +000025#include <linux/vmalloc.h>
26#include <linux/swiotlb.h>
27
28#include <asm/cacheflush.h>
29
30struct dma_map_ops *dma_ops;
31EXPORT_SYMBOL(dma_ops);
32
33static void *arm64_swiotlb_alloc_coherent(struct device *dev, size_t size,
34 dma_addr_t *dma_handle, gfp_t flags,
35 struct dma_attrs *attrs)
36{
Laura Abbottc666e8d2013-12-12 19:28:32 +000037 if (dev == NULL) {
38 WARN_ONCE(1, "Use an actual device structure for DMA allocation\n");
39 return NULL;
40 }
41
Catalin Marinas09b55412012-03-05 11:49:30 +000042 if (IS_ENABLED(CONFIG_ZONE_DMA32) &&
43 dev->coherent_dma_mask <= DMA_BIT_MASK(32))
44 flags |= GFP_DMA32;
Laura Abbott6ac21042013-12-12 19:28:33 +000045 if (IS_ENABLED(CONFIG_DMA_CMA)) {
46 struct page *page;
47
48 page = dma_alloc_from_contiguous(dev, size >> PAGE_SHIFT,
49 get_order(size));
50 if (!page)
51 return NULL;
52
53 *dma_handle = phys_to_dma(dev, page_to_phys(page));
54 return page_address(page);
55 } else {
56 return swiotlb_alloc_coherent(dev, size, dma_handle, flags);
57 }
Catalin Marinas09b55412012-03-05 11:49:30 +000058}
59
60static void arm64_swiotlb_free_coherent(struct device *dev, size_t size,
61 void *vaddr, dma_addr_t dma_handle,
62 struct dma_attrs *attrs)
63{
Laura Abbottc666e8d2013-12-12 19:28:32 +000064 if (dev == NULL) {
65 WARN_ONCE(1, "Use an actual device structure for DMA allocation\n");
66 return;
67 }
68
Laura Abbott6ac21042013-12-12 19:28:33 +000069 if (IS_ENABLED(CONFIG_DMA_CMA)) {
70 phys_addr_t paddr = dma_to_phys(dev, dma_handle);
71
72 dma_release_from_contiguous(dev,
73 phys_to_page(paddr),
74 size >> PAGE_SHIFT);
75 } else {
76 swiotlb_free_coherent(dev, size, vaddr, dma_handle);
77 }
Catalin Marinas09b55412012-03-05 11:49:30 +000078}
79
80static struct dma_map_ops arm64_swiotlb_dma_ops = {
81 .alloc = arm64_swiotlb_alloc_coherent,
82 .free = arm64_swiotlb_free_coherent,
83 .map_page = swiotlb_map_page,
84 .unmap_page = swiotlb_unmap_page,
85 .map_sg = swiotlb_map_sg_attrs,
86 .unmap_sg = swiotlb_unmap_sg_attrs,
87 .sync_single_for_cpu = swiotlb_sync_single_for_cpu,
88 .sync_single_for_device = swiotlb_sync_single_for_device,
89 .sync_sg_for_cpu = swiotlb_sync_sg_for_cpu,
90 .sync_sg_for_device = swiotlb_sync_sg_for_device,
91 .dma_supported = swiotlb_dma_supported,
92 .mapping_error = swiotlb_dma_mapping_error,
93};
94
Catalin Marinas27222a32012-10-03 14:35:18 +010095void __init arm64_swiotlb_init(void)
Catalin Marinas09b55412012-03-05 11:49:30 +000096{
97 dma_ops = &arm64_swiotlb_dma_ops;
Catalin Marinas27222a32012-10-03 14:35:18 +010098 swiotlb_init(1);
Catalin Marinas09b55412012-03-05 11:49:30 +000099}
100
101#define PREALLOC_DMA_DEBUG_ENTRIES 4096
102
103static int __init dma_debug_do_init(void)
104{
105 dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
106 return 0;
107}
108fs_initcall(dma_debug_do_init);