[PATCH] [resend] create pcibios_remove_root_bus()
John Rose
johnrose at austin.ibm.com
Wed Sep 29 06:29:17 EST 2004
Hi Paul-
Forgot the signed-off-by, sorry. :)
Here's an updated version of this patch after Ben's changes. Please
apply if there are no objections.
The following patch creates pcibios_remove_root_bus(), which performs
the ppc64-specific actions for removal of PCI Host Bridges. This call
is invoked by the RPA DLPAR driver upon PHB removal.
Thanks for your help-
John
Signed-off-by: John Rose <johnrose at austin.ibm.com>
diff -Nru a/arch/ppc64/kernel/pSeries_pci.c b/arch/ppc64/kernel/pSeries_pci.c
--- a/arch/ppc64/kernel/pSeries_pci.c Tue Sep 28 11:10:41 2004
+++ b/arch/ppc64/kernel/pSeries_pci.c Tue Sep 28 11:10:41 2004
@@ -472,6 +472,54 @@
remap_bus_range(hose->bus);
}
+
+/* RPA-specific bits for removing PHBs */
+int pcibios_remove_root_bus(struct pci_controller *phb)
+{
+ struct pci_bus *b = phb->bus;
+ struct resource *res;
+ int rc, i;
+
+ res = b->resource[0];
+ if (!res->flags) {
+ printk(KERN_ERR "%s: no IO resource for PHB %s\n", __FUNCTION__,
+ b->name);
+ return 1;
+ }
+
+ rc = unmap_bus_range(b);
+ if (rc) {
+ printk(KERN_ERR "%s: failed to unmap IO on bus %s\n",
+ __FUNCTION__, b->name);
+ return 1;
+ }
+
+ if (release_resource(res)) {
+ printk(KERN_ERR "%s: failed to release IO on bus %s\n",
+ __FUNCTION__, b->name);
+ return 1;
+ }
+
+ for (i = 1; i < 3; ++i) {
+ res = b->resource[i];
+ if (!res->flags && i == 0) {
+ printk(KERN_ERR "%s: no MEM resource for PHB %s\n",
+ __FUNCTION__, b->name);
+ return 1;
+ }
+ if (res->flags && release_resource(res)) {
+ printk(KERN_ERR
+ "%s: failed to release IO %d on bus %s\n",
+ __FUNCTION__, i, b->name);
+ return 1;
+ }
+ }
+
+ list_del(&phb->list_node);
+ return 0;
+}
+EXPORT_SYMBOL(pcibios_remove_root_bus);
+
static void __init pSeries_request_regions(void)
{
struct device_node *i8042;
diff -Nru a/include/asm-ppc64/pci-bridge.h b/include/asm-ppc64/pci-bridge.h
--- a/include/asm-ppc64/pci-bridge.h Tue Sep 28 11:10:41 2004
+++ b/include/asm-ppc64/pci-bridge.h Tue Sep 28 11:10:41 2004
@@ -90,6 +90,8 @@
extern void pci_process_bridge_OF_ranges(struct pci_controller *hose,
struct device_node *dev, int primary);
+extern int pcibios_remove_root_bus(struct pci_controller *phb);
+
/* Use this macro after the PCI bus walk for max performance when it
* is known that sysdata is correct.
*/
More information about the Linuxppc64-dev
mailing list