diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2013-08-09 16:27:12 -0400 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2013-08-12 11:27:12 -0400 |
commit | 9d981ea5d43af79e1d7942d3d28e0f609db8b5d4 (patch) | |
tree | 1864c01f28105c6cbf49d0aabcf9e308a7c12072 | |
parent | 0d5a6db3aa46faafd0212650bfd709d51240d9da (diff) |
ARM: pci: add ->add_bus() and ->remove_bus() hooks to hw_pci
Some PCI drivers may need to adjust the pci_bus structure after it has
been allocated by the Linux PCI core. The PCI core allows
architectures to implement the pcibios_add_bus() and
pcibios_remove_bus() for this purpose. This commit therefore extends
the hw_pci and pci_sys_data structures of the ARM PCI core to allow
PCI drivers to register ->add_bus() and ->remove_bus() in hw_pci,
which will get called when a bus is added or removed from the system.
This will be used for example by the Marvell PCIe driver to connect a
particular PCI bus with its corresponding MSI chip to handle Message
Signaled Interrupts.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Reviewed-by: Thierry Reding <thierry.reding@gmail.com>
Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>
Tested-by: Daniel Price <daniel.price@gmail.com>
Tested-by: Thierry Reding <thierry.reding@gmail.com>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
-rw-r--r-- | arch/arm/include/asm/mach/pci.h | 4 | ||||
-rw-r--r-- | arch/arm/kernel/bios32.c | 16 |
2 files changed, 20 insertions, 0 deletions
diff --git a/arch/arm/include/asm/mach/pci.h b/arch/arm/include/asm/mach/pci.h index a1c90d7feb0e..454d642a4070 100644 --- a/arch/arm/include/asm/mach/pci.h +++ b/arch/arm/include/asm/mach/pci.h | |||
@@ -36,6 +36,8 @@ struct hw_pci { | |||
36 | resource_size_t start, | 36 | resource_size_t start, |
37 | resource_size_t size, | 37 | resource_size_t size, |
38 | resource_size_t align); | 38 | resource_size_t align); |
39 | void (*add_bus)(struct pci_bus *bus); | ||
40 | void (*remove_bus)(struct pci_bus *bus); | ||
39 | }; | 41 | }; |
40 | 42 | ||
41 | /* | 43 | /* |
@@ -63,6 +65,8 @@ struct pci_sys_data { | |||
63 | resource_size_t start, | 65 | resource_size_t start, |
64 | resource_size_t size, | 66 | resource_size_t size, |
65 | resource_size_t align); | 67 | resource_size_t align); |
68 | void (*add_bus)(struct pci_bus *bus); | ||
69 | void (*remove_bus)(struct pci_bus *bus); | ||
66 | void *private_data; /* platform controller private data */ | 70 | void *private_data; /* platform controller private data */ |
67 | }; | 71 | }; |
68 | 72 | ||
diff --git a/arch/arm/kernel/bios32.c b/arch/arm/kernel/bios32.c index 261fcc826169..1ec9c8701c26 100644 --- a/arch/arm/kernel/bios32.c +++ b/arch/arm/kernel/bios32.c | |||
@@ -363,6 +363,20 @@ void pcibios_fixup_bus(struct pci_bus *bus) | |||
363 | } | 363 | } |
364 | EXPORT_SYMBOL(pcibios_fixup_bus); | 364 | EXPORT_SYMBOL(pcibios_fixup_bus); |
365 | 365 | ||
366 | void pcibios_add_bus(struct pci_bus *bus) | ||
367 | { | ||
368 | struct pci_sys_data *sys = bus->sysdata; | ||
369 | if (sys->add_bus) | ||
370 | sys->add_bus(bus); | ||
371 | } | ||
372 | |||
373 | void pcibios_remove_bus(struct pci_bus *bus) | ||
374 | { | ||
375 | struct pci_sys_data *sys = bus->sysdata; | ||
376 | if (sys->remove_bus) | ||
377 | sys->remove_bus(bus); | ||
378 | } | ||
379 | |||
366 | /* | 380 | /* |
367 | * Swizzle the device pin each time we cross a bridge. If a platform does | 381 | * Swizzle the device pin each time we cross a bridge. If a platform does |
368 | * not provide a swizzle function, we perform the standard PCI swizzling. | 382 | * not provide a swizzle function, we perform the standard PCI swizzling. |
@@ -464,6 +478,8 @@ static void pcibios_init_hw(struct device *parent, struct hw_pci *hw, | |||
464 | sys->swizzle = hw->swizzle; | 478 | sys->swizzle = hw->swizzle; |
465 | sys->map_irq = hw->map_irq; | 479 | sys->map_irq = hw->map_irq; |
466 | sys->align_resource = hw->align_resource; | 480 | sys->align_resource = hw->align_resource; |
481 | sys->add_bus = hw->add_bus; | ||
482 | sys->remove_bus = hw->remove_bus; | ||
467 | INIT_LIST_HEAD(&sys->resources); | 483 | INIT_LIST_HEAD(&sys->resources); |
468 | 484 | ||
469 | if (hw->private_data) | 485 | if (hw->private_data) |