blob: 416fb432d7e284721641318ff6becc659555fd29 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linas Vepstas3c8c90a2007-05-24 03:28:01 +10002 * Copyright IBM Corporation 2001, 2005, 2006
3 * Copyright Dave Engebretsen & Todd Inglett 2001
4 * Copyright Linas Vepstas 2005, 2006
Gavin Shancb3bc9d2012-02-27 20:03:51 +00005 * Copyright 2001-2012 IBM Corporation.
Linas Vepstas69376502005-11-03 18:47:50 -06006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * 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.
Linas Vepstas69376502005-11-03 18:47:50 -060011 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * 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.
Linas Vepstas69376502005-11-03 18:47:50 -060016 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 * 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
Linas Vepstas3c8c90a2007-05-24 03:28:01 +100020 *
21 * Please address comments and feedback to Linas Vepstas <linas@austin.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 */
23
Linas Vepstas6dee3fb2005-11-03 18:50:10 -060024#include <linux/delay.h>
Gavin Shancb3bc9d2012-02-27 20:03:51 +000025#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/init.h>
27#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/pci.h>
29#include <linux/proc_fs.h>
30#include <linux/rbtree.h>
31#include <linux/seq_file.h>
32#include <linux/spinlock.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040033#include <linux/export.h>
Stephen Rothwellacaa6172007-12-21 15:52:07 +110034#include <linux/of.h>
35
Arun Sharma600634972011-07-26 16:09:06 -070036#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/eeh.h>
Linas Vepstas172ca922005-11-03 18:50:04 -060038#include <asm/eeh_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/io.h>
40#include <asm/machdep.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100041#include <asm/ppc-pci.h>
Linas Vepstas172ca922005-11-03 18:50:04 -060042#include <asm/rtas.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/** Overview:
46 * EEH, or "Extended Error Handling" is a PCI bridge technology for
47 * dealing with PCI bus errors that can't be dealt with within the
48 * usual PCI framework, except by check-stopping the CPU. Systems
49 * that are designed for high-availability/reliability cannot afford
50 * to crash due to a "mere" PCI error, thus the need for EEH.
51 * An EEH-capable bridge operates by converting a detected error
52 * into a "slot freeze", taking the PCI adapter off-line, making
53 * the slot behave, from the OS'es point of view, as if the slot
54 * were "empty": all reads return 0xff's and all writes are silently
55 * ignored. EEH slot isolation events can be triggered by parity
56 * errors on the address or data busses (e.g. during posted writes),
Linas Vepstas69376502005-11-03 18:47:50 -060057 * which in turn might be caused by low voltage on the bus, dust,
58 * vibration, humidity, radioactivity or plain-old failed hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 *
60 * Note, however, that one of the leading causes of EEH slot
61 * freeze events are buggy device drivers, buggy device microcode,
62 * or buggy device hardware. This is because any attempt by the
63 * device to bus-master data to a memory address that is not
64 * assigned to the device will trigger a slot freeze. (The idea
65 * is to prevent devices-gone-wild from corrupting system memory).
66 * Buggy hardware/drivers will have a miserable time co-existing
67 * with EEH.
68 *
69 * Ideally, a PCI device driver, when suspecting that an isolation
Lucas De Marchi25985ed2011-03-30 22:57:33 -030070 * event has occurred (e.g. by reading 0xff's), will then ask EEH
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 * whether this is the case, and then take appropriate steps to
72 * reset the PCI slot, the PCI device, and then resume operations.
73 * However, until that day, the checking is done here, with the
74 * eeh_check_failure() routine embedded in the MMIO macros. If
75 * the slot is found to be isolated, an "EEH Event" is synthesized
76 * and sent out for processing.
77 */
78
Linas Vepstas5c1344e2005-11-03 18:49:31 -060079/* If a device driver keeps reading an MMIO register in an interrupt
Mike Masonf36c5222008-07-22 02:40:17 +100080 * handler after a slot isolation event, it might be broken.
81 * This sets the threshold for how many read attempts we allow
82 * before printing an error message.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 */
Linas Vepstas2fd30be2007-03-19 14:53:22 -050084#define EEH_MAX_FAILS 2100000
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Linas Vepstas17213c32007-05-10 02:38:11 +100086/* Time to wait for a PCI slot to report status, in milliseconds */
Linas Vepstas9c547762007-03-19 14:58:07 -050087#define PCI_BUS_RESET_WAIT_MSEC (60*1000)
88
Gavin Shanaa1e6372012-02-27 20:03:53 +000089/* Platform dependent EEH operations */
90struct eeh_ops *eeh_ops = NULL;
91
David Woodhouse1e28a7d2005-11-17 00:44:03 +000092int eeh_subsystem_enabled;
93EXPORT_SYMBOL(eeh_subsystem_enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Gavin Shand7bb8862012-09-07 22:44:21 +000095/*
96 * EEH probe mode support. The intention is to support multiple
97 * platforms for EEH. Some platforms like pSeries do PCI emunation
98 * based on device tree. However, other platforms like powernv probe
99 * PCI devices from hardware. The flag is used to distinguish that.
100 * In addition, struct eeh_ops::probe would be invoked for particular
101 * OF node or PCI device so that the corresponding PE would be created
102 * there.
103 */
104int eeh_probe_mode;
105
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600106/* Lock to avoid races due to multiple reports of an error */
Gavin Shan49075812013-06-20 13:21:03 +0800107DEFINE_RAW_SPINLOCK(confirm_error_lock);
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600108
Linas Vepstas17213c32007-05-10 02:38:11 +1000109/* Buffer for reporting pci register dumps. Its here in BSS, and
110 * not dynamically alloced, so that it ends up in RMO where RTAS
111 * can access it.
112 */
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000113#define EEH_PCI_REGS_LOG_LEN 4096
114static unsigned char pci_regs_buf[EEH_PCI_REGS_LOG_LEN];
115
Gavin Shane575f8d2012-02-29 15:47:45 +0000116/*
117 * The struct is used to maintain the EEH global statistic
118 * information. Besides, the EEH global statistics will be
119 * exported to user space through procfs
120 */
121struct eeh_stats {
122 u64 no_device; /* PCI device not found */
123 u64 no_dn; /* OF node not found */
124 u64 no_cfg_addr; /* Config address not found */
125 u64 ignored_check; /* EEH check skipped */
126 u64 total_mmio_ffs; /* Total EEH checks */
127 u64 false_positives; /* Unnecessary EEH checks */
128 u64 slot_resets; /* PE reset */
129};
130
131static struct eeh_stats eeh_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Linas Vepstas7684b402005-11-03 18:55:19 -0600133#define IS_BRIDGE(class_code) (((class_code)<<16) == PCI_BASE_CLASS_BRIDGE)
134
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000135/**
Gavin Shancce4b2d2012-02-27 20:03:52 +0000136 * eeh_gather_pci_data - Copy assorted PCI config space registers to buff
Gavin Shanf631acd2012-02-27 20:04:07 +0000137 * @edev: device to report data for
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000138 * @buf: point to buffer in which to log
139 * @len: amount of room in buffer
140 *
141 * This routine captures assorted PCI configuration space data,
142 * and puts them into a buffer for RTAS error logging.
143 */
Gavin Shanf631acd2012-02-27 20:04:07 +0000144static size_t eeh_gather_pci_data(struct eeh_dev *edev, char * buf, size_t len)
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000145{
Gavin Shanf631acd2012-02-27 20:04:07 +0000146 struct device_node *dn = eeh_dev_to_of_node(edev);
147 struct pci_dev *dev = eeh_dev_to_pci_dev(edev);
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000148 u32 cfg;
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000149 int cap, i;
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000150 int n = 0;
151
Gavin Shanf631acd2012-02-27 20:04:07 +0000152 n += scnprintf(buf+n, len-n, "%s\n", dn->full_name);
153 printk(KERN_WARNING "EEH: of node=%s\n", dn->full_name);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000154
Gavin Shan37804442012-02-27 20:04:11 +0000155 eeh_ops->read_config(dn, PCI_VENDOR_ID, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000156 n += scnprintf(buf+n, len-n, "dev/vend:%08x\n", cfg);
157 printk(KERN_WARNING "EEH: PCI device/vendor: %08x\n", cfg);
158
Gavin Shan37804442012-02-27 20:04:11 +0000159 eeh_ops->read_config(dn, PCI_COMMAND, 4, &cfg);
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000160 n += scnprintf(buf+n, len-n, "cmd/stat:%x\n", cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000161 printk(KERN_WARNING "EEH: PCI cmd/status register: %08x\n", cfg);
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000162
Linas Vepstasb37ceef2007-11-03 07:29:01 +1100163 if (!dev) {
164 printk(KERN_WARNING "EEH: no PCI device for this of node\n");
165 return n;
166 }
167
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000168 /* Gather bridge-specific registers */
169 if (dev->class >> 16 == PCI_BASE_CLASS_BRIDGE) {
Gavin Shan37804442012-02-27 20:04:11 +0000170 eeh_ops->read_config(dn, PCI_SEC_STATUS, 2, &cfg);
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000171 n += scnprintf(buf+n, len-n, "sec stat:%x\n", cfg);
172 printk(KERN_WARNING "EEH: Bridge secondary status: %04x\n", cfg);
173
Gavin Shan37804442012-02-27 20:04:11 +0000174 eeh_ops->read_config(dn, PCI_BRIDGE_CONTROL, 2, &cfg);
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000175 n += scnprintf(buf+n, len-n, "brdg ctl:%x\n", cfg);
176 printk(KERN_WARNING "EEH: Bridge control: %04x\n", cfg);
177 }
178
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000179 /* Dump out the PCI-X command and status regs */
Linas Vepstasb37ceef2007-11-03 07:29:01 +1100180 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000181 if (cap) {
Gavin Shan37804442012-02-27 20:04:11 +0000182 eeh_ops->read_config(dn, cap, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000183 n += scnprintf(buf+n, len-n, "pcix-cmd:%x\n", cfg);
184 printk(KERN_WARNING "EEH: PCI-X cmd: %08x\n", cfg);
185
Gavin Shan37804442012-02-27 20:04:11 +0000186 eeh_ops->read_config(dn, cap+4, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000187 n += scnprintf(buf+n, len-n, "pcix-stat:%x\n", cfg);
188 printk(KERN_WARNING "EEH: PCI-X status: %08x\n", cfg);
189 }
190
191 /* If PCI-E capable, dump PCI-E cap 10, and the AER */
Linas Vepstasb37ceef2007-11-03 07:29:01 +1100192 cap = pci_find_capability(dev, PCI_CAP_ID_EXP);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000193 if (cap) {
194 n += scnprintf(buf+n, len-n, "pci-e cap10:\n");
195 printk(KERN_WARNING
196 "EEH: PCI-E capabilities and status follow:\n");
197
198 for (i=0; i<=8; i++) {
Gavin Shan37804442012-02-27 20:04:11 +0000199 eeh_ops->read_config(dn, cap+4*i, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000200 n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
201 printk(KERN_WARNING "EEH: PCI-E %02x: %08x\n", i, cfg);
202 }
203
Linas Vepstasb37ceef2007-11-03 07:29:01 +1100204 cap = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000205 if (cap) {
206 n += scnprintf(buf+n, len-n, "pci-e AER:\n");
207 printk(KERN_WARNING
208 "EEH: PCI-E AER capability register set follows:\n");
209
210 for (i=0; i<14; i++) {
Gavin Shan37804442012-02-27 20:04:11 +0000211 eeh_ops->read_config(dn, cap+4*i, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000212 n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
213 printk(KERN_WARNING "EEH: PCI-E AER %02x: %08x\n", i, cfg);
214 }
215 }
216 }
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000217
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000218 return n;
219}
220
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000221/**
222 * eeh_slot_error_detail - Generate combined log including driver log and error log
Gavin Shanff477962012-09-07 22:44:16 +0000223 * @pe: EEH PE
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000224 * @severity: temporary or permanent error log
225 *
226 * This routine should be called to generate the combined log, which
227 * is comprised of driver log and error log. The driver log is figured
228 * out from the config space of the corresponding PCI device, while
229 * the error log is fetched through platform dependent function call.
230 */
Gavin Shanff477962012-09-07 22:44:16 +0000231void eeh_slot_error_detail(struct eeh_pe *pe, int severity)
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000232{
233 size_t loglen = 0;
Gavin Shanff477962012-09-07 22:44:16 +0000234 struct eeh_dev *edev;
Gavin Shanc35ae172013-06-27 13:46:42 +0800235 bool valid_cfg_log = true;
Gavin Shanff477962012-09-07 22:44:16 +0000236
Gavin Shanc35ae172013-06-27 13:46:42 +0800237 /*
238 * When the PHB is fenced or dead, it's pointless to collect
239 * the data from PCI config space because it should return
240 * 0xFF's. For ER, we still retrieve the data from the PCI
241 * config space.
242 */
243 if (eeh_probe_mode_dev() &&
244 (pe->type & EEH_PE_PHB) &&
245 (pe->state & (EEH_PE_ISOLATED | EEH_PE_PHB_DEAD)))
246 valid_cfg_log = false;
Gavin Shanff477962012-09-07 22:44:16 +0000247
Gavin Shanc35ae172013-06-27 13:46:42 +0800248 if (valid_cfg_log) {
249 eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
250 eeh_ops->configure_bridge(pe);
251 eeh_pe_restore_bars(pe);
252
253 pci_regs_buf[0] = 0;
254 eeh_pe_for_each_dev(pe, edev) {
255 loglen += eeh_gather_pci_data(edev, pci_regs_buf + loglen,
256 EEH_PCI_REGS_LOG_LEN - loglen);
257 }
258 }
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000259
Gavin Shanff477962012-09-07 22:44:16 +0000260 eeh_ops->get_log(pe, severity, pci_regs_buf, loglen);
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000261}
262
263/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000264 * eeh_token_to_phys - Convert EEH address token to phys address
265 * @token: I/O token, should be address in the form 0xA....
266 *
267 * This routine should be called to convert virtual I/O address
268 * to physical one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
270static inline unsigned long eeh_token_to_phys(unsigned long token)
271{
272 pte_t *ptep;
273 unsigned long pa;
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530274 int hugepage_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530276 /*
277 * We won't find hugepages here, iomem
278 */
279 ptep = find_linux_pte_or_hugepte(init_mm.pgd, token, &hugepage_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 if (!ptep)
281 return token;
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530282 WARN_ON(hugepage_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 pa = pte_pfn(*ptep) << PAGE_SHIFT;
284
285 return pa | (token & (PAGE_SIZE-1));
286}
287
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800288/*
289 * On PowerNV platform, we might already have fenced PHB there.
290 * For that case, it's meaningless to recover frozen PE. Intead,
291 * We have to handle fenced PHB firstly.
292 */
293static int eeh_phb_check_failure(struct eeh_pe *pe)
294{
295 struct eeh_pe *phb_pe;
296 unsigned long flags;
297 int ret;
298
299 if (!eeh_probe_mode_dev())
300 return -EPERM;
301
302 /* Find the PHB PE */
303 phb_pe = eeh_phb_pe_get(pe->phb);
304 if (!phb_pe) {
305 pr_warning("%s Can't find PE for PHB#%d\n",
306 __func__, pe->phb->global_number);
307 return -EEXIST;
308 }
309
310 /* If the PHB has been in problematic state */
311 eeh_serialize_lock(&flags);
312 if (phb_pe->state & (EEH_PE_ISOLATED | EEH_PE_PHB_DEAD)) {
313 ret = 0;
314 goto out;
315 }
316
317 /* Check PHB state */
318 ret = eeh_ops->get_state(phb_pe, NULL);
319 if ((ret < 0) ||
320 (ret == EEH_STATE_NOT_SUPPORT) ||
321 (ret & (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) ==
322 (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) {
323 ret = 0;
324 goto out;
325 }
326
327 /* Isolate the PHB and send event */
328 eeh_pe_state_mark(phb_pe, EEH_PE_ISOLATED);
329 eeh_serialize_unlock(flags);
330 eeh_send_failure_event(phb_pe);
331
332 WARN(1, "EEH: PHB failure detected\n");
333
334 return 1;
335out:
336 eeh_serialize_unlock(flags);
337 return ret;
338}
339
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000340/**
Gavin Shanf8f7d632012-09-07 22:44:22 +0000341 * eeh_dev_check_failure - Check if all 1's data is due to EEH slot freeze
342 * @edev: eeh device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 *
344 * Check for an EEH failure for the given device node. Call this
345 * routine if the result of a read was all 0xff's and you want to
346 * find out if this is due to an EEH slot freeze. This routine
347 * will query firmware for the EEH status.
348 *
349 * Returns 0 if there has not been an EEH error; otherwise returns
Linas Vepstas69376502005-11-03 18:47:50 -0600350 * a non-zero value and queues up a slot isolation event notification.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 *
352 * It is safe to call this routine in an interrupt context.
353 */
Gavin Shanf8f7d632012-09-07 22:44:22 +0000354int eeh_dev_check_failure(struct eeh_dev *edev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355{
356 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 unsigned long flags;
Gavin Shanf8f7d632012-09-07 22:44:22 +0000358 struct device_node *dn;
359 struct pci_dev *dev;
Gavin Shan66523d92012-09-07 22:44:13 +0000360 struct eeh_pe *pe;
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600361 int rc = 0;
Mike Masonf36c5222008-07-22 02:40:17 +1000362 const char *location;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Gavin Shane575f8d2012-02-29 15:47:45 +0000364 eeh_stats.total_mmio_ffs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366 if (!eeh_subsystem_enabled)
367 return 0;
368
Gavin Shanf8f7d632012-09-07 22:44:22 +0000369 if (!edev) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000370 eeh_stats.no_dn++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 return 0;
Linas Vepstas177bc932005-11-03 18:48:52 -0600372 }
Gavin Shanf8f7d632012-09-07 22:44:22 +0000373 dn = eeh_dev_to_of_node(edev);
374 dev = eeh_dev_to_pci_dev(edev);
Gavin Shan66523d92012-09-07 22:44:13 +0000375 pe = edev->pe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 /* Access to IO BARs might get this far and still not want checking. */
Gavin Shan66523d92012-09-07 22:44:13 +0000378 if (!pe) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000379 eeh_stats.ignored_check++;
Gavin Shan66523d92012-09-07 22:44:13 +0000380 pr_debug("EEH: Ignored check for %s %s\n",
381 eeh_pci_name(dev), dn->full_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return 0;
383 }
384
Gavin Shan66523d92012-09-07 22:44:13 +0000385 if (!pe->addr && !pe->config_addr) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000386 eeh_stats.no_cfg_addr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return 0;
388 }
389
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800390 /*
391 * On PowerNV platform, we might already have fenced PHB
392 * there and we need take care of that firstly.
393 */
394 ret = eeh_phb_check_failure(pe);
395 if (ret > 0)
396 return ret;
397
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600398 /* If we already have a pending isolation event for this
399 * slot, we know it's bad already, we don't need to check.
400 * Do this checking under a lock; as multiple PCI devices
401 * in one slot might report errors simultaneously, and we
402 * only want one error recovery routine running.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 */
Gavin Shan49075812013-06-20 13:21:03 +0800404 eeh_serialize_lock(&flags);
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600405 rc = 1;
Gavin Shan66523d92012-09-07 22:44:13 +0000406 if (pe->state & EEH_PE_ISOLATED) {
407 pe->check_count++;
408 if (pe->check_count % EEH_MAX_FAILS == 0) {
Mike Masonf36c5222008-07-22 02:40:17 +1000409 location = of_get_property(dn, "ibm,loc-code", NULL);
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000410 printk(KERN_ERR "EEH: %d reads ignored for recovering device at "
Mike Masonf36c5222008-07-22 02:40:17 +1000411 "location=%s driver=%s pci addr=%s\n",
Gavin Shan66523d92012-09-07 22:44:13 +0000412 pe->check_count, location,
Thadeu Lima de Souza Cascardo778a7852012-01-11 09:09:58 +0000413 eeh_driver_name(dev), eeh_pci_name(dev));
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000414 printk(KERN_ERR "EEH: Might be infinite loop in %s driver\n",
Thadeu Lima de Souza Cascardo778a7852012-01-11 09:09:58 +0000415 eeh_driver_name(dev));
Linas Vepstas5c1344e2005-11-03 18:49:31 -0600416 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600418 goto dn_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
420
421 /*
422 * Now test for an EEH failure. This is VERY expensive.
423 * Note that the eeh_config_addr may be a parent device
424 * in the case of a device behind a bridge, or it may be
425 * function zero of a multi-function device.
426 * In any case they must share a common PHB.
427 */
Gavin Shan66523d92012-09-07 22:44:13 +0000428 ret = eeh_ops->get_state(pe, NULL);
Linas Vepstas76e6faf2005-11-03 18:49:15 -0600429
Linas Vepstas39d16e22007-03-19 14:51:00 -0500430 /* Note that config-io to empty slots may fail;
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000431 * they are empty when they don't have children.
Gavin Shaneb594a42012-02-27 20:03:57 +0000432 * We will punt with the following conditions: Failure to get
433 * PE's state, EEH not support and Permanently unavailable
434 * state, PE is in good state.
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000435 */
Gavin Shaneb594a42012-02-27 20:03:57 +0000436 if ((ret < 0) ||
437 (ret == EEH_STATE_NOT_SUPPORT) ||
438 (ret & (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) ==
439 (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000440 eeh_stats.false_positives++;
Gavin Shan66523d92012-09-07 22:44:13 +0000441 pe->false_positives++;
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600442 rc = 0;
443 goto dn_unlock;
Linas Vepstas76e6faf2005-11-03 18:49:15 -0600444 }
445
Gavin Shane575f8d2012-02-29 15:47:45 +0000446 eeh_stats.slot_resets++;
Gavin Shana84f2732013-06-20 13:20:51 +0800447
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600448 /* Avoid repeated reports of this failure, including problems
449 * with other functions on this device, and functions under
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000450 * bridges.
451 */
Gavin Shan66523d92012-09-07 22:44:13 +0000452 eeh_pe_state_mark(pe, EEH_PE_ISOLATED);
Gavin Shan49075812013-06-20 13:21:03 +0800453 eeh_serialize_unlock(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Gavin Shan66523d92012-09-07 22:44:13 +0000455 eeh_send_failure_event(pe);
Linas Vepstas77bd7412005-11-03 18:52:49 -0600456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 /* Most EEH events are due to device driver bugs. Having
458 * a stack trace will help the device-driver authors figure
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000459 * out what happened. So print that out.
460 */
Anton Blanchard14fb1fa2012-04-17 19:16:48 +0000461 WARN(1, "EEH: failure detected\n");
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600462 return 1;
463
464dn_unlock:
Gavin Shan49075812013-06-20 13:21:03 +0800465 eeh_serialize_unlock(flags);
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600466 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Gavin Shanf8f7d632012-09-07 22:44:22 +0000469EXPORT_SYMBOL_GPL(eeh_dev_check_failure);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
471/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000472 * eeh_check_failure - Check if all 1's data is due to EEH slot freeze
473 * @token: I/O token, should be address in the form 0xA....
474 * @val: value, should be all 1's (XXX why do we need this arg??)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 * Check for an EEH failure at the given token address. Call this
477 * routine if the result of a read was all 0xff's and you want to
478 * find out if this is due to an EEH slot freeze event. This routine
479 * will query firmware for the EEH status.
480 *
481 * Note this routine is safe to call in an interrupt context.
482 */
483unsigned long eeh_check_failure(const volatile void __iomem *token, unsigned long val)
484{
485 unsigned long addr;
Gavin Shanf8f7d632012-09-07 22:44:22 +0000486 struct eeh_dev *edev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 /* Finding the phys addr + pci device; this is pretty quick. */
489 addr = eeh_token_to_phys((unsigned long __force) token);
Gavin Shan3ab96a02012-09-07 22:44:23 +0000490 edev = eeh_addr_cache_get_dev(addr);
Gavin Shanf8f7d632012-09-07 22:44:22 +0000491 if (!edev) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000492 eeh_stats.no_device++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return val;
Linas Vepstas177bc932005-11-03 18:48:52 -0600494 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
Gavin Shanf8f7d632012-09-07 22:44:22 +0000496 eeh_dev_check_failure(edev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Gavin Shanf8f7d632012-09-07 22:44:22 +0000498 pci_dev_put(eeh_dev_to_pci_dev(edev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 return val;
500}
501
502EXPORT_SYMBOL(eeh_check_failure);
503
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600504
Linas Vepstascb5b5622006-09-15 18:56:35 -0500505/**
Gavin Shancce4b2d2012-02-27 20:03:52 +0000506 * eeh_pci_enable - Enable MMIO or DMA transfers for this slot
Gavin Shanff477962012-09-07 22:44:16 +0000507 * @pe: EEH PE
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000508 *
509 * This routine should be called to reenable frozen MMIO or DMA
510 * so that it would work correctly again. It's useful while doing
511 * recovery or log collection on the indicated device.
Linas Vepstas47b5c832006-09-15 18:57:42 -0500512 */
Gavin Shanff477962012-09-07 22:44:16 +0000513int eeh_pci_enable(struct eeh_pe *pe, int function)
Linas Vepstas47b5c832006-09-15 18:57:42 -0500514{
Linas Vepstas47b5c832006-09-15 18:57:42 -0500515 int rc;
516
Gavin Shanff477962012-09-07 22:44:16 +0000517 rc = eeh_ops->set_option(pe, function);
Linas Vepstas47b5c832006-09-15 18:57:42 -0500518 if (rc)
Gavin Shanff477962012-09-07 22:44:16 +0000519 pr_warning("%s: Unexpected state change %d on PHB#%d-PE#%x, err=%d\n",
520 __func__, function, pe->phb->global_number, pe->addr, rc);
Linas Vepstas47b5c832006-09-15 18:57:42 -0500521
Gavin Shanff477962012-09-07 22:44:16 +0000522 rc = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
Gavin Shaneb594a42012-02-27 20:03:57 +0000523 if (rc > 0 && (rc & EEH_STATE_MMIO_ENABLED) &&
524 (function == EEH_OPT_THAW_MMIO))
Linas Vepstasfa1be472007-03-19 14:59:59 -0500525 return 0;
526
Linas Vepstas47b5c832006-09-15 18:57:42 -0500527 return rc;
528}
529
530/**
Brian King00c2ae32007-05-08 08:04:05 +1000531 * pcibios_set_pcie_slot_reset - Set PCI-E reset state
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000532 * @dev: pci device struct
533 * @state: reset state to enter
Brian King00c2ae32007-05-08 08:04:05 +1000534 *
535 * Return value:
536 * 0 if success
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000537 */
Brian King00c2ae32007-05-08 08:04:05 +1000538int pcibios_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
539{
Gavin Shanc270a242012-09-07 22:44:17 +0000540 struct eeh_dev *edev = pci_dev_to_eeh_dev(dev);
541 struct eeh_pe *pe = edev->pe;
542
543 if (!pe) {
544 pr_err("%s: No PE found on PCI device %s\n",
545 __func__, pci_name(dev));
546 return -EINVAL;
547 }
Brian King00c2ae32007-05-08 08:04:05 +1000548
549 switch (state) {
550 case pcie_deassert_reset:
Gavin Shanc270a242012-09-07 22:44:17 +0000551 eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
Brian King00c2ae32007-05-08 08:04:05 +1000552 break;
553 case pcie_hot_reset:
Gavin Shanc270a242012-09-07 22:44:17 +0000554 eeh_ops->reset(pe, EEH_RESET_HOT);
Brian King00c2ae32007-05-08 08:04:05 +1000555 break;
556 case pcie_warm_reset:
Gavin Shanc270a242012-09-07 22:44:17 +0000557 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
Brian King00c2ae32007-05-08 08:04:05 +1000558 break;
559 default:
560 return -EINVAL;
561 };
562
563 return 0;
564}
565
566/**
Gavin Shanc270a242012-09-07 22:44:17 +0000567 * eeh_set_pe_freset - Check the required reset for the indicated device
568 * @data: EEH device
569 * @flag: return value
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000570 *
571 * Each device might have its preferred reset type: fundamental or
572 * hot reset. The routine is used to collected the information for
573 * the indicated device and its children so that the bunch of the
574 * devices could be reset properly.
575 */
Gavin Shanc270a242012-09-07 22:44:17 +0000576static void *eeh_set_dev_freset(void *data, void *flag)
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000577{
578 struct pci_dev *dev;
Gavin Shanc270a242012-09-07 22:44:17 +0000579 unsigned int *freset = (unsigned int *)flag;
580 struct eeh_dev *edev = (struct eeh_dev *)data;
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000581
Gavin Shanc270a242012-09-07 22:44:17 +0000582 dev = eeh_dev_to_pci_dev(edev);
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000583 if (dev)
584 *freset |= dev->needs_freset;
585
Gavin Shanc270a242012-09-07 22:44:17 +0000586 return NULL;
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000587}
588
589/**
Gavin Shancce4b2d2012-02-27 20:03:52 +0000590 * eeh_reset_pe_once - Assert the pci #RST line for 1/4 second
Gavin Shanc270a242012-09-07 22:44:17 +0000591 * @pe: EEH PE
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000592 *
593 * Assert the PCI #RST line for 1/4 second.
594 */
Gavin Shanc270a242012-09-07 22:44:17 +0000595static void eeh_reset_pe_once(struct eeh_pe *pe)
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600596{
Richard A Lary308fc4f2011-04-22 09:59:47 +0000597 unsigned int freset = 0;
Mike Mason6e193142009-07-30 15:42:39 -0700598
Richard A Lary308fc4f2011-04-22 09:59:47 +0000599 /* Determine type of EEH reset required for
600 * Partitionable Endpoint, a hot-reset (1)
601 * or a fundamental reset (3).
602 * A fundamental reset required by any device under
603 * Partitionable Endpoint trumps hot-reset.
Gavin Shana84f2732013-06-20 13:20:51 +0800604 */
Gavin Shanc270a242012-09-07 22:44:17 +0000605 eeh_pe_dev_traverse(pe, eeh_set_dev_freset, &freset);
Richard A Lary308fc4f2011-04-22 09:59:47 +0000606
607 if (freset)
Gavin Shanc270a242012-09-07 22:44:17 +0000608 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
Mike Mason6e193142009-07-30 15:42:39 -0700609 else
Gavin Shanc270a242012-09-07 22:44:17 +0000610 eeh_ops->reset(pe, EEH_RESET_HOT);
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600611
612 /* The PCI bus requires that the reset be held high for at least
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000613 * a 100 milliseconds. We wait a bit longer 'just in case'.
614 */
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600615#define PCI_BUS_RST_HOLD_TIME_MSEC 250
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000616 msleep(PCI_BUS_RST_HOLD_TIME_MSEC);
Gavin Shana84f2732013-06-20 13:20:51 +0800617
618 /* We might get hit with another EEH freeze as soon as the
Linas Vepstasd9564ad2005-11-03 18:50:48 -0600619 * pci slot reset line is dropped. Make sure we don't miss
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000620 * these, and clear the flag now.
621 */
Gavin Shandbbceee2012-09-07 22:44:20 +0000622 eeh_pe_state_clear(pe, EEH_PE_ISOLATED);
Linas Vepstasd9564ad2005-11-03 18:50:48 -0600623
Gavin Shanc270a242012-09-07 22:44:17 +0000624 eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600625
626 /* After a PCI slot has been reset, the PCI Express spec requires
627 * a 1.5 second idle time for the bus to stabilize, before starting
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000628 * up traffic.
629 */
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600630#define PCI_BUS_SETTLE_TIME_MSEC 1800
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000631 msleep(PCI_BUS_SETTLE_TIME_MSEC);
Linas Vepstase1029262006-09-21 18:25:56 -0500632}
633
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000634/**
Gavin Shancce4b2d2012-02-27 20:03:52 +0000635 * eeh_reset_pe - Reset the indicated PE
Gavin Shanc270a242012-09-07 22:44:17 +0000636 * @pe: EEH PE
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000637 *
638 * This routine should be called to reset indicated device, including
639 * PE. A PE might include multiple PCI devices and sometimes PCI bridges
640 * might be involved as well.
641 */
Gavin Shanc270a242012-09-07 22:44:17 +0000642int eeh_reset_pe(struct eeh_pe *pe)
Linas Vepstase1029262006-09-21 18:25:56 -0500643{
Gavin Shan326a98e2013-06-20 13:20:58 +0800644 int flags = (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE);
Linas Vepstase1029262006-09-21 18:25:56 -0500645 int i, rc;
646
Linas Vepstas9c547762007-03-19 14:58:07 -0500647 /* Take three shots at resetting the bus */
648 for (i=0; i<3; i++) {
Gavin Shanc270a242012-09-07 22:44:17 +0000649 eeh_reset_pe_once(pe);
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600650
Gavin Shanc270a242012-09-07 22:44:17 +0000651 rc = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
Gavin Shan326a98e2013-06-20 13:20:58 +0800652 if ((rc & flags) == flags)
Linas Vepstasb6495c02005-11-03 18:54:54 -0600653 return 0;
Linas Vepstase1029262006-09-21 18:25:56 -0500654
Linas Vepstase1029262006-09-21 18:25:56 -0500655 if (rc < 0) {
Gavin Shanc270a242012-09-07 22:44:17 +0000656 pr_err("%s: Unrecoverable slot failure on PHB#%d-PE#%x",
657 __func__, pe->phb->global_number, pe->addr);
Linas Vepstasb6495c02005-11-03 18:54:54 -0600658 return -1;
Linas Vepstase1029262006-09-21 18:25:56 -0500659 }
Gavin Shanc270a242012-09-07 22:44:17 +0000660 pr_err("EEH: bus reset %d failed on PHB#%d-PE#%x, rc=%d\n",
661 i+1, pe->phb->global_number, pe->addr, rc);
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600662 }
Linas Vepstasb6495c02005-11-03 18:54:54 -0600663
Linas Vepstas9c547762007-03-19 14:58:07 -0500664 return -1;
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600665}
666
Linas Vepstas8b553f32005-11-03 18:50:17 -0600667/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000668 * eeh_save_bars - Save device bars
Gavin Shanf631acd2012-02-27 20:04:07 +0000669 * @edev: PCI device associated EEH device
Linas Vepstas8b553f32005-11-03 18:50:17 -0600670 *
671 * Save the values of the device bars. Unlike the restore
672 * routine, this routine is *not* recursive. This is because
Justin Mattock31116f02011-02-24 20:10:18 +0000673 * PCI devices are added individually; but, for the restore,
Linas Vepstas8b553f32005-11-03 18:50:17 -0600674 * an entire slot is reset at a time.
675 */
Gavin Shand7bb8862012-09-07 22:44:21 +0000676void eeh_save_bars(struct eeh_dev *edev)
Linas Vepstas8b553f32005-11-03 18:50:17 -0600677{
678 int i;
Gavin Shanf631acd2012-02-27 20:04:07 +0000679 struct device_node *dn;
Linas Vepstas8b553f32005-11-03 18:50:17 -0600680
Gavin Shanf631acd2012-02-27 20:04:07 +0000681 if (!edev)
Linas Vepstas8b553f32005-11-03 18:50:17 -0600682 return;
Gavin Shanf631acd2012-02-27 20:04:07 +0000683 dn = eeh_dev_to_of_node(edev);
Gavin Shana84f2732013-06-20 13:20:51 +0800684
Linas Vepstas8b553f32005-11-03 18:50:17 -0600685 for (i = 0; i < 16; i++)
Gavin Shan37804442012-02-27 20:04:11 +0000686 eeh_ops->read_config(dn, i * 4, 4, &edev->config_space[i]);
Linas Vepstas8b553f32005-11-03 18:50:17 -0600687}
688
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000689/**
Gavin Shanaa1e6372012-02-27 20:03:53 +0000690 * eeh_ops_register - Register platform dependent EEH operations
691 * @ops: platform dependent EEH operations
692 *
693 * Register the platform dependent EEH operation callback
694 * functions. The platform should call this function before
695 * any other EEH operations.
696 */
697int __init eeh_ops_register(struct eeh_ops *ops)
698{
699 if (!ops->name) {
700 pr_warning("%s: Invalid EEH ops name for %p\n",
701 __func__, ops);
702 return -EINVAL;
703 }
704
705 if (eeh_ops && eeh_ops != ops) {
706 pr_warning("%s: EEH ops of platform %s already existing (%s)\n",
707 __func__, eeh_ops->name, ops->name);
708 return -EEXIST;
709 }
710
711 eeh_ops = ops;
712
713 return 0;
714}
715
716/**
717 * eeh_ops_unregister - Unreigster platform dependent EEH operations
718 * @name: name of EEH platform operations
719 *
720 * Unregister the platform dependent EEH operation callback
721 * functions.
722 */
723int __exit eeh_ops_unregister(const char *name)
724{
725 if (!name || !strlen(name)) {
726 pr_warning("%s: Invalid EEH ops name\n",
727 __func__);
728 return -EINVAL;
729 }
730
731 if (eeh_ops && !strcmp(eeh_ops->name, name)) {
732 eeh_ops = NULL;
733 return 0;
734 }
735
736 return -EEXIST;
737}
738
739/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000740 * eeh_init - EEH initialization
741 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 * Initialize EEH by trying to enable it for all of the adapters in the system.
743 * As a side effect we can determine here if eeh is supported at all.
744 * Note that we leave EEH on so failed config cycles won't cause a machine
745 * check. If a user turns off EEH for a particular adapter they are really
746 * telling Linux to ignore errors. Some hardware (e.g. POWER5) won't
747 * grant access to a slot if EEH isn't enabled, and so we always enable
748 * EEH for all slots/all devices.
749 *
750 * The eeh-force-off option disables EEH checking globally, for all slots.
751 * Even if force-off is set, the EEH hardware is still enabled, so that
752 * newer systems can boot.
753 */
Gavin Shan51fb5f52013-06-20 13:20:56 +0800754int __init eeh_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755{
Gavin Shan1a5c2e62012-03-20 21:30:29 +0000756 struct pci_controller *hose, *tmp;
757 struct device_node *phb;
Gavin Shan51fb5f52013-06-20 13:20:56 +0800758 static int cnt = 0;
759 int ret = 0;
760
761 /*
762 * We have to delay the initialization on PowerNV after
763 * the PCI hierarchy tree has been built because the PEs
764 * are figured out based on PCI devices instead of device
765 * tree nodes
766 */
767 if (machine_is(powernv) && cnt++ <= 0)
768 return ret;
Gavin Shane2af1552012-02-27 20:03:54 +0000769
770 /* call platform initialization function */
771 if (!eeh_ops) {
772 pr_warning("%s: Platform EEH operation not found\n",
773 __func__);
Gavin Shan35e5cfe2012-09-07 22:44:02 +0000774 return -EEXIST;
Gavin Shane2af1552012-02-27 20:03:54 +0000775 } else if ((ret = eeh_ops->init())) {
776 pr_warning("%s: Failed to call platform init function (%d)\n",
777 __func__, ret);
Gavin Shan35e5cfe2012-09-07 22:44:02 +0000778 return ret;
Gavin Shane2af1552012-02-27 20:03:54 +0000779 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Gavin Shanc8608552013-06-20 13:21:00 +0800781 /* Initialize EEH event */
782 ret = eeh_event_init();
783 if (ret)
784 return ret;
785
Gavin Shan1a5c2e62012-03-20 21:30:29 +0000786 /* Enable EEH for all adapters */
Gavin Shand7bb8862012-09-07 22:44:21 +0000787 if (eeh_probe_mode_devtree()) {
788 list_for_each_entry_safe(hose, tmp,
789 &hose_list, list_node) {
790 phb = hose->dn;
791 traverse_pci_devices(phb, eeh_ops->of_probe, NULL);
792 }
Gavin Shan51fb5f52013-06-20 13:20:56 +0800793 } else if (eeh_probe_mode_dev()) {
794 list_for_each_entry_safe(hose, tmp,
795 &hose_list, list_node)
796 pci_walk_bus(hose->bus, eeh_ops->dev_probe, NULL);
797 } else {
798 pr_warning("%s: Invalid probe mode %d\n",
799 __func__, eeh_probe_mode);
800 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 }
802
Gavin Shan21fd21f2013-06-20 13:20:57 +0800803 /*
804 * Call platform post-initialization. Actually, It's good chance
805 * to inform platform that EEH is ready to supply service if the
806 * I/O cache stuff has been built up.
807 */
808 if (eeh_ops->post_init) {
809 ret = eeh_ops->post_init();
810 if (ret)
811 return ret;
812 }
813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 if (eeh_subsystem_enabled)
Gavin Shand7bb8862012-09-07 22:44:21 +0000815 pr_info("EEH: PCI Enhanced I/O Error Handling Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 else
Gavin Shand7bb8862012-09-07 22:44:21 +0000817 pr_warning("EEH: No capable adapters found\n");
Gavin Shan35e5cfe2012-09-07 22:44:02 +0000818
819 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820}
821
Gavin Shan35e5cfe2012-09-07 22:44:02 +0000822core_initcall_sync(eeh_init);
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000825 * eeh_add_device_early - Enable EEH for the indicated device_node
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 * @dn: device node for which to set up EEH
827 *
828 * This routine must be used to perform EEH initialization for PCI
829 * devices that were added after system boot (e.g. hotplug, dlpar).
830 * This routine must be called before any i/o is performed to the
831 * adapter (inluding any config-space i/o).
832 * Whether this actually enables EEH or not for this device depends
833 * on the CEC architecture, type of the device, on earlier boot
834 * command-line arguments & etc.
835 */
Nathan Fontenot794e0852006-03-31 12:04:52 -0600836static void eeh_add_device_early(struct device_node *dn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
838 struct pci_controller *phb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
Gavin Shan26a74852013-06-20 13:20:59 +0800840 /*
841 * If we're doing EEH probe based on PCI device, we
842 * would delay the probe until late stage because
843 * the PCI device isn't available this moment.
844 */
845 if (!eeh_probe_mode_devtree())
846 return;
847
Gavin Shan1e38b712012-09-17 04:34:28 +0000848 if (!of_node_to_eeh_dev(dn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return;
Gavin Shanf631acd2012-02-27 20:04:07 +0000850 phb = of_node_to_eeh_dev(dn)->phb;
Linas Vepstasf751f842005-11-03 18:54:23 -0600851
852 /* USB Bus children of PCI devices will not have BUID's */
853 if (NULL == phb || 0 == phb->buid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Gavin Shand7bb8862012-09-07 22:44:21 +0000856 eeh_ops->of_probe(dn, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000859/**
860 * eeh_add_device_tree_early - Enable EEH for the indicated device
861 * @dn: device node
862 *
863 * This routine must be used to perform EEH initialization for the
864 * indicated PCI device that was added after system boot (e.g.
865 * hotplug, dlpar).
866 */
Linas Vepstase2a296e2005-11-03 18:51:31 -0600867void eeh_add_device_tree_early(struct device_node *dn)
868{
869 struct device_node *sib;
Stephen Rothwellacaa6172007-12-21 15:52:07 +1100870
871 for_each_child_of_node(dn, sib)
Linas Vepstase2a296e2005-11-03 18:51:31 -0600872 eeh_add_device_tree_early(sib);
873 eeh_add_device_early(dn);
874}
875EXPORT_SYMBOL_GPL(eeh_add_device_tree_early);
876
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000878 * eeh_add_device_late - Perform EEH initialization for the indicated pci device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 * @dev: pci device for which to set up EEH
880 *
881 * This routine must be used to complete EEH initialization for PCI
882 * devices that were added after system boot (e.g. hotplug, dlpar).
883 */
Nathan Fontenot794e0852006-03-31 12:04:52 -0600884static void eeh_add_device_late(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Linas Vepstas56b0fca2005-11-03 18:48:45 -0600886 struct device_node *dn;
Gavin Shanf631acd2012-02-27 20:04:07 +0000887 struct eeh_dev *edev;
Linas Vepstas56b0fca2005-11-03 18:48:45 -0600888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (!dev || !eeh_subsystem_enabled)
890 return;
891
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +0000892 pr_debug("EEH: Adding device %s\n", pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Linas Vepstas56b0fca2005-11-03 18:48:45 -0600894 dn = pci_device_to_OF_node(dev);
Gavin Shan2ef822c2012-04-16 19:55:39 +0000895 edev = of_node_to_eeh_dev(dn);
Gavin Shanf631acd2012-02-27 20:04:07 +0000896 if (edev->pdev == dev) {
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +0000897 pr_debug("EEH: Already referenced !\n");
898 return;
899 }
Gavin Shanf631acd2012-02-27 20:04:07 +0000900 WARN_ON(edev->pdev);
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +0000901
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000902 pci_dev_get(dev);
Gavin Shanf631acd2012-02-27 20:04:07 +0000903 edev->pdev = dev;
904 dev->dev.archdata.edev = edev;
Linas Vepstas56b0fca2005-11-03 18:48:45 -0600905
Gavin Shan26a74852013-06-20 13:20:59 +0800906 /*
907 * We have to do the EEH probe here because the PCI device
908 * hasn't been created yet in the early stage.
909 */
910 if (eeh_probe_mode_dev())
911 eeh_ops->dev_probe(dev, NULL);
912
Gavin Shan3ab96a02012-09-07 22:44:23 +0000913 eeh_addr_cache_insert_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
Nathan Fontenot794e0852006-03-31 12:04:52 -0600915
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000916/**
917 * eeh_add_device_tree_late - Perform EEH initialization for the indicated PCI bus
918 * @bus: PCI bus
919 *
920 * This routine must be used to perform EEH initialization for PCI
921 * devices which are attached to the indicated PCI bus. The PCI bus
922 * is added after system boot through hotplug or dlpar.
923 */
Nathan Fontenot794e0852006-03-31 12:04:52 -0600924void eeh_add_device_tree_late(struct pci_bus *bus)
925{
926 struct pci_dev *dev;
927
928 list_for_each_entry(dev, &bus->devices, bus_list) {
Gavin Shana84f2732013-06-20 13:20:51 +0800929 eeh_add_device_late(dev);
930 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
931 struct pci_bus *subbus = dev->subordinate;
932 if (subbus)
933 eeh_add_device_tree_late(subbus);
934 }
Nathan Fontenot794e0852006-03-31 12:04:52 -0600935 }
936}
937EXPORT_SYMBOL_GPL(eeh_add_device_tree_late);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939/**
Thadeu Lima de Souza Cascardo6a040ce2012-12-28 09:13:19 +0000940 * eeh_add_sysfs_files - Add EEH sysfs files for the indicated PCI bus
941 * @bus: PCI bus
942 *
943 * This routine must be used to add EEH sysfs files for PCI
944 * devices which are attached to the indicated PCI bus. The PCI bus
945 * is added after system boot through hotplug or dlpar.
946 */
947void eeh_add_sysfs_files(struct pci_bus *bus)
948{
949 struct pci_dev *dev;
950
951 list_for_each_entry(dev, &bus->devices, bus_list) {
952 eeh_sysfs_add_device(dev);
953 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
954 struct pci_bus *subbus = dev->subordinate;
955 if (subbus)
956 eeh_add_sysfs_files(subbus);
957 }
958 }
959}
960EXPORT_SYMBOL_GPL(eeh_add_sysfs_files);
961
962/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000963 * eeh_remove_device - Undo EEH setup for the indicated pci device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 * @dev: pci device to be removed
Gavin Shan20ee6a92012-09-11 19:16:17 +0000965 * @purge_pe: remove the PE or not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 *
Nathan Fontenot794e0852006-03-31 12:04:52 -0600967 * This routine should be called when a device is removed from
968 * a running system (e.g. by hotplug or dlpar). It unregisters
969 * the PCI device from the EEH subsystem. I/O errors affecting
970 * this device will no longer be detected after this call; thus,
971 * i/o errors affecting this slot may leave this device unusable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 */
Gavin Shan20ee6a92012-09-11 19:16:17 +0000973static void eeh_remove_device(struct pci_dev *dev, int purge_pe)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
Gavin Shanf631acd2012-02-27 20:04:07 +0000975 struct eeh_dev *edev;
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (!dev || !eeh_subsystem_enabled)
978 return;
Gavin Shanf631acd2012-02-27 20:04:07 +0000979 edev = pci_dev_to_eeh_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
981 /* Unregister the device with the EEH/PCI address search system */
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +0000982 pr_debug("EEH: Removing device %s\n", pci_name(dev));
Linas Vepstas56b0fca2005-11-03 18:48:45 -0600983
Gavin Shanf631acd2012-02-27 20:04:07 +0000984 if (!edev || !edev->pdev) {
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +0000985 pr_debug("EEH: Not referenced !\n");
986 return;
Linas Vepstasb055a9e2006-04-06 15:41:41 -0500987 }
Gavin Shanf631acd2012-02-27 20:04:07 +0000988 edev->pdev = NULL;
989 dev->dev.archdata.edev = NULL;
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000990 pci_dev_put(dev);
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +0000991
Gavin Shan20ee6a92012-09-11 19:16:17 +0000992 eeh_rmv_from_parent_pe(edev, purge_pe);
Gavin Shan3ab96a02012-09-07 22:44:23 +0000993 eeh_addr_cache_rmv_dev(dev);
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +0000994 eeh_sysfs_remove_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000997/**
998 * eeh_remove_bus_device - Undo EEH setup for the indicated PCI device
999 * @dev: PCI device
Gavin Shan20ee6a92012-09-11 19:16:17 +00001000 * @purge_pe: remove the corresponding PE or not
Gavin Shancb3bc9d2012-02-27 20:03:51 +00001001 *
1002 * This routine must be called when a device is removed from the
1003 * running system through hotplug or dlpar. The corresponding
1004 * PCI address cache will be removed.
1005 */
Gavin Shan20ee6a92012-09-11 19:16:17 +00001006void eeh_remove_bus_device(struct pci_dev *dev, int purge_pe)
Linas Vepstase2a296e2005-11-03 18:51:31 -06001007{
Nathan Fontenot794e0852006-03-31 12:04:52 -06001008 struct pci_bus *bus = dev->subordinate;
1009 struct pci_dev *child, *tmp;
1010
Gavin Shan20ee6a92012-09-11 19:16:17 +00001011 eeh_remove_device(dev, purge_pe);
Nathan Fontenot794e0852006-03-31 12:04:52 -06001012
1013 if (bus && dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
1014 list_for_each_entry_safe(child, tmp, &bus->devices, bus_list)
Gavin Shan20ee6a92012-09-11 19:16:17 +00001015 eeh_remove_bus_device(child, purge_pe);
Linas Vepstase2a296e2005-11-03 18:51:31 -06001016 }
1017}
1018EXPORT_SYMBOL_GPL(eeh_remove_bus_device);
1019
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020static int proc_eeh_show(struct seq_file *m, void *v)
1021{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (0 == eeh_subsystem_enabled) {
1023 seq_printf(m, "EEH Subsystem is globally disabled\n");
Gavin Shane575f8d2012-02-29 15:47:45 +00001024 seq_printf(m, "eeh_total_mmio_ffs=%llu\n", eeh_stats.total_mmio_ffs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 } else {
1026 seq_printf(m, "EEH Subsystem is enabled\n");
Linas Vepstas177bc932005-11-03 18:48:52 -06001027 seq_printf(m,
Gavin Shane575f8d2012-02-29 15:47:45 +00001028 "no device=%llu\n"
1029 "no device node=%llu\n"
1030 "no config address=%llu\n"
1031 "check not wanted=%llu\n"
1032 "eeh_total_mmio_ffs=%llu\n"
1033 "eeh_false_positives=%llu\n"
1034 "eeh_slot_resets=%llu\n",
1035 eeh_stats.no_device,
1036 eeh_stats.no_dn,
1037 eeh_stats.no_cfg_addr,
1038 eeh_stats.ignored_check,
1039 eeh_stats.total_mmio_ffs,
1040 eeh_stats.false_positives,
1041 eeh_stats.slot_resets);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 }
1043
1044 return 0;
1045}
1046
1047static int proc_eeh_open(struct inode *inode, struct file *file)
1048{
1049 return single_open(file, proc_eeh_show, NULL);
1050}
1051
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001052static const struct file_operations proc_eeh_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 .open = proc_eeh_open,
1054 .read = seq_read,
1055 .llseek = seq_lseek,
1056 .release = single_release,
1057};
1058
1059static int __init eeh_init_proc(void)
1060{
Denis V. Lunev66747132008-04-29 01:02:26 -07001061 if (machine_is(pseries))
Thadeu Lima de Souza Cascardo8feaa432011-08-26 10:36:31 +00001062 proc_create("powerpc/eeh", 0, NULL, &proc_eeh_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 return 0;
1064}
1065__initcall(eeh_init_proc);