diff options
| -rw-r--r-- | arch/x86/include/asm/xen/swiotlb-xen.h | 14 | ||||
| -rw-r--r-- | arch/x86/xen/Makefile | 1 | ||||
| -rw-r--r-- | arch/x86/xen/pci-swiotlb-xen.c | 58 |
3 files changed, 73 insertions, 0 deletions
diff --git a/arch/x86/include/asm/xen/swiotlb-xen.h b/arch/x86/include/asm/xen/swiotlb-xen.h new file mode 100644 index 000000000000..1be1ab7d6a41 --- /dev/null +++ b/arch/x86/include/asm/xen/swiotlb-xen.h | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | #ifndef _ASM_X86_SWIOTLB_XEN_H | ||
| 2 | #define _ASM_X86_SWIOTLB_XEN_H | ||
| 3 | |||
| 4 | #ifdef CONFIG_SWIOTLB_XEN | ||
| 5 | extern int xen_swiotlb; | ||
| 6 | extern int __init pci_xen_swiotlb_detect(void); | ||
| 7 | extern void __init pci_xen_swiotlb_init(void); | ||
| 8 | #else | ||
| 9 | #define xen_swiotlb (0) | ||
| 10 | static inline int __init pci_xen_swiotlb_detect(void) { return 0; } | ||
| 11 | static inline void __init pci_xen_swiotlb_init(void) { } | ||
| 12 | #endif | ||
| 13 | |||
| 14 | #endif /* _ASM_X86_SWIOTLB_XEN_H */ | ||
diff --git a/arch/x86/xen/Makefile b/arch/x86/xen/Makefile index 3bb4fc21f4f2..32af238055c3 100644 --- a/arch/x86/xen/Makefile +++ b/arch/x86/xen/Makefile | |||
| @@ -18,3 +18,4 @@ obj-$(CONFIG_SMP) += smp.o | |||
| 18 | obj-$(CONFIG_PARAVIRT_SPINLOCKS)+= spinlock.o | 18 | obj-$(CONFIG_PARAVIRT_SPINLOCKS)+= spinlock.o |
| 19 | obj-$(CONFIG_XEN_DEBUG_FS) += debugfs.o | 19 | obj-$(CONFIG_XEN_DEBUG_FS) += debugfs.o |
| 20 | 20 | ||
| 21 | obj-$(CONFIG_SWIOTLB_XEN) += pci-swiotlb-xen.o | ||
diff --git a/arch/x86/xen/pci-swiotlb-xen.c b/arch/x86/xen/pci-swiotlb-xen.c new file mode 100644 index 000000000000..a013ec9d0c54 --- /dev/null +++ b/arch/x86/xen/pci-swiotlb-xen.c | |||
| @@ -0,0 +1,58 @@ | |||
| 1 | /* Glue code to lib/swiotlb-xen.c */ | ||
| 2 | |||
| 3 | #include <linux/dma-mapping.h> | ||
| 4 | #include <xen/swiotlb-xen.h> | ||
| 5 | |||
| 6 | #include <asm/xen/hypervisor.h> | ||
| 7 | #include <xen/xen.h> | ||
| 8 | |||
| 9 | int xen_swiotlb __read_mostly; | ||
| 10 | |||
| 11 | static struct dma_map_ops xen_swiotlb_dma_ops = { | ||
| 12 | .mapping_error = xen_swiotlb_dma_mapping_error, | ||
| 13 | .alloc_coherent = xen_swiotlb_alloc_coherent, | ||
| 14 | .free_coherent = xen_swiotlb_free_coherent, | ||
| 15 | .sync_single_for_cpu = xen_swiotlb_sync_single_for_cpu, | ||
| 16 | .sync_single_for_device = xen_swiotlb_sync_single_for_device, | ||
| 17 | .sync_sg_for_cpu = xen_swiotlb_sync_sg_for_cpu, | ||
| 18 | .sync_sg_for_device = xen_swiotlb_sync_sg_for_device, | ||
| 19 | .map_sg = xen_swiotlb_map_sg_attrs, | ||
| 20 | .unmap_sg = xen_swiotlb_unmap_sg_attrs, | ||
| 21 | .map_page = xen_swiotlb_map_page, | ||
| 22 | .unmap_page = xen_swiotlb_unmap_page, | ||
| 23 | .dma_supported = xen_swiotlb_dma_supported, | ||
| 24 | }; | ||
| 25 | |||
| 26 | /* | ||
| 27 | * pci_xen_swiotlb_detect - set xen_swiotlb to 1 if necessary | ||
| 28 | * | ||
| 29 | * This returns non-zero if we are forced to use xen_swiotlb (by the boot | ||
| 30 | * option). | ||
| 31 | */ | ||
| 32 | int __init pci_xen_swiotlb_detect(void) | ||
| 33 | { | ||
| 34 | |||
| 35 | /* If running as PV guest, either iommu=soft, or swiotlb=force will | ||
| 36 | * activate this IOMMU. If running as PV privileged, activate it | ||
| 37 | * irregardlesss. | ||
| 38 | */ | ||
| 39 | if ((xen_initial_domain() || swiotlb || swiotlb_force) && | ||
| 40 | (xen_pv_domain())) | ||
| 41 | xen_swiotlb = 1; | ||
| 42 | |||
| 43 | /* If we are running under Xen, we MUST disable the native SWIOTLB. | ||
| 44 | * Don't worry about swiotlb_force flag activating the native, as | ||
| 45 | * the 'swiotlb' flag is the only one turning it on. */ | ||
| 46 | if (xen_pv_domain()) | ||
| 47 | swiotlb = 0; | ||
| 48 | |||
| 49 | return xen_swiotlb; | ||
| 50 | } | ||
| 51 | |||
| 52 | void __init pci_xen_swiotlb_init(void) | ||
| 53 | { | ||
| 54 | if (xen_swiotlb) { | ||
| 55 | xen_swiotlb_init(1); | ||
| 56 | dma_ops = &xen_swiotlb_dma_ops; | ||
| 57 | } | ||
| 58 | } | ||
