]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - arch/powerpc/kernel/eeh_driver.c
powerpc/eeh: Fix race with driver un/bind
[mirror_ubuntu-bionic-kernel.git] / arch / powerpc / kernel / eeh_driver.c
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
5 *
6 * All rights reserved.
7 *
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.
12 *
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.
18 *
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.
22 *
23 * Send comments and feedback to Linas Vepstas <linas@austin.ibm.com>
24 */
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>
36
37 struct eeh_rmv_data {
38 struct list_head edev_list;
39 int removed;
40 };
41
42 /**
43 * eeh_pcid_name - Retrieve name of PCI device driver
44 * @pdev: PCI device
45 *
46 * This routine is used to retrieve the name of PCI device driver
47 * if that's valid.
48 */
49 static inline const char *eeh_pcid_name(struct pci_dev *pdev)
50 {
51 if (pdev && pdev->dev.driver)
52 return pdev->dev.driver->name;
53 return "";
54 }
55
56 /**
57 * eeh_pcid_get - Get the PCI device driver
58 * @pdev: PCI device
59 *
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.
64 */
65 static inline struct pci_driver *eeh_pcid_get(struct pci_dev *pdev)
66 {
67 if (!pdev || !pdev->driver)
68 return NULL;
69
70 if (!try_module_get(pdev->driver->driver.owner))
71 return NULL;
72
73 return pdev->driver;
74 }
75
76 /**
77 * eeh_pcid_put - Dereference on the PCI device driver
78 * @pdev: PCI device
79 *
80 * The function is called to do dereference on the PCI device
81 * driver of the indicated PCI device.
82 */
83 static inline void eeh_pcid_put(struct pci_dev *pdev)
84 {
85 if (!pdev || !pdev->driver)
86 return;
87
88 module_put(pdev->driver->driver.owner);
89 }
90
91 /**
92 * eeh_disable_irq - Disable interrupt for the recovering device
93 * @dev: PCI device
94 *
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.
100 */
101 static void eeh_disable_irq(struct pci_dev *dev)
102 {
103 struct eeh_dev *edev = pci_dev_to_eeh_dev(dev);
104
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.
108 */
109 if (dev->msi_enabled || dev->msix_enabled)
110 return;
111
112 if (!irq_has_action(dev->irq))
113 return;
114
115 edev->mode |= EEH_DEV_IRQ_DISABLED;
116 disable_irq_nosync(dev->irq);
117 }
118
119 /**
120 * eeh_enable_irq - Enable interrupt for the recovering device
121 * @dev: PCI device
122 *
123 * This routine must be called to enable interrupt while failed
124 * device could be resumed.
125 */
126 static void eeh_enable_irq(struct pci_dev *dev)
127 {
128 struct eeh_dev *edev = pci_dev_to_eeh_dev(dev);
129
130 if ((edev->mode) & EEH_DEV_IRQ_DISABLED) {
131 edev->mode &= ~EEH_DEV_IRQ_DISABLED;
132 /*
133 * FIXME !!!!!
134 *
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.
140 *
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.
145 *
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.
149 *
150 * tglx
151 */
152 if (irqd_irq_disabled(irq_get_irq_data(dev->irq)))
153 enable_irq(dev->irq);
154 }
155 }
156
157 static bool eeh_dev_removed(struct eeh_dev *edev)
158 {
159 /* EEH device removed ? */
160 if (!edev || (edev->mode & EEH_DEV_REMOVED))
161 return true;
162
163 return false;
164 }
165
166 static void *eeh_dev_save_state(void *data, void *userdata)
167 {
168 struct eeh_dev *edev = data;
169 struct pci_dev *pdev;
170
171 if (!edev)
172 return NULL;
173
174 /*
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.
180 */
181 if (edev->pe && (edev->pe->state & EEH_PE_CFG_RESTRICTED))
182 return NULL;
183
184 pdev = eeh_dev_to_pci_dev(edev);
185 if (!pdev)
186 return NULL;
187
188 pci_save_state(pdev);
189 return NULL;
190 }
191
192 /**
193 * eeh_report_error - Report pci error to each device driver
194 * @data: eeh device
195 * @userdata: return value
196 *
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".
200 */
201 static void *eeh_report_error(void *data, void *userdata)
202 {
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;
207
208 if (!dev || eeh_dev_removed(edev) || eeh_pe_passed(edev->pe))
209 return NULL;
210
211 device_lock(&dev->dev);
212 dev->error_state = pci_channel_io_frozen;
213
214 driver = eeh_pcid_get(dev);
215 if (!driver) goto out_no_dev;
216
217 eeh_disable_irq(dev);
218
219 if (!driver->err_handler ||
220 !driver->err_handler->error_detected)
221 goto out;
222
223 rc = driver->err_handler->error_detected(dev, pci_channel_io_frozen);
224
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;
228
229 edev->in_error = true;
230 out:
231 eeh_pcid_put(dev);
232 out_no_dev:
233 device_unlock(&dev->dev);
234 return NULL;
235 }
236
237 /**
238 * eeh_report_mmio_enabled - Tell drivers that MMIO has been enabled
239 * @data: eeh device
240 * @userdata: return value
241 *
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".
245 */
246 static void *eeh_report_mmio_enabled(void *data, void *userdata)
247 {
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;
252
253 if (!dev || eeh_dev_removed(edev) || eeh_pe_passed(edev->pe))
254 return NULL;
255
256 device_lock(&dev->dev);
257 driver = eeh_pcid_get(dev);
258 if (!driver) goto out_no_dev;
259
260 if (!driver->err_handler ||
261 !driver->err_handler->mmio_enabled ||
262 (edev->mode & EEH_DEV_NO_HANDLER))
263 goto out;
264
265 rc = driver->err_handler->mmio_enabled(dev);
266
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;
270
271 out:
272 eeh_pcid_put(dev);
273 out_no_dev:
274 device_unlock(&dev->dev);
275 return NULL;
276 }
277
278 /**
279 * eeh_report_reset - Tell device that slot has been reset
280 * @data: eeh device
281 * @userdata: return value
282 *
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.
287 */
288 static void *eeh_report_reset(void *data, void *userdata)
289 {
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;
294
295 if (!dev || eeh_dev_removed(edev) || eeh_pe_passed(edev->pe))
296 return NULL;
297
298 device_lock(&dev->dev);
299 dev->error_state = pci_channel_io_normal;
300
301 driver = eeh_pcid_get(dev);
302 if (!driver) goto out_no_dev;
303
304 eeh_enable_irq(dev);
305
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;
311
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;
317
318 out:
319 eeh_pcid_put(dev);
320 out_no_dev:
321 device_unlock(&dev->dev);
322 return NULL;
323 }
324
325 static void *eeh_dev_restore_state(void *data, void *userdata)
326 {
327 struct eeh_dev *edev = data;
328 struct pci_dev *pdev;
329
330 if (!edev)
331 return NULL;
332
333 /*
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.
338 */
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);
342
343 return NULL;
344 }
345
346 pdev = eeh_dev_to_pci_dev(edev);
347 if (!pdev)
348 return NULL;
349
350 pci_restore_state(pdev);
351 return NULL;
352 }
353
354 /**
355 * eeh_report_resume - Tell device to resume normal operations
356 * @data: eeh device
357 * @userdata: return value
358 *
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.
362 */
363 static void *eeh_report_resume(void *data, void *userdata)
364 {
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;
369
370 if (!dev || eeh_dev_removed(edev) || eeh_pe_passed(edev->pe))
371 return NULL;
372
373 device_lock(&dev->dev);
374 dev->error_state = pci_channel_io_normal;
375
376 driver = eeh_pcid_get(dev);
377 if (!driver) goto out_no_dev;
378
379 was_in_error = edev->in_error;
380 edev->in_error = false;
381 eeh_enable_irq(dev);
382
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;
388 }
389
390 driver->err_handler->resume(dev);
391
392 out:
393 eeh_pcid_put(dev);
394 out_no_dev:
395 device_unlock(&dev->dev);
396 return NULL;
397 }
398
399 /**
400 * eeh_report_failure - Tell device driver that device is dead.
401 * @data: eeh device
402 * @userdata: return value
403 *
404 * This informs the device driver that the device is permanently
405 * dead, and that no further recovery attempts will be made on it.
406 */
407 static void *eeh_report_failure(void *data, void *userdata)
408 {
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;
412
413 if (!dev || eeh_dev_removed(edev) || eeh_pe_passed(edev->pe))
414 return NULL;
415
416 device_lock(&dev->dev);
417 dev->error_state = pci_channel_io_perm_failure;
418
419 driver = eeh_pcid_get(dev);
420 if (!driver) goto out_no_dev;
421
422 eeh_disable_irq(dev);
423
424 if (!driver->err_handler ||
425 !driver->err_handler->error_detected)
426 goto out;
427
428 driver->err_handler->error_detected(dev, pci_channel_io_perm_failure);
429
430 out:
431 eeh_pcid_put(dev);
432 out_no_dev:
433 device_unlock(&dev->dev);
434 return NULL;
435 }
436
437 static void *eeh_add_virt_device(void *data, void *userdata)
438 {
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);
443
444 if (!(edev->physfn)) {
445 pr_warn("%s: EEH dev %04x:%02x:%02x.%01x not for VF\n",
446 __func__, pdn->phb->global_number, pdn->busno,
447 PCI_SLOT(pdn->devfn), PCI_FUNC(pdn->devfn));
448 return NULL;
449 }
450
451 driver = eeh_pcid_get(dev);
452 if (driver) {
453 eeh_pcid_put(dev);
454 if (driver->err_handler)
455 return NULL;
456 }
457
458 #ifdef CONFIG_PPC_POWERNV
459 pci_iov_add_virtfn(edev->physfn, pdn->vf_index);
460 #endif
461 return NULL;
462 }
463
464 static void *eeh_rmv_device(void *data, void *userdata)
465 {
466 struct pci_driver *driver;
467 struct eeh_dev *edev = (struct eeh_dev *)data;
468 struct pci_dev *dev = eeh_dev_to_pci_dev(edev);
469 struct eeh_rmv_data *rmv_data = (struct eeh_rmv_data *)userdata;
470 int *removed = rmv_data ? &rmv_data->removed : NULL;
471
472 /*
473 * Actually, we should remove the PCI bridges as well.
474 * However, that's lots of complexity to do that,
475 * particularly some of devices under the bridge might
476 * support EEH. So we just care about PCI devices for
477 * simplicity here.
478 */
479 if (!dev || (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE))
480 return NULL;
481
482 /*
483 * We rely on count-based pcibios_release_device() to
484 * detach permanently offlined PEs. Unfortunately, that's
485 * not reliable enough. We might have the permanently
486 * offlined PEs attached, but we needn't take care of
487 * them and their child devices.
488 */
489 if (eeh_dev_removed(edev))
490 return NULL;
491
492 driver = eeh_pcid_get(dev);
493 if (driver) {
494 eeh_pcid_put(dev);
495 if (removed &&
496 eeh_pe_passed(edev->pe))
497 return NULL;
498 if (removed &&
499 driver->err_handler &&
500 driver->err_handler->error_detected &&
501 driver->err_handler->slot_reset)
502 return NULL;
503 }
504
505 /* Remove it from PCI subsystem */
506 pr_debug("EEH: Removing %s without EEH sensitive driver\n",
507 pci_name(dev));
508 edev->bus = dev->bus;
509 edev->mode |= EEH_DEV_DISCONNECTED;
510 if (removed)
511 (*removed)++;
512
513 if (edev->physfn) {
514 #ifdef CONFIG_PPC_POWERNV
515 struct pci_dn *pdn = eeh_dev_to_pdn(edev);
516
517 pci_iov_remove_virtfn(edev->physfn, pdn->vf_index);
518 edev->pdev = NULL;
519
520 /*
521 * We have to set the VF PE number to invalid one, which is
522 * required to plug the VF successfully.
523 */
524 pdn->pe_number = IODA_INVALID_PE;
525 #endif
526 if (rmv_data)
527 list_add(&edev->rmv_list, &rmv_data->edev_list);
528 } else {
529 pci_lock_rescan_remove();
530 pci_stop_and_remove_bus_device(dev);
531 pci_unlock_rescan_remove();
532 }
533
534 return NULL;
535 }
536
537 static void *eeh_pe_detach_dev(void *data, void *userdata)
538 {
539 struct eeh_pe *pe = (struct eeh_pe *)data;
540 struct eeh_dev *edev, *tmp;
541
542 eeh_pe_for_each_dev(pe, edev, tmp) {
543 if (!(edev->mode & EEH_DEV_DISCONNECTED))
544 continue;
545
546 edev->mode &= ~(EEH_DEV_DISCONNECTED | EEH_DEV_IRQ_DISABLED);
547 eeh_rmv_from_parent_pe(edev);
548 }
549
550 return NULL;
551 }
552
553 /*
554 * Explicitly clear PE's frozen state for PowerNV where
555 * we have frozen PE until BAR restore is completed. It's
556 * harmless to clear it for pSeries. To be consistent with
557 * PE reset (for 3 times), we try to clear the frozen state
558 * for 3 times as well.
559 */
560 static void *__eeh_clear_pe_frozen_state(void *data, void *flag)
561 {
562 struct eeh_pe *pe = (struct eeh_pe *)data;
563 bool clear_sw_state = *(bool *)flag;
564 int i, rc = 1;
565
566 for (i = 0; rc && i < 3; i++)
567 rc = eeh_unfreeze_pe(pe, clear_sw_state);
568
569 /* Stop immediately on any errors */
570 if (rc) {
571 pr_warn("%s: Failure %d unfreezing PHB#%x-PE#%x\n",
572 __func__, rc, pe->phb->global_number, pe->addr);
573 return (void *)pe;
574 }
575
576 return NULL;
577 }
578
579 static int eeh_clear_pe_frozen_state(struct eeh_pe *pe,
580 bool clear_sw_state)
581 {
582 void *rc;
583
584 rc = eeh_pe_traverse(pe, __eeh_clear_pe_frozen_state, &clear_sw_state);
585 if (!rc)
586 eeh_pe_state_clear(pe, EEH_PE_ISOLATED);
587
588 return rc ? -EIO : 0;
589 }
590
591 int eeh_pe_reset_and_recover(struct eeh_pe *pe)
592 {
593 int ret;
594
595 /* Bail if the PE is being recovered */
596 if (pe->state & EEH_PE_RECOVERING)
597 return 0;
598
599 /* Put the PE into recovery mode */
600 eeh_pe_state_mark(pe, EEH_PE_RECOVERING);
601
602 /* Save states */
603 eeh_pe_dev_traverse(pe, eeh_dev_save_state, NULL);
604
605 /* Issue reset */
606 ret = eeh_pe_reset_full(pe);
607 if (ret) {
608 eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
609 return ret;
610 }
611
612 /* Unfreeze the PE */
613 ret = eeh_clear_pe_frozen_state(pe, true);
614 if (ret) {
615 eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
616 return ret;
617 }
618
619 /* Restore device state */
620 eeh_pe_dev_traverse(pe, eeh_dev_restore_state, NULL);
621
622 /* Clear recovery mode */
623 eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
624
625 return 0;
626 }
627
628 /**
629 * eeh_reset_device - Perform actual reset of a pci slot
630 * @pe: EEH PE
631 * @bus: PCI bus corresponding to the isolcated slot
632 *
633 * This routine must be called to do reset on the indicated PE.
634 * During the reset, udev might be invoked because those affected
635 * PCI devices will be removed and then added.
636 */
637 static int eeh_reset_device(struct eeh_pe *pe, struct pci_bus *bus,
638 struct eeh_rmv_data *rmv_data)
639 {
640 struct pci_bus *frozen_bus = eeh_pe_bus_get(pe);
641 time64_t tstamp;
642 int cnt, rc;
643 struct eeh_dev *edev;
644
645 /* pcibios will clear the counter; save the value */
646 cnt = pe->freeze_count;
647 tstamp = pe->tstamp;
648
649 /*
650 * We don't remove the corresponding PE instances because
651 * we need the information afterwords. The attached EEH
652 * devices are expected to be attached soon when calling
653 * into pci_hp_add_devices().
654 */
655 eeh_pe_state_mark(pe, EEH_PE_KEEP);
656 if (bus) {
657 if (pe->type & EEH_PE_VF) {
658 eeh_pe_dev_traverse(pe, eeh_rmv_device, NULL);
659 } else {
660 pci_lock_rescan_remove();
661 pci_hp_remove_devices(bus);
662 pci_unlock_rescan_remove();
663 }
664 } else if (frozen_bus) {
665 eeh_pe_dev_traverse(pe, eeh_rmv_device, rmv_data);
666 }
667
668 /*
669 * Reset the pci controller. (Asserts RST#; resets config space).
670 * Reconfigure bridges and devices. Don't try to bring the system
671 * up if the reset failed for some reason.
672 *
673 * During the reset, it's very dangerous to have uncontrolled PCI
674 * config accesses. So we prefer to block them. However, controlled
675 * PCI config accesses initiated from EEH itself are allowed.
676 */
677 rc = eeh_pe_reset_full(pe);
678 if (rc)
679 return rc;
680
681 pci_lock_rescan_remove();
682
683 /* Restore PE */
684 eeh_ops->configure_bridge(pe);
685 eeh_pe_restore_bars(pe);
686
687 /* Clear frozen state */
688 rc = eeh_clear_pe_frozen_state(pe, false);
689 if (rc) {
690 pci_unlock_rescan_remove();
691 return rc;
692 }
693
694 /* Give the system 5 seconds to finish running the user-space
695 * hotplug shutdown scripts, e.g. ifdown for ethernet. Yes,
696 * this is a hack, but if we don't do this, and try to bring
697 * the device up before the scripts have taken it down,
698 * potentially weird things happen.
699 */
700 if (bus) {
701 pr_info("EEH: Sleep 5s ahead of complete hotplug\n");
702 ssleep(5);
703
704 /*
705 * The EEH device is still connected with its parent
706 * PE. We should disconnect it so the binding can be
707 * rebuilt when adding PCI devices.
708 */
709 edev = list_first_entry(&pe->edevs, struct eeh_dev, list);
710 eeh_pe_traverse(pe, eeh_pe_detach_dev, NULL);
711 if (pe->type & EEH_PE_VF) {
712 eeh_add_virt_device(edev, NULL);
713 } else {
714 eeh_pe_state_clear(pe, EEH_PE_PRI_BUS);
715 pci_hp_add_devices(bus);
716 }
717 } else if (frozen_bus && rmv_data->removed) {
718 pr_info("EEH: Sleep 5s ahead of partial hotplug\n");
719 ssleep(5);
720
721 edev = list_first_entry(&pe->edevs, struct eeh_dev, list);
722 eeh_pe_traverse(pe, eeh_pe_detach_dev, NULL);
723 if (pe->type & EEH_PE_VF)
724 eeh_add_virt_device(edev, NULL);
725 else
726 pci_hp_add_devices(frozen_bus);
727 }
728 eeh_pe_state_clear(pe, EEH_PE_KEEP);
729
730 pe->tstamp = tstamp;
731 pe->freeze_count = cnt;
732
733 pci_unlock_rescan_remove();
734 return 0;
735 }
736
737 /* The longest amount of time to wait for a pci device
738 * to come back on line, in seconds.
739 */
740 #define MAX_WAIT_FOR_RECOVERY 300
741
742 /**
743 * eeh_handle_normal_event - Handle EEH events on a specific PE
744 * @pe: EEH PE
745 *
746 * Attempts to recover the given PE. If recovery fails or the PE has failed
747 * too many times, remove the PE.
748 *
749 * Returns true if @pe should no longer be used, else false.
750 */
751 static bool eeh_handle_normal_event(struct eeh_pe *pe)
752 {
753 struct pci_bus *frozen_bus;
754 struct eeh_dev *edev, *tmp;
755 int rc = 0;
756 enum pci_ers_result result = PCI_ERS_RESULT_NONE;
757 struct eeh_rmv_data rmv_data = {LIST_HEAD_INIT(rmv_data.edev_list), 0};
758
759 frozen_bus = eeh_pe_bus_get(pe);
760 if (!frozen_bus) {
761 pr_err("%s: Cannot find PCI bus for PHB#%x-PE#%x\n",
762 __func__, pe->phb->global_number, pe->addr);
763 return false;
764 }
765
766 eeh_pe_update_time_stamp(pe);
767 pe->freeze_count++;
768 if (pe->freeze_count > eeh_max_freezes) {
769 pr_err("EEH: PHB#%x-PE#%x has failed %d times in the\n"
770 "last hour and has been permanently disabled.\n",
771 pe->phb->global_number, pe->addr,
772 pe->freeze_count);
773 goto hard_fail;
774 }
775 pr_warn("EEH: This PCI device has failed %d times in the last hour\n",
776 pe->freeze_count);
777
778 /* Walk the various device drivers attached to this slot through
779 * a reset sequence, giving each an opportunity to do what it needs
780 * to accomplish the reset. Each child gets a report of the
781 * status ... if any child can't handle the reset, then the entire
782 * slot is dlpar removed and added.
783 *
784 * When the PHB is fenced, we have to issue a reset to recover from
785 * the error. Override the result if necessary to have partially
786 * hotplug for this case.
787 */
788 pr_info("EEH: Notify device drivers to shutdown\n");
789 eeh_pe_dev_traverse(pe, eeh_report_error, &result);
790 if ((pe->type & EEH_PE_PHB) &&
791 result != PCI_ERS_RESULT_NONE &&
792 result != PCI_ERS_RESULT_NEED_RESET)
793 result = PCI_ERS_RESULT_NEED_RESET;
794
795 /* Get the current PCI slot state. This can take a long time,
796 * sometimes over 300 seconds for certain systems.
797 */
798 rc = eeh_ops->wait_state(pe, MAX_WAIT_FOR_RECOVERY*1000);
799 if (rc < 0 || rc == EEH_STATE_NOT_SUPPORT) {
800 pr_warn("EEH: Permanent failure\n");
801 goto hard_fail;
802 }
803
804 /* Since rtas may enable MMIO when posting the error log,
805 * don't post the error log until after all dev drivers
806 * have been informed.
807 */
808 pr_info("EEH: Collect temporary log\n");
809 eeh_slot_error_detail(pe, EEH_LOG_TEMP);
810
811 /* If all device drivers were EEH-unaware, then shut
812 * down all of the device drivers, and hope they
813 * go down willingly, without panicing the system.
814 */
815 if (result == PCI_ERS_RESULT_NONE) {
816 pr_info("EEH: Reset with hotplug activity\n");
817 rc = eeh_reset_device(pe, frozen_bus, NULL);
818 if (rc) {
819 pr_warn("%s: Unable to reset, err=%d\n",
820 __func__, rc);
821 goto hard_fail;
822 }
823 }
824
825 /* If all devices reported they can proceed, then re-enable MMIO */
826 if (result == PCI_ERS_RESULT_CAN_RECOVER) {
827 pr_info("EEH: Enable I/O for affected devices\n");
828 rc = eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
829
830 if (rc < 0)
831 goto hard_fail;
832 if (rc) {
833 result = PCI_ERS_RESULT_NEED_RESET;
834 } else {
835 pr_info("EEH: Notify device drivers to resume I/O\n");
836 eeh_pe_dev_traverse(pe, eeh_report_mmio_enabled, &result);
837 }
838 }
839
840 /* If all devices reported they can proceed, then re-enable DMA */
841 if (result == PCI_ERS_RESULT_CAN_RECOVER) {
842 pr_info("EEH: Enabled DMA for affected devices\n");
843 rc = eeh_pci_enable(pe, EEH_OPT_THAW_DMA);
844
845 if (rc < 0)
846 goto hard_fail;
847 if (rc) {
848 result = PCI_ERS_RESULT_NEED_RESET;
849 } else {
850 /*
851 * We didn't do PE reset for the case. The PE
852 * is still in frozen state. Clear it before
853 * resuming the PE.
854 */
855 eeh_pe_state_clear(pe, EEH_PE_ISOLATED);
856 result = PCI_ERS_RESULT_RECOVERED;
857 }
858 }
859
860 /* If any device has a hard failure, then shut off everything. */
861 if (result == PCI_ERS_RESULT_DISCONNECT) {
862 pr_warn("EEH: Device driver gave up\n");
863 goto hard_fail;
864 }
865
866 /* If any device called out for a reset, then reset the slot */
867 if (result == PCI_ERS_RESULT_NEED_RESET) {
868 pr_info("EEH: Reset without hotplug activity\n");
869 rc = eeh_reset_device(pe, NULL, &rmv_data);
870 if (rc) {
871 pr_warn("%s: Cannot reset, err=%d\n",
872 __func__, rc);
873 goto hard_fail;
874 }
875
876 pr_info("EEH: Notify device drivers "
877 "the completion of reset\n");
878 result = PCI_ERS_RESULT_NONE;
879 eeh_pe_dev_traverse(pe, eeh_report_reset, &result);
880 }
881
882 /* All devices should claim they have recovered by now. */
883 if ((result != PCI_ERS_RESULT_RECOVERED) &&
884 (result != PCI_ERS_RESULT_NONE)) {
885 pr_warn("EEH: Not recovered\n");
886 goto hard_fail;
887 }
888
889 /*
890 * For those hot removed VFs, we should add back them after PF get
891 * recovered properly.
892 */
893 list_for_each_entry_safe(edev, tmp, &rmv_data.edev_list, rmv_list) {
894 eeh_add_virt_device(edev, NULL);
895 list_del(&edev->rmv_list);
896 }
897
898 /* Tell all device drivers that they can resume operations */
899 pr_info("EEH: Notify device driver to resume\n");
900 eeh_pe_dev_traverse(pe, eeh_report_resume, NULL);
901
902 return false;
903
904 hard_fail:
905 /*
906 * About 90% of all real-life EEH failures in the field
907 * are due to poorly seated PCI cards. Only 10% or so are
908 * due to actual, failed cards.
909 */
910 pr_err("EEH: Unable to recover from failure from PHB#%x-PE#%x.\n"
911 "Please try reseating or replacing it\n",
912 pe->phb->global_number, pe->addr);
913
914 eeh_slot_error_detail(pe, EEH_LOG_PERM);
915
916 /* Notify all devices that they're about to go down. */
917 eeh_pe_dev_traverse(pe, eeh_report_failure, NULL);
918
919 /* Mark the PE to be removed permanently */
920 eeh_pe_state_mark(pe, EEH_PE_REMOVED);
921
922 /*
923 * Shut down the device drivers for good. We mark
924 * all removed devices correctly to avoid access
925 * the their PCI config any more.
926 */
927 if (frozen_bus) {
928 if (pe->type & EEH_PE_VF) {
929 eeh_pe_dev_traverse(pe, eeh_rmv_device, NULL);
930 eeh_pe_dev_mode_mark(pe, EEH_DEV_REMOVED);
931 } else {
932 eeh_pe_state_clear(pe, EEH_PE_PRI_BUS);
933 eeh_pe_dev_mode_mark(pe, EEH_DEV_REMOVED);
934
935 pci_lock_rescan_remove();
936 pci_hp_remove_devices(frozen_bus);
937 pci_unlock_rescan_remove();
938
939 /* The passed PE should no longer be used */
940 return true;
941 }
942 }
943 return false;
944 }
945
946 /**
947 * eeh_handle_special_event - Handle EEH events without a specific failing PE
948 *
949 * Called when an EEH event is detected but can't be narrowed down to a
950 * specific PE. Iterates through possible failures and handles them as
951 * necessary.
952 */
953 static void eeh_handle_special_event(void)
954 {
955 struct eeh_pe *pe, *phb_pe;
956 struct pci_bus *bus;
957 struct pci_controller *hose;
958 unsigned long flags;
959 int rc;
960
961
962 do {
963 rc = eeh_ops->next_error(&pe);
964
965 switch (rc) {
966 case EEH_NEXT_ERR_DEAD_IOC:
967 /* Mark all PHBs in dead state */
968 eeh_serialize_lock(&flags);
969
970 /* Purge all events */
971 eeh_remove_event(NULL, true);
972
973 list_for_each_entry(hose, &hose_list, list_node) {
974 phb_pe = eeh_phb_pe_get(hose);
975 if (!phb_pe) continue;
976
977 eeh_pe_state_mark(phb_pe, EEH_PE_ISOLATED);
978 }
979
980 eeh_serialize_unlock(flags);
981
982 break;
983 case EEH_NEXT_ERR_FROZEN_PE:
984 case EEH_NEXT_ERR_FENCED_PHB:
985 case EEH_NEXT_ERR_DEAD_PHB:
986 /* Mark the PE in fenced state */
987 eeh_serialize_lock(&flags);
988
989 /* Purge all events of the PHB */
990 eeh_remove_event(pe, true);
991
992 if (rc == EEH_NEXT_ERR_DEAD_PHB)
993 eeh_pe_state_mark(pe, EEH_PE_ISOLATED);
994 else
995 eeh_pe_state_mark(pe,
996 EEH_PE_ISOLATED | EEH_PE_RECOVERING);
997
998 eeh_serialize_unlock(flags);
999
1000 break;
1001 case EEH_NEXT_ERR_NONE:
1002 return;
1003 default:
1004 pr_warn("%s: Invalid value %d from next_error()\n",
1005 __func__, rc);
1006 return;
1007 }
1008
1009 /*
1010 * For fenced PHB and frozen PE, it's handled as normal
1011 * event. We have to remove the affected PHBs for dead
1012 * PHB and IOC
1013 */
1014 if (rc == EEH_NEXT_ERR_FROZEN_PE ||
1015 rc == EEH_NEXT_ERR_FENCED_PHB) {
1016 /*
1017 * eeh_handle_normal_event() can make the PE stale if it
1018 * determines that the PE cannot possibly be recovered.
1019 * Don't modify the PE state if that's the case.
1020 */
1021 if (eeh_handle_normal_event(pe))
1022 continue;
1023
1024 eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
1025 } else {
1026 pci_lock_rescan_remove();
1027 list_for_each_entry(hose, &hose_list, list_node) {
1028 phb_pe = eeh_phb_pe_get(hose);
1029 if (!phb_pe ||
1030 !(phb_pe->state & EEH_PE_ISOLATED) ||
1031 (phb_pe->state & EEH_PE_RECOVERING))
1032 continue;
1033
1034 /* Notify all devices to be down */
1035 eeh_pe_state_clear(pe, EEH_PE_PRI_BUS);
1036 eeh_pe_dev_traverse(pe,
1037 eeh_report_failure, NULL);
1038 bus = eeh_pe_bus_get(phb_pe);
1039 if (!bus) {
1040 pr_err("%s: Cannot find PCI bus for "
1041 "PHB#%x-PE#%x\n",
1042 __func__,
1043 pe->phb->global_number,
1044 pe->addr);
1045 break;
1046 }
1047 pci_hp_remove_devices(bus);
1048 }
1049 pci_unlock_rescan_remove();
1050 }
1051
1052 /*
1053 * If we have detected dead IOC, we needn't proceed
1054 * any more since all PHBs would have been removed
1055 */
1056 if (rc == EEH_NEXT_ERR_DEAD_IOC)
1057 break;
1058 } while (rc != EEH_NEXT_ERR_NONE);
1059 }
1060
1061 /**
1062 * eeh_handle_event - Reset a PCI device after hard lockup.
1063 * @pe: EEH PE
1064 *
1065 * While PHB detects address or data parity errors on particular PCI
1066 * slot, the associated PE will be frozen. Besides, DMA's occurring
1067 * to wild addresses (which usually happen due to bugs in device
1068 * drivers or in PCI adapter firmware) can cause EEH error. #SERR,
1069 * #PERR or other misc PCI-related errors also can trigger EEH errors.
1070 *
1071 * Recovery process consists of unplugging the device driver (which
1072 * generated hotplug events to userspace), then issuing a PCI #RST to
1073 * the device, then reconfiguring the PCI config space for all bridges
1074 * & devices under this slot, and then finally restarting the device
1075 * drivers (which cause a second set of hotplug events to go out to
1076 * userspace).
1077 */
1078 void eeh_handle_event(struct eeh_pe *pe)
1079 {
1080 if (pe)
1081 eeh_handle_normal_event(pe);
1082 else
1083 eeh_handle_special_event();
1084 }