linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [RFC/PATCH 2/4] Allow for non-Intel MSI implementations
@ 2006-08-18  8:13 Michael Ellerman
  2006-08-18 13:03 ` Segher Boessenkool
  0 siblings, 1 reply; 2+ messages in thread
From: Michael Ellerman @ 2006-08-18  8:13 UTC (permalink / raw)
  To: Paul Mackerras; +Cc: linuxppc-dev

From: Jake Moilanen <moilanen@austin.ibm.com>

This allows an architecture to provide its own MSI implementation
instead of msi.c and msi-apic.c.  We will need this on IBM System-p
machines where the hypervisor controls the assignment and setup of
MSIs.  A following patch will provide an MSI implementation for these
machines.

Signed-off-by: Jake Moilanen <moilanen@austin.ibm.com>
---

 drivers/pci/Makefile |    8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

Index: git/drivers/pci/Makefile
===================================================================
--- git.orig/drivers/pci/Makefile
+++ git/drivers/pci/Makefile
@@ -27,9 +27,11 @@ obj-$(CONFIG_PPC64) += setup-bus.o
 obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o
 obj-$(CONFIG_X86_VISWS) += setup-irq.o
 
-msiobj-y := msi.o msi-apic.o
-msiobj-$(CONFIG_IA64_GENERIC) += msi-altix.o
-msiobj-$(CONFIG_IA64_SGI_SN2) += msi-altix.o
+msiobj-$(CONFIG_X86) := msi.o msi-apic.o
+msiobj-$(CONFIG_IA64) := msi.o msi-apic.o
+msiobj-$(CONFIG_IA64_GENERIC) := msi-altix.o
+msiobj-$(CONFIG_IA64_SGI_SN2) := msi-altix.o
+
 obj-$(CONFIG_PCI_MSI) += $(msiobj-y)
 
 #

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

end of thread, other threads:[~2006-08-18 13:04 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-18  8:13 [RFC/PATCH 2/4] Allow for non-Intel MSI implementations Michael Ellerman
2006-08-18 13:03 ` Segher Boessenkool

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).