Linux 4.9.199
[linux/fpc-iii.git] / arch / powerpc / kernel / eeh_driver.c
blob620e08d4eb6e263189d1f45db647472cee14f3ba
1 /*
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
6 * All rights reserved.
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
17 * details.
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>
30 #include <asm/eeh.h>
31 #include <asm/eeh_event.h>
32 #include <asm/ppc-pci.h>
33 #include <asm/pci-bridge.h>
34 #include <asm/prom.h>
35 #include <asm/rtas.h>
37 struct eeh_rmv_data {
38 struct list_head edev_list;
39 int removed;
42 /**
43 * eeh_pcid_name - Retrieve name of PCI device driver
44 * @pdev: PCI device
46 * This routine is used to retrieve the name of PCI device driver
47 * if that's valid.
49 static inline const char *eeh_pcid_name(struct pci_dev *pdev)
51 if (pdev && pdev->dev.driver)
52 return pdev->dev.driver->name;
53 return "";
56 /**
57 * eeh_pcid_get - Get the PCI device driver
58 * @pdev: PCI device
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)
68 return NULL;
70 if (!try_module_get(pdev->driver->driver.owner))
71 return NULL;
73 return pdev->driver;
76 /**
77 * eeh_pcid_put - Dereference on the PCI device driver
78 * @pdev: PCI device
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)
86 return;
88 module_put(pdev->driver->driver.owner);
91 /**
92 * eeh_disable_irq - Disable interrupt for the recovering device
93 * @dev: PCI 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)
110 return;
112 if (!irq_has_action(dev->irq))
113 return;
115 edev->mode |= EEH_DEV_IRQ_DISABLED;
116 disable_irq_nosync(dev->irq);
120 * eeh_enable_irq - Enable interrupt for the recovering device
121 * @dev: PCI 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;
133 * FIXME !!!!!
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
139 * into it.
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
144 * to avoid it.
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.
150 * tglx
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))
161 return true;
163 return false;
166 static void *eeh_dev_save_state(void *data, void *userdata)
168 struct eeh_dev *edev = data;
169 struct pci_dev *pdev;
171 if (!edev)
172 return NULL;
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
179 * device is created.
181 if (edev->pe && (edev->pe->state & EEH_PE_CFG_RESTRICTED))
182 return NULL;
184 pdev = eeh_dev_to_pci_dev(edev);
185 if (!pdev)
186 return NULL;
188 pci_save_state(pdev);
189 return NULL;
193 * eeh_report_error - Report pci error to each device driver
194 * @data: eeh device
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))
209 return NULL;
211 device_lock(&dev->dev);
212 dev->error_state = pci_channel_io_frozen;
214 driver = eeh_pcid_get(dev);
215 if (!driver) goto out_no_dev;
217 eeh_disable_irq(dev);
219 if (!driver->err_handler ||
220 !driver->err_handler->error_detected)
221 goto out;
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;
230 out:
231 eeh_pcid_put(dev);
232 out_no_dev:
233 device_unlock(&dev->dev);
234 return NULL;
238 * eeh_report_mmio_enabled - Tell drivers that MMIO has been enabled
239 * @data: eeh device
240 * @userdata: return value
242 * Tells each device driver that IO ports, MMIO and config space I/O
243 * are now enabled. Collects up and merges the device driver responses.
244 * Cumulative response passed back in "userdata".
246 static void *eeh_report_mmio_enabled(void *data, void *userdata)
248 struct eeh_dev *edev = (struct eeh_dev *)data;
249 struct pci_dev *dev = eeh_dev_to_pci_dev(edev);
250 enum pci_ers_result rc, *res = userdata;
251 struct pci_driver *driver;
253 if (!dev || eeh_dev_removed(edev) || eeh_pe_passed(edev->pe))
254 return NULL;
256 device_lock(&dev->dev);
257 driver = eeh_pcid_get(dev);
258 if (!driver) goto out_no_dev;
260 if (!driver->err_handler ||
261 !driver->err_handler->mmio_enabled ||
262 (edev->mode & EEH_DEV_NO_HANDLER))
263 goto out;
265 rc = driver->err_handler->mmio_enabled(dev);
267 /* A driver that needs a reset trumps all others */
268 if (rc == PCI_ERS_RESULT_NEED_RESET) *res = rc;
269 if (*res == PCI_ERS_RESULT_NONE) *res = rc;
271 out:
272 eeh_pcid_put(dev);
273 out_no_dev:
274 device_unlock(&dev->dev);
275 return NULL;
279 * eeh_report_reset - Tell device that slot has been reset
280 * @data: eeh device
281 * @userdata: return value
283 * This routine must be called while EEH tries to reset particular
284 * PCI device so that the associated PCI device driver could take
285 * some actions, usually to save data the driver needs so that the
286 * driver can work again while the device is recovered.
288 static void *eeh_report_reset(void *data, void *userdata)
290 struct eeh_dev *edev = (struct eeh_dev *)data;
291 struct pci_dev *dev = eeh_dev_to_pci_dev(edev);
292 enum pci_ers_result rc, *res = userdata;
293 struct pci_driver *driver;
295 if (!dev || eeh_dev_removed(edev) || eeh_pe_passed(edev->pe))
296 return NULL;
298 device_lock(&dev->dev);
299 dev->error_state = pci_channel_io_normal;
301 driver = eeh_pcid_get(dev);
302 if (!driver) goto out_no_dev;
304 eeh_enable_irq(dev);
306 if (!driver->err_handler ||
307 !driver->err_handler->slot_reset ||
308 (edev->mode & EEH_DEV_NO_HANDLER) ||
309 (!edev->in_error))
310 goto out;
312 rc = driver->err_handler->slot_reset(dev);
313 if ((*res == PCI_ERS_RESULT_NONE) ||
314 (*res == PCI_ERS_RESULT_RECOVERED)) *res = rc;
315 if (*res == PCI_ERS_RESULT_DISCONNECT &&
316 rc == PCI_ERS_RESULT_NEED_RESET) *res = rc;
318 out:
319 eeh_pcid_put(dev);
320 out_no_dev:
321 device_unlock(&dev->dev);
322 return NULL;
325 static void *eeh_dev_restore_state(void *data, void *userdata)
327 struct eeh_dev *edev = data;
328 struct pci_dev *pdev;
330 if (!edev)
331 return NULL;
334 * The content in the config space isn't saved because
335 * the blocked config space on some adapters. We have
336 * to restore the initial saved config space when the
337 * EEH device is created.
339 if (edev->pe && (edev->pe->state & EEH_PE_CFG_RESTRICTED)) {
340 if (list_is_last(&edev->list, &edev->pe->edevs))
341 eeh_pe_restore_bars(edev->pe);
343 return NULL;
346 pdev = eeh_dev_to_pci_dev(edev);
347 if (!pdev)
348 return NULL;
350 pci_restore_state(pdev);
351 return NULL;
355 * eeh_report_resume - Tell device to resume normal operations
356 * @data: eeh device
357 * @userdata: return value
359 * This routine must be called to notify the device driver that it
360 * could resume so that the device driver can do some initialization
361 * to make the recovered device work again.
363 static void *eeh_report_resume(void *data, void *userdata)
365 struct eeh_dev *edev = (struct eeh_dev *)data;
366 struct pci_dev *dev = eeh_dev_to_pci_dev(edev);
367 bool was_in_error;
368 struct pci_driver *driver;
370 if (!dev || eeh_dev_removed(edev) || eeh_pe_passed(edev->pe))
371 return NULL;
373 device_lock(&dev->dev);
374 dev->error_state = pci_channel_io_normal;
376 driver = eeh_pcid_get(dev);
377 if (!driver) goto out_no_dev;
379 was_in_error = edev->in_error;
380 edev->in_error = false;
381 eeh_enable_irq(dev);
383 if (!driver->err_handler ||
384 !driver->err_handler->resume ||
385 (edev->mode & EEH_DEV_NO_HANDLER) || !was_in_error) {
386 edev->mode &= ~EEH_DEV_NO_HANDLER;
387 goto out;
390 driver->err_handler->resume(dev);
392 out:
393 eeh_pcid_put(dev);
394 out_no_dev:
395 device_unlock(&dev->dev);
396 return NULL;
400 * eeh_report_failure - Tell device driver that device is dead.
401 * @data: eeh device
402 * @userdata: return value
404 * This informs the device driver that the device is permanently
405 * dead, and that no further recovery attempts will be made on it.
407 static void *eeh_report_failure(void *data, void *userdata)
409 struct eeh_dev *edev = (struct eeh_dev *)data;
410 struct pci_dev *dev = eeh_dev_to_pci_dev(edev);
411 struct pci_driver *driver;
413 if (!dev || eeh_dev_removed(edev) || eeh_pe_passed(edev->pe))
414 return NULL;
416 device_lock(&dev->dev);
417 dev->error_state = pci_channel_io_perm_failure;
419 driver = eeh_pcid_get(dev);
420 if (!driver) goto out_no_dev;
422 eeh_disable_irq(dev);
424 if (!driver->err_handler ||
425 !driver->err_handler->error_detected)
426 goto out;
428 driver->err_handler->error_detected(dev, pci_channel_io_perm_failure);
430 out:
431 eeh_pcid_put(dev);
432 out_no_dev:
433 device_unlock(&dev->dev);
434 return NULL;
437 static void *eeh_add_virt_device(void *data, void *userdata)
439 struct pci_driver *driver;
440 struct eeh_dev *edev = (struct eeh_dev *)data;
441 struct pci_dev *dev = eeh_dev_to_pci_dev(edev);
442 struct pci_dn *pdn = eeh_dev_to_pdn(edev);
444 if (!(edev->physfn)) {
445 pr_warn("%s: EEH dev %04x:%02x:%02x.%01x not for VF\n",
446 __func__, edev->phb->global_number, pdn->busno,
447 PCI_SLOT(pdn->devfn), PCI_FUNC(pdn->devfn));
448 return NULL;
451 driver = eeh_pcid_get(dev);
452 if (driver) {
453 if (driver->err_handler) {
454 eeh_pcid_put(dev);
455 return NULL;
457 eeh_pcid_put(dev);
460 #ifdef CONFIG_PPC_POWERNV
461 pci_iov_add_virtfn(edev->physfn, pdn->vf_index, 0);
462 #endif
463 return NULL;
466 static void *eeh_rmv_device(void *data, void *userdata)
468 struct pci_driver *driver;
469 struct eeh_dev *edev = (struct eeh_dev *)data;
470 struct pci_dev *dev = eeh_dev_to_pci_dev(edev);
471 struct eeh_rmv_data *rmv_data = (struct eeh_rmv_data *)userdata;
472 int *removed = rmv_data ? &rmv_data->removed : NULL;
475 * Actually, we should remove the PCI bridges as well.
476 * However, that's lots of complexity to do that,
477 * particularly some of devices under the bridge might
478 * support EEH. So we just care about PCI devices for
479 * simplicity here.
481 if (!dev || (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE))
482 return NULL;
485 * We rely on count-based pcibios_release_device() to
486 * detach permanently offlined PEs. Unfortunately, that's
487 * not reliable enough. We might have the permanently
488 * offlined PEs attached, but we needn't take care of
489 * them and their child devices.
491 if (eeh_dev_removed(edev))
492 return NULL;
494 if (removed) {
495 if (eeh_pe_passed(edev->pe))
496 return NULL;
497 driver = eeh_pcid_get(dev);
498 if (driver) {
499 if (driver->err_handler &&
500 driver->err_handler->error_detected &&
501 driver->err_handler->slot_reset) {
502 eeh_pcid_put(dev);
503 return NULL;
505 eeh_pcid_put(dev);
509 /* Remove it from PCI subsystem */
510 pr_debug("EEH: Removing %s without EEH sensitive driver\n",
511 pci_name(dev));
512 edev->bus = dev->bus;
513 edev->mode |= EEH_DEV_DISCONNECTED;
514 if (removed)
515 (*removed)++;
517 if (edev->physfn) {
518 #ifdef CONFIG_PPC_POWERNV
519 struct pci_dn *pdn = eeh_dev_to_pdn(edev);
521 pci_iov_remove_virtfn(edev->physfn, pdn->vf_index, 0);
522 edev->pdev = NULL;
525 * We have to set the VF PE number to invalid one, which is
526 * required to plug the VF successfully.
528 pdn->pe_number = IODA_INVALID_PE;
529 #endif
530 if (rmv_data)
531 list_add(&edev->rmv_list, &rmv_data->edev_list);
532 } else {
533 pci_lock_rescan_remove();
534 pci_stop_and_remove_bus_device(dev);
535 pci_unlock_rescan_remove();
538 return NULL;
541 static void *eeh_pe_detach_dev(void *data, void *userdata)
543 struct eeh_pe *pe = (struct eeh_pe *)data;
544 struct eeh_dev *edev, *tmp;
546 eeh_pe_for_each_dev(pe, edev, tmp) {
547 if (!(edev->mode & EEH_DEV_DISCONNECTED))
548 continue;
550 edev->mode &= ~(EEH_DEV_DISCONNECTED | EEH_DEV_IRQ_DISABLED);
551 eeh_rmv_from_parent_pe(edev);
554 return NULL;
558 * Explicitly clear PE's frozen state for PowerNV where
559 * we have frozen PE until BAR restore is completed. It's
560 * harmless to clear it for pSeries. To be consistent with
561 * PE reset (for 3 times), we try to clear the frozen state
562 * for 3 times as well.
564 static void *__eeh_clear_pe_frozen_state(void *data, void *flag)
566 struct eeh_pe *pe = (struct eeh_pe *)data;
567 bool clear_sw_state = *(bool *)flag;
568 int i, rc = 1;
570 for (i = 0; rc && i < 3; i++)
571 rc = eeh_unfreeze_pe(pe, clear_sw_state);
573 /* Stop immediately on any errors */
574 if (rc) {
575 pr_warn("%s: Failure %d unfreezing PHB#%x-PE#%x\n",
576 __func__, rc, pe->phb->global_number, pe->addr);
577 return (void *)pe;
580 return NULL;
583 static int eeh_clear_pe_frozen_state(struct eeh_pe *pe,
584 bool clear_sw_state)
586 void *rc;
588 rc = eeh_pe_traverse(pe, __eeh_clear_pe_frozen_state, &clear_sw_state);
589 if (!rc)
590 eeh_pe_state_clear(pe, EEH_PE_ISOLATED);
592 return rc ? -EIO : 0;
595 int eeh_pe_reset_and_recover(struct eeh_pe *pe)
597 int ret;
599 /* Bail if the PE is being recovered */
600 if (pe->state & EEH_PE_RECOVERING)
601 return 0;
603 /* Put the PE into recovery mode */
604 eeh_pe_state_mark(pe, EEH_PE_RECOVERING);
606 /* Save states */
607 eeh_pe_dev_traverse(pe, eeh_dev_save_state, NULL);
609 /* Issue reset */
610 ret = eeh_reset_pe(pe);
611 if (ret) {
612 eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
613 return ret;
616 /* Unfreeze the PE */
617 ret = eeh_clear_pe_frozen_state(pe, true);
618 if (ret) {
619 eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
620 return ret;
623 /* Restore device state */
624 eeh_pe_dev_traverse(pe, eeh_dev_restore_state, NULL);
626 /* Clear recovery mode */
627 eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
629 return 0;
633 * eeh_reset_device - Perform actual reset of a pci slot
634 * @pe: EEH PE
635 * @bus: PCI bus corresponding to the isolcated slot
637 * This routine must be called to do reset on the indicated PE.
638 * During the reset, udev might be invoked because those affected
639 * PCI devices will be removed and then added.
641 static int eeh_reset_device(struct eeh_pe *pe, struct pci_bus *bus,
642 struct eeh_rmv_data *rmv_data)
644 struct pci_bus *frozen_bus = eeh_pe_bus_get(pe);
645 struct timeval tstamp;
646 int cnt, rc;
647 struct eeh_dev *edev;
649 /* pcibios will clear the counter; save the value */
650 cnt = pe->freeze_count;
651 tstamp = pe->tstamp;
654 * We don't remove the corresponding PE instances because
655 * we need the information afterwords. The attached EEH
656 * devices are expected to be attached soon when calling
657 * into pci_hp_add_devices().
659 eeh_pe_state_mark(pe, EEH_PE_KEEP);
660 if (bus) {
661 if (pe->type & EEH_PE_VF) {
662 eeh_pe_dev_traverse(pe, eeh_rmv_device, NULL);
663 } else {
664 pci_lock_rescan_remove();
665 pci_hp_remove_devices(bus);
666 pci_unlock_rescan_remove();
668 } else if (frozen_bus) {
669 eeh_pe_dev_traverse(pe, eeh_rmv_device, rmv_data);
673 * Reset the pci controller. (Asserts RST#; resets config space).
674 * Reconfigure bridges and devices. Don't try to bring the system
675 * up if the reset failed for some reason.
677 * During the reset, it's very dangerous to have uncontrolled PCI
678 * config accesses. So we prefer to block them. However, controlled
679 * PCI config accesses initiated from EEH itself are allowed.
681 rc = eeh_reset_pe(pe);
682 if (rc)
683 return rc;
685 pci_lock_rescan_remove();
687 /* Restore PE */
688 eeh_ops->configure_bridge(pe);
689 eeh_pe_restore_bars(pe);
691 /* Clear frozen state */
692 rc = eeh_clear_pe_frozen_state(pe, false);
693 if (rc) {
694 pci_unlock_rescan_remove();
695 return rc;
698 /* Give the system 5 seconds to finish running the user-space
699 * hotplug shutdown scripts, e.g. ifdown for ethernet. Yes,
700 * this is a hack, but if we don't do this, and try to bring
701 * the device up before the scripts have taken it down,
702 * potentially weird things happen.
704 if (bus) {
705 pr_info("EEH: Sleep 5s ahead of complete hotplug\n");
706 ssleep(5);
709 * The EEH device is still connected with its parent
710 * PE. We should disconnect it so the binding can be
711 * rebuilt when adding PCI devices.
713 edev = list_first_entry(&pe->edevs, struct eeh_dev, list);
714 eeh_pe_traverse(pe, eeh_pe_detach_dev, NULL);
715 if (pe->type & EEH_PE_VF) {
716 eeh_add_virt_device(edev, NULL);
717 } else {
718 eeh_pe_state_clear(pe, EEH_PE_PRI_BUS);
719 pci_hp_add_devices(bus);
721 } else if (frozen_bus && rmv_data->removed) {
722 pr_info("EEH: Sleep 5s ahead of partial hotplug\n");
723 ssleep(5);
725 edev = list_first_entry(&pe->edevs, struct eeh_dev, list);
726 eeh_pe_traverse(pe, eeh_pe_detach_dev, NULL);
727 if (pe->type & EEH_PE_VF)
728 eeh_add_virt_device(edev, NULL);
729 else
730 pci_hp_add_devices(frozen_bus);
732 eeh_pe_state_clear(pe, EEH_PE_KEEP);
734 pe->tstamp = tstamp;
735 pe->freeze_count = cnt;
737 pci_unlock_rescan_remove();
738 return 0;
741 /* The longest amount of time to wait for a pci device
742 * to come back on line, in seconds.
744 #define MAX_WAIT_FOR_RECOVERY 300
746 static bool eeh_handle_normal_event(struct eeh_pe *pe)
748 struct pci_bus *frozen_bus;
749 struct eeh_dev *edev, *tmp;
750 int rc = 0;
751 enum pci_ers_result result = PCI_ERS_RESULT_NONE;
752 struct eeh_rmv_data rmv_data = {LIST_HEAD_INIT(rmv_data.edev_list), 0};
754 frozen_bus = eeh_pe_bus_get(pe);
755 if (!frozen_bus) {
756 pr_err("%s: Cannot find PCI bus for PHB#%d-PE#%x\n",
757 __func__, pe->phb->global_number, pe->addr);
758 return false;
761 eeh_pe_update_time_stamp(pe);
762 pe->freeze_count++;
763 if (pe->freeze_count > eeh_max_freezes)
764 goto excess_failures;
765 pr_warn("EEH: This PCI device has failed %d times in the last hour\n",
766 pe->freeze_count);
768 /* Walk the various device drivers attached to this slot through
769 * a reset sequence, giving each an opportunity to do what it needs
770 * to accomplish the reset. Each child gets a report of the
771 * status ... if any child can't handle the reset, then the entire
772 * slot is dlpar removed and added.
774 * When the PHB is fenced, we have to issue a reset to recover from
775 * the error. Override the result if necessary to have partially
776 * hotplug for this case.
778 pr_info("EEH: Notify device drivers to shutdown\n");
779 eeh_pe_dev_traverse(pe, eeh_report_error, &result);
780 if ((pe->type & EEH_PE_PHB) &&
781 result != PCI_ERS_RESULT_NONE &&
782 result != PCI_ERS_RESULT_NEED_RESET)
783 result = PCI_ERS_RESULT_NEED_RESET;
785 /* Get the current PCI slot state. This can take a long time,
786 * sometimes over 300 seconds for certain systems.
788 rc = eeh_ops->wait_state(pe, MAX_WAIT_FOR_RECOVERY*1000);
789 if (rc < 0 || rc == EEH_STATE_NOT_SUPPORT) {
790 pr_warn("EEH: Permanent failure\n");
791 goto hard_fail;
794 /* Since rtas may enable MMIO when posting the error log,
795 * don't post the error log until after all dev drivers
796 * have been informed.
798 pr_info("EEH: Collect temporary log\n");
799 eeh_slot_error_detail(pe, EEH_LOG_TEMP);
801 /* If all device drivers were EEH-unaware, then shut
802 * down all of the device drivers, and hope they
803 * go down willingly, without panicing the system.
805 if (result == PCI_ERS_RESULT_NONE) {
806 pr_info("EEH: Reset with hotplug activity\n");
807 rc = eeh_reset_device(pe, frozen_bus, NULL);
808 if (rc) {
809 pr_warn("%s: Unable to reset, err=%d\n",
810 __func__, rc);
811 goto hard_fail;
815 /* If all devices reported they can proceed, then re-enable MMIO */
816 if (result == PCI_ERS_RESULT_CAN_RECOVER) {
817 pr_info("EEH: Enable I/O for affected devices\n");
818 rc = eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
820 if (rc < 0)
821 goto hard_fail;
822 if (rc) {
823 result = PCI_ERS_RESULT_NEED_RESET;
824 } else {
825 pr_info("EEH: Notify device drivers to resume I/O\n");
826 eeh_pe_dev_traverse(pe, eeh_report_mmio_enabled, &result);
830 /* If all devices reported they can proceed, then re-enable DMA */
831 if (result == PCI_ERS_RESULT_CAN_RECOVER) {
832 pr_info("EEH: Enabled DMA for affected devices\n");
833 rc = eeh_pci_enable(pe, EEH_OPT_THAW_DMA);
835 if (rc < 0)
836 goto hard_fail;
837 if (rc) {
838 result = PCI_ERS_RESULT_NEED_RESET;
839 } else {
841 * We didn't do PE reset for the case. The PE
842 * is still in frozen state. Clear it before
843 * resuming the PE.
845 eeh_pe_state_clear(pe, EEH_PE_ISOLATED);
846 result = PCI_ERS_RESULT_RECOVERED;
850 /* If any device has a hard failure, then shut off everything. */
851 if (result == PCI_ERS_RESULT_DISCONNECT) {
852 pr_warn("EEH: Device driver gave up\n");
853 goto hard_fail;
856 /* If any device called out for a reset, then reset the slot */
857 if (result == PCI_ERS_RESULT_NEED_RESET) {
858 pr_info("EEH: Reset without hotplug activity\n");
859 rc = eeh_reset_device(pe, NULL, &rmv_data);
860 if (rc) {
861 pr_warn("%s: Cannot reset, err=%d\n",
862 __func__, rc);
863 goto hard_fail;
866 pr_info("EEH: Notify device drivers "
867 "the completion of reset\n");
868 result = PCI_ERS_RESULT_NONE;
869 eeh_pe_dev_traverse(pe, eeh_report_reset, &result);
872 /* All devices should claim they have recovered by now. */
873 if ((result != PCI_ERS_RESULT_RECOVERED) &&
874 (result != PCI_ERS_RESULT_NONE)) {
875 pr_warn("EEH: Not recovered\n");
876 goto hard_fail;
880 * For those hot removed VFs, we should add back them after PF get
881 * recovered properly.
883 list_for_each_entry_safe(edev, tmp, &rmv_data.edev_list, rmv_list) {
884 eeh_add_virt_device(edev, NULL);
885 list_del(&edev->rmv_list);
888 /* Tell all device drivers that they can resume operations */
889 pr_info("EEH: Notify device driver to resume\n");
890 eeh_pe_dev_traverse(pe, eeh_report_resume, NULL);
892 return false;
894 excess_failures:
896 * About 90% of all real-life EEH failures in the field
897 * are due to poorly seated PCI cards. Only 10% or so are
898 * due to actual, failed cards.
900 pr_err("EEH: PHB#%d-PE#%x has failed %d times in the\n"
901 "last hour and has been permanently disabled.\n"
902 "Please try reseating or replacing it.\n",
903 pe->phb->global_number, pe->addr,
904 pe->freeze_count);
905 goto perm_error;
907 hard_fail:
908 pr_err("EEH: Unable to recover from failure from PHB#%d-PE#%x.\n"
909 "Please try reseating or replacing it\n",
910 pe->phb->global_number, pe->addr);
912 perm_error:
913 eeh_slot_error_detail(pe, EEH_LOG_PERM);
915 /* Notify all devices that they're about to go down. */
916 eeh_pe_dev_traverse(pe, eeh_report_failure, NULL);
918 /* Mark the PE to be removed permanently */
919 eeh_pe_state_mark(pe, EEH_PE_REMOVED);
922 * Shut down the device drivers for good. We mark
923 * all removed devices correctly to avoid access
924 * the their PCI config any more.
926 if (frozen_bus) {
927 if (pe->type & EEH_PE_VF) {
928 eeh_pe_dev_traverse(pe, eeh_rmv_device, NULL);
929 eeh_pe_dev_mode_mark(pe, EEH_DEV_REMOVED);
930 } else {
931 eeh_pe_state_clear(pe, EEH_PE_PRI_BUS);
932 eeh_pe_dev_mode_mark(pe, EEH_DEV_REMOVED);
934 pci_lock_rescan_remove();
935 pci_hp_remove_devices(frozen_bus);
936 pci_unlock_rescan_remove();
938 /* The passed PE should no longer be used */
939 return true;
942 return false;
945 static void eeh_handle_special_event(void)
947 struct eeh_pe *pe, *phb_pe;
948 struct pci_bus *bus;
949 struct pci_controller *hose;
950 unsigned long flags;
951 int rc;
954 do {
955 rc = eeh_ops->next_error(&pe);
957 switch (rc) {
958 case EEH_NEXT_ERR_DEAD_IOC:
959 /* Mark all PHBs in dead state */
960 eeh_serialize_lock(&flags);
962 /* Purge all events */
963 eeh_remove_event(NULL, true);
965 list_for_each_entry(hose, &hose_list, list_node) {
966 phb_pe = eeh_phb_pe_get(hose);
967 if (!phb_pe) continue;
969 eeh_pe_state_mark(phb_pe, EEH_PE_ISOLATED);
972 eeh_serialize_unlock(flags);
974 break;
975 case EEH_NEXT_ERR_FROZEN_PE:
976 case EEH_NEXT_ERR_FENCED_PHB:
977 case EEH_NEXT_ERR_DEAD_PHB:
978 /* Mark the PE in fenced state */
979 eeh_serialize_lock(&flags);
981 /* Purge all events of the PHB */
982 eeh_remove_event(pe, true);
984 if (rc == EEH_NEXT_ERR_DEAD_PHB)
985 eeh_pe_state_mark(pe, EEH_PE_ISOLATED);
986 else
987 eeh_pe_state_mark(pe,
988 EEH_PE_ISOLATED | EEH_PE_RECOVERING);
990 eeh_serialize_unlock(flags);
992 break;
993 case EEH_NEXT_ERR_NONE:
994 return;
995 default:
996 pr_warn("%s: Invalid value %d from next_error()\n",
997 __func__, rc);
998 return;
1002 * For fenced PHB and frozen PE, it's handled as normal
1003 * event. We have to remove the affected PHBs for dead
1004 * PHB and IOC
1006 if (rc == EEH_NEXT_ERR_FROZEN_PE ||
1007 rc == EEH_NEXT_ERR_FENCED_PHB) {
1009 * eeh_handle_normal_event() can make the PE stale if it
1010 * determines that the PE cannot possibly be recovered.
1011 * Don't modify the PE state if that's the case.
1013 if (eeh_handle_normal_event(pe))
1014 continue;
1016 eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
1017 } else {
1018 pci_lock_rescan_remove();
1019 list_for_each_entry(hose, &hose_list, list_node) {
1020 phb_pe = eeh_phb_pe_get(hose);
1021 if (!phb_pe ||
1022 !(phb_pe->state & EEH_PE_ISOLATED) ||
1023 (phb_pe->state & EEH_PE_RECOVERING))
1024 continue;
1026 /* Notify all devices to be down */
1027 eeh_pe_state_clear(pe, EEH_PE_PRI_BUS);
1028 eeh_pe_dev_traverse(pe,
1029 eeh_report_failure, NULL);
1030 bus = eeh_pe_bus_get(phb_pe);
1031 if (!bus) {
1032 pr_err("%s: Cannot find PCI bus for "
1033 "PHB#%d-PE#%x\n",
1034 __func__,
1035 pe->phb->global_number,
1036 pe->addr);
1037 break;
1039 pci_hp_remove_devices(bus);
1041 pci_unlock_rescan_remove();
1045 * If we have detected dead IOC, we needn't proceed
1046 * any more since all PHBs would have been removed
1048 if (rc == EEH_NEXT_ERR_DEAD_IOC)
1049 break;
1050 } while (rc != EEH_NEXT_ERR_NONE);
1054 * eeh_handle_event - Reset a PCI device after hard lockup.
1055 * @pe: EEH PE
1057 * While PHB detects address or data parity errors on particular PCI
1058 * slot, the associated PE will be frozen. Besides, DMA's occurring
1059 * to wild addresses (which usually happen due to bugs in device
1060 * drivers or in PCI adapter firmware) can cause EEH error. #SERR,
1061 * #PERR or other misc PCI-related errors also can trigger EEH errors.
1063 * Recovery process consists of unplugging the device driver (which
1064 * generated hotplug events to userspace), then issuing a PCI #RST to
1065 * the device, then reconfiguring the PCI config space for all bridges
1066 * & devices under this slot, and then finally restarting the device
1067 * drivers (which cause a second set of hotplug events to go out to
1068 * userspace).
1070 void eeh_handle_event(struct eeh_pe *pe)
1072 if (pe)
1073 eeh_handle_normal_event(pe);
1074 else
1075 eeh_handle_special_event();