Commit 1193725f authored by Bjorn Helgaas's avatar Bjorn Helgaas

Merge branch 'pci/yinghai-assign-unassigned-v6' into next

* pci/yinghai-assign-unassigned-v6:
  PCI: Assign resources for hot-added host bridge more aggressively
  PCI: Move resource reallocation code to non-__init
  PCI: Delay enabling bridges until they're needed
  PCI: Assign resources on a per-bus basis
  PCI: Enable unassigned resource reallocation on per-bus basis
  PCI: Turn on reallocation for unassigned resources with host bridge offset
  PCI: Look for unassigned resources on per-bus basis
  PCI: Drop temporary variable in pci_assign_unassigned_resources()
parents 7d8c4a2c 39772038
...@@ -525,11 +525,6 @@ void pci_common_init_dev(struct device *parent, struct hw_pci *hw) ...@@ -525,11 +525,6 @@ void pci_common_init_dev(struct device *parent, struct hw_pci *hw)
* Assign resources. * Assign resources.
*/ */
pci_bus_assign_resources(bus); pci_bus_assign_resources(bus);
/*
* Enable bridges
*/
pci_enable_bridges(bus);
} }
/* /*
......
...@@ -319,7 +319,6 @@ static int __init mcf_pci_init(void) ...@@ -319,7 +319,6 @@ static int __init mcf_pci_init(void)
pci_fixup_irqs(pci_common_swizzle, mcf_pci_map_irq); pci_fixup_irqs(pci_common_swizzle, mcf_pci_map_irq);
pci_bus_size_bridges(rootbus); pci_bus_size_bridges(rootbus);
pci_bus_assign_resources(rootbus); pci_bus_assign_resources(rootbus);
pci_enable_bridges(rootbus);
return 0; return 0;
} }
......
...@@ -113,7 +113,6 @@ static void pcibios_scanbus(struct pci_controller *hose) ...@@ -113,7 +113,6 @@ static void pcibios_scanbus(struct pci_controller *hose)
if (!pci_has_flag(PCI_PROBE_ONLY)) { if (!pci_has_flag(PCI_PROBE_ONLY)) {
pci_bus_size_bridges(bus); pci_bus_size_bridges(bus);
pci_bus_assign_resources(bus); pci_bus_assign_resources(bus);
pci_enable_bridges(bus);
} }
} }
} }
......
...@@ -69,7 +69,6 @@ static void pcibios_scanbus(struct pci_channel *hose) ...@@ -69,7 +69,6 @@ static void pcibios_scanbus(struct pci_channel *hose)
pci_bus_size_bridges(bus); pci_bus_size_bridges(bus);
pci_bus_assign_resources(bus); pci_bus_assign_resources(bus);
pci_enable_bridges(bus);
} else { } else {
pci_free_resource_list(&resources); pci_free_resource_list(&resources);
} }
......
...@@ -526,10 +526,7 @@ static int acpi_pci_root_add(struct acpi_device *device, ...@@ -526,10 +526,7 @@ static int acpi_pci_root_add(struct acpi_device *device,
if (system_state != SYSTEM_BOOTING) { if (system_state != SYSTEM_BOOTING) {
pcibios_resource_survey_bus(root->bus); pcibios_resource_survey_bus(root->bus);
pci_assign_unassigned_bus_resources(root->bus); pci_assign_unassigned_root_bus_resources(root->bus);
/* need to after hot-added ioapic is registered */
pci_enable_bridges(root->bus);
} }
pci_bus_add_devices(root->bus); pci_bus_add_devices(root->bus);
......
...@@ -1590,7 +1590,6 @@ lba_driver_probe(struct parisc_device *dev) ...@@ -1590,7 +1590,6 @@ lba_driver_probe(struct parisc_device *dev)
lba_dump_res(&lba_dev->hba.lmmio_space, 2); lba_dump_res(&lba_dev->hba.lmmio_space, 2);
#endif #endif
} }
pci_enable_bridges(lba_bus);
/* /*
** Once PCI register ops has walked the bus, access to config ** Once PCI register ops has walked the bus, access to config
......
...@@ -216,24 +216,6 @@ void pci_bus_add_devices(const struct pci_bus *bus) ...@@ -216,24 +216,6 @@ void pci_bus_add_devices(const struct pci_bus *bus)
} }
} }
void pci_enable_bridges(struct pci_bus *bus)
{
struct pci_dev *dev;
int retval;
list_for_each_entry(dev, &bus->devices, bus_list) {
if (dev->subordinate) {
if (!pci_is_enabled(dev)) {
retval = pci_enable_device(dev);
if (retval)
dev_err(&dev->dev, "Error enabling bridge (%d), continuing\n", retval);
pci_set_master(dev);
}
pci_enable_bridges(dev->subordinate);
}
}
}
/** pci_walk_bus - walk devices on/under bus, calling callback. /** pci_walk_bus - walk devices on/under bus, calling callback.
* @top bus whose devices should be walked * @top bus whose devices should be walked
* @cb callback to be called for each device found * @cb callback to be called for each device found
...@@ -301,4 +283,3 @@ EXPORT_SYMBOL(pci_bus_put); ...@@ -301,4 +283,3 @@ EXPORT_SYMBOL(pci_bus_put);
EXPORT_SYMBOL(pci_bus_alloc_resource); EXPORT_SYMBOL(pci_bus_alloc_resource);
EXPORT_SYMBOL_GPL(pci_bus_add_device); EXPORT_SYMBOL_GPL(pci_bus_add_device);
EXPORT_SYMBOL(pci_bus_add_devices); EXPORT_SYMBOL(pci_bus_add_devices);
EXPORT_SYMBOL(pci_enable_bridges);
...@@ -723,7 +723,6 @@ static int __ref enable_device(struct acpiphp_slot *slot) ...@@ -723,7 +723,6 @@ static int __ref enable_device(struct acpiphp_slot *slot)
acpiphp_sanitize_bus(bus); acpiphp_sanitize_bus(bus);
acpiphp_set_hpp_values(bus); acpiphp_set_hpp_values(bus);
acpiphp_set_acpi_region(slot); acpiphp_set_acpi_region(slot);
pci_enable_bridges(bus);
list_for_each_entry(dev, &bus->devices, bus_list) { list_for_each_entry(dev, &bus->devices, bus_list) {
/* Assume that newly added devices are powered on already. */ /* Assume that newly added devices are powered on already. */
......
...@@ -1146,6 +1146,24 @@ int pci_reenable_device(struct pci_dev *dev) ...@@ -1146,6 +1146,24 @@ int pci_reenable_device(struct pci_dev *dev)
return 0; return 0;
} }
static void pci_enable_bridge(struct pci_dev *dev)
{
int retval;
if (!dev)
return;
pci_enable_bridge(dev->bus->self);
if (pci_is_enabled(dev))
return;
retval = pci_enable_device(dev);
if (retval)
dev_err(&dev->dev, "Error enabling bridge (%d), continuing\n",
retval);
pci_set_master(dev);
}
static int pci_enable_device_flags(struct pci_dev *dev, unsigned long flags) static int pci_enable_device_flags(struct pci_dev *dev, unsigned long flags)
{ {
int err; int err;
...@@ -1166,6 +1184,8 @@ static int pci_enable_device_flags(struct pci_dev *dev, unsigned long flags) ...@@ -1166,6 +1184,8 @@ static int pci_enable_device_flags(struct pci_dev *dev, unsigned long flags)
if (atomic_inc_return(&dev->enable_cnt) > 1) if (atomic_inc_return(&dev->enable_cnt) > 1)
return 0; /* already enabled */ return 0; /* already enabled */
pci_enable_bridge(dev->bus->self);
/* only skip sriov related */ /* only skip sriov related */
for (i = 0; i <= PCI_ROM_RESOURCE; i++) for (i = 0; i <= PCI_ROM_RESOURCE; i++)
if (dev->resource[i].flags & flags) if (dev->resource[i].flags & flags)
......
...@@ -1979,7 +1979,6 @@ unsigned int __ref pci_rescan_bus(struct pci_bus *bus) ...@@ -1979,7 +1979,6 @@ unsigned int __ref pci_rescan_bus(struct pci_bus *bus)
max = pci_scan_child_bus(bus); max = pci_scan_child_bus(bus);
pci_assign_unassigned_bus_resources(bus); pci_assign_unassigned_bus_resources(bus);
pci_enable_bridges(bus);
pci_bus_add_devices(bus); pci_bus_add_devices(bus);
return max; return max;
......
...@@ -1297,7 +1297,7 @@ static void pci_bus_dump_resources(struct pci_bus *bus) ...@@ -1297,7 +1297,7 @@ static void pci_bus_dump_resources(struct pci_bus *bus)
} }
} }
static int __init pci_bus_get_depth(struct pci_bus *bus) static int pci_bus_get_depth(struct pci_bus *bus)
{ {
int depth = 0; int depth = 0;
struct pci_bus *child_bus; struct pci_bus *child_bus;
...@@ -1312,21 +1312,6 @@ static int __init pci_bus_get_depth(struct pci_bus *bus) ...@@ -1312,21 +1312,6 @@ static int __init pci_bus_get_depth(struct pci_bus *bus)
return depth; return depth;
} }
static int __init pci_get_max_depth(void)
{
int depth = 0;
struct pci_bus *bus;
list_for_each_entry(bus, &pci_root_buses, node) {
int ret;
ret = pci_bus_get_depth(bus);
if (ret > depth)
depth = ret;
}
return depth;
}
/* /*
* -1: undefined, will auto detect later * -1: undefined, will auto detect later
...@@ -1343,7 +1328,7 @@ enum enable_type { ...@@ -1343,7 +1328,7 @@ enum enable_type {
auto_enabled, auto_enabled,
}; };
static enum enable_type pci_realloc_enable __initdata = undefined; static enum enable_type pci_realloc_enable = undefined;
void __init pci_realloc_get_opt(char *str) void __init pci_realloc_get_opt(char *str)
{ {
if (!strncmp(str, "off", 3)) if (!strncmp(str, "off", 3))
...@@ -1351,45 +1336,64 @@ void __init pci_realloc_get_opt(char *str) ...@@ -1351,45 +1336,64 @@ void __init pci_realloc_get_opt(char *str)
else if (!strncmp(str, "on", 2)) else if (!strncmp(str, "on", 2))
pci_realloc_enable = user_enabled; pci_realloc_enable = user_enabled;
} }
static bool __init pci_realloc_enabled(void) static bool pci_realloc_enabled(enum enable_type enable)
{ {
return pci_realloc_enable >= user_enabled; return enable >= user_enabled;
} }
static void __init pci_realloc_detect(void)
{
#if defined(CONFIG_PCI_IOV) && defined(CONFIG_PCI_REALLOC_ENABLE_AUTO) #if defined(CONFIG_PCI_IOV) && defined(CONFIG_PCI_REALLOC_ENABLE_AUTO)
struct pci_dev *dev = NULL; static int iov_resources_unassigned(struct pci_dev *dev, void *data)
{
if (pci_realloc_enable != undefined) int i;
return; bool *unassigned = data;
for_each_pci_dev(dev) {
int i;
for (i = PCI_IOV_RESOURCES; i <= PCI_IOV_RESOURCE_END; i++) { for (i = PCI_IOV_RESOURCES; i <= PCI_IOV_RESOURCE_END; i++) {
struct resource *r = &dev->resource[i]; struct resource *r = &dev->resource[i];
struct pci_bus_region region;
/* Not assigned, or rejected by kernel ? */ /* Not assigned or rejected by kernel? */
if (r->flags && !r->start) { if (!r->flags)
pci_realloc_enable = auto_enabled; continue;
return; pcibios_resource_to_bus(dev, &region, r);
} if (!region.start) {
*unassigned = true;
return 1; /* return early from pci_walk_bus() */
} }
} }
#endif
return 0;
}
static enum enable_type pci_realloc_detect(struct pci_bus *bus,
enum enable_type enable_local)
{
bool unassigned = false;
if (enable_local != undefined)
return enable_local;
pci_walk_bus(bus, iov_resources_unassigned, &unassigned);
if (unassigned)
return auto_enabled;
return enable_local;
}
#else
static enum enable_type pci_realloc_detect(struct pci_bus *bus,
enum enable_type enable_local)
{
return enable_local;
} }
#endif
/* /*
* first try will not touch pci bridge res * first try will not touch pci bridge res
* second and later try will clear small leaf bridge res * second and later try will clear small leaf bridge res
* will stop till to the max deepth if can not find good one * will stop till to the max deepth if can not find good one
*/ */
void __init void pci_assign_unassigned_root_bus_resources(struct pci_bus *bus)
pci_assign_unassigned_resources(void)
{ {
struct pci_bus *bus;
LIST_HEAD(realloc_head); /* list of resources that LIST_HEAD(realloc_head); /* list of resources that
want additional resources */ want additional resources */
struct list_head *add_list = NULL; struct list_head *add_list = NULL;
...@@ -1400,15 +1404,17 @@ pci_assign_unassigned_resources(void) ...@@ -1400,15 +1404,17 @@ pci_assign_unassigned_resources(void)
unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM | unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM |
IORESOURCE_PREFETCH; IORESOURCE_PREFETCH;
int pci_try_num = 1; int pci_try_num = 1;
enum enable_type enable_local;
/* don't realloc if asked to do so */ /* don't realloc if asked to do so */
pci_realloc_detect(); enable_local = pci_realloc_detect(bus, pci_realloc_enable);
if (pci_realloc_enabled()) { if (pci_realloc_enabled(enable_local)) {
int max_depth = pci_get_max_depth(); int max_depth = pci_bus_get_depth(bus);
pci_try_num = max_depth + 1; pci_try_num = max_depth + 1;
printk(KERN_DEBUG "PCI: max bus depth: %d pci_try_num: %d\n", dev_printk(KERN_DEBUG, &bus->dev,
max_depth, pci_try_num); "max bus depth: %d pci_try_num: %d\n",
max_depth, pci_try_num);
} }
again: again:
...@@ -1420,32 +1426,30 @@ pci_assign_unassigned_resources(void) ...@@ -1420,32 +1426,30 @@ pci_assign_unassigned_resources(void)
add_list = &realloc_head; add_list = &realloc_head;
/* Depth first, calculate sizes and alignments of all /* Depth first, calculate sizes and alignments of all
subordinate buses. */ subordinate buses. */
list_for_each_entry(bus, &pci_root_buses, node) __pci_bus_size_bridges(bus, add_list);
__pci_bus_size_bridges(bus, add_list);
/* Depth last, allocate resources and update the hardware. */ /* Depth last, allocate resources and update the hardware. */
list_for_each_entry(bus, &pci_root_buses, node) __pci_bus_assign_resources(bus, add_list, &fail_head);
__pci_bus_assign_resources(bus, add_list, &fail_head);
if (add_list) if (add_list)
BUG_ON(!list_empty(add_list)); BUG_ON(!list_empty(add_list));
tried_times++; tried_times++;
/* any device complain? */ /* any device complain? */
if (list_empty(&fail_head)) if (list_empty(&fail_head))
goto enable_and_dump; goto dump;
if (tried_times >= pci_try_num) { if (tried_times >= pci_try_num) {
if (pci_realloc_enable == undefined) if (enable_local == undefined)
printk(KERN_INFO "Some PCI device resources are unassigned, try booting with pci=realloc\n"); dev_info(&bus->dev, "Some PCI device resources are unassigned, try booting with pci=realloc\n");
else if (pci_realloc_enable == auto_enabled) else if (enable_local == auto_enabled)
printk(KERN_INFO "Automatically enabled pci realloc, if you have problem, try booting with pci=realloc=off\n"); dev_info(&bus->dev, "Automatically enabled pci realloc, if you have problem, try booting with pci=realloc=off\n");
free_list(&fail_head); free_list(&fail_head);
goto enable_and_dump; goto dump;
} }
printk(KERN_DEBUG "PCI: No. %d try to assign unassigned res\n", dev_printk(KERN_DEBUG, &bus->dev,
tried_times + 1); "No. %d try to assign unassigned res\n", tried_times + 1);
/* third times and later will not check if it is leaf */ /* third times and later will not check if it is leaf */
if ((tried_times + 1) > 2) if ((tried_times + 1) > 2)
...@@ -1455,12 +1459,11 @@ pci_assign_unassigned_resources(void) ...@@ -1455,12 +1459,11 @@ pci_assign_unassigned_resources(void)
* Try to release leaf bridge's resources that doesn't fit resource of * Try to release leaf bridge's resources that doesn't fit resource of
* child device under that bridge * child device under that bridge
*/ */
list_for_each_entry(fail_res, &fail_head, list) { list_for_each_entry(fail_res, &fail_head, list)
bus = fail_res->dev->bus; pci_bus_release_bridge_resources(fail_res->dev->bus,
pci_bus_release_bridge_resources(bus,
fail_res->flags & type_mask, fail_res->flags & type_mask,
rel_type); rel_type);
}
/* restore size and flags */ /* restore size and flags */
list_for_each_entry(fail_res, &fail_head, list) { list_for_each_entry(fail_res, &fail_head, list) {
struct resource *res = fail_res->res; struct resource *res = fail_res->res;
...@@ -1475,14 +1478,17 @@ pci_assign_unassigned_resources(void) ...@@ -1475,14 +1478,17 @@ pci_assign_unassigned_resources(void)
goto again; goto again;
enable_and_dump: dump:
/* Depth last, update the hardware. */
list_for_each_entry(bus, &pci_root_buses, node)
pci_enable_bridges(bus);
/* dump the resource on buses */ /* dump the resource on buses */
list_for_each_entry(bus, &pci_root_buses, node) pci_bus_dump_resources(bus);
pci_bus_dump_resources(bus); }
void __init pci_assign_unassigned_resources(void)
{
struct pci_bus *root_bus;
list_for_each_entry(root_bus, &pci_root_buses, node)
pci_assign_unassigned_root_bus_resources(root_bus);
} }
void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge) void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge)
...@@ -1519,13 +1525,11 @@ void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge) ...@@ -1519,13 +1525,11 @@ void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge)
* Try to release leaf bridge's resources that doesn't fit resource of * Try to release leaf bridge's resources that doesn't fit resource of
* child device under that bridge * child device under that bridge
*/ */
list_for_each_entry(fail_res, &fail_head, list) { list_for_each_entry(fail_res, &fail_head, list)
struct pci_bus *bus = fail_res->dev->bus; pci_bus_release_bridge_resources(fail_res->dev->bus,
unsigned long flags = fail_res->flags; fail_res->flags & type_mask,
pci_bus_release_bridge_resources(bus, flags & type_mask,
whole_subtree); whole_subtree);
}
/* restore size and flags */ /* restore size and flags */
list_for_each_entry(fail_res, &fail_head, list) { list_for_each_entry(fail_res, &fail_head, list) {
struct resource *res = fail_res->res; struct resource *res = fail_res->res;
...@@ -1545,7 +1549,6 @@ void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge) ...@@ -1545,7 +1549,6 @@ void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge)
if (retval) if (retval)
dev_err(&bridge->dev, "Error reenabling bridge (%d)\n", retval); dev_err(&bridge->dev, "Error reenabling bridge (%d)\n", retval);
pci_set_master(bridge); pci_set_master(bridge);
pci_enable_bridges(parent);
} }
EXPORT_SYMBOL_GPL(pci_assign_unassigned_bridge_resources); EXPORT_SYMBOL_GPL(pci_assign_unassigned_bridge_resources);
......
...@@ -91,7 +91,6 @@ int __ref cb_alloc(struct pcmcia_socket *s) ...@@ -91,7 +91,6 @@ int __ref cb_alloc(struct pcmcia_socket *s)
if (s->tune_bridge) if (s->tune_bridge)
s->tune_bridge(s, bus); s->tune_bridge(s, bus);
pci_enable_bridges(bus);
pci_bus_add_devices(bus); pci_bus_add_devices(bus);
return 0; return 0;
......
...@@ -1009,6 +1009,7 @@ int pci_claim_resource(struct pci_dev *, int); ...@@ -1009,6 +1009,7 @@ int pci_claim_resource(struct pci_dev *, int);
void pci_assign_unassigned_resources(void); void pci_assign_unassigned_resources(void);
void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge); void pci_assign_unassigned_bridge_resources(struct pci_dev *bridge);
void pci_assign_unassigned_bus_resources(struct pci_bus *bus); void pci_assign_unassigned_bus_resources(struct pci_bus *bus);
void pci_assign_unassigned_root_bus_resources(struct pci_bus *bus);
void pdev_enable_device(struct pci_dev *); void pdev_enable_device(struct pci_dev *);
int pci_enable_resources(struct pci_dev *, int mask); int pci_enable_resources(struct pci_dev *, int mask);
void pci_fixup_irqs(u8 (*)(struct pci_dev *, u8 *), void pci_fixup_irqs(u8 (*)(struct pci_dev *, u8 *),
...@@ -1049,7 +1050,6 @@ int __must_check pci_bus_alloc_resource(struct pci_bus *bus, ...@@ -1049,7 +1050,6 @@ int __must_check pci_bus_alloc_resource(struct pci_bus *bus,
resource_size_t, resource_size_t,
resource_size_t), resource_size_t),
void *alignf_data); void *alignf_data);
void pci_enable_bridges(struct pci_bus *bus);
/* Proper probing supporting hot-pluggable devices */ /* Proper probing supporting hot-pluggable devices */
int __must_check __pci_register_driver(struct pci_driver *, struct module *, int __must_check __pci_register_driver(struct pci_driver *, struct module *,
......
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