1
2
3
4
5
6
7#include <linux/pci.h>
8#include <linux/module.h>
9#include <linux/init.h>
10#include <linux/device.h>
11#include <linux/mempolicy.h>
12#include <linux/string.h>
13#include <linux/slab.h>
14#include <linux/sched.h>
15#include <linux/sched/isolation.h>
16#include <linux/cpu.h>
17#include <linux/pm_runtime.h>
18#include <linux/suspend.h>
19#include <linux/kexec.h>
20#include <linux/of_device.h>
21#include <linux/acpi.h>
22#include <linux/dma-map-ops.h>
23#include "pci.h"
24#include "pcie/portdrv.h"
25
26struct pci_dynid {
27 struct list_head node;
28 struct pci_device_id id;
29};
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52int pci_add_dynid(struct pci_driver *drv,
53 unsigned int vendor, unsigned int device,
54 unsigned int subvendor, unsigned int subdevice,
55 unsigned int class, unsigned int class_mask,
56 unsigned long driver_data)
57{
58 struct pci_dynid *dynid;
59
60 dynid = kzalloc(sizeof(*dynid), GFP_KERNEL);
61 if (!dynid)
62 return -ENOMEM;
63
64 dynid->id.vendor = vendor;
65 dynid->id.device = device;
66 dynid->id.subvendor = subvendor;
67 dynid->id.subdevice = subdevice;
68 dynid->id.class = class;
69 dynid->id.class_mask = class_mask;
70 dynid->id.driver_data = driver_data;
71
72 spin_lock(&drv->dynids.lock);
73 list_add_tail(&dynid->node, &drv->dynids.list);
74 spin_unlock(&drv->dynids.lock);
75
76 return driver_attach(&drv->driver);
77}
78EXPORT_SYMBOL_GPL(pci_add_dynid);
79
80static void pci_free_dynids(struct pci_driver *drv)
81{
82 struct pci_dynid *dynid, *n;
83
84 spin_lock(&drv->dynids.lock);
85 list_for_each_entry_safe(dynid, n, &drv->dynids.list, node) {
86 list_del(&dynid->node);
87 kfree(dynid);
88 }
89 spin_unlock(&drv->dynids.lock);
90}
91
92
93
94
95
96
97
98
99
100
101
102
103
104const struct pci_device_id *pci_match_id(const struct pci_device_id *ids,
105 struct pci_dev *dev)
106{
107 if (ids) {
108 while (ids->vendor || ids->subvendor || ids->class_mask) {
109 if (pci_match_one_device(ids, dev))
110 return ids;
111 ids++;
112 }
113 }
114 return NULL;
115}
116EXPORT_SYMBOL(pci_match_id);
117
118static const struct pci_device_id pci_device_id_any = {
119 .vendor = PCI_ANY_ID,
120 .device = PCI_ANY_ID,
121 .subvendor = PCI_ANY_ID,
122 .subdevice = PCI_ANY_ID,
123};
124
125
126
127
128
129
130
131
132
133
134
135static const struct pci_device_id *pci_match_device(struct pci_driver *drv,
136 struct pci_dev *dev)
137{
138 struct pci_dynid *dynid;
139 const struct pci_device_id *found_id = NULL, *ids;
140
141
142 if (dev->driver_override && strcmp(dev->driver_override, drv->name))
143 return NULL;
144
145
146 spin_lock(&drv->dynids.lock);
147 list_for_each_entry(dynid, &drv->dynids.list, node) {
148 if (pci_match_one_device(&dynid->id, dev)) {
149 found_id = &dynid->id;
150 break;
151 }
152 }
153 spin_unlock(&drv->dynids.lock);
154
155 if (found_id)
156 return found_id;
157
158 for (ids = drv->id_table; (found_id = pci_match_id(ids, dev));
159 ids = found_id + 1) {
160
161
162
163
164
165 if (found_id->override_only) {
166 if (dev->driver_override)
167 return found_id;
168 } else {
169 return found_id;
170 }
171 }
172
173
174 if (dev->driver_override)
175 return &pci_device_id_any;
176 return NULL;
177}
178
179
180
181
182
183
184
185
186
187static ssize_t new_id_store(struct device_driver *driver, const char *buf,
188 size_t count)
189{
190 struct pci_driver *pdrv = to_pci_driver(driver);
191 const struct pci_device_id *ids = pdrv->id_table;
192 u32 vendor, device, subvendor = PCI_ANY_ID,
193 subdevice = PCI_ANY_ID, class = 0, class_mask = 0;
194 unsigned long driver_data = 0;
195 int fields = 0;
196 int retval = 0;
197
198 fields = sscanf(buf, "%x %x %x %x %x %x %lx",
199 &vendor, &device, &subvendor, &subdevice,
200 &class, &class_mask, &driver_data);
201 if (fields < 2)
202 return -EINVAL;
203
204 if (fields != 7) {
205 struct pci_dev *pdev = kzalloc(sizeof(*pdev), GFP_KERNEL);
206 if (!pdev)
207 return -ENOMEM;
208
209 pdev->vendor = vendor;
210 pdev->device = device;
211 pdev->subsystem_vendor = subvendor;
212 pdev->subsystem_device = subdevice;
213 pdev->class = class;
214
215 if (pci_match_device(pdrv, pdev))
216 retval = -EEXIST;
217
218 kfree(pdev);
219
220 if (retval)
221 return retval;
222 }
223
224
225
226 if (ids) {
227 retval = -EINVAL;
228 while (ids->vendor || ids->subvendor || ids->class_mask) {
229 if (driver_data == ids->driver_data) {
230 retval = 0;
231 break;
232 }
233 ids++;
234 }
235 if (retval)
236 return retval;
237 }
238
239 retval = pci_add_dynid(pdrv, vendor, device, subvendor, subdevice,
240 class, class_mask, driver_data);
241 if (retval)
242 return retval;
243 return count;
244}
245static DRIVER_ATTR_WO(new_id);
246
247
248
249
250
251
252
253
254
255static ssize_t remove_id_store(struct device_driver *driver, const char *buf,
256 size_t count)
257{
258 struct pci_dynid *dynid, *n;
259 struct pci_driver *pdrv = to_pci_driver(driver);
260 u32 vendor, device, subvendor = PCI_ANY_ID,
261 subdevice = PCI_ANY_ID, class = 0, class_mask = 0;
262 int fields = 0;
263 size_t retval = -ENODEV;
264
265 fields = sscanf(buf, "%x %x %x %x %x %x",
266 &vendor, &device, &subvendor, &subdevice,
267 &class, &class_mask);
268 if (fields < 2)
269 return -EINVAL;
270
271 spin_lock(&pdrv->dynids.lock);
272 list_for_each_entry_safe(dynid, n, &pdrv->dynids.list, node) {
273 struct pci_device_id *id = &dynid->id;
274 if ((id->vendor == vendor) &&
275 (id->device == device) &&
276 (subvendor == PCI_ANY_ID || id->subvendor == subvendor) &&
277 (subdevice == PCI_ANY_ID || id->subdevice == subdevice) &&
278 !((id->class ^ class) & class_mask)) {
279 list_del(&dynid->node);
280 kfree(dynid);
281 retval = count;
282 break;
283 }
284 }
285 spin_unlock(&pdrv->dynids.lock);
286
287 return retval;
288}
289static DRIVER_ATTR_WO(remove_id);
290
291static struct attribute *pci_drv_attrs[] = {
292 &driver_attr_new_id.attr,
293 &driver_attr_remove_id.attr,
294 NULL,
295};
296ATTRIBUTE_GROUPS(pci_drv);
297
298struct drv_dev_and_id {
299 struct pci_driver *drv;
300 struct pci_dev *dev;
301 const struct pci_device_id *id;
302};
303
304static long local_pci_probe(void *_ddi)
305{
306 struct drv_dev_and_id *ddi = _ddi;
307 struct pci_dev *pci_dev = ddi->dev;
308 struct pci_driver *pci_drv = ddi->drv;
309 struct device *dev = &pci_dev->dev;
310 int rc;
311
312
313
314
315
316
317
318
319
320
321 pm_runtime_get_sync(dev);
322 pci_dev->driver = pci_drv;
323 rc = pci_drv->probe(pci_dev, ddi->id);
324 if (!rc)
325 return rc;
326 if (rc < 0) {
327 pci_dev->driver = NULL;
328 pm_runtime_put_sync(dev);
329 return rc;
330 }
331
332
333
334
335 pci_warn(pci_dev, "Driver probe function unexpectedly returned %d\n",
336 rc);
337 return 0;
338}
339
340static bool pci_physfn_is_probed(struct pci_dev *dev)
341{
342#ifdef CONFIG_PCI_IOV
343 return dev->is_virtfn && dev->physfn->is_probed;
344#else
345 return false;
346#endif
347}
348
349static int pci_call_probe(struct pci_driver *drv, struct pci_dev *dev,
350 const struct pci_device_id *id)
351{
352 int error, node, cpu;
353 int hk_flags = HK_FLAG_DOMAIN | HK_FLAG_WQ;
354 struct drv_dev_and_id ddi = { drv, dev, id };
355
356
357
358
359
360
361 node = dev_to_node(&dev->dev);
362 dev->is_probed = 1;
363
364 cpu_hotplug_disable();
365
366
367
368
369
370 if (node < 0 || node >= MAX_NUMNODES || !node_online(node) ||
371 pci_physfn_is_probed(dev))
372 cpu = nr_cpu_ids;
373 else
374 cpu = cpumask_any_and(cpumask_of_node(node),
375 housekeeping_cpumask(hk_flags));
376
377 if (cpu < nr_cpu_ids)
378 error = work_on_cpu(cpu, local_pci_probe, &ddi);
379 else
380 error = local_pci_probe(&ddi);
381
382 dev->is_probed = 0;
383 cpu_hotplug_enable();
384 return error;
385}
386
387
388
389
390
391
392
393
394
395static int __pci_device_probe(struct pci_driver *drv, struct pci_dev *pci_dev)
396{
397 const struct pci_device_id *id;
398 int error = 0;
399
400 if (!pci_dev->driver && drv->probe) {
401 error = -ENODEV;
402
403 id = pci_match_device(drv, pci_dev);
404 if (id)
405 error = pci_call_probe(drv, pci_dev, id);
406 }
407 return error;
408}
409
410int __weak pcibios_alloc_irq(struct pci_dev *dev)
411{
412 return 0;
413}
414
415void __weak pcibios_free_irq(struct pci_dev *dev)
416{
417}
418
419#ifdef CONFIG_PCI_IOV
420static inline bool pci_device_can_probe(struct pci_dev *pdev)
421{
422 return (!pdev->is_virtfn || pdev->physfn->sriov->drivers_autoprobe ||
423 pdev->driver_override);
424}
425#else
426static inline bool pci_device_can_probe(struct pci_dev *pdev)
427{
428 return true;
429}
430#endif
431
432static int pci_device_probe(struct device *dev)
433{
434 int error;
435 struct pci_dev *pci_dev = to_pci_dev(dev);
436 struct pci_driver *drv = to_pci_driver(dev->driver);
437
438 if (!pci_device_can_probe(pci_dev))
439 return -ENODEV;
440
441 pci_assign_irq(pci_dev);
442
443 error = pcibios_alloc_irq(pci_dev);
444 if (error < 0)
445 return error;
446
447 pci_dev_get(pci_dev);
448 error = __pci_device_probe(drv, pci_dev);
449 if (error) {
450 pcibios_free_irq(pci_dev);
451 pci_dev_put(pci_dev);
452 }
453
454 return error;
455}
456
457static void pci_device_remove(struct device *dev)
458{
459 struct pci_dev *pci_dev = to_pci_dev(dev);
460 struct pci_driver *drv = pci_dev->driver;
461
462 if (drv) {
463 if (drv->remove) {
464 pm_runtime_get_sync(dev);
465 drv->remove(pci_dev);
466 pm_runtime_put_noidle(dev);
467 }
468 pcibios_free_irq(pci_dev);
469 pci_dev->driver = NULL;
470 pci_iov_remove(pci_dev);
471 }
472
473
474 pm_runtime_put_sync(dev);
475
476
477
478
479
480 if (pci_dev->current_state == PCI_D0)
481 pci_dev->current_state = PCI_UNKNOWN;
482
483
484
485
486
487
488
489
490
491
492 pci_dev_put(pci_dev);
493}
494
495static void pci_device_shutdown(struct device *dev)
496{
497 struct pci_dev *pci_dev = to_pci_dev(dev);
498 struct pci_driver *drv = pci_dev->driver;
499
500 pm_runtime_resume(dev);
501
502 if (drv && drv->shutdown)
503 drv->shutdown(pci_dev);
504
505
506
507
508
509
510
511
512 if (kexec_in_progress && (pci_dev->current_state <= PCI_D3hot))
513 pci_clear_master(pci_dev);
514}
515
516#ifdef CONFIG_PM
517
518
519
520
521
522
523
524static int pci_restore_standard_config(struct pci_dev *pci_dev)
525{
526 pci_update_current_state(pci_dev, PCI_UNKNOWN);
527
528 if (pci_dev->current_state != PCI_D0) {
529 int error = pci_set_power_state(pci_dev, PCI_D0);
530 if (error)
531 return error;
532 }
533
534 pci_restore_state(pci_dev);
535 pci_pme_restore(pci_dev);
536 return 0;
537}
538
539static void pci_pm_default_resume(struct pci_dev *pci_dev)
540{
541 pci_fixup_device(pci_fixup_resume, pci_dev);
542 pci_enable_wake(pci_dev, PCI_D0, false);
543}
544
545#endif
546
547#ifdef CONFIG_PM_SLEEP
548
549static void pci_pm_default_resume_early(struct pci_dev *pci_dev)
550{
551 pci_power_up(pci_dev);
552 pci_update_current_state(pci_dev, PCI_D0);
553 pci_restore_state(pci_dev);
554 pci_pme_restore(pci_dev);
555}
556
557
558
559
560
561static void pci_pm_set_unknown_state(struct pci_dev *pci_dev)
562{
563
564
565
566
567 if (pci_dev->current_state == PCI_D0)
568 pci_dev->current_state = PCI_UNKNOWN;
569}
570
571
572
573
574
575static int pci_pm_reenable_device(struct pci_dev *pci_dev)
576{
577 int retval;
578
579
580 retval = pci_reenable_device(pci_dev);
581
582
583
584
585 if (pci_dev->is_busmaster)
586 pci_set_master(pci_dev);
587
588 return retval;
589}
590
591static int pci_legacy_suspend(struct device *dev, pm_message_t state)
592{
593 struct pci_dev *pci_dev = to_pci_dev(dev);
594 struct pci_driver *drv = pci_dev->driver;
595
596 if (drv && drv->suspend) {
597 pci_power_t prev = pci_dev->current_state;
598 int error;
599
600 error = drv->suspend(pci_dev, state);
601 suspend_report_result(drv->suspend, error);
602 if (error)
603 return error;
604
605 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
606 && pci_dev->current_state != PCI_UNKNOWN) {
607 pci_WARN_ONCE(pci_dev, pci_dev->current_state != prev,
608 "PCI PM: Device state not saved by %pS\n",
609 drv->suspend);
610 }
611 }
612
613 pci_fixup_device(pci_fixup_suspend, pci_dev);
614
615 return 0;
616}
617
618static int pci_legacy_suspend_late(struct device *dev, pm_message_t state)
619{
620 struct pci_dev *pci_dev = to_pci_dev(dev);
621
622 if (!pci_dev->state_saved)
623 pci_save_state(pci_dev);
624
625 pci_pm_set_unknown_state(pci_dev);
626
627 pci_fixup_device(pci_fixup_suspend_late, pci_dev);
628
629 return 0;
630}
631
632static int pci_legacy_resume(struct device *dev)
633{
634 struct pci_dev *pci_dev = to_pci_dev(dev);
635 struct pci_driver *drv = pci_dev->driver;
636
637 pci_fixup_device(pci_fixup_resume, pci_dev);
638
639 return drv && drv->resume ?
640 drv->resume(pci_dev) : pci_pm_reenable_device(pci_dev);
641}
642
643
644
645static void pci_pm_default_suspend(struct pci_dev *pci_dev)
646{
647
648 if (!pci_has_subordinate(pci_dev))
649 pci_disable_enabled_device(pci_dev);
650}
651
652static bool pci_has_legacy_pm_support(struct pci_dev *pci_dev)
653{
654 struct pci_driver *drv = pci_dev->driver;
655 bool ret = drv && (drv->suspend || drv->resume);
656
657
658
659
660
661
662 pci_WARN(pci_dev, ret && drv->driver.pm, "device %04x:%04x\n",
663 pci_dev->vendor, pci_dev->device);
664
665 return ret;
666}
667
668
669
670static int pci_pm_prepare(struct device *dev)
671{
672 struct pci_dev *pci_dev = to_pci_dev(dev);
673 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
674
675 if (pm && pm->prepare) {
676 int error = pm->prepare(dev);
677 if (error < 0)
678 return error;
679
680 if (!error && dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_PREPARE))
681 return 0;
682 }
683 if (pci_dev_need_resume(pci_dev))
684 return 0;
685
686
687
688
689
690 pci_dev_adjust_pme(pci_dev);
691 return 1;
692}
693
694static void pci_pm_complete(struct device *dev)
695{
696 struct pci_dev *pci_dev = to_pci_dev(dev);
697
698 pci_dev_complete_resume(pci_dev);
699 pm_generic_complete(dev);
700
701
702 if (pm_runtime_suspended(dev) && pm_resume_via_firmware()) {
703 pci_power_t pre_sleep_state = pci_dev->current_state;
704
705 pci_refresh_power_state(pci_dev);
706
707
708
709
710
711
712
713 if (pci_dev->current_state < pre_sleep_state)
714 pm_request_resume(dev);
715 }
716}
717
718#else
719
720#define pci_pm_prepare NULL
721#define pci_pm_complete NULL
722
723#endif
724
725#ifdef CONFIG_SUSPEND
726static void pcie_pme_root_status_cleanup(struct pci_dev *pci_dev)
727{
728
729
730
731
732
733 if (pci_is_pcie(pci_dev) &&
734 (pci_pcie_type(pci_dev) == PCI_EXP_TYPE_ROOT_PORT ||
735 pci_pcie_type(pci_dev) == PCI_EXP_TYPE_RC_EC))
736 pcie_clear_root_pme_status(pci_dev);
737}
738
739static int pci_pm_suspend(struct device *dev)
740{
741 struct pci_dev *pci_dev = to_pci_dev(dev);
742 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
743
744 pci_dev->skip_bus_pm = false;
745
746 if (pci_has_legacy_pm_support(pci_dev))
747 return pci_legacy_suspend(dev, PMSG_SUSPEND);
748
749 if (!pm) {
750 pci_pm_default_suspend(pci_dev);
751 return 0;
752 }
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767 if (!dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_SUSPEND) ||
768 pci_dev_need_resume(pci_dev)) {
769 pm_runtime_resume(dev);
770 pci_dev->state_saved = false;
771 } else {
772 pci_dev_adjust_pme(pci_dev);
773 }
774
775 if (pm->suspend) {
776 pci_power_t prev = pci_dev->current_state;
777 int error;
778
779 error = pm->suspend(dev);
780 suspend_report_result(pm->suspend, error);
781 if (error)
782 return error;
783
784 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
785 && pci_dev->current_state != PCI_UNKNOWN) {
786 pci_WARN_ONCE(pci_dev, pci_dev->current_state != prev,
787 "PCI PM: State of device not saved by %pS\n",
788 pm->suspend);
789 }
790 }
791
792 return 0;
793}
794
795static int pci_pm_suspend_late(struct device *dev)
796{
797 if (dev_pm_skip_suspend(dev))
798 return 0;
799
800 pci_fixup_device(pci_fixup_suspend, to_pci_dev(dev));
801
802 return pm_generic_suspend_late(dev);
803}
804
805static int pci_pm_suspend_noirq(struct device *dev)
806{
807 struct pci_dev *pci_dev = to_pci_dev(dev);
808 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
809
810 if (dev_pm_skip_suspend(dev))
811 return 0;
812
813 if (pci_has_legacy_pm_support(pci_dev))
814 return pci_legacy_suspend_late(dev, PMSG_SUSPEND);
815
816 if (!pm) {
817 pci_save_state(pci_dev);
818 goto Fixup;
819 }
820
821 if (pm->suspend_noirq) {
822 pci_power_t prev = pci_dev->current_state;
823 int error;
824
825 error = pm->suspend_noirq(dev);
826 suspend_report_result(pm->suspend_noirq, error);
827 if (error)
828 return error;
829
830 if (!pci_dev->state_saved && pci_dev->current_state != PCI_D0
831 && pci_dev->current_state != PCI_UNKNOWN) {
832 pci_WARN_ONCE(pci_dev, pci_dev->current_state != prev,
833 "PCI PM: State of device not saved by %pS\n",
834 pm->suspend_noirq);
835 goto Fixup;
836 }
837 }
838
839 if (pci_dev->skip_bus_pm) {
840
841
842
843
844
845
846
847
848 if (!pci_dev->state_saved)
849 pci_save_state(pci_dev);
850 } else if (!pci_dev->state_saved) {
851 pci_save_state(pci_dev);
852 if (pci_power_manageable(pci_dev))
853 pci_prepare_to_sleep(pci_dev);
854 }
855
856 pci_dbg(pci_dev, "PCI PM: Suspend power state: %s\n",
857 pci_power_name(pci_dev->current_state));
858
859 if (pci_dev->current_state == PCI_D0) {
860 pci_dev->skip_bus_pm = true;
861
862
863
864
865
866 if (pci_dev->bus->self)
867 pci_dev->bus->self->skip_bus_pm = true;
868 }
869
870 if (pci_dev->skip_bus_pm && pm_suspend_no_platform()) {
871 pci_dbg(pci_dev, "PCI PM: Skipped\n");
872 goto Fixup;
873 }
874
875 pci_pm_set_unknown_state(pci_dev);
876
877
878
879
880
881
882
883
884
885
886 if (pci_dev->class == PCI_CLASS_SERIAL_USB_EHCI)
887 pci_write_config_word(pci_dev, PCI_COMMAND, 0);
888
889Fixup:
890 pci_fixup_device(pci_fixup_suspend_late, pci_dev);
891
892
893
894
895
896
897
898
899 if (device_can_wakeup(dev) && !device_may_wakeup(dev))
900 dev->power.may_skip_resume = false;
901
902 return 0;
903}
904
905static int pci_pm_resume_noirq(struct device *dev)
906{
907 struct pci_dev *pci_dev = to_pci_dev(dev);
908 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
909 pci_power_t prev_state = pci_dev->current_state;
910 bool skip_bus_pm = pci_dev->skip_bus_pm;
911
912 if (dev_pm_skip_resume(dev))
913 return 0;
914
915
916
917
918
919
920
921 if (!(skip_bus_pm && pm_suspend_no_platform()))
922 pci_pm_default_resume_early(pci_dev);
923
924 pci_fixup_device(pci_fixup_resume_early, pci_dev);
925 pcie_pme_root_status_cleanup(pci_dev);
926
927 if (!skip_bus_pm && prev_state == PCI_D3cold)
928 pci_bridge_wait_for_secondary_bus(pci_dev);
929
930 if (pci_has_legacy_pm_support(pci_dev))
931 return 0;
932
933 if (pm && pm->resume_noirq)
934 return pm->resume_noirq(dev);
935
936 return 0;
937}
938
939static int pci_pm_resume_early(struct device *dev)
940{
941 if (dev_pm_skip_resume(dev))
942 return 0;
943
944 return pm_generic_resume_early(dev);
945}
946
947static int pci_pm_resume(struct device *dev)
948{
949 struct pci_dev *pci_dev = to_pci_dev(dev);
950 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
951
952
953
954
955
956 if (pci_dev->state_saved)
957 pci_restore_standard_config(pci_dev);
958
959 if (pci_has_legacy_pm_support(pci_dev))
960 return pci_legacy_resume(dev);
961
962 pci_pm_default_resume(pci_dev);
963
964 if (pm) {
965 if (pm->resume)
966 return pm->resume(dev);
967 } else {
968 pci_pm_reenable_device(pci_dev);
969 }
970
971 return 0;
972}
973
974#else
975
976#define pci_pm_suspend NULL
977#define pci_pm_suspend_late NULL
978#define pci_pm_suspend_noirq NULL
979#define pci_pm_resume NULL
980#define pci_pm_resume_early NULL
981#define pci_pm_resume_noirq NULL
982
983#endif
984
985#ifdef CONFIG_HIBERNATE_CALLBACKS
986
987static int pci_pm_freeze(struct device *dev)
988{
989 struct pci_dev *pci_dev = to_pci_dev(dev);
990 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
991
992 if (pci_has_legacy_pm_support(pci_dev))
993 return pci_legacy_suspend(dev, PMSG_FREEZE);
994
995 if (!pm) {
996 pci_pm_default_suspend(pci_dev);
997 return 0;
998 }
999
1000
1001
1002
1003
1004
1005
1006
1007
1008 pm_runtime_resume(dev);
1009 pci_dev->state_saved = false;
1010
1011 if (pm->freeze) {
1012 int error;
1013
1014 error = pm->freeze(dev);
1015 suspend_report_result(pm->freeze, error);
1016 if (error)
1017 return error;
1018 }
1019
1020 return 0;
1021}
1022
1023static int pci_pm_freeze_noirq(struct device *dev)
1024{
1025 struct pci_dev *pci_dev = to_pci_dev(dev);
1026 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1027
1028 if (pci_has_legacy_pm_support(pci_dev))
1029 return pci_legacy_suspend_late(dev, PMSG_FREEZE);
1030
1031 if (pm && pm->freeze_noirq) {
1032 int error;
1033
1034 error = pm->freeze_noirq(dev);
1035 suspend_report_result(pm->freeze_noirq, error);
1036 if (error)
1037 return error;
1038 }
1039
1040 if (!pci_dev->state_saved)
1041 pci_save_state(pci_dev);
1042
1043 pci_pm_set_unknown_state(pci_dev);
1044
1045 return 0;
1046}
1047
1048static int pci_pm_thaw_noirq(struct device *dev)
1049{
1050 struct pci_dev *pci_dev = to_pci_dev(dev);
1051 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062 pci_set_power_state(pci_dev, PCI_D0);
1063 pci_restore_state(pci_dev);
1064
1065 if (pci_has_legacy_pm_support(pci_dev))
1066 return 0;
1067
1068 if (pm && pm->thaw_noirq)
1069 return pm->thaw_noirq(dev);
1070
1071 return 0;
1072}
1073
1074static int pci_pm_thaw(struct device *dev)
1075{
1076 struct pci_dev *pci_dev = to_pci_dev(dev);
1077 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1078 int error = 0;
1079
1080 if (pci_has_legacy_pm_support(pci_dev))
1081 return pci_legacy_resume(dev);
1082
1083 if (pm) {
1084 if (pm->thaw)
1085 error = pm->thaw(dev);
1086 } else {
1087 pci_pm_reenable_device(pci_dev);
1088 }
1089
1090 pci_dev->state_saved = false;
1091
1092 return error;
1093}
1094
1095static int pci_pm_poweroff(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
1100 if (pci_has_legacy_pm_support(pci_dev))
1101 return pci_legacy_suspend(dev, PMSG_HIBERNATE);
1102
1103 if (!pm) {
1104 pci_pm_default_suspend(pci_dev);
1105 return 0;
1106 }
1107
1108
1109 if (!dev_pm_test_driver_flags(dev, DPM_FLAG_SMART_SUSPEND) ||
1110 pci_dev_need_resume(pci_dev)) {
1111 pm_runtime_resume(dev);
1112 pci_dev->state_saved = false;
1113 } else {
1114 pci_dev_adjust_pme(pci_dev);
1115 }
1116
1117 if (pm->poweroff) {
1118 int error;
1119
1120 error = pm->poweroff(dev);
1121 suspend_report_result(pm->poweroff, error);
1122 if (error)
1123 return error;
1124 }
1125
1126 return 0;
1127}
1128
1129static int pci_pm_poweroff_late(struct device *dev)
1130{
1131 if (dev_pm_skip_suspend(dev))
1132 return 0;
1133
1134 pci_fixup_device(pci_fixup_suspend, to_pci_dev(dev));
1135
1136 return pm_generic_poweroff_late(dev);
1137}
1138
1139static int pci_pm_poweroff_noirq(struct device *dev)
1140{
1141 struct pci_dev *pci_dev = to_pci_dev(dev);
1142 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1143
1144 if (dev_pm_skip_suspend(dev))
1145 return 0;
1146
1147 if (pci_has_legacy_pm_support(pci_dev))
1148 return pci_legacy_suspend_late(dev, PMSG_HIBERNATE);
1149
1150 if (!pm) {
1151 pci_fixup_device(pci_fixup_suspend_late, pci_dev);
1152 return 0;
1153 }
1154
1155 if (pm->poweroff_noirq) {
1156 int error;
1157
1158 error = pm->poweroff_noirq(dev);
1159 suspend_report_result(pm->poweroff_noirq, error);
1160 if (error)
1161 return error;
1162 }
1163
1164 if (!pci_dev->state_saved && !pci_has_subordinate(pci_dev))
1165 pci_prepare_to_sleep(pci_dev);
1166
1167
1168
1169
1170
1171 if (pci_dev->class == PCI_CLASS_SERIAL_USB_EHCI)
1172 pci_write_config_word(pci_dev, PCI_COMMAND, 0);
1173
1174 pci_fixup_device(pci_fixup_suspend_late, pci_dev);
1175
1176 return 0;
1177}
1178
1179static int pci_pm_restore_noirq(struct device *dev)
1180{
1181 struct pci_dev *pci_dev = to_pci_dev(dev);
1182 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1183
1184 pci_pm_default_resume_early(pci_dev);
1185 pci_fixup_device(pci_fixup_resume_early, pci_dev);
1186
1187 if (pci_has_legacy_pm_support(pci_dev))
1188 return 0;
1189
1190 if (pm && pm->restore_noirq)
1191 return pm->restore_noirq(dev);
1192
1193 return 0;
1194}
1195
1196static int pci_pm_restore(struct device *dev)
1197{
1198 struct pci_dev *pci_dev = to_pci_dev(dev);
1199 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1200
1201
1202
1203
1204
1205 if (pci_dev->state_saved)
1206 pci_restore_standard_config(pci_dev);
1207
1208 if (pci_has_legacy_pm_support(pci_dev))
1209 return pci_legacy_resume(dev);
1210
1211 pci_pm_default_resume(pci_dev);
1212
1213 if (pm) {
1214 if (pm->restore)
1215 return pm->restore(dev);
1216 } else {
1217 pci_pm_reenable_device(pci_dev);
1218 }
1219
1220 return 0;
1221}
1222
1223#else
1224
1225#define pci_pm_freeze NULL
1226#define pci_pm_freeze_noirq NULL
1227#define pci_pm_thaw NULL
1228#define pci_pm_thaw_noirq NULL
1229#define pci_pm_poweroff NULL
1230#define pci_pm_poweroff_late NULL
1231#define pci_pm_poweroff_noirq NULL
1232#define pci_pm_restore NULL
1233#define pci_pm_restore_noirq NULL
1234
1235#endif
1236
1237#ifdef CONFIG_PM
1238
1239static int pci_pm_runtime_suspend(struct device *dev)
1240{
1241 struct pci_dev *pci_dev = to_pci_dev(dev);
1242 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1243 pci_power_t prev = pci_dev->current_state;
1244 int error;
1245
1246
1247
1248
1249
1250
1251 if (!pci_dev->driver) {
1252 pci_save_state(pci_dev);
1253 return 0;
1254 }
1255
1256 pci_dev->state_saved = false;
1257 if (pm && pm->runtime_suspend) {
1258 error = pm->runtime_suspend(dev);
1259
1260
1261
1262
1263
1264 if (error == -EBUSY || error == -EAGAIN) {
1265 pci_dbg(pci_dev, "can't suspend now (%ps returned %d)\n",
1266 pm->runtime_suspend, error);
1267 return error;
1268 } else if (error) {
1269 pci_err(pci_dev, "can't suspend (%ps returned %d)\n",
1270 pm->runtime_suspend, error);
1271 return error;
1272 }
1273 }
1274
1275 pci_fixup_device(pci_fixup_suspend, pci_dev);
1276
1277 if (pm && pm->runtime_suspend
1278 && !pci_dev->state_saved && pci_dev->current_state != PCI_D0
1279 && pci_dev->current_state != PCI_UNKNOWN) {
1280 pci_WARN_ONCE(pci_dev, pci_dev->current_state != prev,
1281 "PCI PM: State of device not saved by %pS\n",
1282 pm->runtime_suspend);
1283 return 0;
1284 }
1285
1286 if (!pci_dev->state_saved) {
1287 pci_save_state(pci_dev);
1288 pci_finish_runtime_suspend(pci_dev);
1289 }
1290
1291 return 0;
1292}
1293
1294static int pci_pm_runtime_resume(struct device *dev)
1295{
1296 struct pci_dev *pci_dev = to_pci_dev(dev);
1297 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1298 pci_power_t prev_state = pci_dev->current_state;
1299 int error = 0;
1300
1301
1302
1303
1304
1305
1306 pci_restore_standard_config(pci_dev);
1307
1308 if (!pci_dev->driver)
1309 return 0;
1310
1311 pci_fixup_device(pci_fixup_resume_early, pci_dev);
1312 pci_pm_default_resume(pci_dev);
1313
1314 if (prev_state == PCI_D3cold)
1315 pci_bridge_wait_for_secondary_bus(pci_dev);
1316
1317 if (pm && pm->runtime_resume)
1318 error = pm->runtime_resume(dev);
1319
1320 pci_dev->runtime_d3cold = false;
1321
1322 return error;
1323}
1324
1325static int pci_pm_runtime_idle(struct device *dev)
1326{
1327 struct pci_dev *pci_dev = to_pci_dev(dev);
1328 const struct dev_pm_ops *pm = dev->driver ? dev->driver->pm : NULL;
1329
1330
1331
1332
1333
1334 if (!pci_dev->driver)
1335 return 0;
1336
1337 if (!pm)
1338 return -ENOSYS;
1339
1340 if (pm->runtime_idle)
1341 return pm->runtime_idle(dev);
1342
1343 return 0;
1344}
1345
1346static const struct dev_pm_ops pci_dev_pm_ops = {
1347 .prepare = pci_pm_prepare,
1348 .complete = pci_pm_complete,
1349 .suspend = pci_pm_suspend,
1350 .suspend_late = pci_pm_suspend_late,
1351 .resume = pci_pm_resume,
1352 .resume_early = pci_pm_resume_early,
1353 .freeze = pci_pm_freeze,
1354 .thaw = pci_pm_thaw,
1355 .poweroff = pci_pm_poweroff,
1356 .poweroff_late = pci_pm_poweroff_late,
1357 .restore = pci_pm_restore,
1358 .suspend_noirq = pci_pm_suspend_noirq,
1359 .resume_noirq = pci_pm_resume_noirq,
1360 .freeze_noirq = pci_pm_freeze_noirq,
1361 .thaw_noirq = pci_pm_thaw_noirq,
1362 .poweroff_noirq = pci_pm_poweroff_noirq,
1363 .restore_noirq = pci_pm_restore_noirq,
1364 .runtime_suspend = pci_pm_runtime_suspend,
1365 .runtime_resume = pci_pm_runtime_resume,
1366 .runtime_idle = pci_pm_runtime_idle,
1367};
1368
1369#define PCI_PM_OPS_PTR (&pci_dev_pm_ops)
1370
1371#else
1372
1373#define pci_pm_runtime_suspend NULL
1374#define pci_pm_runtime_resume NULL
1375#define pci_pm_runtime_idle NULL
1376
1377#define PCI_PM_OPS_PTR NULL
1378
1379#endif
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392int __pci_register_driver(struct pci_driver *drv, struct module *owner,
1393 const char *mod_name)
1394{
1395
1396 drv->driver.name = drv->name;
1397 drv->driver.bus = &pci_bus_type;
1398 drv->driver.owner = owner;
1399 drv->driver.mod_name = mod_name;
1400 drv->driver.groups = drv->groups;
1401 drv->driver.dev_groups = drv->dev_groups;
1402
1403 spin_lock_init(&drv->dynids.lock);
1404 INIT_LIST_HEAD(&drv->dynids.list);
1405
1406
1407 return driver_register(&drv->driver);
1408}
1409EXPORT_SYMBOL(__pci_register_driver);
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421void pci_unregister_driver(struct pci_driver *drv)
1422{
1423 driver_unregister(&drv->driver);
1424 pci_free_dynids(drv);
1425}
1426EXPORT_SYMBOL(pci_unregister_driver);
1427
1428static struct pci_driver pci_compat_driver = {
1429 .name = "compat"
1430};
1431
1432
1433
1434
1435
1436
1437
1438
1439struct pci_driver *pci_dev_driver(const struct pci_dev *dev)
1440{
1441 if (dev->driver)
1442 return dev->driver;
1443 else {
1444 int i;
1445 for (i = 0; i <= PCI_ROM_RESOURCE; i++)
1446 if (dev->resource[i].flags & IORESOURCE_BUSY)
1447 return &pci_compat_driver;
1448 }
1449 return NULL;
1450}
1451EXPORT_SYMBOL(pci_dev_driver);
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462static int pci_bus_match(struct device *dev, struct device_driver *drv)
1463{
1464 struct pci_dev *pci_dev = to_pci_dev(dev);
1465 struct pci_driver *pci_drv;
1466 const struct pci_device_id *found_id;
1467
1468 if (!pci_dev->match_driver)
1469 return 0;
1470
1471 pci_drv = to_pci_driver(drv);
1472 found_id = pci_match_device(pci_drv, pci_dev);
1473 if (found_id)
1474 return 1;
1475
1476 return 0;
1477}
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491struct pci_dev *pci_dev_get(struct pci_dev *dev)
1492{
1493 if (dev)
1494 get_device(&dev->dev);
1495 return dev;
1496}
1497EXPORT_SYMBOL(pci_dev_get);
1498
1499
1500
1501
1502
1503
1504
1505
1506void pci_dev_put(struct pci_dev *dev)
1507{
1508 if (dev)
1509 put_device(&dev->dev);
1510}
1511EXPORT_SYMBOL(pci_dev_put);
1512
1513static int pci_uevent(struct device *dev, struct kobj_uevent_env *env)
1514{
1515 struct pci_dev *pdev;
1516
1517 if (!dev)
1518 return -ENODEV;
1519
1520 pdev = to_pci_dev(dev);
1521
1522 if (add_uevent_var(env, "PCI_CLASS=%04X", pdev->class))
1523 return -ENOMEM;
1524
1525 if (add_uevent_var(env, "PCI_ID=%04X:%04X", pdev->vendor, pdev->device))
1526 return -ENOMEM;
1527
1528 if (add_uevent_var(env, "PCI_SUBSYS_ID=%04X:%04X", pdev->subsystem_vendor,
1529 pdev->subsystem_device))
1530 return -ENOMEM;
1531
1532 if (add_uevent_var(env, "PCI_SLOT_NAME=%s", pci_name(pdev)))
1533 return -ENOMEM;
1534
1535 if (add_uevent_var(env, "MODALIAS=pci:v%08Xd%08Xsv%08Xsd%08Xbc%02Xsc%02Xi%02X",
1536 pdev->vendor, pdev->device,
1537 pdev->subsystem_vendor, pdev->subsystem_device,
1538 (u8)(pdev->class >> 16), (u8)(pdev->class >> 8),
1539 (u8)(pdev->class)))
1540 return -ENOMEM;
1541
1542 return 0;
1543}
1544
1545#if defined(CONFIG_PCIEPORTBUS) || defined(CONFIG_EEH)
1546
1547
1548
1549
1550
1551void pci_uevent_ers(struct pci_dev *pdev, enum pci_ers_result err_type)
1552{
1553 int idx = 0;
1554 char *envp[3];
1555
1556 switch (err_type) {
1557 case PCI_ERS_RESULT_NONE:
1558 case PCI_ERS_RESULT_CAN_RECOVER:
1559 envp[idx++] = "ERROR_EVENT=BEGIN_RECOVERY";
1560 envp[idx++] = "DEVICE_ONLINE=0";
1561 break;
1562 case PCI_ERS_RESULT_RECOVERED:
1563 envp[idx++] = "ERROR_EVENT=SUCCESSFUL_RECOVERY";
1564 envp[idx++] = "DEVICE_ONLINE=1";
1565 break;
1566 case PCI_ERS_RESULT_DISCONNECT:
1567 envp[idx++] = "ERROR_EVENT=FAILED_RECOVERY";
1568 envp[idx++] = "DEVICE_ONLINE=0";
1569 break;
1570 default:
1571 break;
1572 }
1573
1574 if (idx > 0) {
1575 envp[idx++] = NULL;
1576 kobject_uevent_env(&pdev->dev.kobj, KOBJ_CHANGE, envp);
1577 }
1578}
1579#endif
1580
1581static int pci_bus_num_vf(struct device *dev)
1582{
1583 return pci_num_vf(to_pci_dev(dev));
1584}
1585
1586
1587
1588
1589
1590
1591
1592
1593static int pci_dma_configure(struct device *dev)
1594{
1595 struct device *bridge;
1596 int ret = 0;
1597
1598 bridge = pci_get_host_bridge_device(to_pci_dev(dev));
1599
1600 if (IS_ENABLED(CONFIG_OF) && bridge->parent &&
1601 bridge->parent->of_node) {
1602 ret = of_dma_configure(dev, bridge->parent->of_node, true);
1603 } else if (has_acpi_companion(bridge)) {
1604 struct acpi_device *adev = to_acpi_device_node(bridge->fwnode);
1605
1606 ret = acpi_dma_configure(dev, acpi_get_dma_attr(adev));
1607 }
1608
1609 pci_put_host_bridge_device(bridge);
1610 return ret;
1611}
1612
1613struct bus_type pci_bus_type = {
1614 .name = "pci",
1615 .match = pci_bus_match,
1616 .uevent = pci_uevent,
1617 .probe = pci_device_probe,
1618 .remove = pci_device_remove,
1619 .shutdown = pci_device_shutdown,
1620 .dev_groups = pci_dev_groups,
1621 .bus_groups = pci_bus_groups,
1622 .drv_groups = pci_drv_groups,
1623 .pm = PCI_PM_OPS_PTR,
1624 .num_vf = pci_bus_num_vf,
1625 .dma_configure = pci_dma_configure,
1626};
1627EXPORT_SYMBOL(pci_bus_type);
1628
1629#ifdef CONFIG_PCIEPORTBUS
1630static int pcie_port_bus_match(struct device *dev, struct device_driver *drv)
1631{
1632 struct pcie_device *pciedev;
1633 struct pcie_port_service_driver *driver;
1634
1635 if (drv->bus != &pcie_port_bus_type || dev->bus != &pcie_port_bus_type)
1636 return 0;
1637
1638 pciedev = to_pcie_device(dev);
1639 driver = to_service_driver(drv);
1640
1641 if (driver->service != pciedev->service)
1642 return 0;
1643
1644 if (driver->port_type != PCIE_ANY_PORT &&
1645 driver->port_type != pci_pcie_type(pciedev->port))
1646 return 0;
1647
1648 return 1;
1649}
1650
1651struct bus_type pcie_port_bus_type = {
1652 .name = "pci_express",
1653 .match = pcie_port_bus_match,
1654};
1655EXPORT_SYMBOL_GPL(pcie_port_bus_type);
1656#endif
1657
1658static int __init pci_driver_init(void)
1659{
1660 int ret;
1661
1662 ret = bus_register(&pci_bus_type);
1663 if (ret)
1664 return ret;
1665
1666#ifdef CONFIG_PCIEPORTBUS
1667 ret = bus_register(&pcie_port_bus_type);
1668 if (ret)
1669 return ret;
1670#endif
1671 dma_debug_add_bus(&pci_bus_type);
1672 return 0;
1673}
1674postcore_initcall(pci_driver_init);
1675