blob: 9f85960a62ed51a02a625fb8593134634ae6afd1 [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>
Rafael J. Wysockieea3fc032011-07-06 10:51:40 +020021#include <linux/suspend.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "pci.h"
23
Greg Kroah-Hartman75865852005-06-30 02:18:12 -070024struct pci_dynid {
25 struct list_head node;
26 struct pci_device_id id;
27};
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29/**
Tejun Heo9dba9102009-09-03 15:26:36 +090030 * pci_add_dynid - add a new PCI device ID to this driver and re-probe devices
31 * @drv: target pci driver
32 * @vendor: PCI vendor ID
33 * @device: PCI device ID
34 * @subvendor: PCI subvendor ID
35 * @subdevice: PCI subdevice ID
36 * @class: PCI class
37 * @class_mask: PCI class mask
38 * @driver_data: private driver data
39 *
40 * Adds a new dynamic pci device ID to this driver and causes the
41 * driver to probe for all devices again. @drv must have been
42 * registered prior to calling this function.
43 *
44 * CONTEXT:
45 * Does GFP_KERNEL allocation.
46 *
47 * RETURNS:
48 * 0 on success, -errno on failure.
49 */
50int pci_add_dynid(struct pci_driver *drv,
51 unsigned int vendor, unsigned int device,
52 unsigned int subvendor, unsigned int subdevice,
53 unsigned int class, unsigned int class_mask,
54 unsigned long driver_data)
55{
56 struct pci_dynid *dynid;
57 int retval;
58
59 dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
60 if (!dynid)
61 return -ENOMEM;
62
63 dynid->id.vendor = vendor;
64 dynid->id.device = device;
65 dynid->id.subvendor = subvendor;
66 dynid->id.subdevice = subdevice;
67 dynid->id.class = class;
68 dynid->id.class_mask = class_mask;
69 dynid->id.driver_data = driver_data;
70
71 spin_lock(&drv->dynids.lock);
72 list_add_tail(&dynid->node, &drv->dynids.list);
73 spin_unlock(&drv->dynids.lock);
74
Tejun Heo9dba9102009-09-03 15:26:36 +090075 retval = driver_attach(&drv->driver);
Tejun Heo9dba9102009-09-03 15:26:36 +090076
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
Tejun Heo9dba9102009-09-03 15:26:36 +090092/**
93 * store_new_id - sysfs frontend to pci_add_dynid()
Randy Dunlap8f7020d2005-10-23 11:57:38 -070094 * @driver: target device driver
95 * @buf: buffer for scanning device ID data
96 * @count: input size
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 *
Tejun Heo9dba9102009-09-03 15:26:36 +090098 * Allow PCI IDs to be added to an existing driver via sysfs.
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 */
Randy Dunlapf8eb1002005-10-28 20:36:51 -0700100static ssize_t
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101store_new_id(struct device_driver *driver, const char *buf, size_t count)
102{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 struct pci_driver *pdrv = to_pci_driver(driver);
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200104 const struct pci_device_id *ids = pdrv->id_table;
Jean Delvare6ba18632007-04-07 17:21:28 +0200105 __u32 vendor, device, subvendor=PCI_ANY_ID,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 subdevice=PCI_ANY_ID, class=0, class_mask=0;
107 unsigned long driver_data=0;
108 int fields=0;
Tejun Heo9dba9102009-09-03 15:26:36 +0900109 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200111 fields = sscanf(buf, "%x %x %x %x %x %x %lx",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 &vendor, &device, &subvendor, &subdevice,
113 &class, &class_mask, &driver_data);
Jean Delvare6ba18632007-04-07 17:21:28 +0200114 if (fields < 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return -EINVAL;
116
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200117 /* Only accept driver_data values that match an existing id_table
118 entry */
Chris Wright2debb4d2008-11-25 19:36:10 -0800119 if (ids) {
120 retval = -EINVAL;
121 while (ids->vendor || ids->subvendor || ids->class_mask) {
122 if (driver_data == ids->driver_data) {
123 retval = 0;
124 break;
125 }
126 ids++;
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200127 }
Chris Wright2debb4d2008-11-25 19:36:10 -0800128 if (retval) /* No match */
129 return retval;
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200130 }
Jean Delvareb41d6cf2008-08-17 21:06:59 +0200131
Tejun Heo9dba9102009-09-03 15:26:36 +0900132 retval = pci_add_dynid(pdrv, vendor, device, subvendor, subdevice,
133 class, class_mask, driver_data);
Greg Kroah-Hartmanb19441a2006-08-28 11:43:25 -0700134 if (retval)
135 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 return count;
137}
Greg Kroah-Hartman2229c1f2013-10-07 14:51:20 -0600138static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Chris Wright09943752009-02-23 21:52:23 -0800140/**
141 * store_remove_id - remove a PCI device ID from this driver
142 * @driver: target device driver
143 * @buf: buffer for scanning device ID data
144 * @count: input size
145 *
146 * Removes a dynamic pci device ID to this driver.
147 */
148static ssize_t
149store_remove_id(struct device_driver *driver, const char *buf, size_t count)
150{
151 struct pci_dynid *dynid, *n;
152 struct pci_driver *pdrv = to_pci_driver(driver);
153 __u32 vendor, device, subvendor = PCI_ANY_ID,
154 subdevice = PCI_ANY_ID, class = 0, class_mask = 0;
155 int fields = 0;
156 int retval = -ENODEV;
157
158 fields = sscanf(buf, "%x %x %x %x %x %x",
159 &vendor, &device, &subvendor, &subdevice,
160 &class, &class_mask);
161 if (fields < 2)
162 return -EINVAL;
163
164 spin_lock(&pdrv->dynids.lock);
165 list_for_each_entry_safe(dynid, n, &pdrv->dynids.list, node) {
166 struct pci_device_id *id = &dynid->id;
167 if ((id->vendor == vendor) &&
168 (id->device == device) &&
169 (subvendor == PCI_ANY_ID || id->subvendor == subvendor) &&
170 (subdevice == PCI_ANY_ID || id->subdevice == subdevice) &&
171 !((id->class ^ class) & class_mask)) {
172 list_del(&dynid->node);
173 kfree(dynid);
174 retval = 0;
175 break;
176 }
177 }
178 spin_unlock(&pdrv->dynids.lock);
179
180 if (retval)
181 return retval;
182 return count;
183}
Greg Kroah-Hartman2229c1f2013-10-07 14:51:20 -0600184static DRIVER_ATTR(remove_id, S_IWUSR, NULL, store_remove_id);
Chris Wright09943752009-02-23 21:52:23 -0800185
Greg Kroah-Hartman2229c1f2013-10-07 14:51:20 -0600186static struct attribute *pci_drv_attrs[] = {
187 &driver_attr_new_id.attr,
188 &driver_attr_remove_id.attr,
189 NULL,
Konstantin Khlebnikovbfb09a82012-08-08 14:47:51 +0400190};
Greg Kroah-Hartman2229c1f2013-10-07 14:51:20 -0600191ATTRIBUTE_GROUPS(pci_drv);
Alan Sterned283e92012-01-24 14:35:13 -0500192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/**
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700194 * pci_match_id - See if a pci device matches a given pci_id table
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 * @ids: array of PCI device id structures to search in
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700196 * @dev: the PCI device structure to match against.
197 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * Used by a driver to check whether a PCI device present in the
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700199 * system is in its list of supported devices. Returns the matching
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 * pci_device_id structure or %NULL if there is no match.
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700201 *
Randy Dunlap8b607562007-05-09 07:19:14 +0200202 * Deprecated, don't use this as it will not catch any dynamic ids
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700203 * that a driver might want to check for.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 */
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700205const struct pci_device_id *pci_match_id(const struct pci_device_id *ids,
206 struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700208 if (ids) {
209 while (ids->vendor || ids->subvendor || ids->class_mask) {
210 if (pci_match_one_device(ids, dev))
211 return ids;
212 ids++;
213 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 }
215 return NULL;
216}
217
218/**
Randy Dunlapae9608a2007-01-09 21:41:01 -0800219 * pci_match_device - Tell if a PCI device structure has a matching PCI device id structure
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700220 * @drv: the PCI driver to match against
Henrik Kretzschmar39ba4872006-08-15 10:57:16 +0200221 * @dev: the PCI device structure to match against
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700222 *
223 * Used by a driver to check whether a PCI device present in the
224 * system is in its list of supported devices. Returns the matching
225 * pci_device_id structure or %NULL if there is no match.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 */
Adrian Bunkd73460d2007-10-24 18:27:18 +0200227static const struct pci_device_id *pci_match_device(struct pci_driver *drv,
228 struct pci_dev *dev)
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700229{
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700230 struct pci_dynid *dynid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Russell King7461b602006-11-29 21:18:04 +0000232 /* Look at the dynamic ids first, before the static ones */
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700233 spin_lock(&drv->dynids.lock);
234 list_for_each_entry(dynid, &drv->dynids.list, node) {
235 if (pci_match_one_device(&dynid->id, dev)) {
236 spin_unlock(&drv->dynids.lock);
237 return &dynid->id;
238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700240 spin_unlock(&drv->dynids.lock);
Russell King7461b602006-11-29 21:18:04 +0000241
242 return pci_match_id(drv->id_table, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Rusty Russell873392c2008-12-31 23:54:56 +1030245struct drv_dev_and_id {
246 struct pci_driver *drv;
247 struct pci_dev *dev;
248 const struct pci_device_id *id;
249};
250
251static long local_pci_probe(void *_ddi)
252{
253 struct drv_dev_and_id *ddi = _ddi;
Huang Ying967577b2012-11-20 16:08:22 +0800254 struct pci_dev *pci_dev = ddi->dev;
255 struct pci_driver *pci_drv = ddi->drv;
256 struct device *dev = &pci_dev->dev;
Alan Sternf3ec4f82010-06-08 15:23:51 -0400257 int rc;
Rusty Russell873392c2008-12-31 23:54:56 +1030258
Huang Ying967577b2012-11-20 16:08:22 +0800259 /*
260 * Unbound PCI devices are always put in D0, regardless of
261 * runtime PM status. During probe, the device is set to
262 * active and the usage count is incremented. If the driver
263 * supports runtime PM, it should call pm_runtime_put_noidle()
264 * in its probe routine and pm_runtime_get_noresume() in its
265 * remove routine.
Alan Sternf3ec4f82010-06-08 15:23:51 -0400266 */
Huang Ying967577b2012-11-20 16:08:22 +0800267 pm_runtime_get_sync(dev);
268 pci_dev->driver = pci_drv;
269 rc = pci_drv->probe(pci_dev, ddi->id);
Alan Sternf3ec4f82010-06-08 15:23:51 -0400270 if (rc) {
Huang Ying967577b2012-11-20 16:08:22 +0800271 pci_dev->driver = NULL;
272 pm_runtime_put_sync(dev);
Alan Sternf3ec4f82010-06-08 15:23:51 -0400273 }
274 return rc;
Rusty Russell873392c2008-12-31 23:54:56 +1030275}
276
Andi Kleend42c6992005-07-06 19:56:03 +0200277static int pci_call_probe(struct pci_driver *drv, struct pci_dev *dev,
278 const struct pci_device_id *id)
279{
Rusty Russell873392c2008-12-31 23:54:56 +1030280 int error, node;
281 struct drv_dev_and_id ddi = { drv, dev, id };
Mike Travisf70316d2008-04-04 18:11:06 -0700282
Rusty Russell873392c2008-12-31 23:54:56 +1030283 /* Execute driver initialization on node where the device's
284 bus is attached to. This way the driver likely allocates
285 its local memory on the right node without any need to
286 change it. */
287 node = dev_to_node(&dev->dev);
Mike Travisf70316d2008-04-04 18:11:06 -0700288 if (node >= 0) {
Rusty Russell873392c2008-12-31 23:54:56 +1030289 int cpu;
Rusty Russell873392c2008-12-31 23:54:56 +1030290
291 get_online_cpus();
Rusty Russella70f7302009-03-13 14:49:46 +1030292 cpu = cpumask_any_and(cpumask_of_node(node), cpu_online_mask);
Rusty Russell873392c2008-12-31 23:54:56 +1030293 if (cpu < nr_cpu_ids)
294 error = work_on_cpu(cpu, local_pci_probe, &ddi);
295 else
296 error = local_pci_probe(&ddi);
297 put_online_cpus();
298 } else
299 error = local_pci_probe(&ddi);
Andi Kleend42c6992005-07-06 19:56:03 +0200300 return error;
301}
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/**
Randy Dunlap23ea3792010-11-18 15:02:31 -0800304 * __pci_device_probe - check if a driver wants to claim a specific PCI device
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700305 * @drv: driver to call to check if it wants the PCI device
306 * @pci_dev: PCI device being probed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 *
Randy Dunlap8f7020d2005-10-23 11:57:38 -0700308 * returns 0 on success, else error.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 * side-effect: pci_dev->driver is set to drv when drv claims pci_dev.
310 */
311static int
312__pci_device_probe(struct pci_driver *drv, struct pci_dev *pci_dev)
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700313{
314 const struct pci_device_id *id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 int error = 0;
316
317 if (!pci_dev->driver && drv->probe) {
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700318 error = -ENODEV;
319
320 id = pci_match_device(drv, pci_dev);
321 if (id)
Andi Kleend42c6992005-07-06 19:56:03 +0200322 error = pci_call_probe(drv, pci_dev, id);
Huang Ying967577b2012-11-20 16:08:22 +0800323 if (error >= 0)
Greg Kroah-Hartman75865852005-06-30 02:18:12 -0700324 error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 }
326 return error;
327}
328
329static int pci_device_probe(struct device * dev)
330{
331 int error = 0;
332 struct pci_driver *drv;
333 struct pci_dev *pci_dev;
334
335 drv = to_pci_driver(dev->driver);
336 pci_dev = to_pci_dev(dev);
337 pci_dev_get(pci_dev);
338 error = __pci_device_probe(drv, pci_dev);
339 if (error)
340 pci_dev_put(pci_dev);
341
342 return error;
343}
344
345static int pci_device_remove(struct device * dev)
346{
347 struct pci_dev * pci_dev = to_pci_dev(dev);
348 struct pci_driver * drv = pci_dev->driver;
349
350 if (drv) {
Alan Sternf3ec4f82010-06-08 15:23:51 -0400351 if (drv->remove) {
352 pm_runtime_get_sync(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 drv->remove(pci_dev);
Alan Sternf3ec4f82010-06-08 15:23:51 -0400354 pm_runtime_put_noidle(dev);
355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 pci_dev->driver = NULL;
357 }
358
Alan Sternf3ec4f82010-06-08 15:23:51 -0400359 /* Undo the runtime PM settings in local_pci_probe() */
Huang Ying967577b2012-11-20 16:08:22 +0800360 pm_runtime_put_sync(dev);
Alan Sternf3ec4f82010-06-08 15:23:51 -0400361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 /*
Shaohua Li2449e062006-10-20 14:45:32 -0700363 * If the device is still on, set the power state as "unknown",
364 * since it might change by the next time we load the driver.
365 */
366 if (pci_dev->current_state == PCI_D0)
367 pci_dev->current_state = PCI_UNKNOWN;
368
369 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 * We would love to complain here if pci_dev->is_enabled is set, that
371 * the driver should have called pci_disable_device(), but the
372 * unfortunate fact is there are too many odd BIOS and bridge setups
373 * that don't like drivers doing that all of the time.
374 * Oh well, we can dream of sane hardware when we sleep, no matter how
375 * horrible the crap we have to deal with is when we are awake...
376 */
377
378 pci_dev_put(pci_dev);
379 return 0;
380}
381
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200382static void pci_device_shutdown(struct device *dev)
383{
384 struct pci_dev *pci_dev = to_pci_dev(dev);
385 struct pci_driver *drv = pci_dev->driver;
386
Huang Ying3ff2de92012-10-24 14:54:14 +0800387 pm_runtime_resume(dev);
388
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200389 if (drv && drv->shutdown)
390 drv->shutdown(pci_dev);
391 pci_msi_shutdown(pci_dev);
392 pci_msix_shutdown(pci_dev);
Rafael J. Wysocki5b415f12012-02-07 00:50:35 +0100393
394 /*
Khalid Azizb566a222012-04-27 13:00:33 -0600395 * Turn off Bus Master bit on the device to tell it to not
Konstantin Khlebnikov6e0eda32013-03-14 18:49:37 +0400396 * continue to do DMA. Don't touch devices in D3cold or unknown states.
Khalid Azizb566a222012-04-27 13:00:33 -0600397 */
Konstantin Khlebnikov6e0eda32013-03-14 18:49:37 +0400398 if (pci_dev->current_state <= PCI_D3hot)
399 pci_clear_master(pci_dev);
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200400}
401
Rafael J. Wysockiaa338602011-02-11 00:06:54 +0100402#ifdef CONFIG_PM
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100403
404/* Auxiliary functions used for system resume and run-time resume. */
405
406/**
407 * pci_restore_standard_config - restore standard config registers of PCI device
408 * @pci_dev: PCI device to handle
409 */
410static int pci_restore_standard_config(struct pci_dev *pci_dev)
411{
412 pci_update_current_state(pci_dev, PCI_UNKNOWN);
413
414 if (pci_dev->current_state != PCI_D0) {
415 int error = pci_set_power_state(pci_dev, PCI_D0);
416 if (error)
417 return error;
418 }
419
Jon Mason1d3c16a2010-11-30 17:43:26 -0600420 pci_restore_state(pci_dev);
421 return 0;
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100422}
423
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100424#endif
425
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200426#ifdef CONFIG_PM_SLEEP
427
Rafael J. Wysockidb288c92012-07-05 15:20:00 -0600428static void pci_pm_default_resume_early(struct pci_dev *pci_dev)
429{
430 pci_power_up(pci_dev);
431 pci_restore_state(pci_dev);
432 pci_fixup_device(pci_fixup_resume_early, pci_dev);
433}
434
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200435/*
436 * Default "suspend" method for devices that have no driver provided suspend,
Rafael J. Wysockifa58d302009-01-07 13:03:42 +0100437 * or not even a driver at all (second part).
438 */
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100439static void pci_pm_set_unknown_state(struct pci_dev *pci_dev)
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200440{
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200441 /*
442 * mark its power state as "unknown", since we don't know if
443 * e.g. the BIOS will change its device state when we suspend.
444 */
445 if (pci_dev->current_state == PCI_D0)
446 pci_dev->current_state = PCI_UNKNOWN;
447}
448
449/*
450 * Default "resume" method for devices that have no driver provided resume,
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100451 * or not even a driver at all (second part).
452 */
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100453static int pci_pm_reenable_device(struct pci_dev *pci_dev)
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100454{
455 int retval;
456
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200457 /* if the device was enabled before suspend, reenable */
458 retval = pci_reenable_device(pci_dev);
459 /*
460 * if the device was busmaster before the suspend, make it busmaster
461 * again
462 */
463 if (pci_dev->is_busmaster)
464 pci_set_master(pci_dev);
465
466 return retval;
467}
468
469static int pci_legacy_suspend(struct device *dev, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 struct pci_dev * pci_dev = to_pci_dev(dev);
472 struct pci_driver * drv = pci_dev->driver;
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100473
Andrew Morton02669492006-03-23 01:38:34 -0800474 if (drv && drv->suspend) {
Rafael J. Wysocki99dadce2009-02-04 01:59:09 +0100475 pci_power_t prev = pci_dev->current_state;
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100476 int error;
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100477
Frans Pop57ef8022009-03-16 22:39:56 +0100478 error = drv->suspend(pci_dev, state);
479 suspend_report_result(drv->suspend, error);
480 if (error)
481 return error;
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100482
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100483 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
Rafael J. Wysocki99dadce2009-02-04 01:59:09 +0100484 && pci_dev->current_state != PCI_UNKNOWN) {
485 WARN_ONCE(pci_dev->current_state != prev,
486 "PCI PM: Device state not saved by %pF\n",
487 drv->suspend);
Rafael J. Wysocki99dadce2009-02-04 01:59:09 +0100488 }
Andrew Morton02669492006-03-23 01:38:34 -0800489 }
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100490
491 pci_fixup_device(pci_fixup_suspend, pci_dev);
492
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100493 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494}
495
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200496static int pci_legacy_suspend_late(struct device *dev, pm_message_t state)
Linus Torvaldscbd69db2006-06-24 14:50:29 -0700497{
498 struct pci_dev * pci_dev = to_pci_dev(dev);
499 struct pci_driver * drv = pci_dev->driver;
Linus Torvaldscbd69db2006-06-24 14:50:29 -0700500
501 if (drv && drv->suspend_late) {
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100502 pci_power_t prev = pci_dev->current_state;
503 int error;
504
Frans Pop57ef8022009-03-16 22:39:56 +0100505 error = drv->suspend_late(pci_dev, state);
506 suspend_report_result(drv->suspend_late, error);
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100507 if (error)
508 return error;
509
510 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
511 && pci_dev->current_state != PCI_UNKNOWN) {
512 WARN_ONCE(pci_dev->current_state != prev,
513 "PCI PM: Device state not saved by %pF\n",
514 drv->suspend_late);
515 return 0;
516 }
Linus Torvaldscbd69db2006-06-24 14:50:29 -0700517 }
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100518
519 if (!pci_dev->state_saved)
520 pci_save_state(pci_dev);
521
522 pci_pm_set_unknown_state(pci_dev);
523
524 return 0;
Linus Torvaldscbd69db2006-06-24 14:50:29 -0700525}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100527static int pci_legacy_resume_early(struct device *dev)
528{
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100529 struct pci_dev * pci_dev = to_pci_dev(dev);
530 struct pci_driver * drv = pci_dev->driver;
531
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100532 return drv && drv->resume_early ?
533 drv->resume_early(pci_dev) : 0;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100534}
535
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200536static int pci_legacy_resume(struct device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 struct pci_dev * pci_dev = to_pci_dev(dev);
539 struct pci_driver * drv = pci_dev->driver;
540
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100541 pci_fixup_device(pci_fixup_resume, pci_dev);
542
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100543 return drv && drv->resume ?
544 drv->resume(pci_dev) : pci_pm_reenable_device(pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545}
546
Rafael J. Wysocki571ff752009-01-07 13:05:05 +0100547/* Auxiliary functions used by the new power management framework */
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 */
David Fries82440a82011-11-20 15:29:46 -0600575 WARN(ret && drv->driver.pm, "driver %s device %04x:%04x\n",
576 drv->name, pci_dev->vendor, pci_dev->device);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100577
578 return ret;
Rafael J. Wysocki07e836e2009-01-07 13:06:10 +0100579}
580
Rafael J. Wysocki571ff752009-01-07 13:05:05 +0100581/* New power management framework */
582
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200583static int pci_pm_prepare(struct device *dev)
584{
585 struct device_driver *drv = dev->driver;
586 int error = 0;
587
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100588 /*
589 * PCI devices suspended at run time need to be resumed at this
590 * point, because in general it is necessary to reconfigure them for
591 * system suspend. Namely, if the device is supposed to wake up the
592 * system from the sleep state, we may need to reconfigure it for this
593 * purpose. In turn, if the device is not supposed to wake up the
594 * system from the sleep state, we'll have to prevent it from signaling
595 * wake-up.
596 */
Rafael J. Wysockieea3fc032011-07-06 10:51:40 +0200597 pm_runtime_resume(dev);
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100598
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200599 if (drv && drv->pm && drv->pm->prepare)
600 error = drv->pm->prepare(dev);
601
602 return error;
603}
604
605static void pci_pm_complete(struct device *dev)
606{
607 struct device_driver *drv = dev->driver;
608
609 if (drv && drv->pm && drv->pm->complete)
610 drv->pm->complete(dev);
611}
612
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100613#else /* !CONFIG_PM_SLEEP */
614
615#define pci_pm_prepare NULL
616#define pci_pm_complete NULL
617
618#endif /* !CONFIG_PM_SLEEP */
619
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200620#ifdef CONFIG_SUSPEND
621
622static int pci_pm_suspend(struct device *dev)
623{
624 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700625 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200626
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100627 if (pci_has_legacy_pm_support(pci_dev))
628 return pci_legacy_suspend(dev, PMSG_SUSPEND);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100629
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100630 if (!pm) {
631 pci_pm_default_suspend(pci_dev);
632 goto Fixup;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200633 }
Rafael J. Wysockifa58d302009-01-07 13:03:42 +0100634
Rafael J. Wysocki82fee4d2013-02-04 15:56:05 +0400635 pci_dev->state_saved = false;
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100636 if (pm->suspend) {
637 pci_power_t prev = pci_dev->current_state;
638 int error;
639
640 error = pm->suspend(dev);
641 suspend_report_result(pm->suspend, error);
642 if (error)
643 return error;
644
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100645 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100646 && pci_dev->current_state != PCI_UNKNOWN) {
647 WARN_ONCE(pci_dev->current_state != prev,
648 "PCI PM: State of device not saved by %pF\n",
649 pm->suspend);
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100650 }
651 }
652
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100653 Fixup:
654 pci_fixup_device(pci_fixup_suspend, pci_dev);
655
656 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200657}
658
659static int pci_pm_suspend_noirq(struct device *dev)
Greg KHc8958172005-04-08 14:53:31 +0900660{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100661 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700662 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Greg KHc8958172005-04-08 14:53:31 +0900663
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100664 if (pci_has_legacy_pm_support(pci_dev))
665 return pci_legacy_suspend_late(dev, PMSG_SUSPEND);
666
Rafael J. Wysocki931ff682009-03-16 22:40:50 +0100667 if (!pm) {
668 pci_save_state(pci_dev);
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100669 return 0;
Rafael J. Wysocki931ff682009-03-16 22:40:50 +0100670 }
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100671
672 if (pm->suspend_noirq) {
673 pci_power_t prev = pci_dev->current_state;
674 int error;
675
676 error = pm->suspend_noirq(dev);
677 suspend_report_result(pm->suspend_noirq, error);
678 if (error)
679 return error;
680
681 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
682 && pci_dev->current_state != PCI_UNKNOWN) {
683 WARN_ONCE(pci_dev->current_state != prev,
684 "PCI PM: State of device not saved by %pF\n",
685 pm->suspend_noirq);
686 return 0;
687 }
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200688 }
689
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100690 if (!pci_dev->state_saved) {
691 pci_save_state(pci_dev);
692 if (!pci_is_bridge(pci_dev))
693 pci_prepare_to_sleep(pci_dev);
694 }
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100695
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100696 pci_pm_set_unknown_state(pci_dev);
697
Alan Sterndbf0e4c2012-07-09 11:09:21 -0400698 /*
699 * Some BIOSes from ASUS have a bug: If a USB EHCI host controller's
700 * PCI COMMAND register isn't 0, the BIOS assumes that the controller
701 * hasn't been quiesced and tries to turn it off. If the controller
702 * is already in D3, this can hang or cause memory corruption.
703 *
704 * Since the value of the COMMAND register doesn't matter once the
705 * device has been suspended, we can safely set it to 0 here.
706 */
707 if (pci_dev->class == PCI_CLASS_SERIAL_USB_EHCI)
708 pci_write_config_word(pci_dev, PCI_COMMAND, 0);
709
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100710 return 0;
Greg KHc8958172005-04-08 14:53:31 +0900711}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200713static int pci_pm_resume_noirq(struct device *dev)
714{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100715 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200716 struct device_driver *drv = dev->driver;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200717 int error = 0;
718
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100719 pci_pm_default_resume_early(pci_dev);
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100720
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100721 if (pci_has_legacy_pm_support(pci_dev))
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100722 return pci_legacy_resume_early(dev);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100723
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100724 if (drv && drv->pm && drv->pm->resume_noirq)
725 error = drv->pm->resume_noirq(dev);
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200726
727 return error;
728}
729
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100730static int pci_pm_resume(struct device *dev)
731{
732 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700733 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100734 int error = 0;
735
Rafael J. Wysocki418e4da2009-01-26 21:43:08 +0100736 /*
737 * This is necessary for the suspend error path in which resume is
738 * called without restoring the standard config registers of the device.
739 */
740 if (pci_dev->state_saved)
741 pci_restore_standard_config(pci_dev);
742
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100743 if (pci_has_legacy_pm_support(pci_dev))
744 return pci_legacy_resume(dev);
745
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100746 pci_pm_default_resume(pci_dev);
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100747
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100748 if (pm) {
749 if (pm->resume)
750 error = pm->resume(dev);
751 } else {
752 pci_pm_reenable_device(pci_dev);
753 }
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100754
Rafael J. Wysocki999cce42009-09-09 23:51:27 +0200755 return error;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100756}
757
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200758#else /* !CONFIG_SUSPEND */
759
760#define pci_pm_suspend NULL
761#define pci_pm_suspend_noirq NULL
762#define pci_pm_resume NULL
763#define pci_pm_resume_noirq NULL
764
765#endif /* !CONFIG_SUSPEND */
766
Rafael J. Wysocki1f112ce2011-04-11 22:54:42 +0200767#ifdef CONFIG_HIBERNATE_CALLBACKS
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200768
Sebastian Ott699c1982013-08-20 16:41:02 +0200769
770/*
771 * pcibios_pm_ops - provide arch-specific hooks when a PCI device is doing
772 * a hibernate transition
773 */
774struct dev_pm_ops __weak pcibios_pm_ops;
775
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200776static int pci_pm_freeze(struct device *dev)
777{
778 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700779 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200780
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100781 if (pci_has_legacy_pm_support(pci_dev))
782 return pci_legacy_suspend(dev, PMSG_FREEZE);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100783
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100784 if (!pm) {
785 pci_pm_default_suspend(pci_dev);
786 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200787 }
788
Rafael J. Wysocki82fee4d2013-02-04 15:56:05 +0400789 pci_dev->state_saved = false;
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100790 if (pm->freeze) {
791 int error;
792
793 error = pm->freeze(dev);
794 suspend_report_result(pm->freeze, error);
795 if (error)
796 return error;
797 }
798
Sebastian Ott699c1982013-08-20 16:41:02 +0200799 if (pcibios_pm_ops.freeze)
800 return pcibios_pm_ops.freeze(dev);
801
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100802 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200803}
804
805static int pci_pm_freeze_noirq(struct device *dev)
806{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100807 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200808 struct device_driver *drv = dev->driver;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200809
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100810 if (pci_has_legacy_pm_support(pci_dev))
811 return pci_legacy_suspend_late(dev, PMSG_FREEZE);
812
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100813 if (drv && drv->pm && drv->pm->freeze_noirq) {
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100814 int error;
815
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100816 error = drv->pm->freeze_noirq(dev);
817 suspend_report_result(drv->pm->freeze_noirq, error);
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100818 if (error)
819 return error;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200820 }
821
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100822 if (!pci_dev->state_saved)
823 pci_save_state(pci_dev);
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100824
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100825 pci_pm_set_unknown_state(pci_dev);
826
Sebastian Ott699c1982013-08-20 16:41:02 +0200827 if (pcibios_pm_ops.freeze_noirq)
828 return pcibios_pm_ops.freeze_noirq(dev);
829
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100830 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200831}
832
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200833static int pci_pm_thaw_noirq(struct device *dev)
834{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100835 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200836 struct device_driver *drv = dev->driver;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200837 int error = 0;
838
Sebastian Ott699c1982013-08-20 16:41:02 +0200839 if (pcibios_pm_ops.thaw_noirq) {
840 error = pcibios_pm_ops.thaw_noirq(dev);
841 if (error)
842 return error;
843 }
844
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100845 if (pci_has_legacy_pm_support(pci_dev))
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100846 return pci_legacy_resume_early(dev);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100847
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100848 pci_update_current_state(pci_dev, PCI_D0);
849
850 if (drv && drv->pm && drv->pm->thaw_noirq)
851 error = drv->pm->thaw_noirq(dev);
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200852
853 return error;
854}
855
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100856static int pci_pm_thaw(struct device *dev)
857{
858 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700859 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100860 int error = 0;
861
Sebastian Ott699c1982013-08-20 16:41:02 +0200862 if (pcibios_pm_ops.thaw) {
863 error = pcibios_pm_ops.thaw(dev);
864 if (error)
865 return error;
866 }
867
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100868 if (pci_has_legacy_pm_support(pci_dev))
869 return pci_legacy_resume(dev);
870
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100871 if (pm) {
872 if (pm->thaw)
873 error = pm->thaw(dev);
874 } else {
875 pci_pm_reenable_device(pci_dev);
876 }
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100877
Rafael J. Wysocki4b77b0a2009-09-09 23:49:59 +0200878 pci_dev->state_saved = false;
879
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100880 return error;
881}
882
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200883static int pci_pm_poweroff(struct device *dev)
884{
Rafael J. Wysocki355a72d2008-12-08 00:34:57 +0100885 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700886 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200887
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100888 if (pci_has_legacy_pm_support(pci_dev))
889 return pci_legacy_suspend(dev, PMSG_HIBERNATE);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100890
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100891 if (!pm) {
892 pci_pm_default_suspend(pci_dev);
893 goto Fixup;
894 }
895
Rafael J. Wysocki82fee4d2013-02-04 15:56:05 +0400896 pci_dev->state_saved = false;
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100897 if (pm->poweroff) {
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100898 int error;
899
Rafael J. Wysockiddb7c9d2009-02-04 01:56:14 +0100900 error = pm->poweroff(dev);
901 suspend_report_result(pm->poweroff, error);
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100902 if (error)
903 return error;
904 }
905
906 Fixup:
907 pci_fixup_device(pci_fixup_suspend, pci_dev);
908
Sebastian Ott699c1982013-08-20 16:41:02 +0200909 if (pcibios_pm_ops.poweroff)
910 return pcibios_pm_ops.poweroff(dev);
911
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100912 return 0;
913}
914
915static int pci_pm_poweroff_noirq(struct device *dev)
916{
917 struct pci_dev *pci_dev = to_pci_dev(dev);
918 struct device_driver *drv = dev->driver;
919
920 if (pci_has_legacy_pm_support(to_pci_dev(dev)))
921 return pci_legacy_suspend_late(dev, PMSG_HIBERNATE);
922
923 if (!drv || !drv->pm)
924 return 0;
925
926 if (drv->pm->poweroff_noirq) {
927 int error;
928
929 error = drv->pm->poweroff_noirq(dev);
930 suspend_report_result(drv->pm->poweroff_noirq, error);
931 if (error)
932 return error;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200933 }
934
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100935 if (!pci_dev->state_saved && !pci_is_bridge(pci_dev))
936 pci_prepare_to_sleep(pci_dev);
937
Rafael J. Wysocki0b68c8e2012-08-12 23:26:07 +0200938 /*
939 * The reason for doing this here is the same as for the analogous code
940 * in pci_pm_suspend_noirq().
941 */
942 if (pci_dev->class == PCI_CLASS_SERIAL_USB_EHCI)
943 pci_write_config_word(pci_dev, PCI_COMMAND, 0);
944
Sebastian Ott699c1982013-08-20 16:41:02 +0200945 if (pcibios_pm_ops.poweroff_noirq)
946 return pcibios_pm_ops.poweroff_noirq(dev);
947
Rafael J. Wysocki46939f82009-03-16 22:40:26 +0100948 return 0;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200949}
950
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200951static int pci_pm_restore_noirq(struct device *dev)
952{
953 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200954 struct device_driver *drv = dev->driver;
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200955 int error = 0;
956
Sebastian Ott699c1982013-08-20 16:41:02 +0200957 if (pcibios_pm_ops.restore_noirq) {
958 error = pcibios_pm_ops.restore_noirq(dev);
959 if (error)
960 return error;
961 }
962
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +0100963 pci_pm_default_resume_early(pci_dev);
Rafael J. Wysockiaa8c6c92009-01-16 21:54:43 +0100964
Rafael J. Wysockiad8cfa12009-01-07 13:09:37 +0100965 if (pci_has_legacy_pm_support(pci_dev))
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100966 return pci_legacy_resume_early(dev);
Rafael J. Wysockibb808942009-01-07 14:15:17 +0100967
Rafael J. Wysockid67e37d2009-01-07 13:11:28 +0100968 if (drv && drv->pm && drv->pm->restore_noirq)
969 error = drv->pm->restore_noirq(dev);
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +0200970
971 return error;
972}
973
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100974static int pci_pm_restore(struct device *dev)
975{
976 struct pci_dev *pci_dev = to_pci_dev(dev);
Dmitry Torokhov8150f322009-07-24 22:11:32 -0700977 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100978 int error = 0;
979
Sebastian Ott699c1982013-08-20 16:41:02 +0200980 if (pcibios_pm_ops.restore) {
981 error = pcibios_pm_ops.restore(dev);
982 if (error)
983 return error;
984 }
985
Rafael J. Wysocki418e4da2009-01-26 21:43:08 +0100986 /*
987 * This is necessary for the hibernation error path in which restore is
988 * called without restoring the standard config registers of the device.
989 */
990 if (pci_dev->state_saved)
991 pci_restore_standard_config(pci_dev);
992
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100993 if (pci_has_legacy_pm_support(pci_dev))
994 return pci_legacy_resume(dev);
995
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100996 pci_pm_default_resume(pci_dev);
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +0100997
Rafael J. Wysocki5294e252009-02-04 02:09:07 +0100998 if (pm) {
999 if (pm->restore)
1000 error = pm->restore(dev);
1001 } else {
1002 pci_pm_reenable_device(pci_dev);
1003 }
Rafael J. Wysockif6dc1e52009-01-07 13:12:22 +01001004
1005 return error;
1006}
1007
Rafael J. Wysocki1f112ce2011-04-11 22:54:42 +02001008#else /* !CONFIG_HIBERNATE_CALLBACKS */
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001009
1010#define pci_pm_freeze NULL
1011#define pci_pm_freeze_noirq NULL
1012#define pci_pm_thaw NULL
1013#define pci_pm_thaw_noirq NULL
1014#define pci_pm_poweroff NULL
1015#define pci_pm_poweroff_noirq NULL
1016#define pci_pm_restore NULL
1017#define pci_pm_restore_noirq NULL
1018
Rafael J. Wysocki1f112ce2011-04-11 22:54:42 +02001019#endif /* !CONFIG_HIBERNATE_CALLBACKS */
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001020
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001021#ifdef CONFIG_PM_RUNTIME
1022
1023static int pci_pm_runtime_suspend(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 pci_power_t prev = pci_dev->current_state;
1028 int error;
1029
Huang Ying967577b2012-11-20 16:08:22 +08001030 /*
1031 * If pci_dev->driver is not set (unbound), the device should
1032 * always remain in D0 regardless of the runtime PM status
1033 */
1034 if (!pci_dev->driver)
1035 return 0;
1036
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001037 if (!pm || !pm->runtime_suspend)
1038 return -ENOSYS;
1039
Rafael J. Wysocki82fee4d2013-02-04 15:56:05 +04001040 pci_dev->state_saved = false;
Huang Ying448bd852012-06-23 10:23:51 +08001041 pci_dev->no_d3cold = false;
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001042 error = pm->runtime_suspend(dev);
1043 suspend_report_result(pm->runtime_suspend, error);
1044 if (error)
1045 return error;
Huang Ying448bd852012-06-23 10:23:51 +08001046 if (!pci_dev->d3cold_allowed)
1047 pci_dev->no_d3cold = true;
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001048
1049 pci_fixup_device(pci_fixup_suspend, pci_dev);
1050
1051 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
1052 && pci_dev->current_state != PCI_UNKNOWN) {
1053 WARN_ONCE(pci_dev->current_state != prev,
1054 "PCI PM: State of device not saved by %pF\n",
1055 pm->runtime_suspend);
1056 return 0;
1057 }
1058
Dave Airlie42eca232012-10-29 17:26:54 -06001059 if (!pci_dev->state_saved) {
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001060 pci_save_state(pci_dev);
Dave Airlie42eca232012-10-29 17:26:54 -06001061 pci_finish_runtime_suspend(pci_dev);
1062 }
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001063
1064 return 0;
1065}
1066
1067static int pci_pm_runtime_resume(struct device *dev)
1068{
Huang Ying448bd852012-06-23 10:23:51 +08001069 int rc;
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001070 struct pci_dev *pci_dev = to_pci_dev(dev);
1071 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1072
Huang Ying967577b2012-11-20 16:08:22 +08001073 /*
1074 * If pci_dev->driver is not set (unbound), the device should
1075 * always remain in D0 regardless of the runtime PM status
1076 */
1077 if (!pci_dev->driver)
1078 return 0;
1079
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001080 if (!pm || !pm->runtime_resume)
1081 return -ENOSYS;
1082
Rafael J. Wysockidb288c92012-07-05 15:20:00 -06001083 pci_restore_standard_config(pci_dev);
1084 pci_fixup_device(pci_fixup_resume_early, pci_dev);
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001085 __pci_enable_wake(pci_dev, PCI_D0, true, false);
1086 pci_fixup_device(pci_fixup_resume, pci_dev);
1087
Huang Ying448bd852012-06-23 10:23:51 +08001088 rc = pm->runtime_resume(dev);
1089
1090 pci_dev->runtime_d3cold = false;
1091
1092 return rc;
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001093}
1094
1095static int pci_pm_runtime_idle(struct device *dev)
1096{
Huang Ying967577b2012-11-20 16:08:22 +08001097 struct pci_dev *pci_dev = to_pci_dev(dev);
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001098 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
Rafael J. Wysocki45f0a852013-06-03 21:49:52 +02001099 int ret = 0;
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001100
Huang Ying967577b2012-11-20 16:08:22 +08001101 /*
1102 * If pci_dev->driver is not set (unbound), the device should
1103 * always remain in D0 regardless of the runtime PM status
1104 */
1105 if (!pci_dev->driver)
Rafael J. Wysocki45f0a852013-06-03 21:49:52 +02001106 return 0;
Huang Ying967577b2012-11-20 16:08:22 +08001107
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001108 if (!pm)
1109 return -ENOSYS;
1110
Rafael J. Wysocki45f0a852013-06-03 21:49:52 +02001111 if (pm->runtime_idle)
1112 ret = pm->runtime_idle(dev);
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001113
Rafael J. Wysocki45f0a852013-06-03 21:49:52 +02001114 return ret;
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001115}
1116
1117#else /* !CONFIG_PM_RUNTIME */
1118
1119#define pci_pm_runtime_suspend NULL
1120#define pci_pm_runtime_resume NULL
1121#define pci_pm_runtime_idle NULL
1122
1123#endif /* !CONFIG_PM_RUNTIME */
1124
Rafael J. Wysockiaa338602011-02-11 00:06:54 +01001125#ifdef CONFIG_PM
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001126
Dmitry Torokhov8150f322009-07-24 22:11:32 -07001127const struct dev_pm_ops pci_dev_pm_ops = {
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001128 .prepare = pci_pm_prepare,
1129 .complete = pci_pm_complete,
1130 .suspend = pci_pm_suspend,
1131 .resume = pci_pm_resume,
1132 .freeze = pci_pm_freeze,
1133 .thaw = pci_pm_thaw,
1134 .poweroff = pci_pm_poweroff,
1135 .restore = pci_pm_restore,
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001136 .suspend_noirq = pci_pm_suspend_noirq,
1137 .resume_noirq = pci_pm_resume_noirq,
1138 .freeze_noirq = pci_pm_freeze_noirq,
1139 .thaw_noirq = pci_pm_thaw_noirq,
1140 .poweroff_noirq = pci_pm_poweroff_noirq,
1141 .restore_noirq = pci_pm_restore_noirq,
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001142 .runtime_suspend = pci_pm_runtime_suspend,
1143 .runtime_resume = pci_pm_runtime_resume,
1144 .runtime_idle = pci_pm_runtime_idle,
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001145};
1146
Rafael J. Wysockiadf09492008-10-06 22:46:05 +02001147#define PCI_PM_OPS_PTR (&pci_dev_pm_ops)
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001148
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001149#else /* !COMFIG_PM_OPS */
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001150
1151#define PCI_PM_OPS_PTR NULL
1152
Rafael J. Wysocki6cbf8212010-02-17 23:44:58 +01001153#endif /* !COMFIG_PM_OPS */
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001154
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155/**
Laurent riffard863b18f2005-10-27 23:12:54 +02001156 * __pci_register_driver - register a new pci driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 * @drv: the driver structure to register
Laurent riffard863b18f2005-10-27 23:12:54 +02001158 * @owner: owner module of drv
Randy Dunlapf95d8822007-02-10 14:41:56 -08001159 * @mod_name: module name string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 *
1161 * Adds the driver structure to the list of registered drivers.
1162 * Returns a negative value on error, otherwise 0.
Steven Coleeaae4b32005-05-03 18:38:30 -06001163 * If no error occurred, the driver remains registered even if
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 * no device was claimed during registration.
1165 */
Greg Kroah-Hartman725522b2007-01-15 11:50:02 -08001166int __pci_register_driver(struct pci_driver *drv, struct module *owner,
1167 const char *mod_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 /* initialize common driver fields */
1170 drv->driver.name = drv->name;
1171 drv->driver.bus = &pci_bus_type;
Laurent riffard863b18f2005-10-27 23:12:54 +02001172 drv->driver.owner = owner;
Greg Kroah-Hartman725522b2007-01-15 11:50:02 -08001173 drv->driver.mod_name = mod_name;
Alan Cox50b00752006-08-16 17:42:18 +01001174
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001175 spin_lock_init(&drv->dynids.lock);
1176 INIT_LIST_HEAD(&drv->dynids.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 /* register with core */
Konstantin Khlebnikovbfb09a82012-08-08 14:47:51 +04001179 return driver_register(&drv->driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
1182/**
1183 * pci_unregister_driver - unregister a pci driver
1184 * @drv: the driver structure to unregister
1185 *
1186 * Deletes the driver structure from the list of registered PCI drivers,
1187 * gives it a chance to clean up by calling its remove() function for
1188 * each device it was responsible for, and marks those devices as
1189 * driverless.
1190 */
1191
1192void
1193pci_unregister_driver(struct pci_driver *drv)
1194{
1195 driver_unregister(&drv->driver);
1196 pci_free_dynids(drv);
1197}
1198
1199static struct pci_driver pci_compat_driver = {
1200 .name = "compat"
1201};
1202
1203/**
1204 * pci_dev_driver - get the pci_driver of a device
1205 * @dev: the device to query
1206 *
1207 * Returns the appropriate pci_driver structure or %NULL if there is no
1208 * registered driver for the device.
1209 */
1210struct pci_driver *
1211pci_dev_driver(const struct pci_dev *dev)
1212{
1213 if (dev->driver)
1214 return dev->driver;
1215 else {
1216 int i;
1217 for(i=0; i<=PCI_ROM_RESOURCE; i++)
1218 if (dev->resource[i].flags & IORESOURCE_BUSY)
1219 return &pci_compat_driver;
1220 }
1221 return NULL;
1222}
1223
1224/**
1225 * pci_bus_match - Tell if a PCI device structure has a matching PCI device id structure
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 * @dev: the PCI device structure to match against
Randy Dunlap8f7020d2005-10-23 11:57:38 -07001227 * @drv: the device driver to search for matching PCI device id structures
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 *
1229 * Used by a driver to check whether a PCI device present in the
Randy Dunlap8f7020d2005-10-23 11:57:38 -07001230 * system is in its list of supported devices. Returns the matching
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 * pci_device_id structure or %NULL if there is no match.
1232 */
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001233static int pci_bus_match(struct device *dev, struct device_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001235 struct pci_dev *pci_dev = to_pci_dev(dev);
Yinghai Lu58d9a382013-01-21 13:20:51 -08001236 struct pci_driver *pci_drv;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 const struct pci_device_id *found_id;
1238
Yinghai Lu58d9a382013-01-21 13:20:51 -08001239 if (!pci_dev->match_driver)
1240 return 0;
1241
1242 pci_drv = to_pci_driver(drv);
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001243 found_id = pci_match_device(pci_drv, pci_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 if (found_id)
1245 return 1;
1246
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001247 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248}
1249
1250/**
1251 * pci_dev_get - increments the reference count of the pci device structure
1252 * @dev: the device being referenced
1253 *
1254 * Each live reference to a device should be refcounted.
1255 *
1256 * Drivers for PCI devices should normally record such references in
1257 * their probe() methods, when they bind to a device, and release
1258 * them by calling pci_dev_put(), in their disconnect() methods.
1259 *
1260 * A pointer to the device with the incremented reference counter is returned.
1261 */
1262struct pci_dev *pci_dev_get(struct pci_dev *dev)
1263{
1264 if (dev)
1265 get_device(&dev->dev);
1266 return dev;
1267}
1268
1269/**
1270 * pci_dev_put - release a use of the pci device structure
1271 * @dev: device that's been disconnected
1272 *
1273 * Must be called when a user of a device is finished with it. When the last
1274 * user of the device calls this function, the memory of the device is freed.
1275 */
1276void pci_dev_put(struct pci_dev *dev)
1277{
1278 if (dev)
1279 put_device(&dev->dev);
1280}
1281
Bill Pemberton8ccc9aa2012-11-21 15:34:58 -05001282static int pci_uevent(struct device *dev, struct kobj_uevent_env *env)
1283{
1284 struct pci_dev *pdev;
1285
1286 if (!dev)
1287 return -ENODEV;
1288
1289 pdev = to_pci_dev(dev);
1290 if (!pdev)
1291 return -ENODEV;
1292
1293 if (add_uevent_var(env, "PCI_CLASS=%04X", pdev->class))
1294 return -ENOMEM;
1295
1296 if (add_uevent_var(env, "PCI_ID=%04X:%04X", pdev->vendor, pdev->device))
1297 return -ENOMEM;
1298
1299 if (add_uevent_var(env, "PCI_SUBSYS_ID=%04X:%04X", pdev->subsystem_vendor,
1300 pdev->subsystem_device))
1301 return -ENOMEM;
1302
1303 if (add_uevent_var(env, "PCI_SLOT_NAME=%s", pci_name(pdev)))
1304 return -ENOMEM;
1305
1306 if (add_uevent_var(env, "MODALIAS=pci:v%08Xd%08Xsv%08Xsd%08Xbc%02Xsc%02Xi%02x",
1307 pdev->vendor, pdev->device,
1308 pdev->subsystem_vendor, pdev->subsystem_device,
1309 (u8)(pdev->class >> 16), (u8)(pdev->class >> 8),
1310 (u8)(pdev->class)))
1311 return -ENOMEM;
1312 return 0;
1313}
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315struct bus_type pci_bus_type = {
1316 .name = "pci",
1317 .match = pci_bus_match,
Kay Sievers312c0042005-11-16 09:00:00 +01001318 .uevent = pci_uevent,
Russell Kingb15d6862006-01-05 14:30:22 +00001319 .probe = pci_device_probe,
1320 .remove = pci_device_remove,
Linus Torvaldscbd69db2006-06-24 14:50:29 -07001321 .shutdown = pci_device_shutdown,
Greg Kroah-Hartman5136b2d2013-10-06 23:55:40 -07001322 .dev_groups = pci_dev_groups,
Greg Kroah-Hartman0f49ba52013-10-07 14:51:02 -06001323 .bus_groups = pci_bus_groups,
Greg Kroah-Hartman2229c1f2013-10-07 14:51:20 -06001324 .drv_groups = pci_drv_groups,
Rafael J. Wysockibbb44d92008-05-20 00:49:04 +02001325 .pm = PCI_PM_OPS_PTR,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326};
1327
1328static int __init pci_driver_init(void)
1329{
1330 return bus_register(&pci_bus_type);
1331}
1332
1333postcore_initcall(pci_driver_init);
1334
Tejun Heo9dba9102009-09-03 15:26:36 +09001335EXPORT_SYMBOL_GPL(pci_add_dynid);
Greg Kroah-Hartman75865852005-06-30 02:18:12 -07001336EXPORT_SYMBOL(pci_match_id);
Laurent riffard863b18f2005-10-27 23:12:54 +02001337EXPORT_SYMBOL(__pci_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338EXPORT_SYMBOL(pci_unregister_driver);
1339EXPORT_SYMBOL(pci_dev_driver);
1340EXPORT_SYMBOL(pci_bus_type);
1341EXPORT_SYMBOL(pci_dev_get);
1342EXPORT_SYMBOL(pci_dev_put);