blob: cc875e6ed159f1edb890946a96e78917bb6fe2c5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <linux/pci.h>
2#include <linux/module.h>
Shaohua Li7d715a62008-02-25 09:46:41 +08003#include <linux/pci-aspm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include "pci.h"
5
6static void pci_free_resources(struct pci_dev *dev)
7{
8 int i;
9
10 msi_remove_pci_irq_vectors(dev);
11
12 pci_cleanup_rom(dev);
13 for (i = 0; i < PCI_NUM_RESOURCES; i++) {
14 struct resource *res = dev->resource + i;
15 if (res->parent)
16 release_resource(res);
17 }
18}
19
Satoru Takeuchi24f8aa92006-09-12 10:16:36 -070020static void pci_stop_dev(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070021{
Rafael J. Wysocki249bfb82013-02-11 20:49:49 +010022 pci_pme_active(dev, false);
23
Greg Kroah-Hartman8a1bc902008-02-14 14:56:56 -080024 if (dev->is_added) {
Rajesh Shah091ca9f2005-04-28 00:25:49 -070025 pci_proc_detach_device(dev);
26 pci_remove_sysfs_dev_files(dev);
Jiang Liue723f0b2013-01-21 13:20:46 -080027 device_del(&dev->dev);
Greg Kroah-Hartman8a1bc902008-02-14 14:56:56 -080028 dev->is_added = 0;
Rajesh Shah091ca9f2005-04-28 00:25:49 -070029 }
Shaohua Li7d715a62008-02-25 09:46:41 +080030
31 if (dev->bus->self)
32 pcie_aspm_exit_link_state(dev);
Satoru Takeuchi24f8aa92006-09-12 10:16:36 -070033}
34
35static void pci_destroy_dev(struct pci_dev *dev)
36{
Zhang Yanmind71374d2006-06-02 12:35:43 +080037 down_write(&pci_bus_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 list_del(&dev->bus_list);
Zhang Yanmind71374d2006-06-02 12:35:43 +080039 up_write(&pci_bus_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41 pci_free_resources(dev);
Jiang Liue723f0b2013-01-21 13:20:46 -080042 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043}
44
Bjorn Helgaasd563e2c2012-08-16 20:43:11 -060045void pci_remove_bus(struct pci_bus *bus)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
Bjorn Helgaasd563e2c2012-08-16 20:43:11 -060047 pci_proc_detach_bus(bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Zhang Yanmind71374d2006-06-02 12:35:43 +080049 down_write(&pci_bus_sem);
Bjorn Helgaasd563e2c2012-08-16 20:43:11 -060050 list_del(&bus->node);
51 pci_bus_release_busn_res(bus);
Zhang Yanmind71374d2006-06-02 12:35:43 +080052 up_write(&pci_bus_sem);
Bjorn Helgaasd563e2c2012-08-16 20:43:11 -060053 if (!bus->is_added)
Yu Zhao2b563132009-01-28 18:27:21 +080054 return;
55
Bjorn Helgaasd563e2c2012-08-16 20:43:11 -060056 pci_remove_legacy_files(bus);
57 device_unregister(&bus->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59EXPORT_SYMBOL(pci_remove_bus);
60
Yinghai Lu3891b6a2012-09-19 11:54:20 -070061static void pci_stop_bus_device(struct pci_dev *dev)
62{
63 struct pci_bus *bus = dev->subordinate;
64 struct pci_dev *child, *tmp;
65
66 /*
67 * Stopping an SR-IOV PF device removes all the associated VFs,
68 * which will update the bus->devices list and confuse the
69 * iterator. Therefore, iterate in reverse so we remove the VFs
70 * first, then the PF.
71 */
72 if (bus) {
73 list_for_each_entry_safe_reverse(child, tmp,
74 &bus->devices, bus_list)
75 pci_stop_bus_device(child);
76 }
77
78 pci_stop_dev(dev);
79}
80
81static void pci_remove_bus_device(struct pci_dev *dev)
82{
83 struct pci_bus *bus = dev->subordinate;
84 struct pci_dev *child, *tmp;
85
86 if (bus) {
87 list_for_each_entry_safe(child, tmp,
88 &bus->devices, bus_list)
89 pci_remove_bus_device(child);
90
91 pci_remove_bus(bus);
92 dev->subordinate = NULL;
93 }
94
95 pci_destroy_dev(dev);
96}
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/**
Yinghai Lu210647a2012-02-25 13:54:20 -080099 * pci_stop_and_remove_bus_device - remove a PCI device and any children
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 * @dev: the device to remove
101 *
102 * Remove a PCI device from the device lists, informing the drivers
103 * that the device has been removed. We also remove any subordinate
104 * buses and children in a depth-first manner.
105 *
106 * For each device we remove, delete the device structure from the
107 * device lists, remove the /proc entry, and notify userspace
108 * (/sbin/hotplug).
109 */
Yinghai Lu210647a2012-02-25 13:54:20 -0800110void pci_stop_and_remove_bus_device(struct pci_dev *dev)
Yinghai Lu79cc9602011-11-22 21:06:53 -0800111{
Yinghai Lu3891b6a2012-09-19 11:54:20 -0700112 pci_stop_bus_device(dev);
113 pci_remove_bus_device(dev);
Satoru Takeuchi24f8aa92006-09-12 10:16:36 -0700114}
Yinghai Lu210647a2012-02-25 13:54:20 -0800115EXPORT_SYMBOL(pci_stop_and_remove_bus_device);
Yinghai Lucdfcc572012-10-30 14:31:38 -0600116
117void pci_stop_root_bus(struct pci_bus *bus)
118{
119 struct pci_dev *child, *tmp;
120 struct pci_host_bridge *host_bridge;
121
122 if (!pci_is_root_bus(bus))
123 return;
124
125 host_bridge = to_pci_host_bridge(bus->bridge);
126 list_for_each_entry_safe_reverse(child, tmp,
127 &bus->devices, bus_list)
128 pci_stop_bus_device(child);
129
130 /* stop the host bridge */
131 device_del(&host_bridge->dev);
132}
133
134void pci_remove_root_bus(struct pci_bus *bus)
135{
136 struct pci_dev *child, *tmp;
137 struct pci_host_bridge *host_bridge;
138
139 if (!pci_is_root_bus(bus))
140 return;
141
142 host_bridge = to_pci_host_bridge(bus->bridge);
143 list_for_each_entry_safe(child, tmp,
144 &bus->devices, bus_list)
145 pci_remove_bus_device(child);
146 pci_remove_bus(bus);
147 host_bridge->bus = NULL;
148
149 /* remove the host bridge */
150 put_device(&host_bridge->dev);
151}