xref: /openbmc/linux/drivers/pci/pci-driver.c (revision 161f4089)
1 /*
2  * drivers/pci/pci-driver.c
3  *
4  * (C) Copyright 2002-2004, 2007 Greg Kroah-Hartman <greg@kroah.com>
5  * (C) Copyright 2007 Novell Inc.
6  *
7  * Released under the GPL v2 only.
8  *
9  */
10 
11 #include <linux/pci.h>
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/device.h>
15 #include <linux/mempolicy.h>
16 #include <linux/string.h>
17 #include <linux/slab.h>
18 #include <linux/sched.h>
19 #include <linux/cpu.h>
20 #include <linux/pm_runtime.h>
21 #include <linux/suspend.h>
22 #include "pci.h"
23 
24 struct pci_dynid {
25 	struct list_head node;
26 	struct pci_device_id id;
27 };
28 
29 /**
30  * 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  */
50 int 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 
75 	retval = driver_attach(&drv->driver);
76 
77 	return retval;
78 }
79 
80 static 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  * store_new_id - sysfs frontend to pci_add_dynid()
94  * @driver: target device driver
95  * @buf: buffer for scanning device ID data
96  * @count: input size
97  *
98  * Allow PCI IDs to be added to an existing driver via sysfs.
99  */
100 static ssize_t
101 store_new_id(struct device_driver *driver, const char *buf, size_t count)
102 {
103 	struct pci_driver *pdrv = to_pci_driver(driver);
104 	const struct pci_device_id *ids = pdrv->id_table;
105 	__u32 vendor, device, subvendor=PCI_ANY_ID,
106 		subdevice=PCI_ANY_ID, class=0, class_mask=0;
107 	unsigned long driver_data=0;
108 	int fields=0;
109 	int retval;
110 
111 	fields = sscanf(buf, "%x %x %x %x %x %x %lx",
112 			&vendor, &device, &subvendor, &subdevice,
113 			&class, &class_mask, &driver_data);
114 	if (fields < 2)
115 		return -EINVAL;
116 
117 	/* Only accept driver_data values that match an existing id_table
118 	   entry */
119 	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++;
127 		}
128 		if (retval)	/* No match */
129 			return retval;
130 	}
131 
132 	retval = pci_add_dynid(pdrv, vendor, device, subvendor, subdevice,
133 			       class, class_mask, driver_data);
134 	if (retval)
135 		return retval;
136 	return count;
137 }
138 static DRIVER_ATTR(new_id, S_IWUSR, NULL, store_new_id);
139 
140 /**
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  */
148 static ssize_t
149 store_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 }
184 static DRIVER_ATTR(remove_id, S_IWUSR, NULL, store_remove_id);
185 
186 static struct attribute *pci_drv_attrs[] = {
187 	&driver_attr_new_id.attr,
188 	&driver_attr_remove_id.attr,
189 	NULL,
190 };
191 ATTRIBUTE_GROUPS(pci_drv);
192 
193 /**
194  * pci_match_id - See if a pci device matches a given pci_id table
195  * @ids: array of PCI device id structures to search in
196  * @dev: the PCI device structure to match against.
197  *
198  * Used by a driver to check whether a PCI device present in the
199  * system is in its list of supported devices.  Returns the matching
200  * pci_device_id structure or %NULL if there is no match.
201  *
202  * Deprecated, don't use this as it will not catch any dynamic ids
203  * that a driver might want to check for.
204  */
205 const struct pci_device_id *pci_match_id(const struct pci_device_id *ids,
206 					 struct pci_dev *dev)
207 {
208 	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 		}
214 	}
215 	return NULL;
216 }
217 
218 /**
219  * pci_match_device - Tell if a PCI device structure has a matching PCI device id structure
220  * @drv: the PCI driver to match against
221  * @dev: the PCI device structure to match against
222  *
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.
226  */
227 static const struct pci_device_id *pci_match_device(struct pci_driver *drv,
228 						    struct pci_dev *dev)
229 {
230 	struct pci_dynid *dynid;
231 
232 	/* Look at the dynamic ids first, before the static ones */
233 	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 		}
239 	}
240 	spin_unlock(&drv->dynids.lock);
241 
242 	return pci_match_id(drv->id_table, dev);
243 }
244 
245 struct drv_dev_and_id {
246 	struct pci_driver *drv;
247 	struct pci_dev *dev;
248 	const struct pci_device_id *id;
249 };
250 
251 static long local_pci_probe(void *_ddi)
252 {
253 	struct drv_dev_and_id *ddi = _ddi;
254 	struct pci_dev *pci_dev = ddi->dev;
255 	struct pci_driver *pci_drv = ddi->drv;
256 	struct device *dev = &pci_dev->dev;
257 	int rc;
258 
259 	/*
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.
266 	 */
267 	pm_runtime_get_sync(dev);
268 	pci_dev->driver = pci_drv;
269 	rc = pci_drv->probe(pci_dev, ddi->id);
270 	if (rc) {
271 		pci_dev->driver = NULL;
272 		pm_runtime_put_sync(dev);
273 	}
274 	return rc;
275 }
276 
277 static int pci_call_probe(struct pci_driver *drv, struct pci_dev *dev,
278 			  const struct pci_device_id *id)
279 {
280 	int error, node;
281 	struct drv_dev_and_id ddi = { drv, dev, id };
282 
283 	/* 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);
288 	if (node >= 0) {
289 		int cpu;
290 
291 		get_online_cpus();
292 		cpu = cpumask_any_and(cpumask_of_node(node), cpu_online_mask);
293 		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);
300 	return error;
301 }
302 
303 /**
304  * __pci_device_probe - check if a driver wants to claim a specific PCI device
305  * @drv: driver to call to check if it wants the PCI device
306  * @pci_dev: PCI device being probed
307  *
308  * returns 0 on success, else error.
309  * side-effect: pci_dev->driver is set to drv when drv claims pci_dev.
310  */
311 static int
312 __pci_device_probe(struct pci_driver *drv, struct pci_dev *pci_dev)
313 {
314 	const struct pci_device_id *id;
315 	int error = 0;
316 
317 	if (!pci_dev->driver && drv->probe) {
318 		error = -ENODEV;
319 
320 		id = pci_match_device(drv, pci_dev);
321 		if (id)
322 			error = pci_call_probe(drv, pci_dev, id);
323 		if (error >= 0)
324 			error = 0;
325 	}
326 	return error;
327 }
328 
329 static 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 
345 static 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) {
351 		if (drv->remove) {
352 			pm_runtime_get_sync(dev);
353 			drv->remove(pci_dev);
354 			pm_runtime_put_noidle(dev);
355 		}
356 		pci_dev->driver = NULL;
357 	}
358 
359 	/* Undo the runtime PM settings in local_pci_probe() */
360 	pm_runtime_put_sync(dev);
361 
362 	/*
363 	 * 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 	/*
370 	 * 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 
382 static 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 
387 	pm_runtime_resume(dev);
388 
389 	if (drv && drv->shutdown)
390 		drv->shutdown(pci_dev);
391 	pci_msi_shutdown(pci_dev);
392 	pci_msix_shutdown(pci_dev);
393 
394 	/*
395 	 * Turn off Bus Master bit on the device to tell it to not
396 	 * continue to do DMA. Don't touch devices in D3cold or unknown states.
397 	 */
398 	if (pci_dev->current_state <= PCI_D3hot)
399 		pci_clear_master(pci_dev);
400 }
401 
402 #ifdef CONFIG_PM
403 
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  */
410 static 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 
420 	pci_restore_state(pci_dev);
421 	return 0;
422 }
423 
424 #endif
425 
426 #ifdef CONFIG_PM_SLEEP
427 
428 static 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 
435 /*
436  * Default "suspend" method for devices that have no driver provided suspend,
437  * or not even a driver at all (second part).
438  */
439 static void pci_pm_set_unknown_state(struct pci_dev *pci_dev)
440 {
441 	/*
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,
451  * or not even a driver at all (second part).
452  */
453 static int pci_pm_reenable_device(struct pci_dev *pci_dev)
454 {
455 	int retval;
456 
457 	/* 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 
469 static int pci_legacy_suspend(struct device *dev, pm_message_t state)
470 {
471 	struct pci_dev * pci_dev = to_pci_dev(dev);
472 	struct pci_driver * drv = pci_dev->driver;
473 
474 	if (drv && drv->suspend) {
475 		pci_power_t prev = pci_dev->current_state;
476 		int error;
477 
478 		error = drv->suspend(pci_dev, state);
479 		suspend_report_result(drv->suspend, error);
480 		if (error)
481 			return error;
482 
483 		if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
484 		    && 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);
488 		}
489 	}
490 
491 	pci_fixup_device(pci_fixup_suspend, pci_dev);
492 
493 	return 0;
494 }
495 
496 static int pci_legacy_suspend_late(struct device *dev, pm_message_t state)
497 {
498 	struct pci_dev * pci_dev = to_pci_dev(dev);
499 	struct pci_driver * drv = pci_dev->driver;
500 
501 	if (drv && drv->suspend_late) {
502 		pci_power_t prev = pci_dev->current_state;
503 		int error;
504 
505 		error = drv->suspend_late(pci_dev, state);
506 		suspend_report_result(drv->suspend_late, error);
507 		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 		}
517 	}
518 
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;
525 }
526 
527 static int pci_legacy_resume_early(struct device *dev)
528 {
529 	struct pci_dev * pci_dev = to_pci_dev(dev);
530 	struct pci_driver * drv = pci_dev->driver;
531 
532 	return drv && drv->resume_early ?
533 			drv->resume_early(pci_dev) : 0;
534 }
535 
536 static int pci_legacy_resume(struct device *dev)
537 {
538 	struct pci_dev * pci_dev = to_pci_dev(dev);
539 	struct pci_driver * drv = pci_dev->driver;
540 
541 	pci_fixup_device(pci_fixup_resume, pci_dev);
542 
543 	return drv && drv->resume ?
544 			drv->resume(pci_dev) : pci_pm_reenable_device(pci_dev);
545 }
546 
547 /* Auxiliary functions used by the new power management framework */
548 
549 static void pci_pm_default_resume(struct pci_dev *pci_dev)
550 {
551 	pci_fixup_device(pci_fixup_resume, pci_dev);
552 
553 	if (!pci_is_bridge(pci_dev))
554 		pci_enable_wake(pci_dev, PCI_D0, false);
555 }
556 
557 static void pci_pm_default_suspend(struct pci_dev *pci_dev)
558 {
559 	/* Disable non-bridge devices without PM support */
560 	if (!pci_is_bridge(pci_dev))
561 		pci_disable_enabled_device(pci_dev);
562 }
563 
564 static bool pci_has_legacy_pm_support(struct pci_dev *pci_dev)
565 {
566 	struct pci_driver *drv = pci_dev->driver;
567 	bool ret = drv && (drv->suspend || drv->suspend_late || drv->resume
568 		|| drv->resume_early);
569 
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(ret && drv->driver.pm, "driver %s device %04x:%04x\n",
576 		drv->name, pci_dev->vendor, pci_dev->device);
577 
578 	return ret;
579 }
580 
581 /* New power management framework */
582 
583 static int pci_pm_prepare(struct device *dev)
584 {
585 	struct device_driver *drv = dev->driver;
586 	int error = 0;
587 
588 	/*
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 	 */
597 	pm_runtime_resume(dev);
598 
599 	if (drv && drv->pm && drv->pm->prepare)
600 		error = drv->pm->prepare(dev);
601 
602 	return error;
603 }
604 
605 static 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 
613 #else /* !CONFIG_PM_SLEEP */
614 
615 #define pci_pm_prepare	NULL
616 #define pci_pm_complete	NULL
617 
618 #endif /* !CONFIG_PM_SLEEP */
619 
620 #ifdef CONFIG_SUSPEND
621 
622 static int pci_pm_suspend(struct device *dev)
623 {
624 	struct pci_dev *pci_dev = to_pci_dev(dev);
625 	const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
626 
627 	if (pci_has_legacy_pm_support(pci_dev))
628 		return pci_legacy_suspend(dev, PMSG_SUSPEND);
629 
630 	if (!pm) {
631 		pci_pm_default_suspend(pci_dev);
632 		goto Fixup;
633 	}
634 
635 	pci_dev->state_saved = false;
636 	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 
645 		if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
646 		    && 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);
650 		}
651 	}
652 
653  Fixup:
654 	pci_fixup_device(pci_fixup_suspend, pci_dev);
655 
656 	return 0;
657 }
658 
659 static int pci_pm_suspend_noirq(struct device *dev)
660 {
661 	struct pci_dev *pci_dev = to_pci_dev(dev);
662 	const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
663 
664 	if (pci_has_legacy_pm_support(pci_dev))
665 		return pci_legacy_suspend_late(dev, PMSG_SUSPEND);
666 
667 	if (!pm) {
668 		pci_save_state(pci_dev);
669 		return 0;
670 	}
671 
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 		}
688 	}
689 
690 	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 	}
695 
696 	pci_pm_set_unknown_state(pci_dev);
697 
698 	/*
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 
710 	return 0;
711 }
712 
713 static int pci_pm_resume_noirq(struct device *dev)
714 {
715 	struct pci_dev *pci_dev = to_pci_dev(dev);
716 	struct device_driver *drv = dev->driver;
717 	int error = 0;
718 
719 	pci_pm_default_resume_early(pci_dev);
720 
721 	if (pci_has_legacy_pm_support(pci_dev))
722 		return pci_legacy_resume_early(dev);
723 
724 	if (drv && drv->pm && drv->pm->resume_noirq)
725 		error = drv->pm->resume_noirq(dev);
726 
727 	return error;
728 }
729 
730 static int pci_pm_resume(struct device *dev)
731 {
732 	struct pci_dev *pci_dev = to_pci_dev(dev);
733 	const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
734 	int error = 0;
735 
736 	/*
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 
743 	if (pci_has_legacy_pm_support(pci_dev))
744 		return pci_legacy_resume(dev);
745 
746 	pci_pm_default_resume(pci_dev);
747 
748 	if (pm) {
749 		if (pm->resume)
750 			error = pm->resume(dev);
751 	} else {
752 		pci_pm_reenable_device(pci_dev);
753 	}
754 
755 	return error;
756 }
757 
758 #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 
767 #ifdef CONFIG_HIBERNATE_CALLBACKS
768 
769 
770 /*
771  * pcibios_pm_ops - provide arch-specific hooks when a PCI device is doing
772  * a hibernate transition
773  */
774 struct dev_pm_ops __weak pcibios_pm_ops;
775 
776 static int pci_pm_freeze(struct device *dev)
777 {
778 	struct pci_dev *pci_dev = to_pci_dev(dev);
779 	const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
780 
781 	if (pci_has_legacy_pm_support(pci_dev))
782 		return pci_legacy_suspend(dev, PMSG_FREEZE);
783 
784 	if (!pm) {
785 		pci_pm_default_suspend(pci_dev);
786 		return 0;
787 	}
788 
789 	pci_dev->state_saved = false;
790 	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 
799 	if (pcibios_pm_ops.freeze)
800 		return pcibios_pm_ops.freeze(dev);
801 
802 	return 0;
803 }
804 
805 static int pci_pm_freeze_noirq(struct device *dev)
806 {
807 	struct pci_dev *pci_dev = to_pci_dev(dev);
808 	struct device_driver *drv = dev->driver;
809 
810 	if (pci_has_legacy_pm_support(pci_dev))
811 		return pci_legacy_suspend_late(dev, PMSG_FREEZE);
812 
813 	if (drv && drv->pm && drv->pm->freeze_noirq) {
814 		int error;
815 
816 		error = drv->pm->freeze_noirq(dev);
817 		suspend_report_result(drv->pm->freeze_noirq, error);
818 		if (error)
819 			return error;
820 	}
821 
822 	if (!pci_dev->state_saved)
823 		pci_save_state(pci_dev);
824 
825 	pci_pm_set_unknown_state(pci_dev);
826 
827 	if (pcibios_pm_ops.freeze_noirq)
828 		return pcibios_pm_ops.freeze_noirq(dev);
829 
830 	return 0;
831 }
832 
833 static int pci_pm_thaw_noirq(struct device *dev)
834 {
835 	struct pci_dev *pci_dev = to_pci_dev(dev);
836 	struct device_driver *drv = dev->driver;
837 	int error = 0;
838 
839 	if (pcibios_pm_ops.thaw_noirq) {
840 		error = pcibios_pm_ops.thaw_noirq(dev);
841 		if (error)
842 			return error;
843 	}
844 
845 	if (pci_has_legacy_pm_support(pci_dev))
846 		return pci_legacy_resume_early(dev);
847 
848 	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);
852 
853 	return error;
854 }
855 
856 static int pci_pm_thaw(struct device *dev)
857 {
858 	struct pci_dev *pci_dev = to_pci_dev(dev);
859 	const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
860 	int error = 0;
861 
862 	if (pcibios_pm_ops.thaw) {
863 		error = pcibios_pm_ops.thaw(dev);
864 		if (error)
865 			return error;
866 	}
867 
868 	if (pci_has_legacy_pm_support(pci_dev))
869 		return pci_legacy_resume(dev);
870 
871 	if (pm) {
872 		if (pm->thaw)
873 			error = pm->thaw(dev);
874 	} else {
875 		pci_pm_reenable_device(pci_dev);
876 	}
877 
878 	pci_dev->state_saved = false;
879 
880 	return error;
881 }
882 
883 static int pci_pm_poweroff(struct device *dev)
884 {
885 	struct pci_dev *pci_dev = to_pci_dev(dev);
886 	const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
887 
888 	if (pci_has_legacy_pm_support(pci_dev))
889 		return pci_legacy_suspend(dev, PMSG_HIBERNATE);
890 
891 	if (!pm) {
892 		pci_pm_default_suspend(pci_dev);
893 		goto Fixup;
894 	}
895 
896 	pci_dev->state_saved = false;
897 	if (pm->poweroff) {
898 		int error;
899 
900 		error = pm->poweroff(dev);
901 		suspend_report_result(pm->poweroff, error);
902 		if (error)
903 			return error;
904 	}
905 
906  Fixup:
907 	pci_fixup_device(pci_fixup_suspend, pci_dev);
908 
909 	if (pcibios_pm_ops.poweroff)
910 		return pcibios_pm_ops.poweroff(dev);
911 
912 	return 0;
913 }
914 
915 static 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;
933 	}
934 
935 	if (!pci_dev->state_saved && !pci_is_bridge(pci_dev))
936 		pci_prepare_to_sleep(pci_dev);
937 
938 	/*
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 
945 	if (pcibios_pm_ops.poweroff_noirq)
946 		return pcibios_pm_ops.poweroff_noirq(dev);
947 
948 	return 0;
949 }
950 
951 static int pci_pm_restore_noirq(struct device *dev)
952 {
953 	struct pci_dev *pci_dev = to_pci_dev(dev);
954 	struct device_driver *drv = dev->driver;
955 	int error = 0;
956 
957 	if (pcibios_pm_ops.restore_noirq) {
958 		error = pcibios_pm_ops.restore_noirq(dev);
959 		if (error)
960 			return error;
961 	}
962 
963 	pci_pm_default_resume_early(pci_dev);
964 
965 	if (pci_has_legacy_pm_support(pci_dev))
966 		return pci_legacy_resume_early(dev);
967 
968 	if (drv && drv->pm && drv->pm->restore_noirq)
969 		error = drv->pm->restore_noirq(dev);
970 
971 	return error;
972 }
973 
974 static int pci_pm_restore(struct device *dev)
975 {
976 	struct pci_dev *pci_dev = to_pci_dev(dev);
977 	const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
978 	int error = 0;
979 
980 	if (pcibios_pm_ops.restore) {
981 		error = pcibios_pm_ops.restore(dev);
982 		if (error)
983 			return error;
984 	}
985 
986 	/*
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 
993 	if (pci_has_legacy_pm_support(pci_dev))
994 		return pci_legacy_resume(dev);
995 
996 	pci_pm_default_resume(pci_dev);
997 
998 	if (pm) {
999 		if (pm->restore)
1000 			error = pm->restore(dev);
1001 	} else {
1002 		pci_pm_reenable_device(pci_dev);
1003 	}
1004 
1005 	return error;
1006 }
1007 
1008 #else /* !CONFIG_HIBERNATE_CALLBACKS */
1009 
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 
1019 #endif /* !CONFIG_HIBERNATE_CALLBACKS */
1020 
1021 #ifdef CONFIG_PM_RUNTIME
1022 
1023 static 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 
1030 	/*
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 
1037 	if (!pm || !pm->runtime_suspend)
1038 		return -ENOSYS;
1039 
1040 	pci_dev->state_saved = false;
1041 	pci_dev->no_d3cold = false;
1042 	error = pm->runtime_suspend(dev);
1043 	suspend_report_result(pm->runtime_suspend, error);
1044 	if (error)
1045 		return error;
1046 	if (!pci_dev->d3cold_allowed)
1047 		pci_dev->no_d3cold = true;
1048 
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 
1059 	if (!pci_dev->state_saved) {
1060 		pci_save_state(pci_dev);
1061 		pci_finish_runtime_suspend(pci_dev);
1062 	}
1063 
1064 	return 0;
1065 }
1066 
1067 static int pci_pm_runtime_resume(struct device *dev)
1068 {
1069 	int rc;
1070 	struct pci_dev *pci_dev = to_pci_dev(dev);
1071 	const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1072 
1073 	/*
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 
1080 	if (!pm || !pm->runtime_resume)
1081 		return -ENOSYS;
1082 
1083 	pci_restore_standard_config(pci_dev);
1084 	pci_fixup_device(pci_fixup_resume_early, pci_dev);
1085 	__pci_enable_wake(pci_dev, PCI_D0, true, false);
1086 	pci_fixup_device(pci_fixup_resume, pci_dev);
1087 
1088 	rc = pm->runtime_resume(dev);
1089 
1090 	pci_dev->runtime_d3cold = false;
1091 
1092 	return rc;
1093 }
1094 
1095 static int pci_pm_runtime_idle(struct device *dev)
1096 {
1097 	struct pci_dev *pci_dev = to_pci_dev(dev);
1098 	const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1099 	int ret = 0;
1100 
1101 	/*
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)
1106 		return 0;
1107 
1108 	if (!pm)
1109 		return -ENOSYS;
1110 
1111 	if (pm->runtime_idle)
1112 		ret = pm->runtime_idle(dev);
1113 
1114 	return ret;
1115 }
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 
1125 #ifdef CONFIG_PM
1126 
1127 const struct dev_pm_ops pci_dev_pm_ops = {
1128 	.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,
1136 	.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,
1142 	.runtime_suspend = pci_pm_runtime_suspend,
1143 	.runtime_resume = pci_pm_runtime_resume,
1144 	.runtime_idle = pci_pm_runtime_idle,
1145 };
1146 
1147 #define PCI_PM_OPS_PTR	(&pci_dev_pm_ops)
1148 
1149 #else /* !COMFIG_PM_OPS */
1150 
1151 #define PCI_PM_OPS_PTR	NULL
1152 
1153 #endif /* !COMFIG_PM_OPS */
1154 
1155 /**
1156  * __pci_register_driver - register a new pci driver
1157  * @drv: the driver structure to register
1158  * @owner: owner module of drv
1159  * @mod_name: module name string
1160  *
1161  * Adds the driver structure to the list of registered drivers.
1162  * Returns a negative value on error, otherwise 0.
1163  * If no error occurred, the driver remains registered even if
1164  * no device was claimed during registration.
1165  */
1166 int __pci_register_driver(struct pci_driver *drv, struct module *owner,
1167 			  const char *mod_name)
1168 {
1169 	/* initialize common driver fields */
1170 	drv->driver.name = drv->name;
1171 	drv->driver.bus = &pci_bus_type;
1172 	drv->driver.owner = owner;
1173 	drv->driver.mod_name = mod_name;
1174 
1175 	spin_lock_init(&drv->dynids.lock);
1176 	INIT_LIST_HEAD(&drv->dynids.list);
1177 
1178 	/* register with core */
1179 	return driver_register(&drv->driver);
1180 }
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 
1192 void
1193 pci_unregister_driver(struct pci_driver *drv)
1194 {
1195 	driver_unregister(&drv->driver);
1196 	pci_free_dynids(drv);
1197 }
1198 
1199 static 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  */
1210 struct pci_driver *
1211 pci_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
1226  * @dev: the PCI device structure to match against
1227  * @drv: the device driver to search for matching PCI device id structures
1228  *
1229  * Used by a driver to check whether a PCI device present in the
1230  * system is in its list of supported devices. Returns the matching
1231  * pci_device_id structure or %NULL if there is no match.
1232  */
1233 static int pci_bus_match(struct device *dev, struct device_driver *drv)
1234 {
1235 	struct pci_dev *pci_dev = to_pci_dev(dev);
1236 	struct pci_driver *pci_drv;
1237 	const struct pci_device_id *found_id;
1238 
1239 	if (!pci_dev->match_driver)
1240 		return 0;
1241 
1242 	pci_drv = to_pci_driver(drv);
1243 	found_id = pci_match_device(pci_drv, pci_dev);
1244 	if (found_id)
1245 		return 1;
1246 
1247 	return 0;
1248 }
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  */
1262 struct 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  */
1276 void pci_dev_put(struct pci_dev *dev)
1277 {
1278 	if (dev)
1279 		put_device(&dev->dev);
1280 }
1281 
1282 static 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 
1315 struct bus_type pci_bus_type = {
1316 	.name		= "pci",
1317 	.match		= pci_bus_match,
1318 	.uevent		= pci_uevent,
1319 	.probe		= pci_device_probe,
1320 	.remove		= pci_device_remove,
1321 	.shutdown	= pci_device_shutdown,
1322 	.dev_attrs	= pci_dev_attrs,
1323 	.bus_groups	= pci_bus_groups,
1324 	.drv_groups	= pci_drv_groups,
1325 	.pm		= PCI_PM_OPS_PTR,
1326 };
1327 
1328 static int __init pci_driver_init(void)
1329 {
1330 	return bus_register(&pci_bus_type);
1331 }
1332 
1333 postcore_initcall(pci_driver_init);
1334 
1335 EXPORT_SYMBOL_GPL(pci_add_dynid);
1336 EXPORT_SYMBOL(pci_match_id);
1337 EXPORT_SYMBOL(__pci_register_driver);
1338 EXPORT_SYMBOL(pci_unregister_driver);
1339 EXPORT_SYMBOL(pci_dev_driver);
1340 EXPORT_SYMBOL(pci_bus_type);
1341 EXPORT_SYMBOL(pci_dev_get);
1342 EXPORT_SYMBOL(pci_dev_put);
1343