powerpc/eeh: Unfreeze PE on enabling EEH functionality
[firefly-linux-kernel-4.4.55.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/debugfs.h>
26 #include <linux/sched.h>
27 #include <linux/init.h>
28 #include <linux/list.h>
29 #include <linux/pci.h>
30 #include <linux/iommu.h>
31 #include <linux/proc_fs.h>
32 #include <linux/rbtree.h>
33 #include <linux/reboot.h>
34 #include <linux/seq_file.h>
35 #include <linux/spinlock.h>
36 #include <linux/export.h>
37 #include <linux/of.h>
38
39 #include <linux/atomic.h>
40 #include <asm/debug.h>
41 #include <asm/eeh.h>
42 #include <asm/eeh_event.h>
43 #include <asm/io.h>
44 #include <asm/iommu.h>
45 #include <asm/machdep.h>
46 #include <asm/ppc-pci.h>
47 #include <asm/rtas.h>
48
49
50 /** Overview:
51  *  EEH, or "Extended 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 /* Platform dependent EEH operations */
108 struct eeh_ops *eeh_ops = NULL;
109
110 /* Lock to avoid races due to multiple reports of an error */
111 DEFINE_RAW_SPINLOCK(confirm_error_lock);
112
113 /* Lock to protect passed flags */
114 static DEFINE_MUTEX(eeh_dev_mutex);
115
116 /* Buffer for reporting pci register dumps. Its here in BSS, and
117  * not dynamically alloced, so that it ends up in RMO where RTAS
118  * can access it.
119  */
120 #define EEH_PCI_REGS_LOG_LEN 4096
121 static unsigned char pci_regs_buf[EEH_PCI_REGS_LOG_LEN];
122
123 /*
124  * The struct is used to maintain the EEH global statistic
125  * information. Besides, the EEH global statistics will be
126  * exported to user space through procfs
127  */
128 struct eeh_stats {
129         u64 no_device;          /* PCI device not found         */
130         u64 no_dn;              /* OF node not found            */
131         u64 no_cfg_addr;        /* Config address not found     */
132         u64 ignored_check;      /* EEH check skipped            */
133         u64 total_mmio_ffs;     /* Total EEH checks             */
134         u64 false_positives;    /* Unnecessary EEH checks       */
135         u64 slot_resets;        /* PE reset                     */
136 };
137
138 static struct eeh_stats eeh_stats;
139
140 #define IS_BRIDGE(class_code) (((class_code)<<16) == PCI_BASE_CLASS_BRIDGE)
141
142 static int __init eeh_setup(char *str)
143 {
144         if (!strcmp(str, "off"))
145                 eeh_add_flag(EEH_FORCE_DISABLED);
146
147         return 1;
148 }
149 __setup("eeh=", eeh_setup);
150
151 /**
152  * eeh_gather_pci_data - Copy assorted PCI config space registers to buff
153  * @edev: device to report data for
154  * @buf: point to buffer in which to log
155  * @len: amount of room in buffer
156  *
157  * This routine captures assorted PCI configuration space data,
158  * and puts them into a buffer for RTAS error logging.
159  */
160 static size_t eeh_gather_pci_data(struct eeh_dev *edev, char *buf, size_t len)
161 {
162         struct device_node *dn = eeh_dev_to_of_node(edev);
163         u32 cfg;
164         int cap, i;
165         int n = 0, l = 0;
166         char buffer[128];
167
168         n += scnprintf(buf+n, len-n, "%s\n", dn->full_name);
169         pr_warn("EEH: of node=%s\n", dn->full_name);
170
171         eeh_ops->read_config(dn, PCI_VENDOR_ID, 4, &cfg);
172         n += scnprintf(buf+n, len-n, "dev/vend:%08x\n", cfg);
173         pr_warn("EEH: PCI device/vendor: %08x\n", cfg);
174
175         eeh_ops->read_config(dn, PCI_COMMAND, 4, &cfg);
176         n += scnprintf(buf+n, len-n, "cmd/stat:%x\n", cfg);
177         pr_warn("EEH: PCI cmd/status register: %08x\n", cfg);
178
179         /* Gather bridge-specific registers */
180         if (edev->mode & EEH_DEV_BRIDGE) {
181                 eeh_ops->read_config(dn, PCI_SEC_STATUS, 2, &cfg);
182                 n += scnprintf(buf+n, len-n, "sec stat:%x\n", cfg);
183                 pr_warn("EEH: Bridge secondary status: %04x\n", cfg);
184
185                 eeh_ops->read_config(dn, PCI_BRIDGE_CONTROL, 2, &cfg);
186                 n += scnprintf(buf+n, len-n, "brdg ctl:%x\n", cfg);
187                 pr_warn("EEH: Bridge control: %04x\n", cfg);
188         }
189
190         /* Dump out the PCI-X command and status regs */
191         cap = edev->pcix_cap;
192         if (cap) {
193                 eeh_ops->read_config(dn, cap, 4, &cfg);
194                 n += scnprintf(buf+n, len-n, "pcix-cmd:%x\n", cfg);
195                 pr_warn("EEH: PCI-X cmd: %08x\n", cfg);
196
197                 eeh_ops->read_config(dn, cap+4, 4, &cfg);
198                 n += scnprintf(buf+n, len-n, "pcix-stat:%x\n", cfg);
199                 pr_warn("EEH: PCI-X status: %08x\n", cfg);
200         }
201
202         /* If PCI-E capable, dump PCI-E cap 10 */
203         cap = edev->pcie_cap;
204         if (cap) {
205                 n += scnprintf(buf+n, len-n, "pci-e cap10:\n");
206                 pr_warn("EEH: PCI-E capabilities and status follow:\n");
207
208                 for (i=0; i<=8; i++) {
209                         eeh_ops->read_config(dn, cap+4*i, 4, &cfg);
210                         n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
211
212                         if ((i % 4) == 0) {
213                                 if (i != 0)
214                                         pr_warn("%s\n", buffer);
215
216                                 l = scnprintf(buffer, sizeof(buffer),
217                                               "EEH: PCI-E %02x: %08x ",
218                                               4*i, cfg);
219                         } else {
220                                 l += scnprintf(buffer+l, sizeof(buffer)-l,
221                                                "%08x ", cfg);
222                         }
223
224                 }
225
226                 pr_warn("%s\n", buffer);
227         }
228
229         /* If AER capable, dump it */
230         cap = edev->aer_cap;
231         if (cap) {
232                 n += scnprintf(buf+n, len-n, "pci-e AER:\n");
233                 pr_warn("EEH: PCI-E AER capability register set follows:\n");
234
235                 for (i=0; i<=13; i++) {
236                         eeh_ops->read_config(dn, cap+4*i, 4, &cfg);
237                         n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
238
239                         if ((i % 4) == 0) {
240                                 if (i != 0)
241                                         pr_warn("%s\n", buffer);
242
243                                 l = scnprintf(buffer, sizeof(buffer),
244                                               "EEH: PCI-E AER %02x: %08x ",
245                                               4*i, cfg);
246                         } else {
247                                 l += scnprintf(buffer+l, sizeof(buffer)-l,
248                                                "%08x ", cfg);
249                         }
250                 }
251
252                 pr_warn("%s\n", buffer);
253         }
254
255         return n;
256 }
257
258 /**
259  * eeh_slot_error_detail - Generate combined log including driver log and error log
260  * @pe: EEH PE
261  * @severity: temporary or permanent error log
262  *
263  * This routine should be called to generate the combined log, which
264  * is comprised of driver log and error log. The driver log is figured
265  * out from the config space of the corresponding PCI device, while
266  * the error log is fetched through platform dependent function call.
267  */
268 void eeh_slot_error_detail(struct eeh_pe *pe, int severity)
269 {
270         size_t loglen = 0;
271         struct eeh_dev *edev, *tmp;
272
273         /*
274          * When the PHB is fenced or dead, it's pointless to collect
275          * the data from PCI config space because it should return
276          * 0xFF's. For ER, we still retrieve the data from the PCI
277          * config space.
278          *
279          * For pHyp, we have to enable IO for log retrieval. Otherwise,
280          * 0xFF's is always returned from PCI config space.
281          */
282         if (!(pe->type & EEH_PE_PHB)) {
283                 if (eeh_has_flag(EEH_ENABLE_IO_FOR_LOG))
284                         eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
285                 eeh_ops->configure_bridge(pe);
286                 eeh_pe_restore_bars(pe);
287
288                 pci_regs_buf[0] = 0;
289                 eeh_pe_for_each_dev(pe, edev, tmp) {
290                         loglen += eeh_gather_pci_data(edev, pci_regs_buf + loglen,
291                                                       EEH_PCI_REGS_LOG_LEN - loglen);
292                 }
293         }
294
295         eeh_ops->get_log(pe, severity, pci_regs_buf, loglen);
296 }
297
298 /**
299  * eeh_token_to_phys - Convert EEH address token to phys address
300  * @token: I/O token, should be address in the form 0xA....
301  *
302  * This routine should be called to convert virtual I/O address
303  * to physical one.
304  */
305 static inline unsigned long eeh_token_to_phys(unsigned long token)
306 {
307         pte_t *ptep;
308         unsigned long pa;
309         int hugepage_shift;
310
311         /*
312          * We won't find hugepages here, iomem
313          */
314         ptep = find_linux_pte_or_hugepte(init_mm.pgd, token, &hugepage_shift);
315         if (!ptep)
316                 return token;
317         WARN_ON(hugepage_shift);
318         pa = pte_pfn(*ptep) << PAGE_SHIFT;
319
320         return pa | (token & (PAGE_SIZE-1));
321 }
322
323 /*
324  * On PowerNV platform, we might already have fenced PHB there.
325  * For that case, it's meaningless to recover frozen PE. Intead,
326  * We have to handle fenced PHB firstly.
327  */
328 static int eeh_phb_check_failure(struct eeh_pe *pe)
329 {
330         struct eeh_pe *phb_pe;
331         unsigned long flags;
332         int ret;
333
334         if (!eeh_has_flag(EEH_PROBE_MODE_DEV))
335                 return -EPERM;
336
337         /* Find the PHB PE */
338         phb_pe = eeh_phb_pe_get(pe->phb);
339         if (!phb_pe) {
340                 pr_warn("%s Can't find PE for PHB#%d\n",
341                         __func__, pe->phb->global_number);
342                 return -EEXIST;
343         }
344
345         /* If the PHB has been in problematic state */
346         eeh_serialize_lock(&flags);
347         if (phb_pe->state & EEH_PE_ISOLATED) {
348                 ret = 0;
349                 goto out;
350         }
351
352         /* Check PHB state */
353         ret = eeh_ops->get_state(phb_pe, NULL);
354         if ((ret < 0) ||
355             (ret == EEH_STATE_NOT_SUPPORT) ||
356             (ret & (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) ==
357             (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) {
358                 ret = 0;
359                 goto out;
360         }
361
362         /* Isolate the PHB and send event */
363         eeh_pe_state_mark(phb_pe, EEH_PE_ISOLATED);
364         eeh_serialize_unlock(flags);
365
366         pr_err("EEH: PHB#%x failure detected, location: %s\n",
367                 phb_pe->phb->global_number, eeh_pe_loc_get(phb_pe));
368         dump_stack();
369         eeh_send_failure_event(phb_pe);
370
371         return 1;
372 out:
373         eeh_serialize_unlock(flags);
374         return ret;
375 }
376
377 /**
378  * eeh_dev_check_failure - Check if all 1's data is due to EEH slot freeze
379  * @edev: eeh device
380  *
381  * Check for an EEH failure for the given device node.  Call this
382  * routine if the result of a read was all 0xff's and you want to
383  * find out if this is due to an EEH slot freeze.  This routine
384  * will query firmware for the EEH status.
385  *
386  * Returns 0 if there has not been an EEH error; otherwise returns
387  * a non-zero value and queues up a slot isolation event notification.
388  *
389  * It is safe to call this routine in an interrupt context.
390  */
391 int eeh_dev_check_failure(struct eeh_dev *edev)
392 {
393         int ret;
394         int active_flags = (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE);
395         unsigned long flags;
396         struct device_node *dn;
397         struct pci_dev *dev;
398         struct eeh_pe *pe, *parent_pe, *phb_pe;
399         int rc = 0;
400         const char *location;
401
402         eeh_stats.total_mmio_ffs++;
403
404         if (!eeh_enabled())
405                 return 0;
406
407         if (!edev) {
408                 eeh_stats.no_dn++;
409                 return 0;
410         }
411         dn = eeh_dev_to_of_node(edev);
412         dev = eeh_dev_to_pci_dev(edev);
413         pe = eeh_dev_to_pe(edev);
414
415         /* Access to IO BARs might get this far and still not want checking. */
416         if (!pe) {
417                 eeh_stats.ignored_check++;
418                 pr_debug("EEH: Ignored check for %s %s\n",
419                         eeh_pci_name(dev), dn->full_name);
420                 return 0;
421         }
422
423         if (!pe->addr && !pe->config_addr) {
424                 eeh_stats.no_cfg_addr++;
425                 return 0;
426         }
427
428         /*
429          * On PowerNV platform, we might already have fenced PHB
430          * there and we need take care of that firstly.
431          */
432         ret = eeh_phb_check_failure(pe);
433         if (ret > 0)
434                 return ret;
435
436         /*
437          * If the PE isn't owned by us, we shouldn't check the
438          * state. Instead, let the owner handle it if the PE has
439          * been frozen.
440          */
441         if (eeh_pe_passed(pe))
442                 return 0;
443
444         /* If we already have a pending isolation event for this
445          * slot, we know it's bad already, we don't need to check.
446          * Do this checking under a lock; as multiple PCI devices
447          * in one slot might report errors simultaneously, and we
448          * only want one error recovery routine running.
449          */
450         eeh_serialize_lock(&flags);
451         rc = 1;
452         if (pe->state & EEH_PE_ISOLATED) {
453                 pe->check_count++;
454                 if (pe->check_count % EEH_MAX_FAILS == 0) {
455                         location = of_get_property(dn, "ibm,loc-code", NULL);
456                         printk(KERN_ERR "EEH: %d reads ignored for recovering device at "
457                                 "location=%s driver=%s pci addr=%s\n",
458                                 pe->check_count, location,
459                                 eeh_driver_name(dev), eeh_pci_name(dev));
460                         printk(KERN_ERR "EEH: Might be infinite loop in %s driver\n",
461                                 eeh_driver_name(dev));
462                         dump_stack();
463                 }
464                 goto dn_unlock;
465         }
466
467         /*
468          * Now test for an EEH failure.  This is VERY expensive.
469          * Note that the eeh_config_addr may be a parent device
470          * in the case of a device behind a bridge, or it may be
471          * function zero of a multi-function device.
472          * In any case they must share a common PHB.
473          */
474         ret = eeh_ops->get_state(pe, NULL);
475
476         /* Note that config-io to empty slots may fail;
477          * they are empty when they don't have children.
478          * We will punt with the following conditions: Failure to get
479          * PE's state, EEH not support and Permanently unavailable
480          * state, PE is in good state.
481          */
482         if ((ret < 0) ||
483             (ret == EEH_STATE_NOT_SUPPORT) ||
484             ((ret & active_flags) == active_flags)) {
485                 eeh_stats.false_positives++;
486                 pe->false_positives++;
487                 rc = 0;
488                 goto dn_unlock;
489         }
490
491         /*
492          * It should be corner case that the parent PE has been
493          * put into frozen state as well. We should take care
494          * that at first.
495          */
496         parent_pe = pe->parent;
497         while (parent_pe) {
498                 /* Hit the ceiling ? */
499                 if (parent_pe->type & EEH_PE_PHB)
500                         break;
501
502                 /* Frozen parent PE ? */
503                 ret = eeh_ops->get_state(parent_pe, NULL);
504                 if (ret > 0 &&
505                     (ret & active_flags) != active_flags)
506                         pe = parent_pe;
507
508                 /* Next parent level */
509                 parent_pe = parent_pe->parent;
510         }
511
512         eeh_stats.slot_resets++;
513
514         /* Avoid repeated reports of this failure, including problems
515          * with other functions on this device, and functions under
516          * bridges.
517          */
518         eeh_pe_state_mark(pe, EEH_PE_ISOLATED);
519         eeh_serialize_unlock(flags);
520
521         /* Most EEH events are due to device driver bugs.  Having
522          * a stack trace will help the device-driver authors figure
523          * out what happened.  So print that out.
524          */
525         phb_pe = eeh_phb_pe_get(pe->phb);
526         pr_err("EEH: Frozen PHB#%x-PE#%x detected\n",
527                pe->phb->global_number, pe->addr);
528         pr_err("EEH: PE location: %s, PHB location: %s\n",
529                eeh_pe_loc_get(pe), eeh_pe_loc_get(phb_pe));
530         dump_stack();
531
532         eeh_send_failure_event(pe);
533
534         return 1;
535
536 dn_unlock:
537         eeh_serialize_unlock(flags);
538         return rc;
539 }
540
541 EXPORT_SYMBOL_GPL(eeh_dev_check_failure);
542
543 /**
544  * eeh_check_failure - Check if all 1's data is due to EEH slot freeze
545  * @token: I/O address
546  *
547  * Check for an EEH failure at the given I/O address. Call this
548  * routine if the result of a read was all 0xff's and you want to
549  * find out if this is due to an EEH slot freeze event. This routine
550  * will query firmware for the EEH status.
551  *
552  * Note this routine is safe to call in an interrupt context.
553  */
554 int eeh_check_failure(const volatile void __iomem *token)
555 {
556         unsigned long addr;
557         struct eeh_dev *edev;
558
559         /* Finding the phys addr + pci device; this is pretty quick. */
560         addr = eeh_token_to_phys((unsigned long __force) token);
561         edev = eeh_addr_cache_get_dev(addr);
562         if (!edev) {
563                 eeh_stats.no_device++;
564                 return 0;
565         }
566
567         return eeh_dev_check_failure(edev);
568 }
569 EXPORT_SYMBOL(eeh_check_failure);
570
571
572 /**
573  * eeh_pci_enable - Enable MMIO or DMA transfers for this slot
574  * @pe: EEH PE
575  *
576  * This routine should be called to reenable frozen MMIO or DMA
577  * so that it would work correctly again. It's useful while doing
578  * recovery or log collection on the indicated device.
579  */
580 int eeh_pci_enable(struct eeh_pe *pe, int function)
581 {
582         int active_flag, rc;
583
584         /*
585          * pHyp doesn't allow to enable IO or DMA on unfrozen PE.
586          * Also, it's pointless to enable them on unfrozen PE. So
587          * we have to check before enabling IO or DMA.
588          */
589         switch (function) {
590         case EEH_OPT_THAW_MMIO:
591                 active_flag = EEH_STATE_MMIO_ACTIVE;
592                 break;
593         case EEH_OPT_THAW_DMA:
594                 active_flag = EEH_STATE_DMA_ACTIVE;
595                 break;
596         case EEH_OPT_DISABLE:
597         case EEH_OPT_ENABLE:
598         case EEH_OPT_FREEZE_PE:
599                 active_flag = 0;
600                 break;
601         default:
602                 pr_warn("%s: Invalid function %d\n",
603                         __func__, function);
604                 return -EINVAL;
605         }
606
607         /*
608          * Check if IO or DMA has been enabled before
609          * enabling them.
610          */
611         if (active_flag) {
612                 rc = eeh_ops->get_state(pe, NULL);
613                 if (rc < 0)
614                         return rc;
615
616                 /* Needn't enable it at all */
617                 if (rc == EEH_STATE_NOT_SUPPORT)
618                         return 0;
619
620                 /* It's already enabled */
621                 if (rc & active_flag)
622                         return 0;
623         }
624
625
626         /* Issue the request */
627         rc = eeh_ops->set_option(pe, function);
628         if (rc)
629                 pr_warn("%s: Unexpected state change %d on "
630                         "PHB#%d-PE#%x, err=%d\n",
631                         __func__, function, pe->phb->global_number,
632                         pe->addr, rc);
633
634         /* Check if the request is finished successfully */
635         if (active_flag) {
636                 rc = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
637                 if (rc <= 0)
638                         return rc;
639
640                 if (rc & active_flag)
641                         return 0;
642
643                 return -EIO;
644         }
645
646         return rc;
647 }
648
649 /**
650  * pcibios_set_pcie_slot_reset - Set PCI-E reset state
651  * @dev: pci device struct
652  * @state: reset state to enter
653  *
654  * Return value:
655  *      0 if success
656  */
657 int pcibios_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
658 {
659         struct eeh_dev *edev = pci_dev_to_eeh_dev(dev);
660         struct eeh_pe *pe = eeh_dev_to_pe(edev);
661
662         if (!pe) {
663                 pr_err("%s: No PE found on PCI device %s\n",
664                         __func__, pci_name(dev));
665                 return -EINVAL;
666         }
667
668         switch (state) {
669         case pcie_deassert_reset:
670                 eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
671                 break;
672         case pcie_hot_reset:
673                 eeh_ops->reset(pe, EEH_RESET_HOT);
674                 break;
675         case pcie_warm_reset:
676                 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
677                 break;
678         default:
679                 return -EINVAL;
680         };
681
682         return 0;
683 }
684
685 /**
686  * eeh_set_pe_freset - Check the required reset for the indicated device
687  * @data: EEH device
688  * @flag: return value
689  *
690  * Each device might have its preferred reset type: fundamental or
691  * hot reset. The routine is used to collected the information for
692  * the indicated device and its children so that the bunch of the
693  * devices could be reset properly.
694  */
695 static void *eeh_set_dev_freset(void *data, void *flag)
696 {
697         struct pci_dev *dev;
698         unsigned int *freset = (unsigned int *)flag;
699         struct eeh_dev *edev = (struct eeh_dev *)data;
700
701         dev = eeh_dev_to_pci_dev(edev);
702         if (dev)
703                 *freset |= dev->needs_freset;
704
705         return NULL;
706 }
707
708 /**
709  * eeh_reset_pe_once - Assert the pci #RST line for 1/4 second
710  * @pe: EEH PE
711  *
712  * Assert the PCI #RST line for 1/4 second.
713  */
714 static void eeh_reset_pe_once(struct eeh_pe *pe)
715 {
716         unsigned int freset = 0;
717
718         /* Determine type of EEH reset required for
719          * Partitionable Endpoint, a hot-reset (1)
720          * or a fundamental reset (3).
721          * A fundamental reset required by any device under
722          * Partitionable Endpoint trumps hot-reset.
723          */
724         eeh_pe_dev_traverse(pe, eeh_set_dev_freset, &freset);
725
726         if (freset)
727                 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
728         else
729                 eeh_ops->reset(pe, EEH_RESET_HOT);
730
731         eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
732 }
733
734 /**
735  * eeh_reset_pe - Reset the indicated PE
736  * @pe: EEH PE
737  *
738  * This routine should be called to reset indicated device, including
739  * PE. A PE might include multiple PCI devices and sometimes PCI bridges
740  * might be involved as well.
741  */
742 int eeh_reset_pe(struct eeh_pe *pe)
743 {
744         int flags = (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE);
745         int i, rc;
746
747         /* Take three shots at resetting the bus */
748         for (i=0; i<3; i++) {
749                 eeh_reset_pe_once(pe);
750
751                 /*
752                  * EEH_PE_ISOLATED is expected to be removed after
753                  * BAR restore.
754                  */
755                 rc = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
756                 if ((rc & flags) == flags)
757                         return 0;
758
759                 if (rc < 0) {
760                         pr_err("%s: Unrecoverable slot failure on PHB#%d-PE#%x",
761                                 __func__, pe->phb->global_number, pe->addr);
762                         return -1;
763                 }
764                 pr_err("EEH: bus reset %d failed on PHB#%d-PE#%x, rc=%d\n",
765                         i+1, pe->phb->global_number, pe->addr, rc);
766         }
767
768         return -1;
769 }
770
771 /**
772  * eeh_save_bars - Save device bars
773  * @edev: PCI device associated EEH device
774  *
775  * Save the values of the device bars. Unlike the restore
776  * routine, this routine is *not* recursive. This is because
777  * PCI devices are added individually; but, for the restore,
778  * an entire slot is reset at a time.
779  */
780 void eeh_save_bars(struct eeh_dev *edev)
781 {
782         int i;
783         struct device_node *dn;
784
785         if (!edev)
786                 return;
787         dn = eeh_dev_to_of_node(edev);
788
789         for (i = 0; i < 16; i++)
790                 eeh_ops->read_config(dn, i * 4, 4, &edev->config_space[i]);
791
792         /*
793          * For PCI bridges including root port, we need enable bus
794          * master explicitly. Otherwise, it can't fetch IODA table
795          * entries correctly. So we cache the bit in advance so that
796          * we can restore it after reset, either PHB range or PE range.
797          */
798         if (edev->mode & EEH_DEV_BRIDGE)
799                 edev->config_space[1] |= PCI_COMMAND_MASTER;
800 }
801
802 /**
803  * eeh_ops_register - Register platform dependent EEH operations
804  * @ops: platform dependent EEH operations
805  *
806  * Register the platform dependent EEH operation callback
807  * functions. The platform should call this function before
808  * any other EEH operations.
809  */
810 int __init eeh_ops_register(struct eeh_ops *ops)
811 {
812         if (!ops->name) {
813                 pr_warn("%s: Invalid EEH ops name for %p\n",
814                         __func__, ops);
815                 return -EINVAL;
816         }
817
818         if (eeh_ops && eeh_ops != ops) {
819                 pr_warn("%s: EEH ops of platform %s already existing (%s)\n",
820                         __func__, eeh_ops->name, ops->name);
821                 return -EEXIST;
822         }
823
824         eeh_ops = ops;
825
826         return 0;
827 }
828
829 /**
830  * eeh_ops_unregister - Unreigster platform dependent EEH operations
831  * @name: name of EEH platform operations
832  *
833  * Unregister the platform dependent EEH operation callback
834  * functions.
835  */
836 int __exit eeh_ops_unregister(const char *name)
837 {
838         if (!name || !strlen(name)) {
839                 pr_warn("%s: Invalid EEH ops name\n",
840                         __func__);
841                 return -EINVAL;
842         }
843
844         if (eeh_ops && !strcmp(eeh_ops->name, name)) {
845                 eeh_ops = NULL;
846                 return 0;
847         }
848
849         return -EEXIST;
850 }
851
852 static int eeh_reboot_notifier(struct notifier_block *nb,
853                                unsigned long action, void *unused)
854 {
855         eeh_clear_flag(EEH_ENABLED);
856         return NOTIFY_DONE;
857 }
858
859 static struct notifier_block eeh_reboot_nb = {
860         .notifier_call = eeh_reboot_notifier,
861 };
862
863 /**
864  * eeh_init - EEH initialization
865  *
866  * Initialize EEH by trying to enable it for all of the adapters in the system.
867  * As a side effect we can determine here if eeh is supported at all.
868  * Note that we leave EEH on so failed config cycles won't cause a machine
869  * check.  If a user turns off EEH for a particular adapter they are really
870  * telling Linux to ignore errors.  Some hardware (e.g. POWER5) won't
871  * grant access to a slot if EEH isn't enabled, and so we always enable
872  * EEH for all slots/all devices.
873  *
874  * The eeh-force-off option disables EEH checking globally, for all slots.
875  * Even if force-off is set, the EEH hardware is still enabled, so that
876  * newer systems can boot.
877  */
878 int eeh_init(void)
879 {
880         struct pci_controller *hose, *tmp;
881         struct device_node *phb;
882         static int cnt = 0;
883         int ret = 0;
884
885         /*
886          * We have to delay the initialization on PowerNV after
887          * the PCI hierarchy tree has been built because the PEs
888          * are figured out based on PCI devices instead of device
889          * tree nodes
890          */
891         if (machine_is(powernv) && cnt++ <= 0)
892                 return ret;
893
894         /* Register reboot notifier */
895         ret = register_reboot_notifier(&eeh_reboot_nb);
896         if (ret) {
897                 pr_warn("%s: Failed to register notifier (%d)\n",
898                         __func__, ret);
899                 return ret;
900         }
901
902         /* call platform initialization function */
903         if (!eeh_ops) {
904                 pr_warn("%s: Platform EEH operation not found\n",
905                         __func__);
906                 return -EEXIST;
907         } else if ((ret = eeh_ops->init())) {
908                 pr_warn("%s: Failed to call platform init function (%d)\n",
909                         __func__, ret);
910                 return ret;
911         }
912
913         /* Initialize EEH event */
914         ret = eeh_event_init();
915         if (ret)
916                 return ret;
917
918         /* Enable EEH for all adapters */
919         if (eeh_has_flag(EEH_PROBE_MODE_DEVTREE)) {
920                 list_for_each_entry_safe(hose, tmp,
921                         &hose_list, list_node) {
922                         phb = hose->dn;
923                         traverse_pci_devices(phb, eeh_ops->of_probe, NULL);
924                 }
925         } else if (eeh_has_flag(EEH_PROBE_MODE_DEV)) {
926                 list_for_each_entry_safe(hose, tmp,
927                         &hose_list, list_node)
928                         pci_walk_bus(hose->bus, eeh_ops->dev_probe, NULL);
929         } else {
930                 pr_warn("%s: Invalid probe mode %x",
931                         __func__, eeh_subsystem_flags);
932                 return -EINVAL;
933         }
934
935         /*
936          * Call platform post-initialization. Actually, It's good chance
937          * to inform platform that EEH is ready to supply service if the
938          * I/O cache stuff has been built up.
939          */
940         if (eeh_ops->post_init) {
941                 ret = eeh_ops->post_init();
942                 if (ret)
943                         return ret;
944         }
945
946         if (eeh_enabled())
947                 pr_info("EEH: PCI Enhanced I/O Error Handling Enabled\n");
948         else
949                 pr_warn("EEH: No capable adapters found\n");
950
951         return ret;
952 }
953
954 core_initcall_sync(eeh_init);
955
956 /**
957  * eeh_add_device_early - Enable EEH for the indicated device_node
958  * @dn: device node for which to set up EEH
959  *
960  * This routine must be used to perform EEH initialization for PCI
961  * devices that were added after system boot (e.g. hotplug, dlpar).
962  * This routine must be called before any i/o is performed to the
963  * adapter (inluding any config-space i/o).
964  * Whether this actually enables EEH or not for this device depends
965  * on the CEC architecture, type of the device, on earlier boot
966  * command-line arguments & etc.
967  */
968 void eeh_add_device_early(struct device_node *dn)
969 {
970         struct pci_controller *phb;
971
972         /*
973          * If we're doing EEH probe based on PCI device, we
974          * would delay the probe until late stage because
975          * the PCI device isn't available this moment.
976          */
977         if (!eeh_has_flag(EEH_PROBE_MODE_DEVTREE))
978                 return;
979
980         if (!of_node_to_eeh_dev(dn))
981                 return;
982         phb = of_node_to_eeh_dev(dn)->phb;
983
984         /* USB Bus children of PCI devices will not have BUID's */
985         if (NULL == phb || 0 == phb->buid)
986                 return;
987
988         eeh_ops->of_probe(dn, NULL);
989 }
990
991 /**
992  * eeh_add_device_tree_early - Enable EEH for the indicated device
993  * @dn: device node
994  *
995  * This routine must be used to perform EEH initialization for the
996  * indicated PCI device that was added after system boot (e.g.
997  * hotplug, dlpar).
998  */
999 void eeh_add_device_tree_early(struct device_node *dn)
1000 {
1001         struct device_node *sib;
1002
1003         for_each_child_of_node(dn, sib)
1004                 eeh_add_device_tree_early(sib);
1005         eeh_add_device_early(dn);
1006 }
1007 EXPORT_SYMBOL_GPL(eeh_add_device_tree_early);
1008
1009 /**
1010  * eeh_add_device_late - Perform EEH initialization for the indicated pci device
1011  * @dev: pci device for which to set up EEH
1012  *
1013  * This routine must be used to complete EEH initialization for PCI
1014  * devices that were added after system boot (e.g. hotplug, dlpar).
1015  */
1016 void eeh_add_device_late(struct pci_dev *dev)
1017 {
1018         struct device_node *dn;
1019         struct eeh_dev *edev;
1020
1021         if (!dev || !eeh_enabled())
1022                 return;
1023
1024         pr_debug("EEH: Adding device %s\n", pci_name(dev));
1025
1026         dn = pci_device_to_OF_node(dev);
1027         edev = of_node_to_eeh_dev(dn);
1028         if (edev->pdev == dev) {
1029                 pr_debug("EEH: Already referenced !\n");
1030                 return;
1031         }
1032
1033         /*
1034          * The EEH cache might not be removed correctly because of
1035          * unbalanced kref to the device during unplug time, which
1036          * relies on pcibios_release_device(). So we have to remove
1037          * that here explicitly.
1038          */
1039         if (edev->pdev) {
1040                 eeh_rmv_from_parent_pe(edev);
1041                 eeh_addr_cache_rmv_dev(edev->pdev);
1042                 eeh_sysfs_remove_device(edev->pdev);
1043                 edev->mode &= ~EEH_DEV_SYSFS;
1044
1045                 /*
1046                  * We definitely should have the PCI device removed
1047                  * though it wasn't correctly. So we needn't call
1048                  * into error handler afterwards.
1049                  */
1050                 edev->mode |= EEH_DEV_NO_HANDLER;
1051
1052                 edev->pdev = NULL;
1053                 dev->dev.archdata.edev = NULL;
1054         }
1055
1056         edev->pdev = dev;
1057         dev->dev.archdata.edev = edev;
1058
1059         /*
1060          * We have to do the EEH probe here because the PCI device
1061          * hasn't been created yet in the early stage.
1062          */
1063         if (eeh_has_flag(EEH_PROBE_MODE_DEV))
1064                 eeh_ops->dev_probe(dev, NULL);
1065
1066         eeh_addr_cache_insert_dev(dev);
1067 }
1068
1069 /**
1070  * eeh_add_device_tree_late - Perform EEH initialization for the indicated PCI bus
1071  * @bus: PCI bus
1072  *
1073  * This routine must be used to perform EEH initialization for PCI
1074  * devices which are attached to the indicated PCI bus. The PCI bus
1075  * is added after system boot through hotplug or dlpar.
1076  */
1077 void eeh_add_device_tree_late(struct pci_bus *bus)
1078 {
1079         struct pci_dev *dev;
1080
1081         list_for_each_entry(dev, &bus->devices, bus_list) {
1082                 eeh_add_device_late(dev);
1083                 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
1084                         struct pci_bus *subbus = dev->subordinate;
1085                         if (subbus)
1086                                 eeh_add_device_tree_late(subbus);
1087                 }
1088         }
1089 }
1090 EXPORT_SYMBOL_GPL(eeh_add_device_tree_late);
1091
1092 /**
1093  * eeh_add_sysfs_files - Add EEH sysfs files for the indicated PCI bus
1094  * @bus: PCI bus
1095  *
1096  * This routine must be used to add EEH sysfs files for PCI
1097  * devices which are attached to the indicated PCI bus. The PCI bus
1098  * is added after system boot through hotplug or dlpar.
1099  */
1100 void eeh_add_sysfs_files(struct pci_bus *bus)
1101 {
1102         struct pci_dev *dev;
1103
1104         list_for_each_entry(dev, &bus->devices, bus_list) {
1105                 eeh_sysfs_add_device(dev);
1106                 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
1107                         struct pci_bus *subbus = dev->subordinate;
1108                         if (subbus)
1109                                 eeh_add_sysfs_files(subbus);
1110                 }
1111         }
1112 }
1113 EXPORT_SYMBOL_GPL(eeh_add_sysfs_files);
1114
1115 /**
1116  * eeh_remove_device - Undo EEH setup for the indicated pci device
1117  * @dev: pci device to be removed
1118  *
1119  * This routine should be called when a device is removed from
1120  * a running system (e.g. by hotplug or dlpar).  It unregisters
1121  * the PCI device from the EEH subsystem.  I/O errors affecting
1122  * this device will no longer be detected after this call; thus,
1123  * i/o errors affecting this slot may leave this device unusable.
1124  */
1125 void eeh_remove_device(struct pci_dev *dev)
1126 {
1127         struct eeh_dev *edev;
1128
1129         if (!dev || !eeh_enabled())
1130                 return;
1131         edev = pci_dev_to_eeh_dev(dev);
1132
1133         /* Unregister the device with the EEH/PCI address search system */
1134         pr_debug("EEH: Removing device %s\n", pci_name(dev));
1135
1136         if (!edev || !edev->pdev || !edev->pe) {
1137                 pr_debug("EEH: Not referenced !\n");
1138                 return;
1139         }
1140
1141         /*
1142          * During the hotplug for EEH error recovery, we need the EEH
1143          * device attached to the parent PE in order for BAR restore
1144          * a bit later. So we keep it for BAR restore and remove it
1145          * from the parent PE during the BAR resotre.
1146          */
1147         edev->pdev = NULL;
1148         dev->dev.archdata.edev = NULL;
1149         if (!(edev->pe->state & EEH_PE_KEEP))
1150                 eeh_rmv_from_parent_pe(edev);
1151         else
1152                 edev->mode |= EEH_DEV_DISCONNECTED;
1153
1154         /*
1155          * We're removing from the PCI subsystem, that means
1156          * the PCI device driver can't support EEH or not
1157          * well. So we rely on hotplug completely to do recovery
1158          * for the specific PCI device.
1159          */
1160         edev->mode |= EEH_DEV_NO_HANDLER;
1161
1162         eeh_addr_cache_rmv_dev(dev);
1163         eeh_sysfs_remove_device(dev);
1164         edev->mode &= ~EEH_DEV_SYSFS;
1165 }
1166
1167 int eeh_unfreeze_pe(struct eeh_pe *pe, bool sw_state)
1168 {
1169         int ret;
1170
1171         ret = eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
1172         if (ret) {
1173                 pr_warn("%s: Failure %d enabling IO on PHB#%x-PE#%x\n",
1174                         __func__, ret, pe->phb->global_number, pe->addr);
1175                 return ret;
1176         }
1177
1178         ret = eeh_pci_enable(pe, EEH_OPT_THAW_DMA);
1179         if (ret) {
1180                 pr_warn("%s: Failure %d enabling DMA on PHB#%x-PE#%x\n",
1181                         __func__, ret, pe->phb->global_number, pe->addr);
1182                 return ret;
1183         }
1184
1185         /* Clear software isolated state */
1186         if (sw_state && (pe->state & EEH_PE_ISOLATED))
1187                 eeh_pe_state_clear(pe, EEH_PE_ISOLATED);
1188
1189         return ret;
1190 }
1191
1192 /**
1193  * eeh_dev_open - Increase count of pass through devices for PE
1194  * @pdev: PCI device
1195  *
1196  * Increase count of passed through devices for the indicated
1197  * PE. In the result, the EEH errors detected on the PE won't be
1198  * reported. The PE owner will be responsible for detection
1199  * and recovery.
1200  */
1201 int eeh_dev_open(struct pci_dev *pdev)
1202 {
1203         struct eeh_dev *edev;
1204         int ret = -ENODEV;
1205
1206         mutex_lock(&eeh_dev_mutex);
1207
1208         /* No PCI device ? */
1209         if (!pdev)
1210                 goto out;
1211
1212         /* No EEH device or PE ? */
1213         edev = pci_dev_to_eeh_dev(pdev);
1214         if (!edev || !edev->pe)
1215                 goto out;
1216
1217         /*
1218          * The PE might have been put into frozen state, but we
1219          * didn't detect that yet. The passed through PCI devices
1220          * in frozen PE won't work properly. Clear the frozen state
1221          * in advance.
1222          */
1223         ret = eeh_unfreeze_pe(edev->pe, true);
1224         if (ret)
1225                 goto out;
1226
1227         /* Increase PE's pass through count */
1228         atomic_inc(&edev->pe->pass_dev_cnt);
1229         mutex_unlock(&eeh_dev_mutex);
1230
1231         return 0;
1232 out:
1233         mutex_unlock(&eeh_dev_mutex);
1234         return ret;
1235 }
1236 EXPORT_SYMBOL_GPL(eeh_dev_open);
1237
1238 /**
1239  * eeh_dev_release - Decrease count of pass through devices for PE
1240  * @pdev: PCI device
1241  *
1242  * Decrease count of pass through devices for the indicated PE. If
1243  * there is no passed through device in PE, the EEH errors detected
1244  * on the PE will be reported and handled as usual.
1245  */
1246 void eeh_dev_release(struct pci_dev *pdev)
1247 {
1248         struct eeh_dev *edev;
1249
1250         mutex_lock(&eeh_dev_mutex);
1251
1252         /* No PCI device ? */
1253         if (!pdev)
1254                 goto out;
1255
1256         /* No EEH device ? */
1257         edev = pci_dev_to_eeh_dev(pdev);
1258         if (!edev || !edev->pe || !eeh_pe_passed(edev->pe))
1259                 goto out;
1260
1261         /* Decrease PE's pass through count */
1262         atomic_dec(&edev->pe->pass_dev_cnt);
1263         WARN_ON(atomic_read(&edev->pe->pass_dev_cnt) < 0);
1264 out:
1265         mutex_unlock(&eeh_dev_mutex);
1266 }
1267 EXPORT_SYMBOL(eeh_dev_release);
1268
1269 #ifdef CONFIG_IOMMU_API
1270
1271 static int dev_has_iommu_table(struct device *dev, void *data)
1272 {
1273         struct pci_dev *pdev = to_pci_dev(dev);
1274         struct pci_dev **ppdev = data;
1275         struct iommu_table *tbl;
1276
1277         if (!dev)
1278                 return 0;
1279
1280         tbl = get_iommu_table_base(dev);
1281         if (tbl && tbl->it_group) {
1282                 *ppdev = pdev;
1283                 return 1;
1284         }
1285
1286         return 0;
1287 }
1288
1289 /**
1290  * eeh_iommu_group_to_pe - Convert IOMMU group to EEH PE
1291  * @group: IOMMU group
1292  *
1293  * The routine is called to convert IOMMU group to EEH PE.
1294  */
1295 struct eeh_pe *eeh_iommu_group_to_pe(struct iommu_group *group)
1296 {
1297         struct pci_dev *pdev = NULL;
1298         struct eeh_dev *edev;
1299         int ret;
1300
1301         /* No IOMMU group ? */
1302         if (!group)
1303                 return NULL;
1304
1305         ret = iommu_group_for_each_dev(group, &pdev, dev_has_iommu_table);
1306         if (!ret || !pdev)
1307                 return NULL;
1308
1309         /* No EEH device or PE ? */
1310         edev = pci_dev_to_eeh_dev(pdev);
1311         if (!edev || !edev->pe)
1312                 return NULL;
1313
1314         return edev->pe;
1315 }
1316 EXPORT_SYMBOL_GPL(eeh_iommu_group_to_pe);
1317
1318 #endif /* CONFIG_IOMMU_API */
1319
1320 /**
1321  * eeh_pe_set_option - Set options for the indicated PE
1322  * @pe: EEH PE
1323  * @option: requested option
1324  *
1325  * The routine is called to enable or disable EEH functionality
1326  * on the indicated PE, to enable IO or DMA for the frozen PE.
1327  */
1328 int eeh_pe_set_option(struct eeh_pe *pe, int option)
1329 {
1330         int ret = 0;
1331
1332         /* Invalid PE ? */
1333         if (!pe)
1334                 return -ENODEV;
1335
1336         /*
1337          * EEH functionality could possibly be disabled, just
1338          * return error for the case. And the EEH functinality
1339          * isn't expected to be disabled on one specific PE.
1340          */
1341         switch (option) {
1342         case EEH_OPT_ENABLE:
1343                 if (eeh_enabled()) {
1344                         ret = eeh_unfreeze_pe(pe, true);
1345                         break;
1346                 }
1347                 ret = -EIO;
1348                 break;
1349         case EEH_OPT_DISABLE:
1350                 break;
1351         case EEH_OPT_THAW_MMIO:
1352         case EEH_OPT_THAW_DMA:
1353                 if (!eeh_ops || !eeh_ops->set_option) {
1354                         ret = -ENOENT;
1355                         break;
1356                 }
1357
1358                 ret = eeh_pci_enable(pe, option);
1359                 break;
1360         default:
1361                 pr_debug("%s: Option %d out of range (%d, %d)\n",
1362                         __func__, option, EEH_OPT_DISABLE, EEH_OPT_THAW_DMA);
1363                 ret = -EINVAL;
1364         }
1365
1366         return ret;
1367 }
1368 EXPORT_SYMBOL_GPL(eeh_pe_set_option);
1369
1370 /**
1371  * eeh_pe_get_state - Retrieve PE's state
1372  * @pe: EEH PE
1373  *
1374  * Retrieve the PE's state, which includes 3 aspects: enabled
1375  * DMA, enabled IO and asserted reset.
1376  */
1377 int eeh_pe_get_state(struct eeh_pe *pe)
1378 {
1379         int result, ret = 0;
1380         bool rst_active, dma_en, mmio_en;
1381
1382         /* Existing PE ? */
1383         if (!pe)
1384                 return -ENODEV;
1385
1386         if (!eeh_ops || !eeh_ops->get_state)
1387                 return -ENOENT;
1388
1389         result = eeh_ops->get_state(pe, NULL);
1390         rst_active = !!(result & EEH_STATE_RESET_ACTIVE);
1391         dma_en = !!(result & EEH_STATE_DMA_ENABLED);
1392         mmio_en = !!(result & EEH_STATE_MMIO_ENABLED);
1393
1394         if (rst_active)
1395                 ret = EEH_PE_STATE_RESET;
1396         else if (dma_en && mmio_en)
1397                 ret = EEH_PE_STATE_NORMAL;
1398         else if (!dma_en && !mmio_en)
1399                 ret = EEH_PE_STATE_STOPPED_IO_DMA;
1400         else if (!dma_en && mmio_en)
1401                 ret = EEH_PE_STATE_STOPPED_DMA;
1402         else
1403                 ret = EEH_PE_STATE_UNAVAIL;
1404
1405         return ret;
1406 }
1407 EXPORT_SYMBOL_GPL(eeh_pe_get_state);
1408
1409 static int eeh_pe_reenable_devices(struct eeh_pe *pe)
1410 {
1411         struct eeh_dev *edev, *tmp;
1412         struct pci_dev *pdev;
1413         int ret = 0;
1414
1415         /* Restore config space */
1416         eeh_pe_restore_bars(pe);
1417
1418         /*
1419          * Reenable PCI devices as the devices passed
1420          * through are always enabled before the reset.
1421          */
1422         eeh_pe_for_each_dev(pe, edev, tmp) {
1423                 pdev = eeh_dev_to_pci_dev(edev);
1424                 if (!pdev)
1425                         continue;
1426
1427                 ret = pci_reenable_device(pdev);
1428                 if (ret) {
1429                         pr_warn("%s: Failure %d reenabling %s\n",
1430                                 __func__, ret, pci_name(pdev));
1431                         return ret;
1432                 }
1433         }
1434
1435         /* The PE is still in frozen state */
1436         ret = eeh_ops->set_option(pe, EEH_OPT_THAW_MMIO);
1437         if (ret) {
1438                 pr_warn("%s: Failure %d enabling MMIO for PHB#%x-PE#%x\n",
1439                         __func__, ret, pe->phb->global_number, pe->addr);
1440                 return ret;
1441         }
1442
1443         ret = eeh_ops->set_option(pe, EEH_OPT_THAW_DMA);
1444         if (ret) {
1445                 pr_warn("%s: Failure %d enabling DMA for PHB#%x-PE#%x\n",
1446                         __func__, ret, pe->phb->global_number, pe->addr);
1447                 return ret;
1448         }
1449
1450         /* Clear software isolated state */
1451         eeh_pe_state_clear(pe, EEH_PE_ISOLATED);
1452
1453         return ret;
1454 }
1455
1456 /**
1457  * eeh_pe_reset - Issue PE reset according to specified type
1458  * @pe: EEH PE
1459  * @option: reset type
1460  *
1461  * The routine is called to reset the specified PE with the
1462  * indicated type, either fundamental reset or hot reset.
1463  * PE reset is the most important part for error recovery.
1464  */
1465 int eeh_pe_reset(struct eeh_pe *pe, int option)
1466 {
1467         int ret = 0;
1468
1469         /* Invalid PE ? */
1470         if (!pe)
1471                 return -ENODEV;
1472
1473         if (!eeh_ops || !eeh_ops->set_option || !eeh_ops->reset)
1474                 return -ENOENT;
1475
1476         switch (option) {
1477         case EEH_RESET_DEACTIVATE:
1478                 ret = eeh_ops->reset(pe, option);
1479                 if (ret)
1480                         break;
1481
1482                 ret = eeh_pe_reenable_devices(pe);
1483                 break;
1484         case EEH_RESET_HOT:
1485         case EEH_RESET_FUNDAMENTAL:
1486                 /*
1487                  * Proactively freeze the PE to drop all MMIO access
1488                  * during reset, which should be banned as it's always
1489                  * cause recursive EEH error.
1490                  */
1491                 eeh_ops->set_option(pe, EEH_OPT_FREEZE_PE);
1492
1493                 ret = eeh_ops->reset(pe, option);
1494                 break;
1495         default:
1496                 pr_debug("%s: Unsupported option %d\n",
1497                         __func__, option);
1498                 ret = -EINVAL;
1499         }
1500
1501         return ret;
1502 }
1503 EXPORT_SYMBOL_GPL(eeh_pe_reset);
1504
1505 /**
1506  * eeh_pe_configure - Configure PCI bridges after PE reset
1507  * @pe: EEH PE
1508  *
1509  * The routine is called to restore the PCI config space for
1510  * those PCI devices, especially PCI bridges affected by PE
1511  * reset issued previously.
1512  */
1513 int eeh_pe_configure(struct eeh_pe *pe)
1514 {
1515         int ret = 0;
1516
1517         /* Invalid PE ? */
1518         if (!pe)
1519                 return -ENODEV;
1520
1521         return ret;
1522 }
1523 EXPORT_SYMBOL_GPL(eeh_pe_configure);
1524
1525 static int proc_eeh_show(struct seq_file *m, void *v)
1526 {
1527         if (!eeh_enabled()) {
1528                 seq_printf(m, "EEH Subsystem is globally disabled\n");
1529                 seq_printf(m, "eeh_total_mmio_ffs=%llu\n", eeh_stats.total_mmio_ffs);
1530         } else {
1531                 seq_printf(m, "EEH Subsystem is enabled\n");
1532                 seq_printf(m,
1533                                 "no device=%llu\n"
1534                                 "no device node=%llu\n"
1535                                 "no config address=%llu\n"
1536                                 "check not wanted=%llu\n"
1537                                 "eeh_total_mmio_ffs=%llu\n"
1538                                 "eeh_false_positives=%llu\n"
1539                                 "eeh_slot_resets=%llu\n",
1540                                 eeh_stats.no_device,
1541                                 eeh_stats.no_dn,
1542                                 eeh_stats.no_cfg_addr,
1543                                 eeh_stats.ignored_check,
1544                                 eeh_stats.total_mmio_ffs,
1545                                 eeh_stats.false_positives,
1546                                 eeh_stats.slot_resets);
1547         }
1548
1549         return 0;
1550 }
1551
1552 static int proc_eeh_open(struct inode *inode, struct file *file)
1553 {
1554         return single_open(file, proc_eeh_show, NULL);
1555 }
1556
1557 static const struct file_operations proc_eeh_operations = {
1558         .open      = proc_eeh_open,
1559         .read      = seq_read,
1560         .llseek    = seq_lseek,
1561         .release   = single_release,
1562 };
1563
1564 #ifdef CONFIG_DEBUG_FS
1565 static int eeh_enable_dbgfs_set(void *data, u64 val)
1566 {
1567         if (val)
1568                 eeh_clear_flag(EEH_FORCE_DISABLED);
1569         else
1570                 eeh_add_flag(EEH_FORCE_DISABLED);
1571
1572         /* Notify the backend */
1573         if (eeh_ops->post_init)
1574                 eeh_ops->post_init();
1575
1576         return 0;
1577 }
1578
1579 static int eeh_enable_dbgfs_get(void *data, u64 *val)
1580 {
1581         if (eeh_enabled())
1582                 *val = 0x1ul;
1583         else
1584                 *val = 0x0ul;
1585         return 0;
1586 }
1587
1588 DEFINE_SIMPLE_ATTRIBUTE(eeh_enable_dbgfs_ops, eeh_enable_dbgfs_get,
1589                         eeh_enable_dbgfs_set, "0x%llx\n");
1590 #endif
1591
1592 static int __init eeh_init_proc(void)
1593 {
1594         if (machine_is(pseries) || machine_is(powernv)) {
1595                 proc_create("powerpc/eeh", 0, NULL, &proc_eeh_operations);
1596 #ifdef CONFIG_DEBUG_FS
1597                 debugfs_create_file("eeh_enable", 0600,
1598                                     powerpc_debugfs_root, NULL,
1599                                     &eeh_enable_dbgfs_ops);
1600 #endif
1601         }
1602
1603         return 0;
1604 }
1605 __initcall(eeh_init_proc);