diff options
author | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2010-08-19 13:34:58 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2010-10-18 10:49:38 -0400 |
commit | 74226b8c8a0b10841129916191205095af928da5 (patch) | |
tree | 641bd6e96004d432806ad781ee090515e82b14f5 | |
parent | 956a9202cd1220397933a07beda9f96b3df1fa24 (diff) |
xen/pci: Request ACS when Xen-SWIOTLB is activated.
It used to done in the Xen startup code but that is not really
appropiate.
[v2: Update Kconfig with PCI requirement]
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
-rw-r--r-- | arch/x86/xen/pci-swiotlb-xen.c | 4 | ||||
-rw-r--r-- | drivers/xen/Kconfig | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/arch/x86/xen/pci-swiotlb-xen.c b/arch/x86/xen/pci-swiotlb-xen.c index a013ec9d0c54..be4d80a6fae9 100644 --- a/arch/x86/xen/pci-swiotlb-xen.c +++ b/arch/x86/xen/pci-swiotlb-xen.c | |||
@@ -1,6 +1,7 @@ | |||
1 | /* Glue code to lib/swiotlb-xen.c */ | 1 | /* Glue code to lib/swiotlb-xen.c */ |
2 | 2 | ||
3 | #include <linux/dma-mapping.h> | 3 | #include <linux/dma-mapping.h> |
4 | #include <linux/pci.h> | ||
4 | #include <xen/swiotlb-xen.h> | 5 | #include <xen/swiotlb-xen.h> |
5 | 6 | ||
6 | #include <asm/xen/hypervisor.h> | 7 | #include <asm/xen/hypervisor.h> |
@@ -54,5 +55,8 @@ void __init pci_xen_swiotlb_init(void) | |||
54 | if (xen_swiotlb) { | 55 | if (xen_swiotlb) { |
55 | xen_swiotlb_init(1); | 56 | xen_swiotlb_init(1); |
56 | dma_ops = &xen_swiotlb_dma_ops; | 57 | dma_ops = &xen_swiotlb_dma_ops; |
58 | |||
59 | /* Make sure ACS will be enabled */ | ||
60 | pci_request_acs(); | ||
57 | } | 61 | } |
58 | } | 62 | } |
diff --git a/drivers/xen/Kconfig b/drivers/xen/Kconfig index 60d71e9abe9f..f70a627080e7 100644 --- a/drivers/xen/Kconfig +++ b/drivers/xen/Kconfig | |||
@@ -74,6 +74,6 @@ config XEN_PLATFORM_PCI | |||
74 | 74 | ||
75 | config SWIOTLB_XEN | 75 | config SWIOTLB_XEN |
76 | def_bool y | 76 | def_bool y |
77 | depends on SWIOTLB | 77 | depends on PCI && SWIOTLB |
78 | 78 | ||
79 | endmenu | 79 | endmenu |