1 // SPDX-License-Identifier: GPL-2.0
2 /* Glue code to lib/swiotlb.c */
5 #include <linux/cache.h>
6 #include <linux/init.h>
7 #include <linux/swiotlb.h>
8 #include <linux/bootmem.h>
9 #include <linux/dma-mapping.h>
10 #include <linux/mem_encrypt.h>
12 #include <asm/iommu.h>
13 #include <asm/swiotlb.h>
15 #include <asm/xen/swiotlb-xen.h>
16 #include <asm/iommu_table.h>
18 int swiotlb __read_mostly
;
20 void *x86_swiotlb_alloc_coherent(struct device
*hwdev
, size_t size
,
21 dma_addr_t
*dma_handle
, gfp_t flags
,
27 * Don't print a warning when the first allocation attempt fails.
28 * swiotlb_alloc_coherent() will print a warning when the DMA
29 * memory allocation ultimately failed.
31 flags
|= __GFP_NOWARN
;
33 vaddr
= dma_generic_alloc_coherent(hwdev
, size
, dma_handle
, flags
,
38 return swiotlb_alloc_coherent(hwdev
, size
, dma_handle
, flags
);
41 void x86_swiotlb_free_coherent(struct device
*dev
, size_t size
,
42 void *vaddr
, dma_addr_t dma_addr
,
45 if (is_swiotlb_buffer(dma_to_phys(dev
, dma_addr
)))
46 swiotlb_free_coherent(dev
, size
, vaddr
, dma_addr
);
48 dma_generic_free_coherent(dev
, size
, vaddr
, dma_addr
, attrs
);
51 static const struct dma_map_ops swiotlb_dma_ops
= {
52 .mapping_error
= swiotlb_dma_mapping_error
,
53 .alloc
= x86_swiotlb_alloc_coherent
,
54 .free
= x86_swiotlb_free_coherent
,
55 .sync_single_for_cpu
= swiotlb_sync_single_for_cpu
,
56 .sync_single_for_device
= swiotlb_sync_single_for_device
,
57 .sync_sg_for_cpu
= swiotlb_sync_sg_for_cpu
,
58 .sync_sg_for_device
= swiotlb_sync_sg_for_device
,
59 .map_sg
= swiotlb_map_sg_attrs
,
60 .unmap_sg
= swiotlb_unmap_sg_attrs
,
61 .map_page
= swiotlb_map_page
,
62 .unmap_page
= swiotlb_unmap_page
,
63 .dma_supported
= NULL
,
67 * pci_swiotlb_detect_override - set swiotlb to 1 if necessary
69 * This returns non-zero if we are forced to use swiotlb (by the boot
72 int __init
pci_swiotlb_detect_override(void)
74 if (swiotlb_force
== SWIOTLB_FORCE
)
79 IOMMU_INIT_FINISH(pci_swiotlb_detect_override
,
80 pci_xen_swiotlb_detect
,
82 pci_swiotlb_late_init
);
85 * If 4GB or more detected (and iommu=off not set) or if SME is active
86 * then set swiotlb to 1 and return 1.
88 int __init
pci_swiotlb_detect_4gb(void)
90 /* don't initialize swiotlb if iommu=off (no_iommu=1) */
92 if (!no_iommu
&& max_possible_pfn
> MAX_DMA32_PFN
)
97 * If SME is active then swiotlb will be set to 1 so that bounce
98 * buffers are allocated and used for devices that do not support
99 * the addressing range required for the encryption mask.
106 IOMMU_INIT(pci_swiotlb_detect_4gb
,
107 pci_swiotlb_detect_override
,
109 pci_swiotlb_late_init
);
111 void __init
pci_swiotlb_init(void)
115 dma_ops
= &swiotlb_dma_ops
;
119 void __init
pci_swiotlb_late_init(void)
121 /* An IOMMU turned us off. */
125 printk(KERN_INFO
"PCI-DMA: "
126 "Using software bounce buffering for IO (SWIOTLB)\n");
127 swiotlb_print_info();