blob: c6d8f7e6888aa2dc4742c01e1aac8c7ff4a5d3cf [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>
Gavin Shan66f9af832014-02-12 15:24:56 +080031#include <linux/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/seq_file.h>
33#include <linux/spinlock.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040034#include <linux/export.h>
Stephen Rothwellacaa6172007-12-21 15:52:07 +110035#include <linux/of.h>
36
Arun Sharma600634972011-07-26 16:09:06 -070037#include <linux/atomic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/eeh.h>
Linas Vepstas172ca922005-11-03 18:50:04 -060039#include <asm/eeh_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/io.h>
41#include <asm/machdep.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100042#include <asm/ppc-pci.h>
Linas Vepstas172ca922005-11-03 18:50:04 -060043#include <asm/rtas.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46/** Overview:
47 * EEH, or "Extended Error Handling" is a PCI bridge technology for
48 * dealing with PCI bus errors that can't be dealt with within the
49 * usual PCI framework, except by check-stopping the CPU. Systems
50 * that are designed for high-availability/reliability cannot afford
51 * to crash due to a "mere" PCI error, thus the need for EEH.
52 * An EEH-capable bridge operates by converting a detected error
53 * into a "slot freeze", taking the PCI adapter off-line, making
54 * the slot behave, from the OS'es point of view, as if the slot
55 * were "empty": all reads return 0xff's and all writes are silently
56 * ignored. EEH slot isolation events can be triggered by parity
57 * errors on the address or data busses (e.g. during posted writes),
Linas Vepstas69376502005-11-03 18:47:50 -060058 * which in turn might be caused by low voltage on the bus, dust,
59 * vibration, humidity, radioactivity or plain-old failed hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 *
61 * Note, however, that one of the leading causes of EEH slot
62 * freeze events are buggy device drivers, buggy device microcode,
63 * or buggy device hardware. This is because any attempt by the
64 * device to bus-master data to a memory address that is not
65 * assigned to the device will trigger a slot freeze. (The idea
66 * is to prevent devices-gone-wild from corrupting system memory).
67 * Buggy hardware/drivers will have a miserable time co-existing
68 * with EEH.
69 *
70 * Ideally, a PCI device driver, when suspecting that an isolation
Lucas De Marchi25985ed2011-03-30 22:57:33 -030071 * event has occurred (e.g. by reading 0xff's), will then ask EEH
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * whether this is the case, and then take appropriate steps to
73 * reset the PCI slot, the PCI device, and then resume operations.
74 * However, until that day, the checking is done here, with the
75 * eeh_check_failure() routine embedded in the MMIO macros. If
76 * the slot is found to be isolated, an "EEH Event" is synthesized
77 * and sent out for processing.
78 */
79
Linas Vepstas5c1344e2005-11-03 18:49:31 -060080/* If a device driver keeps reading an MMIO register in an interrupt
Mike Masonf36c5222008-07-22 02:40:17 +100081 * handler after a slot isolation event, it might be broken.
82 * This sets the threshold for how many read attempts we allow
83 * before printing an error message.
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 */
Linas Vepstas2fd30be2007-03-19 14:53:22 -050085#define EEH_MAX_FAILS 2100000
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Linas Vepstas17213c32007-05-10 02:38:11 +100087/* Time to wait for a PCI slot to report status, in milliseconds */
Brian Kingfb48dc22013-11-25 16:27:54 -060088#define PCI_BUS_RESET_WAIT_MSEC (5*60*1000)
Linas Vepstas9c547762007-03-19 14:58:07 -050089
Gavin Shanaa1e6372012-02-27 20:03:53 +000090/* Platform dependent EEH operations */
91struct eeh_ops *eeh_ops = NULL;
92
Gavin Shan2ec5a0a2014-02-12 15:24:55 +080093bool eeh_subsystem_enabled = false;
David Woodhouse1e28a7d2005-11-17 00:44:03 +000094EXPORT_SYMBOL(eeh_subsystem_enabled);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Gavin Shand7bb8862012-09-07 22:44:21 +000096/*
97 * EEH probe mode support. The intention is to support multiple
98 * platforms for EEH. Some platforms like pSeries do PCI emunation
99 * based on device tree. However, other platforms like powernv probe
100 * PCI devices from hardware. The flag is used to distinguish that.
101 * In addition, struct eeh_ops::probe would be invoked for particular
102 * OF node or PCI device so that the corresponding PE would be created
103 * there.
104 */
105int eeh_probe_mode;
106
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600107/* Lock to avoid races due to multiple reports of an error */
Gavin Shan49075812013-06-20 13:21:03 +0800108DEFINE_RAW_SPINLOCK(confirm_error_lock);
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600109
Linas Vepstas17213c32007-05-10 02:38:11 +1000110/* Buffer for reporting pci register dumps. Its here in BSS, and
111 * not dynamically alloced, so that it ends up in RMO where RTAS
112 * can access it.
113 */
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000114#define EEH_PCI_REGS_LOG_LEN 4096
115static unsigned char pci_regs_buf[EEH_PCI_REGS_LOG_LEN];
116
Gavin Shane575f8d2012-02-29 15:47:45 +0000117/*
118 * The struct is used to maintain the EEH global statistic
119 * information. Besides, the EEH global statistics will be
120 * exported to user space through procfs
121 */
122struct eeh_stats {
123 u64 no_device; /* PCI device not found */
124 u64 no_dn; /* OF node not found */
125 u64 no_cfg_addr; /* Config address not found */
126 u64 ignored_check; /* EEH check skipped */
127 u64 total_mmio_ffs; /* Total EEH checks */
128 u64 false_positives; /* Unnecessary EEH checks */
129 u64 slot_resets; /* PE reset */
130};
131
132static struct eeh_stats eeh_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Linas Vepstas7684b402005-11-03 18:55:19 -0600134#define IS_BRIDGE(class_code) (((class_code)<<16) == PCI_BASE_CLASS_BRIDGE)
135
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000136/**
Gavin Shancce4b2d2012-02-27 20:03:52 +0000137 * eeh_gather_pci_data - Copy assorted PCI config space registers to buff
Gavin Shanf631acd2012-02-27 20:04:07 +0000138 * @edev: device to report data for
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000139 * @buf: point to buffer in which to log
140 * @len: amount of room in buffer
141 *
142 * This routine captures assorted PCI configuration space data,
143 * and puts them into a buffer for RTAS error logging.
144 */
Gavin Shanf631acd2012-02-27 20:04:07 +0000145static size_t eeh_gather_pci_data(struct eeh_dev *edev, char * buf, size_t len)
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000146{
Gavin Shanf631acd2012-02-27 20:04:07 +0000147 struct device_node *dn = eeh_dev_to_of_node(edev);
148 struct pci_dev *dev = eeh_dev_to_pci_dev(edev);
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000149 u32 cfg;
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000150 int cap, i;
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000151 int n = 0;
152
Gavin Shanf631acd2012-02-27 20:04:07 +0000153 n += scnprintf(buf+n, len-n, "%s\n", dn->full_name);
Gavin Shan2d86c382014-04-24 18:00:15 +1000154 pr_warn("EEH: of node=%s\n", dn->full_name);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000155
Gavin Shan37804442012-02-27 20:04:11 +0000156 eeh_ops->read_config(dn, PCI_VENDOR_ID, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000157 n += scnprintf(buf+n, len-n, "dev/vend:%08x\n", cfg);
Gavin Shan2d86c382014-04-24 18:00:15 +1000158 pr_warn("EEH: PCI device/vendor: %08x\n", cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000159
Gavin Shan37804442012-02-27 20:04:11 +0000160 eeh_ops->read_config(dn, PCI_COMMAND, 4, &cfg);
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000161 n += scnprintf(buf+n, len-n, "cmd/stat:%x\n", cfg);
Gavin Shan2d86c382014-04-24 18:00:15 +1000162 pr_warn("EEH: PCI cmd/status register: %08x\n", cfg);
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000163
Linas Vepstasb37ceef2007-11-03 07:29:01 +1100164 if (!dev) {
Gavin Shan2d86c382014-04-24 18:00:15 +1000165 pr_warn("EEH: no PCI device for this of node\n");
Linas Vepstasb37ceef2007-11-03 07:29:01 +1100166 return n;
167 }
168
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000169 /* Gather bridge-specific registers */
170 if (dev->class >> 16 == PCI_BASE_CLASS_BRIDGE) {
Gavin Shan37804442012-02-27 20:04:11 +0000171 eeh_ops->read_config(dn, PCI_SEC_STATUS, 2, &cfg);
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000172 n += scnprintf(buf+n, len-n, "sec stat:%x\n", cfg);
Gavin Shan2d86c382014-04-24 18:00:15 +1000173 pr_warn("EEH: Bridge secondary status: %04x\n", cfg);
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000174
Gavin Shan37804442012-02-27 20:04:11 +0000175 eeh_ops->read_config(dn, PCI_BRIDGE_CONTROL, 2, &cfg);
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000176 n += scnprintf(buf+n, len-n, "brdg ctl:%x\n", cfg);
Gavin Shan2d86c382014-04-24 18:00:15 +1000177 pr_warn("EEH: Bridge control: %04x\n", cfg);
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000178 }
179
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000180 /* Dump out the PCI-X command and status regs */
Linas Vepstasb37ceef2007-11-03 07:29:01 +1100181 cap = pci_find_capability(dev, PCI_CAP_ID_PCIX);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000182 if (cap) {
Gavin Shan37804442012-02-27 20:04:11 +0000183 eeh_ops->read_config(dn, cap, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000184 n += scnprintf(buf+n, len-n, "pcix-cmd:%x\n", cfg);
Gavin Shan2d86c382014-04-24 18:00:15 +1000185 pr_warn("EEH: PCI-X cmd: %08x\n", cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000186
Gavin Shan37804442012-02-27 20:04:11 +0000187 eeh_ops->read_config(dn, cap+4, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000188 n += scnprintf(buf+n, len-n, "pcix-stat:%x\n", cfg);
Gavin Shan2d86c382014-04-24 18:00:15 +1000189 pr_warn("EEH: PCI-X status: %08x\n", cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000190 }
191
192 /* If PCI-E capable, dump PCI-E cap 10, and the AER */
Yijing Wangf0308262013-09-05 15:55:27 +0800193 if (pci_is_pcie(dev)) {
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000194 n += scnprintf(buf+n, len-n, "pci-e cap10:\n");
Gavin Shan2d86c382014-04-24 18:00:15 +1000195 pr_warn("EEH: PCI-E capabilities and status follow:\n");
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000196
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);
Gavin Shan2d86c382014-04-24 18:00:15 +1000200 pr_warn("EEH: PCI-E %02x: %08x\n", i, cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000201 }
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");
Gavin Shan2d86c382014-04-24 18:00:15 +1000206 pr_warn("EEH: PCI-E AER capability register "
207 "set follows:\n");
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000208
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);
Gavin Shan2d86c382014-04-24 18:00:15 +1000212 pr_warn("EEH: PCI-E AER %02x: %08x\n", i, cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000213 }
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 Shanff477962012-09-07 22:44:16 +0000234
Gavin Shanc35ae172013-06-27 13:46:42 +0800235 /*
236 * When the PHB is fenced or dead, it's pointless to collect
237 * the data from PCI config space because it should return
238 * 0xFF's. For ER, we still retrieve the data from the PCI
239 * config space.
Gavin Shan78954702014-04-24 18:00:14 +1000240 *
241 * For pHyp, we have to enable IO for log retrieval. Otherwise,
242 * 0xFF's is always returned from PCI config space.
Gavin Shanc35ae172013-06-27 13:46:42 +0800243 */
Gavin Shan9e049372014-04-24 18:00:07 +1000244 if (!(pe->type & EEH_PE_PHB)) {
Gavin Shan78954702014-04-24 18:00:14 +1000245 if (eeh_probe_mode_devtree())
246 eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
Gavin Shanc35ae172013-06-27 13:46:42 +0800247 eeh_ops->configure_bridge(pe);
248 eeh_pe_restore_bars(pe);
249
250 pci_regs_buf[0] = 0;
Gavin Shan9feed422013-07-24 10:24:56 +0800251 eeh_pe_for_each_dev(pe, edev, tmp) {
Gavin Shanc35ae172013-06-27 13:46:42 +0800252 loglen += eeh_gather_pci_data(edev, pci_regs_buf + loglen,
253 EEH_PCI_REGS_LOG_LEN - loglen);
254 }
255 }
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000256
Gavin Shanff477962012-09-07 22:44:16 +0000257 eeh_ops->get_log(pe, severity, pci_regs_buf, loglen);
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000258}
259
260/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000261 * eeh_token_to_phys - Convert EEH address token to phys address
262 * @token: I/O token, should be address in the form 0xA....
263 *
264 * This routine should be called to convert virtual I/O address
265 * to physical one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 */
267static inline unsigned long eeh_token_to_phys(unsigned long token)
268{
269 pte_t *ptep;
270 unsigned long pa;
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530271 int hugepage_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530273 /*
274 * We won't find hugepages here, iomem
275 */
276 ptep = find_linux_pte_or_hugepte(init_mm.pgd, token, &hugepage_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (!ptep)
278 return token;
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530279 WARN_ON(hugepage_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 pa = pte_pfn(*ptep) << PAGE_SHIFT;
281
282 return pa | (token & (PAGE_SIZE-1));
283}
284
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800285/*
286 * On PowerNV platform, we might already have fenced PHB there.
287 * For that case, it's meaningless to recover frozen PE. Intead,
288 * We have to handle fenced PHB firstly.
289 */
290static int eeh_phb_check_failure(struct eeh_pe *pe)
291{
292 struct eeh_pe *phb_pe;
293 unsigned long flags;
294 int ret;
295
296 if (!eeh_probe_mode_dev())
297 return -EPERM;
298
299 /* Find the PHB PE */
300 phb_pe = eeh_phb_pe_get(pe->phb);
301 if (!phb_pe) {
302 pr_warning("%s Can't find PE for PHB#%d\n",
303 __func__, pe->phb->global_number);
304 return -EEXIST;
305 }
306
307 /* If the PHB has been in problematic state */
308 eeh_serialize_lock(&flags);
Gavin Shan9e049372014-04-24 18:00:07 +1000309 if (phb_pe->state & EEH_PE_ISOLATED) {
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800310 ret = 0;
311 goto out;
312 }
313
314 /* Check PHB state */
315 ret = eeh_ops->get_state(phb_pe, NULL);
316 if ((ret < 0) ||
317 (ret == EEH_STATE_NOT_SUPPORT) ||
318 (ret & (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) ==
319 (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) {
320 ret = 0;
321 goto out;
322 }
323
324 /* Isolate the PHB and send event */
325 eeh_pe_state_mark(phb_pe, EEH_PE_ISOLATED);
326 eeh_serialize_unlock(flags);
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800327
Gavin Shan56ca4fd2013-06-27 13:46:46 +0800328 pr_err("EEH: PHB#%x failure detected\n",
329 phb_pe->phb->global_number);
330 dump_stack();
Gavin Shan5293bf92013-09-06 09:00:05 +0800331 eeh_send_failure_event(phb_pe);
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800332
333 return 1;
334out:
335 eeh_serialize_unlock(flags);
336 return ret;
337}
338
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000339/**
Gavin Shanf8f7d632012-09-07 22:44:22 +0000340 * eeh_dev_check_failure - Check if all 1's data is due to EEH slot freeze
341 * @edev: eeh device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 *
343 * Check for an EEH failure for the given device node. Call this
344 * routine if the result of a read was all 0xff's and you want to
345 * find out if this is due to an EEH slot freeze. This routine
346 * will query firmware for the EEH status.
347 *
348 * Returns 0 if there has not been an EEH error; otherwise returns
Linas Vepstas69376502005-11-03 18:47:50 -0600349 * a non-zero value and queues up a slot isolation event notification.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 *
351 * It is safe to call this routine in an interrupt context.
352 */
Gavin Shanf8f7d632012-09-07 22:44:22 +0000353int eeh_dev_check_failure(struct eeh_dev *edev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 unsigned long flags;
Gavin Shanf8f7d632012-09-07 22:44:22 +0000357 struct device_node *dn;
358 struct pci_dev *dev;
Gavin Shan66523d92012-09-07 22:44:13 +0000359 struct eeh_pe *pe;
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600360 int rc = 0;
Mike Masonf36c5222008-07-22 02:40:17 +1000361 const char *location;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Gavin Shane575f8d2012-02-29 15:47:45 +0000363 eeh_stats.total_mmio_ffs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Gavin Shan2ec5a0a2014-02-12 15:24:55 +0800365 if (!eeh_enabled())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 return 0;
367
Gavin Shanf8f7d632012-09-07 22:44:22 +0000368 if (!edev) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000369 eeh_stats.no_dn++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return 0;
Linas Vepstas177bc932005-11-03 18:48:52 -0600371 }
Gavin Shanf8f7d632012-09-07 22:44:22 +0000372 dn = eeh_dev_to_of_node(edev);
373 dev = eeh_dev_to_pci_dev(edev);
Gavin Shan66523d92012-09-07 22:44:13 +0000374 pe = edev->pe;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376 /* Access to IO BARs might get this far and still not want checking. */
Gavin Shan66523d92012-09-07 22:44:13 +0000377 if (!pe) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000378 eeh_stats.ignored_check++;
Gavin Shan66523d92012-09-07 22:44:13 +0000379 pr_debug("EEH: Ignored check for %s %s\n",
380 eeh_pci_name(dev), dn->full_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return 0;
382 }
383
Gavin Shan66523d92012-09-07 22:44:13 +0000384 if (!pe->addr && !pe->config_addr) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000385 eeh_stats.no_cfg_addr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 return 0;
387 }
388
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800389 /*
390 * On PowerNV platform, we might already have fenced PHB
391 * there and we need take care of that firstly.
392 */
393 ret = eeh_phb_check_failure(pe);
394 if (ret > 0)
395 return ret;
396
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600397 /* If we already have a pending isolation event for this
398 * slot, we know it's bad already, we don't need to check.
399 * Do this checking under a lock; as multiple PCI devices
400 * in one slot might report errors simultaneously, and we
401 * only want one error recovery routine running.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 */
Gavin Shan49075812013-06-20 13:21:03 +0800403 eeh_serialize_lock(&flags);
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600404 rc = 1;
Gavin Shan66523d92012-09-07 22:44:13 +0000405 if (pe->state & EEH_PE_ISOLATED) {
406 pe->check_count++;
407 if (pe->check_count % EEH_MAX_FAILS == 0) {
Mike Masonf36c5222008-07-22 02:40:17 +1000408 location = of_get_property(dn, "ibm,loc-code", NULL);
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000409 printk(KERN_ERR "EEH: %d reads ignored for recovering device at "
Mike Masonf36c5222008-07-22 02:40:17 +1000410 "location=%s driver=%s pci addr=%s\n",
Gavin Shan66523d92012-09-07 22:44:13 +0000411 pe->check_count, location,
Thadeu Lima de Souza Cascardo778a7852012-01-11 09:09:58 +0000412 eeh_driver_name(dev), eeh_pci_name(dev));
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000413 printk(KERN_ERR "EEH: Might be infinite loop in %s driver\n",
Thadeu Lima de Souza Cascardo778a7852012-01-11 09:09:58 +0000414 eeh_driver_name(dev));
Linas Vepstas5c1344e2005-11-03 18:49:31 -0600415 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600417 goto dn_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 }
419
420 /*
421 * Now test for an EEH failure. This is VERY expensive.
422 * Note that the eeh_config_addr may be a parent device
423 * in the case of a device behind a bridge, or it may be
424 * function zero of a multi-function device.
425 * In any case they must share a common PHB.
426 */
Gavin Shan66523d92012-09-07 22:44:13 +0000427 ret = eeh_ops->get_state(pe, NULL);
Linas Vepstas76e6faf2005-11-03 18:49:15 -0600428
Linas Vepstas39d16e22007-03-19 14:51:00 -0500429 /* Note that config-io to empty slots may fail;
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000430 * they are empty when they don't have children.
Gavin Shaneb594a42012-02-27 20:03:57 +0000431 * We will punt with the following conditions: Failure to get
432 * PE's state, EEH not support and Permanently unavailable
433 * state, PE is in good state.
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000434 */
Gavin Shaneb594a42012-02-27 20:03:57 +0000435 if ((ret < 0) ||
436 (ret == EEH_STATE_NOT_SUPPORT) ||
437 (ret & (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) ==
438 (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE)) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000439 eeh_stats.false_positives++;
Gavin Shan66523d92012-09-07 22:44:13 +0000440 pe->false_positives++;
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600441 rc = 0;
442 goto dn_unlock;
Linas Vepstas76e6faf2005-11-03 18:49:15 -0600443 }
444
Gavin Shane575f8d2012-02-29 15:47:45 +0000445 eeh_stats.slot_resets++;
Gavin Shana84f2732013-06-20 13:20:51 +0800446
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600447 /* Avoid repeated reports of this failure, including problems
448 * with other functions on this device, and functions under
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000449 * bridges.
450 */
Gavin Shan66523d92012-09-07 22:44:13 +0000451 eeh_pe_state_mark(pe, EEH_PE_ISOLATED);
Gavin Shan49075812013-06-20 13:21:03 +0800452 eeh_serialize_unlock(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 /* Most EEH events are due to device driver bugs. Having
455 * a stack trace will help the device-driver authors figure
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000456 * out what happened. So print that out.
457 */
Gavin Shan56ca4fd2013-06-27 13:46:46 +0800458 pr_err("EEH: Frozen PE#%x detected on PHB#%x\n",
459 pe->addr, pe->phb->global_number);
460 dump_stack();
461
Gavin Shan5293bf92013-09-06 09:00:05 +0800462 eeh_send_failure_event(pe);
463
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600464 return 1;
465
466dn_unlock:
Gavin Shan49075812013-06-20 13:21:03 +0800467 eeh_serialize_unlock(flags);
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600468 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469}
470
Gavin Shanf8f7d632012-09-07 22:44:22 +0000471EXPORT_SYMBOL_GPL(eeh_dev_check_failure);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
473/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000474 * eeh_check_failure - Check if all 1's data is due to EEH slot freeze
475 * @token: I/O token, should be address in the form 0xA....
476 * @val: value, should be all 1's (XXX why do we need this arg??)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 * Check for an EEH failure at the given token address. Call this
479 * routine if the result of a read was all 0xff's and you want to
480 * find out if this is due to an EEH slot freeze event. This routine
481 * will query firmware for the EEH status.
482 *
483 * Note this routine is safe to call in an interrupt context.
484 */
485unsigned long eeh_check_failure(const volatile void __iomem *token, unsigned long val)
486{
487 unsigned long addr;
Gavin Shanf8f7d632012-09-07 22:44:22 +0000488 struct eeh_dev *edev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 /* Finding the phys addr + pci device; this is pretty quick. */
491 addr = eeh_token_to_phys((unsigned long __force) token);
Gavin Shan3ab96a02012-09-07 22:44:23 +0000492 edev = eeh_addr_cache_get_dev(addr);
Gavin Shanf8f7d632012-09-07 22:44:22 +0000493 if (!edev) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000494 eeh_stats.no_device++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return val;
Linas Vepstas177bc932005-11-03 18:48:52 -0600496 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Gavin Shanf8f7d632012-09-07 22:44:22 +0000498 eeh_dev_check_failure(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 Vepstascb5b56242006-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{
Gavin Shan78954702014-04-24 18:00:14 +1000515 int rc, flags = (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE);
516
517 /*
518 * pHyp doesn't allow to enable IO or DMA on unfrozen PE.
519 * Also, it's pointless to enable them on unfrozen PE. So
520 * we have the check here.
521 */
522 if (function == EEH_OPT_THAW_MMIO ||
523 function == EEH_OPT_THAW_DMA) {
524 rc = eeh_ops->get_state(pe, NULL);
525 if (rc < 0)
526 return rc;
527
528 /* Needn't to enable or already enabled */
529 if ((rc == EEH_STATE_NOT_SUPPORT) ||
530 ((rc & flags) == flags))
531 return 0;
532 }
Linas Vepstas47b5c832006-09-15 18:57:42 -0500533
Gavin Shanff477962012-09-07 22:44:16 +0000534 rc = eeh_ops->set_option(pe, function);
Linas Vepstas47b5c832006-09-15 18:57:42 -0500535 if (rc)
Gavin Shan78954702014-04-24 18:00:14 +1000536 pr_warn("%s: Unexpected state change %d on "
537 "PHB#%d-PE#%x, err=%d\n",
538 __func__, function, pe->phb->global_number,
539 pe->addr, rc);
Linas Vepstas47b5c832006-09-15 18:57:42 -0500540
Gavin Shanff477962012-09-07 22:44:16 +0000541 rc = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
Gavin Shan78954702014-04-24 18:00:14 +1000542 if (rc <= 0)
543 return rc;
544
545 if ((function == EEH_OPT_THAW_MMIO) &&
546 (rc & EEH_STATE_MMIO_ENABLED))
547 return 0;
548
549 if ((function == EEH_OPT_THAW_DMA) &&
550 (rc & EEH_STATE_DMA_ENABLED))
Linas Vepstasfa1be472007-03-19 14:59:59 -0500551 return 0;
552
Linas Vepstas47b5c832006-09-15 18:57:42 -0500553 return rc;
554}
555
556/**
Brian King00c2ae32007-05-08 08:04:05 +1000557 * pcibios_set_pcie_slot_reset - Set PCI-E reset state
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000558 * @dev: pci device struct
559 * @state: reset state to enter
Brian King00c2ae32007-05-08 08:04:05 +1000560 *
561 * Return value:
562 * 0 if success
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000563 */
Brian King00c2ae32007-05-08 08:04:05 +1000564int pcibios_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
565{
Gavin Shanc270a242012-09-07 22:44:17 +0000566 struct eeh_dev *edev = pci_dev_to_eeh_dev(dev);
567 struct eeh_pe *pe = edev->pe;
568
569 if (!pe) {
570 pr_err("%s: No PE found on PCI device %s\n",
571 __func__, pci_name(dev));
572 return -EINVAL;
573 }
Brian King00c2ae32007-05-08 08:04:05 +1000574
575 switch (state) {
576 case pcie_deassert_reset:
Gavin Shanc270a242012-09-07 22:44:17 +0000577 eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
Brian King00c2ae32007-05-08 08:04:05 +1000578 break;
579 case pcie_hot_reset:
Gavin Shanc270a242012-09-07 22:44:17 +0000580 eeh_ops->reset(pe, EEH_RESET_HOT);
Brian King00c2ae32007-05-08 08:04:05 +1000581 break;
582 case pcie_warm_reset:
Gavin Shanc270a242012-09-07 22:44:17 +0000583 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
Brian King00c2ae32007-05-08 08:04:05 +1000584 break;
585 default:
586 return -EINVAL;
587 };
588
589 return 0;
590}
591
592/**
Gavin Shanc270a242012-09-07 22:44:17 +0000593 * eeh_set_pe_freset - Check the required reset for the indicated device
594 * @data: EEH device
595 * @flag: return value
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000596 *
597 * Each device might have its preferred reset type: fundamental or
598 * hot reset. The routine is used to collected the information for
599 * the indicated device and its children so that the bunch of the
600 * devices could be reset properly.
601 */
Gavin Shanc270a242012-09-07 22:44:17 +0000602static void *eeh_set_dev_freset(void *data, void *flag)
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000603{
604 struct pci_dev *dev;
Gavin Shanc270a242012-09-07 22:44:17 +0000605 unsigned int *freset = (unsigned int *)flag;
606 struct eeh_dev *edev = (struct eeh_dev *)data;
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000607
Gavin Shanc270a242012-09-07 22:44:17 +0000608 dev = eeh_dev_to_pci_dev(edev);
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000609 if (dev)
610 *freset |= dev->needs_freset;
611
Gavin Shanc270a242012-09-07 22:44:17 +0000612 return NULL;
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000613}
614
615/**
Gavin Shancce4b2d2012-02-27 20:03:52 +0000616 * eeh_reset_pe_once - Assert the pci #RST line for 1/4 second
Gavin Shanc270a242012-09-07 22:44:17 +0000617 * @pe: EEH PE
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000618 *
619 * Assert the PCI #RST line for 1/4 second.
620 */
Gavin Shanc270a242012-09-07 22:44:17 +0000621static void eeh_reset_pe_once(struct eeh_pe *pe)
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600622{
Richard A Lary308fc4f2011-04-22 09:59:47 +0000623 unsigned int freset = 0;
Mike Mason6e193142009-07-30 15:42:39 -0700624
Richard A Lary308fc4f2011-04-22 09:59:47 +0000625 /* Determine type of EEH reset required for
626 * Partitionable Endpoint, a hot-reset (1)
627 * or a fundamental reset (3).
628 * A fundamental reset required by any device under
629 * Partitionable Endpoint trumps hot-reset.
Gavin Shana84f2732013-06-20 13:20:51 +0800630 */
Gavin Shanc270a242012-09-07 22:44:17 +0000631 eeh_pe_dev_traverse(pe, eeh_set_dev_freset, &freset);
Richard A Lary308fc4f2011-04-22 09:59:47 +0000632
633 if (freset)
Gavin Shanc270a242012-09-07 22:44:17 +0000634 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
Mike Mason6e193142009-07-30 15:42:39 -0700635 else
Gavin Shanc270a242012-09-07 22:44:17 +0000636 eeh_ops->reset(pe, EEH_RESET_HOT);
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600637
638 /* The PCI bus requires that the reset be held high for at least
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000639 * a 100 milliseconds. We wait a bit longer 'just in case'.
640 */
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600641#define PCI_BUS_RST_HOLD_TIME_MSEC 250
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000642 msleep(PCI_BUS_RST_HOLD_TIME_MSEC);
Gavin Shana84f2732013-06-20 13:20:51 +0800643
Gavin Shanc270a242012-09-07 22:44:17 +0000644 eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600645
646 /* After a PCI slot has been reset, the PCI Express spec requires
647 * a 1.5 second idle time for the bus to stabilize, before starting
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000648 * up traffic.
649 */
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600650#define PCI_BUS_SETTLE_TIME_MSEC 1800
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000651 msleep(PCI_BUS_SETTLE_TIME_MSEC);
Linas Vepstase1029262006-09-21 18:25:56 -0500652}
653
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000654/**
Gavin Shancce4b2d2012-02-27 20:03:52 +0000655 * eeh_reset_pe - Reset the indicated PE
Gavin Shanc270a242012-09-07 22:44:17 +0000656 * @pe: EEH PE
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000657 *
658 * This routine should be called to reset indicated device, including
659 * PE. A PE might include multiple PCI devices and sometimes PCI bridges
660 * might be involved as well.
661 */
Gavin Shanc270a242012-09-07 22:44:17 +0000662int eeh_reset_pe(struct eeh_pe *pe)
Linas Vepstase1029262006-09-21 18:25:56 -0500663{
Gavin Shan326a98e2013-06-20 13:20:58 +0800664 int flags = (EEH_STATE_MMIO_ACTIVE | EEH_STATE_DMA_ACTIVE);
Linas Vepstase1029262006-09-21 18:25:56 -0500665 int i, rc;
666
Linas Vepstas9c547762007-03-19 14:58:07 -0500667 /* Take three shots at resetting the bus */
668 for (i=0; i<3; i++) {
Gavin Shanc270a242012-09-07 22:44:17 +0000669 eeh_reset_pe_once(pe);
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600670
Gavin Shan78954702014-04-24 18:00:14 +1000671 /*
672 * EEH_PE_ISOLATED is expected to be removed after
673 * BAR restore.
674 */
Gavin Shanc270a242012-09-07 22:44:17 +0000675 rc = eeh_ops->wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
Gavin Shan78954702014-04-24 18:00:14 +1000676 if ((rc & flags) == flags)
Linas Vepstasb6495c02005-11-03 18:54:54 -0600677 return 0;
Linas Vepstase1029262006-09-21 18:25:56 -0500678
Linas Vepstase1029262006-09-21 18:25:56 -0500679 if (rc < 0) {
Gavin Shanc270a242012-09-07 22:44:17 +0000680 pr_err("%s: Unrecoverable slot failure on PHB#%d-PE#%x",
681 __func__, pe->phb->global_number, pe->addr);
Linas Vepstasb6495c02005-11-03 18:54:54 -0600682 return -1;
Linas Vepstase1029262006-09-21 18:25:56 -0500683 }
Gavin Shanc270a242012-09-07 22:44:17 +0000684 pr_err("EEH: bus reset %d failed on PHB#%d-PE#%x, rc=%d\n",
685 i+1, pe->phb->global_number, pe->addr, rc);
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600686 }
Linas Vepstasb6495c02005-11-03 18:54:54 -0600687
Linas Vepstas9c547762007-03-19 14:58:07 -0500688 return -1;
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600689}
690
Linas Vepstas8b553f32005-11-03 18:50:17 -0600691/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000692 * eeh_save_bars - Save device bars
Gavin Shanf631acd2012-02-27 20:04:07 +0000693 * @edev: PCI device associated EEH device
Linas Vepstas8b553f32005-11-03 18:50:17 -0600694 *
695 * Save the values of the device bars. Unlike the restore
696 * routine, this routine is *not* recursive. This is because
Justin Mattock31116f02011-02-24 20:10:18 +0000697 * PCI devices are added individually; but, for the restore,
Linas Vepstas8b553f32005-11-03 18:50:17 -0600698 * an entire slot is reset at a time.
699 */
Gavin Shand7bb8862012-09-07 22:44:21 +0000700void eeh_save_bars(struct eeh_dev *edev)
Linas Vepstas8b553f32005-11-03 18:50:17 -0600701{
702 int i;
Gavin Shanf631acd2012-02-27 20:04:07 +0000703 struct device_node *dn;
Linas Vepstas8b553f32005-11-03 18:50:17 -0600704
Gavin Shanf631acd2012-02-27 20:04:07 +0000705 if (!edev)
Linas Vepstas8b553f32005-11-03 18:50:17 -0600706 return;
Gavin Shanf631acd2012-02-27 20:04:07 +0000707 dn = eeh_dev_to_of_node(edev);
Gavin Shana84f2732013-06-20 13:20:51 +0800708
Linas Vepstas8b553f32005-11-03 18:50:17 -0600709 for (i = 0; i < 16; i++)
Gavin Shan37804442012-02-27 20:04:11 +0000710 eeh_ops->read_config(dn, i * 4, 4, &edev->config_space[i]);
Gavin Shanbf898ec2013-11-12 14:49:21 +0800711
712 /*
713 * For PCI bridges including root port, we need enable bus
714 * master explicitly. Otherwise, it can't fetch IODA table
715 * entries correctly. So we cache the bit in advance so that
716 * we can restore it after reset, either PHB range or PE range.
717 */
718 if (edev->mode & EEH_DEV_BRIDGE)
719 edev->config_space[1] |= PCI_COMMAND_MASTER;
Linas Vepstas8b553f32005-11-03 18:50:17 -0600720}
721
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000722/**
Gavin Shanaa1e6372012-02-27 20:03:53 +0000723 * eeh_ops_register - Register platform dependent EEH operations
724 * @ops: platform dependent EEH operations
725 *
726 * Register the platform dependent EEH operation callback
727 * functions. The platform should call this function before
728 * any other EEH operations.
729 */
730int __init eeh_ops_register(struct eeh_ops *ops)
731{
732 if (!ops->name) {
733 pr_warning("%s: Invalid EEH ops name for %p\n",
734 __func__, ops);
735 return -EINVAL;
736 }
737
738 if (eeh_ops && eeh_ops != ops) {
739 pr_warning("%s: EEH ops of platform %s already existing (%s)\n",
740 __func__, eeh_ops->name, ops->name);
741 return -EEXIST;
742 }
743
744 eeh_ops = ops;
745
746 return 0;
747}
748
749/**
750 * eeh_ops_unregister - Unreigster platform dependent EEH operations
751 * @name: name of EEH platform operations
752 *
753 * Unregister the platform dependent EEH operation callback
754 * functions.
755 */
756int __exit eeh_ops_unregister(const char *name)
757{
758 if (!name || !strlen(name)) {
759 pr_warning("%s: Invalid EEH ops name\n",
760 __func__);
761 return -EINVAL;
762 }
763
764 if (eeh_ops && !strcmp(eeh_ops->name, name)) {
765 eeh_ops = NULL;
766 return 0;
767 }
768
769 return -EEXIST;
770}
771
Gavin Shan66f9af832014-02-12 15:24:56 +0800772static int eeh_reboot_notifier(struct notifier_block *nb,
773 unsigned long action, void *unused)
774{
775 eeh_set_enable(false);
776 return NOTIFY_DONE;
777}
778
779static struct notifier_block eeh_reboot_nb = {
780 .notifier_call = eeh_reboot_notifier,
781};
782
Gavin Shanaa1e6372012-02-27 20:03:53 +0000783/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000784 * eeh_init - EEH initialization
785 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 * Initialize EEH by trying to enable it for all of the adapters in the system.
787 * As a side effect we can determine here if eeh is supported at all.
788 * Note that we leave EEH on so failed config cycles won't cause a machine
789 * check. If a user turns off EEH for a particular adapter they are really
790 * telling Linux to ignore errors. Some hardware (e.g. POWER5) won't
791 * grant access to a slot if EEH isn't enabled, and so we always enable
792 * EEH for all slots/all devices.
793 *
794 * The eeh-force-off option disables EEH checking globally, for all slots.
795 * Even if force-off is set, the EEH hardware is still enabled, so that
796 * newer systems can boot.
797 */
Gavin Shaneeb63612013-06-27 13:46:47 +0800798int eeh_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Gavin Shan1a5c2e62012-03-20 21:30:29 +0000800 struct pci_controller *hose, *tmp;
801 struct device_node *phb;
Gavin Shan51fb5f52013-06-20 13:20:56 +0800802 static int cnt = 0;
803 int ret = 0;
804
805 /*
806 * We have to delay the initialization on PowerNV after
807 * the PCI hierarchy tree has been built because the PEs
808 * are figured out based on PCI devices instead of device
809 * tree nodes
810 */
811 if (machine_is(powernv) && cnt++ <= 0)
812 return ret;
Gavin Shane2af1552012-02-27 20:03:54 +0000813
Gavin Shan66f9af832014-02-12 15:24:56 +0800814 /* Register reboot notifier */
815 ret = register_reboot_notifier(&eeh_reboot_nb);
816 if (ret) {
817 pr_warn("%s: Failed to register notifier (%d)\n",
818 __func__, ret);
819 return ret;
820 }
821
Gavin Shane2af1552012-02-27 20:03:54 +0000822 /* call platform initialization function */
823 if (!eeh_ops) {
824 pr_warning("%s: Platform EEH operation not found\n",
825 __func__);
Gavin Shan35e5cfe2012-09-07 22:44:02 +0000826 return -EEXIST;
Gavin Shane2af1552012-02-27 20:03:54 +0000827 } else if ((ret = eeh_ops->init())) {
828 pr_warning("%s: Failed to call platform init function (%d)\n",
829 __func__, ret);
Gavin Shan35e5cfe2012-09-07 22:44:02 +0000830 return ret;
Gavin Shane2af1552012-02-27 20:03:54 +0000831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Gavin Shanc8608552013-06-20 13:21:00 +0800833 /* Initialize EEH event */
834 ret = eeh_event_init();
835 if (ret)
836 return ret;
837
Gavin Shan1a5c2e62012-03-20 21:30:29 +0000838 /* Enable EEH for all adapters */
Gavin Shand7bb8862012-09-07 22:44:21 +0000839 if (eeh_probe_mode_devtree()) {
840 list_for_each_entry_safe(hose, tmp,
841 &hose_list, list_node) {
842 phb = hose->dn;
843 traverse_pci_devices(phb, eeh_ops->of_probe, NULL);
844 }
Gavin Shan51fb5f52013-06-20 13:20:56 +0800845 } else if (eeh_probe_mode_dev()) {
846 list_for_each_entry_safe(hose, tmp,
847 &hose_list, list_node)
848 pci_walk_bus(hose->bus, eeh_ops->dev_probe, NULL);
849 } else {
850 pr_warning("%s: Invalid probe mode %d\n",
851 __func__, eeh_probe_mode);
852 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 }
854
Gavin Shan21fd21f2013-06-20 13:20:57 +0800855 /*
856 * Call platform post-initialization. Actually, It's good chance
857 * to inform platform that EEH is ready to supply service if the
858 * I/O cache stuff has been built up.
859 */
860 if (eeh_ops->post_init) {
861 ret = eeh_ops->post_init();
862 if (ret)
863 return ret;
864 }
865
Gavin Shan2ec5a0a2014-02-12 15:24:55 +0800866 if (eeh_enabled())
Gavin Shand7bb8862012-09-07 22:44:21 +0000867 pr_info("EEH: PCI Enhanced I/O Error Handling Enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 else
Gavin Shand7bb8862012-09-07 22:44:21 +0000869 pr_warning("EEH: No capable adapters found\n");
Gavin Shan35e5cfe2012-09-07 22:44:02 +0000870
871 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
873
Gavin Shan35e5cfe2012-09-07 22:44:02 +0000874core_initcall_sync(eeh_init);
875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000877 * eeh_add_device_early - Enable EEH for the indicated device_node
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 * @dn: device node for which to set up EEH
879 *
880 * This routine must be used to perform EEH initialization for PCI
881 * devices that were added after system boot (e.g. hotplug, dlpar).
882 * This routine must be called before any i/o is performed to the
883 * adapter (inluding any config-space i/o).
884 * Whether this actually enables EEH or not for this device depends
885 * on the CEC architecture, type of the device, on earlier boot
886 * command-line arguments & etc.
887 */
Gavin Shanf2856492013-07-24 10:24:52 +0800888void eeh_add_device_early(struct device_node *dn)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
890 struct pci_controller *phb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Gavin Shan26a74852013-06-20 13:20:59 +0800892 /*
893 * If we're doing EEH probe based on PCI device, we
894 * would delay the probe until late stage because
895 * the PCI device isn't available this moment.
896 */
897 if (!eeh_probe_mode_devtree())
898 return;
899
Gavin Shan1e38b712012-09-17 04:34:28 +0000900 if (!of_node_to_eeh_dev(dn))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 return;
Gavin Shanf631acd2012-02-27 20:04:07 +0000902 phb = of_node_to_eeh_dev(dn)->phb;
Linas Vepstasf751f842005-11-03 18:54:23 -0600903
904 /* USB Bus children of PCI devices will not have BUID's */
905 if (NULL == phb || 0 == phb->buid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
Gavin Shand7bb8862012-09-07 22:44:21 +0000908 eeh_ops->of_probe(dn, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000911/**
912 * eeh_add_device_tree_early - Enable EEH for the indicated device
913 * @dn: device node
914 *
915 * This routine must be used to perform EEH initialization for the
916 * indicated PCI device that was added after system boot (e.g.
917 * hotplug, dlpar).
918 */
Linas Vepstase2a296e2005-11-03 18:51:31 -0600919void eeh_add_device_tree_early(struct device_node *dn)
920{
921 struct device_node *sib;
Stephen Rothwellacaa6172007-12-21 15:52:07 +1100922
923 for_each_child_of_node(dn, sib)
Linas Vepstase2a296e2005-11-03 18:51:31 -0600924 eeh_add_device_tree_early(sib);
925 eeh_add_device_early(dn);
926}
927EXPORT_SYMBOL_GPL(eeh_add_device_tree_early);
928
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000930 * eeh_add_device_late - Perform EEH initialization for the indicated pci device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 * @dev: pci device for which to set up EEH
932 *
933 * This routine must be used to complete EEH initialization for PCI
934 * devices that were added after system boot (e.g. hotplug, dlpar).
935 */
Gavin Shanf2856492013-07-24 10:24:52 +0800936void eeh_add_device_late(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
Linas Vepstas56b0fca2005-11-03 18:48:45 -0600938 struct device_node *dn;
Gavin Shanf631acd2012-02-27 20:04:07 +0000939 struct eeh_dev *edev;
Linas Vepstas56b0fca2005-11-03 18:48:45 -0600940
Gavin Shan2ec5a0a2014-02-12 15:24:55 +0800941 if (!dev || !eeh_enabled())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 return;
943
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +0000944 pr_debug("EEH: Adding device %s\n", pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
Linas Vepstas56b0fca2005-11-03 18:48:45 -0600946 dn = pci_device_to_OF_node(dev);
Gavin Shan2ef822c2012-04-16 19:55:39 +0000947 edev = of_node_to_eeh_dev(dn);
Gavin Shanf631acd2012-02-27 20:04:07 +0000948 if (edev->pdev == dev) {
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +0000949 pr_debug("EEH: Already referenced !\n");
950 return;
951 }
Gavin Shanf5c57712013-07-24 10:24:58 +0800952
953 /*
954 * The EEH cache might not be removed correctly because of
955 * unbalanced kref to the device during unplug time, which
956 * relies on pcibios_release_device(). So we have to remove
957 * that here explicitly.
958 */
959 if (edev->pdev) {
960 eeh_rmv_from_parent_pe(edev);
961 eeh_addr_cache_rmv_dev(edev->pdev);
962 eeh_sysfs_remove_device(edev->pdev);
Gavin Shanab55d212013-07-24 10:25:01 +0800963 edev->mode &= ~EEH_DEV_SYSFS;
Gavin Shanf5c57712013-07-24 10:24:58 +0800964
Gavin Shanf26c7a02014-01-12 14:13:45 +0800965 /*
966 * We definitely should have the PCI device removed
967 * though it wasn't correctly. So we needn't call
968 * into error handler afterwards.
969 */
970 edev->mode |= EEH_DEV_NO_HANDLER;
971
Gavin Shanf5c57712013-07-24 10:24:58 +0800972 edev->pdev = NULL;
973 dev->dev.archdata.edev = NULL;
974 }
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +0000975
Gavin Shanf631acd2012-02-27 20:04:07 +0000976 edev->pdev = dev;
977 dev->dev.archdata.edev = edev;
Linas Vepstas56b0fca2005-11-03 18:48:45 -0600978
Gavin Shan26a74852013-06-20 13:20:59 +0800979 /*
980 * We have to do the EEH probe here because the PCI device
981 * hasn't been created yet in the early stage.
982 */
983 if (eeh_probe_mode_dev())
984 eeh_ops->dev_probe(dev, NULL);
985
Gavin Shan3ab96a02012-09-07 22:44:23 +0000986 eeh_addr_cache_insert_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987}
Nathan Fontenot794e0852006-03-31 12:04:52 -0600988
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000989/**
990 * eeh_add_device_tree_late - Perform EEH initialization for the indicated PCI bus
991 * @bus: PCI bus
992 *
993 * This routine must be used to perform EEH initialization for PCI
994 * devices which are attached to the indicated PCI bus. The PCI bus
995 * is added after system boot through hotplug or dlpar.
996 */
Nathan Fontenot794e0852006-03-31 12:04:52 -0600997void eeh_add_device_tree_late(struct pci_bus *bus)
998{
999 struct pci_dev *dev;
1000
1001 list_for_each_entry(dev, &bus->devices, bus_list) {
Gavin Shana84f2732013-06-20 13:20:51 +08001002 eeh_add_device_late(dev);
1003 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
1004 struct pci_bus *subbus = dev->subordinate;
1005 if (subbus)
1006 eeh_add_device_tree_late(subbus);
1007 }
Nathan Fontenot794e0852006-03-31 12:04:52 -06001008 }
1009}
1010EXPORT_SYMBOL_GPL(eeh_add_device_tree_late);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012/**
Thadeu Lima de Souza Cascardo6a040ce2012-12-28 09:13:19 +00001013 * eeh_add_sysfs_files - Add EEH sysfs files for the indicated PCI bus
1014 * @bus: PCI bus
1015 *
1016 * This routine must be used to add EEH sysfs files for PCI
1017 * devices which are attached to the indicated PCI bus. The PCI bus
1018 * is added after system boot through hotplug or dlpar.
1019 */
1020void eeh_add_sysfs_files(struct pci_bus *bus)
1021{
1022 struct pci_dev *dev;
1023
1024 list_for_each_entry(dev, &bus->devices, bus_list) {
1025 eeh_sysfs_add_device(dev);
1026 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
1027 struct pci_bus *subbus = dev->subordinate;
1028 if (subbus)
1029 eeh_add_sysfs_files(subbus);
1030 }
1031 }
1032}
1033EXPORT_SYMBOL_GPL(eeh_add_sysfs_files);
1034
1035/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +00001036 * eeh_remove_device - Undo EEH setup for the indicated pci device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 * @dev: pci device to be removed
1038 *
Nathan Fontenot794e0852006-03-31 12:04:52 -06001039 * This routine should be called when a device is removed from
1040 * a running system (e.g. by hotplug or dlpar). It unregisters
1041 * the PCI device from the EEH subsystem. I/O errors affecting
1042 * this device will no longer be detected after this call; thus,
1043 * i/o errors affecting this slot may leave this device unusable.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 */
Gavin Shan807a8272013-07-24 10:24:55 +08001045void eeh_remove_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046{
Gavin Shanf631acd2012-02-27 20:04:07 +00001047 struct eeh_dev *edev;
1048
Gavin Shan2ec5a0a2014-02-12 15:24:55 +08001049 if (!dev || !eeh_enabled())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 return;
Gavin Shanf631acd2012-02-27 20:04:07 +00001051 edev = pci_dev_to_eeh_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 /* Unregister the device with the EEH/PCI address search system */
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001054 pr_debug("EEH: Removing device %s\n", pci_name(dev));
Linas Vepstas56b0fca2005-11-03 18:48:45 -06001055
Gavin Shanf5c57712013-07-24 10:24:58 +08001056 if (!edev || !edev->pdev || !edev->pe) {
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001057 pr_debug("EEH: Not referenced !\n");
1058 return;
Linas Vepstasb055a9e2006-04-06 15:41:41 -05001059 }
Gavin Shanf5c57712013-07-24 10:24:58 +08001060
1061 /*
1062 * During the hotplug for EEH error recovery, we need the EEH
1063 * device attached to the parent PE in order for BAR restore
1064 * a bit later. So we keep it for BAR restore and remove it
1065 * from the parent PE during the BAR resotre.
1066 */
Gavin Shanf631acd2012-02-27 20:04:07 +00001067 edev->pdev = NULL;
1068 dev->dev.archdata.edev = NULL;
Gavin Shanf5c57712013-07-24 10:24:58 +08001069 if (!(edev->pe->state & EEH_PE_KEEP))
1070 eeh_rmv_from_parent_pe(edev);
1071 else
1072 edev->mode |= EEH_DEV_DISCONNECTED;
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001073
Gavin Shanf26c7a02014-01-12 14:13:45 +08001074 /*
1075 * We're removing from the PCI subsystem, that means
1076 * the PCI device driver can't support EEH or not
1077 * well. So we rely on hotplug completely to do recovery
1078 * for the specific PCI device.
1079 */
1080 edev->mode |= EEH_DEV_NO_HANDLER;
1081
Gavin Shan3ab96a02012-09-07 22:44:23 +00001082 eeh_addr_cache_rmv_dev(dev);
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001083 eeh_sysfs_remove_device(dev);
Gavin Shanab55d212013-07-24 10:25:01 +08001084 edev->mode &= ~EEH_DEV_SYSFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
1087static int proc_eeh_show(struct seq_file *m, void *v)
1088{
Gavin Shan2ec5a0a2014-02-12 15:24:55 +08001089 if (!eeh_enabled()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 seq_printf(m, "EEH Subsystem is globally disabled\n");
Gavin Shane575f8d2012-02-29 15:47:45 +00001091 seq_printf(m, "eeh_total_mmio_ffs=%llu\n", eeh_stats.total_mmio_ffs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 } else {
1093 seq_printf(m, "EEH Subsystem is enabled\n");
Linas Vepstas177bc932005-11-03 18:48:52 -06001094 seq_printf(m,
Gavin Shane575f8d2012-02-29 15:47:45 +00001095 "no device=%llu\n"
1096 "no device node=%llu\n"
1097 "no config address=%llu\n"
1098 "check not wanted=%llu\n"
1099 "eeh_total_mmio_ffs=%llu\n"
1100 "eeh_false_positives=%llu\n"
1101 "eeh_slot_resets=%llu\n",
1102 eeh_stats.no_device,
1103 eeh_stats.no_dn,
1104 eeh_stats.no_cfg_addr,
1105 eeh_stats.ignored_check,
1106 eeh_stats.total_mmio_ffs,
1107 eeh_stats.false_positives,
1108 eeh_stats.slot_resets);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 }
1110
1111 return 0;
1112}
1113
1114static int proc_eeh_open(struct inode *inode, struct file *file)
1115{
1116 return single_open(file, proc_eeh_show, NULL);
1117}
1118
Arjan van de Ven5dfe4c92007-02-12 00:55:31 -08001119static const struct file_operations proc_eeh_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 .open = proc_eeh_open,
1121 .read = seq_read,
1122 .llseek = seq_lseek,
1123 .release = single_release,
1124};
1125
1126static int __init eeh_init_proc(void)
1127{
Mike Qiu144136d2013-08-06 22:25:14 -04001128 if (machine_is(pseries) || machine_is(powernv))
Thadeu Lima de Souza Cascardo8feaa432011-08-26 10:36:31 +00001129 proc_create("powerpc/eeh", 0, NULL, &proc_eeh_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 return 0;
1131}
1132__initcall(eeh_init_proc);