Konrad Rzeszutek Wilk | bbbe573 | 2010-02-09 14:30:55 -0500 | [diff] [blame] | 1 | /* Glue code to lib/swiotlb-xen.c */ |
| 2 | |
| 3 | #include <linux/dma-mapping.h> |
Konrad Rzeszutek Wilk | 74226b8 | 2010-08-19 13:34:58 -0400 | [diff] [blame] | 4 | #include <linux/pci.h> |
Konrad Rzeszutek Wilk | bbbe573 | 2010-02-09 14:30:55 -0500 | [diff] [blame] | 5 | #include <xen/swiotlb-xen.h> |
| 6 | |
| 7 | #include <asm/xen/hypervisor.h> |
| 8 | #include <xen/xen.h> |
Konrad Rzeszutek Wilk | 5cb3a26 | 2010-08-26 13:58:01 -0400 | [diff] [blame] | 9 | #include <asm/iommu_table.h> |
Konrad Rzeszutek Wilk | bbbe573 | 2010-02-09 14:30:55 -0500 | [diff] [blame] | 10 | |
Konrad Rzeszutek Wilk | a5f9515 | 2012-09-22 20:01:16 -0400 | [diff] [blame] | 11 | |
Konrad Rzeszutek Wilk | b8b0f55 | 2012-08-21 14:49:34 -0400 | [diff] [blame] | 12 | #include <asm/xen/swiotlb-xen.h> |
Konrad Rzeszutek Wilk | fc2341d | 2012-07-27 20:16:00 -0400 | [diff] [blame] | 13 | #ifdef CONFIG_X86_64 |
| 14 | #include <asm/iommu.h> |
| 15 | #include <asm/dma.h> |
| 16 | #endif |
Konrad Rzeszutek Wilk | b827760 | 2012-08-23 14:36:15 -0400 | [diff] [blame] | 17 | #include <linux/export.h> |
Konrad Rzeszutek Wilk | a5f9515 | 2012-09-22 20:01:16 -0400 | [diff] [blame] | 18 | |
Konrad Rzeszutek Wilk | bbbe573 | 2010-02-09 14:30:55 -0500 | [diff] [blame] | 19 | int xen_swiotlb __read_mostly; |
| 20 | |
Konrad Rzeszutek Wilk | bbbe573 | 2010-02-09 14:30:55 -0500 | [diff] [blame] | 21 | /* |
| 22 | * pci_xen_swiotlb_detect - set xen_swiotlb to 1 if necessary |
| 23 | * |
| 24 | * This returns non-zero if we are forced to use xen_swiotlb (by the boot |
| 25 | * option). |
| 26 | */ |
| 27 | int __init pci_xen_swiotlb_detect(void) |
| 28 | { |
| 29 | |
Konrad Rzeszutek Wilk | 988f0e2 | 2012-07-27 20:10:58 -0400 | [diff] [blame] | 30 | if (!xen_pv_domain()) |
| 31 | return 0; |
| 32 | |
Konrad Rzeszutek Wilk | bbbe573 | 2010-02-09 14:30:55 -0500 | [diff] [blame] | 33 | /* If running as PV guest, either iommu=soft, or swiotlb=force will |
| 34 | * activate this IOMMU. If running as PV privileged, activate it |
Justin P. Mattock | 70f23fd | 2011-05-10 10:16:21 +0200 | [diff] [blame] | 35 | * irregardless. |
Konrad Rzeszutek Wilk | bbbe573 | 2010-02-09 14:30:55 -0500 | [diff] [blame] | 36 | */ |
Geert Uytterhoeven | ae7871b | 2016-12-16 14:28:41 +0100 | [diff] [blame] | 37 | if (xen_initial_domain() || swiotlb || swiotlb_force == SWIOTLB_FORCE) |
Konrad Rzeszutek Wilk | bbbe573 | 2010-02-09 14:30:55 -0500 | [diff] [blame] | 38 | xen_swiotlb = 1; |
| 39 | |
| 40 | /* If we are running under Xen, we MUST disable the native SWIOTLB. |
| 41 | * Don't worry about swiotlb_force flag activating the native, as |
| 42 | * the 'swiotlb' flag is the only one turning it on. */ |
Konrad Rzeszutek Wilk | 988f0e2 | 2012-07-27 20:10:58 -0400 | [diff] [blame] | 43 | swiotlb = 0; |
Konrad Rzeszutek Wilk | bbbe573 | 2010-02-09 14:30:55 -0500 | [diff] [blame] | 44 | |
Konrad Rzeszutek Wilk | fc2341d | 2012-07-27 20:16:00 -0400 | [diff] [blame] | 45 | #ifdef CONFIG_X86_64 |
| 46 | /* pci_swiotlb_detect_4gb turns on native SWIOTLB if no_iommu == 0 |
| 47 | * (so no iommu=X command line over-writes). |
| 48 | * Considering that PV guests do not want the *native SWIOTLB* but |
| 49 | * only Xen SWIOTLB it is not useful to us so set no_iommu=1 here. |
| 50 | */ |
| 51 | if (max_pfn > MAX_DMA32_PFN) |
| 52 | no_iommu = 1; |
| 53 | #endif |
Konrad Rzeszutek Wilk | bbbe573 | 2010-02-09 14:30:55 -0500 | [diff] [blame] | 54 | return xen_swiotlb; |
| 55 | } |
| 56 | |
| 57 | void __init pci_xen_swiotlb_init(void) |
| 58 | { |
| 59 | if (xen_swiotlb) { |
Konrad Rzeszutek Wilk | b827760 | 2012-08-23 14:36:15 -0400 | [diff] [blame] | 60 | xen_swiotlb_init(1, true /* early */); |
Konrad Rzeszutek Wilk | bbbe573 | 2010-02-09 14:30:55 -0500 | [diff] [blame] | 61 | dma_ops = &xen_swiotlb_dma_ops; |
Konrad Rzeszutek Wilk | 74226b8 | 2010-08-19 13:34:58 -0400 | [diff] [blame] | 62 | |
Stefano Stabellini | 92c0fd1 | 2013-11-04 18:11:54 +0000 | [diff] [blame] | 63 | #ifdef CONFIG_PCI |
Konrad Rzeszutek Wilk | 74226b8 | 2010-08-19 13:34:58 -0400 | [diff] [blame] | 64 | /* Make sure ACS will be enabled */ |
| 65 | pci_request_acs(); |
Stefano Stabellini | 92c0fd1 | 2013-11-04 18:11:54 +0000 | [diff] [blame] | 66 | #endif |
Konrad Rzeszutek Wilk | bbbe573 | 2010-02-09 14:30:55 -0500 | [diff] [blame] | 67 | } |
| 68 | } |
Konrad Rzeszutek Wilk | b827760 | 2012-08-23 14:36:15 -0400 | [diff] [blame] | 69 | |
| 70 | int pci_xen_swiotlb_init_late(void) |
| 71 | { |
| 72 | int rc; |
| 73 | |
| 74 | if (xen_swiotlb) |
| 75 | return 0; |
| 76 | |
| 77 | rc = xen_swiotlb_init(1, false /* late */); |
| 78 | if (rc) |
| 79 | return rc; |
| 80 | |
| 81 | dma_ops = &xen_swiotlb_dma_ops; |
Stefano Stabellini | 92c0fd1 | 2013-11-04 18:11:54 +0000 | [diff] [blame] | 82 | #ifdef CONFIG_PCI |
Konrad Rzeszutek Wilk | b827760 | 2012-08-23 14:36:15 -0400 | [diff] [blame] | 83 | /* Make sure ACS will be enabled */ |
| 84 | pci_request_acs(); |
Stefano Stabellini | 92c0fd1 | 2013-11-04 18:11:54 +0000 | [diff] [blame] | 85 | #endif |
Konrad Rzeszutek Wilk | b827760 | 2012-08-23 14:36:15 -0400 | [diff] [blame] | 86 | |
| 87 | return 0; |
| 88 | } |
| 89 | EXPORT_SYMBOL_GPL(pci_xen_swiotlb_init_late); |
| 90 | |
Konrad Rzeszutek Wilk | 5cb3a26 | 2010-08-26 13:58:01 -0400 | [diff] [blame] | 91 | IOMMU_INIT_FINISH(pci_xen_swiotlb_detect, |
Konrad Rzeszutek Wilk | 6d7083e | 2012-08-13 11:00:08 -0400 | [diff] [blame] | 92 | NULL, |
Konrad Rzeszutek Wilk | 5cb3a26 | 2010-08-26 13:58:01 -0400 | [diff] [blame] | 93 | pci_xen_swiotlb_init, |
Konrad Rzeszutek Wilk | 6d7083e | 2012-08-13 11:00:08 -0400 | [diff] [blame] | 94 | NULL); |