]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/powerpc/kernel/eeh.c
powerpc/eeh: Use cached capability for log dump
[karo-tx-linux.git] / arch / powerpc / kernel / eeh.c
1 /*
2  * Copyright IBM Corporation 2001, 2005, 2006
3  * Copyright Dave Engebretsen & Todd Inglett 2001
4  * Copyright Linas Vepstas 2005, 2006
5  * Copyright 2001-2012 IBM Corporation.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20  *
21  * Please address comments and feedback to Linas Vepstas <linas@austin.ibm.com>
22  */
23
24 #include <linux/delay.h>
25 #include <linux/sched.h>
26 #include <linux/init.h>
27 #include <linux/list.h>
28 #include <linux/pci.h>
29 #include <linux/proc_fs.h>
30 #include <linux/rbtree.h>
31 #include <linux/reboot.h>
32 #include <linux/seq_file.h>
33 #include <linux/spinlock.h>
34 #include <linux/export.h>
35 #include <linux/of.h>
36
37 #include <linux/atomic.h>
38 #include <asm/eeh.h>
39 #include <asm/eeh_event.h>
40 #include <asm/io.h>
41 #include <asm/machdep.h>
42 #include <asm/ppc-pci.h>
43 #include <asm/rtas.h>
44
45
46 /** Overview:
47  *  EEH, or "Extended Error Handling" is a PCI bridge technology for
48  *  dealing with PCI bus errors that can't be dealt with within the
49  *  usual PCI framework, except by check-stopping the CPU.  Systems
50  *  that are designed for high-availability/reliability cannot afford
51  *  to crash due to a "mere" PCI error, thus the need for EEH.
52  *  An EEH-capable bridge operates by converting a detected error
53  *  into a "slot freeze", taking the PCI adapter off-line, making
54  *  the slot behave, from the OS'es point of view, as if the slot
55  *  were "empty": all reads return 0xff's and all writes are silently
56  *  ignored.  EEH slot isolation events can be triggered by parity
57  *  errors on the address or data busses (e.g. during posted writes),
58  *  which in turn might be caused by low voltage on the bus, dust,
59  *  vibration, humidity, radioactivity or plain-old failed hardware.
60  *
61  *  Note, however, that one of the leading causes of EEH slot
62  *  freeze events are buggy device drivers, buggy device microcode,
63  *  or buggy device hardware.  This is because any attempt by the
64  *  device to bus-master data to a memory address that is not
65  *  assigned to the device will trigger a slot freeze.   (The idea
66  *  is to prevent devices-gone-wild from corrupting system memory).
67  *  Buggy hardware/drivers will have a miserable time co-existing
68  *  with EEH.
69  *
70  *  Ideally, a PCI device driver, when suspecting that an isolation
71  *  event has occurred (e.g. by reading 0xff's), will then ask EEH
72  *  whether this is the case, and then take appropriate steps to
73  *  reset the PCI slot, the PCI device, and then resume operations.
74  *  However, until that day,  the checking is done here, with the
75  *  eeh_check_failure() routine embedded in the MMIO macros.  If
76  *  the slot is found to be isolated, an "EEH Event" is synthesized
77  *  and sent out for processing.
78  */
79
80 /* If a device driver keeps reading an MMIO register in an interrupt
81  * handler after a slot isolation event, it might be broken.
82  * This sets the threshold for how many read attempts we allow
83  * before printing an error message.
84  */
85 #define EEH_MAX_FAILS   2100000
86
87 /* Time to wait for a PCI slot to report status, in milliseconds */
88 #define PCI_BUS_RESET_WAIT_MSEC (5*60*1000)
89
90 /* Platform dependent EEH operations */
91 struct eeh_ops *eeh_ops = NULL;
92
93 bool eeh_subsystem_enabled = false;
94 EXPORT_SYMBOL(eeh_subsystem_enabled);
95
96 /*
97  * EEH probe mode support. The intention is to support multiple
98  * platforms for EEH. Some platforms like pSeries do PCI emunation
99  * based on device tree. However, other platforms like powernv probe
100  * PCI devices from hardware. The flag is used to distinguish that.
101  * In addition, struct eeh_ops::probe would be invoked for particular
102  * OF node or PCI device so that the corresponding PE would be created
103  * there.
104  */
105 int eeh_probe_mode;
106
107 /* Lock to avoid races due to multiple reports of an error */
108 DEFINE_RAW_SPINLOCK(confirm_error_lock);
109
110 /* Buffer for reporting pci register dumps. Its here in BSS, and
111  * not dynamically alloced, so that it ends up in RMO where RTAS
112  * can access it.
113  */
114 #define EEH_PCI_REGS_LOG_LEN 4096
115 static unsigned char pci_regs_buf[EEH_PCI_REGS_LOG_LEN];
116
117 /*
118  * The struct is used to maintain the EEH global statistic
119  * information. Besides, the EEH global statistics will be
120  * exported to user space through procfs
121  */
122 struct eeh_stats {
123         u64 no_device;          /* PCI device not found         */
124         u64 no_dn;              /* OF node not found            */
125         u64 no_cfg_addr;        /* Config address not found     */
126         u64 ignored_check;      /* EEH check skipped            */
127         u64 total_mmio_ffs;     /* Total EEH checks             */
128         u64 false_positives;    /* Unnecessary EEH checks       */
129         u64 slot_resets;        /* PE reset                     */
130 };
131
132 static struct eeh_stats eeh_stats;
133
134 #define IS_BRIDGE(class_code) (((class_code)<<16) == PCI_BASE_CLASS_BRIDGE)
135
136 /**
137  * eeh_gather_pci_data - Copy assorted PCI config space registers to buff
138  * @edev: device to report data for
139  * @buf: point to buffer in which to log
140  * @len: amount of room in buffer
141  *
142  * This routine captures assorted PCI configuration space data,
143  * and puts them into a buffer for RTAS error logging.
144  */
145 static size_t eeh_gather_pci_data(struct eeh_dev *edev, char * buf, size_t len)
146 {
147         struct device_node *dn = eeh_dev_to_of_node(edev);
148         u32 cfg;
149         int cap, i;
150         int n = 0;
151
152         n += scnprintf(buf+n, len-n, "%s\n", dn->full_name);
153         pr_warn("EEH: of node=%s\n", dn->full_name);
154
155         eeh_ops->read_config(dn, PCI_VENDOR_ID, 4, &cfg);
156         n += scnprintf(buf+n, len-n, "dev/vend:%08x\n", cfg);
157         pr_warn("EEH: PCI device/vendor: %08x\n", cfg);
158
159         eeh_ops->read_config(dn, PCI_COMMAND, 4, &cfg);
160         n += scnprintf(buf+n, len-n, "cmd/stat:%x\n", cfg);
161         pr_warn("EEH: PCI cmd/status register: %08x\n", cfg);
162
163         /* Gather bridge-specific registers */
164         if (edev->mode & EEH_DEV_BRIDGE) {
165                 eeh_ops->read_config(dn, PCI_SEC_STATUS, 2, &cfg);
166                 n += scnprintf(buf+n, len-n, "sec stat:%x\n", cfg);
167                 pr_warn("EEH: Bridge secondary status: %04x\n", cfg);
168
169                 eeh_ops->read_config(dn, PCI_BRIDGE_CONTROL, 2, &cfg);
170                 n += scnprintf(buf+n, len-n, "brdg ctl:%x\n", cfg);
171                 pr_warn("EEH: Bridge control: %04x\n", cfg);
172         }
173
174         /* Dump out the PCI-X command and status regs */
175         cap = edev->pcix_cap;
176         if (cap) {
177                 eeh_ops->read_config(dn, cap, 4, &cfg);
178                 n += scnprintf(buf+n, len-n, "pcix-cmd:%x\n", cfg);
179                 pr_warn("EEH: PCI-X cmd: %08x\n", cfg);
180
181                 eeh_ops->read_config(dn, cap+4, 4, &cfg);
182                 n += scnprintf(buf+n, len-n, "pcix-stat:%x\n", cfg);
183                 pr_warn("EEH: PCI-X status: %08x\n", cfg);
184         }
185
186         /* If PCI-E capable, dump PCI-E cap 10 */
187         cap = edev->pcie_cap;
188         if (cap) {
189                 n += scnprintf(buf+n, len-n, "pci-e cap10:\n");
190                 pr_warn("EEH: PCI-E capabilities and status follow:\n");
191
192                 for (i=0; i<=8; i++) {
193                         eeh_ops->read_config(dn, cap+4*i, 4, &cfg);
194                         n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
195                         pr_warn("EEH: PCI-E %02x: %08x\n", i, cfg);
196                 }
197         }
198
199         /* If AER capable, dump it */
200         cap = edev->aer_cap;
201         if (cap) {
202                 n += scnprintf(buf+n, len-n, "pci-e AER:\n");
203                 pr_warn("EEH: PCI-E AER capability register set follows:\n");
204
205                 for (i=0; i<14; i++) {
206                         eeh_ops->read_config(dn, cap+4*i, 4, &cfg);
207                         n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
208                         pr_warn("EEH: PCI-E AER %02x: %08x\n", i, cfg);
209                 }
210         }
211
212         return n;
213 }
214
215 /**
216  * eeh_slot_error_detail - Generate combined log including driver log and error log
217  * @pe: EEH PE
218  * @severity: temporary or permanent error log
219  *
220  * This routine should be called to generate the combined log, which
221  * is comprised of driver log and error log. The driver log is figured
222  * out from the config space of the corresponding PCI device, while
223  * the error log is fetched through platform dependent function call.
224  */
225 void eeh_slot_error_detail(struct eeh_pe *pe, int severity)
226 {
227         size_t loglen = 0;
228         struct eeh_dev *edev, *tmp;
229
230         /*
231          * When the PHB is fenced or dead, it's pointless to collect
232          * the data from PCI config space because it should return
233          * 0xFF's. For ER, we still retrieve the data from the PCI
234          * config space.
235          *
236          * For pHyp, we have to enable IO for log retrieval. Otherwise,
237          * 0xFF's is always returned from PCI config space.
238          */
239         if (!(pe->type & EEH_PE_PHB)) {
240                 if (eeh_probe_mode_devtree())
241                         eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
242                 eeh_ops->configure_bridge(pe);
243                 eeh_pe_restore_bars(pe);
244
245                 pci_regs_buf[0] = 0;
246                 eeh_pe_for_each_dev(pe, edev, tmp) {
247                         loglen += eeh_gather_pci_data(edev, pci_regs_buf + loglen,
248                                                       EEH_PCI_REGS_LOG_LEN - loglen);
249                 }
250         }
251
252         eeh_ops->get_log(pe, severity, pci_regs_buf, loglen);
253 }
254
255 /**
256  * eeh_token_to_phys - Convert EEH address token to phys address
257  * @token: I/O token, should be address in the form 0xA....
258  *
259  * This routine should be called to convert virtual I/O address
260  * to physical one.
261  */
262 static inline unsigned long eeh_token_to_phys(unsigned long token)
263 {
264         pte_t *ptep;
265         unsigned long pa;
266         int hugepage_shift;
267
268         /*
269          * We won't find hugepages here, iomem
270          */
271         ptep = find_linux_pte_or_hugepte(init_mm.pgd, token, &hugepage_shift);
272         if (!ptep)
273                 return token;
274         WARN_ON(hugepage_shift);
275         pa = pte_pfn(*ptep) << PAGE_SHIFT;
276
277         return pa | (token & (PAGE_SIZE-1));
278 }
279
280 /*
281  * On PowerNV platform, we might already have fenced PHB there.
282  * For that case, it's meaningless to recover frozen PE. Intead,
283  * We have to handle fenced PHB firstly.
284  */
285 static int eeh_phb_check_failure(struct eeh_pe *pe)
286 {
287         struct eeh_pe *phb_pe;
288         unsigned long flags;
289         int ret;
290
291         if (!eeh_probe_mode_dev())
292                 return -EPERM;
293
294         /* Find the PHB PE */
295         phb_pe = eeh_phb_pe_get(pe->phb);
296         if (!phb_pe) {
297                 pr_warning("%s Can't find PE for PHB#%d\n",
298                            __func__, pe->phb->global_number);
299                 return -EEXIST;
300         }
301
302         /* If the PHB has been in problematic state */
303         eeh_serialize_lock(&flags);
304         if (phb_pe->state & EEH_PE_ISOLATED) {
305                 ret = 0;
306                 goto out;
307         }
308
309         /* Check PHB state */
310         ret = eeh_ops->get_state(phb_pe, NULL);
311         if ((ret < 0) ||
312             (ret == EEH_STATE_NOT_SUPPORT) ||
313             (ret & (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) ==
314             (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) {
315                 ret = 0;
316                 goto out;
317         }
318
319         /* Isolate the PHB and send event */
320         eeh_pe_state_mark(phb_pe, EEH_PE_ISOLATED);
321         eeh_serialize_unlock(flags);
322
323         pr_err("EEH: PHB#%x failure detected\n",
324                 phb_pe->phb->global_number);
325         dump_stack();
326         eeh_send_failure_event(phb_pe);
327
328         return 1;
329 out:
330         eeh_serialize_unlock(flags);
331         return ret;
332 }
333
334 /**
335  * eeh_dev_check_failure - Check if all 1's data is due to EEH slot freeze
336  * @edev: eeh device
337  *
338  * Check for an EEH failure for the given device node.  Call this
339  * routine if the result of a read was all 0xff's and you want to
340  * find out if this is due to an EEH slot freeze.  This routine
341  * will query firmware for the EEH status.
342  *
343  * Returns 0 if there has not been an EEH error; otherwise returns
344  * a non-zero value and queues up a slot isolation event notification.
345  *
346  * It is safe to call this routine in an interrupt context.
347  */
348 int eeh_dev_check_failure(struct eeh_dev *edev)
349 {
350         int ret;
351         unsigned long flags;
352         struct device_node *dn;
353         struct pci_dev *dev;
354         struct eeh_pe *pe;
355         int rc = 0;
356         const char *location;
357
358         eeh_stats.total_mmio_ffs++;
359
360         if (!eeh_enabled())
361                 return 0;
362
363         if (!edev) {
364                 eeh_stats.no_dn++;
365                 return 0;
366         }
367         dn = eeh_dev_to_of_node(edev);
368         dev = eeh_dev_to_pci_dev(edev);
369         pe = edev->pe;
370
371         /* Access to IO BARs might get this far and still not want checking. */
372         if (!pe) {
373                 eeh_stats.ignored_check++;
374                 pr_debug("EEH: Ignored check for %s %s\n",
375                         eeh_pci_name(dev), dn->full_name);
376                 return 0;
377         }
378
379         if (!pe->addr && !pe->config_addr) {
380                 eeh_stats.no_cfg_addr++;
381                 return 0;
382         }
383
384         /*
385          * On PowerNV platform, we might already have fenced PHB
386          * there and we need take care of that firstly.
387          */
388         ret = eeh_phb_check_failure(pe);
389         if (ret > 0)
390                 return ret;
391
392         /* If we already have a pending isolation event for this
393          * slot, we know it's bad already, we don't need to check.
394          * Do this checking under a lock; as multiple PCI devices
395          * in one slot might report errors simultaneously, and we
396          * only want one error recovery routine running.
397          */
398         eeh_serialize_lock(&flags);
399         rc = 1;
400         if (pe->state & EEH_PE_ISOLATED) {
401                 pe->check_count++;
402                 if (pe->check_count % EEH_MAX_FAILS == 0) {
403                         location = of_get_property(dn, "ibm,loc-code", NULL);
404                         printk(KERN_ERR "EEH: %d reads ignored for recovering device at "
405                                 "location=%s driver=%s pci addr=%s\n",
406                                 pe->check_count, location,
407                                 eeh_driver_name(dev), eeh_pci_name(dev));
408                         printk(KERN_ERR "EEH: Might be infinite loop in %s driver\n",
409                                 eeh_driver_name(dev));
410                         dump_stack();
411                 }
412                 goto dn_unlock;
413         }
414
415         /*
416          * Now test for an EEH failure.  This is VERY expensive.
417          * Note that the eeh_config_addr may be a parent device
418          * in the case of a device behind a bridge, or it may be
419          * function zero of a multi-function device.
420          * In any case they must share a common PHB.
421          */
422         ret = eeh_ops->get_state(pe, NULL);
423
424         /* Note that config-io to empty slots may fail;
425          * they are empty when they don't have children.
426          * We will punt with the following conditions: Failure to get
427          * PE's state, EEH not support and Permanently unavailable
428          * state, PE is in good state.
429          */
430         if ((ret < 0) ||
431             (ret == EEH_STATE_NOT_SUPPORT) ||
432             (ret & (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) ==
433             (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) {
434                 eeh_stats.false_positives++;
435                 pe->false_positives++;
436                 rc = 0;
437                 goto dn_unlock;
438         }
439
440         eeh_stats.slot_resets++;
441
442         /* Avoid repeated reports of this failure, including problems
443          * with other functions on this device, and functions under
444          * bridges.
445          */
446         eeh_pe_state_mark(pe, EEH_PE_ISOLATED);
447         eeh_serialize_unlock(flags);
448
449         /* Most EEH events are due to device driver bugs.  Having
450          * a stack trace will help the device-driver authors figure
451          * out what happened.  So print that out.
452          */
453         pr_err("EEH: Frozen PE#%x detected on PHB#%x\n",
454                 pe->addr, pe->phb->global_number);
455         dump_stack();
456
457         eeh_send_failure_event(pe);
458
459         return 1;
460
461 dn_unlock:
462         eeh_serialize_unlock(flags);
463         return rc;
464 }
465
466 EXPORT_SYMBOL_GPL(eeh_dev_check_failure);
467
468 /**
469  * eeh_check_failure - Check if all 1's data is due to EEH slot freeze
470  * @token: I/O token, should be address in the form 0xA....
471  * @val: value, should be all 1's (XXX why do we need this arg??)
472  *
473  * Check for an EEH failure at the given token address.  Call this
474  * routine if the result of a read was all 0xff's and you want to
475  * find out if this is due to an EEH slot freeze event.  This routine
476  * will query firmware for the EEH status.
477  *
478  * Note this routine is safe to call in an interrupt context.
479  */
480 unsigned long eeh_check_failure(const volatile void __iomem *token, unsigned long val)
481 {
482         unsigned long addr;
483         struct eeh_dev *edev;
484
485         /* Finding the phys addr + pci device; this is pretty quick. */
486         addr = eeh_token_to_phys((unsigned long __force) token);
487         edev = eeh_addr_cache_get_dev(addr);
488         if (!edev) {
489                 eeh_stats.no_device++;
490                 return val;
491         }
492
493         eeh_dev_check_failure(edev);
494         return val;
495 }
496
497 EXPORT_SYMBOL(eeh_check_failure);
498
499
500 /**
501  * eeh_pci_enable - Enable MMIO or DMA transfers for this slot
502  * @pe: EEH PE
503  *
504  * This routine should be called to reenable frozen MMIO or DMA
505  * so that it would work correctly again. It's useful while doing
506  * recovery or log collection on the indicated device.
507  */
508 int eeh_pci_enable(struct eeh_pe *pe, int function)
509 {
510         int rc, flags = (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE);
511
512         /*
513          * pHyp doesn't allow to enable IO or DMA on unfrozen PE.
514          * Also, it's pointless to enable them on unfrozen PE. So
515          * we have the check here.
516          */
517         if (function == EEH_OPT_THAW_MMIO ||
518             function == EEH_OPT_THAW_DMA) {
519                 rc = eeh_ops->get_state(pe, NULL);
520                 if (rc < 0)
521                         return rc;
522
523                 /* Needn't to enable or already enabled */
524                 if ((rc == EEH_STATE_NOT_SUPPORT) ||
525                     ((rc & flags) == flags))
526                         return 0;
527         }
528
529         rc = eeh_ops->set_option(pe, function);
530         if (rc)
531                 pr_warn("%s: Unexpected state change %d on "
532                         "PHB#%d-PE#%x, err=%d\n",
533                         __func__, function, pe->phb->global_number,
534                         pe->addr, rc);
535
536         rc = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
537         if (rc <= 0)
538                 return rc;
539
540         if ((function == EEH_OPT_THAW_MMIO) &&
541             (rc & EEH_STATE_MMIO_ENABLED))
542                 return 0;
543
544         if ((function == EEH_OPT_THAW_DMA) &&
545             (rc & EEH_STATE_DMA_ENABLED))
546                 return 0;
547
548         return rc;
549 }
550
551 /**
552  * pcibios_set_pcie_slot_reset - Set PCI-E reset state
553  * @dev: pci device struct
554  * @state: reset state to enter
555  *
556  * Return value:
557  *      0 if success
558  */
559 int pcibios_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
560 {
561         struct eeh_dev *edev = pci_dev_to_eeh_dev(dev);
562         struct eeh_pe *pe = edev->pe;
563
564         if (!pe) {
565                 pr_err("%s: No PE found on PCI device %s\n",
566                         __func__, pci_name(dev));
567                 return -EINVAL;
568         }
569
570         switch (state) {
571         case pcie_deassert_reset:
572                 eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
573                 break;
574         case pcie_hot_reset:
575                 eeh_ops->reset(pe, EEH_RESET_HOT);
576                 break;
577         case pcie_warm_reset:
578                 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
579                 break;
580         default:
581                 return -EINVAL;
582         };
583
584         return 0;
585 }
586
587 /**
588  * eeh_set_pe_freset - Check the required reset for the indicated device
589  * @data: EEH device
590  * @flag: return value
591  *
592  * Each device might have its preferred reset type: fundamental or
593  * hot reset. The routine is used to collected the information for
594  * the indicated device and its children so that the bunch of the
595  * devices could be reset properly.
596  */
597 static void *eeh_set_dev_freset(void *data, void *flag)
598 {
599         struct pci_dev *dev;
600         unsigned int *freset = (unsigned int *)flag;
601         struct eeh_dev *edev = (struct eeh_dev *)data;
602
603         dev = eeh_dev_to_pci_dev(edev);
604         if (dev)
605                 *freset |= dev->needs_freset;
606
607         return NULL;
608 }
609
610 /**
611  * eeh_reset_pe_once - Assert the pci #RST line for 1/4 second
612  * @pe: EEH PE
613  *
614  * Assert the PCI #RST line for 1/4 second.
615  */
616 static void eeh_reset_pe_once(struct eeh_pe *pe)
617 {
618         unsigned int freset = 0;
619
620         /* Determine type of EEH reset required for
621          * Partitionable Endpoint, a hot-reset (1)
622          * or a fundamental reset (3).
623          * A fundamental reset required by any device under
624          * Partitionable Endpoint trumps hot-reset.
625          */
626         eeh_pe_dev_traverse(pe, eeh_set_dev_freset, &freset);
627
628         if (freset)
629                 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
630         else
631                 eeh_ops->reset(pe, EEH_RESET_HOT);
632
633         /* The PCI bus requires that the reset be held high for at least
634          * a 100 milliseconds. We wait a bit longer 'just in case'.
635          */
636 #define PCI_BUS_RST_HOLD_TIME_MSEC 250
637         msleep(PCI_BUS_RST_HOLD_TIME_MSEC);
638
639         eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
640
641         /* After a PCI slot has been reset, the PCI Express spec requires
642          * a 1.5 second idle time for the bus to stabilize, before starting
643          * up traffic.
644          */
645 #define PCI_BUS_SETTLE_TIME_MSEC 1800
646         msleep(PCI_BUS_SETTLE_TIME_MSEC);
647 }
648
649 /**
650  * eeh_reset_pe - Reset the indicated PE
651  * @pe: EEH PE
652  *
653  * This routine should be called to reset indicated device, including
654  * PE. A PE might include multiple PCI devices and sometimes PCI bridges
655  * might be involved as well.
656  */
657 int eeh_reset_pe(struct eeh_pe *pe)
658 {
659         int flags = (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE);
660         int i, rc;
661
662         /* Take three shots at resetting the bus */
663         for (i=0; i<3; i++) {
664                 eeh_reset_pe_once(pe);
665
666                 /*
667                  * EEH_PE_ISOLATED is expected to be removed after
668                  * BAR restore.
669                  */
670                 rc = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
671                 if ((rc & flags) == flags)
672                         return 0;
673
674                 if (rc < 0) {
675                         pr_err("%s: Unrecoverable slot failure on PHB#%d-PE#%x",
676                                 __func__, pe->phb->global_number, pe->addr);
677                         return -1;
678                 }
679                 pr_err("EEH: bus reset %d failed on PHB#%d-PE#%x, rc=%d\n",
680                         i+1, pe->phb->global_number, pe->addr, rc);
681         }
682
683         return -1;
684 }
685
686 /**
687  * eeh_save_bars - Save device bars
688  * @edev: PCI device associated EEH device
689  *
690  * Save the values of the device bars. Unlike the restore
691  * routine, this routine is *not* recursive. This is because
692  * PCI devices are added individually; but, for the restore,
693  * an entire slot is reset at a time.
694  */
695 void eeh_save_bars(struct eeh_dev *edev)
696 {
697         int i;
698         struct device_node *dn;
699
700         if (!edev)
701                 return;
702         dn = eeh_dev_to_of_node(edev);
703
704         for (i = 0; i < 16; i++)
705                 eeh_ops->read_config(dn, i * 4, 4, &edev->config_space[i]);
706
707         /*
708          * For PCI bridges including root port, we need enable bus
709          * master explicitly. Otherwise, it can't fetch IODA table
710          * entries correctly. So we cache the bit in advance so that
711          * we can restore it after reset, either PHB range or PE range.
712          */
713         if (edev->mode & EEH_DEV_BRIDGE)
714                 edev->config_space[1] |= PCI_COMMAND_MASTER;
715 }
716
717 /**
718  * eeh_ops_register - Register platform dependent EEH operations
719  * @ops: platform dependent EEH operations
720  *
721  * Register the platform dependent EEH operation callback
722  * functions. The platform should call this function before
723  * any other EEH operations.
724  */
725 int __init eeh_ops_register(struct eeh_ops *ops)
726 {
727         if (!ops->name) {
728                 pr_warning("%s: Invalid EEH ops name for %p\n",
729                         __func__, ops);
730                 return -EINVAL;
731         }
732
733         if (eeh_ops && eeh_ops != ops) {
734                 pr_warning("%s: EEH ops of platform %s already existing (%s)\n",
735                         __func__, eeh_ops->name, ops->name);
736                 return -EEXIST;
737         }
738
739         eeh_ops = ops;
740
741         return 0;
742 }
743
744 /**
745  * eeh_ops_unregister - Unreigster platform dependent EEH operations
746  * @name: name of EEH platform operations
747  *
748  * Unregister the platform dependent EEH operation callback
749  * functions.
750  */
751 int __exit eeh_ops_unregister(const char *name)
752 {
753         if (!name || !strlen(name)) {
754                 pr_warning("%s: Invalid EEH ops name\n",
755                         __func__);
756                 return -EINVAL;
757         }
758
759         if (eeh_ops && !strcmp(eeh_ops->name, name)) {
760                 eeh_ops = NULL;
761                 return 0;
762         }
763
764         return -EEXIST;
765 }
766
767 static int eeh_reboot_notifier(struct notifier_block *nb,
768                                unsigned long action, void *unused)
769 {
770         eeh_set_enable(false);
771         return NOTIFY_DONE;
772 }
773
774 static struct notifier_block eeh_reboot_nb = {
775         .notifier_call = eeh_reboot_notifier,
776 };
777
778 /**
779  * eeh_init - EEH initialization
780  *
781  * Initialize EEH by trying to enable it for all of the adapters in the system.
782  * As a side effect we can determine here if eeh is supported at all.
783  * Note that we leave EEH on so failed config cycles won't cause a machine
784  * check.  If a user turns off EEH for a particular adapter they are really
785  * telling Linux to ignore errors.  Some hardware (e.g. POWER5) won't
786  * grant access to a slot if EEH isn't enabled, and so we always enable
787  * EEH for all slots/all devices.
788  *
789  * The eeh-force-off option disables EEH checking globally, for all slots.
790  * Even if force-off is set, the EEH hardware is still enabled, so that
791  * newer systems can boot.
792  */
793 int eeh_init(void)
794 {
795         struct pci_controller *hose, *tmp;
796         struct device_node *phb;
797         static int cnt = 0;
798         int ret = 0;
799
800         /*
801          * We have to delay the initialization on PowerNV after
802          * the PCI hierarchy tree has been built because the PEs
803          * are figured out based on PCI devices instead of device
804          * tree nodes
805          */
806         if (machine_is(powernv) && cnt++ <= 0)
807                 return ret;
808
809         /* Register reboot notifier */
810         ret = register_reboot_notifier(&eeh_reboot_nb);
811         if (ret) {
812                 pr_warn("%s: Failed to register notifier (%d)\n",
813                         __func__, ret);
814                 return ret;
815         }
816
817         /* call platform initialization function */
818         if (!eeh_ops) {
819                 pr_warning("%s: Platform EEH operation not found\n",
820                         __func__);
821                 return -EEXIST;
822         } else if ((ret = eeh_ops->init())) {
823                 pr_warning("%s: Failed to call platform init function (%d)\n",
824                         __func__, ret);
825                 return ret;
826         }
827
828         /* Initialize EEH event */
829         ret = eeh_event_init();
830         if (ret)
831                 return ret;
832
833         /* Enable EEH for all adapters */
834         if (eeh_probe_mode_devtree()) {
835                 list_for_each_entry_safe(hose, tmp,
836                         &hose_list, list_node) {
837                         phb = hose->dn;
838                         traverse_pci_devices(phb, eeh_ops->of_probe, NULL);
839                 }
840         } else if (eeh_probe_mode_dev()) {
841                 list_for_each_entry_safe(hose, tmp,
842                         &hose_list, list_node)
843                         pci_walk_bus(hose->bus, eeh_ops->dev_probe, NULL);
844         } else {
845                 pr_warning("%s: Invalid probe mode %d\n",
846                            __func__, eeh_probe_mode);
847                 return -EINVAL;
848         }
849
850         /*
851          * Call platform post-initialization. Actually, It's good chance
852          * to inform platform that EEH is ready to supply service if the
853          * I/O cache stuff has been built up.
854          */
855         if (eeh_ops->post_init) {
856                 ret = eeh_ops->post_init();
857                 if (ret)
858                         return ret;
859         }
860
861         if (eeh_enabled())
862                 pr_info("EEH: PCI Enhanced I/O Error Handling Enabled\n");
863         else
864                 pr_warning("EEH: No capable adapters found\n");
865
866         return ret;
867 }
868
869 core_initcall_sync(eeh_init);
870
871 /**
872  * eeh_add_device_early - Enable EEH for the indicated device_node
873  * @dn: device node for which to set up EEH
874  *
875  * This routine must be used to perform EEH initialization for PCI
876  * devices that were added after system boot (e.g. hotplug, dlpar).
877  * This routine must be called before any i/o is performed to the
878  * adapter (inluding any config-space i/o).
879  * Whether this actually enables EEH or not for this device depends
880  * on the CEC architecture, type of the device, on earlier boot
881  * command-line arguments & etc.
882  */
883 void eeh_add_device_early(struct device_node *dn)
884 {
885         struct pci_controller *phb;
886
887         /*
888          * If we're doing EEH probe based on PCI device, we
889          * would delay the probe until late stage because
890          * the PCI device isn't available this moment.
891          */
892         if (!eeh_probe_mode_devtree())
893                 return;
894
895         if (!of_node_to_eeh_dev(dn))
896                 return;
897         phb = of_node_to_eeh_dev(dn)->phb;
898
899         /* USB Bus children of PCI devices will not have BUID's */
900         if (NULL == phb || 0 == phb->buid)
901                 return;
902
903         eeh_ops->of_probe(dn, NULL);
904 }
905
906 /**
907  * eeh_add_device_tree_early - Enable EEH for the indicated device
908  * @dn: device node
909  *
910  * This routine must be used to perform EEH initialization for the
911  * indicated PCI device that was added after system boot (e.g.
912  * hotplug, dlpar).
913  */
914 void eeh_add_device_tree_early(struct device_node *dn)
915 {
916         struct device_node *sib;
917
918         for_each_child_of_node(dn, sib)
919                 eeh_add_device_tree_early(sib);
920         eeh_add_device_early(dn);
921 }
922 EXPORT_SYMBOL_GPL(eeh_add_device_tree_early);
923
924 /**
925  * eeh_add_device_late - Perform EEH initialization for the indicated pci device
926  * @dev: pci device for which to set up EEH
927  *
928  * This routine must be used to complete EEH initialization for PCI
929  * devices that were added after system boot (e.g. hotplug, dlpar).
930  */
931 void eeh_add_device_late(struct pci_dev *dev)
932 {
933         struct device_node *dn;
934         struct eeh_dev *edev;
935
936         if (!dev || !eeh_enabled())
937                 return;
938
939         pr_debug("EEH: Adding device %s\n", pci_name(dev));
940
941         dn = pci_device_to_OF_node(dev);
942         edev = of_node_to_eeh_dev(dn);
943         if (edev->pdev == dev) {
944                 pr_debug("EEH: Already referenced !\n");
945                 return;
946         }
947
948         /*
949          * The EEH cache might not be removed correctly because of
950          * unbalanced kref to the device during unplug time, which
951          * relies on pcibios_release_device(). So we have to remove
952          * that here explicitly.
953          */
954         if (edev->pdev) {
955                 eeh_rmv_from_parent_pe(edev);
956                 eeh_addr_cache_rmv_dev(edev->pdev);
957                 eeh_sysfs_remove_device(edev->pdev);
958                 edev->mode &= ~EEH_DEV_SYSFS;
959
960                 /*
961                  * We definitely should have the PCI device removed
962                  * though it wasn't correctly. So we needn't call
963                  * into error handler afterwards.
964                  */
965                 edev->mode |= EEH_DEV_NO_HANDLER;
966
967                 edev->pdev = NULL;
968                 dev->dev.archdata.edev = NULL;
969         }
970
971         edev->pdev = dev;
972         dev->dev.archdata.edev = edev;
973
974         /*
975          * We have to do the EEH probe here because the PCI device
976          * hasn't been created yet in the early stage.
977          */
978         if (eeh_probe_mode_dev())
979                 eeh_ops->dev_probe(dev, NULL);
980
981         eeh_addr_cache_insert_dev(dev);
982 }
983
984 /**
985  * eeh_add_device_tree_late - Perform EEH initialization for the indicated PCI bus
986  * @bus: PCI bus
987  *
988  * This routine must be used to perform EEH initialization for PCI
989  * devices which are attached to the indicated PCI bus. The PCI bus
990  * is added after system boot through hotplug or dlpar.
991  */
992 void eeh_add_device_tree_late(struct pci_bus *bus)
993 {
994         struct pci_dev *dev;
995
996         list_for_each_entry(dev, &bus->devices, bus_list) {
997                 eeh_add_device_late(dev);
998                 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
999                         struct pci_bus *subbus = dev->subordinate;
1000                         if (subbus)
1001                                 eeh_add_device_tree_late(subbus);
1002                 }
1003         }
1004 }
1005 EXPORT_SYMBOL_GPL(eeh_add_device_tree_late);
1006
1007 /**
1008  * eeh_add_sysfs_files - Add EEH sysfs files for the indicated PCI bus
1009  * @bus: PCI bus
1010  *
1011  * This routine must be used to add EEH sysfs files for PCI
1012  * devices which are attached to the indicated PCI bus. The PCI bus
1013  * is added after system boot through hotplug or dlpar.
1014  */
1015 void eeh_add_sysfs_files(struct pci_bus *bus)
1016 {
1017         struct pci_dev *dev;
1018
1019         list_for_each_entry(dev, &bus->devices, bus_list) {
1020                 eeh_sysfs_add_device(dev);
1021                 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
1022                         struct pci_bus *subbus = dev->subordinate;
1023                         if (subbus)
1024                                 eeh_add_sysfs_files(subbus);
1025                 }
1026         }
1027 }
1028 EXPORT_SYMBOL_GPL(eeh_add_sysfs_files);
1029
1030 /**
1031  * eeh_remove_device - Undo EEH setup for the indicated pci device
1032  * @dev: pci device to be removed
1033  *
1034  * This routine should be called when a device is removed from
1035  * a running system (e.g. by hotplug or dlpar).  It unregisters
1036  * the PCI device from the EEH subsystem.  I/O errors affecting
1037  * this device will no longer be detected after this call; thus,
1038  * i/o errors affecting this slot may leave this device unusable.
1039  */
1040 void eeh_remove_device(struct pci_dev *dev)
1041 {
1042         struct eeh_dev *edev;
1043
1044         if (!dev || !eeh_enabled())
1045                 return;
1046         edev = pci_dev_to_eeh_dev(dev);
1047
1048         /* Unregister the device with the EEH/PCI address search system */
1049         pr_debug("EEH: Removing device %s\n", pci_name(dev));
1050
1051         if (!edev || !edev->pdev || !edev->pe) {
1052                 pr_debug("EEH: Not referenced !\n");
1053                 return;
1054         }
1055
1056         /*
1057          * During the hotplug for EEH error recovery, we need the EEH
1058          * device attached to the parent PE in order for BAR restore
1059          * a bit later. So we keep it for BAR restore and remove it
1060          * from the parent PE during the BAR resotre.
1061          */
1062         edev->pdev = NULL;
1063         dev->dev.archdata.edev = NULL;
1064         if (!(edev->pe->state & EEH_PE_KEEP))
1065                 eeh_rmv_from_parent_pe(edev);
1066         else
1067                 edev->mode |= EEH_DEV_DISCONNECTED;
1068
1069         /*
1070          * We're removing from the PCI subsystem, that means
1071          * the PCI device driver can't support EEH or not
1072          * well. So we rely on hotplug completely to do recovery
1073          * for the specific PCI device.
1074          */
1075         edev->mode |= EEH_DEV_NO_HANDLER;
1076
1077         eeh_addr_cache_rmv_dev(dev);
1078         eeh_sysfs_remove_device(dev);
1079         edev->mode &= ~EEH_DEV_SYSFS;
1080 }
1081
1082 static int proc_eeh_show(struct seq_file *m, void *v)
1083 {
1084         if (!eeh_enabled()) {
1085                 seq_printf(m, "EEH Subsystem is globally disabled\n");
1086                 seq_printf(m, "eeh_total_mmio_ffs=%llu\n", eeh_stats.total_mmio_ffs);
1087         } else {
1088                 seq_printf(m, "EEH Subsystem is enabled\n");
1089                 seq_printf(m,
1090                                 "no device=%llu\n"
1091                                 "no device node=%llu\n"
1092                                 "no config address=%llu\n"
1093                                 "check not wanted=%llu\n"
1094                                 "eeh_total_mmio_ffs=%llu\n"
1095                                 "eeh_false_positives=%llu\n"
1096                                 "eeh_slot_resets=%llu\n",
1097                                 eeh_stats.no_device,
1098                                 eeh_stats.no_dn,
1099                                 eeh_stats.no_cfg_addr,
1100                                 eeh_stats.ignored_check,
1101                                 eeh_stats.total_mmio_ffs,
1102                                 eeh_stats.false_positives,
1103                                 eeh_stats.slot_resets);
1104         }
1105
1106         return 0;
1107 }
1108
1109 static int proc_eeh_open(struct inode *inode, struct file *file)
1110 {
1111         return single_open(file, proc_eeh_show, NULL);
1112 }
1113
1114 static const struct file_operations proc_eeh_operations = {
1115         .open      = proc_eeh_open,
1116         .read      = seq_read,
1117         .llseek    = seq_lseek,
1118         .release   = single_release,
1119 };
1120
1121 static int __init eeh_init_proc(void)
1122 {
1123         if (machine_is(pseries) || machine_is(powernv))
1124                 proc_create("powerpc/eeh", 0, NULL, &proc_eeh_operations);
1125         return 0;
1126 }
1127 __initcall(eeh_init_proc);