1 /* Glue code to lib/swiotlb-xen.c */
3 #include <linux/dma-mapping.h>
5 #include <xen/swiotlb-xen.h>
7 #include <asm/xen/hypervisor.h>
9 #include <asm/iommu_table.h>
12 #include <asm/xen/swiotlb-xen.h>
14 #include <asm/iommu.h>
17 #include <linux/export.h>
19 int xen_swiotlb __read_mostly
;
21 static struct dma_map_ops xen_swiotlb_dma_ops
= {
22 .mapping_error
= xen_swiotlb_dma_mapping_error
,
23 .alloc
= xen_swiotlb_alloc_coherent
,
24 .free
= xen_swiotlb_free_coherent
,
25 .sync_single_for_cpu
= xen_swiotlb_sync_single_for_cpu
,
26 .sync_single_for_device
= xen_swiotlb_sync_single_for_device
,
27 .sync_sg_for_cpu
= xen_swiotlb_sync_sg_for_cpu
,
28 .sync_sg_for_device
= xen_swiotlb_sync_sg_for_device
,
29 .map_sg
= xen_swiotlb_map_sg_attrs
,
30 .unmap_sg
= xen_swiotlb_unmap_sg_attrs
,
31 .map_page
= xen_swiotlb_map_page
,
32 .unmap_page
= xen_swiotlb_unmap_page
,
33 .dma_supported
= xen_swiotlb_dma_supported
,
37 * pci_xen_swiotlb_detect - set xen_swiotlb to 1 if necessary
39 * This returns non-zero if we are forced to use xen_swiotlb (by the boot
42 int __init
pci_xen_swiotlb_detect(void)
48 /* If running as PV guest, either iommu=soft, or swiotlb=force will
49 * activate this IOMMU. If running as PV privileged, activate it
52 if ((xen_initial_domain() || swiotlb
|| swiotlb_force
))
55 /* If we are running under Xen, we MUST disable the native SWIOTLB.
56 * Don't worry about swiotlb_force flag activating the native, as
57 * the 'swiotlb' flag is the only one turning it on. */
61 /* pci_swiotlb_detect_4gb turns on native SWIOTLB if no_iommu == 0
62 * (so no iommu=X command line over-writes).
63 * Considering that PV guests do not want the *native SWIOTLB* but
64 * only Xen SWIOTLB it is not useful to us so set no_iommu=1 here.
66 if (max_pfn
> MAX_DMA32_PFN
)
72 void __init
pci_xen_swiotlb_init(void)
75 xen_swiotlb_init(1, true /* early */);
76 dma_ops
= &xen_swiotlb_dma_ops
;
78 /* Make sure ACS will be enabled */
83 int pci_xen_swiotlb_init_late(void)
90 rc
= xen_swiotlb_init(1, false /* late */);
94 dma_ops
= &xen_swiotlb_dma_ops
;
95 /* Make sure ACS will be enabled */
100 EXPORT_SYMBOL_GPL(pci_xen_swiotlb_init_late
);
102 IOMMU_INIT_FINISH(pci_xen_swiotlb_detect
,
104 pci_xen_swiotlb_init
,