Commit 940903c5 authored by John Rose's avatar John Rose Committed by Greg Kroah-Hartman

[PATCH] PCI Hotplug: rpaphp: Export slot enable

This patch exports rpaphp_config_pci_adapter() for use by the rpadlpar
module.  It also changes this function by removing any dependencies on
struct slot.  The patch also changes the RPA DLPAR-add path to enable
newly-added slots in a separate step from that which registers them as
hotplug slots.
Signed-off-by: default avatarJohn Rose <johnrose@austin.ibm.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 0945cd5f
...@@ -209,9 +209,10 @@ static struct pci_dev *dlpar_pci_add_bus(struct device_node *dn) ...@@ -209,9 +209,10 @@ static struct pci_dev *dlpar_pci_add_bus(struct device_node *dn)
return dev; return dev;
} }
static inline int dlpar_add_pci_slot(char *drc_name, struct device_node *dn) static int dlpar_add_pci_slot(char *drc_name, struct device_node *dn)
{ {
struct pci_dev *dev; struct pci_dev *dev;
int rc;
/* Add pci bus */ /* Add pci bus */
dev = dlpar_pci_add_bus(dn); dev = dlpar_pci_add_bus(dn);
...@@ -221,6 +222,15 @@ static inline int dlpar_add_pci_slot(char *drc_name, struct device_node *dn) ...@@ -221,6 +222,15 @@ static inline int dlpar_add_pci_slot(char *drc_name, struct device_node *dn)
return -EIO; return -EIO;
} }
if (dn->child) {
rc = rpaphp_config_pci_adapter(dev->subordinate);
if (rc < 0) {
printk(KERN_ERR "%s: unable to enable slot %s\n",
__FUNCTION__, drc_name);
return -EIO;
}
}
/* Add hotplug slot */ /* Add hotplug slot */
if (rpaphp_add_slot(dn)) { if (rpaphp_add_slot(dn)) {
printk(KERN_ERR "%s: unable to add hotplug slot %s\n", printk(KERN_ERR "%s: unable to add hotplug slot %s\n",
......
...@@ -98,6 +98,7 @@ extern int rpaphp_enable_pci_slot(struct slot *slot); ...@@ -98,6 +98,7 @@ extern int rpaphp_enable_pci_slot(struct slot *slot);
extern int register_pci_slot(struct slot *slot); extern int register_pci_slot(struct slot *slot);
extern int rpaphp_unconfig_pci_adapter(struct slot *slot); extern int rpaphp_unconfig_pci_adapter(struct slot *slot);
extern int rpaphp_get_pci_adapter_status(struct slot *slot, int is_init, u8 * value); extern int rpaphp_get_pci_adapter_status(struct slot *slot, int is_init, u8 * value);
extern int rpaphp_config_pci_adapter(struct pci_bus *bus);
/* rpaphp_core.c */ /* rpaphp_core.c */
extern int rpaphp_add_slot(struct device_node *dn); extern int rpaphp_add_slot(struct device_node *dn);
......
...@@ -219,14 +219,15 @@ static int rpaphp_pci_config_bridge(struct pci_dev *dev) ...@@ -219,14 +219,15 @@ static int rpaphp_pci_config_bridge(struct pci_dev *dev)
given slot->dn and return the the first pci_dev. given slot->dn and return the the first pci_dev.
*****************************************************************************/ *****************************************************************************/
static struct pci_dev * static struct pci_dev *
rpaphp_pci_config_slot(struct device_node *dn, struct pci_bus *bus) rpaphp_pci_config_slot(struct pci_bus *bus)
{ {
struct device_node *dn = pci_bus_to_OF_node(bus);
struct pci_dev *dev = NULL; struct pci_dev *dev = NULL;
int slotno; int slotno;
int num; int num;
dbg("Enter %s: dn=%s bus=%s\n", __FUNCTION__, dn->full_name, bus->name); dbg("Enter %s: dn=%s bus=%s\n", __FUNCTION__, dn->full_name, bus->name);
if (!dn->child) if (!dn || !dn->child)
return NULL; return NULL;
slotno = PCI_SLOT(dn->child->devfn); slotno = PCI_SLOT(dn->child->devfn);
...@@ -260,35 +261,44 @@ static void enable_eeh(struct device_node *dn) ...@@ -260,35 +261,44 @@ static void enable_eeh(struct device_node *dn)
} }
static void print_slot_pci_funcs(struct slot *slot) static void print_slot_pci_funcs(struct pci_bus *bus)
{ {
struct device_node *dn;
struct pci_dev *dev; struct pci_dev *dev;
dbg("%s: pci_devs of slot[%s]\n", __FUNCTION__, slot->name); dn = pci_bus_to_OF_node(bus);
list_for_each_entry (dev, slot->pci_devs, bus_list) if (!dn)
return;
dbg("%s: pci_devs of slot[%s]\n", __FUNCTION__, dn->full_name);
list_for_each_entry (dev, &bus->devices, bus_list)
dbg("\t%s\n", pci_name(dev)); dbg("\t%s\n", pci_name(dev));
return; return;
} }
static int rpaphp_config_pci_adapter(struct slot *slot) int rpaphp_config_pci_adapter(struct pci_bus *bus)
{ {
struct device_node *dn = pci_bus_to_OF_node(bus);
struct pci_dev *dev; struct pci_dev *dev;
int rc = -ENODEV; int rc = -ENODEV;
dbg("Entry %s: slot[%s]\n", __FUNCTION__, slot->name); dbg("Entry %s: slot[%s]\n", __FUNCTION__, dn->full_name);
if (!dn)
goto exit;
enable_eeh(slot->dn); enable_eeh(dn);
dev = rpaphp_pci_config_slot(slot->dn, slot->bus); dev = rpaphp_pci_config_slot(bus);
if (!dev) { if (!dev) {
err("%s: can't find any devices.\n", __FUNCTION__); err("%s: can't find any devices.\n", __FUNCTION__);
goto exit; goto exit;
} }
print_slot_pci_funcs(slot); print_slot_pci_funcs(bus);
rc = 0; rc = 0;
exit: exit:
dbg("Exit %s: rc=%d\n", __FUNCTION__, rc); dbg("Exit %s: rc=%d\n", __FUNCTION__, rc);
return rc; return rc;
} }
EXPORT_SYMBOL_GPL(rpaphp_config_pci_adapter);
static void rpaphp_eeh_remove_bus_device(struct pci_dev *dev) static void rpaphp_eeh_remove_bus_device(struct pci_dev *dev)
{ {
...@@ -384,7 +394,7 @@ static int setup_pci_slot(struct slot *slot) ...@@ -384,7 +394,7 @@ static int setup_pci_slot(struct slot *slot)
if (slot->hotplug_slot->info->adapter_status == NOT_CONFIGURED) { if (slot->hotplug_slot->info->adapter_status == NOT_CONFIGURED) {
dbg("%s CONFIGURING pci adapter in slot[%s]\n", dbg("%s CONFIGURING pci adapter in slot[%s]\n",
__FUNCTION__, slot->name); __FUNCTION__, slot->name);
if (rpaphp_config_pci_adapter(slot)) { if (rpaphp_config_pci_adapter(slot->bus)) {
err("%s: CONFIG pci adapter failed\n", __FUNCTION__); err("%s: CONFIG pci adapter failed\n", __FUNCTION__);
goto exit_rc; goto exit_rc;
} }
...@@ -394,7 +404,7 @@ static int setup_pci_slot(struct slot *slot) ...@@ -394,7 +404,7 @@ static int setup_pci_slot(struct slot *slot)
__FUNCTION__, slot->name); __FUNCTION__, slot->name);
goto exit_rc; goto exit_rc;
} }
print_slot_pci_funcs(slot); print_slot_pci_funcs(slot->bus);
if (!list_empty(slot->pci_devs)) { if (!list_empty(slot->pci_devs)) {
slot->state = CONFIGURED; slot->state = CONFIGURED;
} else { } else {
...@@ -437,7 +447,7 @@ int rpaphp_enable_pci_slot(struct slot *slot) ...@@ -437,7 +447,7 @@ int rpaphp_enable_pci_slot(struct slot *slot)
/* if slot is not empty, enable the adapter */ /* if slot is not empty, enable the adapter */
if (state == PRESENT) { if (state == PRESENT) {
dbg("%s : slot[%s] is occupied.\n", __FUNCTION__, slot->name); dbg("%s : slot[%s] is occupied.\n", __FUNCTION__, slot->name);
retval = rpaphp_config_pci_adapter(slot); retval = rpaphp_config_pci_adapter(slot->bus);
if (!retval) { if (!retval) {
slot->state = CONFIGURED; slot->state = CONFIGURED;
dbg("%s: PCI devices in slot[%s] has been configured\n", dbg("%s: PCI devices in slot[%s] has been configured\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment