GNU Linux-libre 4.19.264-gnu1
[releases.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/iommu.h>
30 #include <linux/proc_fs.h>
31 #include <linux/rbtree.h>
32 #include <linux/reboot.h>
33 #include <linux/seq_file.h>
34 #include <linux/spinlock.h>
35 #include <linux/export.h>
36 #include <linux/of.h>
37
38 #include <linux/atomic.h>
39 #include <asm/debugfs.h>
40 #include <asm/eeh.h>
41 #include <asm/eeh_event.h>
42 #include <asm/io.h>
43 #include <asm/iommu.h>
44 #include <asm/machdep.h>
45 #include <asm/ppc-pci.h>
46 #include <asm/rtas.h>
47 #include <asm/pte-walk.h>
48
49
50 /** Overview:
51  *  EEH, or "Enhanced Error Handling" is a PCI bridge technology for
52  *  dealing with PCI bus errors that can't be dealt with within the
53  *  usual PCI framework, except by check-stopping the CPU.  Systems
54  *  that are designed for high-availability/reliability cannot afford
55  *  to crash due to a "mere" PCI error, thus the need for EEH.
56  *  An EEH-capable bridge operates by converting a detected error
57  *  into a "slot freeze", taking the PCI adapter off-line, making
58  *  the slot behave, from the OS'es point of view, as if the slot
59  *  were "empty": all reads return 0xff's and all writes are silently
60  *  ignored.  EEH slot isolation events can be triggered by parity
61  *  errors on the address or data busses (e.g. during posted writes),
62  *  which in turn might be caused by low voltage on the bus, dust,
63  *  vibration, humidity, radioactivity or plain-old failed hardware.
64  *
65  *  Note, however, that one of the leading causes of EEH slot
66  *  freeze events are buggy device drivers, buggy device microcode,
67  *  or buggy device hardware.  This is because any attempt by the
68  *  device to bus-master data to a memory address that is not
69  *  assigned to the device will trigger a slot freeze.   (The idea
70  *  is to prevent devices-gone-wild from corrupting system memory).
71  *  Buggy hardware/drivers will have a miserable time co-existing
72  *  with EEH.
73  *
74  *  Ideally, a PCI device driver, when suspecting that an isolation
75  *  event has occurred (e.g. by reading 0xff's), will then ask EEH
76  *  whether this is the case, and then take appropriate steps to
77  *  reset the PCI slot, the PCI device, and then resume operations.
78  *  However, until that day,  the checking is done here, with the
79  *  eeh_check_failure() routine embedded in the MMIO macros.  If
80  *  the slot is found to be isolated, an "EEH Event" is synthesized
81  *  and sent out for processing.
82  */
83
84 /* If a device driver keeps reading an MMIO register in an interrupt
85  * handler after a slot isolation event, it might be broken.
86  * This sets the threshold for how many read attempts we allow
87  * before printing an error message.
88  */
89 #define EEH_MAX_FAILS   2100000
90
91 /* Time to wait for a PCI slot to report status, in milliseconds */
92 #define PCI_BUS_RESET_WAIT_MSEC (5*60*1000)
93
94 /*
95  * EEH probe mode support, which is part of the flags,
96  * is to support multiple platforms for EEH. Some platforms
97  * like pSeries do PCI emunation based on device tree.
98  * However, other platforms like powernv probe PCI devices
99  * from hardware. The flag is used to distinguish that.
100  * In addition, struct eeh_ops::probe would be invoked for
101  * particular OF node or PCI device so that the corresponding
102  * PE would be created there.
103  */
104 int eeh_subsystem_flags;
105 EXPORT_SYMBOL(eeh_subsystem_flags);
106
107 /*
108  * EEH allowed maximal frozen times. If one particular PE's
109  * frozen count in last hour exceeds this limit, the PE will
110  * be forced to be offline permanently.
111  */
112 int eeh_max_freezes = 5;
113
114 /* Platform dependent EEH operations */
115 struct eeh_ops *eeh_ops = NULL;
116
117 /* Lock to avoid races due to multiple reports of an error */
118 DEFINE_RAW_SPINLOCK(confirm_error_lock);
119 EXPORT_SYMBOL_GPL(confirm_error_lock);
120
121 /* Lock to protect passed flags */
122 static DEFINE_MUTEX(eeh_dev_mutex);
123
124 /* Buffer for reporting pci register dumps. Its here in BSS, and
125  * not dynamically alloced, so that it ends up in RMO where RTAS
126  * can access it.
127  */
128 #define EEH_PCI_REGS_LOG_LEN 8192
129 static unsigned char pci_regs_buf[EEH_PCI_REGS_LOG_LEN];
130
131 /*
132  * The struct is used to maintain the EEH global statistic
133  * information. Besides, the EEH global statistics will be
134  * exported to user space through procfs
135  */
136 struct eeh_stats {
137         u64 no_device;          /* PCI device not found         */
138         u64 no_dn;              /* OF node not found            */
139         u64 no_cfg_addr;        /* Config address not found     */
140         u64 ignored_check;      /* EEH check skipped            */
141         u64 total_mmio_ffs;     /* Total EEH checks             */
142         u64 false_positives;    /* Unnecessary EEH checks       */
143         u64 slot_resets;        /* PE reset                     */
144 };
145
146 static struct eeh_stats eeh_stats;
147
148 static int __init eeh_setup(char *str)
149 {
150         if (!strcmp(str, "off"))
151                 eeh_add_flag(EEH_FORCE_DISABLED);
152         else if (!strcmp(str, "early_log"))
153                 eeh_add_flag(EEH_EARLY_DUMP_LOG);
154
155         return 1;
156 }
157 __setup("eeh=", eeh_setup);
158
159 /*
160  * This routine captures assorted PCI configuration space data
161  * for the indicated PCI device, and puts them into a buffer
162  * for RTAS error logging.
163  */
164 static size_t eeh_dump_dev_log(struct eeh_dev *edev, char *buf, size_t len)
165 {
166         struct pci_dn *pdn = eeh_dev_to_pdn(edev);
167         u32 cfg;
168         int cap, i;
169         int n = 0, l = 0;
170         char buffer[128];
171
172         if (!pdn) {
173                 pr_warn("EEH: Note: No error log for absent device.\n");
174                 return 0;
175         }
176
177         n += scnprintf(buf+n, len-n, "%04x:%02x:%02x.%01x\n",
178                        pdn->phb->global_number, pdn->busno,
179                        PCI_SLOT(pdn->devfn), PCI_FUNC(pdn->devfn));
180         pr_warn("EEH: of node=%04x:%02x:%02x.%01x\n",
181                 pdn->phb->global_number, pdn->busno,
182                 PCI_SLOT(pdn->devfn), PCI_FUNC(pdn->devfn));
183
184         eeh_ops->read_config(pdn, PCI_VENDOR_ID, 4, &cfg);
185         n += scnprintf(buf+n, len-n, "dev/vend:%08x\n", cfg);
186         pr_warn("EEH: PCI device/vendor: %08x\n", cfg);
187
188         eeh_ops->read_config(pdn, PCI_COMMAND, 4, &cfg);
189         n += scnprintf(buf+n, len-n, "cmd/stat:%x\n", cfg);
190         pr_warn("EEH: PCI cmd/status register: %08x\n", cfg);
191
192         /* Gather bridge-specific registers */
193         if (edev->mode & EEH_DEV_BRIDGE) {
194                 eeh_ops->read_config(pdn, PCI_SEC_STATUS, 2, &cfg);
195                 n += scnprintf(buf+n, len-n, "sec stat:%x\n", cfg);
196                 pr_warn("EEH: Bridge secondary status: %04x\n", cfg);
197
198                 eeh_ops->read_config(pdn, PCI_BRIDGE_CONTROL, 2, &cfg);
199                 n += scnprintf(buf+n, len-n, "brdg ctl:%x\n", cfg);
200                 pr_warn("EEH: Bridge control: %04x\n", cfg);
201         }
202
203         /* Dump out the PCI-X command and status regs */
204         cap = edev->pcix_cap;
205         if (cap) {
206                 eeh_ops->read_config(pdn, cap, 4, &cfg);
207                 n += scnprintf(buf+n, len-n, "pcix-cmd:%x\n", cfg);
208                 pr_warn("EEH: PCI-X cmd: %08x\n", cfg);
209
210                 eeh_ops->read_config(pdn, cap+4, 4, &cfg);
211                 n += scnprintf(buf+n, len-n, "pcix-stat:%x\n", cfg);
212                 pr_warn("EEH: PCI-X status: %08x\n", cfg);
213         }
214
215         /* If PCI-E capable, dump PCI-E cap 10 */
216         cap = edev->pcie_cap;
217         if (cap) {
218                 n += scnprintf(buf+n, len-n, "pci-e cap10:\n");
219                 pr_warn("EEH: PCI-E capabilities and status follow:\n");
220
221                 for (i=0; i<=8; i++) {
222                         eeh_ops->read_config(pdn, cap+4*i, 4, &cfg);
223                         n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
224
225                         if ((i % 4) == 0) {
226                                 if (i != 0)
227                                         pr_warn("%s\n", buffer);
228
229                                 l = scnprintf(buffer, sizeof(buffer),
230                                               "EEH: PCI-E %02x: %08x ",
231                                               4*i, cfg);
232                         } else {
233                                 l += scnprintf(buffer+l, sizeof(buffer)-l,
234                                                "%08x ", cfg);
235                         }
236
237                 }
238
239                 pr_warn("%s\n", buffer);
240         }
241
242         /* If AER capable, dump it */
243         cap = edev->aer_cap;
244         if (cap) {
245                 n += scnprintf(buf+n, len-n, "pci-e AER:\n");
246                 pr_warn("EEH: PCI-E AER capability register set follows:\n");
247
248                 for (i=0; i<=13; i++) {
249                         eeh_ops->read_config(pdn, cap+4*i, 4, &cfg);
250                         n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
251
252                         if ((i % 4) == 0) {
253                                 if (i != 0)
254                                         pr_warn("%s\n", buffer);
255
256                                 l = scnprintf(buffer, sizeof(buffer),
257                                               "EEH: PCI-E AER %02x: %08x ",
258                                               4*i, cfg);
259                         } else {
260                                 l += scnprintf(buffer+l, sizeof(buffer)-l,
261                                                "%08x ", cfg);
262                         }
263                 }
264
265                 pr_warn("%s\n", buffer);
266         }
267
268         return n;
269 }
270
271 static void *eeh_dump_pe_log(struct eeh_pe *pe, void *flag)
272 {
273         struct eeh_dev *edev, *tmp;
274         size_t *plen = flag;
275
276         eeh_pe_for_each_dev(pe, edev, tmp)
277                 *plen += eeh_dump_dev_log(edev, pci_regs_buf + *plen,
278                                           EEH_PCI_REGS_LOG_LEN - *plen);
279
280         return NULL;
281 }
282
283 /**
284  * eeh_slot_error_detail - Generate combined log including driver log and error log
285  * @pe: EEH PE
286  * @severity: temporary or permanent error log
287  *
288  * This routine should be called to generate the combined log, which
289  * is comprised of driver log and error log. The driver log is figured
290  * out from the config space of the corresponding PCI device, while
291  * the error log is fetched through platform dependent function call.
292  */
293 void eeh_slot_error_detail(struct eeh_pe *pe, int severity)
294 {
295         size_t loglen = 0;
296
297         /*
298          * When the PHB is fenced or dead, it's pointless to collect
299          * the data from PCI config space because it should return
300          * 0xFF's. For ER, we still retrieve the data from the PCI
301          * config space.
302          *
303          * For pHyp, we have to enable IO for log retrieval. Otherwise,
304          * 0xFF's is always returned from PCI config space.
305          *
306          * When the @severity is EEH_LOG_PERM, the PE is going to be
307          * removed. Prior to that, the drivers for devices included in
308          * the PE will be closed. The drivers rely on working IO path
309          * to bring the devices to quiet state. Otherwise, PCI traffic
310          * from those devices after they are removed is like to cause
311          * another unexpected EEH error.
312          */
313         if (!(pe->type & EEH_PE_PHB)) {
314                 if (eeh_has_flag(EEH_ENABLE_IO_FOR_LOG) ||
315                     severity == EEH_LOG_PERM)
316                         eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
317
318                 /*
319                  * The config space of some PCI devices can't be accessed
320                  * when their PEs are in frozen state. Otherwise, fenced
321                  * PHB might be seen. Those PEs are identified with flag
322                  * EEH_PE_CFG_RESTRICTED, indicating EEH_PE_CFG_BLOCKED
323                  * is set automatically when the PE is put to EEH_PE_ISOLATED.
324                  *
325                  * Restoring BARs possibly triggers PCI config access in
326                  * (OPAL) firmware and then causes fenced PHB. If the
327                  * PCI config is blocked with flag EEH_PE_CFG_BLOCKED, it's
328                  * pointless to restore BARs and dump config space.
329                  */
330                 eeh_ops->configure_bridge(pe);
331                 if (!(pe->state & EEH_PE_CFG_BLOCKED)) {
332                         eeh_pe_restore_bars(pe);
333
334                         pci_regs_buf[0] = 0;
335                         eeh_pe_traverse(pe, eeh_dump_pe_log, &loglen);
336                 }
337         }
338
339         eeh_ops->get_log(pe, severity, pci_regs_buf, loglen);
340 }
341
342 /**
343  * eeh_token_to_phys - Convert EEH address token to phys address
344  * @token: I/O token, should be address in the form 0xA....
345  *
346  * This routine should be called to convert virtual I/O address
347  * to physical one.
348  */
349 static inline unsigned long eeh_token_to_phys(unsigned long token)
350 {
351         pte_t *ptep;
352         unsigned long pa;
353         int hugepage_shift;
354
355         /*
356          * We won't find hugepages here(this is iomem). Hence we are not
357          * worried about _PAGE_SPLITTING/collapse. Also we will not hit
358          * page table free, because of init_mm.
359          */
360         ptep = find_init_mm_pte(token, &hugepage_shift);
361         if (!ptep)
362                 return token;
363
364         pa = pte_pfn(*ptep);
365
366         /* On radix we can do hugepage mappings for io, so handle that */
367         if (!hugepage_shift)
368                 hugepage_shift = PAGE_SHIFT;
369
370         pa <<= PAGE_SHIFT;
371         pa |= token & ((1ul << hugepage_shift) - 1);
372         return pa;
373 }
374
375 /*
376  * On PowerNV platform, we might already have fenced PHB there.
377  * For that case, it's meaningless to recover frozen PE. Intead,
378  * We have to handle fenced PHB firstly.
379  */
380 static int eeh_phb_check_failure(struct eeh_pe *pe)
381 {
382         struct eeh_pe *phb_pe;
383         unsigned long flags;
384         int ret;
385
386         if (!eeh_has_flag(EEH_PROBE_MODE_DEV))
387                 return -EPERM;
388
389         /* Find the PHB PE */
390         phb_pe = eeh_phb_pe_get(pe->phb);
391         if (!phb_pe) {
392                 pr_warn("%s Can't find PE for PHB#%x\n",
393                         __func__, pe->phb->global_number);
394                 return -EEXIST;
395         }
396
397         /* If the PHB has been in problematic state */
398         eeh_serialize_lock(&flags);
399         if (phb_pe->state & EEH_PE_ISOLATED) {
400                 ret = 0;
401                 goto out;
402         }
403
404         /* Check PHB state */
405         ret = eeh_ops->get_state(phb_pe, NULL);
406         if ((ret < 0) ||
407             (ret == EEH_STATE_NOT_SUPPORT) || eeh_state_active(ret)) {
408                 ret = 0;
409                 goto out;
410         }
411
412         /* Isolate the PHB and send event */
413         eeh_pe_state_mark(phb_pe, EEH_PE_ISOLATED);
414         eeh_serialize_unlock(flags);
415
416         pr_err("EEH: PHB#%x failure detected, location: %s\n",
417                 phb_pe->phb->global_number, eeh_pe_loc_get(phb_pe));
418         dump_stack();
419         eeh_send_failure_event(phb_pe);
420
421         return 1;
422 out:
423         eeh_serialize_unlock(flags);
424         return ret;
425 }
426
427 /**
428  * eeh_dev_check_failure - Check if all 1's data is due to EEH slot freeze
429  * @edev: eeh device
430  *
431  * Check for an EEH failure for the given device node.  Call this
432  * routine if the result of a read was all 0xff's and you want to
433  * find out if this is due to an EEH slot freeze.  This routine
434  * will query firmware for the EEH status.
435  *
436  * Returns 0 if there has not been an EEH error; otherwise returns
437  * a non-zero value and queues up a slot isolation event notification.
438  *
439  * It is safe to call this routine in an interrupt context.
440  */
441 int eeh_dev_check_failure(struct eeh_dev *edev)
442 {
443         int ret;
444         unsigned long flags;
445         struct device_node *dn;
446         struct pci_dev *dev;
447         struct eeh_pe *pe, *parent_pe, *phb_pe;
448         int rc = 0;
449         const char *location = NULL;
450
451         eeh_stats.total_mmio_ffs++;
452
453         if (!eeh_enabled())
454                 return 0;
455
456         if (!edev) {
457                 eeh_stats.no_dn++;
458                 return 0;
459         }
460         dev = eeh_dev_to_pci_dev(edev);
461         pe = eeh_dev_to_pe(edev);
462
463         /* Access to IO BARs might get this far and still not want checking. */
464         if (!pe) {
465                 eeh_stats.ignored_check++;
466                 pr_debug("EEH: Ignored check for %s\n",
467                         eeh_pci_name(dev));
468                 return 0;
469         }
470
471         if (!pe->addr && !pe->config_addr) {
472                 eeh_stats.no_cfg_addr++;
473                 return 0;
474         }
475
476         /*
477          * On PowerNV platform, we might already have fenced PHB
478          * there and we need take care of that firstly.
479          */
480         ret = eeh_phb_check_failure(pe);
481         if (ret > 0)
482                 return ret;
483
484         /*
485          * If the PE isn't owned by us, we shouldn't check the
486          * state. Instead, let the owner handle it if the PE has
487          * been frozen.
488          */
489         if (eeh_pe_passed(pe))
490                 return 0;
491
492         /* If we already have a pending isolation event for this
493          * slot, we know it's bad already, we don't need to check.
494          * Do this checking under a lock; as multiple PCI devices
495          * in one slot might report errors simultaneously, and we
496          * only want one error recovery routine running.
497          */
498         eeh_serialize_lock(&flags);
499         rc = 1;
500         if (pe->state & EEH_PE_ISOLATED) {
501                 pe->check_count++;
502                 if (pe->check_count == EEH_MAX_FAILS) {
503                         dn = pci_device_to_OF_node(dev);
504                         if (dn)
505                                 location = of_get_property(dn, "ibm,loc-code",
506                                                 NULL);
507                         printk(KERN_ERR "EEH: %d reads ignored for recovering device at "
508                                 "location=%s driver=%s pci addr=%s\n",
509                                 pe->check_count,
510                                 location ? location : "unknown",
511                                 eeh_driver_name(dev), eeh_pci_name(dev));
512                         printk(KERN_ERR "EEH: Might be infinite loop in %s driver\n",
513                                 eeh_driver_name(dev));
514                         dump_stack();
515                 }
516                 goto dn_unlock;
517         }
518
519         /*
520          * Now test for an EEH failure.  This is VERY expensive.
521          * Note that the eeh_config_addr may be a parent device
522          * in the case of a device behind a bridge, or it may be
523          * function zero of a multi-function device.
524          * In any case they must share a common PHB.
525          */
526         ret = eeh_ops->get_state(pe, NULL);
527
528         /* Note that config-io to empty slots may fail;
529          * they are empty when they don't have children.
530          * We will punt with the following conditions: Failure to get
531          * PE's state, EEH not support and Permanently unavailable
532          * state, PE is in good state.
533          */
534         if ((ret < 0) ||
535             (ret == EEH_STATE_NOT_SUPPORT) || eeh_state_active(ret)) {
536                 eeh_stats.false_positives++;
537                 pe->false_positives++;
538                 rc = 0;
539                 goto dn_unlock;
540         }
541
542         /*
543          * It should be corner case that the parent PE has been
544          * put into frozen state as well. We should take care
545          * that at first.
546          */
547         parent_pe = pe->parent;
548         while (parent_pe) {
549                 /* Hit the ceiling ? */
550                 if (parent_pe->type & EEH_PE_PHB)
551                         break;
552
553                 /* Frozen parent PE ? */
554                 ret = eeh_ops->get_state(parent_pe, NULL);
555                 if (ret > 0 && !eeh_state_active(ret)) {
556                         pe = parent_pe;
557                         pr_err("EEH: Failure of PHB#%x-PE#%x will be handled at parent PHB#%x-PE#%x.\n",
558                                pe->phb->global_number, pe->addr,
559                                pe->phb->global_number, parent_pe->addr);
560                 }
561
562                 /* Next parent level */
563                 parent_pe = parent_pe->parent;
564         }
565
566         eeh_stats.slot_resets++;
567
568         /* Avoid repeated reports of this failure, including problems
569          * with other functions on this device, and functions under
570          * bridges.
571          */
572         eeh_pe_state_mark(pe, EEH_PE_ISOLATED);
573         eeh_serialize_unlock(flags);
574
575         /* Most EEH events are due to device driver bugs.  Having
576          * a stack trace will help the device-driver authors figure
577          * out what happened.  So print that out.
578          */
579         phb_pe = eeh_phb_pe_get(pe->phb);
580         pr_err("EEH: Frozen PHB#%x-PE#%x detected\n",
581                pe->phb->global_number, pe->addr);
582         pr_err("EEH: PE location: %s, PHB location: %s\n",
583                eeh_pe_loc_get(pe), eeh_pe_loc_get(phb_pe));
584         dump_stack();
585
586         eeh_send_failure_event(pe);
587
588         return 1;
589
590 dn_unlock:
591         eeh_serialize_unlock(flags);
592         return rc;
593 }
594
595 EXPORT_SYMBOL_GPL(eeh_dev_check_failure);
596
597 /**
598  * eeh_check_failure - Check if all 1's data is due to EEH slot freeze
599  * @token: I/O address
600  *
601  * Check for an EEH failure at the given I/O address. Call this
602  * routine if the result of a read was all 0xff's and you want to
603  * find out if this is due to an EEH slot freeze event. This routine
604  * will query firmware for the EEH status.
605  *
606  * Note this routine is safe to call in an interrupt context.
607  */
608 int eeh_check_failure(const volatile void __iomem *token)
609 {
610         unsigned long addr;
611         struct eeh_dev *edev;
612
613         /* Finding the phys addr + pci device; this is pretty quick. */
614         addr = eeh_token_to_phys((unsigned long __force) token);
615         edev = eeh_addr_cache_get_dev(addr);
616         if (!edev) {
617                 eeh_stats.no_device++;
618                 return 0;
619         }
620
621         return eeh_dev_check_failure(edev);
622 }
623 EXPORT_SYMBOL(eeh_check_failure);
624
625
626 /**
627  * eeh_pci_enable - Enable MMIO or DMA transfers for this slot
628  * @pe: EEH PE
629  *
630  * This routine should be called to reenable frozen MMIO or DMA
631  * so that it would work correctly again. It's useful while doing
632  * recovery or log collection on the indicated device.
633  */
634 int eeh_pci_enable(struct eeh_pe *pe, int function)
635 {
636         int active_flag, rc;
637
638         /*
639          * pHyp doesn't allow to enable IO or DMA on unfrozen PE.
640          * Also, it's pointless to enable them on unfrozen PE. So
641          * we have to check before enabling IO or DMA.
642          */
643         switch (function) {
644         case EEH_OPT_THAW_MMIO:
645                 active_flag = EEH_STATE_MMIO_ACTIVE | EEH_STATE_MMIO_ENABLED;
646                 break;
647         case EEH_OPT_THAW_DMA:
648                 active_flag = EEH_STATE_DMA_ACTIVE;
649                 break;
650         case EEH_OPT_DISABLE:
651         case EEH_OPT_ENABLE:
652         case EEH_OPT_FREEZE_PE:
653                 active_flag = 0;
654                 break;
655         default:
656                 pr_warn("%s: Invalid function %d\n",
657                         __func__, function);
658                 return -EINVAL;
659         }
660
661         /*
662          * Check if IO or DMA has been enabled before
663          * enabling them.
664          */
665         if (active_flag) {
666                 rc = eeh_ops->get_state(pe, NULL);
667                 if (rc < 0)
668                         return rc;
669
670                 /* Needn't enable it at all */
671                 if (rc == EEH_STATE_NOT_SUPPORT)
672                         return 0;
673
674                 /* It's already enabled */
675                 if (rc & active_flag)
676                         return 0;
677         }
678
679
680         /* Issue the request */
681         rc = eeh_ops->set_option(pe, function);
682         if (rc)
683                 pr_warn("%s: Unexpected state change %d on "
684                         "PHB#%x-PE#%x, err=%d\n",
685                         __func__, function, pe->phb->global_number,
686                         pe->addr, rc);
687
688         /* Check if the request is finished successfully */
689         if (active_flag) {
690                 rc = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
691                 if (rc < 0)
692                         return rc;
693
694                 if (rc & active_flag)
695                         return 0;
696
697                 return -EIO;
698         }
699
700         return rc;
701 }
702
703 static void *eeh_disable_and_save_dev_state(struct eeh_dev *edev,
704                                             void *userdata)
705 {
706         struct pci_dev *pdev = eeh_dev_to_pci_dev(edev);
707         struct pci_dev *dev = userdata;
708
709         /*
710          * The caller should have disabled and saved the
711          * state for the specified device
712          */
713         if (!pdev || pdev == dev)
714                 return NULL;
715
716         /* Ensure we have D0 power state */
717         pci_set_power_state(pdev, PCI_D0);
718
719         /* Save device state */
720         pci_save_state(pdev);
721
722         /*
723          * Disable device to avoid any DMA traffic and
724          * interrupt from the device
725          */
726         pci_write_config_word(pdev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE);
727
728         return NULL;
729 }
730
731 static void *eeh_restore_dev_state(struct eeh_dev *edev, void *userdata)
732 {
733         struct pci_dn *pdn = eeh_dev_to_pdn(edev);
734         struct pci_dev *pdev = eeh_dev_to_pci_dev(edev);
735         struct pci_dev *dev = userdata;
736
737         if (!pdev)
738                 return NULL;
739
740         /* Apply customization from firmware */
741         if (pdn && eeh_ops->restore_config)
742                 eeh_ops->restore_config(pdn);
743
744         /* The caller should restore state for the specified device */
745         if (pdev != dev)
746                 pci_restore_state(pdev);
747
748         return NULL;
749 }
750
751 int eeh_restore_vf_config(struct pci_dn *pdn)
752 {
753         struct eeh_dev *edev = pdn_to_eeh_dev(pdn);
754         u32 devctl, cmd, cap2, aer_capctl;
755         int old_mps;
756
757         if (edev->pcie_cap) {
758                 /* Restore MPS */
759                 old_mps = (ffs(pdn->mps) - 8) << 5;
760                 eeh_ops->read_config(pdn, edev->pcie_cap + PCI_EXP_DEVCTL,
761                                      2, &devctl);
762                 devctl &= ~PCI_EXP_DEVCTL_PAYLOAD;
763                 devctl |= old_mps;
764                 eeh_ops->write_config(pdn, edev->pcie_cap + PCI_EXP_DEVCTL,
765                                       2, devctl);
766
767                 /* Disable Completion Timeout if possible */
768                 eeh_ops->read_config(pdn, edev->pcie_cap + PCI_EXP_DEVCAP2,
769                                      4, &cap2);
770                 if (cap2 & PCI_EXP_DEVCAP2_COMP_TMOUT_DIS) {
771                         eeh_ops->read_config(pdn,
772                                              edev->pcie_cap + PCI_EXP_DEVCTL2,
773                                              4, &cap2);
774                         cap2 |= PCI_EXP_DEVCTL2_COMP_TMOUT_DIS;
775                         eeh_ops->write_config(pdn,
776                                               edev->pcie_cap + PCI_EXP_DEVCTL2,
777                                               4, cap2);
778                 }
779         }
780
781         /* Enable SERR and parity checking */
782         eeh_ops->read_config(pdn, PCI_COMMAND, 2, &cmd);
783         cmd |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
784         eeh_ops->write_config(pdn, PCI_COMMAND, 2, cmd);
785
786         /* Enable report various errors */
787         if (edev->pcie_cap) {
788                 eeh_ops->read_config(pdn, edev->pcie_cap + PCI_EXP_DEVCTL,
789                                      2, &devctl);
790                 devctl &= ~PCI_EXP_DEVCTL_CERE;
791                 devctl |= (PCI_EXP_DEVCTL_NFERE |
792                            PCI_EXP_DEVCTL_FERE |
793                            PCI_EXP_DEVCTL_URRE);
794                 eeh_ops->write_config(pdn, edev->pcie_cap + PCI_EXP_DEVCTL,
795                                       2, devctl);
796         }
797
798         /* Enable ECRC generation and check */
799         if (edev->pcie_cap && edev->aer_cap) {
800                 eeh_ops->read_config(pdn, edev->aer_cap + PCI_ERR_CAP,
801                                      4, &aer_capctl);
802                 aer_capctl |= (PCI_ERR_CAP_ECRC_GENE | PCI_ERR_CAP_ECRC_CHKE);
803                 eeh_ops->write_config(pdn, edev->aer_cap + PCI_ERR_CAP,
804                                       4, aer_capctl);
805         }
806
807         return 0;
808 }
809
810 /**
811  * pcibios_set_pcie_reset_state - Set PCI-E reset state
812  * @dev: pci device struct
813  * @state: reset state to enter
814  *
815  * Return value:
816  *      0 if success
817  */
818 int pcibios_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
819 {
820         struct eeh_dev *edev = pci_dev_to_eeh_dev(dev);
821         struct eeh_pe *pe = eeh_dev_to_pe(edev);
822
823         if (!pe) {
824                 pr_err("%s: No PE found on PCI device %s\n",
825                         __func__, pci_name(dev));
826                 return -EINVAL;
827         }
828
829         switch (state) {
830         case pcie_deassert_reset:
831                 eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
832                 eeh_unfreeze_pe(pe, false);
833                 if (!(pe->type & EEH_PE_VF))
834                         eeh_pe_state_clear(pe, EEH_PE_CFG_BLOCKED);
835                 eeh_pe_dev_traverse(pe, eeh_restore_dev_state, dev);
836                 eeh_pe_state_clear(pe, EEH_PE_ISOLATED);
837                 break;
838         case pcie_hot_reset:
839                 eeh_pe_state_mark_with_cfg(pe, EEH_PE_ISOLATED);
840                 eeh_ops->set_option(pe, EEH_OPT_FREEZE_PE);
841                 eeh_pe_dev_traverse(pe, eeh_disable_and_save_dev_state, dev);
842                 if (!(pe->type & EEH_PE_VF))
843                         eeh_pe_state_mark(pe, EEH_PE_CFG_BLOCKED);
844                 eeh_ops->reset(pe, EEH_RESET_HOT);
845                 break;
846         case pcie_warm_reset:
847                 eeh_pe_state_mark_with_cfg(pe, EEH_PE_ISOLATED);
848                 eeh_ops->set_option(pe, EEH_OPT_FREEZE_PE);
849                 eeh_pe_dev_traverse(pe, eeh_disable_and_save_dev_state, dev);
850                 if (!(pe->type & EEH_PE_VF))
851                         eeh_pe_state_mark(pe, EEH_PE_CFG_BLOCKED);
852                 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
853                 break;
854         default:
855                 eeh_pe_state_clear(pe, EEH_PE_ISOLATED | EEH_PE_CFG_BLOCKED);
856                 return -EINVAL;
857         };
858
859         return 0;
860 }
861
862 /**
863  * eeh_set_pe_freset - Check the required reset for the indicated device
864  * @data: EEH device
865  * @flag: return value
866  *
867  * Each device might have its preferred reset type: fundamental or
868  * hot reset. The routine is used to collected the information for
869  * the indicated device and its children so that the bunch of the
870  * devices could be reset properly.
871  */
872 static void *eeh_set_dev_freset(struct eeh_dev *edev, void *flag)
873 {
874         struct pci_dev *dev;
875         unsigned int *freset = (unsigned int *)flag;
876
877         dev = eeh_dev_to_pci_dev(edev);
878         if (dev)
879                 *freset |= dev->needs_freset;
880
881         return NULL;
882 }
883
884 /**
885  * eeh_pe_reset_full - Complete a full reset process on the indicated PE
886  * @pe: EEH PE
887  *
888  * This function executes a full reset procedure on a PE, including setting
889  * the appropriate flags, performing a fundamental or hot reset, and then
890  * deactivating the reset status.  It is designed to be used within the EEH
891  * subsystem, as opposed to eeh_pe_reset which is exported to drivers and
892  * only performs a single operation at a time.
893  *
894  * This function will attempt to reset a PE three times before failing.
895  */
896 int eeh_pe_reset_full(struct eeh_pe *pe)
897 {
898         int reset_state = (EEH_PE_RESET | EEH_PE_CFG_BLOCKED);
899         int type = EEH_RESET_HOT;
900         unsigned int freset = 0;
901         int i, state, ret;
902
903         /*
904          * Determine the type of reset to perform - hot or fundamental.
905          * Hot reset is the default operation, unless any device under the
906          * PE requires a fundamental reset.
907          */
908         eeh_pe_dev_traverse(pe, eeh_set_dev_freset, &freset);
909
910         if (freset)
911                 type = EEH_RESET_FUNDAMENTAL;
912
913         /* Mark the PE as in reset state and block config space accesses */
914         eeh_pe_state_mark(pe, reset_state);
915
916         /* Make three attempts at resetting the bus */
917         for (i = 0; i < 3; i++) {
918                 ret = eeh_pe_reset(pe, type);
919                 if (ret)
920                         break;
921
922                 ret = eeh_pe_reset(pe, EEH_RESET_DEACTIVATE);
923                 if (ret)
924                         break;
925
926                 /* Wait until the PE is in a functioning state */
927                 state = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
928                 if (eeh_state_active(state))
929                         break;
930
931                 if (state < 0) {
932                         pr_warn("%s: Unrecoverable slot failure on PHB#%x-PE#%x",
933                                 __func__, pe->phb->global_number, pe->addr);
934                         ret = -ENOTRECOVERABLE;
935                         break;
936                 }
937
938                 /* Set error in case this is our last attempt */
939                 ret = -EIO;
940                 pr_warn("%s: Failure %d resetting PHB#%x-PE#%x\n (%d)\n",
941                         __func__, state, pe->phb->global_number, pe->addr, (i + 1));
942         }
943
944         eeh_pe_state_clear(pe, reset_state);
945         return ret;
946 }
947
948 /**
949  * eeh_save_bars - Save device bars
950  * @edev: PCI device associated EEH device
951  *
952  * Save the values of the device bars. Unlike the restore
953  * routine, this routine is *not* recursive. This is because
954  * PCI devices are added individually; but, for the restore,
955  * an entire slot is reset at a time.
956  */
957 void eeh_save_bars(struct eeh_dev *edev)
958 {
959         struct pci_dn *pdn;
960         int i;
961
962         pdn = eeh_dev_to_pdn(edev);
963         if (!pdn)
964                 return;
965
966         for (i = 0; i < 16; i++)
967                 eeh_ops->read_config(pdn, i * 4, 4, &edev->config_space[i]);
968
969         /*
970          * For PCI bridges including root port, we need enable bus
971          * master explicitly. Otherwise, it can't fetch IODA table
972          * entries correctly. So we cache the bit in advance so that
973          * we can restore it after reset, either PHB range or PE range.
974          */
975         if (edev->mode & EEH_DEV_BRIDGE)
976                 edev->config_space[1] |= PCI_COMMAND_MASTER;
977 }
978
979 /**
980  * eeh_ops_register - Register platform dependent EEH operations
981  * @ops: platform dependent EEH operations
982  *
983  * Register the platform dependent EEH operation callback
984  * functions. The platform should call this function before
985  * any other EEH operations.
986  */
987 int __init eeh_ops_register(struct eeh_ops *ops)
988 {
989         if (!ops->name) {
990                 pr_warn("%s: Invalid EEH ops name for %p\n",
991                         __func__, ops);
992                 return -EINVAL;
993         }
994
995         if (eeh_ops && eeh_ops != ops) {
996                 pr_warn("%s: EEH ops of platform %s already existing (%s)\n",
997                         __func__, eeh_ops->name, ops->name);
998                 return -EEXIST;
999         }
1000
1001         eeh_ops = ops;
1002
1003         return 0;
1004 }
1005
1006 /**
1007  * eeh_ops_unregister - Unreigster platform dependent EEH operations
1008  * @name: name of EEH platform operations
1009  *
1010  * Unregister the platform dependent EEH operation callback
1011  * functions.
1012  */
1013 int __exit eeh_ops_unregister(const char *name)
1014 {
1015         if (!name || !strlen(name)) {
1016                 pr_warn("%s: Invalid EEH ops name\n",
1017                         __func__);
1018                 return -EINVAL;
1019         }
1020
1021         if (eeh_ops && !strcmp(eeh_ops->name, name)) {
1022                 eeh_ops = NULL;
1023                 return 0;
1024         }
1025
1026         return -EEXIST;
1027 }
1028
1029 static int eeh_reboot_notifier(struct notifier_block *nb,
1030                                unsigned long action, void *unused)
1031 {
1032         eeh_clear_flag(EEH_ENABLED);
1033         return NOTIFY_DONE;
1034 }
1035
1036 static struct notifier_block eeh_reboot_nb = {
1037         .notifier_call = eeh_reboot_notifier,
1038 };
1039
1040 void eeh_probe_devices(void)
1041 {
1042         struct pci_controller *hose, *tmp;
1043         struct pci_dn *pdn;
1044
1045         /* Enable EEH for all adapters */
1046         list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1047                 pdn = hose->pci_data;
1048                 traverse_pci_dn(pdn, eeh_ops->probe, NULL);
1049         }
1050 }
1051
1052 /**
1053  * eeh_init - EEH initialization
1054  *
1055  * Initialize EEH by trying to enable it for all of the adapters in the system.
1056  * As a side effect we can determine here if eeh is supported at all.
1057  * Note that we leave EEH on so failed config cycles won't cause a machine
1058  * check.  If a user turns off EEH for a particular adapter they are really
1059  * telling Linux to ignore errors.  Some hardware (e.g. POWER5) won't
1060  * grant access to a slot if EEH isn't enabled, and so we always enable
1061  * EEH for all slots/all devices.
1062  *
1063  * The eeh-force-off option disables EEH checking globally, for all slots.
1064  * Even if force-off is set, the EEH hardware is still enabled, so that
1065  * newer systems can boot.
1066  */
1067 static int eeh_init(void)
1068 {
1069         struct pci_controller *hose, *tmp;
1070         int ret = 0;
1071
1072         /* Register reboot notifier */
1073         ret = register_reboot_notifier(&eeh_reboot_nb);
1074         if (ret) {
1075                 pr_warn("%s: Failed to register notifier (%d)\n",
1076                         __func__, ret);
1077                 return ret;
1078         }
1079
1080         /* call platform initialization function */
1081         if (!eeh_ops) {
1082                 pr_warn("%s: Platform EEH operation not found\n",
1083                         __func__);
1084                 return -EEXIST;
1085         } else if ((ret = eeh_ops->init()))
1086                 return ret;
1087
1088         /* Initialize PHB PEs */
1089         list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1090                 eeh_dev_phb_init_dynamic(hose);
1091
1092         /* Initialize EEH event */
1093         ret = eeh_event_init();
1094         if (ret)
1095                 return ret;
1096
1097         eeh_probe_devices();
1098
1099         if (eeh_enabled())
1100                 pr_info("EEH: PCI Enhanced I/O Error Handling Enabled\n");
1101         else if (!eeh_has_flag(EEH_POSTPONED_PROBE))
1102                 pr_info("EEH: No capable adapters found\n");
1103
1104         return ret;
1105 }
1106
1107 core_initcall_sync(eeh_init);
1108
1109 /**
1110  * eeh_add_device_early - Enable EEH for the indicated device node
1111  * @pdn: PCI device node for which to set up EEH
1112  *
1113  * This routine must be used to perform EEH initialization for PCI
1114  * devices that were added after system boot (e.g. hotplug, dlpar).
1115  * This routine must be called before any i/o is performed to the
1116  * adapter (inluding any config-space i/o).
1117  * Whether this actually enables EEH or not for this device depends
1118  * on the CEC architecture, type of the device, on earlier boot
1119  * command-line arguments & etc.
1120  */
1121 void eeh_add_device_early(struct pci_dn *pdn)
1122 {
1123         struct pci_controller *phb = pdn ? pdn->phb : NULL;
1124         struct eeh_dev *edev = pdn_to_eeh_dev(pdn);
1125
1126         if (!edev)
1127                 return;
1128
1129         if (!eeh_has_flag(EEH_PROBE_MODE_DEVTREE))
1130                 return;
1131
1132         /* USB Bus children of PCI devices will not have BUID's */
1133         if (NULL == phb ||
1134             (eeh_has_flag(EEH_PROBE_MODE_DEVTREE) && 0 == phb->buid))
1135                 return;
1136
1137         eeh_ops->probe(pdn, NULL);
1138 }
1139
1140 /**
1141  * eeh_add_device_tree_early - Enable EEH for the indicated device
1142  * @pdn: PCI device node
1143  *
1144  * This routine must be used to perform EEH initialization for the
1145  * indicated PCI device that was added after system boot (e.g.
1146  * hotplug, dlpar).
1147  */
1148 void eeh_add_device_tree_early(struct pci_dn *pdn)
1149 {
1150         struct pci_dn *n;
1151
1152         if (!pdn)
1153                 return;
1154
1155         list_for_each_entry(n, &pdn->child_list, list)
1156                 eeh_add_device_tree_early(n);
1157         eeh_add_device_early(pdn);
1158 }
1159 EXPORT_SYMBOL_GPL(eeh_add_device_tree_early);
1160
1161 /**
1162  * eeh_add_device_late - Perform EEH initialization for the indicated pci device
1163  * @dev: pci device for which to set up EEH
1164  *
1165  * This routine must be used to complete EEH initialization for PCI
1166  * devices that were added after system boot (e.g. hotplug, dlpar).
1167  */
1168 void eeh_add_device_late(struct pci_dev *dev)
1169 {
1170         struct pci_dn *pdn;
1171         struct eeh_dev *edev;
1172
1173         if (!dev || !eeh_enabled())
1174                 return;
1175
1176         pr_debug("EEH: Adding device %s\n", pci_name(dev));
1177
1178         pdn = pci_get_pdn_by_devfn(dev->bus, dev->devfn);
1179         edev = pdn_to_eeh_dev(pdn);
1180         if (edev->pdev == dev) {
1181                 pr_debug("EEH: Already referenced !\n");
1182                 return;
1183         }
1184
1185         /*
1186          * The EEH cache might not be removed correctly because of
1187          * unbalanced kref to the device during unplug time, which
1188          * relies on pcibios_release_device(). So we have to remove
1189          * that here explicitly.
1190          */
1191         if (edev->pdev) {
1192                 eeh_rmv_from_parent_pe(edev);
1193                 eeh_addr_cache_rmv_dev(edev->pdev);
1194                 eeh_sysfs_remove_device(edev->pdev);
1195                 edev->mode &= ~EEH_DEV_SYSFS;
1196
1197                 /*
1198                  * We definitely should have the PCI device removed
1199                  * though it wasn't correctly. So we needn't call
1200                  * into error handler afterwards.
1201                  */
1202                 edev->mode |= EEH_DEV_NO_HANDLER;
1203
1204                 edev->pdev = NULL;
1205                 dev->dev.archdata.edev = NULL;
1206         }
1207
1208         if (eeh_has_flag(EEH_PROBE_MODE_DEV))
1209                 eeh_ops->probe(pdn, NULL);
1210
1211         edev->pdev = dev;
1212         dev->dev.archdata.edev = edev;
1213
1214         eeh_addr_cache_insert_dev(dev);
1215 }
1216
1217 /**
1218  * eeh_add_device_tree_late - Perform EEH initialization for the indicated PCI bus
1219  * @bus: PCI bus
1220  *
1221  * This routine must be used to perform EEH initialization for PCI
1222  * devices which are attached to the indicated PCI bus. The PCI bus
1223  * is added after system boot through hotplug or dlpar.
1224  */
1225 void eeh_add_device_tree_late(struct pci_bus *bus)
1226 {
1227         struct pci_dev *dev;
1228
1229         list_for_each_entry(dev, &bus->devices, bus_list) {
1230                 eeh_add_device_late(dev);
1231                 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
1232                         struct pci_bus *subbus = dev->subordinate;
1233                         if (subbus)
1234                                 eeh_add_device_tree_late(subbus);
1235                 }
1236         }
1237 }
1238 EXPORT_SYMBOL_GPL(eeh_add_device_tree_late);
1239
1240 /**
1241  * eeh_add_sysfs_files - Add EEH sysfs files for the indicated PCI bus
1242  * @bus: PCI bus
1243  *
1244  * This routine must be used to add EEH sysfs files for PCI
1245  * devices which are attached to the indicated PCI bus. The PCI bus
1246  * is added after system boot through hotplug or dlpar.
1247  */
1248 void eeh_add_sysfs_files(struct pci_bus *bus)
1249 {
1250         struct pci_dev *dev;
1251
1252         list_for_each_entry(dev, &bus->devices, bus_list) {
1253                 eeh_sysfs_add_device(dev);
1254                 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
1255                         struct pci_bus *subbus = dev->subordinate;
1256                         if (subbus)
1257                                 eeh_add_sysfs_files(subbus);
1258                 }
1259         }
1260 }
1261 EXPORT_SYMBOL_GPL(eeh_add_sysfs_files);
1262
1263 /**
1264  * eeh_remove_device - Undo EEH setup for the indicated pci device
1265  * @dev: pci device to be removed
1266  *
1267  * This routine should be called when a device is removed from
1268  * a running system (e.g. by hotplug or dlpar).  It unregisters
1269  * the PCI device from the EEH subsystem.  I/O errors affecting
1270  * this device will no longer be detected after this call; thus,
1271  * i/o errors affecting this slot may leave this device unusable.
1272  */
1273 void eeh_remove_device(struct pci_dev *dev)
1274 {
1275         struct eeh_dev *edev;
1276
1277         if (!dev || !eeh_enabled())
1278                 return;
1279         edev = pci_dev_to_eeh_dev(dev);
1280
1281         /* Unregister the device with the EEH/PCI address search system */
1282         pr_debug("EEH: Removing device %s\n", pci_name(dev));
1283
1284         if (!edev || !edev->pdev || !edev->pe) {
1285                 pr_debug("EEH: Not referenced !\n");
1286                 return;
1287         }
1288
1289         /*
1290          * During the hotplug for EEH error recovery, we need the EEH
1291          * device attached to the parent PE in order for BAR restore
1292          * a bit later. So we keep it for BAR restore and remove it
1293          * from the parent PE during the BAR resotre.
1294          */
1295         edev->pdev = NULL;
1296
1297         /*
1298          * The flag "in_error" is used to trace EEH devices for VFs
1299          * in error state or not. It's set in eeh_report_error(). If
1300          * it's not set, eeh_report_{reset,resume}() won't be called
1301          * for the VF EEH device.
1302          */
1303         edev->in_error = false;
1304         dev->dev.archdata.edev = NULL;
1305         if (!(edev->pe->state & EEH_PE_KEEP))
1306                 eeh_rmv_from_parent_pe(edev);
1307         else
1308                 edev->mode |= EEH_DEV_DISCONNECTED;
1309
1310         /*
1311          * We're removing from the PCI subsystem, that means
1312          * the PCI device driver can't support EEH or not
1313          * well. So we rely on hotplug completely to do recovery
1314          * for the specific PCI device.
1315          */
1316         edev->mode |= EEH_DEV_NO_HANDLER;
1317
1318         eeh_addr_cache_rmv_dev(dev);
1319         eeh_sysfs_remove_device(dev);
1320         edev->mode &= ~EEH_DEV_SYSFS;
1321 }
1322
1323 int eeh_unfreeze_pe(struct eeh_pe *pe, bool sw_state)
1324 {
1325         int ret;
1326
1327         ret = eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
1328         if (ret) {
1329                 pr_warn("%s: Failure %d enabling IO on PHB#%x-PE#%x\n",
1330                         __func__, ret, pe->phb->global_number, pe->addr);
1331                 return ret;
1332         }
1333
1334         ret = eeh_pci_enable(pe, EEH_OPT_THAW_DMA);
1335         if (ret) {
1336                 pr_warn("%s: Failure %d enabling DMA on PHB#%x-PE#%x\n",
1337                         __func__, ret, pe->phb->global_number, pe->addr);
1338                 return ret;
1339         }
1340
1341         /* Clear software isolated state */
1342         if (sw_state && (pe->state & EEH_PE_ISOLATED))
1343                 eeh_pe_state_clear(pe, EEH_PE_ISOLATED);
1344
1345         return ret;
1346 }
1347
1348
1349 static struct pci_device_id eeh_reset_ids[] = {
1350         { PCI_DEVICE(0x19a2, 0x0710) }, /* Emulex, BE     */
1351         { PCI_DEVICE(0x10df, 0xe220) }, /* Emulex, Lancer */
1352         { PCI_DEVICE(0x14e4, 0x1657) }, /* Broadcom BCM5719 */
1353         { 0 }
1354 };
1355
1356 static int eeh_pe_change_owner(struct eeh_pe *pe)
1357 {
1358         struct eeh_dev *edev, *tmp;
1359         struct pci_dev *pdev;
1360         struct pci_device_id *id;
1361         int ret;
1362
1363         /* Check PE state */
1364         ret = eeh_ops->get_state(pe, NULL);
1365         if (ret < 0 || ret == EEH_STATE_NOT_SUPPORT)
1366                 return 0;
1367
1368         /* Unfrozen PE, nothing to do */
1369         if (eeh_state_active(ret))
1370                 return 0;
1371
1372         /* Frozen PE, check if it needs PE level reset */
1373         eeh_pe_for_each_dev(pe, edev, tmp) {
1374                 pdev = eeh_dev_to_pci_dev(edev);
1375                 if (!pdev)
1376                         continue;
1377
1378                 for (id = &eeh_reset_ids[0]; id->vendor != 0; id++) {
1379                         if (id->vendor != PCI_ANY_ID &&
1380                             id->vendor != pdev->vendor)
1381                                 continue;
1382                         if (id->device != PCI_ANY_ID &&
1383                             id->device != pdev->device)
1384                                 continue;
1385                         if (id->subvendor != PCI_ANY_ID &&
1386                             id->subvendor != pdev->subsystem_vendor)
1387                                 continue;
1388                         if (id->subdevice != PCI_ANY_ID &&
1389                             id->subdevice != pdev->subsystem_device)
1390                                 continue;
1391
1392                         return eeh_pe_reset_and_recover(pe);
1393                 }
1394         }
1395
1396         return eeh_unfreeze_pe(pe, true);
1397 }
1398
1399 /**
1400  * eeh_dev_open - Increase count of pass through devices for PE
1401  * @pdev: PCI device
1402  *
1403  * Increase count of passed through devices for the indicated
1404  * PE. In the result, the EEH errors detected on the PE won't be
1405  * reported. The PE owner will be responsible for detection
1406  * and recovery.
1407  */
1408 int eeh_dev_open(struct pci_dev *pdev)
1409 {
1410         struct eeh_dev *edev;
1411         int ret = -ENODEV;
1412
1413         mutex_lock(&eeh_dev_mutex);
1414
1415         /* No PCI device ? */
1416         if (!pdev)
1417                 goto out;
1418
1419         /* No EEH device or PE ? */
1420         edev = pci_dev_to_eeh_dev(pdev);
1421         if (!edev || !edev->pe)
1422                 goto out;
1423
1424         /*
1425          * The PE might have been put into frozen state, but we
1426          * didn't detect that yet. The passed through PCI devices
1427          * in frozen PE won't work properly. Clear the frozen state
1428          * in advance.
1429          */
1430         ret = eeh_pe_change_owner(edev->pe);
1431         if (ret)
1432                 goto out;
1433
1434         /* Increase PE's pass through count */
1435         atomic_inc(&edev->pe->pass_dev_cnt);
1436         mutex_unlock(&eeh_dev_mutex);
1437
1438         return 0;
1439 out:
1440         mutex_unlock(&eeh_dev_mutex);
1441         return ret;
1442 }
1443 EXPORT_SYMBOL_GPL(eeh_dev_open);
1444
1445 /**
1446  * eeh_dev_release - Decrease count of pass through devices for PE
1447  * @pdev: PCI device
1448  *
1449  * Decrease count of pass through devices for the indicated PE. If
1450  * there is no passed through device in PE, the EEH errors detected
1451  * on the PE will be reported and handled as usual.
1452  */
1453 void eeh_dev_release(struct pci_dev *pdev)
1454 {
1455         struct eeh_dev *edev;
1456
1457         mutex_lock(&eeh_dev_mutex);
1458
1459         /* No PCI device ? */
1460         if (!pdev)
1461                 goto out;
1462
1463         /* No EEH device ? */
1464         edev = pci_dev_to_eeh_dev(pdev);
1465         if (!edev || !edev->pe || !eeh_pe_passed(edev->pe))
1466                 goto out;
1467
1468         /* Decrease PE's pass through count */
1469         WARN_ON(atomic_dec_if_positive(&edev->pe->pass_dev_cnt) < 0);
1470         eeh_pe_change_owner(edev->pe);
1471 out:
1472         mutex_unlock(&eeh_dev_mutex);
1473 }
1474 EXPORT_SYMBOL(eeh_dev_release);
1475
1476 #ifdef CONFIG_IOMMU_API
1477
1478 static int dev_has_iommu_table(struct device *dev, void *data)
1479 {
1480         struct pci_dev *pdev = to_pci_dev(dev);
1481         struct pci_dev **ppdev = data;
1482
1483         if (!dev)
1484                 return 0;
1485
1486         if (dev->iommu_group) {
1487                 *ppdev = pdev;
1488                 return 1;
1489         }
1490
1491         return 0;
1492 }
1493
1494 /**
1495  * eeh_iommu_group_to_pe - Convert IOMMU group to EEH PE
1496  * @group: IOMMU group
1497  *
1498  * The routine is called to convert IOMMU group to EEH PE.
1499  */
1500 struct eeh_pe *eeh_iommu_group_to_pe(struct iommu_group *group)
1501 {
1502         struct pci_dev *pdev = NULL;
1503         struct eeh_dev *edev;
1504         int ret;
1505
1506         /* No IOMMU group ? */
1507         if (!group)
1508                 return NULL;
1509
1510         ret = iommu_group_for_each_dev(group, &pdev, dev_has_iommu_table);
1511         if (!ret || !pdev)
1512                 return NULL;
1513
1514         /* No EEH device or PE ? */
1515         edev = pci_dev_to_eeh_dev(pdev);
1516         if (!edev || !edev->pe)
1517                 return NULL;
1518
1519         return edev->pe;
1520 }
1521 EXPORT_SYMBOL_GPL(eeh_iommu_group_to_pe);
1522
1523 #endif /* CONFIG_IOMMU_API */
1524
1525 /**
1526  * eeh_pe_set_option - Set options for the indicated PE
1527  * @pe: EEH PE
1528  * @option: requested option
1529  *
1530  * The routine is called to enable or disable EEH functionality
1531  * on the indicated PE, to enable IO or DMA for the frozen PE.
1532  */
1533 int eeh_pe_set_option(struct eeh_pe *pe, int option)
1534 {
1535         int ret = 0;
1536
1537         /* Invalid PE ? */
1538         if (!pe)
1539                 return -ENODEV;
1540
1541         /*
1542          * EEH functionality could possibly be disabled, just
1543          * return error for the case. And the EEH functinality
1544          * isn't expected to be disabled on one specific PE.
1545          */
1546         switch (option) {
1547         case EEH_OPT_ENABLE:
1548                 if (eeh_enabled()) {
1549                         ret = eeh_pe_change_owner(pe);
1550                         break;
1551                 }
1552                 ret = -EIO;
1553                 break;
1554         case EEH_OPT_DISABLE:
1555                 break;
1556         case EEH_OPT_THAW_MMIO:
1557         case EEH_OPT_THAW_DMA:
1558         case EEH_OPT_FREEZE_PE:
1559                 if (!eeh_ops || !eeh_ops->set_option) {
1560                         ret = -ENOENT;
1561                         break;
1562                 }
1563
1564                 ret = eeh_pci_enable(pe, option);
1565                 break;
1566         default:
1567                 pr_debug("%s: Option %d out of range (%d, %d)\n",
1568                         __func__, option, EEH_OPT_DISABLE, EEH_OPT_THAW_DMA);
1569                 ret = -EINVAL;
1570         }
1571
1572         return ret;
1573 }
1574 EXPORT_SYMBOL_GPL(eeh_pe_set_option);
1575
1576 /**
1577  * eeh_pe_get_state - Retrieve PE's state
1578  * @pe: EEH PE
1579  *
1580  * Retrieve the PE's state, which includes 3 aspects: enabled
1581  * DMA, enabled IO and asserted reset.
1582  */
1583 int eeh_pe_get_state(struct eeh_pe *pe)
1584 {
1585         int result, ret = 0;
1586         bool rst_active, dma_en, mmio_en;
1587
1588         /* Existing PE ? */
1589         if (!pe)
1590                 return -ENODEV;
1591
1592         if (!eeh_ops || !eeh_ops->get_state)
1593                 return -ENOENT;
1594
1595         /*
1596          * If the parent PE is owned by the host kernel and is undergoing
1597          * error recovery, we should return the PE state as temporarily
1598          * unavailable so that the error recovery on the guest is suspended
1599          * until the recovery completes on the host.
1600          */
1601         if (pe->parent &&
1602             !(pe->state & EEH_PE_REMOVED) &&
1603             (pe->parent->state & (EEH_PE_ISOLATED | EEH_PE_RECOVERING)))
1604                 return EEH_PE_STATE_UNAVAIL;
1605
1606         result = eeh_ops->get_state(pe, NULL);
1607         rst_active = !!(result & EEH_STATE_RESET_ACTIVE);
1608         dma_en = !!(result & EEH_STATE_DMA_ENABLED);
1609         mmio_en = !!(result & EEH_STATE_MMIO_ENABLED);
1610
1611         if (rst_active)
1612                 ret = EEH_PE_STATE_RESET;
1613         else if (dma_en && mmio_en)
1614                 ret = EEH_PE_STATE_NORMAL;
1615         else if (!dma_en && !mmio_en)
1616                 ret = EEH_PE_STATE_STOPPED_IO_DMA;
1617         else if (!dma_en && mmio_en)
1618                 ret = EEH_PE_STATE_STOPPED_DMA;
1619         else
1620                 ret = EEH_PE_STATE_UNAVAIL;
1621
1622         return ret;
1623 }
1624 EXPORT_SYMBOL_GPL(eeh_pe_get_state);
1625
1626 static int eeh_pe_reenable_devices(struct eeh_pe *pe)
1627 {
1628         struct eeh_dev *edev, *tmp;
1629         struct pci_dev *pdev;
1630         int ret = 0;
1631
1632         /* Restore config space */
1633         eeh_pe_restore_bars(pe);
1634
1635         /*
1636          * Reenable PCI devices as the devices passed
1637          * through are always enabled before the reset.
1638          */
1639         eeh_pe_for_each_dev(pe, edev, tmp) {
1640                 pdev = eeh_dev_to_pci_dev(edev);
1641                 if (!pdev)
1642                         continue;
1643
1644                 ret = pci_reenable_device(pdev);
1645                 if (ret) {
1646                         pr_warn("%s: Failure %d reenabling %s\n",
1647                                 __func__, ret, pci_name(pdev));
1648                         return ret;
1649                 }
1650         }
1651
1652         /* The PE is still in frozen state */
1653         return eeh_unfreeze_pe(pe, true);
1654 }
1655
1656
1657 /**
1658  * eeh_pe_reset - Issue PE reset according to specified type
1659  * @pe: EEH PE
1660  * @option: reset type
1661  *
1662  * The routine is called to reset the specified PE with the
1663  * indicated type, either fundamental reset or hot reset.
1664  * PE reset is the most important part for error recovery.
1665  */
1666 int eeh_pe_reset(struct eeh_pe *pe, int option)
1667 {
1668         int ret = 0;
1669
1670         /* Invalid PE ? */
1671         if (!pe)
1672                 return -ENODEV;
1673
1674         if (!eeh_ops || !eeh_ops->set_option || !eeh_ops->reset)
1675                 return -ENOENT;
1676
1677         switch (option) {
1678         case EEH_RESET_DEACTIVATE:
1679                 ret = eeh_ops->reset(pe, option);
1680                 eeh_pe_state_clear(pe, EEH_PE_CFG_BLOCKED);
1681                 if (ret)
1682                         break;
1683
1684                 ret = eeh_pe_reenable_devices(pe);
1685                 break;
1686         case EEH_RESET_HOT:
1687         case EEH_RESET_FUNDAMENTAL:
1688                 /*
1689                  * Proactively freeze the PE to drop all MMIO access
1690                  * during reset, which should be banned as it's always
1691                  * cause recursive EEH error.
1692                  */
1693                 eeh_ops->set_option(pe, EEH_OPT_FREEZE_PE);
1694
1695                 eeh_pe_state_mark(pe, EEH_PE_CFG_BLOCKED);
1696                 ret = eeh_ops->reset(pe, option);
1697                 break;
1698         default:
1699                 pr_debug("%s: Unsupported option %d\n",
1700                         __func__, option);
1701                 ret = -EINVAL;
1702         }
1703
1704         return ret;
1705 }
1706 EXPORT_SYMBOL_GPL(eeh_pe_reset);
1707
1708 /**
1709  * eeh_pe_configure - Configure PCI bridges after PE reset
1710  * @pe: EEH PE
1711  *
1712  * The routine is called to restore the PCI config space for
1713  * those PCI devices, especially PCI bridges affected by PE
1714  * reset issued previously.
1715  */
1716 int eeh_pe_configure(struct eeh_pe *pe)
1717 {
1718         int ret = 0;
1719
1720         /* Invalid PE ? */
1721         if (!pe)
1722                 return -ENODEV;
1723
1724         return ret;
1725 }
1726 EXPORT_SYMBOL_GPL(eeh_pe_configure);
1727
1728 /**
1729  * eeh_pe_inject_err - Injecting the specified PCI error to the indicated PE
1730  * @pe: the indicated PE
1731  * @type: error type
1732  * @function: error function
1733  * @addr: address
1734  * @mask: address mask
1735  *
1736  * The routine is called to inject the specified PCI error, which
1737  * is determined by @type and @function, to the indicated PE for
1738  * testing purpose.
1739  */
1740 int eeh_pe_inject_err(struct eeh_pe *pe, int type, int func,
1741                       unsigned long addr, unsigned long mask)
1742 {
1743         /* Invalid PE ? */
1744         if (!pe)
1745                 return -ENODEV;
1746
1747         /* Unsupported operation ? */
1748         if (!eeh_ops || !eeh_ops->err_inject)
1749                 return -ENOENT;
1750
1751         /* Check on PCI error type */
1752         if (type != EEH_ERR_TYPE_32 && type != EEH_ERR_TYPE_64)
1753                 return -EINVAL;
1754
1755         /* Check on PCI error function */
1756         if (func < EEH_ERR_FUNC_MIN || func > EEH_ERR_FUNC_MAX)
1757                 return -EINVAL;
1758
1759         return eeh_ops->err_inject(pe, type, func, addr, mask);
1760 }
1761 EXPORT_SYMBOL_GPL(eeh_pe_inject_err);
1762
1763 static int proc_eeh_show(struct seq_file *m, void *v)
1764 {
1765         if (!eeh_enabled()) {
1766                 seq_printf(m, "EEH Subsystem is globally disabled\n");
1767                 seq_printf(m, "eeh_total_mmio_ffs=%llu\n", eeh_stats.total_mmio_ffs);
1768         } else {
1769                 seq_printf(m, "EEH Subsystem is enabled\n");
1770                 seq_printf(m,
1771                                 "no device=%llu\n"
1772                                 "no device node=%llu\n"
1773                                 "no config address=%llu\n"
1774                                 "check not wanted=%llu\n"
1775                                 "eeh_total_mmio_ffs=%llu\n"
1776                                 "eeh_false_positives=%llu\n"
1777                                 "eeh_slot_resets=%llu\n",
1778                                 eeh_stats.no_device,
1779                                 eeh_stats.no_dn,
1780                                 eeh_stats.no_cfg_addr,
1781                                 eeh_stats.ignored_check,
1782                                 eeh_stats.total_mmio_ffs,
1783                                 eeh_stats.false_positives,
1784                                 eeh_stats.slot_resets);
1785         }
1786
1787         return 0;
1788 }
1789
1790 #ifdef CONFIG_DEBUG_FS
1791 static int eeh_enable_dbgfs_set(void *data, u64 val)
1792 {
1793         if (val)
1794                 eeh_clear_flag(EEH_FORCE_DISABLED);
1795         else
1796                 eeh_add_flag(EEH_FORCE_DISABLED);
1797
1798         return 0;
1799 }
1800
1801 static int eeh_enable_dbgfs_get(void *data, u64 *val)
1802 {
1803         if (eeh_enabled())
1804                 *val = 0x1ul;
1805         else
1806                 *val = 0x0ul;
1807         return 0;
1808 }
1809
1810 static int eeh_freeze_dbgfs_set(void *data, u64 val)
1811 {
1812         eeh_max_freezes = val;
1813         return 0;
1814 }
1815
1816 static int eeh_freeze_dbgfs_get(void *data, u64 *val)
1817 {
1818         *val = eeh_max_freezes;
1819         return 0;
1820 }
1821
1822 DEFINE_SIMPLE_ATTRIBUTE(eeh_enable_dbgfs_ops, eeh_enable_dbgfs_get,
1823                         eeh_enable_dbgfs_set, "0x%llx\n");
1824 DEFINE_SIMPLE_ATTRIBUTE(eeh_freeze_dbgfs_ops, eeh_freeze_dbgfs_get,
1825                         eeh_freeze_dbgfs_set, "0x%llx\n");
1826 #endif
1827
1828 static int __init eeh_init_proc(void)
1829 {
1830         if (machine_is(pseries) || machine_is(powernv)) {
1831                 proc_create_single("powerpc/eeh", 0, NULL, proc_eeh_show);
1832 #ifdef CONFIG_DEBUG_FS
1833                 debugfs_create_file("eeh_enable", 0600,
1834                                     powerpc_debugfs_root, NULL,
1835                                     &eeh_enable_dbgfs_ops);
1836                 debugfs_create_file("eeh_max_freezes", 0600,
1837                                     powerpc_debugfs_root, NULL,
1838                                     &eeh_freeze_dbgfs_ops);
1839 #endif
1840         }
1841
1842         return 0;
1843 }
1844 __initcall(eeh_init_proc);