2005-04-16 15:20:36 -07:00
|
|
|
#include <linux/pci.h>
|
|
|
|
|
#include <linux/module.h>
|
2008-02-25 09:46:41 +08:00
|
|
|
#include <linux/pci-aspm.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
#include "pci.h"
|
|
|
|
|
|
2014-02-01 15:38:29 +01:00
|
|
|
static void pci_free_resources(struct pci_dev *dev)
|
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
pci_cleanup_rom(dev);
|
|
|
|
|
for (i = 0; i < PCI_NUM_RESOURCES; i++) {
|
|
|
|
|
struct resource *res = dev->resource + i;
|
|
|
|
|
if (res->parent)
|
|
|
|
|
release_resource(res);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-12 10:16:36 -07:00
|
|
|
static void pci_stop_dev(struct pci_dev *dev)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2013-02-11 20:49:49 +01:00
|
|
|
pci_pme_active(dev, false);
|
|
|
|
|
|
2008-02-14 14:56:56 -08:00
|
|
|
if (dev->is_added) {
|
2005-04-28 00:25:49 -07:00
|
|
|
pci_proc_detach_device(dev);
|
|
|
|
|
pci_remove_sysfs_dev_files(dev);
|
2013-12-18 13:53:32 -07:00
|
|
|
device_release_driver(&dev->dev);
|
2008-02-14 14:56:56 -08:00
|
|
|
dev->is_added = 0;
|
2005-04-28 00:25:49 -07:00
|
|
|
}
|
2008-02-25 09:46:41 +08:00
|
|
|
|
|
|
|
|
if (dev->bus->self)
|
|
|
|
|
pcie_aspm_exit_link_state(dev);
|
2006-09-12 10:16:36 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void pci_destroy_dev(struct pci_dev *dev)
|
|
|
|
|
{
|
2014-01-14 12:04:51 -07:00
|
|
|
if (!dev->dev.kobj.parent)
|
|
|
|
|
return;
|
|
|
|
|
|
2013-12-18 13:53:32 -07:00
|
|
|
device_del(&dev->dev);
|
|
|
|
|
|
2014-02-01 15:38:29 +01:00
|
|
|
down_write(&pci_bus_sem);
|
|
|
|
|
list_del(&dev->bus_list);
|
|
|
|
|
up_write(&pci_bus_sem);
|
|
|
|
|
|
|
|
|
|
pci_free_resources(dev);
|
2013-01-21 13:20:46 -08:00
|
|
|
put_device(&dev->dev);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
|
2012-08-16 20:43:11 -06:00
|
|
|
void pci_remove_bus(struct pci_bus *bus)
|
2005-04-16 15:20:36 -07:00
|
|
|
{
|
2012-08-16 20:43:11 -06:00
|
|
|
pci_proc_detach_bus(bus);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2006-06-02 12:35:43 +08:00
|
|
|
down_write(&pci_bus_sem);
|
2012-08-16 20:43:11 -06:00
|
|
|
list_del(&bus->node);
|
|
|
|
|
pci_bus_release_busn_res(bus);
|
2006-06-02 12:35:43 +08:00
|
|
|
up_write(&pci_bus_sem);
|
2012-08-16 20:43:11 -06:00
|
|
|
pci_remove_legacy_files(bus);
|
2013-04-12 05:44:20 +00:00
|
|
|
pcibios_remove_bus(bus);
|
2012-08-16 20:43:11 -06:00
|
|
|
device_unregister(&bus->dev);
|
2005-04-16 15:20:36 -07:00
|
|
|
}
|
|
|
|
|
EXPORT_SYMBOL(pci_remove_bus);
|
|
|
|
|
|
2012-09-19 11:54:20 -07:00
|
|
|
static void pci_stop_bus_device(struct pci_dev *dev)
|
|
|
|
|
{
|
|
|
|
|
struct pci_bus *bus = dev->subordinate;
|
|
|
|
|
struct pci_dev *child, *tmp;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Stopping an SR-IOV PF device removes all the associated VFs,
|
|
|
|
|
* which will update the bus->devices list and confuse the
|
|
|
|
|
* iterator. Therefore, iterate in reverse so we remove the VFs
|
|
|
|
|
* first, then the PF.
|
|
|
|
|
*/
|
|
|
|
|
if (bus) {
|
|
|
|
|
list_for_each_entry_safe_reverse(child, tmp,
|
|
|
|
|
&bus->devices, bus_list)
|
|
|
|
|
pci_stop_bus_device(child);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pci_stop_dev(dev);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void pci_remove_bus_device(struct pci_dev *dev)
|
|
|
|
|
{
|
|
|
|
|
struct pci_bus *bus = dev->subordinate;
|
|
|
|
|
struct pci_dev *child, *tmp;
|
|
|
|
|
|
|
|
|
|
if (bus) {
|
|
|
|
|
list_for_each_entry_safe(child, tmp,
|
|
|
|
|
&bus->devices, bus_list)
|
|
|
|
|
pci_remove_bus_device(child);
|
|
|
|
|
|
|
|
|
|
pci_remove_bus(bus);
|
|
|
|
|
dev->subordinate = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pci_destroy_dev(dev);
|
|
|
|
|
}
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
/**
|
2012-02-25 13:54:20 -08:00
|
|
|
* pci_stop_and_remove_bus_device - remove a PCI device and any children
|
2005-04-16 15:20:36 -07:00
|
|
|
* @dev: the device to remove
|
|
|
|
|
*
|
|
|
|
|
* Remove a PCI device from the device lists, informing the drivers
|
|
|
|
|
* that the device has been removed. We also remove any subordinate
|
|
|
|
|
* buses and children in a depth-first manner.
|
|
|
|
|
*
|
|
|
|
|
* For each device we remove, delete the device structure from the
|
|
|
|
|
* device lists, remove the /proc entry, and notify userspace
|
|
|
|
|
* (/sbin/hotplug).
|
|
|
|
|
*/
|
2012-02-25 13:54:20 -08:00
|
|
|
void pci_stop_and_remove_bus_device(struct pci_dev *dev)
|
2006-09-12 10:16:36 -07:00
|
|
|
{
|
2012-09-19 11:54:20 -07:00
|
|
|
pci_stop_bus_device(dev);
|
|
|
|
|
pci_remove_bus_device(dev);
|
2006-09-12 10:16:36 -07:00
|
|
|
}
|
2012-02-25 13:54:20 -08:00
|
|
|
EXPORT_SYMBOL(pci_stop_and_remove_bus_device);
|
2012-10-30 14:31:38 -06:00
|
|
|
|
2014-01-10 15:22:18 +01:00
|
|
|
void pci_stop_and_remove_bus_device_locked(struct pci_dev *dev)
|
|
|
|
|
{
|
|
|
|
|
pci_lock_rescan_remove();
|
|
|
|
|
pci_stop_and_remove_bus_device(dev);
|
|
|
|
|
pci_unlock_rescan_remove();
|
|
|
|
|
}
|
|
|
|
|
EXPORT_SYMBOL_GPL(pci_stop_and_remove_bus_device_locked);
|
|
|
|
|
|
2012-10-30 14:31:38 -06:00
|
|
|
void pci_stop_root_bus(struct pci_bus *bus)
|
|
|
|
|
{
|
|
|
|
|
struct pci_dev *child, *tmp;
|
|
|
|
|
struct pci_host_bridge *host_bridge;
|
|
|
|
|
|
|
|
|
|
if (!pci_is_root_bus(bus))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
host_bridge = to_pci_host_bridge(bus->bridge);
|
|
|
|
|
list_for_each_entry_safe_reverse(child, tmp,
|
|
|
|
|
&bus->devices, bus_list)
|
|
|
|
|
pci_stop_bus_device(child);
|
|
|
|
|
|
|
|
|
|
/* stop the host bridge */
|
2013-11-30 14:40:27 -08:00
|
|
|
device_release_driver(&host_bridge->dev);
|
2012-10-30 14:31:38 -06:00
|
|
|
}
|
2015-04-08 11:21:33 -07:00
|
|
|
EXPORT_SYMBOL_GPL(pci_stop_root_bus);
|
2012-10-30 14:31:38 -06:00
|
|
|
|
|
|
|
|
void pci_remove_root_bus(struct pci_bus *bus)
|
|
|
|
|
{
|
|
|
|
|
struct pci_dev *child, *tmp;
|
|
|
|
|
struct pci_host_bridge *host_bridge;
|
|
|
|
|
|
|
|
|
|
if (!pci_is_root_bus(bus))
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
host_bridge = to_pci_host_bridge(bus->bridge);
|
|
|
|
|
list_for_each_entry_safe(child, tmp,
|
|
|
|
|
&bus->devices, bus_list)
|
|
|
|
|
pci_remove_bus_device(child);
|
|
|
|
|
pci_remove_bus(bus);
|
|
|
|
|
host_bridge->bus = NULL;
|
|
|
|
|
|
|
|
|
|
/* remove the host bridge */
|
2013-11-30 14:40:27 -08:00
|
|
|
device_unregister(&host_bridge->dev);
|
2012-10-30 14:31:38 -06:00
|
|
|
}
|
2015-04-08 11:21:33 -07:00
|
|
|
EXPORT_SYMBOL_GPL(pci_remove_root_bus);
|