2 * PCI Error Recovery Driver for RPA-compliant PPC64 platform.
3 * Copyright IBM Corp. 2004 2005
4 * Copyright Linas Vepstas <linas@linas.org> 2004, 2005
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or (at
11 * your option) any later version.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
16 * NON INFRINGEMENT. See the GNU General Public License for more
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23 * Send comments and feedback to Linas Vepstas <linas@austin.ibm.com>
25 #include <linux/delay.h>
26 #include <linux/interrupt.h>
27 #include <linux/irq.h>
28 #include <linux/module.h>
29 #include <linux/pci.h>
31 #include <asm/eeh_event.h>
32 #include <asm/ppc-pci.h>
33 #include <asm/pci-bridge.h>
38 struct list_head edev_list
;
43 * eeh_pcid_name - Retrieve name of PCI device driver
46 * This routine is used to retrieve the name of PCI device driver
49 static inline const char *eeh_pcid_name(struct pci_dev
*pdev
)
51 if (pdev
&& pdev
->dev
.driver
)
52 return pdev
->dev
.driver
->name
;
57 * eeh_pcid_get - Get the PCI device driver
60 * The function is used to retrieve the PCI device driver for
61 * the indicated PCI device. Besides, we will increase the reference
62 * of the PCI device driver to prevent that being unloaded on
63 * the fly. Otherwise, kernel crash would be seen.
65 static inline struct pci_driver
*eeh_pcid_get(struct pci_dev
*pdev
)
67 if (!pdev
|| !pdev
->driver
)
70 if (!try_module_get(pdev
->driver
->driver
.owner
))
77 * eeh_pcid_put - Dereference on the PCI device driver
80 * The function is called to do dereference on the PCI device
81 * driver of the indicated PCI device.
83 static inline void eeh_pcid_put(struct pci_dev
*pdev
)
85 if (!pdev
|| !pdev
->driver
)
88 module_put(pdev
->driver
->driver
.owner
);
92 * eeh_disable_irq - Disable interrupt for the recovering device
95 * This routine must be called when reporting temporary or permanent
96 * error to the particular PCI device to disable interrupt of that
97 * device. If the device has enabled MSI or MSI-X interrupt, we needn't
98 * do real work because EEH should freeze DMA transfers for those PCI
99 * devices encountering EEH errors, which includes MSI or MSI-X.
101 static void eeh_disable_irq(struct pci_dev
*dev
)
103 struct eeh_dev
*edev
= pci_dev_to_eeh_dev(dev
);
105 /* Don't disable MSI and MSI-X interrupts. They are
106 * effectively disabled by the DMA Stopped state
107 * when an EEH error occurs.
109 if (dev
->msi_enabled
|| dev
->msix_enabled
)
112 if (!irq_has_action(dev
->irq
))
115 edev
->mode
|= EEH_DEV_IRQ_DISABLED
;
116 disable_irq_nosync(dev
->irq
);
120 * eeh_enable_irq - Enable interrupt for the recovering device
123 * This routine must be called to enable interrupt while failed
124 * device could be resumed.
126 static void eeh_enable_irq(struct pci_dev
*dev
)
128 struct eeh_dev
*edev
= pci_dev_to_eeh_dev(dev
);
130 if ((edev
->mode
) & EEH_DEV_IRQ_DISABLED
) {
131 edev
->mode
&= ~EEH_DEV_IRQ_DISABLED
;
135 * This is just ass backwards. This maze has
136 * unbalanced irq_enable/disable calls. So instead of
137 * finding the root cause it works around the warning
138 * in the irq_enable code by conditionally calling
141 * That's just wrong.The warning in the core code is
142 * there to tell people to fix their asymmetries in
143 * their own code, not by abusing the core information
146 * I so wish that the assymetry would be the other way
147 * round and a few more irq_disable calls render that
148 * shit unusable forever.
152 if (irqd_irq_disabled(irq_get_irq_data(dev
->irq
)))
153 enable_irq(dev
->irq
);
157 static bool eeh_dev_removed(struct eeh_dev
*edev
)
159 /* EEH device removed ? */
160 if (!edev
|| (edev
->mode
& EEH_DEV_REMOVED
))
166 static void *eeh_dev_save_state(void *data
, void *userdata
)
168 struct eeh_dev
*edev
= data
;
169 struct pci_dev
*pdev
;
175 * We cannot access the config space on some adapters.
176 * Otherwise, it will cause fenced PHB. We don't save
177 * the content in their config space and will restore
178 * from the initial config space saved when the EEH
181 if (edev
->pe
&& (edev
->pe
->state
& EEH_PE_CFG_RESTRICTED
))
184 pdev
= eeh_dev_to_pci_dev(edev
);
188 pci_save_state(pdev
);
193 * eeh_report_error - Report pci error to each device driver
195 * @userdata: return value
197 * Report an EEH error to each device driver, collect up and
198 * merge the device driver responses. Cumulative response
199 * passed back in "userdata".
201 static void *eeh_report_error(void *data
, void *userdata
)
203 struct eeh_dev
*edev
= (struct eeh_dev
*)data
;
204 struct pci_dev
*dev
= eeh_dev_to_pci_dev(edev
);
205 enum pci_ers_result rc
, *res
= userdata
;
206 struct pci_driver
*driver
;
208 if (!dev
|| eeh_dev_removed(edev
) || eeh_pe_passed(edev
->pe
))
210 dev
->error_state
= pci_channel_io_frozen
;
212 driver
= eeh_pcid_get(dev
);
213 if (!driver
) return NULL
;
215 eeh_disable_irq(dev
);
217 if (!driver
->err_handler
||
218 !driver
->err_handler
->error_detected
) {
223 rc
= driver
->err_handler
->error_detected(dev
, pci_channel_io_frozen
);
225 /* A driver that needs a reset trumps all others */
226 if (rc
== PCI_ERS_RESULT_NEED_RESET
) *res
= rc
;
227 if (*res
== PCI_ERS_RESULT_NONE
) *res
= rc
;
229 edev
->in_error
= true;
231 pci_uevent_ers(dev
, PCI_ERS_RESULT_NONE
);
236 * eeh_report_mmio_enabled - Tell drivers that MMIO has been enabled
238 * @userdata: return value
240 * Tells each device driver that IO ports, MMIO and config space I/O
241 * are now enabled. Collects up and merges the device driver responses.
242 * Cumulative response passed back in "userdata".
244 static void *eeh_report_mmio_enabled(void *data
, void *userdata
)
246 struct eeh_dev
*edev
= (struct eeh_dev
*)data
;
247 struct pci_dev
*dev
= eeh_dev_to_pci_dev(edev
);
248 enum pci_ers_result rc
, *res
= userdata
;
249 struct pci_driver
*driver
;
251 if (!dev
|| eeh_dev_removed(edev
) || eeh_pe_passed(edev
->pe
))
254 driver
= eeh_pcid_get(dev
);
255 if (!driver
) return NULL
;
257 if (!driver
->err_handler
||
258 !driver
->err_handler
->mmio_enabled
||
259 (edev
->mode
& EEH_DEV_NO_HANDLER
)) {
264 rc
= driver
->err_handler
->mmio_enabled(dev
);
266 /* A driver that needs a reset trumps all others */
267 if (rc
== PCI_ERS_RESULT_NEED_RESET
) *res
= rc
;
268 if (*res
== PCI_ERS_RESULT_NONE
) *res
= rc
;
275 * eeh_report_reset - Tell device that slot has been reset
277 * @userdata: return value
279 * This routine must be called while EEH tries to reset particular
280 * PCI device so that the associated PCI device driver could take
281 * some actions, usually to save data the driver needs so that the
282 * driver can work again while the device is recovered.
284 static void *eeh_report_reset(void *data
, void *userdata
)
286 struct eeh_dev
*edev
= (struct eeh_dev
*)data
;
287 struct pci_dev
*dev
= eeh_dev_to_pci_dev(edev
);
288 enum pci_ers_result rc
, *res
= userdata
;
289 struct pci_driver
*driver
;
291 if (!dev
|| eeh_dev_removed(edev
) || eeh_pe_passed(edev
->pe
))
293 dev
->error_state
= pci_channel_io_normal
;
295 driver
= eeh_pcid_get(dev
);
296 if (!driver
) return NULL
;
300 if (!driver
->err_handler
||
301 !driver
->err_handler
->slot_reset
||
302 (edev
->mode
& EEH_DEV_NO_HANDLER
) ||
308 rc
= driver
->err_handler
->slot_reset(dev
);
309 if ((*res
== PCI_ERS_RESULT_NONE
) ||
310 (*res
== PCI_ERS_RESULT_RECOVERED
)) *res
= rc
;
311 if (*res
== PCI_ERS_RESULT_DISCONNECT
&&
312 rc
== PCI_ERS_RESULT_NEED_RESET
) *res
= rc
;
318 static void *eeh_dev_restore_state(void *data
, void *userdata
)
320 struct eeh_dev
*edev
= data
;
321 struct pci_dev
*pdev
;
327 * The content in the config space isn't saved because
328 * the blocked config space on some adapters. We have
329 * to restore the initial saved config space when the
330 * EEH device is created.
332 if (edev
->pe
&& (edev
->pe
->state
& EEH_PE_CFG_RESTRICTED
)) {
333 if (list_is_last(&edev
->list
, &edev
->pe
->edevs
))
334 eeh_pe_restore_bars(edev
->pe
);
339 pdev
= eeh_dev_to_pci_dev(edev
);
343 pci_restore_state(pdev
);
348 * eeh_report_resume - Tell device to resume normal operations
350 * @userdata: return value
352 * This routine must be called to notify the device driver that it
353 * could resume so that the device driver can do some initialization
354 * to make the recovered device work again.
356 static void *eeh_report_resume(void *data
, void *userdata
)
358 struct eeh_dev
*edev
= (struct eeh_dev
*)data
;
359 struct pci_dev
*dev
= eeh_dev_to_pci_dev(edev
);
361 struct pci_driver
*driver
;
363 if (!dev
|| eeh_dev_removed(edev
) || eeh_pe_passed(edev
->pe
))
365 dev
->error_state
= pci_channel_io_normal
;
367 driver
= eeh_pcid_get(dev
);
368 if (!driver
) return NULL
;
370 was_in_error
= edev
->in_error
;
371 edev
->in_error
= false;
374 if (!driver
->err_handler
||
375 !driver
->err_handler
->resume
||
376 (edev
->mode
& EEH_DEV_NO_HANDLER
) || !was_in_error
) {
377 edev
->mode
&= ~EEH_DEV_NO_HANDLER
;
382 driver
->err_handler
->resume(dev
);
385 pci_uevent_ers(dev
, PCI_ERS_RESULT_RECOVERED
);
386 #ifdef CONFIG_PCI_IOV
387 eeh_ops
->notify_resume(eeh_dev_to_pdn(edev
));
393 * eeh_report_failure - Tell device driver that device is dead.
395 * @userdata: return value
397 * This informs the device driver that the device is permanently
398 * dead, and that no further recovery attempts will be made on it.
400 static void *eeh_report_failure(void *data
, void *userdata
)
402 struct eeh_dev
*edev
= (struct eeh_dev
*)data
;
403 struct pci_dev
*dev
= eeh_dev_to_pci_dev(edev
);
404 struct pci_driver
*driver
;
406 if (!dev
|| eeh_dev_removed(edev
) || eeh_pe_passed(edev
->pe
))
408 dev
->error_state
= pci_channel_io_perm_failure
;
410 driver
= eeh_pcid_get(dev
);
411 if (!driver
) return NULL
;
413 eeh_disable_irq(dev
);
415 if (!driver
->err_handler
||
416 !driver
->err_handler
->error_detected
) {
421 driver
->err_handler
->error_detected(dev
, pci_channel_io_perm_failure
);
424 pci_uevent_ers(dev
, PCI_ERS_RESULT_DISCONNECT
);
428 static void *eeh_add_virt_device(void *data
, void *userdata
)
430 struct pci_driver
*driver
;
431 struct eeh_dev
*edev
= (struct eeh_dev
*)data
;
432 struct pci_dev
*dev
= eeh_dev_to_pci_dev(edev
);
433 struct pci_dn
*pdn
= eeh_dev_to_pdn(edev
);
435 if (!(edev
->physfn
)) {
436 pr_warn("%s: EEH dev %04x:%02x:%02x.%01x not for VF\n",
437 __func__
, pdn
->phb
->global_number
, pdn
->busno
,
438 PCI_SLOT(pdn
->devfn
), PCI_FUNC(pdn
->devfn
));
442 driver
= eeh_pcid_get(dev
);
445 if (driver
->err_handler
)
449 #ifdef CONFIG_PCI_IOV
450 pci_iov_add_virtfn(edev
->physfn
, pdn
->vf_index
);
455 static void *eeh_rmv_device(void *data
, void *userdata
)
457 struct pci_driver
*driver
;
458 struct eeh_dev
*edev
= (struct eeh_dev
*)data
;
459 struct pci_dev
*dev
= eeh_dev_to_pci_dev(edev
);
460 struct eeh_rmv_data
*rmv_data
= (struct eeh_rmv_data
*)userdata
;
461 int *removed
= rmv_data
? &rmv_data
->removed
: NULL
;
464 * Actually, we should remove the PCI bridges as well.
465 * However, that's lots of complexity to do that,
466 * particularly some of devices under the bridge might
467 * support EEH. So we just care about PCI devices for
470 if (!dev
|| (dev
->hdr_type
== PCI_HEADER_TYPE_BRIDGE
))
474 * We rely on count-based pcibios_release_device() to
475 * detach permanently offlined PEs. Unfortunately, that's
476 * not reliable enough. We might have the permanently
477 * offlined PEs attached, but we needn't take care of
478 * them and their child devices.
480 if (eeh_dev_removed(edev
))
483 driver
= eeh_pcid_get(dev
);
487 eeh_pe_passed(edev
->pe
))
490 driver
->err_handler
&&
491 driver
->err_handler
->error_detected
&&
492 driver
->err_handler
->slot_reset
)
496 /* Remove it from PCI subsystem */
497 pr_debug("EEH: Removing %s without EEH sensitive driver\n",
499 edev
->bus
= dev
->bus
;
500 edev
->mode
|= EEH_DEV_DISCONNECTED
;
505 #ifdef CONFIG_PCI_IOV
506 struct pci_dn
*pdn
= eeh_dev_to_pdn(edev
);
508 pci_iov_remove_virtfn(edev
->physfn
, pdn
->vf_index
);
512 * We have to set the VF PE number to invalid one, which is
513 * required to plug the VF successfully.
515 pdn
->pe_number
= IODA_INVALID_PE
;
518 list_add(&edev
->rmv_list
, &rmv_data
->edev_list
);
520 pci_lock_rescan_remove();
521 pci_stop_and_remove_bus_device(dev
);
522 pci_unlock_rescan_remove();
528 static void *eeh_pe_detach_dev(void *data
, void *userdata
)
530 struct eeh_pe
*pe
= (struct eeh_pe
*)data
;
531 struct eeh_dev
*edev
, *tmp
;
533 eeh_pe_for_each_dev(pe
, edev
, tmp
) {
534 if (!(edev
->mode
& EEH_DEV_DISCONNECTED
))
537 edev
->mode
&= ~(EEH_DEV_DISCONNECTED
| EEH_DEV_IRQ_DISABLED
);
538 eeh_rmv_from_parent_pe(edev
);
545 * Explicitly clear PE's frozen state for PowerNV where
546 * we have frozen PE until BAR restore is completed. It's
547 * harmless to clear it for pSeries. To be consistent with
548 * PE reset (for 3 times), we try to clear the frozen state
549 * for 3 times as well.
551 static void *__eeh_clear_pe_frozen_state(void *data
, void *flag
)
553 struct eeh_pe
*pe
= (struct eeh_pe
*)data
;
554 bool clear_sw_state
= *(bool *)flag
;
557 for (i
= 0; rc
&& i
< 3; i
++)
558 rc
= eeh_unfreeze_pe(pe
, clear_sw_state
);
560 /* Stop immediately on any errors */
562 pr_warn("%s: Failure %d unfreezing PHB#%x-PE#%x\n",
563 __func__
, rc
, pe
->phb
->global_number
, pe
->addr
);
570 static int eeh_clear_pe_frozen_state(struct eeh_pe
*pe
,
575 rc
= eeh_pe_traverse(pe
, __eeh_clear_pe_frozen_state
, &clear_sw_state
);
577 eeh_pe_state_clear(pe
, EEH_PE_ISOLATED
);
579 return rc
? -EIO
: 0;
582 int eeh_pe_reset_and_recover(struct eeh_pe
*pe
)
586 /* Bail if the PE is being recovered */
587 if (pe
->state
& EEH_PE_RECOVERING
)
590 /* Put the PE into recovery mode */
591 eeh_pe_state_mark(pe
, EEH_PE_RECOVERING
);
594 eeh_pe_dev_traverse(pe
, eeh_dev_save_state
, NULL
);
597 ret
= eeh_pe_reset_full(pe
);
599 eeh_pe_state_clear(pe
, EEH_PE_RECOVERING
);
603 /* Unfreeze the PE */
604 ret
= eeh_clear_pe_frozen_state(pe
, true);
606 eeh_pe_state_clear(pe
, EEH_PE_RECOVERING
);
610 /* Restore device state */
611 eeh_pe_dev_traverse(pe
, eeh_dev_restore_state
, NULL
);
613 /* Clear recovery mode */
614 eeh_pe_state_clear(pe
, EEH_PE_RECOVERING
);
620 * eeh_reset_device - Perform actual reset of a pci slot
622 * @bus: PCI bus corresponding to the isolcated slot
624 * This routine must be called to do reset on the indicated PE.
625 * During the reset, udev might be invoked because those affected
626 * PCI devices will be removed and then added.
628 static int eeh_reset_device(struct eeh_pe
*pe
, struct pci_bus
*bus
,
629 struct eeh_rmv_data
*rmv_data
)
631 struct pci_bus
*frozen_bus
= eeh_pe_bus_get(pe
);
634 struct eeh_dev
*edev
;
636 /* pcibios will clear the counter; save the value */
637 cnt
= pe
->freeze_count
;
641 * We don't remove the corresponding PE instances because
642 * we need the information afterwords. The attached EEH
643 * devices are expected to be attached soon when calling
644 * into pci_hp_add_devices().
646 eeh_pe_state_mark(pe
, EEH_PE_KEEP
);
648 if (pe
->type
& EEH_PE_VF
) {
649 eeh_pe_dev_traverse(pe
, eeh_rmv_device
, NULL
);
651 pci_lock_rescan_remove();
652 pci_hp_remove_devices(bus
);
653 pci_unlock_rescan_remove();
655 } else if (frozen_bus
) {
656 eeh_pe_dev_traverse(pe
, eeh_rmv_device
, rmv_data
);
660 * Reset the pci controller. (Asserts RST#; resets config space).
661 * Reconfigure bridges and devices. Don't try to bring the system
662 * up if the reset failed for some reason.
664 * During the reset, it's very dangerous to have uncontrolled PCI
665 * config accesses. So we prefer to block them. However, controlled
666 * PCI config accesses initiated from EEH itself are allowed.
668 rc
= eeh_pe_reset_full(pe
);
672 pci_lock_rescan_remove();
675 eeh_ops
->configure_bridge(pe
);
676 eeh_pe_restore_bars(pe
);
678 /* Clear frozen state */
679 rc
= eeh_clear_pe_frozen_state(pe
, false);
681 pci_unlock_rescan_remove();
685 /* Give the system 5 seconds to finish running the user-space
686 * hotplug shutdown scripts, e.g. ifdown for ethernet. Yes,
687 * this is a hack, but if we don't do this, and try to bring
688 * the device up before the scripts have taken it down,
689 * potentially weird things happen.
692 pr_info("EEH: Sleep 5s ahead of complete hotplug\n");
696 * The EEH device is still connected with its parent
697 * PE. We should disconnect it so the binding can be
698 * rebuilt when adding PCI devices.
700 edev
= list_first_entry(&pe
->edevs
, struct eeh_dev
, list
);
701 eeh_pe_traverse(pe
, eeh_pe_detach_dev
, NULL
);
702 if (pe
->type
& EEH_PE_VF
) {
703 eeh_add_virt_device(edev
, NULL
);
705 eeh_pe_state_clear(pe
, EEH_PE_PRI_BUS
);
706 pci_hp_add_devices(bus
);
708 } else if (frozen_bus
&& rmv_data
->removed
) {
709 pr_info("EEH: Sleep 5s ahead of partial hotplug\n");
712 edev
= list_first_entry(&pe
->edevs
, struct eeh_dev
, list
);
713 eeh_pe_traverse(pe
, eeh_pe_detach_dev
, NULL
);
714 if (pe
->type
& EEH_PE_VF
)
715 eeh_add_virt_device(edev
, NULL
);
717 pci_hp_add_devices(frozen_bus
);
719 eeh_pe_state_clear(pe
, EEH_PE_KEEP
);
722 pe
->freeze_count
= cnt
;
724 pci_unlock_rescan_remove();
728 /* The longest amount of time to wait for a pci device
729 * to come back on line, in seconds.
731 #define MAX_WAIT_FOR_RECOVERY 300
734 * eeh_handle_normal_event - Handle EEH events on a specific PE
737 * Attempts to recover the given PE. If recovery fails or the PE has failed
738 * too many times, remove the PE.
740 * Returns true if @pe should no longer be used, else false.
742 static bool eeh_handle_normal_event(struct eeh_pe
*pe
)
744 struct pci_bus
*frozen_bus
;
745 struct eeh_dev
*edev
, *tmp
;
747 enum pci_ers_result result
= PCI_ERS_RESULT_NONE
;
748 struct eeh_rmv_data rmv_data
= {LIST_HEAD_INIT(rmv_data
.edev_list
), 0};
750 frozen_bus
= eeh_pe_bus_get(pe
);
752 pr_err("%s: Cannot find PCI bus for PHB#%x-PE#%x\n",
753 __func__
, pe
->phb
->global_number
, pe
->addr
);
757 eeh_pe_update_time_stamp(pe
);
759 if (pe
->freeze_count
> eeh_max_freezes
) {
760 pr_err("EEH: PHB#%x-PE#%x has failed %d times in the\n"
761 "last hour and has been permanently disabled.\n",
762 pe
->phb
->global_number
, pe
->addr
,
766 pr_warn("EEH: This PCI device has failed %d times in the last hour\n",
769 /* Walk the various device drivers attached to this slot through
770 * a reset sequence, giving each an opportunity to do what it needs
771 * to accomplish the reset. Each child gets a report of the
772 * status ... if any child can't handle the reset, then the entire
773 * slot is dlpar removed and added.
775 * When the PHB is fenced, we have to issue a reset to recover from
776 * the error. Override the result if necessary to have partially
777 * hotplug for this case.
779 pr_info("EEH: Notify device drivers to shutdown\n");
780 eeh_pe_dev_traverse(pe
, eeh_report_error
, &result
);
781 if ((pe
->type
& EEH_PE_PHB
) &&
782 result
!= PCI_ERS_RESULT_NONE
&&
783 result
!= PCI_ERS_RESULT_NEED_RESET
)
784 result
= PCI_ERS_RESULT_NEED_RESET
;
786 /* Get the current PCI slot state. This can take a long time,
787 * sometimes over 300 seconds for certain systems.
789 rc
= eeh_ops
->wait_state(pe
, MAX_WAIT_FOR_RECOVERY
*1000);
790 if (rc
< 0 || rc
== EEH_STATE_NOT_SUPPORT
) {
791 pr_warn("EEH: Permanent failure\n");
795 /* Since rtas may enable MMIO when posting the error log,
796 * don't post the error log until after all dev drivers
797 * have been informed.
799 pr_info("EEH: Collect temporary log\n");
800 eeh_slot_error_detail(pe
, EEH_LOG_TEMP
);
802 /* If all device drivers were EEH-unaware, then shut
803 * down all of the device drivers, and hope they
804 * go down willingly, without panicing the system.
806 if (result
== PCI_ERS_RESULT_NONE
) {
807 pr_info("EEH: Reset with hotplug activity\n");
808 rc
= eeh_reset_device(pe
, frozen_bus
, NULL
);
810 pr_warn("%s: Unable to reset, err=%d\n",
816 /* If all devices reported they can proceed, then re-enable MMIO */
817 if (result
== PCI_ERS_RESULT_CAN_RECOVER
) {
818 pr_info("EEH: Enable I/O for affected devices\n");
819 rc
= eeh_pci_enable(pe
, EEH_OPT_THAW_MMIO
);
824 result
= PCI_ERS_RESULT_NEED_RESET
;
826 pr_info("EEH: Notify device drivers to resume I/O\n");
827 eeh_pe_dev_traverse(pe
, eeh_report_mmio_enabled
, &result
);
831 /* If all devices reported they can proceed, then re-enable DMA */
832 if (result
== PCI_ERS_RESULT_CAN_RECOVER
) {
833 pr_info("EEH: Enabled DMA for affected devices\n");
834 rc
= eeh_pci_enable(pe
, EEH_OPT_THAW_DMA
);
839 result
= PCI_ERS_RESULT_NEED_RESET
;
842 * We didn't do PE reset for the case. The PE
843 * is still in frozen state. Clear it before
846 eeh_pe_state_clear(pe
, EEH_PE_ISOLATED
);
847 result
= PCI_ERS_RESULT_RECOVERED
;
851 /* If any device has a hard failure, then shut off everything. */
852 if (result
== PCI_ERS_RESULT_DISCONNECT
) {
853 pr_warn("EEH: Device driver gave up\n");
857 /* If any device called out for a reset, then reset the slot */
858 if (result
== PCI_ERS_RESULT_NEED_RESET
) {
859 pr_info("EEH: Reset without hotplug activity\n");
860 rc
= eeh_reset_device(pe
, NULL
, &rmv_data
);
862 pr_warn("%s: Cannot reset, err=%d\n",
867 pr_info("EEH: Notify device drivers "
868 "the completion of reset\n");
869 result
= PCI_ERS_RESULT_NONE
;
870 eeh_pe_dev_traverse(pe
, eeh_report_reset
, &result
);
873 /* All devices should claim they have recovered by now. */
874 if ((result
!= PCI_ERS_RESULT_RECOVERED
) &&
875 (result
!= PCI_ERS_RESULT_NONE
)) {
876 pr_warn("EEH: Not recovered\n");
881 * For those hot removed VFs, we should add back them after PF get
882 * recovered properly.
884 list_for_each_entry_safe(edev
, tmp
, &rmv_data
.edev_list
, rmv_list
) {
885 eeh_add_virt_device(edev
, NULL
);
886 list_del(&edev
->rmv_list
);
889 /* Tell all device drivers that they can resume operations */
890 pr_info("EEH: Notify device driver to resume\n");
891 eeh_pe_dev_traverse(pe
, eeh_report_resume
, NULL
);
897 * About 90% of all real-life EEH failures in the field
898 * are due to poorly seated PCI cards. Only 10% or so are
899 * due to actual, failed cards.
901 pr_err("EEH: Unable to recover from failure from PHB#%x-PE#%x.\n"
902 "Please try reseating or replacing it\n",
903 pe
->phb
->global_number
, pe
->addr
);
905 eeh_slot_error_detail(pe
, EEH_LOG_PERM
);
907 /* Notify all devices that they're about to go down. */
908 eeh_pe_dev_traverse(pe
, eeh_report_failure
, NULL
);
910 /* Mark the PE to be removed permanently */
911 eeh_pe_state_mark(pe
, EEH_PE_REMOVED
);
914 * Shut down the device drivers for good. We mark
915 * all removed devices correctly to avoid access
916 * the their PCI config any more.
919 if (pe
->type
& EEH_PE_VF
) {
920 eeh_pe_dev_traverse(pe
, eeh_rmv_device
, NULL
);
921 eeh_pe_dev_mode_mark(pe
, EEH_DEV_REMOVED
);
923 eeh_pe_state_clear(pe
, EEH_PE_PRI_BUS
);
924 eeh_pe_dev_mode_mark(pe
, EEH_DEV_REMOVED
);
926 pci_lock_rescan_remove();
927 pci_hp_remove_devices(frozen_bus
);
928 pci_unlock_rescan_remove();
930 /* The passed PE should no longer be used */
938 * eeh_handle_special_event - Handle EEH events without a specific failing PE
940 * Called when an EEH event is detected but can't be narrowed down to a
941 * specific PE. Iterates through possible failures and handles them as
944 static void eeh_handle_special_event(void)
946 struct eeh_pe
*pe
, *phb_pe
;
948 struct pci_controller
*hose
;
954 rc
= eeh_ops
->next_error(&pe
);
957 case EEH_NEXT_ERR_DEAD_IOC
:
958 /* Mark all PHBs in dead state */
959 eeh_serialize_lock(&flags
);
961 /* Purge all events */
962 eeh_remove_event(NULL
, true);
964 list_for_each_entry(hose
, &hose_list
, list_node
) {
965 phb_pe
= eeh_phb_pe_get(hose
);
966 if (!phb_pe
) continue;
968 eeh_pe_state_mark(phb_pe
, EEH_PE_ISOLATED
);
971 eeh_serialize_unlock(flags
);
974 case EEH_NEXT_ERR_FROZEN_PE
:
975 case EEH_NEXT_ERR_FENCED_PHB
:
976 case EEH_NEXT_ERR_DEAD_PHB
:
977 /* Mark the PE in fenced state */
978 eeh_serialize_lock(&flags
);
980 /* Purge all events of the PHB */
981 eeh_remove_event(pe
, true);
983 if (rc
== EEH_NEXT_ERR_DEAD_PHB
)
984 eeh_pe_state_mark(pe
, EEH_PE_ISOLATED
);
986 eeh_pe_state_mark(pe
,
987 EEH_PE_ISOLATED
| EEH_PE_RECOVERING
);
989 eeh_serialize_unlock(flags
);
992 case EEH_NEXT_ERR_NONE
:
995 pr_warn("%s: Invalid value %d from next_error()\n",
1001 * For fenced PHB and frozen PE, it's handled as normal
1002 * event. We have to remove the affected PHBs for dead
1005 if (rc
== EEH_NEXT_ERR_FROZEN_PE
||
1006 rc
== EEH_NEXT_ERR_FENCED_PHB
) {
1008 * eeh_handle_normal_event() can make the PE stale if it
1009 * determines that the PE cannot possibly be recovered.
1010 * Don't modify the PE state if that's the case.
1012 if (eeh_handle_normal_event(pe
))
1015 eeh_pe_state_clear(pe
, EEH_PE_RECOVERING
);
1017 pci_lock_rescan_remove();
1018 list_for_each_entry(hose
, &hose_list
, list_node
) {
1019 phb_pe
= eeh_phb_pe_get(hose
);
1021 !(phb_pe
->state
& EEH_PE_ISOLATED
) ||
1022 (phb_pe
->state
& EEH_PE_RECOVERING
))
1025 /* Notify all devices to be down */
1026 eeh_pe_state_clear(pe
, EEH_PE_PRI_BUS
);
1027 eeh_pe_dev_traverse(pe
,
1028 eeh_report_failure
, NULL
);
1029 bus
= eeh_pe_bus_get(phb_pe
);
1031 pr_err("%s: Cannot find PCI bus for "
1034 pe
->phb
->global_number
,
1038 pci_hp_remove_devices(bus
);
1040 pci_unlock_rescan_remove();
1044 * If we have detected dead IOC, we needn't proceed
1045 * any more since all PHBs would have been removed
1047 if (rc
== EEH_NEXT_ERR_DEAD_IOC
)
1049 } while (rc
!= EEH_NEXT_ERR_NONE
);
1053 * eeh_handle_event - Reset a PCI device after hard lockup.
1056 * While PHB detects address or data parity errors on particular PCI
1057 * slot, the associated PE will be frozen. Besides, DMA's occurring
1058 * to wild addresses (which usually happen due to bugs in device
1059 * drivers or in PCI adapter firmware) can cause EEH error. #SERR,
1060 * #PERR or other misc PCI-related errors also can trigger EEH errors.
1062 * Recovery process consists of unplugging the device driver (which
1063 * generated hotplug events to userspace), then issuing a PCI #RST to
1064 * the device, then reconfiguring the PCI config space for all bridges
1065 * & devices under this slot, and then finally restarting the device
1066 * drivers (which cause a second set of hotplug events to go out to
1069 void eeh_handle_event(struct eeh_pe
*pe
)
1072 eeh_handle_normal_event(pe
);
1074 eeh_handle_special_event();