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