target: Fix kref->refcount underflow in transport_cmd_finish_abort
[linux/fpc-iii.git] / drivers / pci / pcie / portdrv_pci.c
blob79327cc14e7dbbc43cdcc964499e0083c483aba1
1 /*
2 * File: portdrv_pci.c
3 * Purpose: PCI Express Port Bus Driver
4 * Author: Tom Nguyen <tom.l.nguyen@intel.com>
5 * Version: v1.0
7 * Copyright (C) 2004 Intel
8 * Copyright (C) Tom Long Nguyen (tom.l.nguyen@intel.com)
9 */
11 #include <linux/pci.h>
12 #include <linux/kernel.h>
13 #include <linux/errno.h>
14 #include <linux/pm.h>
15 #include <linux/pm_runtime.h>
16 #include <linux/init.h>
17 #include <linux/pcieport_if.h>
18 #include <linux/aer.h>
19 #include <linux/dmi.h>
20 #include <linux/pci-aspm.h>
22 #include "portdrv.h"
23 #include "aer/aerdrv.h"
25 /* If this switch is set, PCIe port native services should not be enabled. */
26 bool pcie_ports_disabled;
29 * If this switch is set, ACPI _OSC will be used to determine whether or not to
30 * enable PCIe port native services.
32 bool pcie_ports_auto = true;
34 static int __init pcie_port_setup(char *str)
36 if (!strncmp(str, "compat", 6)) {
37 pcie_ports_disabled = true;
38 } else if (!strncmp(str, "native", 6)) {
39 pcie_ports_disabled = false;
40 pcie_ports_auto = false;
41 } else if (!strncmp(str, "auto", 4)) {
42 pcie_ports_disabled = false;
43 pcie_ports_auto = true;
46 return 1;
48 __setup("pcie_ports=", pcie_port_setup);
50 /* global data */
52 /**
53 * pcie_clear_root_pme_status - Clear root port PME interrupt status.
54 * @dev: PCIe root port or event collector.
56 void pcie_clear_root_pme_status(struct pci_dev *dev)
58 pcie_capability_set_dword(dev, PCI_EXP_RTSTA, PCI_EXP_RTSTA_PME);
61 static int pcie_portdrv_restore_config(struct pci_dev *dev)
63 int retval;
65 retval = pci_enable_device(dev);
66 if (retval)
67 return retval;
68 pci_set_master(dev);
69 return 0;
72 #ifdef CONFIG_PM
73 static int pcie_port_resume_noirq(struct device *dev)
75 struct pci_dev *pdev = to_pci_dev(dev);
78 * Some BIOSes forget to clear Root PME Status bits after system wakeup
79 * which breaks ACPI-based runtime wakeup on PCI Express, so clear those
80 * bits now just in case (shouldn't hurt).
82 if (pci_pcie_type(pdev) == PCI_EXP_TYPE_ROOT_PORT)
83 pcie_clear_root_pme_status(pdev);
84 return 0;
87 static int pcie_port_runtime_suspend(struct device *dev)
89 return to_pci_dev(dev)->bridge_d3 ? 0 : -EBUSY;
92 static int pcie_port_runtime_resume(struct device *dev)
94 return 0;
97 static int pcie_port_runtime_idle(struct device *dev)
100 * Assume the PCI core has set bridge_d3 whenever it thinks the port
101 * should be good to go to D3. Everything else, including moving
102 * the port to D3, is handled by the PCI core.
104 return to_pci_dev(dev)->bridge_d3 ? 0 : -EBUSY;
107 static const struct dev_pm_ops pcie_portdrv_pm_ops = {
108 .suspend = pcie_port_device_suspend,
109 .resume = pcie_port_device_resume,
110 .freeze = pcie_port_device_suspend,
111 .thaw = pcie_port_device_resume,
112 .poweroff = pcie_port_device_suspend,
113 .restore = pcie_port_device_resume,
114 .resume_noirq = pcie_port_resume_noirq,
115 .runtime_suspend = pcie_port_runtime_suspend,
116 .runtime_resume = pcie_port_runtime_resume,
117 .runtime_idle = pcie_port_runtime_idle,
120 #define PCIE_PORTDRV_PM_OPS (&pcie_portdrv_pm_ops)
122 #else /* !PM */
124 #define PCIE_PORTDRV_PM_OPS NULL
125 #endif /* !PM */
128 * pcie_portdrv_probe - Probe PCI-Express port devices
129 * @dev: PCI-Express port device being probed
131 * If detected invokes the pcie_port_device_register() method for
132 * this port device.
135 static int pcie_portdrv_probe(struct pci_dev *dev,
136 const struct pci_device_id *id)
138 int status;
140 if (!pci_is_pcie(dev) ||
141 ((pci_pcie_type(dev) != PCI_EXP_TYPE_ROOT_PORT) &&
142 (pci_pcie_type(dev) != PCI_EXP_TYPE_UPSTREAM) &&
143 (pci_pcie_type(dev) != PCI_EXP_TYPE_DOWNSTREAM)))
144 return -ENODEV;
146 status = pcie_port_device_register(dev);
147 if (status)
148 return status;
150 pci_save_state(dev);
153 * Prevent runtime PM if the port is advertising support for PCIe
154 * hotplug. Otherwise the BIOS hotplug SMI code might not be able
155 * to enumerate devices behind this port properly (the port is
156 * powered down preventing all config space accesses to the
157 * subordinate devices). We can't be sure for native PCIe hotplug
158 * either so prevent that as well.
160 if (!dev->is_hotplug_bridge) {
162 * Keep the port resumed 100ms to make sure things like
163 * config space accesses from userspace (lspci) will not
164 * cause the port to repeatedly suspend and resume.
166 pm_runtime_set_autosuspend_delay(&dev->dev, 100);
167 pm_runtime_use_autosuspend(&dev->dev);
168 pm_runtime_mark_last_busy(&dev->dev);
169 pm_runtime_put_autosuspend(&dev->dev);
170 pm_runtime_allow(&dev->dev);
173 return 0;
176 static void pcie_portdrv_remove(struct pci_dev *dev)
178 if (!dev->is_hotplug_bridge) {
179 pm_runtime_forbid(&dev->dev);
180 pm_runtime_get_noresume(&dev->dev);
181 pm_runtime_dont_use_autosuspend(&dev->dev);
184 pcie_port_device_remove(dev);
187 static int error_detected_iter(struct device *device, void *data)
189 struct pcie_device *pcie_device;
190 struct pcie_port_service_driver *driver;
191 struct aer_broadcast_data *result_data;
192 pci_ers_result_t status;
194 result_data = (struct aer_broadcast_data *) data;
196 if (device->bus == &pcie_port_bus_type && device->driver) {
197 driver = to_service_driver(device->driver);
198 if (!driver ||
199 !driver->err_handler ||
200 !driver->err_handler->error_detected)
201 return 0;
203 pcie_device = to_pcie_device(device);
205 /* Forward error detected message to service drivers */
206 status = driver->err_handler->error_detected(
207 pcie_device->port,
208 result_data->state);
209 result_data->result =
210 merge_result(result_data->result, status);
213 return 0;
216 static pci_ers_result_t pcie_portdrv_error_detected(struct pci_dev *dev,
217 enum pci_channel_state error)
219 struct aer_broadcast_data data = {error, PCI_ERS_RESULT_CAN_RECOVER};
221 /* get true return value from &data */
222 device_for_each_child(&dev->dev, &data, error_detected_iter);
223 return data.result;
226 static int mmio_enabled_iter(struct device *device, void *data)
228 struct pcie_device *pcie_device;
229 struct pcie_port_service_driver *driver;
230 pci_ers_result_t status, *result;
232 result = (pci_ers_result_t *) data;
234 if (device->bus == &pcie_port_bus_type && device->driver) {
235 driver = to_service_driver(device->driver);
236 if (driver &&
237 driver->err_handler &&
238 driver->err_handler->mmio_enabled) {
239 pcie_device = to_pcie_device(device);
241 /* Forward error message to service drivers */
242 status = driver->err_handler->mmio_enabled(
243 pcie_device->port);
244 *result = merge_result(*result, status);
248 return 0;
251 static pci_ers_result_t pcie_portdrv_mmio_enabled(struct pci_dev *dev)
253 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
255 /* get true return value from &status */
256 device_for_each_child(&dev->dev, &status, mmio_enabled_iter);
257 return status;
260 static int slot_reset_iter(struct device *device, void *data)
262 struct pcie_device *pcie_device;
263 struct pcie_port_service_driver *driver;
264 pci_ers_result_t status, *result;
266 result = (pci_ers_result_t *) data;
268 if (device->bus == &pcie_port_bus_type && device->driver) {
269 driver = to_service_driver(device->driver);
270 if (driver &&
271 driver->err_handler &&
272 driver->err_handler->slot_reset) {
273 pcie_device = to_pcie_device(device);
275 /* Forward error message to service drivers */
276 status = driver->err_handler->slot_reset(
277 pcie_device->port);
278 *result = merge_result(*result, status);
282 return 0;
285 static pci_ers_result_t pcie_portdrv_slot_reset(struct pci_dev *dev)
287 pci_ers_result_t status = PCI_ERS_RESULT_RECOVERED;
289 /* If fatal, restore cfg space for possible link reset at upstream */
290 if (dev->error_state == pci_channel_io_frozen) {
291 dev->state_saved = true;
292 pci_restore_state(dev);
293 pcie_portdrv_restore_config(dev);
294 pci_enable_pcie_error_reporting(dev);
297 /* get true return value from &status */
298 device_for_each_child(&dev->dev, &status, slot_reset_iter);
299 return status;
302 static int resume_iter(struct device *device, void *data)
304 struct pcie_device *pcie_device;
305 struct pcie_port_service_driver *driver;
307 if (device->bus == &pcie_port_bus_type && device->driver) {
308 driver = to_service_driver(device->driver);
309 if (driver &&
310 driver->err_handler &&
311 driver->err_handler->resume) {
312 pcie_device = to_pcie_device(device);
314 /* Forward error message to service drivers */
315 driver->err_handler->resume(pcie_device->port);
319 return 0;
322 static void pcie_portdrv_err_resume(struct pci_dev *dev)
324 device_for_each_child(&dev->dev, NULL, resume_iter);
328 * LINUX Device Driver Model
330 static const struct pci_device_id port_pci_ids[] = { {
331 /* handle any PCI-Express port */
332 PCI_DEVICE_CLASS(((PCI_CLASS_BRIDGE_PCI << 8) | 0x00), ~0),
333 }, { /* end: all zeroes */ }
336 static const struct pci_error_handlers pcie_portdrv_err_handler = {
337 .error_detected = pcie_portdrv_error_detected,
338 .mmio_enabled = pcie_portdrv_mmio_enabled,
339 .slot_reset = pcie_portdrv_slot_reset,
340 .resume = pcie_portdrv_err_resume,
343 static struct pci_driver pcie_portdriver = {
344 .name = "pcieport",
345 .id_table = &port_pci_ids[0],
347 .probe = pcie_portdrv_probe,
348 .remove = pcie_portdrv_remove,
350 .err_handler = &pcie_portdrv_err_handler,
352 .driver.pm = PCIE_PORTDRV_PM_OPS,
355 static int __init dmi_pcie_pme_disable_msi(const struct dmi_system_id *d)
357 pr_notice("%s detected: will not use MSI for PCIe PME signaling\n",
358 d->ident);
359 pcie_pme_disable_msi();
360 return 0;
363 static struct dmi_system_id __initdata pcie_portdrv_dmi_table[] = {
365 * Boxes that should not use MSI for PCIe PME signaling.
368 .callback = dmi_pcie_pme_disable_msi,
369 .ident = "MSI Wind U-100",
370 .matches = {
371 DMI_MATCH(DMI_SYS_VENDOR,
372 "MICRO-STAR INTERNATIONAL CO., LTD"),
373 DMI_MATCH(DMI_PRODUCT_NAME, "U-100"),
379 static int __init pcie_portdrv_init(void)
381 int retval;
383 if (pcie_ports_disabled)
384 return pci_register_driver(&pcie_portdriver);
386 dmi_check_system(pcie_portdrv_dmi_table);
388 retval = pcie_port_bus_register();
389 if (retval) {
390 printk(KERN_WARNING "PCIE: bus_register error: %d\n", retval);
391 goto out;
393 retval = pci_register_driver(&pcie_portdriver);
394 if (retval)
395 pcie_port_bus_unregister();
396 out:
397 return retval;
399 device_initcall(pcie_portdrv_init);