blob: c66dc4341fa027d8eaae0fca6254687d52e2472f [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "pci.h"
21
Greg Kroah-Hartman75865852005-06-30 02:18:12 -070022struct pci_dynid {
23 struct list_head node;
24 struct pci_device_id id;
25};
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27/**
Tejun Heo9dba9102009-09-03 15:26:36 +090028 * pci_add_dynid - add a new PCI device ID to this driver and re-probe devices
29 * @drv: target pci driver
30 * @vendor: PCI vendor ID
31 * @device: PCI device ID
32 * @subvendor: PCI subvendor ID
33 * @subdevice: PCI subdevice ID
34 * @class: PCI class
35 * @class_mask: PCI class mask
36 * @driver_data: private driver data
37 *
38 * Adds a new dynamic pci device ID to this driver and causes the
39 * driver to probe for all devices again. @drv must have been
40 * registered prior to calling this function.
41 *
42 * CONTEXT:
43 * Does GFP_KERNEL allocation.
44 *
45 * RETURNS:
46 * 0 on success, -errno on failure.
47 */
48int pci_add_dynid(struct pci_driver *drv,
49 unsigned int vendor, unsigned int device,
50 unsigned int subvendor, unsigned int subdevice,
51 unsigned int class, unsigned int class_mask,
52 unsigned long driver_data)
53{
54 struct pci_dynid *dynid;
55 int retval;
56
57 dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
58 if (!dynid)
59 return -ENOMEM;
60
61 dynid->id.vendor = vendor;
62 dynid->id.device = device;
63 dynid->id.subvendor = subvendor;
64 dynid->id.subdevice = subdevice;
65 dynid->id.class = class;
66 dynid->id.class_mask = class_mask;
67 dynid->id.driver_data = driver_data;
68
69 spin_lock(&drv->dynids.lock);
70 list_add_tail(&dynid->node, &drv->dynids.list);
71 spin_unlock(&drv->dynids.lock);
72
73 get_driver(&drv->driver);
74 retval = driver_attach(&drv->driver);
75 put_driver(&drv->driver);
76
77 return retval;
78}
79
80static void pci_free_dynids(struct pci_driver *drv)
81{
82 struct pci_dynid *dynid, *n;
83
84 spin_lock(&drv->dynids.lock);
85 list_for_each_entry_safe(dynid, n, &drv->dynids.list, node) {
86 list_del(&dynid->node);
87 kfree(dynid);
88 }
89 spin_unlock(&drv->dynids.lock);
90}
91
92/*
93 * Dynamic device ID manipulation via sysfs is disabled for !CONFIG_HOTPLUG
94 */
95#ifdef CONFIG_HOTPLUG
96/**
97 * store_new_id - sysfs frontend to pci_add_dynid()
Randy Dunlap8f7020d2005-10-23 11:57:38 -070098 * @driver: target device driver
99 * @buf: buffer for scanning device ID data
100 * @count: input size
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 *
Tejun Heo9dba9102009-09-03 15:26:36 +0900102 * Allow PCI IDs to be added to an existing driver via sysfs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 */
Randy Dunlapf8eb1002005-10-28 20:36:51 -0700104static ssize_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105store_new_id(struct device_driver *driver, const char *buf, size_t count)
106{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 struct pci_driver *pdrv = to_pci_driver(driver);
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200108 const struct pci_device_id *ids = pdrv->id_table;
Jean Delvare6ba18632007-04-07 17:21:28 +0200109 __u32 vendor, device, subvendor=PCI_ANY_ID,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 subdevice=PCI_ANY_ID, class=0, class_mask=0;
111 unsigned long driver_data=0;
112 int fields=0;
Tejun Heo9dba9102009-09-03 15:26:36 +0900113 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200115 fields = sscanf(buf, "%x %x %x %x %x %x %lx",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 &vendor, &device, &subvendor, &subdevice,
117 &class, &class_mask, &driver_data);
Jean Delvare6ba18632007-04-07 17:21:28 +0200118 if (fields < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 return -EINVAL;
120
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200121 /* Only accept driver_data values that match an existing id_table
122 entry */
Chris Wright2debb4d2008-11-25 19:36:10 -0800123 if (ids) {
124 retval = -EINVAL;
125 while (ids->vendor || ids->subvendor || ids->class_mask) {
126 if (driver_data == ids->driver_data) {
127 retval = 0;
128 break;
129 }
130 ids++;
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200131 }
Chris Wright2debb4d2008-11-25 19:36:10 -0800132 if (retval) /* No match */
133 return retval;
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200134 }
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200135
Tejun Heo9dba9102009-09-03 15:26:36 +0900136 retval = pci_add_dynid(pdrv, vendor, device, subvendor, subdevice,
137 class, class_mask, driver_data);
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700138 if (retval)
139 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return count;
141}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Chris Wright09943752009-02-23 21:52:23 -0800144/**
145 * store_remove_id - remove a PCI device ID from this driver
146 * @driver: target device driver
147 * @buf: buffer for scanning device ID data
148 * @count: input size
149 *
150 * Removes a dynamic pci device ID to this driver.
151 */
152static ssize_t
153store_remove_id(struct device_driver *driver, const char *buf, size_t count)
154{
155 struct pci_dynid *dynid, *n;
156 struct pci_driver *pdrv = to_pci_driver(driver);
157 __u32 vendor, device, subvendor = PCI_ANY_ID,
158 subdevice = PCI_ANY_ID, class = 0, class_mask = 0;
159 int fields = 0;
160 int retval = -ENODEV;
161
162 fields = sscanf(buf, "%x %x %x %x %x %x",
163 &vendor, &device, &subvendor, &subdevice,
164 &class, &class_mask);
165 if (fields < 2)
166 return -EINVAL;
167
168 spin_lock(&pdrv->dynids.lock);
169 list_for_each_entry_safe(dynid, n, &pdrv->dynids.list, node) {
170 struct pci_device_id *id = &dynid->id;
171 if ((id->vendor == vendor) &&
172 (id->device == device) &&
173 (subvendor == PCI_ANY_ID || id->subvendor == subvendor) &&
174 (subdevice == PCI_ANY_ID || id->subdevice == subdevice) &&
175 !((id->class ^ class) & class_mask)) {
176 list_del(&dynid->node);
177 kfree(dynid);
178 retval = 0;
179 break;
180 }
181 }
182 spin_unlock(&pdrv->dynids.lock);
183
184 if (retval)
185 return retval;
186 return count;
187}
188static DRIVER_ATTR(remove_id, S_IWUSR, NULL, store_remove_id);
189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190static int
191pci_create_newid_file(struct pci_driver *drv)
192{
193 int error = 0;
194 if (drv->probe != NULL)
Greg Kroah-Hartman03d43b12007-11-28 12:23:18 -0800195 error = driver_create_file(&drv->driver, &driver_attr_new_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 return error;
197}
198
Greg Kroah-Hartman03d43b12007-11-28 12:23:18 -0800199static void pci_remove_newid_file(struct pci_driver *drv)
200{
201 driver_remove_file(&drv->driver, &driver_attr_new_id);
202}
Chris Wright09943752009-02-23 21:52:23 -0800203
204static int
205pci_create_removeid_file(struct pci_driver *drv)
206{
207 int error = 0;
208 if (drv->probe != NULL)
209 error = driver_create_file(&drv->driver,&driver_attr_remove_id);
210 return error;
211}
212
213static void pci_remove_removeid_file(struct pci_driver *drv)
214{
215 driver_remove_file(&drv->driver, &driver_attr_remove_id);
216}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217#else /* !CONFIG_HOTPLUG */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218static inline int pci_create_newid_file(struct pci_driver *drv)
219{
220 return 0;
221}
Greg Kroah-Hartman03d43b12007-11-28 12:23:18 -0800222static inline void pci_remove_newid_file(struct pci_driver *drv) {}
Chris Wright09943752009-02-23 21:52:23 -0800223static inline int pci_create_removeid_file(struct pci_driver *drv)
224{
225 return 0;
226}
227static inline void pci_remove_removeid_file(struct pci_driver *drv) {}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228#endif
229
230/**
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700231 * pci_match_id - See if a pci device matches a given pci_id table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * @ids: array of PCI device id structures to search in
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700233 * @dev: the PCI device structure to match against.
234 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 * Used by a driver to check whether a PCI device present in the
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700236 * system is in its list of supported devices. Returns the matching
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 * pci_device_id structure or %NULL if there is no match.
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700238 *
Randy Dunlap8b607562007-05-09 07:19:14 +0200239 * Deprecated, don't use this as it will not catch any dynamic ids
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700240 * that a driver might want to check for.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 */
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700242const struct pci_device_id *pci_match_id(const struct pci_device_id *ids,
243 struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700245 if (ids) {
246 while (ids->vendor || ids->subvendor || ids->class_mask) {
247 if (pci_match_one_device(ids, dev))
248 return ids;
249 ids++;
250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252 return NULL;
253}
254
255/**
Randy Dunlapae9608a2007-01-09 21:41:01 -0800256 * pci_match_device - Tell if a PCI device structure has a matching PCI device id structure
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700257 * @drv: the PCI driver to match against
Henrik Kretzschmar39ba4872006-08-15 10:57:16 +0200258 * @dev: the PCI device structure to match against
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700259 *
260 * Used by a driver to check whether a PCI device present in the
261 * system is in its list of supported devices. Returns the matching
262 * pci_device_id structure or %NULL if there is no match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 */
Adrian Bunkd73460d2007-10-24 18:27:18 +0200264static const struct pci_device_id *pci_match_device(struct pci_driver *drv,
265 struct pci_dev *dev)
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700266{
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700267 struct pci_dynid *dynid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Russell King7461b602006-11-29 21:18:04 +0000269 /* Look at the dynamic ids first, before the static ones */
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700270 spin_lock(&drv->dynids.lock);
271 list_for_each_entry(dynid, &drv->dynids.list, node) {
272 if (pci_match_one_device(&dynid->id, dev)) {
273 spin_unlock(&drv->dynids.lock);
274 return &dynid->id;
275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 }
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700277 spin_unlock(&drv->dynids.lock);
Russell King7461b602006-11-29 21:18:04 +0000278
279 return pci_match_id(drv->id_table, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280}
281
Rusty Russell873392c2008-12-31 23:54:56 +1030282struct drv_dev_and_id {
283 struct pci_driver *drv;
284 struct pci_dev *dev;
285 const struct pci_device_id *id;
286};
287
288static long local_pci_probe(void *_ddi)
289{
290 struct drv_dev_and_id *ddi = _ddi;
291
292 return ddi->drv->probe(ddi->dev, ddi->id);
293}
294
Andi Kleend42c6992005-07-06 19:56:03 +0200295static int pci_call_probe(struct pci_driver *drv, struct pci_dev *dev,
296 const struct pci_device_id *id)
297{
Rusty Russell873392c2008-12-31 23:54:56 +1030298 int error, node;
299 struct drv_dev_and_id ddi = { drv, dev, id };
Mike Travisf70316d2008-04-04 18:11:06 -0700300
Rusty Russell873392c2008-12-31 23:54:56 +1030301 /* Execute driver initialization on node where the device's
302 bus is attached to. This way the driver likely allocates
303 its local memory on the right node without any need to
304 change it. */
305 node = dev_to_node(&dev->dev);
Mike Travisf70316d2008-04-04 18:11:06 -0700306 if (node >= 0) {
Rusty Russell873392c2008-12-31 23:54:56 +1030307 int cpu;
Rusty Russell873392c2008-12-31 23:54:56 +1030308
309 get_online_cpus();
Rusty Russella70f7302009-03-13 14:49:46 +1030310 cpu = cpumask_any_and(cpumask_of_node(node), cpu_online_mask);
Rusty Russell873392c2008-12-31 23:54:56 +1030311 if (cpu < nr_cpu_ids)
312 error = work_on_cpu(cpu, local_pci_probe, &ddi);
313 else
314 error = local_pci_probe(&ddi);
315 put_online_cpus();
316 } else
317 error = local_pci_probe(&ddi);
Andi Kleend42c6992005-07-06 19:56:03 +0200318 return error;
319}
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321/**
322 * __pci_device_probe()
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700323 * @drv: driver to call to check if it wants the PCI device
324 * @pci_dev: PCI device being probed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 *
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700326 * returns 0 on success, else error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 * side-effect: pci_dev->driver is set to drv when drv claims pci_dev.
328 */
329static int
330__pci_device_probe(struct pci_driver *drv, struct pci_dev *pci_dev)
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700331{
332 const struct pci_device_id *id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 int error = 0;
334
335 if (!pci_dev->driver && drv->probe) {
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700336 error = -ENODEV;
337
338 id = pci_match_device(drv, pci_dev);
339 if (id)
Andi Kleend42c6992005-07-06 19:56:03 +0200340 error = pci_call_probe(drv, pci_dev, id);
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700341 if (error >= 0) {
342 pci_dev->driver = drv;
343 error = 0;
344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346 return error;
347}
348
349static int pci_device_probe(struct device * dev)
350{
351 int error = 0;
352 struct pci_driver *drv;
353 struct pci_dev *pci_dev;
354
355 drv = to_pci_driver(dev->driver);
356 pci_dev = to_pci_dev(dev);
357 pci_dev_get(pci_dev);
358 error = __pci_device_probe(drv, pci_dev);
359 if (error)
360 pci_dev_put(pci_dev);
361
362 return error;
363}
364
365static int pci_device_remove(struct device * dev)
366{
367 struct pci_dev * pci_dev = to_pci_dev(dev);
368 struct pci_driver * drv = pci_dev->driver;
369
370 if (drv) {
371 if (drv->remove)
372 drv->remove(pci_dev);
373 pci_dev->driver = NULL;
374 }
375
376 /*
Shaohua Li2449e062006-10-20 14:45:32 -0700377 * If the device is still on, set the power state as "unknown",
378 * since it might change by the next time we load the driver.
379 */
380 if (pci_dev->current_state == PCI_D0)
381 pci_dev->current_state = PCI_UNKNOWN;
382
383 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * We would love to complain here if pci_dev->is_enabled is set, that
385 * the driver should have called pci_disable_device(), but the
386 * unfortunate fact is there are too many odd BIOS and bridge setups
387 * that don't like drivers doing that all of the time.
388 * Oh well, we can dream of sane hardware when we sleep, no matter how
389 * horrible the crap we have to deal with is when we are awake...
390 */
391
392 pci_dev_put(pci_dev);
393 return 0;
394}
395
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200396static void pci_device_shutdown(struct device *dev)
397{
398 struct pci_dev *pci_dev = to_pci_dev(dev);
399 struct pci_driver *drv = pci_dev->driver;
400
401 if (drv && drv->shutdown)
402 drv->shutdown(pci_dev);
403 pci_msi_shutdown(pci_dev);
404 pci_msix_shutdown(pci_dev);
405}
406
407#ifdef CONFIG_PM_SLEEP
408
409/*
410 * Default "suspend" method for devices that have no driver provided suspend,
Rafael J. Wysockifa58d302009-01-07 13:03:42 +0100411 * or not even a driver at all (second part).
412 */
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100413static void pci_pm_set_unknown_state(struct pci_dev *pci_dev)
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200414{
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200415 /*
416 * mark its power state as "unknown", since we don't know if
417 * e.g. the BIOS will change its device state when we suspend.
418 */
419 if (pci_dev->current_state == PCI_D0)
420 pci_dev->current_state = PCI_UNKNOWN;
421}
422
423/*
424 * Default "resume" method for devices that have no driver provided resume,
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100425 * or not even a driver at all (second part).
426 */
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100427static int pci_pm_reenable_device(struct pci_dev *pci_dev)
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100428{
429 int retval;
430
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200431 /* if the device was enabled before suspend, reenable */
432 retval = pci_reenable_device(pci_dev);
433 /*
434 * if the device was busmaster before the suspend, make it busmaster
435 * again
436 */
437 if (pci_dev->is_busmaster)
438 pci_set_master(pci_dev);
439
440 return retval;
441}
442
443static int pci_legacy_suspend(struct device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 struct pci_dev * pci_dev = to_pci_dev(dev);
446 struct pci_driver * drv = pci_dev->driver;
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100447
448 pci_dev->state_saved = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Andrew Morton02669492006-03-23 01:38:34 -0800450 if (drv && drv->suspend) {
Rafael J. Wysocki99dadce2009-02-04 01:59:09 +0100451 pci_power_t prev = pci_dev->current_state;
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100452 int error;
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100453
Frans Pop57ef8022009-03-16 22:39:56 +0100454 error = drv->suspend(pci_dev, state);
455 suspend_report_result(drv->suspend, error);
456 if (error)
457 return error;
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100458
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100459 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
Rafael J. Wysocki99dadce2009-02-04 01:59:09 +0100460 && pci_dev->current_state != PCI_UNKNOWN) {
461 WARN_ONCE(pci_dev->current_state != prev,
462 "PCI PM: Device state not saved by %pF\n",
463 drv->suspend);
Rafael J. Wysocki99dadce2009-02-04 01:59:09 +0100464 }
Andrew Morton02669492006-03-23 01:38:34 -0800465 }
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100466
467 pci_fixup_device(pci_fixup_suspend, pci_dev);
468
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100469 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200472static int pci_legacy_suspend_late(struct device *dev, pm_message_t state)
Linus Torvaldscbd69db2006-06-24 14:50:29 -0700473{
474 struct pci_dev * pci_dev = to_pci_dev(dev);
475 struct pci_driver * drv = pci_dev->driver;
Linus Torvaldscbd69db2006-06-24 14:50:29 -0700476
477 if (drv && drv->suspend_late) {
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100478 pci_power_t prev = pci_dev->current_state;
479 int error;
480
Frans Pop57ef8022009-03-16 22:39:56 +0100481 error = drv->suspend_late(pci_dev, state);
482 suspend_report_result(drv->suspend_late, error);
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100483 if (error)
484 return error;
485
486 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
487 && pci_dev->current_state != PCI_UNKNOWN) {
488 WARN_ONCE(pci_dev->current_state != prev,
489 "PCI PM: Device state not saved by %pF\n",
490 drv->suspend_late);
491 return 0;
492 }
Linus Torvaldscbd69db2006-06-24 14:50:29 -0700493 }
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100494
495 if (!pci_dev->state_saved)
496 pci_save_state(pci_dev);
497
498 pci_pm_set_unknown_state(pci_dev);
499
500 return 0;
Linus Torvaldscbd69db2006-06-24 14:50:29 -0700501}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100503static int pci_legacy_resume_early(struct device *dev)
504{
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100505 struct pci_dev * pci_dev = to_pci_dev(dev);
506 struct pci_driver * drv = pci_dev->driver;
507
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100508 return drv && drv->resume_early ?
509 drv->resume_early(pci_dev) : 0;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100510}
511
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200512static int pci_legacy_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
514 struct pci_dev * pci_dev = to_pci_dev(dev);
515 struct pci_driver * drv = pci_dev->driver;
516
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100517 pci_fixup_device(pci_fixup_resume, pci_dev);
518
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100519 return drv && drv->resume ?
520 drv->resume(pci_dev) : pci_pm_reenable_device(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
Rafael J. Wysocki571ff752009-01-07 13:05:05 +0100523/* Auxiliary functions used by the new power management framework */
524
Rafael J. Wysocki0128a892009-03-16 22:40:18 +0100525/**
526 * pci_restore_standard_config - restore standard config registers of PCI device
527 * @pci_dev: PCI device to handle
528 */
529static int pci_restore_standard_config(struct pci_dev *pci_dev)
530{
531 pci_update_current_state(pci_dev, PCI_UNKNOWN);
532
533 if (pci_dev->current_state != PCI_D0) {
534 int error = pci_set_power_state(pci_dev, PCI_D0);
535 if (error)
536 return error;
537 }
538
Alek Duc82f63e2009-08-08 08:46:19 +0800539 return pci_restore_state(pci_dev);
Rafael J. Wysocki0128a892009-03-16 22:40:18 +0100540}
541
Rafael J. Wysocki734104292009-01-07 13:07:15 +0100542static void pci_pm_default_resume_noirq(struct pci_dev *pci_dev)
543{
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100544 pci_restore_standard_config(pci_dev);
Rafael J. Wysocki418e4da2009-01-26 21:43:08 +0100545 pci_dev->state_saved = false;
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100546 pci_fixup_device(pci_fixup_resume_early, pci_dev);
Rafael J. Wysocki734104292009-01-07 13:07:15 +0100547}
548
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100549static void pci_pm_default_resume(struct pci_dev *pci_dev)
Rafael J. Wysocki571ff752009-01-07 13:05:05 +0100550{
Rafael J. Wysocki734104292009-01-07 13:07:15 +0100551 pci_fixup_device(pci_fixup_resume, pci_dev);
552
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100553 if (!pci_is_bridge(pci_dev))
554 pci_enable_wake(pci_dev, PCI_D0, false);
Rafael J. Wysocki571ff752009-01-07 13:05:05 +0100555}
556
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100557static void pci_pm_default_suspend(struct pci_dev *pci_dev)
Rafael J. Wysocki734104292009-01-07 13:07:15 +0100558{
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100559 /* Disable non-bridge devices without PM support */
Rafael J. Wysockicbbc2f62009-02-04 02:01:15 +0100560 if (!pci_is_bridge(pci_dev))
561 pci_disable_enabled_device(pci_dev);
Rafael J. Wysocki734104292009-01-07 13:07:15 +0100562}
563
Rafael J. Wysocki07e836e2009-01-07 13:06:10 +0100564static bool pci_has_legacy_pm_support(struct pci_dev *pci_dev)
565{
566 struct pci_driver *drv = pci_dev->driver;
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100567 bool ret = drv && (drv->suspend || drv->suspend_late || drv->resume
Rafael J. Wysocki07e836e2009-01-07 13:06:10 +0100568 || drv->resume_early);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100569
570 /*
571 * Legacy PM support is used by default, so warn if the new framework is
572 * supported as well. Drivers are supposed to support either the
573 * former, or the latter, but not both at the same time.
574 */
575 WARN_ON(ret && drv->driver.pm);
576
577 return ret;
Rafael J. Wysocki07e836e2009-01-07 13:06:10 +0100578}
579
Rafael J. Wysocki571ff752009-01-07 13:05:05 +0100580/* New power management framework */
581
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200582static int pci_pm_prepare(struct device *dev)
583{
584 struct device_driver *drv = dev->driver;
585 int error = 0;
586
587 if (drv && drv->pm && drv->pm->prepare)
588 error = drv->pm->prepare(dev);
589
590 return error;
591}
592
593static void pci_pm_complete(struct device *dev)
594{
595 struct device_driver *drv = dev->driver;
596
597 if (drv && drv->pm && drv->pm->complete)
598 drv->pm->complete(dev);
599}
600
601#ifdef CONFIG_SUSPEND
602
603static int pci_pm_suspend(struct device *dev)
604{
605 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiddb7c9d2009-02-04 01:56:14 +0100606 struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200607
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100608 if (pci_has_legacy_pm_support(pci_dev))
609 return pci_legacy_suspend(dev, PMSG_SUSPEND);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100610
Rafael J. Wysocki931ff682009-03-16 22:40:50 +0100611 pci_dev->state_saved = false;
612
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100613 if (!pm) {
614 pci_pm_default_suspend(pci_dev);
615 goto Fixup;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200616 }
Rafael J. Wysockifa58d302009-01-07 13:03:42 +0100617
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100618 if (pm->suspend) {
619 pci_power_t prev = pci_dev->current_state;
620 int error;
621
622 error = pm->suspend(dev);
623 suspend_report_result(pm->suspend, error);
624 if (error)
625 return error;
626
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100627 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100628 && pci_dev->current_state != PCI_UNKNOWN) {
629 WARN_ONCE(pci_dev->current_state != prev,
630 "PCI PM: State of device not saved by %pF\n",
631 pm->suspend);
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100632 }
633 }
634
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100635 Fixup:
636 pci_fixup_device(pci_fixup_suspend, pci_dev);
637
638 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200639}
640
641static int pci_pm_suspend_noirq(struct device *dev)
Greg KHc8958172005-04-08 14:53:31 +0900642{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100643 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100644 struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Greg KHc8958172005-04-08 14:53:31 +0900645
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100646 if (pci_has_legacy_pm_support(pci_dev))
647 return pci_legacy_suspend_late(dev, PMSG_SUSPEND);
648
Rafael J. Wysocki931ff682009-03-16 22:40:50 +0100649 if (!pm) {
650 pci_save_state(pci_dev);
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100651 return 0;
Rafael J. Wysocki931ff682009-03-16 22:40:50 +0100652 }
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100653
654 if (pm->suspend_noirq) {
655 pci_power_t prev = pci_dev->current_state;
656 int error;
657
658 error = pm->suspend_noirq(dev);
659 suspend_report_result(pm->suspend_noirq, error);
660 if (error)
661 return error;
662
663 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
664 && pci_dev->current_state != PCI_UNKNOWN) {
665 WARN_ONCE(pci_dev->current_state != prev,
666 "PCI PM: State of device not saved by %pF\n",
667 pm->suspend_noirq);
668 return 0;
669 }
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200670 }
671
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100672 if (!pci_dev->state_saved) {
673 pci_save_state(pci_dev);
674 if (!pci_is_bridge(pci_dev))
675 pci_prepare_to_sleep(pci_dev);
676 }
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100677
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100678 pci_pm_set_unknown_state(pci_dev);
679
680 return 0;
Greg KHc8958172005-04-08 14:53:31 +0900681}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200683static int pci_pm_resume_noirq(struct device *dev)
684{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100685 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200686 struct device_driver *drv = dev->driver;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200687 int error = 0;
688
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100689 pci_pm_default_resume_noirq(pci_dev);
690
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100691 if (pci_has_legacy_pm_support(pci_dev))
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100692 return pci_legacy_resume_early(dev);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100693
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100694 if (drv && drv->pm && drv->pm->resume_noirq)
695 error = drv->pm->resume_noirq(dev);
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200696
697 return error;
698}
699
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100700static int pci_pm_resume(struct device *dev)
701{
702 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100703 struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100704 int error = 0;
705
Rafael J. Wysocki418e4da2009-01-26 21:43:08 +0100706 /*
707 * This is necessary for the suspend error path in which resume is
708 * called without restoring the standard config registers of the device.
709 */
710 if (pci_dev->state_saved)
711 pci_restore_standard_config(pci_dev);
712
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100713 if (pci_has_legacy_pm_support(pci_dev))
714 return pci_legacy_resume(dev);
715
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100716 pci_pm_default_resume(pci_dev);
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100717
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100718 if (pm) {
719 if (pm->resume)
720 error = pm->resume(dev);
721 } else {
722 pci_pm_reenable_device(pci_dev);
723 }
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100724
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100725 return 0;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100726}
727
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200728#else /* !CONFIG_SUSPEND */
729
730#define pci_pm_suspend NULL
731#define pci_pm_suspend_noirq NULL
732#define pci_pm_resume NULL
733#define pci_pm_resume_noirq NULL
734
735#endif /* !CONFIG_SUSPEND */
736
737#ifdef CONFIG_HIBERNATION
738
739static int pci_pm_freeze(struct device *dev)
740{
741 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100742 struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200743
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100744 if (pci_has_legacy_pm_support(pci_dev))
745 return pci_legacy_suspend(dev, PMSG_FREEZE);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100746
Rafael J. Wysocki931ff682009-03-16 22:40:50 +0100747 pci_dev->state_saved = false;
748
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100749 if (!pm) {
750 pci_pm_default_suspend(pci_dev);
751 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200752 }
753
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100754 if (pm->freeze) {
755 int error;
756
757 error = pm->freeze(dev);
758 suspend_report_result(pm->freeze, error);
759 if (error)
760 return error;
761 }
762
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100763 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200764}
765
766static int pci_pm_freeze_noirq(struct device *dev)
767{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100768 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200769 struct device_driver *drv = dev->driver;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200770
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100771 if (pci_has_legacy_pm_support(pci_dev))
772 return pci_legacy_suspend_late(dev, PMSG_FREEZE);
773
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100774 if (drv && drv->pm && drv->pm->freeze_noirq) {
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100775 int error;
776
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100777 error = drv->pm->freeze_noirq(dev);
778 suspend_report_result(drv->pm->freeze_noirq, error);
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100779 if (error)
780 return error;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200781 }
782
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100783 if (!pci_dev->state_saved)
784 pci_save_state(pci_dev);
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100785
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100786 pci_pm_set_unknown_state(pci_dev);
787
788 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200789}
790
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200791static int pci_pm_thaw_noirq(struct device *dev)
792{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100793 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200794 struct device_driver *drv = dev->driver;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200795 int error = 0;
796
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100797 if (pci_has_legacy_pm_support(pci_dev))
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100798 return pci_legacy_resume_early(dev);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100799
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100800 pci_update_current_state(pci_dev, PCI_D0);
801
802 if (drv && drv->pm && drv->pm->thaw_noirq)
803 error = drv->pm->thaw_noirq(dev);
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200804
805 return error;
806}
807
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100808static int pci_pm_thaw(struct device *dev)
809{
810 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100811 struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100812 int error = 0;
813
814 if (pci_has_legacy_pm_support(pci_dev))
815 return pci_legacy_resume(dev);
816
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100817 if (pm) {
818 if (pm->thaw)
819 error = pm->thaw(dev);
820 } else {
821 pci_pm_reenable_device(pci_dev);
822 }
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100823
824 return error;
825}
826
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200827static int pci_pm_poweroff(struct device *dev)
828{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100829 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiddb7c9d2009-02-04 01:56:14 +0100830 struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200831
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100832 if (pci_has_legacy_pm_support(pci_dev))
833 return pci_legacy_suspend(dev, PMSG_HIBERNATE);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100834
Rafael J. Wysocki931ff682009-03-16 22:40:50 +0100835 pci_dev->state_saved = false;
836
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100837 if (!pm) {
838 pci_pm_default_suspend(pci_dev);
839 goto Fixup;
840 }
841
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100842 if (pm->poweroff) {
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100843 int error;
844
Rafael J. Wysockiddb7c9d2009-02-04 01:56:14 +0100845 error = pm->poweroff(dev);
846 suspend_report_result(pm->poweroff, error);
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100847 if (error)
848 return error;
849 }
850
851 Fixup:
852 pci_fixup_device(pci_fixup_suspend, pci_dev);
853
854 return 0;
855}
856
857static int pci_pm_poweroff_noirq(struct device *dev)
858{
859 struct pci_dev *pci_dev = to_pci_dev(dev);
860 struct device_driver *drv = dev->driver;
861
862 if (pci_has_legacy_pm_support(to_pci_dev(dev)))
863 return pci_legacy_suspend_late(dev, PMSG_HIBERNATE);
864
865 if (!drv || !drv->pm)
866 return 0;
867
868 if (drv->pm->poweroff_noirq) {
869 int error;
870
871 error = drv->pm->poweroff_noirq(dev);
872 suspend_report_result(drv->pm->poweroff_noirq, error);
873 if (error)
874 return error;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200875 }
876
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100877 if (!pci_dev->state_saved && !pci_is_bridge(pci_dev))
878 pci_prepare_to_sleep(pci_dev);
879
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100880 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200881}
882
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200883static int pci_pm_restore_noirq(struct device *dev)
884{
885 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200886 struct device_driver *drv = dev->driver;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200887 int error = 0;
888
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100889 pci_pm_default_resume_noirq(pci_dev);
890
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100891 if (pci_has_legacy_pm_support(pci_dev))
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100892 return pci_legacy_resume_early(dev);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100893
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100894 if (drv && drv->pm && drv->pm->restore_noirq)
895 error = drv->pm->restore_noirq(dev);
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200896
897 return error;
898}
899
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100900static int pci_pm_restore(struct device *dev)
901{
902 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100903 struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100904 int error = 0;
905
Rafael J. Wysocki418e4da2009-01-26 21:43:08 +0100906 /*
907 * This is necessary for the hibernation error path in which restore is
908 * called without restoring the standard config registers of the device.
909 */
910 if (pci_dev->state_saved)
911 pci_restore_standard_config(pci_dev);
912
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100913 if (pci_has_legacy_pm_support(pci_dev))
914 return pci_legacy_resume(dev);
915
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100916 pci_pm_default_resume(pci_dev);
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100917
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100918 if (pm) {
919 if (pm->restore)
920 error = pm->restore(dev);
921 } else {
922 pci_pm_reenable_device(pci_dev);
923 }
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100924
925 return error;
926}
927
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200928#else /* !CONFIG_HIBERNATION */
929
930#define pci_pm_freeze NULL
931#define pci_pm_freeze_noirq NULL
932#define pci_pm_thaw NULL
933#define pci_pm_thaw_noirq NULL
934#define pci_pm_poweroff NULL
935#define pci_pm_poweroff_noirq NULL
936#define pci_pm_restore NULL
937#define pci_pm_restore_noirq NULL
938
939#endif /* !CONFIG_HIBERNATION */
940
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200941struct dev_pm_ops pci_dev_pm_ops = {
942 .prepare = pci_pm_prepare,
943 .complete = pci_pm_complete,
944 .suspend = pci_pm_suspend,
945 .resume = pci_pm_resume,
946 .freeze = pci_pm_freeze,
947 .thaw = pci_pm_thaw,
948 .poweroff = pci_pm_poweroff,
949 .restore = pci_pm_restore,
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200950 .suspend_noirq = pci_pm_suspend_noirq,
951 .resume_noirq = pci_pm_resume_noirq,
952 .freeze_noirq = pci_pm_freeze_noirq,
953 .thaw_noirq = pci_pm_thaw_noirq,
954 .poweroff_noirq = pci_pm_poweroff_noirq,
955 .restore_noirq = pci_pm_restore_noirq,
956};
957
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200958#define PCI_PM_OPS_PTR (&pci_dev_pm_ops)
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200959
960#else /* !CONFIG_PM_SLEEP */
961
962#define PCI_PM_OPS_PTR NULL
963
964#endif /* !CONFIG_PM_SLEEP */
965
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966/**
Laurent riffard863b18f2005-10-27 23:12:54 +0200967 * __pci_register_driver - register a new pci driver
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 * @drv: the driver structure to register
Laurent riffard863b18f2005-10-27 23:12:54 +0200969 * @owner: owner module of drv
Randy Dunlapf95d8822007-02-10 14:41:56 -0800970 * @mod_name: module name string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 *
972 * Adds the driver structure to the list of registered drivers.
973 * Returns a negative value on error, otherwise 0.
Steven Coleeaae4b32005-05-03 18:38:30 -0600974 * If no error occurred, the driver remains registered even if
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 * no device was claimed during registration.
976 */
Greg Kroah-Hartman725522b2007-01-15 11:50:02 -0800977int __pci_register_driver(struct pci_driver *drv, struct module *owner,
978 const char *mod_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
980 int error;
981
982 /* initialize common driver fields */
983 drv->driver.name = drv->name;
984 drv->driver.bus = &pci_bus_type;
Laurent riffard863b18f2005-10-27 23:12:54 +0200985 drv->driver.owner = owner;
Greg Kroah-Hartman725522b2007-01-15 11:50:02 -0800986 drv->driver.mod_name = mod_name;
Alan Cox50b00752006-08-16 17:42:18 +0100987
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700988 spin_lock_init(&drv->dynids.lock);
989 INIT_LIST_HEAD(&drv->dynids.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990
991 /* register with core */
992 error = driver_register(&drv->driver);
Akinobu Mita50bf14b2006-11-08 19:53:59 -0800993 if (error)
Chris Wright09943752009-02-23 21:52:23 -0800994 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Akinobu Mita50bf14b2006-11-08 19:53:59 -0800996 error = pci_create_newid_file(drv);
997 if (error)
Chris Wright09943752009-02-23 21:52:23 -0800998 goto out_newid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Chris Wright09943752009-02-23 21:52:23 -08001000 error = pci_create_removeid_file(drv);
1001 if (error)
1002 goto out_removeid;
1003out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return error;
Chris Wright09943752009-02-23 21:52:23 -08001005
1006out_removeid:
1007 pci_remove_newid_file(drv);
1008out_newid:
1009 driver_unregister(&drv->driver);
1010 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011}
1012
1013/**
1014 * pci_unregister_driver - unregister a pci driver
1015 * @drv: the driver structure to unregister
1016 *
1017 * Deletes the driver structure from the list of registered PCI drivers,
1018 * gives it a chance to clean up by calling its remove() function for
1019 * each device it was responsible for, and marks those devices as
1020 * driverless.
1021 */
1022
1023void
1024pci_unregister_driver(struct pci_driver *drv)
1025{
Chris Wright09943752009-02-23 21:52:23 -08001026 pci_remove_removeid_file(drv);
Greg Kroah-Hartman03d43b12007-11-28 12:23:18 -08001027 pci_remove_newid_file(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 driver_unregister(&drv->driver);
1029 pci_free_dynids(drv);
1030}
1031
1032static struct pci_driver pci_compat_driver = {
1033 .name = "compat"
1034};
1035
1036/**
1037 * pci_dev_driver - get the pci_driver of a device
1038 * @dev: the device to query
1039 *
1040 * Returns the appropriate pci_driver structure or %NULL if there is no
1041 * registered driver for the device.
1042 */
1043struct pci_driver *
1044pci_dev_driver(const struct pci_dev *dev)
1045{
1046 if (dev->driver)
1047 return dev->driver;
1048 else {
1049 int i;
1050 for(i=0; i<=PCI_ROM_RESOURCE; i++)
1051 if (dev->resource[i].flags & IORESOURCE_BUSY)
1052 return &pci_compat_driver;
1053 }
1054 return NULL;
1055}
1056
1057/**
1058 * pci_bus_match - Tell if a PCI device structure has a matching PCI device id structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 * @dev: the PCI device structure to match against
Randy Dunlap8f7020d2005-10-23 11:57:38 -07001060 * @drv: the device driver to search for matching PCI device id structures
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 *
1062 * Used by a driver to check whether a PCI device present in the
Randy Dunlap8f7020d2005-10-23 11:57:38 -07001063 * system is in its list of supported devices. Returns the matching
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 * pci_device_id structure or %NULL if there is no match.
1065 */
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001066static int pci_bus_match(struct device *dev, struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001068 struct pci_dev *pci_dev = to_pci_dev(dev);
1069 struct pci_driver *pci_drv = to_pci_driver(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 const struct pci_device_id *found_id;
1071
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001072 found_id = pci_match_device(pci_drv, pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 if (found_id)
1074 return 1;
1075
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001076 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077}
1078
1079/**
1080 * pci_dev_get - increments the reference count of the pci device structure
1081 * @dev: the device being referenced
1082 *
1083 * Each live reference to a device should be refcounted.
1084 *
1085 * Drivers for PCI devices should normally record such references in
1086 * their probe() methods, when they bind to a device, and release
1087 * them by calling pci_dev_put(), in their disconnect() methods.
1088 *
1089 * A pointer to the device with the incremented reference counter is returned.
1090 */
1091struct pci_dev *pci_dev_get(struct pci_dev *dev)
1092{
1093 if (dev)
1094 get_device(&dev->dev);
1095 return dev;
1096}
1097
1098/**
1099 * pci_dev_put - release a use of the pci device structure
1100 * @dev: device that's been disconnected
1101 *
1102 * Must be called when a user of a device is finished with it. When the last
1103 * user of the device calls this function, the memory of the device is freed.
1104 */
1105void pci_dev_put(struct pci_dev *dev)
1106{
1107 if (dev)
1108 put_device(&dev->dev);
1109}
1110
1111#ifndef CONFIG_HOTPLUG
Kay Sievers7eff2e72007-08-14 15:15:12 +02001112int pci_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
1114 return -ENODEV;
1115}
1116#endif
1117
1118struct bus_type pci_bus_type = {
1119 .name = "pci",
1120 .match = pci_bus_match,
Kay Sievers312c0042005-11-16 09:00:00 +01001121 .uevent = pci_uevent,
Russell Kingb15d6862006-01-05 14:30:22 +00001122 .probe = pci_device_probe,
1123 .remove = pci_device_remove,
Linus Torvaldscbd69db2006-06-24 14:50:29 -07001124 .shutdown = pci_device_shutdown,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 .dev_attrs = pci_dev_attrs,
Alex Chiang705b1aa2009-03-20 14:56:31 -06001126 .bus_attrs = pci_bus_attrs,
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001127 .pm = PCI_PM_OPS_PTR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128};
1129
1130static int __init pci_driver_init(void)
1131{
1132 return bus_register(&pci_bus_type);
1133}
1134
1135postcore_initcall(pci_driver_init);
1136
Tejun Heo9dba9102009-09-03 15:26:36 +09001137EXPORT_SYMBOL_GPL(pci_add_dynid);
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001138EXPORT_SYMBOL(pci_match_id);
Laurent riffard863b18f2005-10-27 23:12:54 +02001139EXPORT_SYMBOL(__pci_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140EXPORT_SYMBOL(pci_unregister_driver);
1141EXPORT_SYMBOL(pci_dev_driver);
1142EXPORT_SYMBOL(pci_bus_type);
1143EXPORT_SYMBOL(pci_dev_get);
1144EXPORT_SYMBOL(pci_dev_put);