Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * drivers/pci/pci-driver.c |
| 3 | * |
Greg Kroah-Hartman | 2b93730 | 2007-11-28 12:23:18 -0800 | [diff] [blame] | 4 | * (C) Copyright 2002-2004, 2007 Greg Kroah-Hartman <greg@kroah.com> |
| 5 | * (C) Copyright 2007 Novell Inc. |
| 6 | * |
| 7 | * Released under the GPL v2 only. |
| 8 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <linux/pci.h> |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/device.h> |
Andi Kleen | d42c699 | 2005-07-06 19:56:03 +0200 | [diff] [blame] | 15 | #include <linux/mempolicy.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 16 | #include <linux/string.h> |
| 17 | #include <linux/slab.h> |
Tim Schmielau | 8c65b4a | 2005-11-07 00:59:43 -0800 | [diff] [blame] | 18 | #include <linux/sched.h> |
Rusty Russell | 873392c | 2008-12-31 23:54:56 +1030 | [diff] [blame] | 19 | #include <linux/cpu.h> |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 20 | #include <linux/pm_runtime.h> |
Rafael J. Wysocki | eea3fc03 | 2011-07-06 10:51:40 +0200 | [diff] [blame] | 21 | #include <linux/suspend.h> |
Khalid Aziz | 4fc9bbf | 2013-11-27 15:19:25 -0700 | [diff] [blame] | 22 | #include <linux/kexec.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "pci.h" |
| 24 | |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 25 | struct pci_dynid { |
| 26 | struct list_head node; |
| 27 | struct pci_device_id id; |
| 28 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | /** |
Tejun Heo | 9dba910 | 2009-09-03 15:26:36 +0900 | [diff] [blame] | 31 | * pci_add_dynid - add a new PCI device ID to this driver and re-probe devices |
| 32 | * @drv: target pci driver |
| 33 | * @vendor: PCI vendor ID |
| 34 | * @device: PCI device ID |
| 35 | * @subvendor: PCI subvendor ID |
| 36 | * @subdevice: PCI subdevice ID |
| 37 | * @class: PCI class |
| 38 | * @class_mask: PCI class mask |
| 39 | * @driver_data: private driver data |
| 40 | * |
| 41 | * Adds a new dynamic pci device ID to this driver and causes the |
| 42 | * driver to probe for all devices again. @drv must have been |
| 43 | * registered prior to calling this function. |
| 44 | * |
| 45 | * CONTEXT: |
| 46 | * Does GFP_KERNEL allocation. |
| 47 | * |
| 48 | * RETURNS: |
| 49 | * 0 on success, -errno on failure. |
| 50 | */ |
| 51 | int pci_add_dynid(struct pci_driver *drv, |
| 52 | unsigned int vendor, unsigned int device, |
| 53 | unsigned int subvendor, unsigned int subdevice, |
| 54 | unsigned int class, unsigned int class_mask, |
| 55 | unsigned long driver_data) |
| 56 | { |
| 57 | struct pci_dynid *dynid; |
| 58 | int retval; |
| 59 | |
| 60 | dynid = kzalloc(sizeof(*dynid), GFP_KERNEL); |
| 61 | if (!dynid) |
| 62 | return -ENOMEM; |
| 63 | |
| 64 | dynid->id.vendor = vendor; |
| 65 | dynid->id.device = device; |
| 66 | dynid->id.subvendor = subvendor; |
| 67 | dynid->id.subdevice = subdevice; |
| 68 | dynid->id.class = class; |
| 69 | dynid->id.class_mask = class_mask; |
| 70 | dynid->id.driver_data = driver_data; |
| 71 | |
| 72 | spin_lock(&drv->dynids.lock); |
| 73 | list_add_tail(&dynid->node, &drv->dynids.list); |
| 74 | spin_unlock(&drv->dynids.lock); |
| 75 | |
Tejun Heo | 9dba910 | 2009-09-03 15:26:36 +0900 | [diff] [blame] | 76 | retval = driver_attach(&drv->driver); |
Tejun Heo | 9dba910 | 2009-09-03 15:26:36 +0900 | [diff] [blame] | 77 | |
| 78 | return retval; |
| 79 | } |
| 80 | |
| 81 | static void pci_free_dynids(struct pci_driver *drv) |
| 82 | { |
| 83 | struct pci_dynid *dynid, *n; |
| 84 | |
| 85 | spin_lock(&drv->dynids.lock); |
| 86 | list_for_each_entry_safe(dynid, n, &drv->dynids.list, node) { |
| 87 | list_del(&dynid->node); |
| 88 | kfree(dynid); |
| 89 | } |
| 90 | spin_unlock(&drv->dynids.lock); |
| 91 | } |
| 92 | |
Tejun Heo | 9dba910 | 2009-09-03 15:26:36 +0900 | [diff] [blame] | 93 | /** |
| 94 | * store_new_id - sysfs frontend to pci_add_dynid() |
Randy Dunlap | 8f7020d | 2005-10-23 11:57:38 -0700 | [diff] [blame] | 95 | * @driver: target device driver |
| 96 | * @buf: buffer for scanning device ID data |
| 97 | * @count: input size |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 98 | * |
Tejun Heo | 9dba910 | 2009-09-03 15:26:36 +0900 | [diff] [blame] | 99 | * Allow PCI IDs to be added to an existing driver via sysfs. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | */ |
Randy Dunlap | f8eb100 | 2005-10-28 20:36:51 -0700 | [diff] [blame] | 101 | static ssize_t |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | store_new_id(struct device_driver *driver, const char *buf, size_t count) |
| 103 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | struct pci_driver *pdrv = to_pci_driver(driver); |
Jean Delvare | b41d6cf | 2008-08-17 21:06:59 +0200 | [diff] [blame] | 105 | const struct pci_device_id *ids = pdrv->id_table; |
Jean Delvare | 6ba1863 | 2007-04-07 17:21:28 +0200 | [diff] [blame] | 106 | __u32 vendor, device, subvendor=PCI_ANY_ID, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | subdevice=PCI_ANY_ID, class=0, class_mask=0; |
| 108 | unsigned long driver_data=0; |
| 109 | int fields=0; |
Bandan Das | 8895d3b | 2014-04-01 21:32:59 -0400 | [diff] [blame^] | 110 | int retval = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
Jean Delvare | b41d6cf | 2008-08-17 21:06:59 +0200 | [diff] [blame] | 112 | fields = sscanf(buf, "%x %x %x %x %x %x %lx", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | &vendor, &device, &subvendor, &subdevice, |
| 114 | &class, &class_mask, &driver_data); |
Jean Delvare | 6ba1863 | 2007-04-07 17:21:28 +0200 | [diff] [blame] | 115 | if (fields < 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | return -EINVAL; |
| 117 | |
Bandan Das | 8895d3b | 2014-04-01 21:32:59 -0400 | [diff] [blame^] | 118 | if (fields != 7) { |
| 119 | struct pci_dev *pdev = kzalloc(sizeof(*pdev), GFP_KERNEL); |
| 120 | if (!pdev) |
| 121 | return -ENOMEM; |
| 122 | |
| 123 | pdev->vendor = vendor; |
| 124 | pdev->device = device; |
| 125 | pdev->subsystem_vendor = subvendor; |
| 126 | pdev->subsystem_device = subdevice; |
| 127 | pdev->class = class; |
| 128 | |
| 129 | if (pci_match_id(pdrv->id_table, pdev)) |
| 130 | retval = -EEXIST; |
| 131 | |
| 132 | kfree(pdev); |
| 133 | |
| 134 | if (retval) |
| 135 | return retval; |
| 136 | } |
| 137 | |
Jean Delvare | b41d6cf | 2008-08-17 21:06:59 +0200 | [diff] [blame] | 138 | /* Only accept driver_data values that match an existing id_table |
| 139 | entry */ |
Chris Wright | 2debb4d | 2008-11-25 19:36:10 -0800 | [diff] [blame] | 140 | if (ids) { |
| 141 | retval = -EINVAL; |
| 142 | while (ids->vendor || ids->subvendor || ids->class_mask) { |
| 143 | if (driver_data == ids->driver_data) { |
| 144 | retval = 0; |
| 145 | break; |
| 146 | } |
| 147 | ids++; |
Jean Delvare | b41d6cf | 2008-08-17 21:06:59 +0200 | [diff] [blame] | 148 | } |
Chris Wright | 2debb4d | 2008-11-25 19:36:10 -0800 | [diff] [blame] | 149 | if (retval) /* No match */ |
| 150 | return retval; |
Jean Delvare | b41d6cf | 2008-08-17 21:06:59 +0200 | [diff] [blame] | 151 | } |
Jean Delvare | b41d6cf | 2008-08-17 21:06:59 +0200 | [diff] [blame] | 152 | |
Tejun Heo | 9dba910 | 2009-09-03 15:26:36 +0900 | [diff] [blame] | 153 | retval = pci_add_dynid(pdrv, vendor, device, subvendor, subdevice, |
| 154 | class, class_mask, driver_data); |
Greg Kroah-Hartman | b19441a | 2006-08-28 11:43:25 -0700 | [diff] [blame] | 155 | if (retval) |
| 156 | return retval; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | return count; |
| 158 | } |
Greg Kroah-Hartman | 2229c1f | 2013-10-07 14:51:20 -0600 | [diff] [blame] | 159 | static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | |
Chris Wright | 0994375 | 2009-02-23 21:52:23 -0800 | [diff] [blame] | 161 | /** |
| 162 | * store_remove_id - remove a PCI device ID from this driver |
| 163 | * @driver: target device driver |
| 164 | * @buf: buffer for scanning device ID data |
| 165 | * @count: input size |
| 166 | * |
| 167 | * Removes a dynamic pci device ID to this driver. |
| 168 | */ |
| 169 | static ssize_t |
| 170 | store_remove_id(struct device_driver *driver, const char *buf, size_t count) |
| 171 | { |
| 172 | struct pci_dynid *dynid, *n; |
| 173 | struct pci_driver *pdrv = to_pci_driver(driver); |
| 174 | __u32 vendor, device, subvendor = PCI_ANY_ID, |
| 175 | subdevice = PCI_ANY_ID, class = 0, class_mask = 0; |
| 176 | int fields = 0; |
| 177 | int retval = -ENODEV; |
| 178 | |
| 179 | fields = sscanf(buf, "%x %x %x %x %x %x", |
| 180 | &vendor, &device, &subvendor, &subdevice, |
| 181 | &class, &class_mask); |
| 182 | if (fields < 2) |
| 183 | return -EINVAL; |
| 184 | |
| 185 | spin_lock(&pdrv->dynids.lock); |
| 186 | list_for_each_entry_safe(dynid, n, &pdrv->dynids.list, node) { |
| 187 | struct pci_device_id *id = &dynid->id; |
| 188 | if ((id->vendor == vendor) && |
| 189 | (id->device == device) && |
| 190 | (subvendor == PCI_ANY_ID || id->subvendor == subvendor) && |
| 191 | (subdevice == PCI_ANY_ID || id->subdevice == subdevice) && |
| 192 | !((id->class ^ class) & class_mask)) { |
| 193 | list_del(&dynid->node); |
| 194 | kfree(dynid); |
| 195 | retval = 0; |
| 196 | break; |
| 197 | } |
| 198 | } |
| 199 | spin_unlock(&pdrv->dynids.lock); |
| 200 | |
| 201 | if (retval) |
| 202 | return retval; |
| 203 | return count; |
| 204 | } |
Greg Kroah-Hartman | 2229c1f | 2013-10-07 14:51:20 -0600 | [diff] [blame] | 205 | static DRIVER_ATTR(remove_id, S_IWUSR, NULL, store_remove_id); |
Chris Wright | 0994375 | 2009-02-23 21:52:23 -0800 | [diff] [blame] | 206 | |
Greg Kroah-Hartman | 2229c1f | 2013-10-07 14:51:20 -0600 | [diff] [blame] | 207 | static struct attribute *pci_drv_attrs[] = { |
| 208 | &driver_attr_new_id.attr, |
| 209 | &driver_attr_remove_id.attr, |
| 210 | NULL, |
Konstantin Khlebnikov | bfb09a8 | 2012-08-08 14:47:51 +0400 | [diff] [blame] | 211 | }; |
Greg Kroah-Hartman | 2229c1f | 2013-10-07 14:51:20 -0600 | [diff] [blame] | 212 | ATTRIBUTE_GROUPS(pci_drv); |
Alan Stern | ed283e9 | 2012-01-24 14:35:13 -0500 | [diff] [blame] | 213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | /** |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 215 | * pci_match_id - See if a pci device matches a given pci_id table |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | * @ids: array of PCI device id structures to search in |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 217 | * @dev: the PCI device structure to match against. |
| 218 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | * Used by a driver to check whether a PCI device present in the |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 220 | * system is in its list of supported devices. Returns the matching |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | * pci_device_id structure or %NULL if there is no match. |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 222 | * |
Randy Dunlap | 8b60756 | 2007-05-09 07:19:14 +0200 | [diff] [blame] | 223 | * Deprecated, don't use this as it will not catch any dynamic ids |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 224 | * that a driver might want to check for. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | */ |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 226 | const struct pci_device_id *pci_match_id(const struct pci_device_id *ids, |
| 227 | struct pci_dev *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | { |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 229 | if (ids) { |
| 230 | while (ids->vendor || ids->subvendor || ids->class_mask) { |
| 231 | if (pci_match_one_device(ids, dev)) |
| 232 | return ids; |
| 233 | ids++; |
| 234 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | } |
| 236 | return NULL; |
| 237 | } |
| 238 | |
| 239 | /** |
Randy Dunlap | ae9608a | 2007-01-09 21:41:01 -0800 | [diff] [blame] | 240 | * pci_match_device - Tell if a PCI device structure has a matching PCI device id structure |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 241 | * @drv: the PCI driver to match against |
Henrik Kretzschmar | 39ba487 | 2006-08-15 10:57:16 +0200 | [diff] [blame] | 242 | * @dev: the PCI device structure to match against |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 243 | * |
| 244 | * Used by a driver to check whether a PCI device present in the |
| 245 | * system is in its list of supported devices. Returns the matching |
| 246 | * pci_device_id structure or %NULL if there is no match. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | */ |
Adrian Bunk | d73460d | 2007-10-24 18:27:18 +0200 | [diff] [blame] | 248 | static const struct pci_device_id *pci_match_device(struct pci_driver *drv, |
| 249 | struct pci_dev *dev) |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 250 | { |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 251 | struct pci_dynid *dynid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
Russell King | 7461b60 | 2006-11-29 21:18:04 +0000 | [diff] [blame] | 253 | /* Look at the dynamic ids first, before the static ones */ |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 254 | spin_lock(&drv->dynids.lock); |
| 255 | list_for_each_entry(dynid, &drv->dynids.list, node) { |
| 256 | if (pci_match_one_device(&dynid->id, dev)) { |
| 257 | spin_unlock(&drv->dynids.lock); |
| 258 | return &dynid->id; |
| 259 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | } |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 261 | spin_unlock(&drv->dynids.lock); |
Russell King | 7461b60 | 2006-11-29 21:18:04 +0000 | [diff] [blame] | 262 | |
| 263 | return pci_match_id(drv->id_table, dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | } |
| 265 | |
Rusty Russell | 873392c | 2008-12-31 23:54:56 +1030 | [diff] [blame] | 266 | struct drv_dev_and_id { |
| 267 | struct pci_driver *drv; |
| 268 | struct pci_dev *dev; |
| 269 | const struct pci_device_id *id; |
| 270 | }; |
| 271 | |
| 272 | static long local_pci_probe(void *_ddi) |
| 273 | { |
| 274 | struct drv_dev_and_id *ddi = _ddi; |
Huang Ying | 967577b | 2012-11-20 16:08:22 +0800 | [diff] [blame] | 275 | struct pci_dev *pci_dev = ddi->dev; |
| 276 | struct pci_driver *pci_drv = ddi->drv; |
| 277 | struct device *dev = &pci_dev->dev; |
Alan Stern | f3ec4f8 | 2010-06-08 15:23:51 -0400 | [diff] [blame] | 278 | int rc; |
Rusty Russell | 873392c | 2008-12-31 23:54:56 +1030 | [diff] [blame] | 279 | |
Huang Ying | 967577b | 2012-11-20 16:08:22 +0800 | [diff] [blame] | 280 | /* |
| 281 | * Unbound PCI devices are always put in D0, regardless of |
| 282 | * runtime PM status. During probe, the device is set to |
| 283 | * active and the usage count is incremented. If the driver |
| 284 | * supports runtime PM, it should call pm_runtime_put_noidle() |
| 285 | * in its probe routine and pm_runtime_get_noresume() in its |
| 286 | * remove routine. |
Alan Stern | f3ec4f8 | 2010-06-08 15:23:51 -0400 | [diff] [blame] | 287 | */ |
Huang Ying | 967577b | 2012-11-20 16:08:22 +0800 | [diff] [blame] | 288 | pm_runtime_get_sync(dev); |
| 289 | pci_dev->driver = pci_drv; |
| 290 | rc = pci_drv->probe(pci_dev, ddi->id); |
Stephen M. Cameron | f92d74c | 2013-11-01 14:34:55 -0500 | [diff] [blame] | 291 | if (!rc) |
| 292 | return rc; |
| 293 | if (rc < 0) { |
Huang Ying | 967577b | 2012-11-20 16:08:22 +0800 | [diff] [blame] | 294 | pci_dev->driver = NULL; |
| 295 | pm_runtime_put_sync(dev); |
Stephen M. Cameron | f92d74c | 2013-11-01 14:34:55 -0500 | [diff] [blame] | 296 | return rc; |
Alan Stern | f3ec4f8 | 2010-06-08 15:23:51 -0400 | [diff] [blame] | 297 | } |
Stephen M. Cameron | f92d74c | 2013-11-01 14:34:55 -0500 | [diff] [blame] | 298 | /* |
| 299 | * Probe function should return < 0 for failure, 0 for success |
| 300 | * Treat values > 0 as success, but warn. |
| 301 | */ |
| 302 | dev_warn(dev, "Driver probe function unexpectedly returned %d\n", rc); |
| 303 | return 0; |
Rusty Russell | 873392c | 2008-12-31 23:54:56 +1030 | [diff] [blame] | 304 | } |
| 305 | |
Andi Kleen | d42c699 | 2005-07-06 19:56:03 +0200 | [diff] [blame] | 306 | static int pci_call_probe(struct pci_driver *drv, struct pci_dev *dev, |
| 307 | const struct pci_device_id *id) |
| 308 | { |
Rusty Russell | 873392c | 2008-12-31 23:54:56 +1030 | [diff] [blame] | 309 | int error, node; |
| 310 | struct drv_dev_and_id ddi = { drv, dev, id }; |
Mike Travis | f70316d | 2008-04-04 18:11:06 -0700 | [diff] [blame] | 311 | |
Alexander Duyck | 12c3156 | 2013-11-18 10:59:59 -0700 | [diff] [blame] | 312 | /* |
| 313 | * Execute driver initialization on node where the device is |
| 314 | * attached. This way the driver likely allocates its local memory |
| 315 | * on the right node. |
| 316 | */ |
Rusty Russell | 873392c | 2008-12-31 23:54:56 +1030 | [diff] [blame] | 317 | node = dev_to_node(&dev->dev); |
Alexander Duyck | 12c3156 | 2013-11-18 10:59:59 -0700 | [diff] [blame] | 318 | |
| 319 | /* |
| 320 | * On NUMA systems, we are likely to call a PF probe function using |
| 321 | * work_on_cpu(). If that probe calls pci_enable_sriov() (which |
| 322 | * adds the VF devices via pci_bus_add_device()), we may re-enter |
| 323 | * this function to call the VF probe function. Calling |
| 324 | * work_on_cpu() again will cause a lockdep warning. Since VFs are |
| 325 | * always on the same node as the PF, we can work around this by |
| 326 | * avoiding work_on_cpu() when we're already on the correct node. |
| 327 | * |
| 328 | * Preemption is enabled, so it's theoretically unsafe to use |
| 329 | * numa_node_id(), but even if we run the probe function on the |
| 330 | * wrong node, it should be functionally correct. |
| 331 | */ |
| 332 | if (node >= 0 && node != numa_node_id()) { |
Rusty Russell | 873392c | 2008-12-31 23:54:56 +1030 | [diff] [blame] | 333 | int cpu; |
Rusty Russell | 873392c | 2008-12-31 23:54:56 +1030 | [diff] [blame] | 334 | |
| 335 | get_online_cpus(); |
Rusty Russell | a70f730 | 2009-03-13 14:49:46 +1030 | [diff] [blame] | 336 | cpu = cpumask_any_and(cpumask_of_node(node), cpu_online_mask); |
Rusty Russell | 873392c | 2008-12-31 23:54:56 +1030 | [diff] [blame] | 337 | if (cpu < nr_cpu_ids) |
| 338 | error = work_on_cpu(cpu, local_pci_probe, &ddi); |
| 339 | else |
| 340 | error = local_pci_probe(&ddi); |
| 341 | put_online_cpus(); |
| 342 | } else |
| 343 | error = local_pci_probe(&ddi); |
Alexander Duyck | 12c3156 | 2013-11-18 10:59:59 -0700 | [diff] [blame] | 344 | |
Andi Kleen | d42c699 | 2005-07-06 19:56:03 +0200 | [diff] [blame] | 345 | return error; |
| 346 | } |
| 347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | /** |
Randy Dunlap | 23ea379 | 2010-11-18 15:02:31 -0800 | [diff] [blame] | 349 | * __pci_device_probe - check if a driver wants to claim a specific PCI device |
Randy Dunlap | 8f7020d | 2005-10-23 11:57:38 -0700 | [diff] [blame] | 350 | * @drv: driver to call to check if it wants the PCI device |
| 351 | * @pci_dev: PCI device being probed |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 352 | * |
Randy Dunlap | 8f7020d | 2005-10-23 11:57:38 -0700 | [diff] [blame] | 353 | * returns 0 on success, else error. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | * side-effect: pci_dev->driver is set to drv when drv claims pci_dev. |
| 355 | */ |
| 356 | static int |
| 357 | __pci_device_probe(struct pci_driver *drv, struct pci_dev *pci_dev) |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 358 | { |
| 359 | const struct pci_device_id *id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | int error = 0; |
| 361 | |
| 362 | if (!pci_dev->driver && drv->probe) { |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 363 | error = -ENODEV; |
| 364 | |
| 365 | id = pci_match_device(drv, pci_dev); |
| 366 | if (id) |
Andi Kleen | d42c699 | 2005-07-06 19:56:03 +0200 | [diff] [blame] | 367 | error = pci_call_probe(drv, pci_dev, id); |
Huang Ying | 967577b | 2012-11-20 16:08:22 +0800 | [diff] [blame] | 368 | if (error >= 0) |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 369 | error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | } |
| 371 | return error; |
| 372 | } |
| 373 | |
| 374 | static int pci_device_probe(struct device * dev) |
| 375 | { |
| 376 | int error = 0; |
| 377 | struct pci_driver *drv; |
| 378 | struct pci_dev *pci_dev; |
| 379 | |
| 380 | drv = to_pci_driver(dev->driver); |
| 381 | pci_dev = to_pci_dev(dev); |
| 382 | pci_dev_get(pci_dev); |
| 383 | error = __pci_device_probe(drv, pci_dev); |
| 384 | if (error) |
| 385 | pci_dev_put(pci_dev); |
| 386 | |
| 387 | return error; |
| 388 | } |
| 389 | |
| 390 | static int pci_device_remove(struct device * dev) |
| 391 | { |
| 392 | struct pci_dev * pci_dev = to_pci_dev(dev); |
| 393 | struct pci_driver * drv = pci_dev->driver; |
| 394 | |
| 395 | if (drv) { |
Alan Stern | f3ec4f8 | 2010-06-08 15:23:51 -0400 | [diff] [blame] | 396 | if (drv->remove) { |
| 397 | pm_runtime_get_sync(dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | drv->remove(pci_dev); |
Alan Stern | f3ec4f8 | 2010-06-08 15:23:51 -0400 | [diff] [blame] | 399 | pm_runtime_put_noidle(dev); |
| 400 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | pci_dev->driver = NULL; |
| 402 | } |
| 403 | |
Alan Stern | f3ec4f8 | 2010-06-08 15:23:51 -0400 | [diff] [blame] | 404 | /* Undo the runtime PM settings in local_pci_probe() */ |
Huang Ying | 967577b | 2012-11-20 16:08:22 +0800 | [diff] [blame] | 405 | pm_runtime_put_sync(dev); |
Alan Stern | f3ec4f8 | 2010-06-08 15:23:51 -0400 | [diff] [blame] | 406 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | /* |
Shaohua Li | 2449e06 | 2006-10-20 14:45:32 -0700 | [diff] [blame] | 408 | * If the device is still on, set the power state as "unknown", |
| 409 | * since it might change by the next time we load the driver. |
| 410 | */ |
| 411 | if (pci_dev->current_state == PCI_D0) |
| 412 | pci_dev->current_state = PCI_UNKNOWN; |
| 413 | |
| 414 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | * We would love to complain here if pci_dev->is_enabled is set, that |
| 416 | * the driver should have called pci_disable_device(), but the |
| 417 | * unfortunate fact is there are too many odd BIOS and bridge setups |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 418 | * that don't like drivers doing that all of the time. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | * Oh well, we can dream of sane hardware when we sleep, no matter how |
| 420 | * horrible the crap we have to deal with is when we are awake... |
| 421 | */ |
| 422 | |
| 423 | pci_dev_put(pci_dev); |
| 424 | return 0; |
| 425 | } |
| 426 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 427 | static void pci_device_shutdown(struct device *dev) |
| 428 | { |
| 429 | struct pci_dev *pci_dev = to_pci_dev(dev); |
| 430 | struct pci_driver *drv = pci_dev->driver; |
| 431 | |
Huang Ying | 3ff2de9 | 2012-10-24 14:54:14 +0800 | [diff] [blame] | 432 | pm_runtime_resume(dev); |
| 433 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 434 | if (drv && drv->shutdown) |
| 435 | drv->shutdown(pci_dev); |
| 436 | pci_msi_shutdown(pci_dev); |
| 437 | pci_msix_shutdown(pci_dev); |
Rafael J. Wysocki | 5b415f1 | 2012-02-07 00:50:35 +0100 | [diff] [blame] | 438 | |
Khalid Aziz | 4fc9bbf | 2013-11-27 15:19:25 -0700 | [diff] [blame] | 439 | #ifdef CONFIG_KEXEC |
Rafael J. Wysocki | 5b415f1 | 2012-02-07 00:50:35 +0100 | [diff] [blame] | 440 | /* |
Khalid Aziz | 4fc9bbf | 2013-11-27 15:19:25 -0700 | [diff] [blame] | 441 | * If this is a kexec reboot, turn off Bus Master bit on the |
| 442 | * device to tell it to not continue to do DMA. Don't touch |
| 443 | * devices in D3cold or unknown states. |
| 444 | * If it is not a kexec reboot, firmware will hit the PCI |
| 445 | * devices with big hammer and stop their DMA any way. |
Khalid Aziz | b566a22 | 2012-04-27 13:00:33 -0600 | [diff] [blame] | 446 | */ |
Khalid Aziz | 4fc9bbf | 2013-11-27 15:19:25 -0700 | [diff] [blame] | 447 | if (kexec_in_progress && (pci_dev->current_state <= PCI_D3hot)) |
Konstantin Khlebnikov | 6e0eda3 | 2013-03-14 18:49:37 +0400 | [diff] [blame] | 448 | pci_clear_master(pci_dev); |
Khalid Aziz | 4fc9bbf | 2013-11-27 15:19:25 -0700 | [diff] [blame] | 449 | #endif |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 450 | } |
| 451 | |
Rafael J. Wysocki | aa33860 | 2011-02-11 00:06:54 +0100 | [diff] [blame] | 452 | #ifdef CONFIG_PM |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 453 | |
| 454 | /* Auxiliary functions used for system resume and run-time resume. */ |
| 455 | |
| 456 | /** |
| 457 | * pci_restore_standard_config - restore standard config registers of PCI device |
| 458 | * @pci_dev: PCI device to handle |
| 459 | */ |
| 460 | static int pci_restore_standard_config(struct pci_dev *pci_dev) |
| 461 | { |
| 462 | pci_update_current_state(pci_dev, PCI_UNKNOWN); |
| 463 | |
| 464 | if (pci_dev->current_state != PCI_D0) { |
| 465 | int error = pci_set_power_state(pci_dev, PCI_D0); |
| 466 | if (error) |
| 467 | return error; |
| 468 | } |
| 469 | |
Jon Mason | 1d3c16a | 2010-11-30 17:43:26 -0600 | [diff] [blame] | 470 | pci_restore_state(pci_dev); |
| 471 | return 0; |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 472 | } |
| 473 | |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 474 | #endif |
| 475 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 476 | #ifdef CONFIG_PM_SLEEP |
| 477 | |
Rafael J. Wysocki | db288c9 | 2012-07-05 15:20:00 -0600 | [diff] [blame] | 478 | static void pci_pm_default_resume_early(struct pci_dev *pci_dev) |
| 479 | { |
| 480 | pci_power_up(pci_dev); |
| 481 | pci_restore_state(pci_dev); |
| 482 | pci_fixup_device(pci_fixup_resume_early, pci_dev); |
| 483 | } |
| 484 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 485 | /* |
| 486 | * Default "suspend" method for devices that have no driver provided suspend, |
Rafael J. Wysocki | fa58d30 | 2009-01-07 13:03:42 +0100 | [diff] [blame] | 487 | * or not even a driver at all (second part). |
| 488 | */ |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 489 | static void pci_pm_set_unknown_state(struct pci_dev *pci_dev) |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 490 | { |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 491 | /* |
| 492 | * mark its power state as "unknown", since we don't know if |
| 493 | * e.g. the BIOS will change its device state when we suspend. |
| 494 | */ |
| 495 | if (pci_dev->current_state == PCI_D0) |
| 496 | pci_dev->current_state = PCI_UNKNOWN; |
| 497 | } |
| 498 | |
| 499 | /* |
| 500 | * Default "resume" method for devices that have no driver provided resume, |
Rafael J. Wysocki | 355a72d | 2008-12-08 00:34:57 +0100 | [diff] [blame] | 501 | * or not even a driver at all (second part). |
| 502 | */ |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 503 | static int pci_pm_reenable_device(struct pci_dev *pci_dev) |
Rafael J. Wysocki | 355a72d | 2008-12-08 00:34:57 +0100 | [diff] [blame] | 504 | { |
| 505 | int retval; |
| 506 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 507 | /* if the device was enabled before suspend, reenable */ |
| 508 | retval = pci_reenable_device(pci_dev); |
| 509 | /* |
| 510 | * if the device was busmaster before the suspend, make it busmaster |
| 511 | * again |
| 512 | */ |
| 513 | if (pci_dev->is_busmaster) |
| 514 | pci_set_master(pci_dev); |
| 515 | |
| 516 | return retval; |
| 517 | } |
| 518 | |
| 519 | static int pci_legacy_suspend(struct device *dev, pm_message_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | { |
| 521 | struct pci_dev * pci_dev = to_pci_dev(dev); |
| 522 | struct pci_driver * drv = pci_dev->driver; |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 523 | |
Andrew Morton | 0266949 | 2006-03-23 01:38:34 -0800 | [diff] [blame] | 524 | if (drv && drv->suspend) { |
Rafael J. Wysocki | 99dadce | 2009-02-04 01:59:09 +0100 | [diff] [blame] | 525 | pci_power_t prev = pci_dev->current_state; |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 526 | int error; |
Rafael J. Wysocki | aa8c6c9 | 2009-01-16 21:54:43 +0100 | [diff] [blame] | 527 | |
Frans Pop | 57ef802 | 2009-03-16 22:39:56 +0100 | [diff] [blame] | 528 | error = drv->suspend(pci_dev, state); |
| 529 | suspend_report_result(drv->suspend, error); |
| 530 | if (error) |
| 531 | return error; |
Rafael J. Wysocki | aa8c6c9 | 2009-01-16 21:54:43 +0100 | [diff] [blame] | 532 | |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 533 | if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0 |
Rafael J. Wysocki | 99dadce | 2009-02-04 01:59:09 +0100 | [diff] [blame] | 534 | && pci_dev->current_state != PCI_UNKNOWN) { |
| 535 | WARN_ONCE(pci_dev->current_state != prev, |
| 536 | "PCI PM: Device state not saved by %pF\n", |
| 537 | drv->suspend); |
Rafael J. Wysocki | 99dadce | 2009-02-04 01:59:09 +0100 | [diff] [blame] | 538 | } |
Andrew Morton | 0266949 | 2006-03-23 01:38:34 -0800 | [diff] [blame] | 539 | } |
Rafael J. Wysocki | ad8cfa1 | 2009-01-07 13:09:37 +0100 | [diff] [blame] | 540 | |
| 541 | pci_fixup_device(pci_fixup_suspend, pci_dev); |
| 542 | |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 543 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 544 | } |
| 545 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 546 | static int pci_legacy_suspend_late(struct device *dev, pm_message_t state) |
Linus Torvalds | cbd69db | 2006-06-24 14:50:29 -0700 | [diff] [blame] | 547 | { |
| 548 | struct pci_dev * pci_dev = to_pci_dev(dev); |
| 549 | struct pci_driver * drv = pci_dev->driver; |
Linus Torvalds | cbd69db | 2006-06-24 14:50:29 -0700 | [diff] [blame] | 550 | |
| 551 | if (drv && drv->suspend_late) { |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 552 | pci_power_t prev = pci_dev->current_state; |
| 553 | int error; |
| 554 | |
Frans Pop | 57ef802 | 2009-03-16 22:39:56 +0100 | [diff] [blame] | 555 | error = drv->suspend_late(pci_dev, state); |
| 556 | suspend_report_result(drv->suspend_late, error); |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 557 | if (error) |
| 558 | return error; |
| 559 | |
| 560 | if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0 |
| 561 | && pci_dev->current_state != PCI_UNKNOWN) { |
| 562 | WARN_ONCE(pci_dev->current_state != prev, |
| 563 | "PCI PM: Device state not saved by %pF\n", |
| 564 | drv->suspend_late); |
| 565 | return 0; |
| 566 | } |
Linus Torvalds | cbd69db | 2006-06-24 14:50:29 -0700 | [diff] [blame] | 567 | } |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 568 | |
| 569 | if (!pci_dev->state_saved) |
| 570 | pci_save_state(pci_dev); |
| 571 | |
| 572 | pci_pm_set_unknown_state(pci_dev); |
| 573 | |
| 574 | return 0; |
Linus Torvalds | cbd69db | 2006-06-24 14:50:29 -0700 | [diff] [blame] | 575 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 576 | |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 577 | static int pci_legacy_resume_early(struct device *dev) |
| 578 | { |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 579 | struct pci_dev * pci_dev = to_pci_dev(dev); |
| 580 | struct pci_driver * drv = pci_dev->driver; |
| 581 | |
Rafael J. Wysocki | aa8c6c9 | 2009-01-16 21:54:43 +0100 | [diff] [blame] | 582 | return drv && drv->resume_early ? |
| 583 | drv->resume_early(pci_dev) : 0; |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 584 | } |
| 585 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 586 | static int pci_legacy_resume(struct device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | { |
| 588 | struct pci_dev * pci_dev = to_pci_dev(dev); |
| 589 | struct pci_driver * drv = pci_dev->driver; |
| 590 | |
Rafael J. Wysocki | ad8cfa1 | 2009-01-07 13:09:37 +0100 | [diff] [blame] | 591 | pci_fixup_device(pci_fixup_resume, pci_dev); |
| 592 | |
Rafael J. Wysocki | aa8c6c9 | 2009-01-16 21:54:43 +0100 | [diff] [blame] | 593 | return drv && drv->resume ? |
| 594 | drv->resume(pci_dev) : pci_pm_reenable_device(pci_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | } |
| 596 | |
Rafael J. Wysocki | 571ff75 | 2009-01-07 13:05:05 +0100 | [diff] [blame] | 597 | /* Auxiliary functions used by the new power management framework */ |
| 598 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 599 | static void pci_pm_default_resume(struct pci_dev *pci_dev) |
Rafael J. Wysocki | 571ff75 | 2009-01-07 13:05:05 +0100 | [diff] [blame] | 600 | { |
Rafael J. Wysocki | 73410429 | 2009-01-07 13:07:15 +0100 | [diff] [blame] | 601 | pci_fixup_device(pci_fixup_resume, pci_dev); |
| 602 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 603 | if (!pci_is_bridge(pci_dev)) |
| 604 | pci_enable_wake(pci_dev, PCI_D0, false); |
Rafael J. Wysocki | 571ff75 | 2009-01-07 13:05:05 +0100 | [diff] [blame] | 605 | } |
| 606 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 607 | static void pci_pm_default_suspend(struct pci_dev *pci_dev) |
Rafael J. Wysocki | 73410429 | 2009-01-07 13:07:15 +0100 | [diff] [blame] | 608 | { |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 609 | /* Disable non-bridge devices without PM support */ |
Rafael J. Wysocki | cbbc2f6 | 2009-02-04 02:01:15 +0100 | [diff] [blame] | 610 | if (!pci_is_bridge(pci_dev)) |
| 611 | pci_disable_enabled_device(pci_dev); |
Rafael J. Wysocki | 73410429 | 2009-01-07 13:07:15 +0100 | [diff] [blame] | 612 | } |
| 613 | |
Rafael J. Wysocki | 07e836e | 2009-01-07 13:06:10 +0100 | [diff] [blame] | 614 | static bool pci_has_legacy_pm_support(struct pci_dev *pci_dev) |
| 615 | { |
| 616 | struct pci_driver *drv = pci_dev->driver; |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 617 | bool ret = drv && (drv->suspend || drv->suspend_late || drv->resume |
Rafael J. Wysocki | 07e836e | 2009-01-07 13:06:10 +0100 | [diff] [blame] | 618 | || drv->resume_early); |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 619 | |
| 620 | /* |
| 621 | * Legacy PM support is used by default, so warn if the new framework is |
| 622 | * supported as well. Drivers are supposed to support either the |
| 623 | * former, or the latter, but not both at the same time. |
| 624 | */ |
David Fries | 82440a8 | 2011-11-20 15:29:46 -0600 | [diff] [blame] | 625 | WARN(ret && drv->driver.pm, "driver %s device %04x:%04x\n", |
| 626 | drv->name, pci_dev->vendor, pci_dev->device); |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 627 | |
| 628 | return ret; |
Rafael J. Wysocki | 07e836e | 2009-01-07 13:06:10 +0100 | [diff] [blame] | 629 | } |
| 630 | |
Rafael J. Wysocki | 571ff75 | 2009-01-07 13:05:05 +0100 | [diff] [blame] | 631 | /* New power management framework */ |
| 632 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 633 | static int pci_pm_prepare(struct device *dev) |
| 634 | { |
| 635 | struct device_driver *drv = dev->driver; |
| 636 | int error = 0; |
| 637 | |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 638 | /* |
Rafael J. Wysocki | 7cd0602 | 2014-02-26 01:00:30 +0100 | [diff] [blame] | 639 | * Devices having power.ignore_children set may still be necessary for |
| 640 | * suspending their children in the next phase of device suspend. |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 641 | */ |
Rafael J. Wysocki | 7cd0602 | 2014-02-26 01:00:30 +0100 | [diff] [blame] | 642 | if (dev->power.ignore_children) |
| 643 | pm_runtime_resume(dev); |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 644 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 645 | if (drv && drv->pm && drv->pm->prepare) |
| 646 | error = drv->pm->prepare(dev); |
| 647 | |
| 648 | return error; |
| 649 | } |
| 650 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 651 | |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 652 | #else /* !CONFIG_PM_SLEEP */ |
| 653 | |
| 654 | #define pci_pm_prepare NULL |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 655 | |
| 656 | #endif /* !CONFIG_PM_SLEEP */ |
| 657 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 658 | #ifdef CONFIG_SUSPEND |
| 659 | |
| 660 | static int pci_pm_suspend(struct device *dev) |
| 661 | { |
| 662 | struct pci_dev *pci_dev = to_pci_dev(dev); |
Dmitry Torokhov | 8150f32 | 2009-07-24 22:11:32 -0700 | [diff] [blame] | 663 | const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 664 | |
Rafael J. Wysocki | ad8cfa1 | 2009-01-07 13:09:37 +0100 | [diff] [blame] | 665 | if (pci_has_legacy_pm_support(pci_dev)) |
| 666 | return pci_legacy_suspend(dev, PMSG_SUSPEND); |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 667 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 668 | if (!pm) { |
| 669 | pci_pm_default_suspend(pci_dev); |
| 670 | goto Fixup; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 671 | } |
Rafael J. Wysocki | fa58d30 | 2009-01-07 13:03:42 +0100 | [diff] [blame] | 672 | |
Rafael J. Wysocki | 7cd0602 | 2014-02-26 01:00:30 +0100 | [diff] [blame] | 673 | /* |
| 674 | * PCI devices suspended at run time need to be resumed at this point, |
| 675 | * because in general it is necessary to reconfigure them for system |
| 676 | * suspend. Namely, if the device is supposed to wake up the system |
| 677 | * from the sleep state, we may need to reconfigure it for this purpose. |
| 678 | * In turn, if the device is not supposed to wake up the system from the |
| 679 | * sleep state, we'll have to prevent it from signaling wake-up. |
| 680 | */ |
| 681 | pm_runtime_resume(dev); |
| 682 | |
Rafael J. Wysocki | 82fee4d | 2013-02-04 15:56:05 +0400 | [diff] [blame] | 683 | pci_dev->state_saved = false; |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 684 | if (pm->suspend) { |
| 685 | pci_power_t prev = pci_dev->current_state; |
| 686 | int error; |
| 687 | |
| 688 | error = pm->suspend(dev); |
| 689 | suspend_report_result(pm->suspend, error); |
| 690 | if (error) |
| 691 | return error; |
| 692 | |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 693 | if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0 |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 694 | && pci_dev->current_state != PCI_UNKNOWN) { |
| 695 | WARN_ONCE(pci_dev->current_state != prev, |
| 696 | "PCI PM: State of device not saved by %pF\n", |
| 697 | pm->suspend); |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 698 | } |
| 699 | } |
| 700 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 701 | Fixup: |
| 702 | pci_fixup_device(pci_fixup_suspend, pci_dev); |
| 703 | |
| 704 | return 0; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 705 | } |
| 706 | |
| 707 | static int pci_pm_suspend_noirq(struct device *dev) |
Greg KH | c895817 | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 708 | { |
Rafael J. Wysocki | 355a72d | 2008-12-08 00:34:57 +0100 | [diff] [blame] | 709 | struct pci_dev *pci_dev = to_pci_dev(dev); |
Dmitry Torokhov | 8150f32 | 2009-07-24 22:11:32 -0700 | [diff] [blame] | 710 | const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL; |
Greg KH | c895817 | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 711 | |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 712 | if (pci_has_legacy_pm_support(pci_dev)) |
| 713 | return pci_legacy_suspend_late(dev, PMSG_SUSPEND); |
| 714 | |
Rafael J. Wysocki | 931ff68 | 2009-03-16 22:40:50 +0100 | [diff] [blame] | 715 | if (!pm) { |
| 716 | pci_save_state(pci_dev); |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 717 | return 0; |
Rafael J. Wysocki | 931ff68 | 2009-03-16 22:40:50 +0100 | [diff] [blame] | 718 | } |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 719 | |
| 720 | if (pm->suspend_noirq) { |
| 721 | pci_power_t prev = pci_dev->current_state; |
| 722 | int error; |
| 723 | |
| 724 | error = pm->suspend_noirq(dev); |
| 725 | suspend_report_result(pm->suspend_noirq, error); |
| 726 | if (error) |
| 727 | return error; |
| 728 | |
| 729 | if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0 |
| 730 | && pci_dev->current_state != PCI_UNKNOWN) { |
| 731 | WARN_ONCE(pci_dev->current_state != prev, |
| 732 | "PCI PM: State of device not saved by %pF\n", |
| 733 | pm->suspend_noirq); |
| 734 | return 0; |
| 735 | } |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 736 | } |
| 737 | |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 738 | if (!pci_dev->state_saved) { |
| 739 | pci_save_state(pci_dev); |
| 740 | if (!pci_is_bridge(pci_dev)) |
| 741 | pci_prepare_to_sleep(pci_dev); |
| 742 | } |
Rafael J. Wysocki | d67e37d | 2009-01-07 13:11:28 +0100 | [diff] [blame] | 743 | |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 744 | pci_pm_set_unknown_state(pci_dev); |
| 745 | |
Alan Stern | dbf0e4c | 2012-07-09 11:09:21 -0400 | [diff] [blame] | 746 | /* |
| 747 | * Some BIOSes from ASUS have a bug: If a USB EHCI host controller's |
| 748 | * PCI COMMAND register isn't 0, the BIOS assumes that the controller |
| 749 | * hasn't been quiesced and tries to turn it off. If the controller |
| 750 | * is already in D3, this can hang or cause memory corruption. |
| 751 | * |
| 752 | * Since the value of the COMMAND register doesn't matter once the |
| 753 | * device has been suspended, we can safely set it to 0 here. |
| 754 | */ |
| 755 | if (pci_dev->class == PCI_CLASS_SERIAL_USB_EHCI) |
| 756 | pci_write_config_word(pci_dev, PCI_COMMAND, 0); |
| 757 | |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 758 | return 0; |
Greg KH | c895817 | 2005-04-08 14:53:31 +0900 | [diff] [blame] | 759 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 760 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 761 | static int pci_pm_resume_noirq(struct device *dev) |
| 762 | { |
Rafael J. Wysocki | 355a72d | 2008-12-08 00:34:57 +0100 | [diff] [blame] | 763 | struct pci_dev *pci_dev = to_pci_dev(dev); |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 764 | struct device_driver *drv = dev->driver; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 765 | int error = 0; |
| 766 | |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 767 | pci_pm_default_resume_early(pci_dev); |
Rafael J. Wysocki | aa8c6c9 | 2009-01-16 21:54:43 +0100 | [diff] [blame] | 768 | |
Rafael J. Wysocki | ad8cfa1 | 2009-01-07 13:09:37 +0100 | [diff] [blame] | 769 | if (pci_has_legacy_pm_support(pci_dev)) |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 770 | return pci_legacy_resume_early(dev); |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 771 | |
Rafael J. Wysocki | d67e37d | 2009-01-07 13:11:28 +0100 | [diff] [blame] | 772 | if (drv && drv->pm && drv->pm->resume_noirq) |
| 773 | error = drv->pm->resume_noirq(dev); |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 774 | |
| 775 | return error; |
| 776 | } |
| 777 | |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 778 | static int pci_pm_resume(struct device *dev) |
| 779 | { |
| 780 | struct pci_dev *pci_dev = to_pci_dev(dev); |
Dmitry Torokhov | 8150f32 | 2009-07-24 22:11:32 -0700 | [diff] [blame] | 781 | const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL; |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 782 | int error = 0; |
| 783 | |
Rafael J. Wysocki | 418e4da | 2009-01-26 21:43:08 +0100 | [diff] [blame] | 784 | /* |
| 785 | * This is necessary for the suspend error path in which resume is |
| 786 | * called without restoring the standard config registers of the device. |
| 787 | */ |
| 788 | if (pci_dev->state_saved) |
| 789 | pci_restore_standard_config(pci_dev); |
| 790 | |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 791 | if (pci_has_legacy_pm_support(pci_dev)) |
| 792 | return pci_legacy_resume(dev); |
| 793 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 794 | pci_pm_default_resume(pci_dev); |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 795 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 796 | if (pm) { |
| 797 | if (pm->resume) |
| 798 | error = pm->resume(dev); |
| 799 | } else { |
| 800 | pci_pm_reenable_device(pci_dev); |
| 801 | } |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 802 | |
Rafael J. Wysocki | 999cce4 | 2009-09-09 23:51:27 +0200 | [diff] [blame] | 803 | return error; |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 804 | } |
| 805 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 806 | #else /* !CONFIG_SUSPEND */ |
| 807 | |
| 808 | #define pci_pm_suspend NULL |
| 809 | #define pci_pm_suspend_noirq NULL |
| 810 | #define pci_pm_resume NULL |
| 811 | #define pci_pm_resume_noirq NULL |
| 812 | |
| 813 | #endif /* !CONFIG_SUSPEND */ |
| 814 | |
Rafael J. Wysocki | 1f112ce | 2011-04-11 22:54:42 +0200 | [diff] [blame] | 815 | #ifdef CONFIG_HIBERNATE_CALLBACKS |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 816 | |
Sebastian Ott | 699c198 | 2013-08-20 16:41:02 +0200 | [diff] [blame] | 817 | |
| 818 | /* |
| 819 | * pcibios_pm_ops - provide arch-specific hooks when a PCI device is doing |
| 820 | * a hibernate transition |
| 821 | */ |
| 822 | struct dev_pm_ops __weak pcibios_pm_ops; |
| 823 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 824 | static int pci_pm_freeze(struct device *dev) |
| 825 | { |
| 826 | struct pci_dev *pci_dev = to_pci_dev(dev); |
Dmitry Torokhov | 8150f32 | 2009-07-24 22:11:32 -0700 | [diff] [blame] | 827 | const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 828 | |
Rafael J. Wysocki | ad8cfa1 | 2009-01-07 13:09:37 +0100 | [diff] [blame] | 829 | if (pci_has_legacy_pm_support(pci_dev)) |
| 830 | return pci_legacy_suspend(dev, PMSG_FREEZE); |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 831 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 832 | if (!pm) { |
| 833 | pci_pm_default_suspend(pci_dev); |
| 834 | return 0; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 835 | } |
| 836 | |
Rafael J. Wysocki | 7cd0602 | 2014-02-26 01:00:30 +0100 | [diff] [blame] | 837 | /* |
| 838 | * This used to be done in pci_pm_prepare() for all devices and some |
| 839 | * drivers may depend on it, so do it here. Ideally, runtime-suspended |
| 840 | * devices should not be touched during freeze/thaw transitions, |
| 841 | * however. |
| 842 | */ |
| 843 | pm_runtime_resume(dev); |
| 844 | |
Rafael J. Wysocki | 82fee4d | 2013-02-04 15:56:05 +0400 | [diff] [blame] | 845 | pci_dev->state_saved = false; |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 846 | if (pm->freeze) { |
| 847 | int error; |
| 848 | |
| 849 | error = pm->freeze(dev); |
| 850 | suspend_report_result(pm->freeze, error); |
| 851 | if (error) |
| 852 | return error; |
| 853 | } |
| 854 | |
Sebastian Ott | 699c198 | 2013-08-20 16:41:02 +0200 | [diff] [blame] | 855 | if (pcibios_pm_ops.freeze) |
| 856 | return pcibios_pm_ops.freeze(dev); |
| 857 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 858 | return 0; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 859 | } |
| 860 | |
| 861 | static int pci_pm_freeze_noirq(struct device *dev) |
| 862 | { |
Rafael J. Wysocki | 355a72d | 2008-12-08 00:34:57 +0100 | [diff] [blame] | 863 | struct pci_dev *pci_dev = to_pci_dev(dev); |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 864 | struct device_driver *drv = dev->driver; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 865 | |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 866 | if (pci_has_legacy_pm_support(pci_dev)) |
| 867 | return pci_legacy_suspend_late(dev, PMSG_FREEZE); |
| 868 | |
Rafael J. Wysocki | d67e37d | 2009-01-07 13:11:28 +0100 | [diff] [blame] | 869 | if (drv && drv->pm && drv->pm->freeze_noirq) { |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 870 | int error; |
| 871 | |
Rafael J. Wysocki | d67e37d | 2009-01-07 13:11:28 +0100 | [diff] [blame] | 872 | error = drv->pm->freeze_noirq(dev); |
| 873 | suspend_report_result(drv->pm->freeze_noirq, error); |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 874 | if (error) |
| 875 | return error; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 876 | } |
| 877 | |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 878 | if (!pci_dev->state_saved) |
| 879 | pci_save_state(pci_dev); |
Rafael J. Wysocki | d67e37d | 2009-01-07 13:11:28 +0100 | [diff] [blame] | 880 | |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 881 | pci_pm_set_unknown_state(pci_dev); |
| 882 | |
Sebastian Ott | 699c198 | 2013-08-20 16:41:02 +0200 | [diff] [blame] | 883 | if (pcibios_pm_ops.freeze_noirq) |
| 884 | return pcibios_pm_ops.freeze_noirq(dev); |
| 885 | |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 886 | return 0; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 887 | } |
| 888 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 889 | static int pci_pm_thaw_noirq(struct device *dev) |
| 890 | { |
Rafael J. Wysocki | 355a72d | 2008-12-08 00:34:57 +0100 | [diff] [blame] | 891 | struct pci_dev *pci_dev = to_pci_dev(dev); |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 892 | struct device_driver *drv = dev->driver; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 893 | int error = 0; |
| 894 | |
Sebastian Ott | 699c198 | 2013-08-20 16:41:02 +0200 | [diff] [blame] | 895 | if (pcibios_pm_ops.thaw_noirq) { |
| 896 | error = pcibios_pm_ops.thaw_noirq(dev); |
| 897 | if (error) |
| 898 | return error; |
| 899 | } |
| 900 | |
Rafael J. Wysocki | ad8cfa1 | 2009-01-07 13:09:37 +0100 | [diff] [blame] | 901 | if (pci_has_legacy_pm_support(pci_dev)) |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 902 | return pci_legacy_resume_early(dev); |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 903 | |
Rafael J. Wysocki | d67e37d | 2009-01-07 13:11:28 +0100 | [diff] [blame] | 904 | pci_update_current_state(pci_dev, PCI_D0); |
| 905 | |
| 906 | if (drv && drv->pm && drv->pm->thaw_noirq) |
| 907 | error = drv->pm->thaw_noirq(dev); |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 908 | |
| 909 | return error; |
| 910 | } |
| 911 | |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 912 | static int pci_pm_thaw(struct device *dev) |
| 913 | { |
| 914 | struct pci_dev *pci_dev = to_pci_dev(dev); |
Dmitry Torokhov | 8150f32 | 2009-07-24 22:11:32 -0700 | [diff] [blame] | 915 | const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL; |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 916 | int error = 0; |
| 917 | |
Sebastian Ott | 699c198 | 2013-08-20 16:41:02 +0200 | [diff] [blame] | 918 | if (pcibios_pm_ops.thaw) { |
| 919 | error = pcibios_pm_ops.thaw(dev); |
| 920 | if (error) |
| 921 | return error; |
| 922 | } |
| 923 | |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 924 | if (pci_has_legacy_pm_support(pci_dev)) |
| 925 | return pci_legacy_resume(dev); |
| 926 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 927 | if (pm) { |
| 928 | if (pm->thaw) |
| 929 | error = pm->thaw(dev); |
| 930 | } else { |
| 931 | pci_pm_reenable_device(pci_dev); |
| 932 | } |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 933 | |
Rafael J. Wysocki | 4b77b0a | 2009-09-09 23:49:59 +0200 | [diff] [blame] | 934 | pci_dev->state_saved = false; |
| 935 | |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 936 | return error; |
| 937 | } |
| 938 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 939 | static int pci_pm_poweroff(struct device *dev) |
| 940 | { |
Rafael J. Wysocki | 355a72d | 2008-12-08 00:34:57 +0100 | [diff] [blame] | 941 | struct pci_dev *pci_dev = to_pci_dev(dev); |
Dmitry Torokhov | 8150f32 | 2009-07-24 22:11:32 -0700 | [diff] [blame] | 942 | const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 943 | |
Rafael J. Wysocki | ad8cfa1 | 2009-01-07 13:09:37 +0100 | [diff] [blame] | 944 | if (pci_has_legacy_pm_support(pci_dev)) |
| 945 | return pci_legacy_suspend(dev, PMSG_HIBERNATE); |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 946 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 947 | if (!pm) { |
| 948 | pci_pm_default_suspend(pci_dev); |
| 949 | goto Fixup; |
| 950 | } |
| 951 | |
Rafael J. Wysocki | 7cd0602 | 2014-02-26 01:00:30 +0100 | [diff] [blame] | 952 | /* The reason to do that is the same as in pci_pm_suspend(). */ |
| 953 | pm_runtime_resume(dev); |
| 954 | |
Rafael J. Wysocki | 82fee4d | 2013-02-04 15:56:05 +0400 | [diff] [blame] | 955 | pci_dev->state_saved = false; |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 956 | if (pm->poweroff) { |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 957 | int error; |
| 958 | |
Rafael J. Wysocki | ddb7c9d | 2009-02-04 01:56:14 +0100 | [diff] [blame] | 959 | error = pm->poweroff(dev); |
| 960 | suspend_report_result(pm->poweroff, error); |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 961 | if (error) |
| 962 | return error; |
| 963 | } |
| 964 | |
| 965 | Fixup: |
| 966 | pci_fixup_device(pci_fixup_suspend, pci_dev); |
| 967 | |
Sebastian Ott | 699c198 | 2013-08-20 16:41:02 +0200 | [diff] [blame] | 968 | if (pcibios_pm_ops.poweroff) |
| 969 | return pcibios_pm_ops.poweroff(dev); |
| 970 | |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 971 | return 0; |
| 972 | } |
| 973 | |
| 974 | static int pci_pm_poweroff_noirq(struct device *dev) |
| 975 | { |
| 976 | struct pci_dev *pci_dev = to_pci_dev(dev); |
| 977 | struct device_driver *drv = dev->driver; |
| 978 | |
| 979 | if (pci_has_legacy_pm_support(to_pci_dev(dev))) |
| 980 | return pci_legacy_suspend_late(dev, PMSG_HIBERNATE); |
| 981 | |
| 982 | if (!drv || !drv->pm) |
| 983 | return 0; |
| 984 | |
| 985 | if (drv->pm->poweroff_noirq) { |
| 986 | int error; |
| 987 | |
| 988 | error = drv->pm->poweroff_noirq(dev); |
| 989 | suspend_report_result(drv->pm->poweroff_noirq, error); |
| 990 | if (error) |
| 991 | return error; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 992 | } |
| 993 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 994 | if (!pci_dev->state_saved && !pci_is_bridge(pci_dev)) |
| 995 | pci_prepare_to_sleep(pci_dev); |
| 996 | |
Rafael J. Wysocki | 0b68c8e | 2012-08-12 23:26:07 +0200 | [diff] [blame] | 997 | /* |
| 998 | * The reason for doing this here is the same as for the analogous code |
| 999 | * in pci_pm_suspend_noirq(). |
| 1000 | */ |
| 1001 | if (pci_dev->class == PCI_CLASS_SERIAL_USB_EHCI) |
| 1002 | pci_write_config_word(pci_dev, PCI_COMMAND, 0); |
| 1003 | |
Sebastian Ott | 699c198 | 2013-08-20 16:41:02 +0200 | [diff] [blame] | 1004 | if (pcibios_pm_ops.poweroff_noirq) |
| 1005 | return pcibios_pm_ops.poweroff_noirq(dev); |
| 1006 | |
Rafael J. Wysocki | 46939f8 | 2009-03-16 22:40:26 +0100 | [diff] [blame] | 1007 | return 0; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 1008 | } |
| 1009 | |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 1010 | static int pci_pm_restore_noirq(struct device *dev) |
| 1011 | { |
| 1012 | struct pci_dev *pci_dev = to_pci_dev(dev); |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 1013 | struct device_driver *drv = dev->driver; |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 1014 | int error = 0; |
| 1015 | |
Sebastian Ott | 699c198 | 2013-08-20 16:41:02 +0200 | [diff] [blame] | 1016 | if (pcibios_pm_ops.restore_noirq) { |
| 1017 | error = pcibios_pm_ops.restore_noirq(dev); |
| 1018 | if (error) |
| 1019 | return error; |
| 1020 | } |
| 1021 | |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1022 | pci_pm_default_resume_early(pci_dev); |
Rafael J. Wysocki | aa8c6c9 | 2009-01-16 21:54:43 +0100 | [diff] [blame] | 1023 | |
Rafael J. Wysocki | ad8cfa1 | 2009-01-07 13:09:37 +0100 | [diff] [blame] | 1024 | if (pci_has_legacy_pm_support(pci_dev)) |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 1025 | return pci_legacy_resume_early(dev); |
Rafael J. Wysocki | bb80894 | 2009-01-07 14:15:17 +0100 | [diff] [blame] | 1026 | |
Rafael J. Wysocki | d67e37d | 2009-01-07 13:11:28 +0100 | [diff] [blame] | 1027 | if (drv && drv->pm && drv->pm->restore_noirq) |
| 1028 | error = drv->pm->restore_noirq(dev); |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 1029 | |
| 1030 | return error; |
| 1031 | } |
| 1032 | |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 1033 | static int pci_pm_restore(struct device *dev) |
| 1034 | { |
| 1035 | struct pci_dev *pci_dev = to_pci_dev(dev); |
Dmitry Torokhov | 8150f32 | 2009-07-24 22:11:32 -0700 | [diff] [blame] | 1036 | const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL; |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 1037 | int error = 0; |
| 1038 | |
Sebastian Ott | 699c198 | 2013-08-20 16:41:02 +0200 | [diff] [blame] | 1039 | if (pcibios_pm_ops.restore) { |
| 1040 | error = pcibios_pm_ops.restore(dev); |
| 1041 | if (error) |
| 1042 | return error; |
| 1043 | } |
| 1044 | |
Rafael J. Wysocki | 418e4da | 2009-01-26 21:43:08 +0100 | [diff] [blame] | 1045 | /* |
| 1046 | * This is necessary for the hibernation error path in which restore is |
| 1047 | * called without restoring the standard config registers of the device. |
| 1048 | */ |
| 1049 | if (pci_dev->state_saved) |
| 1050 | pci_restore_standard_config(pci_dev); |
| 1051 | |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 1052 | if (pci_has_legacy_pm_support(pci_dev)) |
| 1053 | return pci_legacy_resume(dev); |
| 1054 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 1055 | pci_pm_default_resume(pci_dev); |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 1056 | |
Rafael J. Wysocki | 5294e25 | 2009-02-04 02:09:07 +0100 | [diff] [blame] | 1057 | if (pm) { |
| 1058 | if (pm->restore) |
| 1059 | error = pm->restore(dev); |
| 1060 | } else { |
| 1061 | pci_pm_reenable_device(pci_dev); |
| 1062 | } |
Rafael J. Wysocki | f6dc1e5 | 2009-01-07 13:12:22 +0100 | [diff] [blame] | 1063 | |
| 1064 | return error; |
| 1065 | } |
| 1066 | |
Rafael J. Wysocki | 1f112ce | 2011-04-11 22:54:42 +0200 | [diff] [blame] | 1067 | #else /* !CONFIG_HIBERNATE_CALLBACKS */ |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 1068 | |
| 1069 | #define pci_pm_freeze NULL |
| 1070 | #define pci_pm_freeze_noirq NULL |
| 1071 | #define pci_pm_thaw NULL |
| 1072 | #define pci_pm_thaw_noirq NULL |
| 1073 | #define pci_pm_poweroff NULL |
| 1074 | #define pci_pm_poweroff_noirq NULL |
| 1075 | #define pci_pm_restore NULL |
| 1076 | #define pci_pm_restore_noirq NULL |
| 1077 | |
Rafael J. Wysocki | 1f112ce | 2011-04-11 22:54:42 +0200 | [diff] [blame] | 1078 | #endif /* !CONFIG_HIBERNATE_CALLBACKS */ |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 1079 | |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1080 | #ifdef CONFIG_PM_RUNTIME |
| 1081 | |
| 1082 | static int pci_pm_runtime_suspend(struct device *dev) |
| 1083 | { |
| 1084 | struct pci_dev *pci_dev = to_pci_dev(dev); |
| 1085 | const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL; |
| 1086 | pci_power_t prev = pci_dev->current_state; |
| 1087 | int error; |
| 1088 | |
Huang Ying | 967577b | 2012-11-20 16:08:22 +0800 | [diff] [blame] | 1089 | /* |
| 1090 | * If pci_dev->driver is not set (unbound), the device should |
| 1091 | * always remain in D0 regardless of the runtime PM status |
| 1092 | */ |
| 1093 | if (!pci_dev->driver) |
| 1094 | return 0; |
| 1095 | |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1096 | if (!pm || !pm->runtime_suspend) |
| 1097 | return -ENOSYS; |
| 1098 | |
Rafael J. Wysocki | 82fee4d | 2013-02-04 15:56:05 +0400 | [diff] [blame] | 1099 | pci_dev->state_saved = false; |
Huang Ying | 448bd85 | 2012-06-23 10:23:51 +0800 | [diff] [blame] | 1100 | pci_dev->no_d3cold = false; |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1101 | error = pm->runtime_suspend(dev); |
| 1102 | suspend_report_result(pm->runtime_suspend, error); |
| 1103 | if (error) |
| 1104 | return error; |
Huang Ying | 448bd85 | 2012-06-23 10:23:51 +0800 | [diff] [blame] | 1105 | if (!pci_dev->d3cold_allowed) |
| 1106 | pci_dev->no_d3cold = true; |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1107 | |
| 1108 | pci_fixup_device(pci_fixup_suspend, pci_dev); |
| 1109 | |
| 1110 | if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0 |
| 1111 | && pci_dev->current_state != PCI_UNKNOWN) { |
| 1112 | WARN_ONCE(pci_dev->current_state != prev, |
| 1113 | "PCI PM: State of device not saved by %pF\n", |
| 1114 | pm->runtime_suspend); |
| 1115 | return 0; |
| 1116 | } |
| 1117 | |
Dave Airlie | 42eca23 | 2012-10-29 17:26:54 -0600 | [diff] [blame] | 1118 | if (!pci_dev->state_saved) { |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1119 | pci_save_state(pci_dev); |
Dave Airlie | 42eca23 | 2012-10-29 17:26:54 -0600 | [diff] [blame] | 1120 | pci_finish_runtime_suspend(pci_dev); |
| 1121 | } |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1122 | |
| 1123 | return 0; |
| 1124 | } |
| 1125 | |
| 1126 | static int pci_pm_runtime_resume(struct device *dev) |
| 1127 | { |
Huang Ying | 448bd85 | 2012-06-23 10:23:51 +0800 | [diff] [blame] | 1128 | int rc; |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1129 | struct pci_dev *pci_dev = to_pci_dev(dev); |
| 1130 | const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL; |
| 1131 | |
Huang Ying | 967577b | 2012-11-20 16:08:22 +0800 | [diff] [blame] | 1132 | /* |
| 1133 | * If pci_dev->driver is not set (unbound), the device should |
| 1134 | * always remain in D0 regardless of the runtime PM status |
| 1135 | */ |
| 1136 | if (!pci_dev->driver) |
| 1137 | return 0; |
| 1138 | |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1139 | if (!pm || !pm->runtime_resume) |
| 1140 | return -ENOSYS; |
| 1141 | |
Rafael J. Wysocki | db288c9 | 2012-07-05 15:20:00 -0600 | [diff] [blame] | 1142 | pci_restore_standard_config(pci_dev); |
| 1143 | pci_fixup_device(pci_fixup_resume_early, pci_dev); |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1144 | __pci_enable_wake(pci_dev, PCI_D0, true, false); |
| 1145 | pci_fixup_device(pci_fixup_resume, pci_dev); |
| 1146 | |
Huang Ying | 448bd85 | 2012-06-23 10:23:51 +0800 | [diff] [blame] | 1147 | rc = pm->runtime_resume(dev); |
| 1148 | |
| 1149 | pci_dev->runtime_d3cold = false; |
| 1150 | |
| 1151 | return rc; |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1152 | } |
| 1153 | |
| 1154 | static int pci_pm_runtime_idle(struct device *dev) |
| 1155 | { |
Huang Ying | 967577b | 2012-11-20 16:08:22 +0800 | [diff] [blame] | 1156 | struct pci_dev *pci_dev = to_pci_dev(dev); |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1157 | const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL; |
Rafael J. Wysocki | 45f0a85 | 2013-06-03 21:49:52 +0200 | [diff] [blame] | 1158 | int ret = 0; |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1159 | |
Huang Ying | 967577b | 2012-11-20 16:08:22 +0800 | [diff] [blame] | 1160 | /* |
| 1161 | * If pci_dev->driver is not set (unbound), the device should |
| 1162 | * always remain in D0 regardless of the runtime PM status |
| 1163 | */ |
| 1164 | if (!pci_dev->driver) |
Rafael J. Wysocki | 45f0a85 | 2013-06-03 21:49:52 +0200 | [diff] [blame] | 1165 | return 0; |
Huang Ying | 967577b | 2012-11-20 16:08:22 +0800 | [diff] [blame] | 1166 | |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1167 | if (!pm) |
| 1168 | return -ENOSYS; |
| 1169 | |
Rafael J. Wysocki | 45f0a85 | 2013-06-03 21:49:52 +0200 | [diff] [blame] | 1170 | if (pm->runtime_idle) |
| 1171 | ret = pm->runtime_idle(dev); |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1172 | |
Rafael J. Wysocki | 45f0a85 | 2013-06-03 21:49:52 +0200 | [diff] [blame] | 1173 | return ret; |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1174 | } |
| 1175 | |
| 1176 | #else /* !CONFIG_PM_RUNTIME */ |
| 1177 | |
| 1178 | #define pci_pm_runtime_suspend NULL |
| 1179 | #define pci_pm_runtime_resume NULL |
| 1180 | #define pci_pm_runtime_idle NULL |
| 1181 | |
| 1182 | #endif /* !CONFIG_PM_RUNTIME */ |
| 1183 | |
Rafael J. Wysocki | aa33860 | 2011-02-11 00:06:54 +0100 | [diff] [blame] | 1184 | #ifdef CONFIG_PM |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1185 | |
Sachin Kamat | f91da04 | 2013-10-04 12:04:44 -0600 | [diff] [blame] | 1186 | static const struct dev_pm_ops pci_dev_pm_ops = { |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 1187 | .prepare = pci_pm_prepare, |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 1188 | .suspend = pci_pm_suspend, |
| 1189 | .resume = pci_pm_resume, |
| 1190 | .freeze = pci_pm_freeze, |
| 1191 | .thaw = pci_pm_thaw, |
| 1192 | .poweroff = pci_pm_poweroff, |
| 1193 | .restore = pci_pm_restore, |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 1194 | .suspend_noirq = pci_pm_suspend_noirq, |
| 1195 | .resume_noirq = pci_pm_resume_noirq, |
| 1196 | .freeze_noirq = pci_pm_freeze_noirq, |
| 1197 | .thaw_noirq = pci_pm_thaw_noirq, |
| 1198 | .poweroff_noirq = pci_pm_poweroff_noirq, |
| 1199 | .restore_noirq = pci_pm_restore_noirq, |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1200 | .runtime_suspend = pci_pm_runtime_suspend, |
| 1201 | .runtime_resume = pci_pm_runtime_resume, |
| 1202 | .runtime_idle = pci_pm_runtime_idle, |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 1203 | }; |
| 1204 | |
Rafael J. Wysocki | adf0949 | 2008-10-06 22:46:05 +0200 | [diff] [blame] | 1205 | #define PCI_PM_OPS_PTR (&pci_dev_pm_ops) |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 1206 | |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1207 | #else /* !COMFIG_PM_OPS */ |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 1208 | |
| 1209 | #define PCI_PM_OPS_PTR NULL |
| 1210 | |
Rafael J. Wysocki | 6cbf821 | 2010-02-17 23:44:58 +0100 | [diff] [blame] | 1211 | #endif /* !COMFIG_PM_OPS */ |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 1212 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1213 | /** |
Laurent riffard | 863b18f | 2005-10-27 23:12:54 +0200 | [diff] [blame] | 1214 | * __pci_register_driver - register a new pci driver |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1215 | * @drv: the driver structure to register |
Laurent riffard | 863b18f | 2005-10-27 23:12:54 +0200 | [diff] [blame] | 1216 | * @owner: owner module of drv |
Randy Dunlap | f95d882 | 2007-02-10 14:41:56 -0800 | [diff] [blame] | 1217 | * @mod_name: module name string |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 1218 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | * Adds the driver structure to the list of registered drivers. |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 1220 | * Returns a negative value on error, otherwise 0. |
| 1221 | * If no error occurred, the driver remains registered even if |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | * no device was claimed during registration. |
| 1223 | */ |
Greg Kroah-Hartman | 725522b | 2007-01-15 11:50:02 -0800 | [diff] [blame] | 1224 | int __pci_register_driver(struct pci_driver *drv, struct module *owner, |
| 1225 | const char *mod_name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | /* initialize common driver fields */ |
| 1228 | drv->driver.name = drv->name; |
| 1229 | drv->driver.bus = &pci_bus_type; |
Laurent riffard | 863b18f | 2005-10-27 23:12:54 +0200 | [diff] [blame] | 1230 | drv->driver.owner = owner; |
Greg Kroah-Hartman | 725522b | 2007-01-15 11:50:02 -0800 | [diff] [blame] | 1231 | drv->driver.mod_name = mod_name; |
Alan Cox | 50b0075 | 2006-08-16 17:42:18 +0100 | [diff] [blame] | 1232 | |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 1233 | spin_lock_init(&drv->dynids.lock); |
| 1234 | INIT_LIST_HEAD(&drv->dynids.list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1235 | |
| 1236 | /* register with core */ |
Konstantin Khlebnikov | bfb09a8 | 2012-08-08 14:47:51 +0400 | [diff] [blame] | 1237 | return driver_register(&drv->driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1238 | } |
| 1239 | |
| 1240 | /** |
| 1241 | * pci_unregister_driver - unregister a pci driver |
| 1242 | * @drv: the driver structure to unregister |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 1243 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1244 | * Deletes the driver structure from the list of registered PCI drivers, |
| 1245 | * gives it a chance to clean up by calling its remove() function for |
| 1246 | * each device it was responsible for, and marks those devices as |
| 1247 | * driverless. |
| 1248 | */ |
| 1249 | |
| 1250 | void |
| 1251 | pci_unregister_driver(struct pci_driver *drv) |
| 1252 | { |
| 1253 | driver_unregister(&drv->driver); |
| 1254 | pci_free_dynids(drv); |
| 1255 | } |
| 1256 | |
| 1257 | static struct pci_driver pci_compat_driver = { |
| 1258 | .name = "compat" |
| 1259 | }; |
| 1260 | |
| 1261 | /** |
| 1262 | * pci_dev_driver - get the pci_driver of a device |
| 1263 | * @dev: the device to query |
| 1264 | * |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 1265 | * Returns the appropriate pci_driver structure or %NULL if there is no |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | * registered driver for the device. |
| 1267 | */ |
| 1268 | struct pci_driver * |
| 1269 | pci_dev_driver(const struct pci_dev *dev) |
| 1270 | { |
| 1271 | if (dev->driver) |
| 1272 | return dev->driver; |
| 1273 | else { |
| 1274 | int i; |
| 1275 | for(i=0; i<=PCI_ROM_RESOURCE; i++) |
| 1276 | if (dev->resource[i].flags & IORESOURCE_BUSY) |
| 1277 | return &pci_compat_driver; |
| 1278 | } |
| 1279 | return NULL; |
| 1280 | } |
| 1281 | |
| 1282 | /** |
| 1283 | * pci_bus_match - Tell if a PCI device structure has a matching PCI device id structure |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | * @dev: the PCI device structure to match against |
Randy Dunlap | 8f7020d | 2005-10-23 11:57:38 -0700 | [diff] [blame] | 1285 | * @drv: the device driver to search for matching PCI device id structures |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 1286 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | * Used by a driver to check whether a PCI device present in the |
Randy Dunlap | 8f7020d | 2005-10-23 11:57:38 -0700 | [diff] [blame] | 1288 | * system is in its list of supported devices. Returns the matching |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1289 | * pci_device_id structure or %NULL if there is no match. |
| 1290 | */ |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 1291 | static int pci_bus_match(struct device *dev, struct device_driver *drv) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1292 | { |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 1293 | struct pci_dev *pci_dev = to_pci_dev(dev); |
Yinghai Lu | 58d9a38 | 2013-01-21 13:20:51 -0800 | [diff] [blame] | 1294 | struct pci_driver *pci_drv; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1295 | const struct pci_device_id *found_id; |
| 1296 | |
Yinghai Lu | 58d9a38 | 2013-01-21 13:20:51 -0800 | [diff] [blame] | 1297 | if (!pci_dev->match_driver) |
| 1298 | return 0; |
| 1299 | |
| 1300 | pci_drv = to_pci_driver(drv); |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 1301 | found_id = pci_match_device(pci_drv, pci_dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1302 | if (found_id) |
| 1303 | return 1; |
| 1304 | |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 1305 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | } |
| 1307 | |
| 1308 | /** |
| 1309 | * pci_dev_get - increments the reference count of the pci device structure |
| 1310 | * @dev: the device being referenced |
| 1311 | * |
| 1312 | * Each live reference to a device should be refcounted. |
| 1313 | * |
| 1314 | * Drivers for PCI devices should normally record such references in |
| 1315 | * their probe() methods, when they bind to a device, and release |
| 1316 | * them by calling pci_dev_put(), in their disconnect() methods. |
| 1317 | * |
| 1318 | * A pointer to the device with the incremented reference counter is returned. |
| 1319 | */ |
| 1320 | struct pci_dev *pci_dev_get(struct pci_dev *dev) |
| 1321 | { |
| 1322 | if (dev) |
| 1323 | get_device(&dev->dev); |
| 1324 | return dev; |
| 1325 | } |
| 1326 | |
| 1327 | /** |
| 1328 | * pci_dev_put - release a use of the pci device structure |
| 1329 | * @dev: device that's been disconnected |
| 1330 | * |
| 1331 | * Must be called when a user of a device is finished with it. When the last |
| 1332 | * user of the device calls this function, the memory of the device is freed. |
| 1333 | */ |
| 1334 | void pci_dev_put(struct pci_dev *dev) |
| 1335 | { |
| 1336 | if (dev) |
| 1337 | put_device(&dev->dev); |
| 1338 | } |
| 1339 | |
Bill Pemberton | 8ccc9aa | 2012-11-21 15:34:58 -0500 | [diff] [blame] | 1340 | static int pci_uevent(struct device *dev, struct kobj_uevent_env *env) |
| 1341 | { |
| 1342 | struct pci_dev *pdev; |
| 1343 | |
| 1344 | if (!dev) |
| 1345 | return -ENODEV; |
| 1346 | |
| 1347 | pdev = to_pci_dev(dev); |
| 1348 | if (!pdev) |
| 1349 | return -ENODEV; |
| 1350 | |
| 1351 | if (add_uevent_var(env, "PCI_CLASS=%04X", pdev->class)) |
| 1352 | return -ENOMEM; |
| 1353 | |
| 1354 | if (add_uevent_var(env, "PCI_ID=%04X:%04X", pdev->vendor, pdev->device)) |
| 1355 | return -ENOMEM; |
| 1356 | |
| 1357 | if (add_uevent_var(env, "PCI_SUBSYS_ID=%04X:%04X", pdev->subsystem_vendor, |
| 1358 | pdev->subsystem_device)) |
| 1359 | return -ENOMEM; |
| 1360 | |
| 1361 | if (add_uevent_var(env, "PCI_SLOT_NAME=%s", pci_name(pdev))) |
| 1362 | return -ENOMEM; |
| 1363 | |
| 1364 | if (add_uevent_var(env, "MODALIAS=pci:v%08Xd%08Xsv%08Xsd%08Xbc%02Xsc%02Xi%02x", |
| 1365 | pdev->vendor, pdev->device, |
| 1366 | pdev->subsystem_vendor, pdev->subsystem_device, |
| 1367 | (u8)(pdev->class >> 16), (u8)(pdev->class >> 8), |
| 1368 | (u8)(pdev->class))) |
| 1369 | return -ENOMEM; |
| 1370 | return 0; |
| 1371 | } |
| 1372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1373 | struct bus_type pci_bus_type = { |
| 1374 | .name = "pci", |
| 1375 | .match = pci_bus_match, |
Kay Sievers | 312c004 | 2005-11-16 09:00:00 +0100 | [diff] [blame] | 1376 | .uevent = pci_uevent, |
Russell King | b15d686 | 2006-01-05 14:30:22 +0000 | [diff] [blame] | 1377 | .probe = pci_device_probe, |
| 1378 | .remove = pci_device_remove, |
Linus Torvalds | cbd69db | 2006-06-24 14:50:29 -0700 | [diff] [blame] | 1379 | .shutdown = pci_device_shutdown, |
Greg Kroah-Hartman | 5136b2d | 2013-10-06 23:55:40 -0700 | [diff] [blame] | 1380 | .dev_groups = pci_dev_groups, |
Greg Kroah-Hartman | 0f49ba5 | 2013-10-07 14:51:02 -0600 | [diff] [blame] | 1381 | .bus_groups = pci_bus_groups, |
Greg Kroah-Hartman | 2229c1f | 2013-10-07 14:51:20 -0600 | [diff] [blame] | 1382 | .drv_groups = pci_drv_groups, |
Rafael J. Wysocki | bbb44d9 | 2008-05-20 00:49:04 +0200 | [diff] [blame] | 1383 | .pm = PCI_PM_OPS_PTR, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1384 | }; |
| 1385 | |
| 1386 | static int __init pci_driver_init(void) |
| 1387 | { |
| 1388 | return bus_register(&pci_bus_type); |
| 1389 | } |
| 1390 | |
| 1391 | postcore_initcall(pci_driver_init); |
| 1392 | |
Tejun Heo | 9dba910 | 2009-09-03 15:26:36 +0900 | [diff] [blame] | 1393 | EXPORT_SYMBOL_GPL(pci_add_dynid); |
Greg Kroah-Hartman | 7586585 | 2005-06-30 02:18:12 -0700 | [diff] [blame] | 1394 | EXPORT_SYMBOL(pci_match_id); |
Laurent riffard | 863b18f | 2005-10-27 23:12:54 +0200 | [diff] [blame] | 1395 | EXPORT_SYMBOL(__pci_register_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1396 | EXPORT_SYMBOL(pci_unregister_driver); |
| 1397 | EXPORT_SYMBOL(pci_dev_driver); |
| 1398 | EXPORT_SYMBOL(pci_bus_type); |
| 1399 | EXPORT_SYMBOL(pci_dev_get); |
| 1400 | EXPORT_SYMBOL(pci_dev_put); |