blob: 46767c53917a5e28ee8fcec10d92de6c39609eba [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * drivers/pci/pci-driver.c
3 *
Greg Kroah-Hartman2b937302007-11-28 12:23:18 -08004 * (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 Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
11#include <linux/pci.h>
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/device.h>
Andi Kleend42c6992005-07-06 19:56:03 +020015#include <linux/mempolicy.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080016#include <linux/string.h>
17#include <linux/slab.h>
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080018#include <linux/sched.h>
Rusty Russell873392c2008-12-31 23:54:56 +103019#include <linux/cpu.h>
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +010020#include <linux/pm_runtime.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "pci.h"
22
Greg Kroah-Hartman75865852005-06-30 02:18:12 -070023struct pci_dynid {
24 struct list_head node;
25 struct pci_device_id id;
26};
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/**
Tejun Heo9dba9102009-09-03 15:26:36 +090029 * pci_add_dynid - add a new PCI device ID to this driver and re-probe devices
30 * @drv: target pci driver
31 * @vendor: PCI vendor ID
32 * @device: PCI device ID
33 * @subvendor: PCI subvendor ID
34 * @subdevice: PCI subdevice ID
35 * @class: PCI class
36 * @class_mask: PCI class mask
37 * @driver_data: private driver data
38 *
39 * Adds a new dynamic pci device ID to this driver and causes the
40 * driver to probe for all devices again. @drv must have been
41 * registered prior to calling this function.
42 *
43 * CONTEXT:
44 * Does GFP_KERNEL allocation.
45 *
46 * RETURNS:
47 * 0 on success, -errno on failure.
48 */
49int pci_add_dynid(struct pci_driver *drv,
50 unsigned int vendor, unsigned int device,
51 unsigned int subvendor, unsigned int subdevice,
52 unsigned int class, unsigned int class_mask,
53 unsigned long driver_data)
54{
55 struct pci_dynid *dynid;
56 int retval;
57
58 dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
59 if (!dynid)
60 return -ENOMEM;
61
62 dynid->id.vendor = vendor;
63 dynid->id.device = device;
64 dynid->id.subvendor = subvendor;
65 dynid->id.subdevice = subdevice;
66 dynid->id.class = class;
67 dynid->id.class_mask = class_mask;
68 dynid->id.driver_data = driver_data;
69
70 spin_lock(&drv->dynids.lock);
71 list_add_tail(&dynid->node, &drv->dynids.list);
72 spin_unlock(&drv->dynids.lock);
73
74 get_driver(&drv->driver);
75 retval = driver_attach(&drv->driver);
76 put_driver(&drv->driver);
77
78 return retval;
79}
80
81static 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
93/*
94 * Dynamic device ID manipulation via sysfs is disabled for !CONFIG_HOTPLUG
95 */
96#ifdef CONFIG_HOTPLUG
97/**
98 * store_new_id - sysfs frontend to pci_add_dynid()
Randy Dunlap8f7020d2005-10-23 11:57:38 -070099 * @driver: target device driver
100 * @buf: buffer for scanning device ID data
101 * @count: input size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 *
Tejun Heo9dba9102009-09-03 15:26:36 +0900103 * Allow PCI IDs to be added to an existing driver via sysfs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 */
Randy Dunlapf8eb1002005-10-28 20:36:51 -0700105static ssize_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106store_new_id(struct device_driver *driver, const char *buf, size_t count)
107{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 struct pci_driver *pdrv = to_pci_driver(driver);
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200109 const struct pci_device_id *ids = pdrv->id_table;
Jean Delvare6ba18632007-04-07 17:21:28 +0200110 __u32 vendor, device, subvendor=PCI_ANY_ID,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 subdevice=PCI_ANY_ID, class=0, class_mask=0;
112 unsigned long driver_data=0;
113 int fields=0;
Tejun Heo9dba9102009-09-03 15:26:36 +0900114 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200116 fields = sscanf(buf, "%x %x %x %x %x %x %lx",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 &vendor, &device, &subvendor, &subdevice,
118 &class, &class_mask, &driver_data);
Jean Delvare6ba18632007-04-07 17:21:28 +0200119 if (fields < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 return -EINVAL;
121
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200122 /* Only accept driver_data values that match an existing id_table
123 entry */
Chris Wright2debb4d2008-11-25 19:36:10 -0800124 if (ids) {
125 retval = -EINVAL;
126 while (ids->vendor || ids->subvendor || ids->class_mask) {
127 if (driver_data == ids->driver_data) {
128 retval = 0;
129 break;
130 }
131 ids++;
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200132 }
Chris Wright2debb4d2008-11-25 19:36:10 -0800133 if (retval) /* No match */
134 return retval;
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200135 }
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200136
Tejun Heo9dba9102009-09-03 15:26:36 +0900137 retval = pci_add_dynid(pdrv, vendor, device, subvendor, subdevice,
138 class, class_mask, driver_data);
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700139 if (retval)
140 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 return count;
142}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Chris Wright09943752009-02-23 21:52:23 -0800145/**
146 * store_remove_id - remove a PCI device ID from this driver
147 * @driver: target device driver
148 * @buf: buffer for scanning device ID data
149 * @count: input size
150 *
151 * Removes a dynamic pci device ID to this driver.
152 */
153static ssize_t
154store_remove_id(struct device_driver *driver, const char *buf, size_t count)
155{
156 struct pci_dynid *dynid, *n;
157 struct pci_driver *pdrv = to_pci_driver(driver);
158 __u32 vendor, device, subvendor = PCI_ANY_ID,
159 subdevice = PCI_ANY_ID, class = 0, class_mask = 0;
160 int fields = 0;
161 int retval = -ENODEV;
162
163 fields = sscanf(buf, "%x %x %x %x %x %x",
164 &vendor, &device, &subvendor, &subdevice,
165 &class, &class_mask);
166 if (fields < 2)
167 return -EINVAL;
168
169 spin_lock(&pdrv->dynids.lock);
170 list_for_each_entry_safe(dynid, n, &pdrv->dynids.list, node) {
171 struct pci_device_id *id = &dynid->id;
172 if ((id->vendor == vendor) &&
173 (id->device == device) &&
174 (subvendor == PCI_ANY_ID || id->subvendor == subvendor) &&
175 (subdevice == PCI_ANY_ID || id->subdevice == subdevice) &&
176 !((id->class ^ class) & class_mask)) {
177 list_del(&dynid->node);
178 kfree(dynid);
179 retval = 0;
180 break;
181 }
182 }
183 spin_unlock(&pdrv->dynids.lock);
184
185 if (retval)
186 return retval;
187 return count;
188}
189static DRIVER_ATTR(remove_id, S_IWUSR, NULL, store_remove_id);
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191static int
192pci_create_newid_file(struct pci_driver *drv)
193{
194 int error = 0;
195 if (drv->probe != NULL)
Greg Kroah-Hartman03d43b12007-11-28 12:23:18 -0800196 error = driver_create_file(&drv->driver, &driver_attr_new_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 return error;
198}
199
Greg Kroah-Hartman03d43b12007-11-28 12:23:18 -0800200static void pci_remove_newid_file(struct pci_driver *drv)
201{
202 driver_remove_file(&drv->driver, &driver_attr_new_id);
203}
Chris Wright09943752009-02-23 21:52:23 -0800204
205static int
206pci_create_removeid_file(struct pci_driver *drv)
207{
208 int error = 0;
209 if (drv->probe != NULL)
210 error = driver_create_file(&drv->driver,&driver_attr_remove_id);
211 return error;
212}
213
214static void pci_remove_removeid_file(struct pci_driver *drv)
215{
216 driver_remove_file(&drv->driver, &driver_attr_remove_id);
217}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218#else /* !CONFIG_HOTPLUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219static inline int pci_create_newid_file(struct pci_driver *drv)
220{
221 return 0;
222}
Greg Kroah-Hartman03d43b12007-11-28 12:23:18 -0800223static inline void pci_remove_newid_file(struct pci_driver *drv) {}
Chris Wright09943752009-02-23 21:52:23 -0800224static inline int pci_create_removeid_file(struct pci_driver *drv)
225{
226 return 0;
227}
228static inline void pci_remove_removeid_file(struct pci_driver *drv) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229#endif
230
231/**
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700232 * pci_match_id - See if a pci device matches a given pci_id table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 * @ids: array of PCI device id structures to search in
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700234 * @dev: the PCI device structure to match against.
235 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 * Used by a driver to check whether a PCI device present in the
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700237 * system is in its list of supported devices. Returns the matching
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 * pci_device_id structure or %NULL if there is no match.
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700239 *
Randy Dunlap8b607562007-05-09 07:19:14 +0200240 * Deprecated, don't use this as it will not catch any dynamic ids
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700241 * that a driver might want to check for.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 */
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700243const struct pci_device_id *pci_match_id(const struct pci_device_id *ids,
244 struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700246 if (ids) {
247 while (ids->vendor || ids->subvendor || ids->class_mask) {
248 if (pci_match_one_device(ids, dev))
249 return ids;
250 ids++;
251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253 return NULL;
254}
255
256/**
Randy Dunlapae9608a2007-01-09 21:41:01 -0800257 * pci_match_device - Tell if a PCI device structure has a matching PCI device id structure
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700258 * @drv: the PCI driver to match against
Henrik Kretzschmar39ba4872006-08-15 10:57:16 +0200259 * @dev: the PCI device structure to match against
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700260 *
261 * Used by a driver to check whether a PCI device present in the
262 * system is in its list of supported devices. Returns the matching
263 * pci_device_id structure or %NULL if there is no match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 */
Adrian Bunkd73460d2007-10-24 18:27:18 +0200265static const struct pci_device_id *pci_match_device(struct pci_driver *drv,
266 struct pci_dev *dev)
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700267{
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700268 struct pci_dynid *dynid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Russell King7461b602006-11-29 21:18:04 +0000270 /* Look at the dynamic ids first, before the static ones */
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700271 spin_lock(&drv->dynids.lock);
272 list_for_each_entry(dynid, &drv->dynids.list, node) {
273 if (pci_match_one_device(&dynid->id, dev)) {
274 spin_unlock(&drv->dynids.lock);
275 return &dynid->id;
276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700278 spin_unlock(&drv->dynids.lock);
Russell King7461b602006-11-29 21:18:04 +0000279
280 return pci_match_id(drv->id_table, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
Rusty Russell873392c2008-12-31 23:54:56 +1030283struct drv_dev_and_id {
284 struct pci_driver *drv;
285 struct pci_dev *dev;
286 const struct pci_device_id *id;
287};
288
289static long local_pci_probe(void *_ddi)
290{
291 struct drv_dev_and_id *ddi = _ddi;
Alan Sternf3ec4f82010-06-08 15:23:51 -0400292 struct device *dev = &ddi->dev->dev;
293 int rc;
Rusty Russell873392c2008-12-31 23:54:56 +1030294
Alan Sternf3ec4f82010-06-08 15:23:51 -0400295 /* Unbound PCI devices are always set to disabled and suspended.
296 * During probe, the device is set to enabled and active and the
297 * usage count is incremented. If the driver supports runtime PM,
298 * it should call pm_runtime_put_noidle() in its probe routine and
299 * pm_runtime_get_noresume() in its remove routine.
300 */
301 pm_runtime_get_noresume(dev);
302 pm_runtime_set_active(dev);
303 pm_runtime_enable(dev);
304
305 rc = ddi->drv->probe(ddi->dev, ddi->id);
306 if (rc) {
307 pm_runtime_disable(dev);
308 pm_runtime_set_suspended(dev);
309 pm_runtime_put_noidle(dev);
310 }
311 return rc;
Rusty Russell873392c2008-12-31 23:54:56 +1030312}
313
Andi Kleend42c6992005-07-06 19:56:03 +0200314static int pci_call_probe(struct pci_driver *drv, struct pci_dev *dev,
315 const struct pci_device_id *id)
316{
Rusty Russell873392c2008-12-31 23:54:56 +1030317 int error, node;
318 struct drv_dev_and_id ddi = { drv, dev, id };
Mike Travisf70316d2008-04-04 18:11:06 -0700319
Rusty Russell873392c2008-12-31 23:54:56 +1030320 /* Execute driver initialization on node where the device's
321 bus is attached to. This way the driver likely allocates
322 its local memory on the right node without any need to
323 change it. */
324 node = dev_to_node(&dev->dev);
Mike Travisf70316d2008-04-04 18:11:06 -0700325 if (node >= 0) {
Rusty Russell873392c2008-12-31 23:54:56 +1030326 int cpu;
Rusty Russell873392c2008-12-31 23:54:56 +1030327
328 get_online_cpus();
Rusty Russella70f7302009-03-13 14:49:46 +1030329 cpu = cpumask_any_and(cpumask_of_node(node), cpu_online_mask);
Rusty Russell873392c2008-12-31 23:54:56 +1030330 if (cpu < nr_cpu_ids)
331 error = work_on_cpu(cpu, local_pci_probe, &ddi);
332 else
333 error = local_pci_probe(&ddi);
334 put_online_cpus();
335 } else
336 error = local_pci_probe(&ddi);
Andi Kleend42c6992005-07-06 19:56:03 +0200337 return error;
338}
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340/**
Randy Dunlap23ea3792010-11-18 15:02:31 -0800341 * __pci_device_probe - check if a driver wants to claim a specific PCI device
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700342 * @drv: driver to call to check if it wants the PCI device
343 * @pci_dev: PCI device being probed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 *
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700345 * returns 0 on success, else error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * side-effect: pci_dev->driver is set to drv when drv claims pci_dev.
347 */
348static int
349__pci_device_probe(struct pci_driver *drv, struct pci_dev *pci_dev)
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700350{
351 const struct pci_device_id *id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 int error = 0;
353
354 if (!pci_dev->driver && drv->probe) {
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700355 error = -ENODEV;
356
357 id = pci_match_device(drv, pci_dev);
358 if (id)
Andi Kleend42c6992005-07-06 19:56:03 +0200359 error = pci_call_probe(drv, pci_dev, id);
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700360 if (error >= 0) {
361 pci_dev->driver = drv;
362 error = 0;
363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 }
365 return error;
366}
367
368static int pci_device_probe(struct device * dev)
369{
370 int error = 0;
371 struct pci_driver *drv;
372 struct pci_dev *pci_dev;
373
374 drv = to_pci_driver(dev->driver);
375 pci_dev = to_pci_dev(dev);
376 pci_dev_get(pci_dev);
377 error = __pci_device_probe(drv, pci_dev);
378 if (error)
379 pci_dev_put(pci_dev);
380
381 return error;
382}
383
384static int pci_device_remove(struct device * dev)
385{
386 struct pci_dev * pci_dev = to_pci_dev(dev);
387 struct pci_driver * drv = pci_dev->driver;
388
389 if (drv) {
Alan Sternf3ec4f82010-06-08 15:23:51 -0400390 if (drv->remove) {
391 pm_runtime_get_sync(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 drv->remove(pci_dev);
Alan Sternf3ec4f82010-06-08 15:23:51 -0400393 pm_runtime_put_noidle(dev);
394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 pci_dev->driver = NULL;
396 }
397
Alan Sternf3ec4f82010-06-08 15:23:51 -0400398 /* Undo the runtime PM settings in local_pci_probe() */
399 pm_runtime_disable(dev);
400 pm_runtime_set_suspended(dev);
401 pm_runtime_put_noidle(dev);
402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 /*
Shaohua Li2449e062006-10-20 14:45:32 -0700404 * If the device is still on, set the power state as "unknown",
405 * since it might change by the next time we load the driver.
406 */
407 if (pci_dev->current_state == PCI_D0)
408 pci_dev->current_state = PCI_UNKNOWN;
409
410 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 * We would love to complain here if pci_dev->is_enabled is set, that
412 * the driver should have called pci_disable_device(), but the
413 * unfortunate fact is there are too many odd BIOS and bridge setups
414 * that don't like drivers doing that all of the time.
415 * Oh well, we can dream of sane hardware when we sleep, no matter how
416 * horrible the crap we have to deal with is when we are awake...
417 */
418
419 pci_dev_put(pci_dev);
420 return 0;
421}
422
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200423static void pci_device_shutdown(struct device *dev)
424{
425 struct pci_dev *pci_dev = to_pci_dev(dev);
426 struct pci_driver *drv = pci_dev->driver;
427
428 if (drv && drv->shutdown)
429 drv->shutdown(pci_dev);
430 pci_msi_shutdown(pci_dev);
431 pci_msix_shutdown(pci_dev);
432}
433
Rafael J. Wysockiaa338602011-02-11 00:06:54 +0100434#ifdef CONFIG_PM
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100435
436/* Auxiliary functions used for system resume and run-time resume. */
437
438/**
439 * pci_restore_standard_config - restore standard config registers of PCI device
440 * @pci_dev: PCI device to handle
441 */
442static int pci_restore_standard_config(struct pci_dev *pci_dev)
443{
444 pci_update_current_state(pci_dev, PCI_UNKNOWN);
445
446 if (pci_dev->current_state != PCI_D0) {
447 int error = pci_set_power_state(pci_dev, PCI_D0);
448 if (error)
449 return error;
450 }
451
Jon Mason1d3c16a2010-11-30 17:43:26 -0600452 pci_restore_state(pci_dev);
453 return 0;
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100454}
455
456static void pci_pm_default_resume_early(struct pci_dev *pci_dev)
457{
458 pci_restore_standard_config(pci_dev);
459 pci_fixup_device(pci_fixup_resume_early, pci_dev);
460}
461
462#endif
463
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200464#ifdef CONFIG_PM_SLEEP
465
466/*
467 * Default "suspend" method for devices that have no driver provided suspend,
Rafael J. Wysockifa58d302009-01-07 13:03:42 +0100468 * or not even a driver at all (second part).
469 */
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100470static void pci_pm_set_unknown_state(struct pci_dev *pci_dev)
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200471{
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200472 /*
473 * mark its power state as "unknown", since we don't know if
474 * e.g. the BIOS will change its device state when we suspend.
475 */
476 if (pci_dev->current_state == PCI_D0)
477 pci_dev->current_state = PCI_UNKNOWN;
478}
479
480/*
481 * Default "resume" method for devices that have no driver provided resume,
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100482 * or not even a driver at all (second part).
483 */
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100484static int pci_pm_reenable_device(struct pci_dev *pci_dev)
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100485{
486 int retval;
487
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200488 /* if the device was enabled before suspend, reenable */
489 retval = pci_reenable_device(pci_dev);
490 /*
491 * if the device was busmaster before the suspend, make it busmaster
492 * again
493 */
494 if (pci_dev->is_busmaster)
495 pci_set_master(pci_dev);
496
497 return retval;
498}
499
500static int pci_legacy_suspend(struct device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
502 struct pci_dev * pci_dev = to_pci_dev(dev);
503 struct pci_driver * drv = pci_dev->driver;
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100504
Andrew Morton02669492006-03-23 01:38:34 -0800505 if (drv && drv->suspend) {
Rafael J. Wysocki99dadce2009-02-04 01:59:09 +0100506 pci_power_t prev = pci_dev->current_state;
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100507 int error;
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100508
Frans Pop57ef8022009-03-16 22:39:56 +0100509 error = drv->suspend(pci_dev, state);
510 suspend_report_result(drv->suspend, error);
511 if (error)
512 return error;
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100513
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100514 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
Rafael J. Wysocki99dadce2009-02-04 01:59:09 +0100515 && pci_dev->current_state != PCI_UNKNOWN) {
516 WARN_ONCE(pci_dev->current_state != prev,
517 "PCI PM: Device state not saved by %pF\n",
518 drv->suspend);
Rafael J. Wysocki99dadce2009-02-04 01:59:09 +0100519 }
Andrew Morton02669492006-03-23 01:38:34 -0800520 }
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100521
522 pci_fixup_device(pci_fixup_suspend, pci_dev);
523
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100524 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200527static int pci_legacy_suspend_late(struct device *dev, pm_message_t state)
Linus Torvaldscbd69db2006-06-24 14:50:29 -0700528{
529 struct pci_dev * pci_dev = to_pci_dev(dev);
530 struct pci_driver * drv = pci_dev->driver;
Linus Torvaldscbd69db2006-06-24 14:50:29 -0700531
532 if (drv && drv->suspend_late) {
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100533 pci_power_t prev = pci_dev->current_state;
534 int error;
535
Frans Pop57ef8022009-03-16 22:39:56 +0100536 error = drv->suspend_late(pci_dev, state);
537 suspend_report_result(drv->suspend_late, error);
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100538 if (error)
539 return error;
540
541 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
542 && pci_dev->current_state != PCI_UNKNOWN) {
543 WARN_ONCE(pci_dev->current_state != prev,
544 "PCI PM: Device state not saved by %pF\n",
545 drv->suspend_late);
546 return 0;
547 }
Linus Torvaldscbd69db2006-06-24 14:50:29 -0700548 }
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100549
550 if (!pci_dev->state_saved)
551 pci_save_state(pci_dev);
552
553 pci_pm_set_unknown_state(pci_dev);
554
555 return 0;
Linus Torvaldscbd69db2006-06-24 14:50:29 -0700556}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100558static int pci_legacy_resume_early(struct device *dev)
559{
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100560 struct pci_dev * pci_dev = to_pci_dev(dev);
561 struct pci_driver * drv = pci_dev->driver;
562
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100563 return drv && drv->resume_early ?
564 drv->resume_early(pci_dev) : 0;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100565}
566
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200567static int pci_legacy_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
569 struct pci_dev * pci_dev = to_pci_dev(dev);
570 struct pci_driver * drv = pci_dev->driver;
571
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100572 pci_fixup_device(pci_fixup_resume, pci_dev);
573
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100574 return drv && drv->resume ?
575 drv->resume(pci_dev) : pci_pm_reenable_device(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
577
Rafael J. Wysocki571ff752009-01-07 13:05:05 +0100578/* Auxiliary functions used by the new power management framework */
579
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100580static void pci_pm_default_resume(struct pci_dev *pci_dev)
Rafael J. Wysocki571ff752009-01-07 13:05:05 +0100581{
Rafael J. Wysocki734104292009-01-07 13:07:15 +0100582 pci_fixup_device(pci_fixup_resume, pci_dev);
583
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100584 if (!pci_is_bridge(pci_dev))
585 pci_enable_wake(pci_dev, PCI_D0, false);
Rafael J. Wysocki571ff752009-01-07 13:05:05 +0100586}
587
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100588static void pci_pm_default_suspend(struct pci_dev *pci_dev)
Rafael J. Wysocki734104292009-01-07 13:07:15 +0100589{
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100590 /* Disable non-bridge devices without PM support */
Rafael J. Wysockicbbc2f62009-02-04 02:01:15 +0100591 if (!pci_is_bridge(pci_dev))
592 pci_disable_enabled_device(pci_dev);
Rafael J. Wysocki734104292009-01-07 13:07:15 +0100593}
594
Rafael J. Wysocki07e836e2009-01-07 13:06:10 +0100595static bool pci_has_legacy_pm_support(struct pci_dev *pci_dev)
596{
597 struct pci_driver *drv = pci_dev->driver;
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100598 bool ret = drv && (drv->suspend || drv->suspend_late || drv->resume
Rafael J. Wysocki07e836e2009-01-07 13:06:10 +0100599 || drv->resume_early);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100600
601 /*
602 * Legacy PM support is used by default, so warn if the new framework is
603 * supported as well. Drivers are supposed to support either the
604 * former, or the latter, but not both at the same time.
605 */
606 WARN_ON(ret && drv->driver.pm);
607
608 return ret;
Rafael J. Wysocki07e836e2009-01-07 13:06:10 +0100609}
610
Rafael J. Wysocki571ff752009-01-07 13:05:05 +0100611/* New power management framework */
612
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200613static int pci_pm_prepare(struct device *dev)
614{
615 struct device_driver *drv = dev->driver;
616 int error = 0;
617
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100618 /*
619 * PCI devices suspended at run time need to be resumed at this
620 * point, because in general it is necessary to reconfigure them for
621 * system suspend. Namely, if the device is supposed to wake up the
622 * system from the sleep state, we may need to reconfigure it for this
623 * purpose. In turn, if the device is not supposed to wake up the
624 * system from the sleep state, we'll have to prevent it from signaling
625 * wake-up.
626 */
Rafael J. Wysockia5f76d52011-06-21 23:47:15 +0200627 pm_runtime_get_sync(dev);
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100628
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200629 if (drv && drv->pm && drv->pm->prepare)
630 error = drv->pm->prepare(dev);
631
632 return error;
633}
634
635static void pci_pm_complete(struct device *dev)
636{
637 struct device_driver *drv = dev->driver;
638
639 if (drv && drv->pm && drv->pm->complete)
640 drv->pm->complete(dev);
Rafael J. Wysockia5f76d52011-06-21 23:47:15 +0200641
642 pm_runtime_put_sync(dev);
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200643}
644
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100645#else /* !CONFIG_PM_SLEEP */
646
647#define pci_pm_prepare NULL
648#define pci_pm_complete NULL
649
650#endif /* !CONFIG_PM_SLEEP */
651
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200652#ifdef CONFIG_SUSPEND
653
654static int pci_pm_suspend(struct device *dev)
655{
656 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700657 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200658
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100659 if (pci_has_legacy_pm_support(pci_dev))
660 return pci_legacy_suspend(dev, PMSG_SUSPEND);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100661
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100662 if (!pm) {
663 pci_pm_default_suspend(pci_dev);
664 goto Fixup;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200665 }
Rafael J. Wysockifa58d302009-01-07 13:03:42 +0100666
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100667 if (pm->suspend) {
668 pci_power_t prev = pci_dev->current_state;
669 int error;
670
671 error = pm->suspend(dev);
672 suspend_report_result(pm->suspend, error);
673 if (error)
674 return error;
675
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100676 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100677 && pci_dev->current_state != PCI_UNKNOWN) {
678 WARN_ONCE(pci_dev->current_state != prev,
679 "PCI PM: State of device not saved by %pF\n",
680 pm->suspend);
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100681 }
682 }
683
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100684 Fixup:
685 pci_fixup_device(pci_fixup_suspend, pci_dev);
686
687 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200688}
689
690static int pci_pm_suspend_noirq(struct device *dev)
Greg KHc8958172005-04-08 14:53:31 +0900691{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100692 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700693 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Greg KHc8958172005-04-08 14:53:31 +0900694
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100695 if (pci_has_legacy_pm_support(pci_dev))
696 return pci_legacy_suspend_late(dev, PMSG_SUSPEND);
697
Rafael J. Wysocki931ff682009-03-16 22:40:50 +0100698 if (!pm) {
699 pci_save_state(pci_dev);
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100700 return 0;
Rafael J. Wysocki931ff682009-03-16 22:40:50 +0100701 }
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100702
703 if (pm->suspend_noirq) {
704 pci_power_t prev = pci_dev->current_state;
705 int error;
706
707 error = pm->suspend_noirq(dev);
708 suspend_report_result(pm->suspend_noirq, error);
709 if (error)
710 return error;
711
712 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
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_noirq);
717 return 0;
718 }
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200719 }
720
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100721 if (!pci_dev->state_saved) {
722 pci_save_state(pci_dev);
723 if (!pci_is_bridge(pci_dev))
724 pci_prepare_to_sleep(pci_dev);
725 }
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100726
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100727 pci_pm_set_unknown_state(pci_dev);
728
729 return 0;
Greg KHc8958172005-04-08 14:53:31 +0900730}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200732static int pci_pm_resume_noirq(struct device *dev)
733{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100734 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200735 struct device_driver *drv = dev->driver;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200736 int error = 0;
737
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100738 pci_pm_default_resume_early(pci_dev);
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100739
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100740 if (pci_has_legacy_pm_support(pci_dev))
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100741 return pci_legacy_resume_early(dev);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100742
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100743 if (drv && drv->pm && drv->pm->resume_noirq)
744 error = drv->pm->resume_noirq(dev);
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200745
746 return error;
747}
748
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100749static int pci_pm_resume(struct device *dev)
750{
751 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700752 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100753 int error = 0;
754
Rafael J. Wysocki418e4da2009-01-26 21:43:08 +0100755 /*
756 * This is necessary for the suspend error path in which resume is
757 * called without restoring the standard config registers of the device.
758 */
759 if (pci_dev->state_saved)
760 pci_restore_standard_config(pci_dev);
761
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100762 if (pci_has_legacy_pm_support(pci_dev))
763 return pci_legacy_resume(dev);
764
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100765 pci_pm_default_resume(pci_dev);
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100766
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100767 if (pm) {
768 if (pm->resume)
769 error = pm->resume(dev);
770 } else {
771 pci_pm_reenable_device(pci_dev);
772 }
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100773
Rafael J. Wysocki999cce42009-09-09 23:51:27 +0200774 return error;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100775}
776
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200777#else /* !CONFIG_SUSPEND */
778
779#define pci_pm_suspend NULL
780#define pci_pm_suspend_noirq NULL
781#define pci_pm_resume NULL
782#define pci_pm_resume_noirq NULL
783
784#endif /* !CONFIG_SUSPEND */
785
Rafael J. Wysocki1f112ce2011-04-11 22:54:42 +0200786#ifdef CONFIG_HIBERNATE_CALLBACKS
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200787
788static int pci_pm_freeze(struct device *dev)
789{
790 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700791 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200792
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100793 if (pci_has_legacy_pm_support(pci_dev))
794 return pci_legacy_suspend(dev, PMSG_FREEZE);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100795
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100796 if (!pm) {
797 pci_pm_default_suspend(pci_dev);
798 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200799 }
800
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100801 if (pm->freeze) {
802 int error;
803
804 error = pm->freeze(dev);
805 suspend_report_result(pm->freeze, error);
806 if (error)
807 return error;
808 }
809
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100810 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200811}
812
813static int pci_pm_freeze_noirq(struct device *dev)
814{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100815 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200816 struct device_driver *drv = dev->driver;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200817
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100818 if (pci_has_legacy_pm_support(pci_dev))
819 return pci_legacy_suspend_late(dev, PMSG_FREEZE);
820
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100821 if (drv && drv->pm && drv->pm->freeze_noirq) {
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100822 int error;
823
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100824 error = drv->pm->freeze_noirq(dev);
825 suspend_report_result(drv->pm->freeze_noirq, error);
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100826 if (error)
827 return error;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200828 }
829
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100830 if (!pci_dev->state_saved)
831 pci_save_state(pci_dev);
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100832
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100833 pci_pm_set_unknown_state(pci_dev);
834
835 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200836}
837
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200838static int pci_pm_thaw_noirq(struct device *dev)
839{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100840 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200841 struct device_driver *drv = dev->driver;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200842 int error = 0;
843
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100844 if (pci_has_legacy_pm_support(pci_dev))
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100845 return pci_legacy_resume_early(dev);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100846
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100847 pci_update_current_state(pci_dev, PCI_D0);
848
849 if (drv && drv->pm && drv->pm->thaw_noirq)
850 error = drv->pm->thaw_noirq(dev);
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200851
852 return error;
853}
854
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100855static int pci_pm_thaw(struct device *dev)
856{
857 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700858 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100859 int error = 0;
860
861 if (pci_has_legacy_pm_support(pci_dev))
862 return pci_legacy_resume(dev);
863
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100864 if (pm) {
865 if (pm->thaw)
866 error = pm->thaw(dev);
867 } else {
868 pci_pm_reenable_device(pci_dev);
869 }
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100870
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +0200871 pci_dev->state_saved = false;
872
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100873 return error;
874}
875
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200876static int pci_pm_poweroff(struct device *dev)
877{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100878 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700879 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200880
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100881 if (pci_has_legacy_pm_support(pci_dev))
882 return pci_legacy_suspend(dev, PMSG_HIBERNATE);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100883
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100884 if (!pm) {
885 pci_pm_default_suspend(pci_dev);
886 goto Fixup;
887 }
888
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100889 if (pm->poweroff) {
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100890 int error;
891
Rafael J. Wysockiddb7c9d2009-02-04 01:56:14 +0100892 error = pm->poweroff(dev);
893 suspend_report_result(pm->poweroff, error);
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100894 if (error)
895 return error;
896 }
897
898 Fixup:
899 pci_fixup_device(pci_fixup_suspend, pci_dev);
900
901 return 0;
902}
903
904static int pci_pm_poweroff_noirq(struct device *dev)
905{
906 struct pci_dev *pci_dev = to_pci_dev(dev);
907 struct device_driver *drv = dev->driver;
908
909 if (pci_has_legacy_pm_support(to_pci_dev(dev)))
910 return pci_legacy_suspend_late(dev, PMSG_HIBERNATE);
911
912 if (!drv || !drv->pm)
913 return 0;
914
915 if (drv->pm->poweroff_noirq) {
916 int error;
917
918 error = drv->pm->poweroff_noirq(dev);
919 suspend_report_result(drv->pm->poweroff_noirq, error);
920 if (error)
921 return error;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200922 }
923
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100924 if (!pci_dev->state_saved && !pci_is_bridge(pci_dev))
925 pci_prepare_to_sleep(pci_dev);
926
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100927 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200928}
929
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200930static int pci_pm_restore_noirq(struct device *dev)
931{
932 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200933 struct device_driver *drv = dev->driver;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200934 int error = 0;
935
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100936 pci_pm_default_resume_early(pci_dev);
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100937
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100938 if (pci_has_legacy_pm_support(pci_dev))
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100939 return pci_legacy_resume_early(dev);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100940
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100941 if (drv && drv->pm && drv->pm->restore_noirq)
942 error = drv->pm->restore_noirq(dev);
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200943
944 return error;
945}
946
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100947static int pci_pm_restore(struct device *dev)
948{
949 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700950 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100951 int error = 0;
952
Rafael J. Wysocki418e4da2009-01-26 21:43:08 +0100953 /*
954 * This is necessary for the hibernation error path in which restore is
955 * called without restoring the standard config registers of the device.
956 */
957 if (pci_dev->state_saved)
958 pci_restore_standard_config(pci_dev);
959
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100960 if (pci_has_legacy_pm_support(pci_dev))
961 return pci_legacy_resume(dev);
962
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100963 pci_pm_default_resume(pci_dev);
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100964
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100965 if (pm) {
966 if (pm->restore)
967 error = pm->restore(dev);
968 } else {
969 pci_pm_reenable_device(pci_dev);
970 }
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100971
972 return error;
973}
974
Rafael J. Wysocki1f112ce2011-04-11 22:54:42 +0200975#else /* !CONFIG_HIBERNATE_CALLBACKS */
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200976
977#define pci_pm_freeze NULL
978#define pci_pm_freeze_noirq NULL
979#define pci_pm_thaw NULL
980#define pci_pm_thaw_noirq NULL
981#define pci_pm_poweroff NULL
982#define pci_pm_poweroff_noirq NULL
983#define pci_pm_restore NULL
984#define pci_pm_restore_noirq NULL
985
Rafael J. Wysocki1f112ce2011-04-11 22:54:42 +0200986#endif /* !CONFIG_HIBERNATE_CALLBACKS */
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200987
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100988#ifdef CONFIG_PM_RUNTIME
989
990static int pci_pm_runtime_suspend(struct device *dev)
991{
992 struct pci_dev *pci_dev = to_pci_dev(dev);
993 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
994 pci_power_t prev = pci_dev->current_state;
995 int error;
996
997 if (!pm || !pm->runtime_suspend)
998 return -ENOSYS;
999
1000 error = pm->runtime_suspend(dev);
1001 suspend_report_result(pm->runtime_suspend, error);
1002 if (error)
1003 return error;
1004
1005 pci_fixup_device(pci_fixup_suspend, pci_dev);
1006
1007 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
1008 && pci_dev->current_state != PCI_UNKNOWN) {
1009 WARN_ONCE(pci_dev->current_state != prev,
1010 "PCI PM: State of device not saved by %pF\n",
1011 pm->runtime_suspend);
1012 return 0;
1013 }
1014
1015 if (!pci_dev->state_saved)
1016 pci_save_state(pci_dev);
1017
1018 pci_finish_runtime_suspend(pci_dev);
1019
1020 return 0;
1021}
1022
1023static int pci_pm_runtime_resume(struct device *dev)
1024{
1025 struct pci_dev *pci_dev = to_pci_dev(dev);
1026 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1027
1028 if (!pm || !pm->runtime_resume)
1029 return -ENOSYS;
1030
1031 pci_pm_default_resume_early(pci_dev);
1032 __pci_enable_wake(pci_dev, PCI_D0, true, false);
1033 pci_fixup_device(pci_fixup_resume, pci_dev);
1034
1035 return pm->runtime_resume(dev);
1036}
1037
1038static int pci_pm_runtime_idle(struct device *dev)
1039{
1040 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1041
1042 if (!pm)
1043 return -ENOSYS;
1044
1045 if (pm->runtime_idle) {
1046 int ret = pm->runtime_idle(dev);
1047 if (ret)
1048 return ret;
1049 }
1050
1051 pm_runtime_suspend(dev);
1052
1053 return 0;
1054}
1055
1056#else /* !CONFIG_PM_RUNTIME */
1057
1058#define pci_pm_runtime_suspend NULL
1059#define pci_pm_runtime_resume NULL
1060#define pci_pm_runtime_idle NULL
1061
1062#endif /* !CONFIG_PM_RUNTIME */
1063
Rafael J. Wysockiaa338602011-02-11 00:06:54 +01001064#ifdef CONFIG_PM
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001065
Dmitry Torokhov8150f322009-07-24 22:11:32 -07001066const struct dev_pm_ops pci_dev_pm_ops = {
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001067 .prepare = pci_pm_prepare,
1068 .complete = pci_pm_complete,
1069 .suspend = pci_pm_suspend,
1070 .resume = pci_pm_resume,
1071 .freeze = pci_pm_freeze,
1072 .thaw = pci_pm_thaw,
1073 .poweroff = pci_pm_poweroff,
1074 .restore = pci_pm_restore,
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001075 .suspend_noirq = pci_pm_suspend_noirq,
1076 .resume_noirq = pci_pm_resume_noirq,
1077 .freeze_noirq = pci_pm_freeze_noirq,
1078 .thaw_noirq = pci_pm_thaw_noirq,
1079 .poweroff_noirq = pci_pm_poweroff_noirq,
1080 .restore_noirq = pci_pm_restore_noirq,
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001081 .runtime_suspend = pci_pm_runtime_suspend,
1082 .runtime_resume = pci_pm_runtime_resume,
1083 .runtime_idle = pci_pm_runtime_idle,
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001084};
1085
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001086#define PCI_PM_OPS_PTR (&pci_dev_pm_ops)
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001087
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001088#else /* !COMFIG_PM_OPS */
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001089
1090#define PCI_PM_OPS_PTR NULL
1091
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001092#endif /* !COMFIG_PM_OPS */
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094/**
Laurent riffard863b18f2005-10-27 23:12:54 +02001095 * __pci_register_driver - register a new pci driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 * @drv: the driver structure to register
Laurent riffard863b18f2005-10-27 23:12:54 +02001097 * @owner: owner module of drv
Randy Dunlapf95d8822007-02-10 14:41:56 -08001098 * @mod_name: module name string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 *
1100 * Adds the driver structure to the list of registered drivers.
1101 * Returns a negative value on error, otherwise 0.
Steven Coleeaae4b32005-05-03 18:38:30 -06001102 * If no error occurred, the driver remains registered even if
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 * no device was claimed during registration.
1104 */
Greg Kroah-Hartman725522b2007-01-15 11:50:02 -08001105int __pci_register_driver(struct pci_driver *drv, struct module *owner,
1106 const char *mod_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
1108 int error;
1109
1110 /* initialize common driver fields */
1111 drv->driver.name = drv->name;
1112 drv->driver.bus = &pci_bus_type;
Laurent riffard863b18f2005-10-27 23:12:54 +02001113 drv->driver.owner = owner;
Greg Kroah-Hartman725522b2007-01-15 11:50:02 -08001114 drv->driver.mod_name = mod_name;
Alan Cox50b00752006-08-16 17:42:18 +01001115
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001116 spin_lock_init(&drv->dynids.lock);
1117 INIT_LIST_HEAD(&drv->dynids.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119 /* register with core */
1120 error = driver_register(&drv->driver);
Akinobu Mita50bf14b2006-11-08 19:53:59 -08001121 if (error)
Chris Wright09943752009-02-23 21:52:23 -08001122 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
Akinobu Mita50bf14b2006-11-08 19:53:59 -08001124 error = pci_create_newid_file(drv);
1125 if (error)
Chris Wright09943752009-02-23 21:52:23 -08001126 goto out_newid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Chris Wright09943752009-02-23 21:52:23 -08001128 error = pci_create_removeid_file(drv);
1129 if (error)
1130 goto out_removeid;
1131out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 return error;
Chris Wright09943752009-02-23 21:52:23 -08001133
1134out_removeid:
1135 pci_remove_newid_file(drv);
1136out_newid:
1137 driver_unregister(&drv->driver);
1138 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139}
1140
1141/**
1142 * pci_unregister_driver - unregister a pci driver
1143 * @drv: the driver structure to unregister
1144 *
1145 * Deletes the driver structure from the list of registered PCI drivers,
1146 * gives it a chance to clean up by calling its remove() function for
1147 * each device it was responsible for, and marks those devices as
1148 * driverless.
1149 */
1150
1151void
1152pci_unregister_driver(struct pci_driver *drv)
1153{
Chris Wright09943752009-02-23 21:52:23 -08001154 pci_remove_removeid_file(drv);
Greg Kroah-Hartman03d43b12007-11-28 12:23:18 -08001155 pci_remove_newid_file(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 driver_unregister(&drv->driver);
1157 pci_free_dynids(drv);
1158}
1159
1160static struct pci_driver pci_compat_driver = {
1161 .name = "compat"
1162};
1163
1164/**
1165 * pci_dev_driver - get the pci_driver of a device
1166 * @dev: the device to query
1167 *
1168 * Returns the appropriate pci_driver structure or %NULL if there is no
1169 * registered driver for the device.
1170 */
1171struct pci_driver *
1172pci_dev_driver(const struct pci_dev *dev)
1173{
1174 if (dev->driver)
1175 return dev->driver;
1176 else {
1177 int i;
1178 for(i=0; i<=PCI_ROM_RESOURCE; i++)
1179 if (dev->resource[i].flags & IORESOURCE_BUSY)
1180 return &pci_compat_driver;
1181 }
1182 return NULL;
1183}
1184
1185/**
1186 * pci_bus_match - Tell if a PCI device structure has a matching PCI device id structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 * @dev: the PCI device structure to match against
Randy Dunlap8f7020d2005-10-23 11:57:38 -07001188 * @drv: the device driver to search for matching PCI device id structures
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 *
1190 * Used by a driver to check whether a PCI device present in the
Randy Dunlap8f7020d2005-10-23 11:57:38 -07001191 * system is in its list of supported devices. Returns the matching
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 * pci_device_id structure or %NULL if there is no match.
1193 */
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001194static int pci_bus_match(struct device *dev, struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195{
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001196 struct pci_dev *pci_dev = to_pci_dev(dev);
1197 struct pci_driver *pci_drv = to_pci_driver(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 const struct pci_device_id *found_id;
1199
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001200 found_id = pci_match_device(pci_drv, pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 if (found_id)
1202 return 1;
1203
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001204 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
1207/**
1208 * pci_dev_get - increments the reference count of the pci device structure
1209 * @dev: the device being referenced
1210 *
1211 * Each live reference to a device should be refcounted.
1212 *
1213 * Drivers for PCI devices should normally record such references in
1214 * their probe() methods, when they bind to a device, and release
1215 * them by calling pci_dev_put(), in their disconnect() methods.
1216 *
1217 * A pointer to the device with the incremented reference counter is returned.
1218 */
1219struct pci_dev *pci_dev_get(struct pci_dev *dev)
1220{
1221 if (dev)
1222 get_device(&dev->dev);
1223 return dev;
1224}
1225
1226/**
1227 * pci_dev_put - release a use of the pci device structure
1228 * @dev: device that's been disconnected
1229 *
1230 * Must be called when a user of a device is finished with it. When the last
1231 * user of the device calls this function, the memory of the device is freed.
1232 */
1233void pci_dev_put(struct pci_dev *dev)
1234{
1235 if (dev)
1236 put_device(&dev->dev);
1237}
1238
1239#ifndef CONFIG_HOTPLUG
Kay Sievers7eff2e72007-08-14 15:15:12 +02001240int pci_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241{
1242 return -ENODEV;
1243}
1244#endif
1245
1246struct bus_type pci_bus_type = {
1247 .name = "pci",
1248 .match = pci_bus_match,
Kay Sievers312c0042005-11-16 09:00:00 +01001249 .uevent = pci_uevent,
Russell Kingb15d6862006-01-05 14:30:22 +00001250 .probe = pci_device_probe,
1251 .remove = pci_device_remove,
Linus Torvaldscbd69db2006-06-24 14:50:29 -07001252 .shutdown = pci_device_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 .dev_attrs = pci_dev_attrs,
Alex Chiang705b1aa2009-03-20 14:56:31 -06001254 .bus_attrs = pci_bus_attrs,
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001255 .pm = PCI_PM_OPS_PTR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256};
1257
1258static int __init pci_driver_init(void)
1259{
1260 return bus_register(&pci_bus_type);
1261}
1262
1263postcore_initcall(pci_driver_init);
1264
Tejun Heo9dba9102009-09-03 15:26:36 +09001265EXPORT_SYMBOL_GPL(pci_add_dynid);
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001266EXPORT_SYMBOL(pci_match_id);
Laurent riffard863b18f2005-10-27 23:12:54 +02001267EXPORT_SYMBOL(__pci_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268EXPORT_SYMBOL(pci_unregister_driver);
1269EXPORT_SYMBOL(pci_dev_driver);
1270EXPORT_SYMBOL(pci_bus_type);
1271EXPORT_SYMBOL(pci_dev_get);
1272EXPORT_SYMBOL(pci_dev_put);