blob: 4bd687d5e7aa3f80e1b33912b5451bd34a3187b1 [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 */
Yijing Wangf0308262013-09-05 15:55:27 +0800192 if (pci_is_pcie(dev)) {
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000193 n += scnprintf(buf+n, len-n, "pci-e cap10:\n");
194 printk(KERN_WARNING
195 "EEH: PCI-E capabilities and status follow:\n");
196
197 for (i=0; i<=8; i++) {
Yijing Wang9437eca2013-11-04 16:51:31 -0700198 eeh_ops->read_config(dn, dev->pcie_cap+4*i, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000199 n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
200 printk(KERN_WARNING "EEH: PCI-E %02x: %08x\n", i, cfg);
201 }
202
Linas Vepstasb37ceef2007-11-03 07:29:01 +1100203 cap = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000204 if (cap) {
205 n += scnprintf(buf+n, len-n, "pci-e AER:\n");
206 printk(KERN_WARNING
207 "EEH: PCI-E AER capability register set follows:\n");
208
209 for (i=0; i<14; i++) {
Gavin Shan37804442012-02-27 20:04:11 +0000210 eeh_ops->read_config(dn, cap+4*i, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000211 n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
212 printk(KERN_WARNING "EEH: PCI-E AER %02x: %08x\n", i, cfg);
213 }
214 }
215 }
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000216
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000217 return n;
218}
219
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000220/**
221 * eeh_slot_error_detail - Generate combined log including driver log and error log
Gavin Shanff477962012-09-07 22:44:16 +0000222 * @pe: EEH PE
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000223 * @severity: temporary or permanent error log
224 *
225 * This routine should be called to generate the combined log, which
226 * is comprised of driver log and error log. The driver log is figured
227 * out from the config space of the corresponding PCI device, while
228 * the error log is fetched through platform dependent function call.
229 */
Gavin Shanff477962012-09-07 22:44:16 +0000230void eeh_slot_error_detail(struct eeh_pe *pe, int severity)
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000231{
232 size_t loglen = 0;
Gavin Shan9feed422013-07-24 10:24:56 +0800233 struct eeh_dev *edev, *tmp;
Gavin Shanc35ae172013-06-27 13:46:42 +0800234 bool valid_cfg_log = true;
Gavin Shanff477962012-09-07 22:44:16 +0000235
Gavin Shanc35ae172013-06-27 13:46:42 +0800236 /*
237 * When the PHB is fenced or dead, it's pointless to collect
238 * the data from PCI config space because it should return
239 * 0xFF's. For ER, we still retrieve the data from the PCI
240 * config space.
241 */
242 if (eeh_probe_mode_dev() &&
243 (pe->type & EEH_PE_PHB) &&
244 (pe->state & (EEH_PE_ISOLATED | EEH_PE_PHB_DEAD)))
245 valid_cfg_log = false;
Gavin Shanff477962012-09-07 22:44:16 +0000246
Gavin Shanc35ae172013-06-27 13:46:42 +0800247 if (valid_cfg_log) {
248 eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
249 eeh_ops->configure_bridge(pe);
250 eeh_pe_restore_bars(pe);
251
252 pci_regs_buf[0] = 0;
Gavin Shan9feed422013-07-24 10:24:56 +0800253 eeh_pe_for_each_dev(pe, edev, tmp) {
Gavin Shanc35ae172013-06-27 13:46:42 +0800254 loglen += eeh_gather_pci_data(edev, pci_regs_buf + loglen,
255 EEH_PCI_REGS_LOG_LEN - loglen);
256 }
257 }
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000258
Gavin Shanff477962012-09-07 22:44:16 +0000259 eeh_ops->get_log(pe, severity, pci_regs_buf, loglen);
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000260}
261
262/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000263 * eeh_token_to_phys - Convert EEH address token to phys address
264 * @token: I/O token, should be address in the form 0xA....
265 *
266 * This routine should be called to convert virtual I/O address
267 * to physical one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 */
269static inline unsigned long eeh_token_to_phys(unsigned long token)
270{
271 pte_t *ptep;
272 unsigned long pa;
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530273 int hugepage_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530275 /*
276 * We won't find hugepages here, iomem
277 */
278 ptep = find_linux_pte_or_hugepte(init_mm.pgd, token, &hugepage_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (!ptep)
280 return token;
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530281 WARN_ON(hugepage_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 pa = pte_pfn(*ptep) << PAGE_SHIFT;
283
284 return pa | (token & (PAGE_SIZE-1));
285}
286
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800287/*
288 * On PowerNV platform, we might already have fenced PHB there.
289 * For that case, it's meaningless to recover frozen PE. Intead,
290 * We have to handle fenced PHB firstly.
291 */
292static int eeh_phb_check_failure(struct eeh_pe *pe)
293{
294 struct eeh_pe *phb_pe;
295 unsigned long flags;
296 int ret;
297
298 if (!eeh_probe_mode_dev())
299 return -EPERM;
300
301 /* Find the PHB PE */
302 phb_pe = eeh_phb_pe_get(pe->phb);
303 if (!phb_pe) {
304 pr_warning("%s Can't find PE for PHB#%d\n",
305 __func__, pe->phb->global_number);
306 return -EEXIST;
307 }
308
309 /* If the PHB has been in problematic state */
310 eeh_serialize_lock(&flags);
311 if (phb_pe->state & (EEH_PE_ISOLATED | EEH_PE_PHB_DEAD)) {
312 ret = 0;
313 goto out;
314 }
315
316 /* Check PHB state */
317 ret = eeh_ops->get_state(phb_pe, NULL);
318 if ((ret < 0) ||
319 (ret == EEH_STATE_NOT_SUPPORT) ||
320 (ret & (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) ==
321 (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) {
322 ret = 0;
323 goto out;
324 }
325
326 /* Isolate the PHB and send event */
327 eeh_pe_state_mark(phb_pe, EEH_PE_ISOLATED);
328 eeh_serialize_unlock(flags);
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800329
Gavin Shan56ca4fd2013-06-27 13:46:46 +0800330 pr_err("EEH: PHB#%x failure detected\n",
331 phb_pe->phb->global_number);
332 dump_stack();
Gavin Shan5293bf92013-09-06 09:00:05 +0800333 eeh_send_failure_event(phb_pe);
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800334
335 return 1;
336out:
337 eeh_serialize_unlock(flags);
338 return ret;
339}
340
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000341/**
Gavin Shanf8f7d632012-09-07 22:44:22 +0000342 * eeh_dev_check_failure - Check if all 1's data is due to EEH slot freeze
343 * @edev: eeh device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 *
345 * Check for an EEH failure for the given device node. Call this
346 * routine if the result of a read was all 0xff's and you want to
347 * find out if this is due to an EEH slot freeze. This routine
348 * will query firmware for the EEH status.
349 *
350 * Returns 0 if there has not been an EEH error; otherwise returns
Linas Vepstas69376502005-11-03 18:47:50 -0600351 * a non-zero value and queues up a slot isolation event notification.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 *
353 * It is safe to call this routine in an interrupt context.
354 */
Gavin Shanf8f7d632012-09-07 22:44:22 +0000355int eeh_dev_check_failure(struct eeh_dev *edev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
357 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 unsigned long flags;
Gavin Shanf8f7d632012-09-07 22:44:22 +0000359 struct device_node *dn;
360 struct pci_dev *dev;
Gavin Shan66523d92012-09-07 22:44:13 +0000361 struct eeh_pe *pe;
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600362 int rc = 0;
Mike Masonf36c5222008-07-22 02:40:17 +1000363 const char *location;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Gavin Shane575f8d2012-02-29 15:47:45 +0000365 eeh_stats.total_mmio_ffs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 if (!eeh_subsystem_enabled)
368 return 0;
369
Gavin Shanf8f7d632012-09-07 22:44:22 +0000370 if (!edev) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000371 eeh_stats.no_dn++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return 0;
Linas Vepstas177bc932005-11-03 18:48:52 -0600373 }
Gavin Shanf8f7d632012-09-07 22:44:22 +0000374 dn = eeh_dev_to_of_node(edev);
375 dev = eeh_dev_to_pci_dev(edev);
Gavin Shan66523d92012-09-07 22:44:13 +0000376 pe = edev->pe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378 /* Access to IO BARs might get this far and still not want checking. */
Gavin Shan66523d92012-09-07 22:44:13 +0000379 if (!pe) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000380 eeh_stats.ignored_check++;
Gavin Shan66523d92012-09-07 22:44:13 +0000381 pr_debug("EEH: Ignored check for %s %s\n",
382 eeh_pci_name(dev), dn->full_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return 0;
384 }
385
Gavin Shan66523d92012-09-07 22:44:13 +0000386 if (!pe->addr && !pe->config_addr) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000387 eeh_stats.no_cfg_addr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return 0;
389 }
390
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800391 /*
392 * On PowerNV platform, we might already have fenced PHB
393 * there and we need take care of that firstly.
394 */
395 ret = eeh_phb_check_failure(pe);
396 if (ret > 0)
397 return ret;
398
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600399 /* If we already have a pending isolation event for this
400 * slot, we know it's bad already, we don't need to check.
401 * Do this checking under a lock; as multiple PCI devices
402 * in one slot might report errors simultaneously, and we
403 * only want one error recovery routine running.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 */
Gavin Shan49075812013-06-20 13:21:03 +0800405 eeh_serialize_lock(&flags);
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600406 rc = 1;
Gavin Shan66523d92012-09-07 22:44:13 +0000407 if (pe->state & EEH_PE_ISOLATED) {
408 pe->check_count++;
409 if (pe->check_count % EEH_MAX_FAILS == 0) {
Mike Masonf36c5222008-07-22 02:40:17 +1000410 location = of_get_property(dn, "ibm,loc-code", NULL);
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000411 printk(KERN_ERR "EEH: %d reads ignored for recovering device at "
Mike Masonf36c5222008-07-22 02:40:17 +1000412 "location=%s driver=%s pci addr=%s\n",
Gavin Shan66523d92012-09-07 22:44:13 +0000413 pe->check_count, location,
Thadeu Lima de Souza Cascardo778a7852012-01-11 09:09:58 +0000414 eeh_driver_name(dev), eeh_pci_name(dev));
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000415 printk(KERN_ERR "EEH: Might be infinite loop in %s driver\n",
Thadeu Lima de Souza Cascardo778a7852012-01-11 09:09:58 +0000416 eeh_driver_name(dev));
Linas Vepstas5c1344e2005-11-03 18:49:31 -0600417 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600419 goto dn_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 }
421
422 /*
423 * Now test for an EEH failure. This is VERY expensive.
424 * Note that the eeh_config_addr may be a parent device
425 * in the case of a device behind a bridge, or it may be
426 * function zero of a multi-function device.
427 * In any case they must share a common PHB.
428 */
Gavin Shan66523d92012-09-07 22:44:13 +0000429 ret = eeh_ops->get_state(pe, NULL);
Linas Vepstas76e6faf2005-11-03 18:49:15 -0600430
Linas Vepstas39d16e22007-03-19 14:51:00 -0500431 /* Note that config-io to empty slots may fail;
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000432 * they are empty when they don't have children.
Gavin Shaneb594a42012-02-27 20:03:57 +0000433 * We will punt with the following conditions: Failure to get
434 * PE's state, EEH not support and Permanently unavailable
435 * state, PE is in good state.
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000436 */
Gavin Shaneb594a42012-02-27 20:03:57 +0000437 if ((ret < 0) ||
438 (ret == EEH_STATE_NOT_SUPPORT) ||
439 (ret & (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) ==
440 (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000441 eeh_stats.false_positives++;
Gavin Shan66523d92012-09-07 22:44:13 +0000442 pe->false_positives++;
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600443 rc = 0;
444 goto dn_unlock;
Linas Vepstas76e6faf2005-11-03 18:49:15 -0600445 }
446
Gavin Shane575f8d2012-02-29 15:47:45 +0000447 eeh_stats.slot_resets++;
Gavin Shana84f2732013-06-20 13:20:51 +0800448
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600449 /* Avoid repeated reports of this failure, including problems
450 * with other functions on this device, and functions under
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000451 * bridges.
452 */
Gavin Shan66523d92012-09-07 22:44:13 +0000453 eeh_pe_state_mark(pe, EEH_PE_ISOLATED);
Gavin Shan49075812013-06-20 13:21:03 +0800454 eeh_serialize_unlock(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 /* Most EEH events are due to device driver bugs. Having
457 * a stack trace will help the device-driver authors figure
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000458 * out what happened. So print that out.
459 */
Gavin Shan56ca4fd2013-06-27 13:46:46 +0800460 pr_err("EEH: Frozen PE#%x detected on PHB#%x\n",
461 pe->addr, pe->phb->global_number);
462 dump_stack();
463
Gavin Shan5293bf92013-09-06 09:00:05 +0800464 eeh_send_failure_event(pe);
465
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600466 return 1;
467
468dn_unlock:
Gavin Shan49075812013-06-20 13:21:03 +0800469 eeh_serialize_unlock(flags);
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600470 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
Gavin Shanf8f7d632012-09-07 22:44:22 +0000473EXPORT_SYMBOL_GPL(eeh_dev_check_failure);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
475/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000476 * eeh_check_failure - Check if all 1's data is due to EEH slot freeze
477 * @token: I/O token, should be address in the form 0xA....
478 * @val: value, should be all 1's (XXX why do we need this arg??)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 * Check for an EEH failure at the given token address. Call this
481 * routine if the result of a read was all 0xff's and you want to
482 * find out if this is due to an EEH slot freeze event. This routine
483 * will query firmware for the EEH status.
484 *
485 * Note this routine is safe to call in an interrupt context.
486 */
487unsigned long eeh_check_failure(const volatile void __iomem *token, unsigned long val)
488{
489 unsigned long addr;
Gavin Shanf8f7d632012-09-07 22:44:22 +0000490 struct eeh_dev *edev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
492 /* Finding the phys addr + pci device; this is pretty quick. */
493 addr = eeh_token_to_phys((unsigned long __force) token);
Gavin Shan3ab96a02012-09-07 22:44:23 +0000494 edev = eeh_addr_cache_get_dev(addr);
Gavin Shanf8f7d632012-09-07 22:44:22 +0000495 if (!edev) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000496 eeh_stats.no_device++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 return val;
Linas Vepstas177bc932005-11-03 18:48:52 -0600498 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
Gavin Shanf8f7d632012-09-07 22:44:22 +0000500 eeh_dev_check_failure(edev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return val;
502}
503
504EXPORT_SYMBOL(eeh_check_failure);
505
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600506
Linas Vepstascb5b56242006-09-15 18:56:35 -0500507/**
Gavin Shancce4b2d2012-02-27 20:03:52 +0000508 * eeh_pci_enable - Enable MMIO or DMA transfers for this slot
Gavin Shanff477962012-09-07 22:44:16 +0000509 * @pe: EEH PE
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000510 *
511 * This routine should be called to reenable frozen MMIO or DMA
512 * so that it would work correctly again. It's useful while doing
513 * recovery or log collection on the indicated device.
Linas Vepstas47b5c832006-09-15 18:57:42 -0500514 */
Gavin Shanff477962012-09-07 22:44:16 +0000515int eeh_pci_enable(struct eeh_pe *pe, int function)
Linas Vepstas47b5c832006-09-15 18:57:42 -0500516{
Linas Vepstas47b5c832006-09-15 18:57:42 -0500517 int rc;
518
Gavin Shanff477962012-09-07 22:44:16 +0000519 rc = eeh_ops->set_option(pe, function);
Linas Vepstas47b5c832006-09-15 18:57:42 -0500520 if (rc)
Gavin Shanff477962012-09-07 22:44:16 +0000521 pr_warning("%s: Unexpected state change %d on PHB#%d-PE#%x, err=%d\n",
522 __func__, function, pe->phb->global_number, pe->addr, rc);
Linas Vepstas47b5c832006-09-15 18:57:42 -0500523
Gavin Shanff477962012-09-07 22:44:16 +0000524 rc = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
Gavin Shaneb594a42012-02-27 20:03:57 +0000525 if (rc > 0 && (rc & EEH_STATE_MMIO_ENABLED) &&
526 (function == EEH_OPT_THAW_MMIO))
Linas Vepstasfa1be472007-03-19 14:59:59 -0500527 return 0;
528
Linas Vepstas47b5c832006-09-15 18:57:42 -0500529 return rc;
530}
531
532/**
Brian King00c2ae32007-05-08 08:04:05 +1000533 * pcibios_set_pcie_slot_reset - Set PCI-E reset state
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000534 * @dev: pci device struct
535 * @state: reset state to enter
Brian King00c2ae32007-05-08 08:04:05 +1000536 *
537 * Return value:
538 * 0 if success
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000539 */
Brian King00c2ae32007-05-08 08:04:05 +1000540int pcibios_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
541{
Gavin Shanc270a242012-09-07 22:44:17 +0000542 struct eeh_dev *edev = pci_dev_to_eeh_dev(dev);
543 struct eeh_pe *pe = edev->pe;
544
545 if (!pe) {
546 pr_err("%s: No PE found on PCI device %s\n",
547 __func__, pci_name(dev));
548 return -EINVAL;
549 }
Brian King00c2ae32007-05-08 08:04:05 +1000550
551 switch (state) {
552 case pcie_deassert_reset:
Gavin Shanc270a242012-09-07 22:44:17 +0000553 eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
Brian King00c2ae32007-05-08 08:04:05 +1000554 break;
555 case pcie_hot_reset:
Gavin Shanc270a242012-09-07 22:44:17 +0000556 eeh_ops->reset(pe, EEH_RESET_HOT);
Brian King00c2ae32007-05-08 08:04:05 +1000557 break;
558 case pcie_warm_reset:
Gavin Shanc270a242012-09-07 22:44:17 +0000559 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
Brian King00c2ae32007-05-08 08:04:05 +1000560 break;
561 default:
562 return -EINVAL;
563 };
564
565 return 0;
566}
567
568/**
Gavin Shanc270a242012-09-07 22:44:17 +0000569 * eeh_set_pe_freset - Check the required reset for the indicated device
570 * @data: EEH device
571 * @flag: return value
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000572 *
573 * Each device might have its preferred reset type: fundamental or
574 * hot reset. The routine is used to collected the information for
575 * the indicated device and its children so that the bunch of the
576 * devices could be reset properly.
577 */
Gavin Shanc270a242012-09-07 22:44:17 +0000578static void *eeh_set_dev_freset(void *data, void *flag)
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000579{
580 struct pci_dev *dev;
Gavin Shanc270a242012-09-07 22:44:17 +0000581 unsigned int *freset = (unsigned int *)flag;
582 struct eeh_dev *edev = (struct eeh_dev *)data;
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000583
Gavin Shanc270a242012-09-07 22:44:17 +0000584 dev = eeh_dev_to_pci_dev(edev);
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000585 if (dev)
586 *freset |= dev->needs_freset;
587
Gavin Shanc270a242012-09-07 22:44:17 +0000588 return NULL;
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000589}
590
591/**
Gavin Shancce4b2d2012-02-27 20:03:52 +0000592 * eeh_reset_pe_once - Assert the pci #RST line for 1/4 second
Gavin Shanc270a242012-09-07 22:44:17 +0000593 * @pe: EEH PE
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000594 *
595 * Assert the PCI #RST line for 1/4 second.
596 */
Gavin Shanc270a242012-09-07 22:44:17 +0000597static void eeh_reset_pe_once(struct eeh_pe *pe)
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600598{
Richard A Lary308fc4f2011-04-22 09:59:47 +0000599 unsigned int freset = 0;
Mike Mason6e193142009-07-30 15:42:39 -0700600
Richard A Lary308fc4f2011-04-22 09:59:47 +0000601 /* Determine type of EEH reset required for
602 * Partitionable Endpoint, a hot-reset (1)
603 * or a fundamental reset (3).
604 * A fundamental reset required by any device under
605 * Partitionable Endpoint trumps hot-reset.
Gavin Shana84f2732013-06-20 13:20:51 +0800606 */
Gavin Shanc270a242012-09-07 22:44:17 +0000607 eeh_pe_dev_traverse(pe, eeh_set_dev_freset, &freset);
Richard A Lary308fc4f2011-04-22 09:59:47 +0000608
609 if (freset)
Gavin Shanc270a242012-09-07 22:44:17 +0000610 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
Mike Mason6e193142009-07-30 15:42:39 -0700611 else
Gavin Shanc270a242012-09-07 22:44:17 +0000612 eeh_ops->reset(pe, EEH_RESET_HOT);
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600613
614 /* The PCI bus requires that the reset be held high for at least
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000615 * a 100 milliseconds. We wait a bit longer 'just in case'.
616 */
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600617#define PCI_BUS_RST_HOLD_TIME_MSEC 250
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000618 msleep(PCI_BUS_RST_HOLD_TIME_MSEC);
Gavin Shana84f2732013-06-20 13:20:51 +0800619
620 /* We might get hit with another EEH freeze as soon as the
Linas Vepstasd9564ad2005-11-03 18:50:48 -0600621 * pci slot reset line is dropped. Make sure we don't miss
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000622 * these, and clear the flag now.
623 */
Gavin Shandbbceee2012-09-07 22:44:20 +0000624 eeh_pe_state_clear(pe, EEH_PE_ISOLATED);
Linas Vepstasd9564ad2005-11-03 18:50:48 -0600625
Gavin Shanc270a242012-09-07 22:44:17 +0000626 eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600627
628 /* After a PCI slot has been reset, the PCI Express spec requires
629 * a 1.5 second idle time for the bus to stabilize, before starting
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000630 * up traffic.
631 */
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600632#define PCI_BUS_SETTLE_TIME_MSEC 1800
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000633 msleep(PCI_BUS_SETTLE_TIME_MSEC);
Linas Vepstase1029262006-09-21 18:25:56 -0500634}
635
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000636/**
Gavin Shancce4b2d2012-02-27 20:03:52 +0000637 * eeh_reset_pe - Reset the indicated PE
Gavin Shanc270a242012-09-07 22:44:17 +0000638 * @pe: EEH PE
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000639 *
640 * This routine should be called to reset indicated device, including
641 * PE. A PE might include multiple PCI devices and sometimes PCI bridges
642 * might be involved as well.
643 */
Gavin Shanc270a242012-09-07 22:44:17 +0000644int eeh_reset_pe(struct eeh_pe *pe)
Linas Vepstase1029262006-09-21 18:25:56 -0500645{
Gavin Shan326a98e2013-06-20 13:20:58 +0800646 int flags = (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE);
Linas Vepstase1029262006-09-21 18:25:56 -0500647 int i, rc;
648
Linas Vepstas9c547762007-03-19 14:58:07 -0500649 /* Take three shots at resetting the bus */
650 for (i=0; i<3; i++) {
Gavin Shanc270a242012-09-07 22:44:17 +0000651 eeh_reset_pe_once(pe);
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600652
Gavin Shanc270a242012-09-07 22:44:17 +0000653 rc = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
Gavin Shan326a98e2013-06-20 13:20:58 +0800654 if ((rc & flags) == flags)
Linas Vepstasb6495c02005-11-03 18:54:54 -0600655 return 0;
Linas Vepstase1029262006-09-21 18:25:56 -0500656
Linas Vepstase1029262006-09-21 18:25:56 -0500657 if (rc < 0) {
Gavin Shanc270a242012-09-07 22:44:17 +0000658 pr_err("%s: Unrecoverable slot failure on PHB#%d-PE#%x",
659 __func__, pe->phb->global_number, pe->addr);
Linas Vepstasb6495c02005-11-03 18:54:54 -0600660 return -1;
Linas Vepstase1029262006-09-21 18:25:56 -0500661 }
Gavin Shanc270a242012-09-07 22:44:17 +0000662 pr_err("EEH: bus reset %d failed on PHB#%d-PE#%x, rc=%d\n",
663 i+1, pe->phb->global_number, pe->addr, rc);
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600664 }
Linas Vepstasb6495c02005-11-03 18:54:54 -0600665
Linas Vepstas9c547762007-03-19 14:58:07 -0500666 return -1;
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600667}
668
Linas Vepstas8b553f32005-11-03 18:50:17 -0600669/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000670 * eeh_save_bars - Save device bars
Gavin Shanf631acd2012-02-27 20:04:07 +0000671 * @edev: PCI device associated EEH device
Linas Vepstas8b553f32005-11-03 18:50:17 -0600672 *
673 * Save the values of the device bars. Unlike the restore
674 * routine, this routine is *not* recursive. This is because
Justin Mattock31116f02011-02-24 20:10:18 +0000675 * PCI devices are added individually; but, for the restore,
Linas Vepstas8b553f32005-11-03 18:50:17 -0600676 * an entire slot is reset at a time.
677 */
Gavin Shand7bb8862012-09-07 22:44:21 +0000678void eeh_save_bars(struct eeh_dev *edev)
Linas Vepstas8b553f32005-11-03 18:50:17 -0600679{
680 int i;
Gavin Shanf631acd2012-02-27 20:04:07 +0000681 struct device_node *dn;
Linas Vepstas8b553f32005-11-03 18:50:17 -0600682
Gavin Shanf631acd2012-02-27 20:04:07 +0000683 if (!edev)
Linas Vepstas8b553f32005-11-03 18:50:17 -0600684 return;
Gavin Shanf631acd2012-02-27 20:04:07 +0000685 dn = eeh_dev_to_of_node(edev);
Gavin Shana84f2732013-06-20 13:20:51 +0800686
Linas Vepstas8b553f32005-11-03 18:50:17 -0600687 for (i = 0; i < 16; i++)
Gavin Shan37804442012-02-27 20:04:11 +0000688 eeh_ops->read_config(dn, i * 4, 4, &edev->config_space[i]);
Gavin Shanbf898ec2013-11-12 14:49:21 +0800689
690 /*
691 * For PCI bridges including root port, we need enable bus
692 * master explicitly. Otherwise, it can't fetch IODA table
693 * entries correctly. So we cache the bit in advance so that
694 * we can restore it after reset, either PHB range or PE range.
695 */
696 if (edev->mode & EEH_DEV_BRIDGE)
697 edev->config_space[1] |= PCI_COMMAND_MASTER;
Linas Vepstas8b553f32005-11-03 18:50:17 -0600698}
699
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000700/**
Gavin Shanaa1e6372012-02-27 20:03:53 +0000701 * eeh_ops_register - Register platform dependent EEH operations
702 * @ops: platform dependent EEH operations
703 *
704 * Register the platform dependent EEH operation callback
705 * functions. The platform should call this function before
706 * any other EEH operations.
707 */
708int __init eeh_ops_register(struct eeh_ops *ops)
709{
710 if (!ops->name) {
711 pr_warning("%s: Invalid EEH ops name for %p\n",
712 __func__, ops);
713 return -EINVAL;
714 }
715
716 if (eeh_ops && eeh_ops != ops) {
717 pr_warning("%s: EEH ops of platform %s already existing (%s)\n",
718 __func__, eeh_ops->name, ops->name);
719 return -EEXIST;
720 }
721
722 eeh_ops = ops;
723
724 return 0;
725}
726
727/**
728 * eeh_ops_unregister - Unreigster platform dependent EEH operations
729 * @name: name of EEH platform operations
730 *
731 * Unregister the platform dependent EEH operation callback
732 * functions.
733 */
734int __exit eeh_ops_unregister(const char *name)
735{
736 if (!name || !strlen(name)) {
737 pr_warning("%s: Invalid EEH ops name\n",
738 __func__);
739 return -EINVAL;
740 }
741
742 if (eeh_ops && !strcmp(eeh_ops->name, name)) {
743 eeh_ops = NULL;
744 return 0;
745 }
746
747 return -EEXIST;
748}
749
750/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000751 * eeh_init - EEH initialization
752 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 * Initialize EEH by trying to enable it for all of the adapters in the system.
754 * As a side effect we can determine here if eeh is supported at all.
755 * Note that we leave EEH on so failed config cycles won't cause a machine
756 * check. If a user turns off EEH for a particular adapter they are really
757 * telling Linux to ignore errors. Some hardware (e.g. POWER5) won't
758 * grant access to a slot if EEH isn't enabled, and so we always enable
759 * EEH for all slots/all devices.
760 *
761 * The eeh-force-off option disables EEH checking globally, for all slots.
762 * Even if force-off is set, the EEH hardware is still enabled, so that
763 * newer systems can boot.
764 */
Gavin Shaneeb63612013-06-27 13:46:47 +0800765int eeh_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766{
Gavin Shan1a5c2e62012-03-20 21:30:29 +0000767 struct pci_controller *hose, *tmp;
768 struct device_node *phb;
Gavin Shan51fb5f52013-06-20 13:20:56 +0800769 static int cnt = 0;
770 int ret = 0;
771
772 /*
773 * We have to delay the initialization on PowerNV after
774 * the PCI hierarchy tree has been built because the PEs
775 * are figured out based on PCI devices instead of device
776 * tree nodes
777 */
778 if (machine_is(powernv) && cnt++ <= 0)
779 return ret;
Gavin Shane2af1552012-02-27 20:03:54 +0000780
781 /* call platform initialization function */
782 if (!eeh_ops) {
783 pr_warning("%s: Platform EEH operation not found\n",
784 __func__);
Gavin Shan35e5cfe2012-09-07 22:44:02 +0000785 return -EEXIST;
Gavin Shane2af1552012-02-27 20:03:54 +0000786 } else if ((ret = eeh_ops->init())) {
787 pr_warning("%s: Failed to call platform init function (%d)\n",
788 __func__, ret);
Gavin Shan35e5cfe2012-09-07 22:44:02 +0000789 return ret;
Gavin Shane2af1552012-02-27 20:03:54 +0000790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Gavin Shanc8608552013-06-20 13:21:00 +0800792 /* Initialize EEH event */
793 ret = eeh_event_init();
794 if (ret)
795 return ret;
796
Gavin Shan1a5c2e62012-03-20 21:30:29 +0000797 /* Enable EEH for all adapters */
Gavin Shand7bb8862012-09-07 22:44:21 +0000798 if (eeh_probe_mode_devtree()) {
799 list_for_each_entry_safe(hose, tmp,
800 &hose_list, list_node) {
801 phb = hose->dn;
802 traverse_pci_devices(phb, eeh_ops->of_probe, NULL);
803 }
Gavin Shan51fb5f52013-06-20 13:20:56 +0800804 } else if (eeh_probe_mode_dev()) {
805 list_for_each_entry_safe(hose, tmp,
806 &hose_list, list_node)
807 pci_walk_bus(hose->bus, eeh_ops->dev_probe, NULL);
808 } else {
809 pr_warning("%s: Invalid probe mode %d\n",
810 __func__, eeh_probe_mode);
811 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813
Gavin Shan21fd21f2013-06-20 13:20:57 +0800814 /*
815 * Call platform post-initialization. Actually, It's good chance
816 * to inform platform that EEH is ready to supply service if the
817 * I/O cache stuff has been built up.
818 */
819 if (eeh_ops->post_init) {
820 ret = eeh_ops->post_init();
821 if (ret)
822 return ret;
823 }
824
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (eeh_subsystem_enabled)
Gavin Shand7bb8862012-09-07 22:44:21 +0000826 pr_info("EEH: PCI Enhanced I/O Error Handling Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 else
Gavin Shand7bb8862012-09-07 22:44:21 +0000828 pr_warning("EEH: No capable adapters found\n");
Gavin Shan35e5cfe2012-09-07 22:44:02 +0000829
830 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
Gavin Shan35e5cfe2012-09-07 22:44:02 +0000833core_initcall_sync(eeh_init);
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000836 * eeh_add_device_early - Enable EEH for the indicated device_node
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 * @dn: device node for which to set up EEH
838 *
839 * This routine must be used to perform EEH initialization for PCI
840 * devices that were added after system boot (e.g. hotplug, dlpar).
841 * This routine must be called before any i/o is performed to the
842 * adapter (inluding any config-space i/o).
843 * Whether this actually enables EEH or not for this device depends
844 * on the CEC architecture, type of the device, on earlier boot
845 * command-line arguments & etc.
846 */
Gavin Shanf2856492013-07-24 10:24:52 +0800847void eeh_add_device_early(struct device_node *dn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
849 struct pci_controller *phb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
Gavin Shan26a74852013-06-20 13:20:59 +0800851 /*
852 * If we're doing EEH probe based on PCI device, we
853 * would delay the probe until late stage because
854 * the PCI device isn't available this moment.
855 */
856 if (!eeh_probe_mode_devtree())
857 return;
858
Gavin Shan1e38b712012-09-17 04:34:28 +0000859 if (!of_node_to_eeh_dev(dn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return;
Gavin Shanf631acd2012-02-27 20:04:07 +0000861 phb = of_node_to_eeh_dev(dn)->phb;
Linas Vepstasf751f842005-11-03 18:54:23 -0600862
863 /* USB Bus children of PCI devices will not have BUID's */
864 if (NULL == phb || 0 == phb->buid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Gavin Shand7bb8862012-09-07 22:44:21 +0000867 eeh_ops->of_probe(dn, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000870/**
871 * eeh_add_device_tree_early - Enable EEH for the indicated device
872 * @dn: device node
873 *
874 * This routine must be used to perform EEH initialization for the
875 * indicated PCI device that was added after system boot (e.g.
876 * hotplug, dlpar).
877 */
Linas Vepstase2a296e2005-11-03 18:51:31 -0600878void eeh_add_device_tree_early(struct device_node *dn)
879{
880 struct device_node *sib;
Stephen Rothwellacaa6172007-12-21 15:52:07 +1100881
882 for_each_child_of_node(dn, sib)
Linas Vepstase2a296e2005-11-03 18:51:31 -0600883 eeh_add_device_tree_early(sib);
884 eeh_add_device_early(dn);
885}
886EXPORT_SYMBOL_GPL(eeh_add_device_tree_early);
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000889 * eeh_add_device_late - Perform EEH initialization for the indicated pci device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 * @dev: pci device for which to set up EEH
891 *
892 * This routine must be used to complete EEH initialization for PCI
893 * devices that were added after system boot (e.g. hotplug, dlpar).
894 */
Gavin Shanf2856492013-07-24 10:24:52 +0800895void eeh_add_device_late(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Linas Vepstas56b0fca2005-11-03 18:48:45 -0600897 struct device_node *dn;
Gavin Shanf631acd2012-02-27 20:04:07 +0000898 struct eeh_dev *edev;
Linas Vepstas56b0fca2005-11-03 18:48:45 -0600899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 if (!dev || !eeh_subsystem_enabled)
901 return;
902
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +0000903 pr_debug("EEH: Adding device %s\n", pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Linas Vepstas56b0fca2005-11-03 18:48:45 -0600905 dn = pci_device_to_OF_node(dev);
Gavin Shan2ef822c2012-04-16 19:55:39 +0000906 edev = of_node_to_eeh_dev(dn);
Gavin Shanf631acd2012-02-27 20:04:07 +0000907 if (edev->pdev == dev) {
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +0000908 pr_debug("EEH: Already referenced !\n");
909 return;
910 }
Gavin Shanf5c57712013-07-24 10:24:58 +0800911
912 /*
913 * The EEH cache might not be removed correctly because of
914 * unbalanced kref to the device during unplug time, which
915 * relies on pcibios_release_device(). So we have to remove
916 * that here explicitly.
917 */
918 if (edev->pdev) {
919 eeh_rmv_from_parent_pe(edev);
920 eeh_addr_cache_rmv_dev(edev->pdev);
921 eeh_sysfs_remove_device(edev->pdev);
Gavin Shanab55d212013-07-24 10:25:01 +0800922 edev->mode &= ~EEH_DEV_SYSFS;
Gavin Shanf5c57712013-07-24 10:24:58 +0800923
924 edev->pdev = NULL;
925 dev->dev.archdata.edev = NULL;
926 }
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +0000927
Gavin Shanf631acd2012-02-27 20:04:07 +0000928 edev->pdev = dev;
929 dev->dev.archdata.edev = edev;
Linas Vepstas56b0fca2005-11-03 18:48:45 -0600930
Gavin Shan26a74852013-06-20 13:20:59 +0800931 /*
932 * We have to do the EEH probe here because the PCI device
933 * hasn't been created yet in the early stage.
934 */
935 if (eeh_probe_mode_dev())
936 eeh_ops->dev_probe(dev, NULL);
937
Gavin Shan3ab96a02012-09-07 22:44:23 +0000938 eeh_addr_cache_insert_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}
Nathan Fontenot794e0852006-03-31 12:04:52 -0600940
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000941/**
942 * eeh_add_device_tree_late - Perform EEH initialization for the indicated PCI bus
943 * @bus: PCI bus
944 *
945 * This routine must be used to perform EEH initialization for PCI
946 * devices which are attached to the indicated PCI bus. The PCI bus
947 * is added after system boot through hotplug or dlpar.
948 */
Nathan Fontenot794e0852006-03-31 12:04:52 -0600949void eeh_add_device_tree_late(struct pci_bus *bus)
950{
951 struct pci_dev *dev;
952
953 list_for_each_entry(dev, &bus->devices, bus_list) {
Gavin Shana84f2732013-06-20 13:20:51 +0800954 eeh_add_device_late(dev);
955 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
956 struct pci_bus *subbus = dev->subordinate;
957 if (subbus)
958 eeh_add_device_tree_late(subbus);
959 }
Nathan Fontenot794e0852006-03-31 12:04:52 -0600960 }
961}
962EXPORT_SYMBOL_GPL(eeh_add_device_tree_late);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964/**
Thadeu Lima de Souza Cascardo6a040ce2012-12-28 09:13:19 +0000965 * eeh_add_sysfs_files - Add EEH sysfs files for the indicated PCI bus
966 * @bus: PCI bus
967 *
968 * This routine must be used to add EEH sysfs files for PCI
969 * devices which are attached to the indicated PCI bus. The PCI bus
970 * is added after system boot through hotplug or dlpar.
971 */
972void eeh_add_sysfs_files(struct pci_bus *bus)
973{
974 struct pci_dev *dev;
975
976 list_for_each_entry(dev, &bus->devices, bus_list) {
977 eeh_sysfs_add_device(dev);
978 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
979 struct pci_bus *subbus = dev->subordinate;
980 if (subbus)
981 eeh_add_sysfs_files(subbus);
982 }
983 }
984}
985EXPORT_SYMBOL_GPL(eeh_add_sysfs_files);
986
987/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000988 * eeh_remove_device - Undo EEH setup for the indicated pci device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 * @dev: pci device to be removed
990 *
Nathan Fontenot794e0852006-03-31 12:04:52 -0600991 * This routine should be called when a device is removed from
992 * a running system (e.g. by hotplug or dlpar). It unregisters
993 * the PCI device from the EEH subsystem. I/O errors affecting
994 * this device will no longer be detected after this call; thus,
995 * i/o errors affecting this slot may leave this device unusable.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 */
Gavin Shan807a8272013-07-24 10:24:55 +0800997void eeh_remove_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998{
Gavin Shanf631acd2012-02-27 20:04:07 +0000999 struct eeh_dev *edev;
1000
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 if (!dev || !eeh_subsystem_enabled)
1002 return;
Gavin Shanf631acd2012-02-27 20:04:07 +00001003 edev = pci_dev_to_eeh_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004
1005 /* Unregister the device with the EEH/PCI address search system */
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001006 pr_debug("EEH: Removing device %s\n", pci_name(dev));
Linas Vepstas56b0fca2005-11-03 18:48:45 -06001007
Gavin Shanf5c57712013-07-24 10:24:58 +08001008 if (!edev || !edev->pdev || !edev->pe) {
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001009 pr_debug("EEH: Not referenced !\n");
1010 return;
Linas Vepstasb055a9e2006-04-06 15:41:41 -05001011 }
Gavin Shanf5c57712013-07-24 10:24:58 +08001012
1013 /*
1014 * During the hotplug for EEH error recovery, we need the EEH
1015 * device attached to the parent PE in order for BAR restore
1016 * a bit later. So we keep it for BAR restore and remove it
1017 * from the parent PE during the BAR resotre.
1018 */
Gavin Shanf631acd2012-02-27 20:04:07 +00001019 edev->pdev = NULL;
1020 dev->dev.archdata.edev = NULL;
Gavin Shanf5c57712013-07-24 10:24:58 +08001021 if (!(edev->pe->state & EEH_PE_KEEP))
1022 eeh_rmv_from_parent_pe(edev);
1023 else
1024 edev->mode |= EEH_DEV_DISCONNECTED;
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001025
Gavin Shan3ab96a02012-09-07 22:44:23 +00001026 eeh_addr_cache_rmv_dev(dev);
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001027 eeh_sysfs_remove_device(dev);
Gavin Shanab55d212013-07-24 10:25:01 +08001028 edev->mode &= ~EEH_DEV_SYSFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031static int proc_eeh_show(struct seq_file *m, void *v)
1032{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (0 == eeh_subsystem_enabled) {
1034 seq_printf(m, "EEH Subsystem is globally disabled\n");
Gavin Shane575f8d2012-02-29 15:47:45 +00001035 seq_printf(m, "eeh_total_mmio_ffs=%llu\n", eeh_stats.total_mmio_ffs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 } else {
1037 seq_printf(m, "EEH Subsystem is enabled\n");
Linas Vepstas177bc932005-11-03 18:48:52 -06001038 seq_printf(m,
Gavin Shane575f8d2012-02-29 15:47:45 +00001039 "no device=%llu\n"
1040 "no device node=%llu\n"
1041 "no config address=%llu\n"
1042 "check not wanted=%llu\n"
1043 "eeh_total_mmio_ffs=%llu\n"
1044 "eeh_false_positives=%llu\n"
1045 "eeh_slot_resets=%llu\n",
1046 eeh_stats.no_device,
1047 eeh_stats.no_dn,
1048 eeh_stats.no_cfg_addr,
1049 eeh_stats.ignored_check,
1050 eeh_stats.total_mmio_ffs,
1051 eeh_stats.false_positives,
1052 eeh_stats.slot_resets);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054
1055 return 0;
1056}
1057
1058static int proc_eeh_open(struct inode *inode, struct file *file)
1059{
1060 return single_open(file, proc_eeh_show, NULL);
1061}
1062
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001063static const struct file_operations proc_eeh_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 .open = proc_eeh_open,
1065 .read = seq_read,
1066 .llseek = seq_lseek,
1067 .release = single_release,
1068};
1069
1070static int __init eeh_init_proc(void)
1071{
Mike Qiu144136d2013-08-06 22:25:14 -04001072 if (machine_is(pseries) || machine_is(powernv))
Thadeu Lima de Souza Cascardo8feaa432011-08-26 10:36:31 +00001073 proc_create("powerpc/eeh", 0, NULL, &proc_eeh_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return 0;
1075}
1076__initcall(eeh_init_proc);