]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/pci/remove.c
PCI/ASPM: Fix link_state teardown on device removal
[mirror_ubuntu-bionic-kernel.git] / drivers / pci / remove.c
CommitLineData
1da177e4
LT
1#include <linux/pci.h>
2#include <linux/module.h>
7d715a6c 3#include <linux/pci-aspm.h>
1da177e4
LT
4#include "pci.h"
5
04480094
RW
6static void pci_free_resources(struct pci_dev *dev)
7{
8 int i;
9
04480094
RW
10 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
11 struct resource *res = dev->resource + i;
12 if (res->parent)
13 release_resource(res);
14 }
15}
16
24f8aa9b 17static void pci_stop_dev(struct pci_dev *dev)
1da177e4 18{
249bfb83
RW
19 pci_pme_active(dev, false);
20
8a1bc901 21 if (dev->is_added) {
16b6c8bb 22 device_release_driver(&dev->dev);
091ca9f0
RS
23 pci_proc_detach_device(dev);
24 pci_remove_sysfs_dev_files(dev);
8a1bc901 25 dev->is_added = 0;
091ca9f0 26 }
24f8aa9b
ST
27}
28
29static void pci_destroy_dev(struct pci_dev *dev)
30{
8a4c5c32
RW
31 if (!dev->dev.kobj.parent)
32 return;
33
c4a0a5d9
RW
34 device_del(&dev->dev);
35
04480094
RW
36 down_write(&pci_bus_sem);
37 list_del(&dev->bus_list);
38 up_write(&pci_bus_sem);
39
9ee7f2c6 40 pcie_aspm_exit_link_state(dev);
1ed276a7 41 pci_bridge_d3_update(dev);
04480094 42 pci_free_resources(dev);
e723f0b4 43 put_device(&dev->dev);
1da177e4
LT
44}
45
d563e2cc 46void pci_remove_bus(struct pci_bus *bus)
1da177e4 47{
d563e2cc 48 pci_proc_detach_bus(bus);
1da177e4 49
d71374da 50 down_write(&pci_bus_sem);
d563e2cc
BH
51 list_del(&bus->node);
52 pci_bus_release_busn_res(bus);
d71374da 53 up_write(&pci_bus_sem);
d563e2cc 54 pci_remove_legacy_files(bus);
057bd2e0
TR
55
56 if (bus->ops->remove_bus)
57 bus->ops->remove_bus(bus);
58
10a95747 59 pcibios_remove_bus(bus);
d563e2cc 60 device_unregister(&bus->dev);
1da177e4
LT
61}
62EXPORT_SYMBOL(pci_remove_bus);
63
3891b6ac 64static void pci_stop_bus_device(struct pci_dev *dev)
24f8aa9b 65{
2ed168ee
BH
66 struct pci_bus *bus = dev->subordinate;
67 struct pci_dev *child, *tmp;
68
69 /*
3891b6ac 70 * Stopping an SR-IOV PF device removes all the associated VFs,
2ed168ee
BH
71 * which will update the bus->devices list and confuse the
72 * iterator. Therefore, iterate in reverse so we remove the VFs
73 * first, then the PF.
74 */
282e1d65 75 if (bus) {
2ed168ee
BH
76 list_for_each_entry_safe_reverse(child, tmp,
77 &bus->devices, bus_list)
3891b6ac
YL
78 pci_stop_bus_device(child);
79 }
80
81 pci_stop_dev(dev);
82}
83
84static void pci_remove_bus_device(struct pci_dev *dev)
85{
86 struct pci_bus *bus = dev->subordinate;
87 struct pci_dev *child, *tmp;
88
89 if (bus) {
90 list_for_each_entry_safe(child, tmp,
91 &bus->devices, bus_list)
92 pci_remove_bus_device(child);
282e1d65
BH
93
94 pci_remove_bus(bus);
95 dev->subordinate = NULL;
96 }
24f8aa9b 97
282e1d65 98 pci_destroy_dev(dev);
24f8aa9b 99}
3891b6ac
YL
100
101/**
102 * pci_stop_and_remove_bus_device - remove a PCI device and any children
103 * @dev: the device to remove
104 *
105 * Remove a PCI device from the device lists, informing the drivers
106 * that the device has been removed. We also remove any subordinate
107 * buses and children in a depth-first manner.
108 *
109 * For each device we remove, delete the device structure from the
110 * device lists, remove the /proc entry, and notify userspace
111 * (/sbin/hotplug).
112 */
113void pci_stop_and_remove_bus_device(struct pci_dev *dev)
114{
115 pci_stop_bus_device(dev);
116 pci_remove_bus_device(dev);
117}
210647af 118EXPORT_SYMBOL(pci_stop_and_remove_bus_device);
cdfcc572 119
9d16947b
RW
120void pci_stop_and_remove_bus_device_locked(struct pci_dev *dev)
121{
122 pci_lock_rescan_remove();
123 pci_stop_and_remove_bus_device(dev);
124 pci_unlock_rescan_remove();
125}
126EXPORT_SYMBOL_GPL(pci_stop_and_remove_bus_device_locked);
127
cdfcc572
YL
128void pci_stop_root_bus(struct pci_bus *bus)
129{
130 struct pci_dev *child, *tmp;
131 struct pci_host_bridge *host_bridge;
132
133 if (!pci_is_root_bus(bus))
134 return;
135
136 host_bridge = to_pci_host_bridge(bus->bridge);
137 list_for_each_entry_safe_reverse(child, tmp,
138 &bus->devices, bus_list)
139 pci_stop_bus_device(child);
140
141 /* stop the host bridge */
e3b439e1 142 device_release_driver(&host_bridge->dev);
cdfcc572 143}
e6b29dea 144EXPORT_SYMBOL_GPL(pci_stop_root_bus);
cdfcc572
YL
145
146void pci_remove_root_bus(struct pci_bus *bus)
147{
148 struct pci_dev *child, *tmp;
149 struct pci_host_bridge *host_bridge;
150
151 if (!pci_is_root_bus(bus))
152 return;
153
154 host_bridge = to_pci_host_bridge(bus->bridge);
155 list_for_each_entry_safe(child, tmp,
156 &bus->devices, bus_list)
157 pci_remove_bus_device(child);
158 pci_remove_bus(bus);
159 host_bridge->bus = NULL;
160
161 /* remove the host bridge */
e3b439e1 162 device_unregister(&host_bridge->dev);
cdfcc572 163}
e6b29dea 164EXPORT_SYMBOL_GPL(pci_remove_root_bus);