All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] xen/pci: Don't build Xen pci code for ARM and ARM64
@ 2015-09-28 13:30 ` Julien Grall
  0 siblings, 0 replies; 23+ messages in thread
From: Julien Grall @ 2015-09-28 13:30 UTC (permalink / raw)
  To: linux-arm-kernel

The PCI support for Xen doesn't compile on ARM/ARM64 when
CONFIG_PCI_MMCONFIG=y:

drivers/xen/pci.c:31:25: fatal error: asm/pci_x86.h: No such file or
directory
 #include <asm/pci_x86.h>

Although, Xen is not currently involved in PCI management for ARM/ARM64.
There is plan to support it, but it would require some changes in Linux
side.

For now, introduce a new config options XEN_PCI which will be turned off
for ARM platform.

Reported-by: Robert Richter <robert.richter@caviumnetworks.com>
Signed-off-by: Julien Grall <julien.grall@citrix.com>

---
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: David Vrabel <david.vrabel@citrix.com>
---
 drivers/xen/Kconfig  | 6 +++++-
 drivers/xen/Makefile | 2 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/drivers/xen/Kconfig b/drivers/xen/Kconfig
index 73708ac..6bcc8b0 100644
--- a/drivers/xen/Kconfig
+++ b/drivers/xen/Kconfig
@@ -168,7 +168,7 @@ config XEN_TMEM
 
 config XEN_PCIDEV_BACKEND
 	tristate "Xen PCI-device backend driver"
-	depends on PCI && X86 && XEN
+	depends on XEN_PCI
 	depends on XEN_BACKEND
 	default m
 	help
@@ -189,6 +189,10 @@ config XEN_PCIDEV_BACKEND
 
 	  If in doubt, say m.
 
+config XEN_PCI
+	def_bool y
+	depends on PCI && !ARM && !ARM64
+
 config XEN_SCSI_BACKEND
 	tristate "XEN SCSI backend driver"
 	depends on XEN && XEN_BACKEND && TARGET_CORE
diff --git a/drivers/xen/Makefile b/drivers/xen/Makefile
index e293bc5..c9f23b7 100644
--- a/drivers/xen/Makefile
+++ b/drivers/xen/Makefile
@@ -11,7 +11,7 @@ CFLAGS_features.o			:= $(nostackp)
 
 CFLAGS_efi.o				+= -fshort-wchar
 
-dom0-$(CONFIG_PCI) += pci.o
+dom0-$(CONFIG_XEN_PCI) += pci.o
 dom0-$(CONFIG_USB_SUPPORT) += dbgp.o
 dom0-$(CONFIG_XEN_ACPI) += acpi.o $(xen-pad-y)
 xen-pad-$(CONFIG_X86) += xen-acpi-pad.o
-- 
2.1.4

^ permalink raw reply related	[flat|nested] 23+ messages in thread

end of thread, other threads:[~2015-09-28 14:24 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-28 13:30 [PATCH] xen/pci: Don't build Xen pci code for ARM and ARM64 Julien Grall
2015-09-28 13:30 ` Julien Grall
2015-09-28 13:48 ` Stefano Stabellini
2015-09-28 13:48 ` Stefano Stabellini
2015-09-28 13:48   ` Stefano Stabellini
2015-09-28 14:01   ` Julien Grall
2015-09-28 14:01   ` Julien Grall
2015-09-28 14:01     ` Julien Grall
2015-09-28 13:52 ` [Xen-devel] " David Vrabel
2015-09-28 13:52   ` David Vrabel
2015-09-28 13:59   ` Julien Grall
2015-09-28 13:59   ` [Xen-devel] " Julien Grall
2015-09-28 13:59     ` Julien Grall
2015-09-28 14:02     ` Boris Ostrovsky
2015-09-28 14:02       ` Boris Ostrovsky
2015-09-28 14:22       ` David Vrabel
2015-09-28 14:22       ` [Xen-devel] " David Vrabel
2015-09-28 14:22         ` David Vrabel
2015-09-28 14:23       ` Julien Grall
2015-09-28 14:23       ` [Xen-devel] " Julien Grall
2015-09-28 14:23         ` Julien Grall
2015-09-28 14:02     ` Boris Ostrovsky
2015-09-28 13:52 ` David Vrabel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.