1 // SPDX-License-Identifier: GPL-2.0-only
3 #include <linux/dma-direct.h>
4 #include <linux/dma-noncoherent.h>
6 #include <linux/highmem.h>
7 #include <linux/export.h>
8 #include <linux/memblock.h>
9 #include <linux/of_address.h>
10 #include <linux/slab.h>
11 #include <linux/types.h>
12 #include <linux/vmalloc.h>
13 #include <linux/swiotlb.h>
16 #include <xen/interface/grant_table.h>
17 #include <xen/interface/memory.h>
19 #include <xen/xen-ops.h>
20 #include <xen/swiotlb-xen.h>
22 #include <asm/cacheflush.h>
23 #include <asm/xen/hypercall.h>
24 #include <asm/xen/interface.h>
26 unsigned long xen_get_swiotlb_free_pages(unsigned int order)
28 struct memblock_region *reg;
29 gfp_t flags = __GFP_NOWARN|__GFP_KSWAPD_RECLAIM;
31 for_each_memblock(memory, reg) {
32 if (reg->base < (phys_addr_t)0xffffffff) {
33 if (IS_ENABLED(CONFIG_ZONE_DMA32))
40 return __get_free_pages(flags, order);
43 static bool hypercall_cflush = false;
45 /* buffers in highmem or foreign pages cannot cross page boundaries */
46 static void dma_cache_maint(struct device *dev, dma_addr_t handle,
49 struct gnttab_cache_flush cflush;
51 cflush.offset = xen_offset_in_page(handle);
53 handle &= XEN_PAGE_MASK;
56 cflush.a.dev_bus_addr = dma_to_phys(dev, handle);
58 if (size + cflush.offset > XEN_PAGE_SIZE)
59 cflush.length = XEN_PAGE_SIZE - cflush.offset;
63 HYPERVISOR_grant_table_op(GNTTABOP_cache_flush, &cflush, 1);
66 handle += cflush.length;
67 size -= cflush.length;
72 * Dom0 is mapped 1:1, and while the Linux page can span across multiple Xen
73 * pages, it is not possible for it to contain a mix of local and foreign Xen
74 * pages. Calling pfn_valid on a foreign mfn will always return false, so if
75 * pfn_valid returns true the pages is local and we can use the native
76 * dma-direct functions, otherwise we call the Xen specific version.
78 void xen_dma_sync_for_cpu(struct device *dev, dma_addr_t handle,
79 size_t size, enum dma_data_direction dir)
81 if (dir != DMA_TO_DEVICE)
82 dma_cache_maint(dev, handle, size, GNTTAB_CACHE_INVAL);
85 void xen_dma_sync_for_device(struct device *dev, dma_addr_t handle,
86 size_t size, enum dma_data_direction dir)
88 if (dir == DMA_FROM_DEVICE)
89 dma_cache_maint(dev, handle, size, GNTTAB_CACHE_INVAL);
91 dma_cache_maint(dev, handle, size, GNTTAB_CACHE_CLEAN);
94 bool xen_arch_need_swiotlb(struct device *dev,
98 unsigned int xen_pfn = XEN_PFN_DOWN(phys);
99 unsigned int bfn = XEN_PFN_DOWN(dma_to_phys(dev, dev_addr));
102 * The swiotlb buffer should be used if
103 * - Xen doesn't have the cache flush hypercall
104 * - The Linux page refers to foreign memory
105 * - The device doesn't support coherent DMA request
107 * The Linux page may be spanned acrros multiple Xen page, although
108 * it's not possible to have a mix of local and foreign Xen page.
109 * Furthermore, range_straddles_page_boundary is already checking
110 * if buffer is physically contiguous in the host RAM.
112 * Therefore we only need to check the first Xen page to know if we
113 * require a bounce buffer because the device doesn't support coherent
114 * memory and we are not able to flush the cache.
116 return (!hypercall_cflush && (xen_pfn != bfn) &&
117 !dev_is_dma_coherent(dev));
120 int xen_create_contiguous_region(phys_addr_t pstart, unsigned int order,
121 unsigned int address_bits,
122 dma_addr_t *dma_handle)
124 if (!xen_initial_domain())
127 /* we assume that dom0 is mapped 1:1 for now */
128 *dma_handle = pstart;
132 void xen_destroy_contiguous_region(phys_addr_t pstart, unsigned int order)
137 static int __init xen_mm_init(void)
139 struct gnttab_cache_flush cflush;
140 if (!xen_initial_domain())
142 xen_swiotlb_init(1, false);
145 cflush.a.dev_bus_addr = 0;
148 if (HYPERVISOR_grant_table_op(GNTTABOP_cache_flush, &cflush, 1) != -ENOSYS)
149 hypercall_cflush = true;
152 arch_initcall(xen_mm_init);