1
2
3
4
5
6
7
8
9#include <linux/delay.h>
10#include <linux/interrupt.h>
11#include <linux/irq.h>
12#include <linux/module.h>
13#include <linux/pci.h>
14#include <linux/pci_hotplug.h>
15#include <asm/eeh.h>
16#include <asm/eeh_event.h>
17#include <asm/ppc-pci.h>
18#include <asm/pci-bridge.h>
19#include <asm/prom.h>
20#include <asm/rtas.h>
21
22struct eeh_rmv_data {
23 struct list_head removed_vf_list;
24 int removed_dev_count;
25};
26
27static int eeh_result_priority(enum pci_ers_result result)
28{
29 switch (result) {
30 case PCI_ERS_RESULT_NONE:
31 return 1;
32 case PCI_ERS_RESULT_NO_AER_DRIVER:
33 return 2;
34 case PCI_ERS_RESULT_RECOVERED:
35 return 3;
36 case PCI_ERS_RESULT_CAN_RECOVER:
37 return 4;
38 case PCI_ERS_RESULT_DISCONNECT:
39 return 5;
40 case PCI_ERS_RESULT_NEED_RESET:
41 return 6;
42 default:
43 WARN_ONCE(1, "Unknown pci_ers_result value: %d\n", (int)result);
44 return 0;
45 }
46};
47
48static const char *pci_ers_result_name(enum pci_ers_result result)
49{
50 switch (result) {
51 case PCI_ERS_RESULT_NONE:
52 return "none";
53 case PCI_ERS_RESULT_CAN_RECOVER:
54 return "can recover";
55 case PCI_ERS_RESULT_NEED_RESET:
56 return "need reset";
57 case PCI_ERS_RESULT_DISCONNECT:
58 return "disconnect";
59 case PCI_ERS_RESULT_RECOVERED:
60 return "recovered";
61 case PCI_ERS_RESULT_NO_AER_DRIVER:
62 return "no AER driver";
63 default:
64 WARN_ONCE(1, "Unknown result type: %d\n", (int)result);
65 return "unknown";
66 }
67};
68
69static enum pci_ers_result pci_ers_merge_result(enum pci_ers_result old,
70 enum pci_ers_result new)
71{
72 if (eeh_result_priority(new) > eeh_result_priority(old))
73 return new;
74 return old;
75}
76
77static bool eeh_dev_removed(struct eeh_dev *edev)
78{
79 return !edev || (edev->mode & EEH_DEV_REMOVED);
80}
81
82static bool eeh_edev_actionable(struct eeh_dev *edev)
83{
84 if (!edev->pdev)
85 return false;
86 if (edev->pdev->error_state == pci_channel_io_perm_failure)
87 return false;
88 if (eeh_dev_removed(edev))
89 return false;
90 if (eeh_pe_passed(edev->pe))
91 return false;
92
93 return true;
94}
95
96
97
98
99
100
101
102
103
104
105static inline struct pci_driver *eeh_pcid_get(struct pci_dev *pdev)
106{
107 if (!pdev || !pdev->driver)
108 return NULL;
109
110 if (!try_module_get(pdev->driver->driver.owner))
111 return NULL;
112
113 return pdev->driver;
114}
115
116
117
118
119
120
121
122
123static inline void eeh_pcid_put(struct pci_dev *pdev)
124{
125 if (!pdev || !pdev->driver)
126 return;
127
128 module_put(pdev->driver->driver.owner);
129}
130
131
132
133
134
135
136
137
138
139
140
141static void eeh_disable_irq(struct eeh_dev *edev)
142{
143
144
145
146
147 if (edev->pdev->msi_enabled || edev->pdev->msix_enabled)
148 return;
149
150 if (!irq_has_action(edev->pdev->irq))
151 return;
152
153 edev->mode |= EEH_DEV_IRQ_DISABLED;
154 disable_irq_nosync(edev->pdev->irq);
155}
156
157
158
159
160
161
162
163
164static void eeh_enable_irq(struct eeh_dev *edev)
165{
166 if ((edev->mode) & EEH_DEV_IRQ_DISABLED) {
167 edev->mode &= ~EEH_DEV_IRQ_DISABLED;
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188 if (irqd_irq_disabled(irq_get_irq_data(edev->pdev->irq)))
189 enable_irq(edev->pdev->irq);
190 }
191}
192
193static void eeh_dev_save_state(struct eeh_dev *edev, void *userdata)
194{
195 struct pci_dev *pdev;
196
197 if (!edev)
198 return;
199
200
201
202
203
204
205
206
207 if (edev->pe && (edev->pe->state & EEH_PE_CFG_RESTRICTED))
208 return;
209
210 pdev = eeh_dev_to_pci_dev(edev);
211 if (!pdev)
212 return;
213
214 pci_save_state(pdev);
215}
216
217static void eeh_set_channel_state(struct eeh_pe *root, pci_channel_state_t s)
218{
219 struct eeh_pe *pe;
220 struct eeh_dev *edev, *tmp;
221
222 eeh_for_each_pe(root, pe)
223 eeh_pe_for_each_dev(pe, edev, tmp)
224 if (eeh_edev_actionable(edev))
225 edev->pdev->error_state = s;
226}
227
228static void eeh_set_irq_state(struct eeh_pe *root, bool enable)
229{
230 struct eeh_pe *pe;
231 struct eeh_dev *edev, *tmp;
232
233 eeh_for_each_pe(root, pe) {
234 eeh_pe_for_each_dev(pe, edev, tmp) {
235 if (!eeh_edev_actionable(edev))
236 continue;
237
238 if (!eeh_pcid_get(edev->pdev))
239 continue;
240
241 if (enable)
242 eeh_enable_irq(edev);
243 else
244 eeh_disable_irq(edev);
245
246 eeh_pcid_put(edev->pdev);
247 }
248 }
249}
250
251typedef enum pci_ers_result (*eeh_report_fn)(struct eeh_dev *,
252 struct pci_dev *,
253 struct pci_driver *);
254static void eeh_pe_report_edev(struct eeh_dev *edev, eeh_report_fn fn,
255 enum pci_ers_result *result)
256{
257 struct pci_dev *pdev;
258 struct pci_driver *driver;
259 enum pci_ers_result new_result;
260
261 pci_lock_rescan_remove();
262 pdev = edev->pdev;
263 if (pdev)
264 get_device(&pdev->dev);
265 pci_unlock_rescan_remove();
266 if (!pdev) {
267 eeh_edev_info(edev, "no device");
268 return;
269 }
270 device_lock(&pdev->dev);
271 if (eeh_edev_actionable(edev)) {
272 driver = eeh_pcid_get(pdev);
273
274 if (!driver)
275 eeh_edev_info(edev, "no driver");
276 else if (!driver->err_handler)
277 eeh_edev_info(edev, "driver not EEH aware");
278 else if (edev->mode & EEH_DEV_NO_HANDLER)
279 eeh_edev_info(edev, "driver bound too late");
280 else {
281 new_result = fn(edev, pdev, driver);
282 eeh_edev_info(edev, "%s driver reports: '%s'",
283 driver->name,
284 pci_ers_result_name(new_result));
285 if (result)
286 *result = pci_ers_merge_result(*result,
287 new_result);
288 }
289 if (driver)
290 eeh_pcid_put(pdev);
291 } else {
292 eeh_edev_info(edev, "not actionable (%d,%d,%d)", !!pdev,
293 !eeh_dev_removed(edev), !eeh_pe_passed(edev->pe));
294 }
295 device_unlock(&pdev->dev);
296 if (edev->pdev != pdev)
297 eeh_edev_warn(edev, "Device changed during processing!\n");
298 put_device(&pdev->dev);
299}
300
301static void eeh_pe_report(const char *name, struct eeh_pe *root,
302 eeh_report_fn fn, enum pci_ers_result *result)
303{
304 struct eeh_pe *pe;
305 struct eeh_dev *edev, *tmp;
306
307 pr_info("EEH: Beginning: '%s'\n", name);
308 eeh_for_each_pe(root, pe) eeh_pe_for_each_dev(pe, edev, tmp)
309 eeh_pe_report_edev(edev, fn, result);
310 if (result)
311 pr_info("EEH: Finished:'%s' with aggregate recovery state:'%s'\n",
312 name, pci_ers_result_name(*result));
313 else
314 pr_info("EEH: Finished:'%s'", name);
315}
316
317
318
319
320
321
322
323
324static enum pci_ers_result eeh_report_error(struct eeh_dev *edev,
325 struct pci_dev *pdev,
326 struct pci_driver *driver)
327{
328 enum pci_ers_result rc;
329
330 if (!driver->err_handler->error_detected)
331 return PCI_ERS_RESULT_NONE;
332
333 eeh_edev_info(edev, "Invoking %s->error_detected(IO frozen)",
334 driver->name);
335 rc = driver->err_handler->error_detected(pdev, pci_channel_io_frozen);
336
337 edev->in_error = true;
338 pci_uevent_ers(pdev, PCI_ERS_RESULT_NONE);
339 return rc;
340}
341
342
343
344
345
346
347
348
349
350static enum pci_ers_result eeh_report_mmio_enabled(struct eeh_dev *edev,
351 struct pci_dev *pdev,
352 struct pci_driver *driver)
353{
354 if (!driver->err_handler->mmio_enabled)
355 return PCI_ERS_RESULT_NONE;
356 eeh_edev_info(edev, "Invoking %s->mmio_enabled()", driver->name);
357 return driver->err_handler->mmio_enabled(pdev);
358}
359
360
361
362
363
364
365
366
367
368
369
370static enum pci_ers_result eeh_report_reset(struct eeh_dev *edev,
371 struct pci_dev *pdev,
372 struct pci_driver *driver)
373{
374 if (!driver->err_handler->slot_reset || !edev->in_error)
375 return PCI_ERS_RESULT_NONE;
376 eeh_edev_info(edev, "Invoking %s->slot_reset()", driver->name);
377 return driver->err_handler->slot_reset(pdev);
378}
379
380static void eeh_dev_restore_state(struct eeh_dev *edev, void *userdata)
381{
382 struct pci_dev *pdev;
383
384 if (!edev)
385 return;
386
387
388
389
390
391
392
393 if (edev->pe && (edev->pe->state & EEH_PE_CFG_RESTRICTED)) {
394 if (list_is_last(&edev->entry, &edev->pe->edevs))
395 eeh_pe_restore_bars(edev->pe);
396
397 return;
398 }
399
400 pdev = eeh_dev_to_pci_dev(edev);
401 if (!pdev)
402 return;
403
404 pci_restore_state(pdev);
405}
406
407
408
409
410
411
412
413
414
415
416static enum pci_ers_result eeh_report_resume(struct eeh_dev *edev,
417 struct pci_dev *pdev,
418 struct pci_driver *driver)
419{
420 if (!driver->err_handler->resume || !edev->in_error)
421 return PCI_ERS_RESULT_NONE;
422
423 eeh_edev_info(edev, "Invoking %s->resume()", driver->name);
424 driver->err_handler->resume(pdev);
425
426 pci_uevent_ers(edev->pdev, PCI_ERS_RESULT_RECOVERED);
427#ifdef CONFIG_PCI_IOV
428 if (eeh_ops->notify_resume)
429 eeh_ops->notify_resume(edev);
430#endif
431 return PCI_ERS_RESULT_NONE;
432}
433
434
435
436
437
438
439
440
441
442static enum pci_ers_result eeh_report_failure(struct eeh_dev *edev,
443 struct pci_dev *pdev,
444 struct pci_driver *driver)
445{
446 enum pci_ers_result rc;
447
448 if (!driver->err_handler->error_detected)
449 return PCI_ERS_RESULT_NONE;
450
451 eeh_edev_info(edev, "Invoking %s->error_detected(permanent failure)",
452 driver->name);
453 rc = driver->err_handler->error_detected(pdev,
454 pci_channel_io_perm_failure);
455
456 pci_uevent_ers(pdev, PCI_ERS_RESULT_DISCONNECT);
457 return rc;
458}
459
460static void *eeh_add_virt_device(struct eeh_dev *edev)
461{
462 struct pci_driver *driver;
463 struct pci_dev *dev = eeh_dev_to_pci_dev(edev);
464
465 if (!(edev->physfn)) {
466 eeh_edev_warn(edev, "Not for VF\n");
467 return NULL;
468 }
469
470 driver = eeh_pcid_get(dev);
471 if (driver) {
472 if (driver->err_handler) {
473 eeh_pcid_put(dev);
474 return NULL;
475 }
476 eeh_pcid_put(dev);
477 }
478
479#ifdef CONFIG_PCI_IOV
480 pci_iov_add_virtfn(edev->physfn, edev->vf_index);
481#endif
482 return NULL;
483}
484
485static void eeh_rmv_device(struct eeh_dev *edev, void *userdata)
486{
487 struct pci_driver *driver;
488 struct pci_dev *dev = eeh_dev_to_pci_dev(edev);
489 struct eeh_rmv_data *rmv_data = (struct eeh_rmv_data *)userdata;
490
491
492
493
494
495
496
497
498 if (!eeh_edev_actionable(edev) ||
499 (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE))
500 return;
501
502 if (rmv_data) {
503 driver = eeh_pcid_get(dev);
504 if (driver) {
505 if (driver->err_handler &&
506 driver->err_handler->error_detected &&
507 driver->err_handler->slot_reset) {
508 eeh_pcid_put(dev);
509 return;
510 }
511 eeh_pcid_put(dev);
512 }
513 }
514
515
516 pr_info("EEH: Removing %s without EEH sensitive driver\n",
517 pci_name(dev));
518 edev->mode |= EEH_DEV_DISCONNECTED;
519 if (rmv_data)
520 rmv_data->removed_dev_count++;
521
522 if (edev->physfn) {
523#ifdef CONFIG_PCI_IOV
524 pci_iov_remove_virtfn(edev->physfn, edev->vf_index);
525 edev->pdev = NULL;
526#endif
527 if (rmv_data)
528 list_add(&edev->rmv_entry, &rmv_data->removed_vf_list);
529 } else {
530 pci_lock_rescan_remove();
531 pci_stop_and_remove_bus_device(dev);
532 pci_unlock_rescan_remove();
533 }
534}
535
536static void *eeh_pe_detach_dev(struct eeh_pe *pe, void *userdata)
537{
538 struct eeh_dev *edev, *tmp;
539
540 eeh_pe_for_each_dev(pe, edev, tmp) {
541 if (!(edev->mode & EEH_DEV_DISCONNECTED))
542 continue;
543
544 edev->mode &= ~(EEH_DEV_DISCONNECTED | EEH_DEV_IRQ_DISABLED);
545 eeh_pe_tree_remove(edev);
546 }
547
548 return NULL;
549}
550
551
552
553
554
555
556
557
558static int eeh_clear_pe_frozen_state(struct eeh_pe *root, bool include_passed)
559{
560 struct eeh_pe *pe;
561 int i;
562
563 eeh_for_each_pe(root, pe) {
564 if (include_passed || !eeh_pe_passed(pe)) {
565 for (i = 0; i < 3; i++)
566 if (!eeh_unfreeze_pe(pe))
567 break;
568 if (i >= 3)
569 return -EIO;
570 }
571 }
572 eeh_pe_state_clear(root, EEH_PE_ISOLATED, include_passed);
573 return 0;
574}
575
576int eeh_pe_reset_and_recover(struct eeh_pe *pe)
577{
578 int ret;
579
580
581 if (pe->state & EEH_PE_RECOVERING)
582 return 0;
583
584
585 eeh_pe_state_mark(pe, EEH_PE_RECOVERING);
586
587
588 eeh_pe_dev_traverse(pe, eeh_dev_save_state, NULL);
589
590
591 ret = eeh_pe_reset_full(pe, true);
592 if (ret) {
593 eeh_pe_state_clear(pe, EEH_PE_RECOVERING, true);
594 return ret;
595 }
596
597
598 ret = eeh_clear_pe_frozen_state(pe, true);
599 if (ret) {
600 eeh_pe_state_clear(pe, EEH_PE_RECOVERING, true);
601 return ret;
602 }
603
604
605 eeh_pe_dev_traverse(pe, eeh_dev_restore_state, NULL);
606
607
608 eeh_pe_state_clear(pe, EEH_PE_RECOVERING, true);
609
610 return 0;
611}
612
613
614
615
616
617
618
619
620
621
622
623
624static int eeh_reset_device(struct eeh_pe *pe, struct pci_bus *bus,
625 struct eeh_rmv_data *rmv_data,
626 bool driver_eeh_aware)
627{
628 time64_t tstamp;
629 int cnt, rc;
630 struct eeh_dev *edev;
631 struct eeh_pe *tmp_pe;
632 bool any_passed = false;
633
634 eeh_for_each_pe(pe, tmp_pe)
635 any_passed |= eeh_pe_passed(tmp_pe);
636
637
638 cnt = pe->freeze_count;
639 tstamp = pe->tstamp;
640
641
642
643
644
645
646
647 eeh_pe_state_mark(pe, EEH_PE_KEEP);
648 if (any_passed || driver_eeh_aware || (pe->type & EEH_PE_VF)) {
649 eeh_pe_dev_traverse(pe, eeh_rmv_device, rmv_data);
650 } else {
651 pci_lock_rescan_remove();
652 pci_hp_remove_devices(bus);
653 pci_unlock_rescan_remove();
654 }
655
656
657
658
659
660
661
662
663
664
665 rc = eeh_pe_reset_full(pe, false);
666 if (rc)
667 return rc;
668
669 pci_lock_rescan_remove();
670
671
672 eeh_ops->configure_bridge(pe);
673 eeh_pe_restore_bars(pe);
674
675
676 rc = eeh_clear_pe_frozen_state(pe, false);
677 if (rc) {
678 pci_unlock_rescan_remove();
679 return rc;
680 }
681
682
683
684
685
686
687
688 if (!driver_eeh_aware || rmv_data->removed_dev_count) {
689 pr_info("EEH: Sleep 5s ahead of %s hotplug\n",
690 (driver_eeh_aware ? "partial" : "complete"));
691 ssleep(5);
692
693
694
695
696
697
698 edev = list_first_entry(&pe->edevs, struct eeh_dev, entry);
699 eeh_pe_traverse(pe, eeh_pe_detach_dev, NULL);
700 if (pe->type & EEH_PE_VF) {
701 eeh_add_virt_device(edev);
702 } else {
703 if (!driver_eeh_aware)
704 eeh_pe_state_clear(pe, EEH_PE_PRI_BUS, true);
705 pci_hp_add_devices(bus);
706 }
707 }
708 eeh_pe_state_clear(pe, EEH_PE_KEEP, true);
709
710 pe->tstamp = tstamp;
711 pe->freeze_count = cnt;
712
713 pci_unlock_rescan_remove();
714 return 0;
715}
716
717
718
719
720#define MAX_WAIT_FOR_RECOVERY 300
721
722
723
724
725
726
727
728
729
730static void eeh_pe_cleanup(struct eeh_pe *pe)
731{
732 struct eeh_pe *child_pe, *tmp;
733
734 list_for_each_entry_safe(child_pe, tmp, &pe->child_list, child)
735 eeh_pe_cleanup(child_pe);
736
737 if (pe->state & EEH_PE_KEEP)
738 return;
739
740 if (!(pe->state & EEH_PE_INVALID))
741 return;
742
743 if (list_empty(&pe->edevs) && list_empty(&pe->child_list)) {
744 list_del(&pe->child);
745 kfree(pe);
746 }
747}
748
749
750
751
752
753
754
755
756
757
758
759
760
761static bool eeh_slot_presence_check(struct pci_dev *pdev)
762{
763 const struct hotplug_slot_ops *ops;
764 struct pci_slot *slot;
765 u8 state;
766 int rc;
767
768 if (!pdev)
769 return false;
770
771 if (pdev->error_state == pci_channel_io_perm_failure)
772 return false;
773
774 slot = pdev->slot;
775 if (!slot || !slot->hotplug)
776 return true;
777
778 ops = slot->hotplug->ops;
779 if (!ops || !ops->get_adapter_status)
780 return true;
781
782
783 if (ops->set_attention_status)
784 ops->set_attention_status(slot->hotplug, 1);
785
786 rc = ops->get_adapter_status(slot->hotplug, &state);
787 if (rc)
788 return true;
789
790 return !!state;
791}
792
793static void eeh_clear_slot_attention(struct pci_dev *pdev)
794{
795 const struct hotplug_slot_ops *ops;
796 struct pci_slot *slot;
797
798 if (!pdev)
799 return;
800
801 if (pdev->error_state == pci_channel_io_perm_failure)
802 return;
803
804 slot = pdev->slot;
805 if (!slot || !slot->hotplug)
806 return;
807
808 ops = slot->hotplug->ops;
809 if (!ops || !ops->set_attention_status)
810 return;
811
812 ops->set_attention_status(slot->hotplug, 0);
813}
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836void eeh_handle_normal_event(struct eeh_pe *pe)
837{
838 struct pci_bus *bus;
839 struct eeh_dev *edev, *tmp;
840 struct eeh_pe *tmp_pe;
841 int rc = 0;
842 enum pci_ers_result result = PCI_ERS_RESULT_NONE;
843 struct eeh_rmv_data rmv_data =
844 {LIST_HEAD_INIT(rmv_data.removed_vf_list), 0};
845 int devices = 0;
846
847 bus = eeh_pe_bus_get(pe);
848 if (!bus) {
849 pr_err("%s: Cannot find PCI bus for PHB#%x-PE#%x\n",
850 __func__, pe->phb->global_number, pe->addr);
851 return;
852 }
853
854
855
856
857
858
859
860
861
862
863 eeh_for_each_pe(pe, tmp_pe)
864 eeh_pe_for_each_dev(tmp_pe, edev, tmp)
865 if (eeh_slot_presence_check(edev->pdev))
866 devices++;
867
868 if (!devices) {
869 pr_debug("EEH: Frozen PHB#%x-PE#%x is empty!\n",
870 pe->phb->global_number, pe->addr);
871 goto out;
872 }
873
874
875 if (pe->type & EEH_PE_PHB) {
876 pr_err("EEH: Recovering PHB#%x, location: %s\n",
877 pe->phb->global_number, eeh_pe_loc_get(pe));
878 } else {
879 struct eeh_pe *phb_pe = eeh_phb_pe_get(pe->phb);
880
881 pr_err("EEH: Recovering PHB#%x-PE#%x\n",
882 pe->phb->global_number, pe->addr);
883 pr_err("EEH: PE location: %s, PHB location: %s\n",
884 eeh_pe_loc_get(pe), eeh_pe_loc_get(phb_pe));
885 }
886
887#ifdef CONFIG_STACKTRACE
888
889
890
891
892 if (pe->trace_entries) {
893 void **ptrs = (void **) pe->stack_trace;
894 int i;
895
896 pr_err("EEH: Frozen PHB#%x-PE#%x detected\n",
897 pe->phb->global_number, pe->addr);
898
899
900 pr_err("EEH: Call Trace:\n");
901 for (i = 0; i < pe->trace_entries; i++)
902 pr_err("EEH: [%pK] %pS\n", ptrs[i], ptrs[i]);
903
904 pe->trace_entries = 0;
905 }
906#endif
907
908 eeh_pe_update_time_stamp(pe);
909 pe->freeze_count++;
910 if (pe->freeze_count > eeh_max_freezes) {
911 pr_err("EEH: PHB#%x-PE#%x has failed %d times in the last hour and has been permanently disabled.\n",
912 pe->phb->global_number, pe->addr,
913 pe->freeze_count);
914 result = PCI_ERS_RESULT_DISCONNECT;
915 }
916
917 eeh_for_each_pe(pe, tmp_pe)
918 eeh_pe_for_each_dev(tmp_pe, edev, tmp)
919 edev->mode &= ~EEH_DEV_NO_HANDLER;
920
921
922
923
924
925
926
927
928
929
930
931 if (result != PCI_ERS_RESULT_DISCONNECT) {
932 pr_warn("EEH: This PCI device has failed %d times in the last hour and will be permanently disabled after %d failures.\n",
933 pe->freeze_count, eeh_max_freezes);
934 pr_info("EEH: Notify device drivers to shutdown\n");
935 eeh_set_channel_state(pe, pci_channel_io_frozen);
936 eeh_set_irq_state(pe, false);
937 eeh_pe_report("error_detected(IO frozen)", pe,
938 eeh_report_error, &result);
939 if ((pe->type & EEH_PE_PHB) &&
940 result != PCI_ERS_RESULT_NONE &&
941 result != PCI_ERS_RESULT_NEED_RESET)
942 result = PCI_ERS_RESULT_NEED_RESET;
943 }
944
945
946
947
948 if (result != PCI_ERS_RESULT_DISCONNECT) {
949 rc = eeh_wait_state(pe, MAX_WAIT_FOR_RECOVERY*1000);
950 if (rc < 0 || rc == EEH_STATE_NOT_SUPPORT) {
951 pr_warn("EEH: Permanent failure\n");
952 result = PCI_ERS_RESULT_DISCONNECT;
953 }
954 }
955
956
957
958
959
960 if (result != PCI_ERS_RESULT_DISCONNECT) {
961 pr_info("EEH: Collect temporary log\n");
962 eeh_slot_error_detail(pe, EEH_LOG_TEMP);
963 }
964
965
966
967
968
969 if (result == PCI_ERS_RESULT_NONE) {
970 pr_info("EEH: Reset with hotplug activity\n");
971 rc = eeh_reset_device(pe, bus, NULL, false);
972 if (rc) {
973 pr_warn("%s: Unable to reset, err=%d\n",
974 __func__, rc);
975 result = PCI_ERS_RESULT_DISCONNECT;
976 }
977 }
978
979
980 if (result == PCI_ERS_RESULT_CAN_RECOVER) {
981 pr_info("EEH: Enable I/O for affected devices\n");
982 rc = eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
983
984 if (rc < 0) {
985 result = PCI_ERS_RESULT_DISCONNECT;
986 } else if (rc) {
987 result = PCI_ERS_RESULT_NEED_RESET;
988 } else {
989 pr_info("EEH: Notify device drivers to resume I/O\n");
990 eeh_pe_report("mmio_enabled", pe,
991 eeh_report_mmio_enabled, &result);
992 }
993 }
994
995
996 if (result == PCI_ERS_RESULT_CAN_RECOVER) {
997 pr_info("EEH: Enabled DMA for affected devices\n");
998 rc = eeh_pci_enable(pe, EEH_OPT_THAW_DMA);
999
1000 if (rc < 0) {
1001 result = PCI_ERS_RESULT_DISCONNECT;
1002 } else if (rc) {
1003 result = PCI_ERS_RESULT_NEED_RESET;
1004 } else {
1005
1006
1007
1008
1009
1010 eeh_pe_state_clear(pe, EEH_PE_ISOLATED, true);
1011 result = PCI_ERS_RESULT_RECOVERED;
1012 }
1013 }
1014
1015
1016 if (result == PCI_ERS_RESULT_NEED_RESET) {
1017 pr_info("EEH: Reset without hotplug activity\n");
1018 rc = eeh_reset_device(pe, bus, &rmv_data, true);
1019 if (rc) {
1020 pr_warn("%s: Cannot reset, err=%d\n",
1021 __func__, rc);
1022 result = PCI_ERS_RESULT_DISCONNECT;
1023 } else {
1024 result = PCI_ERS_RESULT_NONE;
1025 eeh_set_channel_state(pe, pci_channel_io_normal);
1026 eeh_set_irq_state(pe, true);
1027 eeh_pe_report("slot_reset", pe, eeh_report_reset,
1028 &result);
1029 }
1030 }
1031
1032 if ((result == PCI_ERS_RESULT_RECOVERED) ||
1033 (result == PCI_ERS_RESULT_NONE)) {
1034
1035
1036
1037
1038 list_for_each_entry_safe(edev, tmp, &rmv_data.removed_vf_list,
1039 rmv_entry) {
1040 eeh_add_virt_device(edev);
1041 list_del(&edev->rmv_entry);
1042 }
1043
1044
1045 pr_info("EEH: Notify device driver to resume\n");
1046 eeh_set_channel_state(pe, pci_channel_io_normal);
1047 eeh_set_irq_state(pe, true);
1048 eeh_pe_report("resume", pe, eeh_report_resume, NULL);
1049 eeh_for_each_pe(pe, tmp_pe) {
1050 eeh_pe_for_each_dev(tmp_pe, edev, tmp) {
1051 edev->mode &= ~EEH_DEV_NO_HANDLER;
1052 edev->in_error = false;
1053 }
1054 }
1055
1056 pr_info("EEH: Recovery successful.\n");
1057 } else {
1058
1059
1060
1061
1062
1063 pr_err("EEH: Unable to recover from failure from PHB#%x-PE#%x.\n"
1064 "Please try reseating or replacing it\n",
1065 pe->phb->global_number, pe->addr);
1066
1067 eeh_slot_error_detail(pe, EEH_LOG_PERM);
1068
1069
1070 eeh_set_channel_state(pe, pci_channel_io_perm_failure);
1071 eeh_set_irq_state(pe, false);
1072 eeh_pe_report("error_detected(permanent failure)", pe,
1073 eeh_report_failure, NULL);
1074
1075
1076 eeh_pe_state_mark(pe, EEH_PE_REMOVED);
1077
1078
1079
1080
1081
1082
1083 if (pe->type & EEH_PE_VF) {
1084 eeh_pe_dev_traverse(pe, eeh_rmv_device, NULL);
1085 eeh_pe_dev_mode_mark(pe, EEH_DEV_REMOVED);
1086 } else {
1087 eeh_pe_state_clear(pe, EEH_PE_PRI_BUS, true);
1088 eeh_pe_dev_mode_mark(pe, EEH_DEV_REMOVED);
1089
1090 pci_lock_rescan_remove();
1091 pci_hp_remove_devices(bus);
1092 pci_unlock_rescan_remove();
1093
1094 return;
1095 }
1096 }
1097
1098out:
1099
1100
1101
1102
1103 eeh_pe_cleanup(pe);
1104
1105
1106 eeh_for_each_pe(pe, tmp_pe)
1107 eeh_pe_for_each_dev(tmp_pe, edev, tmp)
1108 eeh_clear_slot_attention(edev->pdev);
1109
1110 eeh_pe_state_clear(pe, EEH_PE_RECOVERING, true);
1111}
1112
1113
1114
1115
1116
1117
1118
1119
1120void eeh_handle_special_event(void)
1121{
1122 struct eeh_pe *pe, *phb_pe, *tmp_pe;
1123 struct eeh_dev *edev, *tmp_edev;
1124 struct pci_bus *bus;
1125 struct pci_controller *hose;
1126 unsigned long flags;
1127 int rc;
1128
1129
1130 do {
1131 rc = eeh_ops->next_error(&pe);
1132
1133 switch (rc) {
1134 case EEH_NEXT_ERR_DEAD_IOC:
1135
1136 eeh_serialize_lock(&flags);
1137
1138
1139 eeh_remove_event(NULL, true);
1140
1141 list_for_each_entry(hose, &hose_list, list_node) {
1142 phb_pe = eeh_phb_pe_get(hose);
1143 if (!phb_pe) continue;
1144
1145 eeh_pe_mark_isolated(phb_pe);
1146 }
1147
1148 eeh_serialize_unlock(flags);
1149
1150 break;
1151 case EEH_NEXT_ERR_FROZEN_PE:
1152 case EEH_NEXT_ERR_FENCED_PHB:
1153 case EEH_NEXT_ERR_DEAD_PHB:
1154
1155 eeh_serialize_lock(&flags);
1156
1157
1158 eeh_remove_event(pe, true);
1159
1160 if (rc != EEH_NEXT_ERR_DEAD_PHB)
1161 eeh_pe_state_mark(pe, EEH_PE_RECOVERING);
1162 eeh_pe_mark_isolated(pe);
1163
1164 eeh_serialize_unlock(flags);
1165
1166 break;
1167 case EEH_NEXT_ERR_NONE:
1168 return;
1169 default:
1170 pr_warn("%s: Invalid value %d from next_error()\n",
1171 __func__, rc);
1172 return;
1173 }
1174
1175
1176
1177
1178
1179
1180 if (rc == EEH_NEXT_ERR_FROZEN_PE ||
1181 rc == EEH_NEXT_ERR_FENCED_PHB) {
1182 eeh_pe_state_mark(pe, EEH_PE_RECOVERING);
1183 eeh_handle_normal_event(pe);
1184 } else {
1185 eeh_for_each_pe(pe, tmp_pe)
1186 eeh_pe_for_each_dev(tmp_pe, edev, tmp_edev)
1187 edev->mode &= ~EEH_DEV_NO_HANDLER;
1188
1189
1190 eeh_pe_state_clear(pe, EEH_PE_PRI_BUS, true);
1191 eeh_set_channel_state(pe, pci_channel_io_perm_failure);
1192 eeh_pe_report(
1193 "error_detected(permanent failure)", pe,
1194 eeh_report_failure, NULL);
1195
1196 pci_lock_rescan_remove();
1197 list_for_each_entry(hose, &hose_list, list_node) {
1198 phb_pe = eeh_phb_pe_get(hose);
1199 if (!phb_pe ||
1200 !(phb_pe->state & EEH_PE_ISOLATED) ||
1201 (phb_pe->state & EEH_PE_RECOVERING))
1202 continue;
1203
1204 bus = eeh_pe_bus_get(phb_pe);
1205 if (!bus) {
1206 pr_err("%s: Cannot find PCI bus for "
1207 "PHB#%x-PE#%x\n",
1208 __func__,
1209 pe->phb->global_number,
1210 pe->addr);
1211 break;
1212 }
1213 pci_hp_remove_devices(bus);
1214 }
1215 pci_unlock_rescan_remove();
1216 }
1217
1218
1219
1220
1221
1222 if (rc == EEH_NEXT_ERR_DEAD_IOC)
1223 break;
1224 } while (rc != EEH_NEXT_ERR_NONE);
1225}
1226