GNU Linux-libre 4.14.290-gnu1
[releases.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                 if (driver->err_handler) {
454                         eeh_pcid_put(dev);
455                         return NULL;
456                 }
457                 eeh_pcid_put(dev);
458         }
459
460 #ifdef CONFIG_PPC_POWERNV
461         pci_iov_add_virtfn(edev->physfn, pdn->vf_index, 0);
462 #endif
463         return NULL;
464 }
465
466 static void *eeh_rmv_device(void *data, void *userdata)
467 {
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;
473
474         /*
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.
480          */
481         if (!dev || (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE))
482                 return NULL;
483
484         /*
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.
490          */
491         if (eeh_dev_removed(edev))
492                 return NULL;
493
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;
504                         }
505                         eeh_pcid_put(dev);
506                 }
507         }
508
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)++;
516
517         if (edev->physfn) {
518 #ifdef CONFIG_PPC_POWERNV
519                 struct pci_dn *pdn = eeh_dev_to_pdn(edev);
520
521                 pci_iov_remove_virtfn(edev->physfn, pdn->vf_index, 0);
522                 edev->pdev = NULL;
523 #endif
524                 if (rmv_data)
525                         list_add(&edev->rmv_list, &rmv_data->edev_list);
526         } else {
527                 pci_lock_rescan_remove();
528                 pci_stop_and_remove_bus_device(dev);
529                 pci_unlock_rescan_remove();
530         }
531
532         return NULL;
533 }
534
535 static void *eeh_pe_detach_dev(void *data, void *userdata)
536 {
537         struct eeh_pe *pe = (struct eeh_pe *)data;
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_rmv_from_parent_pe(edev);
546         }
547
548         return NULL;
549 }
550
551 /*
552  * Explicitly clear PE's frozen state for PowerNV where
553  * we have frozen PE until BAR restore is completed. It's
554  * harmless to clear it for pSeries. To be consistent with
555  * PE reset (for 3 times), we try to clear the frozen state
556  * for 3 times as well.
557  */
558 static void *__eeh_clear_pe_frozen_state(void *data, void *flag)
559 {
560         struct eeh_pe *pe = (struct eeh_pe *)data;
561         bool clear_sw_state = *(bool *)flag;
562         int i, rc = 1;
563
564         for (i = 0; rc && i < 3; i++)
565                 rc = eeh_unfreeze_pe(pe, clear_sw_state);
566
567         /* Stop immediately on any errors */
568         if (rc) {
569                 pr_warn("%s: Failure %d unfreezing PHB#%x-PE#%x\n",
570                         __func__, rc, pe->phb->global_number, pe->addr);
571                 return (void *)pe;
572         }
573
574         return NULL;
575 }
576
577 static int eeh_clear_pe_frozen_state(struct eeh_pe *pe,
578                                      bool clear_sw_state)
579 {
580         void *rc;
581
582         rc = eeh_pe_traverse(pe, __eeh_clear_pe_frozen_state, &clear_sw_state);
583         if (!rc)
584                 eeh_pe_state_clear(pe, EEH_PE_ISOLATED);
585
586         return rc ? -EIO : 0;
587 }
588
589 int eeh_pe_reset_and_recover(struct eeh_pe *pe)
590 {
591         int ret;
592
593         /* Bail if the PE is being recovered */
594         if (pe->state & EEH_PE_RECOVERING)
595                 return 0;
596
597         /* Put the PE into recovery mode */
598         eeh_pe_state_mark(pe, EEH_PE_RECOVERING);
599
600         /* Save states */
601         eeh_pe_dev_traverse(pe, eeh_dev_save_state, NULL);
602
603         /* Issue reset */
604         ret = eeh_pe_reset_full(pe);
605         if (ret) {
606                 eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
607                 return ret;
608         }
609
610         /* Unfreeze the PE */
611         ret = eeh_clear_pe_frozen_state(pe, true);
612         if (ret) {
613                 eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
614                 return ret;
615         }
616
617         /* Restore device state */
618         eeh_pe_dev_traverse(pe, eeh_dev_restore_state, NULL);
619
620         /* Clear recovery mode */
621         eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
622
623         return 0;
624 }
625
626 /**
627  * eeh_reset_device - Perform actual reset of a pci slot
628  * @pe: EEH PE
629  * @bus: PCI bus corresponding to the isolcated slot
630  *
631  * This routine must be called to do reset on the indicated PE.
632  * During the reset, udev might be invoked because those affected
633  * PCI devices will be removed and then added.
634  */
635 static int eeh_reset_device(struct eeh_pe *pe, struct pci_bus *bus,
636                                 struct eeh_rmv_data *rmv_data)
637 {
638         struct pci_bus *frozen_bus = eeh_pe_bus_get(pe);
639         struct timeval tstamp;
640         int cnt, rc;
641         struct eeh_dev *edev;
642
643         /* pcibios will clear the counter; save the value */
644         cnt = pe->freeze_count;
645         tstamp = pe->tstamp;
646
647         /*
648          * We don't remove the corresponding PE instances because
649          * we need the information afterwords. The attached EEH
650          * devices are expected to be attached soon when calling
651          * into pci_hp_add_devices().
652          */
653         eeh_pe_state_mark(pe, EEH_PE_KEEP);
654         if (bus) {
655                 if (pe->type & EEH_PE_VF) {
656                         eeh_pe_dev_traverse(pe, eeh_rmv_device, NULL);
657                 } else {
658                         pci_lock_rescan_remove();
659                         pci_hp_remove_devices(bus);
660                         pci_unlock_rescan_remove();
661                 }
662         } else if (frozen_bus) {
663                 eeh_pe_dev_traverse(pe, eeh_rmv_device, rmv_data);
664         }
665
666         /*
667          * Reset the pci controller. (Asserts RST#; resets config space).
668          * Reconfigure bridges and devices. Don't try to bring the system
669          * up if the reset failed for some reason.
670          *
671          * During the reset, it's very dangerous to have uncontrolled PCI
672          * config accesses. So we prefer to block them. However, controlled
673          * PCI config accesses initiated from EEH itself are allowed.
674          */
675         rc = eeh_pe_reset_full(pe);
676         if (rc)
677                 return rc;
678
679         pci_lock_rescan_remove();
680
681         /* Restore PE */
682         eeh_ops->configure_bridge(pe);
683         eeh_pe_restore_bars(pe);
684
685         /* Clear frozen state */
686         rc = eeh_clear_pe_frozen_state(pe, false);
687         if (rc) {
688                 pci_unlock_rescan_remove();
689                 return rc;
690         }
691
692         /* Give the system 5 seconds to finish running the user-space
693          * hotplug shutdown scripts, e.g. ifdown for ethernet.  Yes,
694          * this is a hack, but if we don't do this, and try to bring
695          * the device up before the scripts have taken it down,
696          * potentially weird things happen.
697          */
698         if (bus) {
699                 pr_info("EEH: Sleep 5s ahead of complete hotplug\n");
700                 ssleep(5);
701
702                 /*
703                  * The EEH device is still connected with its parent
704                  * PE. We should disconnect it so the binding can be
705                  * rebuilt when adding PCI devices.
706                  */
707                 edev = list_first_entry(&pe->edevs, struct eeh_dev, list);
708                 eeh_pe_traverse(pe, eeh_pe_detach_dev, NULL);
709                 if (pe->type & EEH_PE_VF) {
710                         eeh_add_virt_device(edev, NULL);
711                 } else {
712                         eeh_pe_state_clear(pe, EEH_PE_PRI_BUS);
713                         pci_hp_add_devices(bus);
714                 }
715         } else if (frozen_bus && rmv_data->removed) {
716                 pr_info("EEH: Sleep 5s ahead of partial hotplug\n");
717                 ssleep(5);
718
719                 edev = list_first_entry(&pe->edevs, struct eeh_dev, list);
720                 eeh_pe_traverse(pe, eeh_pe_detach_dev, NULL);
721                 if (pe->type & EEH_PE_VF)
722                         eeh_add_virt_device(edev, NULL);
723                 else
724                         pci_hp_add_devices(frozen_bus);
725         }
726         eeh_pe_state_clear(pe, EEH_PE_KEEP);
727
728         pe->tstamp = tstamp;
729         pe->freeze_count = cnt;
730
731         pci_unlock_rescan_remove();
732         return 0;
733 }
734
735 /* The longest amount of time to wait for a pci device
736  * to come back on line, in seconds.
737  */
738 #define MAX_WAIT_FOR_RECOVERY 300
739
740 /**
741  * eeh_handle_normal_event - Handle EEH events on a specific PE
742  * @pe: EEH PE
743  *
744  * Attempts to recover the given PE.  If recovery fails or the PE has failed
745  * too many times, remove the PE.
746  *
747  * Returns true if @pe should no longer be used, else false.
748  */
749 static bool eeh_handle_normal_event(struct eeh_pe *pe)
750 {
751         struct pci_bus *frozen_bus;
752         struct eeh_dev *edev, *tmp;
753         int rc = 0;
754         enum pci_ers_result result = PCI_ERS_RESULT_NONE;
755         struct eeh_rmv_data rmv_data = {LIST_HEAD_INIT(rmv_data.edev_list), 0};
756
757         frozen_bus = eeh_pe_bus_get(pe);
758         if (!frozen_bus) {
759                 pr_err("%s: Cannot find PCI bus for PHB#%x-PE#%x\n",
760                         __func__, pe->phb->global_number, pe->addr);
761                 return false;
762         }
763
764         eeh_pe_update_time_stamp(pe);
765         pe->freeze_count++;
766         if (pe->freeze_count > eeh_max_freezes) {
767                 pr_err("EEH: PHB#%x-PE#%x has failed %d times in the\n"
768                        "last hour and has been permanently disabled.\n",
769                        pe->phb->global_number, pe->addr,
770                        pe->freeze_count);
771                 goto hard_fail;
772         }
773         pr_warn("EEH: This PCI device has failed %d times in the last hour\n",
774                 pe->freeze_count);
775
776         /* Walk the various device drivers attached to this slot through
777          * a reset sequence, giving each an opportunity to do what it needs
778          * to accomplish the reset.  Each child gets a report of the
779          * status ... if any child can't handle the reset, then the entire
780          * slot is dlpar removed and added.
781          *
782          * When the PHB is fenced, we have to issue a reset to recover from
783          * the error. Override the result if necessary to have partially
784          * hotplug for this case.
785          */
786         pr_info("EEH: Notify device drivers to shutdown\n");
787         eeh_pe_dev_traverse(pe, eeh_report_error, &result);
788         if ((pe->type & EEH_PE_PHB) &&
789             result != PCI_ERS_RESULT_NONE &&
790             result != PCI_ERS_RESULT_NEED_RESET)
791                 result = PCI_ERS_RESULT_NEED_RESET;
792
793         /* Get the current PCI slot state. This can take a long time,
794          * sometimes over 300 seconds for certain systems.
795          */
796         rc = eeh_ops->wait_state(pe, MAX_WAIT_FOR_RECOVERY*1000);
797         if (rc < 0 || rc == EEH_STATE_NOT_SUPPORT) {
798                 pr_warn("EEH: Permanent failure\n");
799                 goto hard_fail;
800         }
801
802         /* Since rtas may enable MMIO when posting the error log,
803          * don't post the error log until after all dev drivers
804          * have been informed.
805          */
806         pr_info("EEH: Collect temporary log\n");
807         eeh_slot_error_detail(pe, EEH_LOG_TEMP);
808
809         /* If all device drivers were EEH-unaware, then shut
810          * down all of the device drivers, and hope they
811          * go down willingly, without panicing the system.
812          */
813         if (result == PCI_ERS_RESULT_NONE) {
814                 pr_info("EEH: Reset with hotplug activity\n");
815                 rc = eeh_reset_device(pe, frozen_bus, NULL);
816                 if (rc) {
817                         pr_warn("%s: Unable to reset, err=%d\n",
818                                 __func__, rc);
819                         goto hard_fail;
820                 }
821         }
822
823         /* If all devices reported they can proceed, then re-enable MMIO */
824         if (result == PCI_ERS_RESULT_CAN_RECOVER) {
825                 pr_info("EEH: Enable I/O for affected devices\n");
826                 rc = eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
827
828                 if (rc < 0)
829                         goto hard_fail;
830                 if (rc) {
831                         result = PCI_ERS_RESULT_NEED_RESET;
832                 } else {
833                         pr_info("EEH: Notify device drivers to resume I/O\n");
834                         eeh_pe_dev_traverse(pe, eeh_report_mmio_enabled, &result);
835                 }
836         }
837
838         /* If all devices reported they can proceed, then re-enable DMA */
839         if (result == PCI_ERS_RESULT_CAN_RECOVER) {
840                 pr_info("EEH: Enabled DMA for affected devices\n");
841                 rc = eeh_pci_enable(pe, EEH_OPT_THAW_DMA);
842
843                 if (rc < 0)
844                         goto hard_fail;
845                 if (rc) {
846                         result = PCI_ERS_RESULT_NEED_RESET;
847                 } else {
848                         /*
849                          * We didn't do PE reset for the case. The PE
850                          * is still in frozen state. Clear it before
851                          * resuming the PE.
852                          */
853                         eeh_pe_state_clear(pe, EEH_PE_ISOLATED);
854                         result = PCI_ERS_RESULT_RECOVERED;
855                 }
856         }
857
858         /* If any device has a hard failure, then shut off everything. */
859         if (result == PCI_ERS_RESULT_DISCONNECT) {
860                 pr_warn("EEH: Device driver gave up\n");
861                 goto hard_fail;
862         }
863
864         /* If any device called out for a reset, then reset the slot */
865         if (result == PCI_ERS_RESULT_NEED_RESET) {
866                 pr_info("EEH: Reset without hotplug activity\n");
867                 rc = eeh_reset_device(pe, NULL, &rmv_data);
868                 if (rc) {
869                         pr_warn("%s: Cannot reset, err=%d\n",
870                                 __func__, rc);
871                         goto hard_fail;
872                 }
873
874                 pr_info("EEH: Notify device drivers "
875                         "the completion of reset\n");
876                 result = PCI_ERS_RESULT_NONE;
877                 eeh_pe_dev_traverse(pe, eeh_report_reset, &result);
878         }
879
880         /* All devices should claim they have recovered by now. */
881         if ((result != PCI_ERS_RESULT_RECOVERED) &&
882             (result != PCI_ERS_RESULT_NONE)) {
883                 pr_warn("EEH: Not recovered\n");
884                 goto hard_fail;
885         }
886
887         /*
888          * For those hot removed VFs, we should add back them after PF get
889          * recovered properly.
890          */
891         list_for_each_entry_safe(edev, tmp, &rmv_data.edev_list, rmv_list) {
892                 eeh_add_virt_device(edev, NULL);
893                 list_del(&edev->rmv_list);
894         }
895
896         /* Tell all device drivers that they can resume operations */
897         pr_info("EEH: Notify device driver to resume\n");
898         eeh_pe_dev_traverse(pe, eeh_report_resume, NULL);
899
900         return false;
901
902 hard_fail:
903         /*
904          * About 90% of all real-life EEH failures in the field
905          * are due to poorly seated PCI cards. Only 10% or so are
906          * due to actual, failed cards.
907          */
908         pr_err("EEH: Unable to recover from failure from PHB#%x-PE#%x.\n"
909                "Please try reseating or replacing it\n",
910                 pe->phb->global_number, pe->addr);
911
912         eeh_slot_error_detail(pe, EEH_LOG_PERM);
913
914         /* Notify all devices that they're about to go down. */
915         eeh_pe_dev_traverse(pe, eeh_report_failure, NULL);
916
917         /* Mark the PE to be removed permanently */
918         eeh_pe_state_mark(pe, EEH_PE_REMOVED);
919
920         /*
921          * Shut down the device drivers for good. We mark
922          * all removed devices correctly to avoid access
923          * the their PCI config any more.
924          */
925         if (frozen_bus) {
926                 if (pe->type & EEH_PE_VF) {
927                         eeh_pe_dev_traverse(pe, eeh_rmv_device, NULL);
928                         eeh_pe_dev_mode_mark(pe, EEH_DEV_REMOVED);
929                 } else {
930                         eeh_pe_state_clear(pe, EEH_PE_PRI_BUS);
931                         eeh_pe_dev_mode_mark(pe, EEH_DEV_REMOVED);
932
933                         pci_lock_rescan_remove();
934                         pci_hp_remove_devices(frozen_bus);
935                         pci_unlock_rescan_remove();
936
937                         /* The passed PE should no longer be used */
938                         return true;
939                 }
940         }
941         return false;
942 }
943
944 /**
945  * eeh_handle_special_event - Handle EEH events without a specific failing PE
946  *
947  * Called when an EEH event is detected but can't be narrowed down to a
948  * specific PE.  Iterates through possible failures and handles them as
949  * necessary.
950  */
951 static void eeh_handle_special_event(void)
952 {
953         struct eeh_pe *pe, *phb_pe;
954         struct pci_bus *bus;
955         struct pci_controller *hose;
956         unsigned long flags;
957         int rc;
958
959
960         do {
961                 rc = eeh_ops->next_error(&pe);
962
963                 switch (rc) {
964                 case EEH_NEXT_ERR_DEAD_IOC:
965                         /* Mark all PHBs in dead state */
966                         eeh_serialize_lock(&flags);
967
968                         /* Purge all events */
969                         eeh_remove_event(NULL, true);
970
971                         list_for_each_entry(hose, &hose_list, list_node) {
972                                 phb_pe = eeh_phb_pe_get(hose);
973                                 if (!phb_pe) continue;
974
975                                 eeh_pe_state_mark(phb_pe, EEH_PE_ISOLATED);
976                         }
977
978                         eeh_serialize_unlock(flags);
979
980                         break;
981                 case EEH_NEXT_ERR_FROZEN_PE:
982                 case EEH_NEXT_ERR_FENCED_PHB:
983                 case EEH_NEXT_ERR_DEAD_PHB:
984                         /* Mark the PE in fenced state */
985                         eeh_serialize_lock(&flags);
986
987                         /* Purge all events of the PHB */
988                         eeh_remove_event(pe, true);
989
990                         if (rc == EEH_NEXT_ERR_DEAD_PHB)
991                                 eeh_pe_state_mark(pe, EEH_PE_ISOLATED);
992                         else
993                                 eeh_pe_state_mark(pe,
994                                         EEH_PE_ISOLATED | EEH_PE_RECOVERING);
995
996                         eeh_serialize_unlock(flags);
997
998                         break;
999                 case EEH_NEXT_ERR_NONE:
1000                         return;
1001                 default:
1002                         pr_warn("%s: Invalid value %d from next_error()\n",
1003                                 __func__, rc);
1004                         return;
1005                 }
1006
1007                 /*
1008                  * For fenced PHB and frozen PE, it's handled as normal
1009                  * event. We have to remove the affected PHBs for dead
1010                  * PHB and IOC
1011                  */
1012                 if (rc == EEH_NEXT_ERR_FROZEN_PE ||
1013                     rc == EEH_NEXT_ERR_FENCED_PHB) {
1014                         /*
1015                          * eeh_handle_normal_event() can make the PE stale if it
1016                          * determines that the PE cannot possibly be recovered.
1017                          * Don't modify the PE state if that's the case.
1018                          */
1019                         if (eeh_handle_normal_event(pe))
1020                                 continue;
1021
1022                         eeh_pe_state_clear(pe, EEH_PE_RECOVERING);
1023                 } else {
1024                         pci_lock_rescan_remove();
1025                         list_for_each_entry(hose, &hose_list, list_node) {
1026                                 phb_pe = eeh_phb_pe_get(hose);
1027                                 if (!phb_pe ||
1028                                     !(phb_pe->state & EEH_PE_ISOLATED) ||
1029                                     (phb_pe->state & EEH_PE_RECOVERING))
1030                                         continue;
1031
1032                                 /* Notify all devices to be down */
1033                                 eeh_pe_state_clear(pe, EEH_PE_PRI_BUS);
1034                                 eeh_pe_dev_traverse(pe,
1035                                         eeh_report_failure, NULL);
1036                                 bus = eeh_pe_bus_get(phb_pe);
1037                                 if (!bus) {
1038                                         pr_err("%s: Cannot find PCI bus for "
1039                                                "PHB#%x-PE#%x\n",
1040                                                __func__,
1041                                                pe->phb->global_number,
1042                                                pe->addr);
1043                                         break;
1044                                 }
1045                                 pci_hp_remove_devices(bus);
1046                         }
1047                         pci_unlock_rescan_remove();
1048                 }
1049
1050                 /*
1051                  * If we have detected dead IOC, we needn't proceed
1052                  * any more since all PHBs would have been removed
1053                  */
1054                 if (rc == EEH_NEXT_ERR_DEAD_IOC)
1055                         break;
1056         } while (rc != EEH_NEXT_ERR_NONE);
1057 }
1058
1059 /**
1060  * eeh_handle_event - Reset a PCI device after hard lockup.
1061  * @pe: EEH PE
1062  *
1063  * While PHB detects address or data parity errors on particular PCI
1064  * slot, the associated PE will be frozen. Besides, DMA's occurring
1065  * to wild addresses (which usually happen due to bugs in device
1066  * drivers or in PCI adapter firmware) can cause EEH error. #SERR,
1067  * #PERR or other misc PCI-related errors also can trigger EEH errors.
1068  *
1069  * Recovery process consists of unplugging the device driver (which
1070  * generated hotplug events to userspace), then issuing a PCI #RST to
1071  * the device, then reconfiguring the PCI config space for all bridges
1072  * & devices under this slot, and then finally restarting the device
1073  * drivers (which cause a second set of hotplug events to go out to
1074  * userspace).
1075  */
1076 void eeh_handle_event(struct eeh_pe *pe)
1077 {
1078         if (pe)
1079                 eeh_handle_normal_event(pe);
1080         else
1081                 eeh_handle_special_event();
1082 }