blob: f192d57db47d242ad7729edbc378bd52bf2e6ddd [file] [log] [blame]
Thomas Gleixner1a59d1b82019-05-27 08:55:05 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linas Vepstas3c8c90a2007-05-24 03:28:01 +10003 * Copyright IBM Corporation 2001, 2005, 2006
4 * Copyright Dave Engebretsen & Todd Inglett 2001
5 * Copyright Linas Vepstas 2005, 2006
Gavin Shancb3bc9d2012-02-27 20:03:51 +00006 * Copyright 2001-2012 IBM Corporation.
Linas Vepstas69376502005-11-03 18:47:50 -06007 *
Linas Vepstas3c8c90a2007-05-24 03:28:01 +10008 * Please address comments and feedback to Linas Vepstas <linas@austin.ibm.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Linas Vepstas6dee3fb2005-11-03 18:50:10 -060011#include <linux/delay.h>
Gavin Shancb3bc9d2012-02-27 20:03:51 +000012#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/init.h>
14#include <linux/list.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/pci.h>
Gavin Shana3032ca2014-07-15 17:00:56 +100016#include <linux/iommu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/proc_fs.h>
18#include <linux/rbtree.h>
Gavin Shan66f9af832014-02-12 15:24:56 +080019#include <linux/reboot.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/seq_file.h>
21#include <linux/spinlock.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040022#include <linux/export.h>
Stephen Rothwellacaa6172007-12-21 15:52:07 +110023#include <linux/of.h>
24
Arun Sharma600634972011-07-26 16:09:06 -070025#include <linux/atomic.h>
Michael Ellerman7644d582017-02-10 12:04:56 +110026#include <asm/debugfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <asm/eeh.h>
Linas Vepstas172ca922005-11-03 18:50:04 -060028#include <asm/eeh_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <asm/io.h>
Gavin Shan212d16c2014-06-10 11:41:56 +100030#include <asm/iommu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/machdep.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100032#include <asm/ppc-pci.h>
Linas Vepstas172ca922005-11-03 18:50:04 -060033#include <asm/rtas.h>
Aneesh Kumar K.V94171b12017-07-27 11:54:53 +053034#include <asm/pte-walk.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37/** Overview:
Russell Currey8ee26532016-02-16 23:06:05 +110038 * EEH, or "Enhanced Error Handling" is a PCI bridge technology for
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 * dealing with PCI bus errors that can't be dealt with within the
40 * usual PCI framework, except by check-stopping the CPU. Systems
41 * that are designed for high-availability/reliability cannot afford
42 * to crash due to a "mere" PCI error, thus the need for EEH.
43 * An EEH-capable bridge operates by converting a detected error
44 * into a "slot freeze", taking the PCI adapter off-line, making
45 * the slot behave, from the OS'es point of view, as if the slot
46 * were "empty": all reads return 0xff's and all writes are silently
47 * ignored. EEH slot isolation events can be triggered by parity
48 * errors on the address or data busses (e.g. during posted writes),
Linas Vepstas69376502005-11-03 18:47:50 -060049 * which in turn might be caused by low voltage on the bus, dust,
50 * vibration, humidity, radioactivity or plain-old failed hardware.
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 *
52 * Note, however, that one of the leading causes of EEH slot
53 * freeze events are buggy device drivers, buggy device microcode,
54 * or buggy device hardware. This is because any attempt by the
55 * device to bus-master data to a memory address that is not
56 * assigned to the device will trigger a slot freeze. (The idea
57 * is to prevent devices-gone-wild from corrupting system memory).
58 * Buggy hardware/drivers will have a miserable time co-existing
59 * with EEH.
60 *
61 * Ideally, a PCI device driver, when suspecting that an isolation
Lucas De Marchi25985ed2011-03-30 22:57:33 -030062 * event has occurred (e.g. by reading 0xff's), will then ask EEH
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * whether this is the case, and then take appropriate steps to
64 * reset the PCI slot, the PCI device, and then resume operations.
65 * However, until that day, the checking is done here, with the
66 * eeh_check_failure() routine embedded in the MMIO macros. If
67 * the slot is found to be isolated, an "EEH Event" is synthesized
68 * and sent out for processing.
69 */
70
Linas Vepstas5c1344e2005-11-03 18:49:31 -060071/* If a device driver keeps reading an MMIO register in an interrupt
Mike Masonf36c5222008-07-22 02:40:17 +100072 * handler after a slot isolation event, it might be broken.
73 * This sets the threshold for how many read attempts we allow
74 * before printing an error message.
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 */
Linas Vepstas2fd30be2007-03-19 14:53:22 -050076#define EEH_MAX_FAILS 2100000
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Linas Vepstas17213c32007-05-10 02:38:11 +100078/* Time to wait for a PCI slot to report status, in milliseconds */
Brian Kingfb48dc22013-11-25 16:27:54 -060079#define PCI_BUS_RESET_WAIT_MSEC (5*60*1000)
Linas Vepstas9c547762007-03-19 14:58:07 -050080
Gavin Shan8a5ad352014-04-24 18:00:17 +100081/*
82 * EEH probe mode support, which is part of the flags,
83 * is to support multiple platforms for EEH. Some platforms
84 * like pSeries do PCI emunation based on device tree.
85 * However, other platforms like powernv probe PCI devices
86 * from hardware. The flag is used to distinguish that.
87 * In addition, struct eeh_ops::probe would be invoked for
88 * particular OF node or PCI device so that the corresponding
89 * PE would be created there.
90 */
91int eeh_subsystem_flags;
92EXPORT_SYMBOL(eeh_subsystem_flags);
93
Gavin Shan1b28f172014-12-11 14:28:56 +110094/*
95 * EEH allowed maximal frozen times. If one particular PE's
96 * frozen count in last hour exceeds this limit, the PE will
97 * be forced to be offline permanently.
98 */
Oliver O'Halloran46ee7c32019-02-15 11:48:11 +110099u32 eeh_max_freezes = 5;
Gavin Shan1b28f172014-12-11 14:28:56 +1100100
Oliver O'Halloran6b493f62019-02-15 11:48:16 +1100101/*
102 * Controls whether a recovery event should be scheduled when an
103 * isolated device is discovered. This is only really useful for
104 * debugging problems with the EEH core.
105 */
106bool eeh_debugfs_no_recover;
107
Gavin Shanaa1e6372012-02-27 20:03:53 +0000108/* Platform dependent EEH operations */
109struct eeh_ops *eeh_ops = NULL;
110
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600111/* Lock to avoid races due to multiple reports of an error */
Gavin Shan49075812013-06-20 13:21:03 +0800112DEFINE_RAW_SPINLOCK(confirm_error_lock);
Gavin Shan35066c02016-09-28 14:34:54 +1000113EXPORT_SYMBOL_GPL(confirm_error_lock);
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600114
Gavin Shan212d16c2014-06-10 11:41:56 +1000115/* Lock to protect passed flags */
116static DEFINE_MUTEX(eeh_dev_mutex);
117
Linas Vepstas17213c32007-05-10 02:38:11 +1000118/* Buffer for reporting pci register dumps. Its here in BSS, and
119 * not dynamically alloced, so that it ends up in RMO where RTAS
120 * can access it.
121 */
Gavin Shanf2e0be52014-09-30 12:39:08 +1000122#define EEH_PCI_REGS_LOG_LEN 8192
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000123static unsigned char pci_regs_buf[EEH_PCI_REGS_LOG_LEN];
124
Gavin Shane575f8d2012-02-29 15:47:45 +0000125/*
126 * The struct is used to maintain the EEH global statistic
127 * information. Besides, the EEH global statistics will be
128 * exported to user space through procfs
129 */
130struct eeh_stats {
131 u64 no_device; /* PCI device not found */
132 u64 no_dn; /* OF node not found */
133 u64 no_cfg_addr; /* Config address not found */
134 u64 ignored_check; /* EEH check skipped */
135 u64 total_mmio_ffs; /* Total EEH checks */
136 u64 false_positives; /* Unnecessary EEH checks */
137 u64 slot_resets; /* PE reset */
138};
139
140static struct eeh_stats eeh_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Gavin Shan7f52a5262014-04-24 18:00:18 +1000142static int __init eeh_setup(char *str)
143{
144 if (!strcmp(str, "off"))
Gavin Shan05b17212014-07-17 14:41:38 +1000145 eeh_add_flag(EEH_FORCE_DISABLED);
Gavin Shana450e8f2014-11-22 21:58:09 +1100146 else if (!strcmp(str, "early_log"))
147 eeh_add_flag(EEH_EARLY_DUMP_LOG);
Gavin Shan7f52a5262014-04-24 18:00:18 +1000148
149 return 1;
150}
151__setup("eeh=", eeh_setup);
152
Gavin Shanf2e0be52014-09-30 12:39:08 +1000153/*
154 * This routine captures assorted PCI configuration space data
155 * for the indicated PCI device, and puts them into a buffer
156 * for RTAS error logging.
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000157 */
Gavin Shanf2e0be52014-09-30 12:39:08 +1000158static size_t eeh_dump_dev_log(struct eeh_dev *edev, char *buf, size_t len)
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000159{
Gavin Shan0bd78582015-03-17 16:15:07 +1100160 struct pci_dn *pdn = eeh_dev_to_pdn(edev);
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000161 u32 cfg;
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000162 int cap, i;
Gavin Shan0ed352d2014-07-17 14:41:40 +1000163 int n = 0, l = 0;
164 char buffer[128];
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000165
Sam Bobrofff9bc28a2018-09-12 11:23:20 +1000166 if (!pdn) {
167 pr_warn("EEH: Note: No error log for absent device.\n");
168 return 0;
169 }
170
Guilherme G. Piccoli10560b92016-07-22 14:05:29 -0300171 n += scnprintf(buf+n, len-n, "%04x:%02x:%02x.%01x\n",
Alexey Kardashevskiy69672bd2017-08-29 17:34:01 +1000172 pdn->phb->global_number, pdn->busno,
Gavin Shan0bd78582015-03-17 16:15:07 +1100173 PCI_SLOT(pdn->devfn), PCI_FUNC(pdn->devfn));
Guilherme G. Piccoli10560b92016-07-22 14:05:29 -0300174 pr_warn("EEH: of node=%04x:%02x:%02x.%01x\n",
Alexey Kardashevskiy69672bd2017-08-29 17:34:01 +1000175 pdn->phb->global_number, pdn->busno,
Gavin Shan0bd78582015-03-17 16:15:07 +1100176 PCI_SLOT(pdn->devfn), PCI_FUNC(pdn->devfn));
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000177
Gavin Shan0bd78582015-03-17 16:15:07 +1100178 eeh_ops->read_config(pdn, PCI_VENDOR_ID, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000179 n += scnprintf(buf+n, len-n, "dev/vend:%08x\n", cfg);
Gavin Shan2d86c382014-04-24 18:00:15 +1000180 pr_warn("EEH: PCI device/vendor: %08x\n", cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000181
Gavin Shan0bd78582015-03-17 16:15:07 +1100182 eeh_ops->read_config(pdn, PCI_COMMAND, 4, &cfg);
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000183 n += scnprintf(buf+n, len-n, "cmd/stat:%x\n", cfg);
Gavin Shan2d86c382014-04-24 18:00:15 +1000184 pr_warn("EEH: PCI cmd/status register: %08x\n", cfg);
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000185
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000186 /* Gather bridge-specific registers */
Gavin Shan2a18dfc2014-04-24 18:00:16 +1000187 if (edev->mode & EEH_DEV_BRIDGE) {
Gavin Shan0bd78582015-03-17 16:15:07 +1100188 eeh_ops->read_config(pdn, PCI_SEC_STATUS, 2, &cfg);
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000189 n += scnprintf(buf+n, len-n, "sec stat:%x\n", cfg);
Gavin Shan2d86c382014-04-24 18:00:15 +1000190 pr_warn("EEH: Bridge secondary status: %04x\n", cfg);
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000191
Gavin Shan0bd78582015-03-17 16:15:07 +1100192 eeh_ops->read_config(pdn, PCI_BRIDGE_CONTROL, 2, &cfg);
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000193 n += scnprintf(buf+n, len-n, "brdg ctl:%x\n", cfg);
Gavin Shan2d86c382014-04-24 18:00:15 +1000194 pr_warn("EEH: Bridge control: %04x\n", cfg);
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000195 }
196
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000197 /* Dump out the PCI-X command and status regs */
Gavin Shan2a18dfc2014-04-24 18:00:16 +1000198 cap = edev->pcix_cap;
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000199 if (cap) {
Gavin Shan0bd78582015-03-17 16:15:07 +1100200 eeh_ops->read_config(pdn, cap, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000201 n += scnprintf(buf+n, len-n, "pcix-cmd:%x\n", cfg);
Gavin Shan2d86c382014-04-24 18:00:15 +1000202 pr_warn("EEH: PCI-X cmd: %08x\n", cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000203
Gavin Shan0bd78582015-03-17 16:15:07 +1100204 eeh_ops->read_config(pdn, cap+4, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000205 n += scnprintf(buf+n, len-n, "pcix-stat:%x\n", cfg);
Gavin Shan2d86c382014-04-24 18:00:15 +1000206 pr_warn("EEH: PCI-X status: %08x\n", cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000207 }
208
Gavin Shan2a18dfc2014-04-24 18:00:16 +1000209 /* If PCI-E capable, dump PCI-E cap 10 */
210 cap = edev->pcie_cap;
211 if (cap) {
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000212 n += scnprintf(buf+n, len-n, "pci-e cap10:\n");
Gavin Shan2d86c382014-04-24 18:00:15 +1000213 pr_warn("EEH: PCI-E capabilities and status follow:\n");
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000214
215 for (i=0; i<=8; i++) {
Gavin Shan0bd78582015-03-17 16:15:07 +1100216 eeh_ops->read_config(pdn, cap+4*i, 4, &cfg);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000217 n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
Gavin Shan0ed352d2014-07-17 14:41:40 +1000218
219 if ((i % 4) == 0) {
220 if (i != 0)
221 pr_warn("%s\n", buffer);
222
223 l = scnprintf(buffer, sizeof(buffer),
224 "EEH: PCI-E %02x: %08x ",
225 4*i, cfg);
226 } else {
227 l += scnprintf(buffer+l, sizeof(buffer)-l,
228 "%08x ", cfg);
229 }
230
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000231 }
Gavin Shan0ed352d2014-07-17 14:41:40 +1000232
233 pr_warn("%s\n", buffer);
Gavin Shan2a18dfc2014-04-24 18:00:16 +1000234 }
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000235
Gavin Shan2a18dfc2014-04-24 18:00:16 +1000236 /* If AER capable, dump it */
237 cap = edev->aer_cap;
238 if (cap) {
239 n += scnprintf(buf+n, len-n, "pci-e AER:\n");
240 pr_warn("EEH: PCI-E AER capability register set follows:\n");
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000241
Gavin Shan0ed352d2014-07-17 14:41:40 +1000242 for (i=0; i<=13; i++) {
Gavin Shan0bd78582015-03-17 16:15:07 +1100243 eeh_ops->read_config(pdn, cap+4*i, 4, &cfg);
Gavin Shan2a18dfc2014-04-24 18:00:16 +1000244 n += scnprintf(buf+n, len-n, "%02x:%x\n", 4*i, cfg);
Gavin Shan0ed352d2014-07-17 14:41:40 +1000245
246 if ((i % 4) == 0) {
247 if (i != 0)
248 pr_warn("%s\n", buffer);
249
250 l = scnprintf(buffer, sizeof(buffer),
251 "EEH: PCI-E AER %02x: %08x ",
252 4*i, cfg);
253 } else {
254 l += scnprintf(buffer+l, sizeof(buffer)-l,
255 "%08x ", cfg);
256 }
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000257 }
Gavin Shan0ed352d2014-07-17 14:41:40 +1000258
259 pr_warn("%s\n", buffer);
Linas Vepstasfcf9892b2007-05-09 09:36:21 +1000260 }
Linas Vepstas0b9369f2007-07-27 08:35:40 +1000261
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000262 return n;
263}
264
Sam Bobroffd6c49322018-05-25 13:11:32 +1000265static void *eeh_dump_pe_log(struct eeh_pe *pe, void *flag)
Gavin Shanf2e0be52014-09-30 12:39:08 +1000266{
Gavin Shanf2e0be52014-09-30 12:39:08 +1000267 struct eeh_dev *edev, *tmp;
268 size_t *plen = flag;
269
270 eeh_pe_for_each_dev(pe, edev, tmp)
271 *plen += eeh_dump_dev_log(edev, pci_regs_buf + *plen,
272 EEH_PCI_REGS_LOG_LEN - *plen);
273
274 return NULL;
275}
276
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000277/**
278 * eeh_slot_error_detail - Generate combined log including driver log and error log
Gavin Shanff477962012-09-07 22:44:16 +0000279 * @pe: EEH PE
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000280 * @severity: temporary or permanent error log
281 *
282 * This routine should be called to generate the combined log, which
283 * is comprised of driver log and error log. The driver log is figured
284 * out from the config space of the corresponding PCI device, while
285 * the error log is fetched through platform dependent function call.
286 */
Gavin Shanff477962012-09-07 22:44:16 +0000287void eeh_slot_error_detail(struct eeh_pe *pe, int severity)
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000288{
289 size_t loglen = 0;
Gavin Shanff477962012-09-07 22:44:16 +0000290
Gavin Shanc35ae172013-06-27 13:46:42 +0800291 /*
292 * When the PHB is fenced or dead, it's pointless to collect
293 * the data from PCI config space because it should return
294 * 0xFF's. For ER, we still retrieve the data from the PCI
295 * config space.
Gavin Shan78954702014-04-24 18:00:14 +1000296 *
297 * For pHyp, we have to enable IO for log retrieval. Otherwise,
298 * 0xFF's is always returned from PCI config space.
Gavin Shan387bbc92017-01-06 10:39:49 +1100299 *
300 * When the @severity is EEH_LOG_PERM, the PE is going to be
301 * removed. Prior to that, the drivers for devices included in
302 * the PE will be closed. The drivers rely on working IO path
303 * to bring the devices to quiet state. Otherwise, PCI traffic
304 * from those devices after they are removed is like to cause
305 * another unexpected EEH error.
Gavin Shanc35ae172013-06-27 13:46:42 +0800306 */
Gavin Shan9e049372014-04-24 18:00:07 +1000307 if (!(pe->type & EEH_PE_PHB)) {
Gavin Shan387bbc92017-01-06 10:39:49 +1100308 if (eeh_has_flag(EEH_ENABLE_IO_FOR_LOG) ||
309 severity == EEH_LOG_PERM)
Gavin Shan78954702014-04-24 18:00:14 +1000310 eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
Gavin Shanc35ae172013-06-27 13:46:42 +0800311
Gavin Shan25980012015-08-28 11:57:00 +1000312 /*
313 * The config space of some PCI devices can't be accessed
314 * when their PEs are in frozen state. Otherwise, fenced
315 * PHB might be seen. Those PEs are identified with flag
316 * EEH_PE_CFG_RESTRICTED, indicating EEH_PE_CFG_BLOCKED
317 * is set automatically when the PE is put to EEH_PE_ISOLATED.
318 *
319 * Restoring BARs possibly triggers PCI config access in
320 * (OPAL) firmware and then causes fenced PHB. If the
321 * PCI config is blocked with flag EEH_PE_CFG_BLOCKED, it's
322 * pointless to restore BARs and dump config space.
323 */
324 eeh_ops->configure_bridge(pe);
325 if (!(pe->state & EEH_PE_CFG_BLOCKED)) {
326 eeh_pe_restore_bars(pe);
327
328 pci_regs_buf[0] = 0;
329 eeh_pe_traverse(pe, eeh_dump_pe_log, &loglen);
330 }
Gavin Shanc35ae172013-06-27 13:46:42 +0800331 }
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000332
Gavin Shanff477962012-09-07 22:44:16 +0000333 eeh_ops->get_log(pe, severity, pci_regs_buf, loglen);
Linas Vepstasd99bb1d2007-05-09 09:35:32 +1000334}
335
336/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000337 * eeh_token_to_phys - Convert EEH address token to phys address
338 * @token: I/O token, should be address in the form 0xA....
339 *
340 * This routine should be called to convert virtual I/O address
341 * to physical one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 */
343static inline unsigned long eeh_token_to_phys(unsigned long token)
344{
345 pte_t *ptep;
346 unsigned long pa;
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530347 int hugepage_shift;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530349 /*
Aneesh Kumar K.V691e95f2015-03-30 10:41:03 +0530350 * We won't find hugepages here(this is iomem). Hence we are not
351 * worried about _PAGE_SPLITTING/collapse. Also we will not hit
352 * page table free, because of init_mm.
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530353 */
Aneesh Kumar K.V94171b12017-07-27 11:54:53 +0530354 ptep = find_init_mm_pte(token, &hugepage_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 if (!ptep)
356 return token;
Aneesh Kumar K.V12bc9f62013-06-20 14:30:18 +0530357 WARN_ON(hugepage_shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 pa = pte_pfn(*ptep) << PAGE_SHIFT;
359
360 return pa | (token & (PAGE_SIZE-1));
361}
362
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800363/*
364 * On PowerNV platform, we might already have fenced PHB there.
365 * For that case, it's meaningless to recover frozen PE. Intead,
366 * We have to handle fenced PHB firstly.
367 */
368static int eeh_phb_check_failure(struct eeh_pe *pe)
369{
370 struct eeh_pe *phb_pe;
371 unsigned long flags;
372 int ret;
373
Gavin Shan05b17212014-07-17 14:41:38 +1000374 if (!eeh_has_flag(EEH_PROBE_MODE_DEV))
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800375 return -EPERM;
376
377 /* Find the PHB PE */
378 phb_pe = eeh_phb_pe_get(pe->phb);
379 if (!phb_pe) {
Russell Currey1f52f172016-11-16 14:02:15 +1100380 pr_warn("%s Can't find PE for PHB#%x\n",
Gavin Shan0dae2742014-07-17 14:41:41 +1000381 __func__, pe->phb->global_number);
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800382 return -EEXIST;
383 }
384
385 /* If the PHB has been in problematic state */
386 eeh_serialize_lock(&flags);
Gavin Shan9e049372014-04-24 18:00:07 +1000387 if (phb_pe->state & EEH_PE_ISOLATED) {
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800388 ret = 0;
389 goto out;
390 }
391
392 /* Check PHB state */
393 ret = eeh_ops->get_state(phb_pe, NULL);
394 if ((ret < 0) ||
Sam Bobroff34a286a2018-03-19 13:49:23 +1100395 (ret == EEH_STATE_NOT_SUPPORT) || eeh_state_active(ret)) {
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800396 ret = 0;
397 goto out;
398 }
399
400 /* Isolate the PHB and send event */
Sam Bobroffe762bb82018-09-12 11:23:31 +1000401 eeh_pe_mark_isolated(phb_pe);
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800402 eeh_serialize_unlock(flags);
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800403
Gavin Shan357b2f32014-06-11 18:26:44 +1000404 pr_err("EEH: PHB#%x failure detected, location: %s\n",
405 phb_pe->phb->global_number, eeh_pe_loc_get(phb_pe));
Gavin Shan56ca4fd2013-06-27 13:46:46 +0800406 dump_stack();
Gavin Shan5293bf92013-09-06 09:00:05 +0800407 eeh_send_failure_event(phb_pe);
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800408
409 return 1;
410out:
411 eeh_serialize_unlock(flags);
412 return ret;
413}
414
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000415/**
Gavin Shanf8f7d632012-09-07 22:44:22 +0000416 * eeh_dev_check_failure - Check if all 1's data is due to EEH slot freeze
417 * @edev: eeh device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 *
419 * Check for an EEH failure for the given device node. Call this
420 * routine if the result of a read was all 0xff's and you want to
421 * find out if this is due to an EEH slot freeze. This routine
422 * will query firmware for the EEH status.
423 *
424 * Returns 0 if there has not been an EEH error; otherwise returns
Linas Vepstas69376502005-11-03 18:47:50 -0600425 * a non-zero value and queues up a slot isolation event notification.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 *
427 * It is safe to call this routine in an interrupt context.
428 */
Gavin Shanf8f7d632012-09-07 22:44:22 +0000429int eeh_dev_check_failure(struct eeh_dev *edev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
431 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 unsigned long flags;
Alexey Kardashevskiy14db3d52017-08-29 17:34:03 +1000433 struct device_node *dn;
Gavin Shanf8f7d632012-09-07 22:44:22 +0000434 struct pci_dev *dev;
Gavin Shan357b2f32014-06-11 18:26:44 +1000435 struct eeh_pe *pe, *parent_pe, *phb_pe;
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600436 int rc = 0;
Gavin Shanc6406d82015-03-17 16:15:08 +1100437 const char *location = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Gavin Shane575f8d2012-02-29 15:47:45 +0000439 eeh_stats.total_mmio_ffs++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Gavin Shan2ec5a0a2014-02-12 15:24:55 +0800441 if (!eeh_enabled())
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 return 0;
443
Gavin Shanf8f7d632012-09-07 22:44:22 +0000444 if (!edev) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000445 eeh_stats.no_dn++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 return 0;
Linas Vepstas177bc932005-11-03 18:48:52 -0600447 }
Gavin Shanf8f7d632012-09-07 22:44:22 +0000448 dev = eeh_dev_to_pci_dev(edev);
Wei Yang2a582222014-09-17 10:48:26 +0800449 pe = eeh_dev_to_pe(edev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
451 /* Access to IO BARs might get this far and still not want checking. */
Gavin Shan66523d92012-09-07 22:44:13 +0000452 if (!pe) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000453 eeh_stats.ignored_check++;
Gavin Shanc6406d82015-03-17 16:15:08 +1100454 pr_debug("EEH: Ignored check for %s\n",
455 eeh_pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return 0;
457 }
458
Gavin Shan66523d92012-09-07 22:44:13 +0000459 if (!pe->addr && !pe->config_addr) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000460 eeh_stats.no_cfg_addr++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return 0;
462 }
463
Gavin Shanb95cd2c2013-06-20 13:21:16 +0800464 /*
465 * On PowerNV platform, we might already have fenced PHB
466 * there and we need take care of that firstly.
467 */
468 ret = eeh_phb_check_failure(pe);
469 if (ret > 0)
470 return ret;
471
Gavin Shan05ec4242014-06-10 11:41:55 +1000472 /*
473 * If the PE isn't owned by us, we shouldn't check the
474 * state. Instead, let the owner handle it if the PE has
475 * been frozen.
476 */
477 if (eeh_pe_passed(pe))
478 return 0;
479
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600480 /* If we already have a pending isolation event for this
481 * slot, we know it's bad already, we don't need to check.
482 * Do this checking under a lock; as multiple PCI devices
483 * in one slot might report errors simultaneously, and we
484 * only want one error recovery routine running.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 */
Gavin Shan49075812013-06-20 13:21:03 +0800486 eeh_serialize_lock(&flags);
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600487 rc = 1;
Gavin Shan66523d92012-09-07 22:44:13 +0000488 if (pe->state & EEH_PE_ISOLATED) {
489 pe->check_count++;
490 if (pe->check_count % EEH_MAX_FAILS == 0) {
Alexey Kardashevskiy14db3d52017-08-29 17:34:03 +1000491 dn = pci_device_to_OF_node(dev);
492 if (dn)
493 location = of_get_property(dn, "ibm,loc-code",
494 NULL);
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000495 printk(KERN_ERR "EEH: %d reads ignored for recovering device at "
Mike Masonf36c5222008-07-22 02:40:17 +1000496 "location=%s driver=%s pci addr=%s\n",
Gavin Shanc6406d82015-03-17 16:15:08 +1100497 pe->check_count,
498 location ? location : "unknown",
Thadeu Lima de Souza Cascardo778a7852012-01-11 09:09:58 +0000499 eeh_driver_name(dev), eeh_pci_name(dev));
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000500 printk(KERN_ERR "EEH: Might be infinite loop in %s driver\n",
Thadeu Lima de Souza Cascardo778a7852012-01-11 09:09:58 +0000501 eeh_driver_name(dev));
Linas Vepstas5c1344e2005-11-03 18:49:31 -0600502 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600504 goto dn_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 }
506
507 /*
508 * Now test for an EEH failure. This is VERY expensive.
509 * Note that the eeh_config_addr may be a parent device
510 * in the case of a device behind a bridge, or it may be
511 * function zero of a multi-function device.
512 * In any case they must share a common PHB.
513 */
Gavin Shan66523d92012-09-07 22:44:13 +0000514 ret = eeh_ops->get_state(pe, NULL);
Linas Vepstas76e6faf2005-11-03 18:49:15 -0600515
Linas Vepstas39d16e22007-03-19 14:51:00 -0500516 /* Note that config-io to empty slots may fail;
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000517 * they are empty when they don't have children.
Gavin Shaneb594a42012-02-27 20:03:57 +0000518 * We will punt with the following conditions: Failure to get
519 * PE's state, EEH not support and Permanently unavailable
520 * state, PE is in good state.
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000521 */
Gavin Shaneb594a42012-02-27 20:03:57 +0000522 if ((ret < 0) ||
Sam Bobroff34a286a2018-03-19 13:49:23 +1100523 (ret == EEH_STATE_NOT_SUPPORT) || eeh_state_active(ret)) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000524 eeh_stats.false_positives++;
Gavin Shan66523d92012-09-07 22:44:13 +0000525 pe->false_positives++;
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600526 rc = 0;
527 goto dn_unlock;
Linas Vepstas76e6faf2005-11-03 18:49:15 -0600528 }
529
Gavin Shan1ad7a722014-05-05 09:29:03 +1000530 /*
531 * It should be corner case that the parent PE has been
532 * put into frozen state as well. We should take care
533 * that at first.
534 */
535 parent_pe = pe->parent;
536 while (parent_pe) {
537 /* Hit the ceiling ? */
538 if (parent_pe->type & EEH_PE_PHB)
539 break;
540
541 /* Frozen parent PE ? */
542 ret = eeh_ops->get_state(parent_pe, NULL);
Sam Bobroff2eae39f2018-05-25 13:11:33 +1000543 if (ret > 0 && !eeh_state_active(ret)) {
Gavin Shan1ad7a722014-05-05 09:29:03 +1000544 pe = parent_pe;
Sam Bobroff2eae39f2018-05-25 13:11:33 +1000545 pr_err("EEH: Failure of PHB#%x-PE#%x will be handled at parent PHB#%x-PE#%x.\n",
546 pe->phb->global_number, pe->addr,
547 pe->phb->global_number, parent_pe->addr);
548 }
Gavin Shan1ad7a722014-05-05 09:29:03 +1000549
550 /* Next parent level */
551 parent_pe = parent_pe->parent;
552 }
553
Gavin Shane575f8d2012-02-29 15:47:45 +0000554 eeh_stats.slot_resets++;
Gavin Shana84f2732013-06-20 13:20:51 +0800555
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600556 /* Avoid repeated reports of this failure, including problems
557 * with other functions on this device, and functions under
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000558 * bridges.
559 */
Sam Bobroffe762bb82018-09-12 11:23:31 +1000560 eeh_pe_mark_isolated(pe);
Gavin Shan49075812013-06-20 13:21:03 +0800561 eeh_serialize_unlock(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 /* Most EEH events are due to device driver bugs. Having
564 * a stack trace will help the device-driver authors figure
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000565 * out what happened. So print that out.
566 */
Gavin Shan357b2f32014-06-11 18:26:44 +1000567 phb_pe = eeh_phb_pe_get(pe->phb);
568 pr_err("EEH: Frozen PHB#%x-PE#%x detected\n",
569 pe->phb->global_number, pe->addr);
570 pr_err("EEH: PE location: %s, PHB location: %s\n",
571 eeh_pe_loc_get(pe), eeh_pe_loc_get(phb_pe));
Gavin Shan56ca4fd2013-06-27 13:46:46 +0800572 dump_stack();
573
Gavin Shan5293bf92013-09-06 09:00:05 +0800574 eeh_send_failure_event(pe);
575
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600576 return 1;
577
578dn_unlock:
Gavin Shan49075812013-06-20 13:21:03 +0800579 eeh_serialize_unlock(flags);
Linas Vepstasfd761fd2005-11-03 18:49:23 -0600580 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581}
582
Gavin Shanf8f7d632012-09-07 22:44:22 +0000583EXPORT_SYMBOL_GPL(eeh_dev_check_failure);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000586 * eeh_check_failure - Check if all 1's data is due to EEH slot freeze
Gavin Shan3e938052014-09-30 12:38:50 +1000587 * @token: I/O address
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 *
Gavin Shan3e938052014-09-30 12:38:50 +1000589 * Check for an EEH failure at the given I/O address. Call this
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 * routine if the result of a read was all 0xff's and you want to
Gavin Shan3e938052014-09-30 12:38:50 +1000591 * find out if this is due to an EEH slot freeze event. This routine
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 * will query firmware for the EEH status.
593 *
594 * Note this routine is safe to call in an interrupt context.
595 */
Gavin Shan3e938052014-09-30 12:38:50 +1000596int eeh_check_failure(const volatile void __iomem *token)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598 unsigned long addr;
Gavin Shanf8f7d632012-09-07 22:44:22 +0000599 struct eeh_dev *edev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 /* Finding the phys addr + pci device; this is pretty quick. */
602 addr = eeh_token_to_phys((unsigned long __force) token);
Gavin Shan3ab96a02012-09-07 22:44:23 +0000603 edev = eeh_addr_cache_get_dev(addr);
Gavin Shanf8f7d632012-09-07 22:44:22 +0000604 if (!edev) {
Gavin Shane575f8d2012-02-29 15:47:45 +0000605 eeh_stats.no_device++;
Gavin Shan3e938052014-09-30 12:38:50 +1000606 return 0;
Linas Vepstas177bc932005-11-03 18:48:52 -0600607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
Gavin Shan3e938052014-09-30 12:38:50 +1000609 return eeh_dev_check_failure(edev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611EXPORT_SYMBOL(eeh_check_failure);
612
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600613
Linas Vepstascb5b56242006-09-15 18:56:35 -0500614/**
Gavin Shancce4b2d2012-02-27 20:03:52 +0000615 * eeh_pci_enable - Enable MMIO or DMA transfers for this slot
Gavin Shanff477962012-09-07 22:44:16 +0000616 * @pe: EEH PE
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000617 *
618 * This routine should be called to reenable frozen MMIO or DMA
619 * so that it would work correctly again. It's useful while doing
620 * recovery or log collection on the indicated device.
Linas Vepstas47b5c832006-09-15 18:57:42 -0500621 */
Gavin Shanff477962012-09-07 22:44:16 +0000622int eeh_pci_enable(struct eeh_pe *pe, int function)
Linas Vepstas47b5c832006-09-15 18:57:42 -0500623{
Gavin Shan4d4f5772014-09-30 12:39:00 +1000624 int active_flag, rc;
Gavin Shan78954702014-04-24 18:00:14 +1000625
626 /*
627 * pHyp doesn't allow to enable IO or DMA on unfrozen PE.
628 * Also, it's pointless to enable them on unfrozen PE. So
Gavin Shan4d4f5772014-09-30 12:39:00 +1000629 * we have to check before enabling IO or DMA.
Gavin Shan78954702014-04-24 18:00:14 +1000630 */
Gavin Shan4d4f5772014-09-30 12:39:00 +1000631 switch (function) {
632 case EEH_OPT_THAW_MMIO:
Gavin Shan872ee2d2015-10-08 14:58:55 +1100633 active_flag = EEH_STATE_MMIO_ACTIVE | EEH_STATE_MMIO_ENABLED;
Gavin Shan4d4f5772014-09-30 12:39:00 +1000634 break;
635 case EEH_OPT_THAW_DMA:
636 active_flag = EEH_STATE_DMA_ACTIVE;
637 break;
638 case EEH_OPT_DISABLE:
639 case EEH_OPT_ENABLE:
640 case EEH_OPT_FREEZE_PE:
641 active_flag = 0;
642 break;
643 default:
644 pr_warn("%s: Invalid function %d\n",
645 __func__, function);
646 return -EINVAL;
647 }
648
649 /*
650 * Check if IO or DMA has been enabled before
651 * enabling them.
652 */
653 if (active_flag) {
Gavin Shan78954702014-04-24 18:00:14 +1000654 rc = eeh_ops->get_state(pe, NULL);
655 if (rc < 0)
656 return rc;
657
Gavin Shan4d4f5772014-09-30 12:39:00 +1000658 /* Needn't enable it at all */
659 if (rc == EEH_STATE_NOT_SUPPORT)
660 return 0;
661
662 /* It's already enabled */
663 if (rc & active_flag)
Gavin Shan78954702014-04-24 18:00:14 +1000664 return 0;
665 }
Linas Vepstas47b5c832006-09-15 18:57:42 -0500666
Gavin Shan4d4f5772014-09-30 12:39:00 +1000667
668 /* Issue the request */
Gavin Shanff477962012-09-07 22:44:16 +0000669 rc = eeh_ops->set_option(pe, function);
Linas Vepstas47b5c832006-09-15 18:57:42 -0500670 if (rc)
Gavin Shan78954702014-04-24 18:00:14 +1000671 pr_warn("%s: Unexpected state change %d on "
Russell Currey1f52f172016-11-16 14:02:15 +1100672 "PHB#%x-PE#%x, err=%d\n",
Gavin Shan78954702014-04-24 18:00:14 +1000673 __func__, function, pe->phb->global_number,
674 pe->addr, rc);
Linas Vepstas47b5c832006-09-15 18:57:42 -0500675
Gavin Shan4d4f5772014-09-30 12:39:00 +1000676 /* Check if the request is finished successfully */
677 if (active_flag) {
Sam Bobrofffef7f902018-09-12 11:23:32 +1000678 rc = eeh_wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
Andrew Donnellan949e9b82015-10-23 17:19:46 +1100679 if (rc < 0)
Gavin Shan4d4f5772014-09-30 12:39:00 +1000680 return rc;
Gavin Shan78954702014-04-24 18:00:14 +1000681
Gavin Shan4d4f5772014-09-30 12:39:00 +1000682 if (rc & active_flag)
683 return 0;
Gavin Shan78954702014-04-24 18:00:14 +1000684
Gavin Shan4d4f5772014-09-30 12:39:00 +1000685 return -EIO;
686 }
Linas Vepstasfa1be472007-03-19 14:59:59 -0500687
Linas Vepstas47b5c832006-09-15 18:57:42 -0500688 return rc;
689}
690
Sam Bobroffd6c49322018-05-25 13:11:32 +1000691static void *eeh_disable_and_save_dev_state(struct eeh_dev *edev,
692 void *userdata)
Gavin Shan28158cd2015-02-11 10:20:49 +1100693{
Gavin Shan28158cd2015-02-11 10:20:49 +1100694 struct pci_dev *pdev = eeh_dev_to_pci_dev(edev);
695 struct pci_dev *dev = userdata;
696
697 /*
698 * The caller should have disabled and saved the
699 * state for the specified device
700 */
701 if (!pdev || pdev == dev)
702 return NULL;
703
704 /* Ensure we have D0 power state */
705 pci_set_power_state(pdev, PCI_D0);
706
707 /* Save device state */
708 pci_save_state(pdev);
709
710 /*
711 * Disable device to avoid any DMA traffic and
712 * interrupt from the device
713 */
714 pci_write_config_word(pdev, PCI_COMMAND, PCI_COMMAND_INTX_DISABLE);
715
716 return NULL;
717}
718
Sam Bobroffd6c49322018-05-25 13:11:32 +1000719static void *eeh_restore_dev_state(struct eeh_dev *edev, void *userdata)
Gavin Shan28158cd2015-02-11 10:20:49 +1100720{
Gavin Shan0bd78582015-03-17 16:15:07 +1100721 struct pci_dn *pdn = eeh_dev_to_pdn(edev);
Gavin Shan28158cd2015-02-11 10:20:49 +1100722 struct pci_dev *pdev = eeh_dev_to_pci_dev(edev);
723 struct pci_dev *dev = userdata;
724
725 if (!pdev)
726 return NULL;
727
728 /* Apply customization from firmware */
Gavin Shan0bd78582015-03-17 16:15:07 +1100729 if (pdn && eeh_ops->restore_config)
730 eeh_ops->restore_config(pdn);
Gavin Shan28158cd2015-02-11 10:20:49 +1100731
732 /* The caller should restore state for the specified device */
733 if (pdev != dev)
David Gibson502f1592015-06-03 14:52:59 +1000734 pci_restore_state(pdev);
Gavin Shan28158cd2015-02-11 10:20:49 +1100735
736 return NULL;
737}
738
Bryant G. Ly64ba3dc72018-01-05 10:45:46 -0600739int eeh_restore_vf_config(struct pci_dn *pdn)
740{
741 struct eeh_dev *edev = pdn_to_eeh_dev(pdn);
742 u32 devctl, cmd, cap2, aer_capctl;
743 int old_mps;
744
745 if (edev->pcie_cap) {
746 /* Restore MPS */
747 old_mps = (ffs(pdn->mps) - 8) << 5;
748 eeh_ops->read_config(pdn, edev->pcie_cap + PCI_EXP_DEVCTL,
749 2, &devctl);
750 devctl &= ~PCI_EXP_DEVCTL_PAYLOAD;
751 devctl |= old_mps;
752 eeh_ops->write_config(pdn, edev->pcie_cap + PCI_EXP_DEVCTL,
753 2, devctl);
754
Linus Torvalds105cf3c2018-02-06 09:59:40 -0800755 /* Disable Completion Timeout if possible */
Bryant G. Ly64ba3dc72018-01-05 10:45:46 -0600756 eeh_ops->read_config(pdn, edev->pcie_cap + PCI_EXP_DEVCAP2,
757 4, &cap2);
Linus Torvalds105cf3c2018-02-06 09:59:40 -0800758 if (cap2 & PCI_EXP_DEVCAP2_COMP_TMOUT_DIS) {
Bryant G. Ly64ba3dc72018-01-05 10:45:46 -0600759 eeh_ops->read_config(pdn,
760 edev->pcie_cap + PCI_EXP_DEVCTL2,
761 4, &cap2);
Linus Torvalds105cf3c2018-02-06 09:59:40 -0800762 cap2 |= PCI_EXP_DEVCTL2_COMP_TMOUT_DIS;
Bryant G. Ly64ba3dc72018-01-05 10:45:46 -0600763 eeh_ops->write_config(pdn,
764 edev->pcie_cap + PCI_EXP_DEVCTL2,
765 4, cap2);
766 }
767 }
768
769 /* Enable SERR and parity checking */
770 eeh_ops->read_config(pdn, PCI_COMMAND, 2, &cmd);
771 cmd |= (PCI_COMMAND_PARITY | PCI_COMMAND_SERR);
772 eeh_ops->write_config(pdn, PCI_COMMAND, 2, cmd);
773
774 /* Enable report various errors */
775 if (edev->pcie_cap) {
776 eeh_ops->read_config(pdn, edev->pcie_cap + PCI_EXP_DEVCTL,
777 2, &devctl);
778 devctl &= ~PCI_EXP_DEVCTL_CERE;
779 devctl |= (PCI_EXP_DEVCTL_NFERE |
780 PCI_EXP_DEVCTL_FERE |
781 PCI_EXP_DEVCTL_URRE);
782 eeh_ops->write_config(pdn, edev->pcie_cap + PCI_EXP_DEVCTL,
783 2, devctl);
784 }
785
786 /* Enable ECRC generation and check */
787 if (edev->pcie_cap && edev->aer_cap) {
788 eeh_ops->read_config(pdn, edev->aer_cap + PCI_ERR_CAP,
789 4, &aer_capctl);
790 aer_capctl |= (PCI_ERR_CAP_ECRC_GENE | PCI_ERR_CAP_ECRC_CHKE);
791 eeh_ops->write_config(pdn, edev->aer_cap + PCI_ERR_CAP,
792 4, aer_capctl);
793 }
794
795 return 0;
796}
797
Linas Vepstas47b5c832006-09-15 18:57:42 -0500798/**
Andrew Donnellan31f6a4a2016-02-08 14:39:19 +1100799 * pcibios_set_pcie_reset_state - Set PCI-E reset state
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000800 * @dev: pci device struct
801 * @state: reset state to enter
Brian King00c2ae32007-05-08 08:04:05 +1000802 *
803 * Return value:
804 * 0 if success
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000805 */
Brian King00c2ae32007-05-08 08:04:05 +1000806int pcibios_set_pcie_reset_state(struct pci_dev *dev, enum pcie_reset_state state)
807{
Gavin Shanc270a242012-09-07 22:44:17 +0000808 struct eeh_dev *edev = pci_dev_to_eeh_dev(dev);
Wei Yang2a582222014-09-17 10:48:26 +0800809 struct eeh_pe *pe = eeh_dev_to_pe(edev);
Gavin Shanc270a242012-09-07 22:44:17 +0000810
811 if (!pe) {
812 pr_err("%s: No PE found on PCI device %s\n",
813 __func__, pci_name(dev));
814 return -EINVAL;
815 }
Brian King00c2ae32007-05-08 08:04:05 +1000816
817 switch (state) {
818 case pcie_deassert_reset:
Gavin Shanc270a242012-09-07 22:44:17 +0000819 eeh_ops->reset(pe, EEH_RESET_DEACTIVATE);
Sam Bobroff188fdea2018-11-29 14:16:38 +1100820 eeh_unfreeze_pe(pe);
Wei Yang9312bc52016-03-04 10:53:09 +1100821 if (!(pe->type & EEH_PE_VF))
Sam Bobroff9ed5ca62018-11-29 14:16:39 +1100822 eeh_pe_state_clear(pe, EEH_PE_CFG_BLOCKED, true);
Gavin Shan28158cd2015-02-11 10:20:49 +1100823 eeh_pe_dev_traverse(pe, eeh_restore_dev_state, dev);
Sam Bobroff9ed5ca62018-11-29 14:16:39 +1100824 eeh_pe_state_clear(pe, EEH_PE_ISOLATED, true);
Brian King00c2ae32007-05-08 08:04:05 +1000825 break;
826 case pcie_hot_reset:
Sam Bobroffe762bb82018-09-12 11:23:31 +1000827 eeh_pe_mark_isolated(pe);
Sam Bobroff9ed5ca62018-11-29 14:16:39 +1100828 eeh_pe_state_clear(pe, EEH_PE_CFG_BLOCKED, true);
Gavin Shan28158cd2015-02-11 10:20:49 +1100829 eeh_ops->set_option(pe, EEH_OPT_FREEZE_PE);
830 eeh_pe_dev_traverse(pe, eeh_disable_and_save_dev_state, dev);
Wei Yang9312bc52016-03-04 10:53:09 +1100831 if (!(pe->type & EEH_PE_VF))
832 eeh_pe_state_mark(pe, EEH_PE_CFG_BLOCKED);
Gavin Shanc270a242012-09-07 22:44:17 +0000833 eeh_ops->reset(pe, EEH_RESET_HOT);
Brian King00c2ae32007-05-08 08:04:05 +1000834 break;
835 case pcie_warm_reset:
Sam Bobroffe762bb82018-09-12 11:23:31 +1000836 eeh_pe_mark_isolated(pe);
Sam Bobroff9ed5ca62018-11-29 14:16:39 +1100837 eeh_pe_state_clear(pe, EEH_PE_CFG_BLOCKED, true);
Gavin Shan28158cd2015-02-11 10:20:49 +1100838 eeh_ops->set_option(pe, EEH_OPT_FREEZE_PE);
839 eeh_pe_dev_traverse(pe, eeh_disable_and_save_dev_state, dev);
Wei Yang9312bc52016-03-04 10:53:09 +1100840 if (!(pe->type & EEH_PE_VF))
841 eeh_pe_state_mark(pe, EEH_PE_CFG_BLOCKED);
Gavin Shanc270a242012-09-07 22:44:17 +0000842 eeh_ops->reset(pe, EEH_RESET_FUNDAMENTAL);
Brian King00c2ae32007-05-08 08:04:05 +1000843 break;
844 default:
Sam Bobroff9ed5ca62018-11-29 14:16:39 +1100845 eeh_pe_state_clear(pe, EEH_PE_ISOLATED | EEH_PE_CFG_BLOCKED, true);
Brian King00c2ae32007-05-08 08:04:05 +1000846 return -EINVAL;
847 };
848
849 return 0;
850}
851
852/**
Gavin Shanc270a242012-09-07 22:44:17 +0000853 * eeh_set_pe_freset - Check the required reset for the indicated device
854 * @data: EEH device
855 * @flag: return value
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000856 *
857 * Each device might have its preferred reset type: fundamental or
858 * hot reset. The routine is used to collected the information for
859 * the indicated device and its children so that the bunch of the
860 * devices could be reset properly.
861 */
Sam Bobroffd6c49322018-05-25 13:11:32 +1000862static void *eeh_set_dev_freset(struct eeh_dev *edev, void *flag)
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000863{
864 struct pci_dev *dev;
Gavin Shanc270a242012-09-07 22:44:17 +0000865 unsigned int *freset = (unsigned int *)flag;
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000866
Gavin Shanc270a242012-09-07 22:44:17 +0000867 dev = eeh_dev_to_pci_dev(edev);
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000868 if (dev)
869 *freset |= dev->needs_freset;
870
Gavin Shanc270a242012-09-07 22:44:17 +0000871 return NULL;
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000872}
873
Sam Bobroff1ef52072018-11-29 14:16:41 +1100874static void eeh_pe_refreeze_passed(struct eeh_pe *root)
875{
876 struct eeh_pe *pe;
877 int state;
878
879 eeh_for_each_pe(root, pe) {
880 if (eeh_pe_passed(pe)) {
881 state = eeh_ops->get_state(pe, NULL);
882 if (state &
883 (EEH_STATE_MMIO_ACTIVE | EEH_STATE_MMIO_ENABLED)) {
884 pr_info("EEH: Passed-through PE PHB#%x-PE#%x was thawed by reset, re-freezing for safety.\n",
885 pe->phb->global_number, pe->addr);
886 eeh_pe_set_option(pe, EEH_OPT_FREEZE_PE);
887 }
888 }
889 }
890}
891
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000892/**
Russell Currey6654c932016-11-17 16:07:47 +1100893 * eeh_pe_reset_full - Complete a full reset process on the indicated PE
Gavin Shanc270a242012-09-07 22:44:17 +0000894 * @pe: EEH PE
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000895 *
Russell Currey6654c932016-11-17 16:07:47 +1100896 * This function executes a full reset procedure on a PE, including setting
897 * the appropriate flags, performing a fundamental or hot reset, and then
898 * deactivating the reset status. It is designed to be used within the EEH
899 * subsystem, as opposed to eeh_pe_reset which is exported to drivers and
900 * only performs a single operation at a time.
901 *
902 * This function will attempt to reset a PE three times before failing.
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000903 */
Sam Bobroff1ef52072018-11-29 14:16:41 +1100904int eeh_pe_reset_full(struct eeh_pe *pe, bool include_passed)
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600905{
Russell Currey6654c932016-11-17 16:07:47 +1100906 int reset_state = (EEH_PE_RESET | EEH_PE_CFG_BLOCKED);
907 int type = EEH_RESET_HOT;
Richard A Lary308fc4f2011-04-22 09:59:47 +0000908 unsigned int freset = 0;
Sam Bobroff195482c2018-11-29 14:16:42 +1100909 int i, state = 0, ret;
Mike Mason6e193142009-07-30 15:42:39 -0700910
Russell Currey6654c932016-11-17 16:07:47 +1100911 /*
912 * Determine the type of reset to perform - hot or fundamental.
913 * Hot reset is the default operation, unless any device under the
914 * PE requires a fundamental reset.
Gavin Shana84f2732013-06-20 13:20:51 +0800915 */
Gavin Shanc270a242012-09-07 22:44:17 +0000916 eeh_pe_dev_traverse(pe, eeh_set_dev_freset, &freset);
Richard A Lary308fc4f2011-04-22 09:59:47 +0000917
918 if (freset)
Russell Currey6654c932016-11-17 16:07:47 +1100919 type = EEH_RESET_FUNDAMENTAL;
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600920
Russell Currey6654c932016-11-17 16:07:47 +1100921 /* Mark the PE as in reset state and block config space accesses */
922 eeh_pe_state_mark(pe, reset_state);
Linas Vepstase1029262006-09-21 18:25:56 -0500923
Russell Currey6654c932016-11-17 16:07:47 +1100924 /* Make three attempts at resetting the bus */
Gavin Shanb85743e2014-11-14 10:47:28 +1100925 for (i = 0; i < 3; i++) {
Sam Bobroff1ef52072018-11-29 14:16:41 +1100926 ret = eeh_pe_reset(pe, type, include_passed);
Sam Bobroff195482c2018-11-29 14:16:42 +1100927 if (!ret)
928 ret = eeh_pe_reset(pe, EEH_RESET_DEACTIVATE,
929 include_passed);
930 if (ret) {
931 ret = -EIO;
932 pr_warn("EEH: Failure %d resetting PHB#%x-PE#%x (attempt %d)\n\n",
933 state, pe->phb->global_number, pe->addr, i + 1);
934 continue;
935 }
936 if (i)
937 pr_warn("EEH: PHB#%x-PE#%x: Successful reset (attempt %d)\n",
938 pe->phb->global_number, pe->addr, i + 1);
Russell Currey6654c932016-11-17 16:07:47 +1100939
940 /* Wait until the PE is in a functioning state */
Sam Bobrofffef7f902018-09-12 11:23:32 +1000941 state = eeh_wait_state(pe, PCI_BUS_RESET_WAIT_MSEC);
Gavin Shanb85743e2014-11-14 10:47:28 +1100942 if (state < 0) {
Sam Bobroff195482c2018-11-29 14:16:42 +1100943 pr_warn("EEH: Unrecoverable slot failure on PHB#%x-PE#%x",
944 pe->phb->global_number, pe->addr);
Gavin Shanb85743e2014-11-14 10:47:28 +1100945 ret = -ENOTRECOVERABLE;
Russell Currey6654c932016-11-17 16:07:47 +1100946 break;
Gavin Shanb85743e2014-11-14 10:47:28 +1100947 }
Sam Bobrofffef7f902018-09-12 11:23:32 +1000948 if (eeh_state_active(state))
949 break;
Sam Bobroff195482c2018-11-29 14:16:42 +1100950 else
951 pr_warn("EEH: PHB#%x-PE#%x: Slot inactive after reset: 0x%x (attempt %d)\n",
952 pe->phb->global_number, pe->addr, state, i + 1);
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600953 }
Linas Vepstasb6495c02005-11-03 18:54:54 -0600954
Sam Bobroff1ef52072018-11-29 14:16:41 +1100955 /* Resetting the PE may have unfrozen child PEs. If those PEs have been
956 * (potentially) passed through to a guest, re-freeze them:
957 */
958 if (!include_passed)
959 eeh_pe_refreeze_passed(pe);
960
Sam Bobroff9ed5ca62018-11-29 14:16:39 +1100961 eeh_pe_state_clear(pe, reset_state, true);
Gavin Shanb85743e2014-11-14 10:47:28 +1100962 return ret;
Linas Vepstas6dee3fb2005-11-03 18:50:10 -0600963}
964
Linas Vepstas8b553f32005-11-03 18:50:17 -0600965/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000966 * eeh_save_bars - Save device bars
Gavin Shanf631acd2012-02-27 20:04:07 +0000967 * @edev: PCI device associated EEH device
Linas Vepstas8b553f32005-11-03 18:50:17 -0600968 *
969 * Save the values of the device bars. Unlike the restore
970 * routine, this routine is *not* recursive. This is because
Justin Mattock31116f02011-02-24 20:10:18 +0000971 * PCI devices are added individually; but, for the restore,
Linas Vepstas8b553f32005-11-03 18:50:17 -0600972 * an entire slot is reset at a time.
973 */
Gavin Shand7bb8862012-09-07 22:44:21 +0000974void eeh_save_bars(struct eeh_dev *edev)
Linas Vepstas8b553f32005-11-03 18:50:17 -0600975{
Gavin Shan0bd78582015-03-17 16:15:07 +1100976 struct pci_dn *pdn;
Linas Vepstas8b553f32005-11-03 18:50:17 -0600977 int i;
978
Gavin Shan0bd78582015-03-17 16:15:07 +1100979 pdn = eeh_dev_to_pdn(edev);
980 if (!pdn)
Linas Vepstas8b553f32005-11-03 18:50:17 -0600981 return;
Gavin Shana84f2732013-06-20 13:20:51 +0800982
Linas Vepstas8b553f32005-11-03 18:50:17 -0600983 for (i = 0; i < 16; i++)
Gavin Shan0bd78582015-03-17 16:15:07 +1100984 eeh_ops->read_config(pdn, i * 4, 4, &edev->config_space[i]);
Gavin Shanbf898ec2013-11-12 14:49:21 +0800985
986 /*
987 * For PCI bridges including root port, we need enable bus
988 * master explicitly. Otherwise, it can't fetch IODA table
989 * entries correctly. So we cache the bit in advance so that
990 * we can restore it after reset, either PHB range or PE range.
991 */
992 if (edev->mode & EEH_DEV_BRIDGE)
993 edev->config_space[1] |= PCI_COMMAND_MASTER;
Linas Vepstas8b553f32005-11-03 18:50:17 -0600994}
995
Gavin Shancb3bc9d2012-02-27 20:03:51 +0000996/**
Gavin Shanaa1e6372012-02-27 20:03:53 +0000997 * eeh_ops_register - Register platform dependent EEH operations
998 * @ops: platform dependent EEH operations
999 *
1000 * Register the platform dependent EEH operation callback
1001 * functions. The platform should call this function before
1002 * any other EEH operations.
1003 */
1004int __init eeh_ops_register(struct eeh_ops *ops)
1005{
1006 if (!ops->name) {
Gavin Shan0dae2742014-07-17 14:41:41 +10001007 pr_warn("%s: Invalid EEH ops name for %p\n",
Gavin Shanaa1e6372012-02-27 20:03:53 +00001008 __func__, ops);
1009 return -EINVAL;
1010 }
1011
1012 if (eeh_ops && eeh_ops != ops) {
Gavin Shan0dae2742014-07-17 14:41:41 +10001013 pr_warn("%s: EEH ops of platform %s already existing (%s)\n",
Gavin Shanaa1e6372012-02-27 20:03:53 +00001014 __func__, eeh_ops->name, ops->name);
1015 return -EEXIST;
1016 }
1017
1018 eeh_ops = ops;
1019
1020 return 0;
1021}
1022
1023/**
1024 * eeh_ops_unregister - Unreigster platform dependent EEH operations
1025 * @name: name of EEH platform operations
1026 *
1027 * Unregister the platform dependent EEH operation callback
1028 * functions.
1029 */
1030int __exit eeh_ops_unregister(const char *name)
1031{
1032 if (!name || !strlen(name)) {
Gavin Shan0dae2742014-07-17 14:41:41 +10001033 pr_warn("%s: Invalid EEH ops name\n",
Gavin Shanaa1e6372012-02-27 20:03:53 +00001034 __func__);
1035 return -EINVAL;
1036 }
1037
1038 if (eeh_ops && !strcmp(eeh_ops->name, name)) {
1039 eeh_ops = NULL;
1040 return 0;
1041 }
1042
1043 return -EEXIST;
1044}
1045
Gavin Shan66f9af832014-02-12 15:24:56 +08001046static int eeh_reboot_notifier(struct notifier_block *nb,
1047 unsigned long action, void *unused)
1048{
Gavin Shan05b17212014-07-17 14:41:38 +10001049 eeh_clear_flag(EEH_ENABLED);
Gavin Shan66f9af832014-02-12 15:24:56 +08001050 return NOTIFY_DONE;
1051}
1052
1053static struct notifier_block eeh_reboot_nb = {
1054 .notifier_call = eeh_reboot_notifier,
1055};
1056
Benjamin Herrenschmidtb9fde582017-09-07 16:35:44 +10001057void eeh_probe_devices(void)
1058{
1059 struct pci_controller *hose, *tmp;
1060 struct pci_dn *pdn;
1061
1062 /* Enable EEH for all adapters */
1063 list_for_each_entry_safe(hose, tmp, &hose_list, list_node) {
1064 pdn = hose->pci_data;
1065 traverse_pci_dn(pdn, eeh_ops->probe, NULL);
1066 }
Sam Bobroffbffc0172018-09-12 11:23:23 +10001067 if (eeh_enabled())
1068 pr_info("EEH: PCI Enhanced I/O Error Handling Enabled\n");
1069 else
1070 pr_info("EEH: No capable adapters found\n");
1071
Benjamin Herrenschmidtb9fde582017-09-07 16:35:44 +10001072}
1073
Gavin Shanaa1e6372012-02-27 20:03:53 +00001074/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +00001075 * eeh_init - EEH initialization
1076 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 * Initialize EEH by trying to enable it for all of the adapters in the system.
1078 * As a side effect we can determine here if eeh is supported at all.
1079 * Note that we leave EEH on so failed config cycles won't cause a machine
1080 * check. If a user turns off EEH for a particular adapter they are really
1081 * telling Linux to ignore errors. Some hardware (e.g. POWER5) won't
1082 * grant access to a slot if EEH isn't enabled, and so we always enable
1083 * EEH for all slots/all devices.
1084 *
1085 * The eeh-force-off option disables EEH checking globally, for all slots.
1086 * Even if force-off is set, the EEH hardware is still enabled, so that
1087 * newer systems can boot.
1088 */
Benjamin Herrenschmidtb9fde582017-09-07 16:35:44 +10001089static int eeh_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090{
Gavin Shan1a5c2e62012-03-20 21:30:29 +00001091 struct pci_controller *hose, *tmp;
Gavin Shan51fb5f52013-06-20 13:20:56 +08001092 int ret = 0;
1093
Gavin Shan66f9af832014-02-12 15:24:56 +08001094 /* Register reboot notifier */
1095 ret = register_reboot_notifier(&eeh_reboot_nb);
1096 if (ret) {
1097 pr_warn("%s: Failed to register notifier (%d)\n",
1098 __func__, ret);
1099 return ret;
1100 }
1101
Gavin Shane2af1552012-02-27 20:03:54 +00001102 /* call platform initialization function */
1103 if (!eeh_ops) {
Gavin Shan0dae2742014-07-17 14:41:41 +10001104 pr_warn("%s: Platform EEH operation not found\n",
Gavin Shane2af1552012-02-27 20:03:54 +00001105 __func__);
Gavin Shan35e5cfe2012-09-07 22:44:02 +00001106 return -EEXIST;
Greg Kurz221195f2014-11-25 17:10:06 +01001107 } else if ((ret = eeh_ops->init()))
Gavin Shan35e5cfe2012-09-07 22:44:02 +00001108 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
Benjamin Herrenschmidt3e77ade2017-09-07 16:35:40 +10001110 /* Initialize PHB PEs */
1111 list_for_each_entry_safe(hose, tmp, &hose_list, list_node)
1112 eeh_dev_phb_init_dynamic(hose);
1113
Gavin Shanc8608552013-06-20 13:21:00 +08001114 /* Initialize EEH event */
Sam Bobroffbffc0172018-09-12 11:23:23 +10001115 return eeh_event_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116}
1117
Gavin Shan35e5cfe2012-09-07 22:44:02 +00001118core_initcall_sync(eeh_init);
1119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120/**
Gavin Shanc6406d82015-03-17 16:15:08 +11001121 * eeh_add_device_early - Enable EEH for the indicated device node
Gavin Shanff57b452015-03-17 16:15:06 +11001122 * @pdn: PCI device node for which to set up EEH
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 *
1124 * This routine must be used to perform EEH initialization for PCI
1125 * devices that were added after system boot (e.g. hotplug, dlpar).
1126 * This routine must be called before any i/o is performed to the
1127 * adapter (inluding any config-space i/o).
1128 * Whether this actually enables EEH or not for this device depends
1129 * on the CEC architecture, type of the device, on earlier boot
1130 * command-line arguments & etc.
1131 */
Gavin Shanff57b452015-03-17 16:15:06 +11001132void eeh_add_device_early(struct pci_dn *pdn)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133{
Alexey Kardashevskiy69672bd2017-08-29 17:34:01 +10001134 struct pci_controller *phb = pdn ? pdn->phb : NULL;
Gavin Shanff57b452015-03-17 16:15:06 +11001135 struct eeh_dev *edev = pdn_to_eeh_dev(pdn);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
Guilherme G. Piccolic2078d92016-04-11 16:17:22 -03001137 if (!edev)
Gavin Shan26a74852013-06-20 13:20:59 +08001138 return;
1139
Gavin Shand91dafc2015-05-01 09:22:15 +10001140 if (!eeh_has_flag(EEH_PROBE_MODE_DEVTREE))
1141 return;
1142
Linas Vepstasf751f842005-11-03 18:54:23 -06001143 /* USB Bus children of PCI devices will not have BUID's */
Gavin Shanff57b452015-03-17 16:15:06 +11001144 if (NULL == phb ||
1145 (eeh_has_flag(EEH_PROBE_MODE_DEVTREE) && 0 == phb->buid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Gavin Shanff57b452015-03-17 16:15:06 +11001148 eeh_ops->probe(pdn, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150
Gavin Shancb3bc9d2012-02-27 20:03:51 +00001151/**
1152 * eeh_add_device_tree_early - Enable EEH for the indicated device
Gavin Shanff57b452015-03-17 16:15:06 +11001153 * @pdn: PCI device node
Gavin Shancb3bc9d2012-02-27 20:03:51 +00001154 *
1155 * This routine must be used to perform EEH initialization for the
1156 * indicated PCI device that was added after system boot (e.g.
1157 * hotplug, dlpar).
1158 */
Gavin Shanff57b452015-03-17 16:15:06 +11001159void eeh_add_device_tree_early(struct pci_dn *pdn)
Linas Vepstase2a296e2005-11-03 18:51:31 -06001160{
Gavin Shanff57b452015-03-17 16:15:06 +11001161 struct pci_dn *n;
Stephen Rothwellacaa6172007-12-21 15:52:07 +11001162
Gavin Shanff57b452015-03-17 16:15:06 +11001163 if (!pdn)
1164 return;
1165
1166 list_for_each_entry(n, &pdn->child_list, list)
1167 eeh_add_device_tree_early(n);
1168 eeh_add_device_early(pdn);
Linas Vepstase2a296e2005-11-03 18:51:31 -06001169}
1170EXPORT_SYMBOL_GPL(eeh_add_device_tree_early);
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +00001173 * eeh_add_device_late - Perform EEH initialization for the indicated pci device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 * @dev: pci device for which to set up EEH
1175 *
1176 * This routine must be used to complete EEH initialization for PCI
1177 * devices that were added after system boot (e.g. hotplug, dlpar).
1178 */
Gavin Shanf2856492013-07-24 10:24:52 +08001179void eeh_add_device_late(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Gavin Shanc6406d82015-03-17 16:15:08 +11001181 struct pci_dn *pdn;
Gavin Shanf631acd2012-02-27 20:04:07 +00001182 struct eeh_dev *edev;
Linas Vepstas56b0fca2005-11-03 18:48:45 -06001183
Gavin Shan2ec5a0a2014-02-12 15:24:55 +08001184 if (!dev || !eeh_enabled())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 return;
1186
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001187 pr_debug("EEH: Adding device %s\n", pci_name(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
Gavin Shanc6406d82015-03-17 16:15:08 +11001189 pdn = pci_get_pdn_by_devfn(dev->bus, dev->devfn);
1190 edev = pdn_to_eeh_dev(pdn);
Gavin Shanf631acd2012-02-27 20:04:07 +00001191 if (edev->pdev == dev) {
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001192 pr_debug("EEH: Already referenced !\n");
1193 return;
1194 }
Gavin Shanf5c57712013-07-24 10:24:58 +08001195
1196 /*
1197 * The EEH cache might not be removed correctly because of
1198 * unbalanced kref to the device during unplug time, which
1199 * relies on pcibios_release_device(). So we have to remove
1200 * that here explicitly.
1201 */
1202 if (edev->pdev) {
1203 eeh_rmv_from_parent_pe(edev);
1204 eeh_addr_cache_rmv_dev(edev->pdev);
1205 eeh_sysfs_remove_device(edev->pdev);
Gavin Shanab55d212013-07-24 10:25:01 +08001206 edev->mode &= ~EEH_DEV_SYSFS;
Gavin Shanf5c57712013-07-24 10:24:58 +08001207
Gavin Shanf26c7a02014-01-12 14:13:45 +08001208 /*
1209 * We definitely should have the PCI device removed
1210 * though it wasn't correctly. So we needn't call
1211 * into error handler afterwards.
1212 */
1213 edev->mode |= EEH_DEV_NO_HANDLER;
1214
Gavin Shanf5c57712013-07-24 10:24:58 +08001215 edev->pdev = NULL;
1216 dev->dev.archdata.edev = NULL;
1217 }
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001218
Daniel Axtense642d112015-08-14 16:03:19 +10001219 if (eeh_has_flag(EEH_PROBE_MODE_DEV))
1220 eeh_ops->probe(pdn, NULL);
1221
Gavin Shanf631acd2012-02-27 20:04:07 +00001222 edev->pdev = dev;
1223 dev->dev.archdata.edev = edev;
Linas Vepstas56b0fca2005-11-03 18:48:45 -06001224
Gavin Shan3ab96a02012-09-07 22:44:23 +00001225 eeh_addr_cache_insert_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226}
Nathan Fontenot794e0852006-03-31 12:04:52 -06001227
Gavin Shancb3bc9d2012-02-27 20:03:51 +00001228/**
1229 * eeh_add_device_tree_late - Perform EEH initialization for the indicated PCI bus
1230 * @bus: PCI bus
1231 *
1232 * This routine must be used to perform EEH initialization for PCI
1233 * devices which are attached to the indicated PCI bus. The PCI bus
1234 * is added after system boot through hotplug or dlpar.
1235 */
Nathan Fontenot794e0852006-03-31 12:04:52 -06001236void eeh_add_device_tree_late(struct pci_bus *bus)
1237{
1238 struct pci_dev *dev;
1239
1240 list_for_each_entry(dev, &bus->devices, bus_list) {
Gavin Shana84f2732013-06-20 13:20:51 +08001241 eeh_add_device_late(dev);
1242 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
1243 struct pci_bus *subbus = dev->subordinate;
1244 if (subbus)
1245 eeh_add_device_tree_late(subbus);
1246 }
Nathan Fontenot794e0852006-03-31 12:04:52 -06001247 }
1248}
1249EXPORT_SYMBOL_GPL(eeh_add_device_tree_late);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
1251/**
Thadeu Lima de Souza Cascardo6a040ce2012-12-28 09:13:19 +00001252 * eeh_add_sysfs_files - Add EEH sysfs files for the indicated PCI bus
1253 * @bus: PCI bus
1254 *
1255 * This routine must be used to add EEH sysfs files for PCI
1256 * devices which are attached to the indicated PCI bus. The PCI bus
1257 * is added after system boot through hotplug or dlpar.
1258 */
1259void eeh_add_sysfs_files(struct pci_bus *bus)
1260{
1261 struct pci_dev *dev;
1262
1263 list_for_each_entry(dev, &bus->devices, bus_list) {
1264 eeh_sysfs_add_device(dev);
1265 if (dev->hdr_type == PCI_HEADER_TYPE_BRIDGE) {
1266 struct pci_bus *subbus = dev->subordinate;
1267 if (subbus)
1268 eeh_add_sysfs_files(subbus);
1269 }
1270 }
1271}
1272EXPORT_SYMBOL_GPL(eeh_add_sysfs_files);
1273
1274/**
Gavin Shancb3bc9d2012-02-27 20:03:51 +00001275 * eeh_remove_device - Undo EEH setup for the indicated pci device
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 * @dev: pci device to be removed
1277 *
Nathan Fontenot794e0852006-03-31 12:04:52 -06001278 * This routine should be called when a device is removed from
1279 * a running system (e.g. by hotplug or dlpar). It unregisters
1280 * the PCI device from the EEH subsystem. I/O errors affecting
1281 * this device will no longer be detected after this call; thus,
1282 * i/o errors affecting this slot may leave this device unusable.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 */
Gavin Shan807a8272013-07-24 10:24:55 +08001284void eeh_remove_device(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285{
Gavin Shanf631acd2012-02-27 20:04:07 +00001286 struct eeh_dev *edev;
1287
Gavin Shan2ec5a0a2014-02-12 15:24:55 +08001288 if (!dev || !eeh_enabled())
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 return;
Gavin Shanf631acd2012-02-27 20:04:07 +00001290 edev = pci_dev_to_eeh_dev(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
1292 /* Unregister the device with the EEH/PCI address search system */
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001293 pr_debug("EEH: Removing device %s\n", pci_name(dev));
Linas Vepstas56b0fca2005-11-03 18:48:45 -06001294
Gavin Shanf5c57712013-07-24 10:24:58 +08001295 if (!edev || !edev->pdev || !edev->pe) {
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001296 pr_debug("EEH: Not referenced !\n");
1297 return;
Linas Vepstasb055a9e2006-04-06 15:41:41 -05001298 }
Gavin Shanf5c57712013-07-24 10:24:58 +08001299
1300 /*
1301 * During the hotplug for EEH error recovery, we need the EEH
1302 * device attached to the parent PE in order for BAR restore
1303 * a bit later. So we keep it for BAR restore and remove it
1304 * from the parent PE during the BAR resotre.
1305 */
Gavin Shanf631acd2012-02-27 20:04:07 +00001306 edev->pdev = NULL;
Wei Yang67086e32016-03-04 10:53:11 +11001307
1308 /*
1309 * The flag "in_error" is used to trace EEH devices for VFs
1310 * in error state or not. It's set in eeh_report_error(). If
1311 * it's not set, eeh_report_{reset,resume}() won't be called
1312 * for the VF EEH device.
1313 */
1314 edev->in_error = false;
Gavin Shanf631acd2012-02-27 20:04:07 +00001315 dev->dev.archdata.edev = NULL;
Gavin Shanf5c57712013-07-24 10:24:58 +08001316 if (!(edev->pe->state & EEH_PE_KEEP))
1317 eeh_rmv_from_parent_pe(edev);
1318 else
1319 edev->mode |= EEH_DEV_DISCONNECTED;
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001320
Gavin Shanf26c7a02014-01-12 14:13:45 +08001321 /*
1322 * We're removing from the PCI subsystem, that means
1323 * the PCI device driver can't support EEH or not
1324 * well. So we rely on hotplug completely to do recovery
1325 * for the specific PCI device.
1326 */
1327 edev->mode |= EEH_DEV_NO_HANDLER;
1328
Gavin Shan3ab96a02012-09-07 22:44:23 +00001329 eeh_addr_cache_rmv_dev(dev);
Benjamin Herrenschmidt57b066f2008-10-27 19:48:41 +00001330 eeh_sysfs_remove_device(dev);
Gavin Shanab55d212013-07-24 10:25:01 +08001331 edev->mode &= ~EEH_DEV_SYSFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Sam Bobroff188fdea2018-11-29 14:16:38 +11001334int eeh_unfreeze_pe(struct eeh_pe *pe)
Gavin Shan4eeeff02014-09-30 12:39:01 +10001335{
1336 int ret;
1337
1338 ret = eeh_pci_enable(pe, EEH_OPT_THAW_MMIO);
1339 if (ret) {
1340 pr_warn("%s: Failure %d enabling IO on PHB#%x-PE#%x\n",
1341 __func__, ret, pe->phb->global_number, pe->addr);
1342 return ret;
1343 }
1344
1345 ret = eeh_pci_enable(pe, EEH_OPT_THAW_DMA);
1346 if (ret) {
1347 pr_warn("%s: Failure %d enabling DMA on PHB#%x-PE#%x\n",
1348 __func__, ret, pe->phb->global_number, pe->addr);
1349 return ret;
1350 }
1351
Gavin Shan4eeeff02014-09-30 12:39:01 +10001352 return ret;
1353}
1354
Gavin Shan5cfb20b2014-09-30 12:39:07 +10001355
1356static struct pci_device_id eeh_reset_ids[] = {
1357 { PCI_DEVICE(0x19a2, 0x0710) }, /* Emulex, BE */
1358 { PCI_DEVICE(0x10df, 0xe220) }, /* Emulex, Lancer */
Gavin Shanb1d76a72014-11-14 10:47:30 +11001359 { PCI_DEVICE(0x14e4, 0x1657) }, /* Broadcom BCM5719 */
Gavin Shan5cfb20b2014-09-30 12:39:07 +10001360 { 0 }
1361};
1362
1363static int eeh_pe_change_owner(struct eeh_pe *pe)
1364{
1365 struct eeh_dev *edev, *tmp;
1366 struct pci_dev *pdev;
1367 struct pci_device_id *id;
Sam Bobroff34a286a2018-03-19 13:49:23 +11001368 int ret;
Gavin Shan5cfb20b2014-09-30 12:39:07 +10001369
1370 /* Check PE state */
Gavin Shan5cfb20b2014-09-30 12:39:07 +10001371 ret = eeh_ops->get_state(pe, NULL);
1372 if (ret < 0 || ret == EEH_STATE_NOT_SUPPORT)
1373 return 0;
1374
1375 /* Unfrozen PE, nothing to do */
Sam Bobroff34a286a2018-03-19 13:49:23 +11001376 if (eeh_state_active(ret))
Gavin Shan5cfb20b2014-09-30 12:39:07 +10001377 return 0;
1378
1379 /* Frozen PE, check if it needs PE level reset */
1380 eeh_pe_for_each_dev(pe, edev, tmp) {
1381 pdev = eeh_dev_to_pci_dev(edev);
1382 if (!pdev)
1383 continue;
1384
1385 for (id = &eeh_reset_ids[0]; id->vendor != 0; id++) {
1386 if (id->vendor != PCI_ANY_ID &&
1387 id->vendor != pdev->vendor)
1388 continue;
1389 if (id->device != PCI_ANY_ID &&
1390 id->device != pdev->device)
1391 continue;
1392 if (id->subvendor != PCI_ANY_ID &&
1393 id->subvendor != pdev->subsystem_vendor)
1394 continue;
1395 if (id->subdevice != PCI_ANY_ID &&
1396 id->subdevice != pdev->subsystem_device)
1397 continue;
1398
Gavin Shand6d63d72016-04-27 11:14:53 +10001399 return eeh_pe_reset_and_recover(pe);
Gavin Shan5cfb20b2014-09-30 12:39:07 +10001400 }
1401 }
1402
Sam Bobroff188fdea2018-11-29 14:16:38 +11001403 ret = eeh_unfreeze_pe(pe);
1404 if (!ret)
Sam Bobroff9ed5ca62018-11-29 14:16:39 +11001405 eeh_pe_state_clear(pe, EEH_PE_ISOLATED, true);
Sam Bobroff188fdea2018-11-29 14:16:38 +11001406 return ret;
Gavin Shan5cfb20b2014-09-30 12:39:07 +10001407}
1408
Gavin Shan212d16c2014-06-10 11:41:56 +10001409/**
1410 * eeh_dev_open - Increase count of pass through devices for PE
1411 * @pdev: PCI device
1412 *
1413 * Increase count of passed through devices for the indicated
1414 * PE. In the result, the EEH errors detected on the PE won't be
1415 * reported. The PE owner will be responsible for detection
1416 * and recovery.
1417 */
1418int eeh_dev_open(struct pci_dev *pdev)
1419{
1420 struct eeh_dev *edev;
Gavin Shan404079c2014-09-30 12:38:54 +10001421 int ret = -ENODEV;
Gavin Shan212d16c2014-06-10 11:41:56 +10001422
1423 mutex_lock(&eeh_dev_mutex);
1424
1425 /* No PCI device ? */
1426 if (!pdev)
1427 goto out;
1428
1429 /* No EEH device or PE ? */
1430 edev = pci_dev_to_eeh_dev(pdev);
1431 if (!edev || !edev->pe)
1432 goto out;
1433
Gavin Shan404079c2014-09-30 12:38:54 +10001434 /*
1435 * The PE might have been put into frozen state, but we
1436 * didn't detect that yet. The passed through PCI devices
1437 * in frozen PE won't work properly. Clear the frozen state
1438 * in advance.
1439 */
Gavin Shan5cfb20b2014-09-30 12:39:07 +10001440 ret = eeh_pe_change_owner(edev->pe);
Gavin Shan4eeeff02014-09-30 12:39:01 +10001441 if (ret)
1442 goto out;
Gavin Shan404079c2014-09-30 12:38:54 +10001443
Gavin Shan212d16c2014-06-10 11:41:56 +10001444 /* Increase PE's pass through count */
1445 atomic_inc(&edev->pe->pass_dev_cnt);
1446 mutex_unlock(&eeh_dev_mutex);
1447
1448 return 0;
1449out:
1450 mutex_unlock(&eeh_dev_mutex);
Gavin Shan404079c2014-09-30 12:38:54 +10001451 return ret;
Gavin Shan212d16c2014-06-10 11:41:56 +10001452}
1453EXPORT_SYMBOL_GPL(eeh_dev_open);
1454
1455/**
1456 * eeh_dev_release - Decrease count of pass through devices for PE
1457 * @pdev: PCI device
1458 *
1459 * Decrease count of pass through devices for the indicated PE. If
1460 * there is no passed through device in PE, the EEH errors detected
1461 * on the PE will be reported and handled as usual.
1462 */
1463void eeh_dev_release(struct pci_dev *pdev)
1464{
1465 struct eeh_dev *edev;
1466
1467 mutex_lock(&eeh_dev_mutex);
1468
1469 /* No PCI device ? */
1470 if (!pdev)
1471 goto out;
1472
1473 /* No EEH device ? */
1474 edev = pci_dev_to_eeh_dev(pdev);
1475 if (!edev || !edev->pe || !eeh_pe_passed(edev->pe))
1476 goto out;
1477
1478 /* Decrease PE's pass through count */
Gavin Shan54f9a642015-08-27 15:58:27 +10001479 WARN_ON(atomic_dec_if_positive(&edev->pe->pass_dev_cnt) < 0);
Gavin Shan5cfb20b2014-09-30 12:39:07 +10001480 eeh_pe_change_owner(edev->pe);
Gavin Shan212d16c2014-06-10 11:41:56 +10001481out:
1482 mutex_unlock(&eeh_dev_mutex);
1483}
1484EXPORT_SYMBOL(eeh_dev_release);
1485
Benjamin Herrenschmidt2194dc22014-08-05 18:52:59 +10001486#ifdef CONFIG_IOMMU_API
1487
Gavin Shana3032ca2014-07-15 17:00:56 +10001488static int dev_has_iommu_table(struct device *dev, void *data)
1489{
1490 struct pci_dev *pdev = to_pci_dev(dev);
1491 struct pci_dev **ppdev = data;
Gavin Shana3032ca2014-07-15 17:00:56 +10001492
1493 if (!dev)
1494 return 0;
1495
Joerg Roedelbf8763d2018-11-30 14:23:19 +01001496 if (device_iommu_mapped(dev)) {
Gavin Shana3032ca2014-07-15 17:00:56 +10001497 *ppdev = pdev;
1498 return 1;
1499 }
1500
1501 return 0;
1502}
1503
Gavin Shan212d16c2014-06-10 11:41:56 +10001504/**
1505 * eeh_iommu_group_to_pe - Convert IOMMU group to EEH PE
1506 * @group: IOMMU group
1507 *
1508 * The routine is called to convert IOMMU group to EEH PE.
1509 */
1510struct eeh_pe *eeh_iommu_group_to_pe(struct iommu_group *group)
1511{
Gavin Shan212d16c2014-06-10 11:41:56 +10001512 struct pci_dev *pdev = NULL;
1513 struct eeh_dev *edev;
Gavin Shana3032ca2014-07-15 17:00:56 +10001514 int ret;
Gavin Shan212d16c2014-06-10 11:41:56 +10001515
1516 /* No IOMMU group ? */
1517 if (!group)
1518 return NULL;
1519
Gavin Shana3032ca2014-07-15 17:00:56 +10001520 ret = iommu_group_for_each_dev(group, &pdev, dev_has_iommu_table);
1521 if (!ret || !pdev)
Gavin Shan212d16c2014-06-10 11:41:56 +10001522 return NULL;
1523
1524 /* No EEH device or PE ? */
1525 edev = pci_dev_to_eeh_dev(pdev);
1526 if (!edev || !edev->pe)
1527 return NULL;
1528
1529 return edev->pe;
1530}
Gavin Shan537e5402014-08-07 12:47:16 +10001531EXPORT_SYMBOL_GPL(eeh_iommu_group_to_pe);
Gavin Shan212d16c2014-06-10 11:41:56 +10001532
Benjamin Herrenschmidt2194dc22014-08-05 18:52:59 +10001533#endif /* CONFIG_IOMMU_API */
1534
Gavin Shan212d16c2014-06-10 11:41:56 +10001535/**
1536 * eeh_pe_set_option - Set options for the indicated PE
1537 * @pe: EEH PE
1538 * @option: requested option
1539 *
1540 * The routine is called to enable or disable EEH functionality
1541 * on the indicated PE, to enable IO or DMA for the frozen PE.
1542 */
1543int eeh_pe_set_option(struct eeh_pe *pe, int option)
1544{
1545 int ret = 0;
1546
1547 /* Invalid PE ? */
1548 if (!pe)
1549 return -ENODEV;
1550
1551 /*
1552 * EEH functionality could possibly be disabled, just
1553 * return error for the case. And the EEH functinality
1554 * isn't expected to be disabled on one specific PE.
1555 */
1556 switch (option) {
1557 case EEH_OPT_ENABLE:
Gavin Shan4eeeff02014-09-30 12:39:01 +10001558 if (eeh_enabled()) {
Gavin Shan5cfb20b2014-09-30 12:39:07 +10001559 ret = eeh_pe_change_owner(pe);
Gavin Shan212d16c2014-06-10 11:41:56 +10001560 break;
Gavin Shan4eeeff02014-09-30 12:39:01 +10001561 }
Gavin Shan212d16c2014-06-10 11:41:56 +10001562 ret = -EIO;
1563 break;
1564 case EEH_OPT_DISABLE:
1565 break;
1566 case EEH_OPT_THAW_MMIO:
1567 case EEH_OPT_THAW_DMA:
Gavin Shande5a6622016-09-28 14:34:53 +10001568 case EEH_OPT_FREEZE_PE:
Gavin Shan212d16c2014-06-10 11:41:56 +10001569 if (!eeh_ops || !eeh_ops->set_option) {
1570 ret = -ENOENT;
1571 break;
1572 }
1573
Gavin Shan4eeeff02014-09-30 12:39:01 +10001574 ret = eeh_pci_enable(pe, option);
Gavin Shan212d16c2014-06-10 11:41:56 +10001575 break;
1576 default:
1577 pr_debug("%s: Option %d out of range (%d, %d)\n",
1578 __func__, option, EEH_OPT_DISABLE, EEH_OPT_THAW_DMA);
1579 ret = -EINVAL;
1580 }
1581
1582 return ret;
1583}
1584EXPORT_SYMBOL_GPL(eeh_pe_set_option);
1585
1586/**
1587 * eeh_pe_get_state - Retrieve PE's state
1588 * @pe: EEH PE
1589 *
1590 * Retrieve the PE's state, which includes 3 aspects: enabled
1591 * DMA, enabled IO and asserted reset.
1592 */
1593int eeh_pe_get_state(struct eeh_pe *pe)
1594{
1595 int result, ret = 0;
1596 bool rst_active, dma_en, mmio_en;
1597
1598 /* Existing PE ? */
1599 if (!pe)
1600 return -ENODEV;
1601
1602 if (!eeh_ops || !eeh_ops->get_state)
1603 return -ENOENT;
1604
Gavin Shaneca036e2016-03-04 10:53:14 +11001605 /*
1606 * If the parent PE is owned by the host kernel and is undergoing
1607 * error recovery, we should return the PE state as temporarily
1608 * unavailable so that the error recovery on the guest is suspended
1609 * until the recovery completes on the host.
1610 */
1611 if (pe->parent &&
1612 !(pe->state & EEH_PE_REMOVED) &&
1613 (pe->parent->state & (EEH_PE_ISOLATED | EEH_PE_RECOVERING)))
1614 return EEH_PE_STATE_UNAVAIL;
1615
Gavin Shan212d16c2014-06-10 11:41:56 +10001616 result = eeh_ops->get_state(pe, NULL);
1617 rst_active = !!(result & EEH_STATE_RESET_ACTIVE);
1618 dma_en = !!(result & EEH_STATE_DMA_ENABLED);
1619 mmio_en = !!(result & EEH_STATE_MMIO_ENABLED);
1620
1621 if (rst_active)
1622 ret = EEH_PE_STATE_RESET;
1623 else if (dma_en && mmio_en)
1624 ret = EEH_PE_STATE_NORMAL;
1625 else if (!dma_en && !mmio_en)
1626 ret = EEH_PE_STATE_STOPPED_IO_DMA;
1627 else if (!dma_en && mmio_en)
1628 ret = EEH_PE_STATE_STOPPED_DMA;
1629 else
1630 ret = EEH_PE_STATE_UNAVAIL;
1631
1632 return ret;
1633}
1634EXPORT_SYMBOL_GPL(eeh_pe_get_state);
1635
Sam Bobroff1ef52072018-11-29 14:16:41 +11001636static int eeh_pe_reenable_devices(struct eeh_pe *pe, bool include_passed)
Gavin Shan316233f2014-09-30 12:38:53 +10001637{
1638 struct eeh_dev *edev, *tmp;
1639 struct pci_dev *pdev;
1640 int ret = 0;
1641
Gavin Shan316233f2014-09-30 12:38:53 +10001642 eeh_pe_restore_bars(pe);
1643
1644 /*
1645 * Reenable PCI devices as the devices passed
1646 * through are always enabled before the reset.
1647 */
1648 eeh_pe_for_each_dev(pe, edev, tmp) {
1649 pdev = eeh_dev_to_pci_dev(edev);
1650 if (!pdev)
1651 continue;
1652
1653 ret = pci_reenable_device(pdev);
1654 if (ret) {
1655 pr_warn("%s: Failure %d reenabling %s\n",
1656 __func__, ret, pci_name(pdev));
1657 return ret;
1658 }
1659 }
1660
1661 /* The PE is still in frozen state */
Sam Bobroff1ef52072018-11-29 14:16:41 +11001662 if (include_passed || !eeh_pe_passed(pe)) {
1663 ret = eeh_unfreeze_pe(pe);
1664 } else
1665 pr_info("EEH: Note: Leaving passthrough PHB#%x-PE#%x frozen.\n",
1666 pe->phb->global_number, pe->addr);
Sam Bobroff188fdea2018-11-29 14:16:38 +11001667 if (!ret)
Sam Bobroff1ef52072018-11-29 14:16:41 +11001668 eeh_pe_state_clear(pe, EEH_PE_ISOLATED, include_passed);
Sam Bobroff188fdea2018-11-29 14:16:38 +11001669 return ret;
Gavin Shan316233f2014-09-30 12:38:53 +10001670}
1671
Russell Currey6654c932016-11-17 16:07:47 +11001672
Gavin Shan212d16c2014-06-10 11:41:56 +10001673/**
1674 * eeh_pe_reset - Issue PE reset according to specified type
1675 * @pe: EEH PE
1676 * @option: reset type
1677 *
1678 * The routine is called to reset the specified PE with the
1679 * indicated type, either fundamental reset or hot reset.
1680 * PE reset is the most important part for error recovery.
1681 */
Sam Bobroff1ef52072018-11-29 14:16:41 +11001682int eeh_pe_reset(struct eeh_pe *pe, int option, bool include_passed)
Gavin Shan212d16c2014-06-10 11:41:56 +10001683{
1684 int ret = 0;
1685
1686 /* Invalid PE ? */
1687 if (!pe)
1688 return -ENODEV;
1689
1690 if (!eeh_ops || !eeh_ops->set_option || !eeh_ops->reset)
1691 return -ENOENT;
1692
1693 switch (option) {
1694 case EEH_RESET_DEACTIVATE:
1695 ret = eeh_ops->reset(pe, option);
Sam Bobroff1ef52072018-11-29 14:16:41 +11001696 eeh_pe_state_clear(pe, EEH_PE_CFG_BLOCKED, include_passed);
Gavin Shan212d16c2014-06-10 11:41:56 +10001697 if (ret)
1698 break;
1699
Sam Bobroff1ef52072018-11-29 14:16:41 +11001700 ret = eeh_pe_reenable_devices(pe, include_passed);
Gavin Shan212d16c2014-06-10 11:41:56 +10001701 break;
1702 case EEH_RESET_HOT:
1703 case EEH_RESET_FUNDAMENTAL:
Gavin Shan0d5ee522014-09-30 12:38:52 +10001704 /*
1705 * Proactively freeze the PE to drop all MMIO access
1706 * during reset, which should be banned as it's always
1707 * cause recursive EEH error.
1708 */
1709 eeh_ops->set_option(pe, EEH_OPT_FREEZE_PE);
1710
Gavin Shan8a6b3712014-10-01 17:07:50 +10001711 eeh_pe_state_mark(pe, EEH_PE_CFG_BLOCKED);
Gavin Shan212d16c2014-06-10 11:41:56 +10001712 ret = eeh_ops->reset(pe, option);
1713 break;
1714 default:
1715 pr_debug("%s: Unsupported option %d\n",
1716 __func__, option);
1717 ret = -EINVAL;
1718 }
1719
1720 return ret;
1721}
1722EXPORT_SYMBOL_GPL(eeh_pe_reset);
1723
1724/**
1725 * eeh_pe_configure - Configure PCI bridges after PE reset
1726 * @pe: EEH PE
1727 *
1728 * The routine is called to restore the PCI config space for
1729 * those PCI devices, especially PCI bridges affected by PE
1730 * reset issued previously.
1731 */
1732int eeh_pe_configure(struct eeh_pe *pe)
1733{
1734 int ret = 0;
1735
1736 /* Invalid PE ? */
1737 if (!pe)
1738 return -ENODEV;
1739
Gavin Shan212d16c2014-06-10 11:41:56 +10001740 return ret;
1741}
1742EXPORT_SYMBOL_GPL(eeh_pe_configure);
1743
Gavin Shanec33d362015-03-26 16:42:08 +11001744/**
1745 * eeh_pe_inject_err - Injecting the specified PCI error to the indicated PE
1746 * @pe: the indicated PE
1747 * @type: error type
1748 * @function: error function
1749 * @addr: address
1750 * @mask: address mask
1751 *
1752 * The routine is called to inject the specified PCI error, which
1753 * is determined by @type and @function, to the indicated PE for
1754 * testing purpose.
1755 */
1756int eeh_pe_inject_err(struct eeh_pe *pe, int type, int func,
1757 unsigned long addr, unsigned long mask)
1758{
1759 /* Invalid PE ? */
1760 if (!pe)
1761 return -ENODEV;
1762
1763 /* Unsupported operation ? */
1764 if (!eeh_ops || !eeh_ops->err_inject)
1765 return -ENOENT;
1766
1767 /* Check on PCI error type */
1768 if (type != EEH_ERR_TYPE_32 && type != EEH_ERR_TYPE_64)
1769 return -EINVAL;
1770
1771 /* Check on PCI error function */
1772 if (func < EEH_ERR_FUNC_MIN || func > EEH_ERR_FUNC_MAX)
1773 return -EINVAL;
1774
1775 return eeh_ops->err_inject(pe, type, func, addr, mask);
1776}
1777EXPORT_SYMBOL_GPL(eeh_pe_inject_err);
1778
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779static int proc_eeh_show(struct seq_file *m, void *v)
1780{
Gavin Shan2ec5a0a2014-02-12 15:24:55 +08001781 if (!eeh_enabled()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 seq_printf(m, "EEH Subsystem is globally disabled\n");
Gavin Shane575f8d2012-02-29 15:47:45 +00001783 seq_printf(m, "eeh_total_mmio_ffs=%llu\n", eeh_stats.total_mmio_ffs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 } else {
1785 seq_printf(m, "EEH Subsystem is enabled\n");
Linas Vepstas177bc932005-11-03 18:48:52 -06001786 seq_printf(m,
Gavin Shane575f8d2012-02-29 15:47:45 +00001787 "no device=%llu\n"
1788 "no device node=%llu\n"
1789 "no config address=%llu\n"
1790 "check not wanted=%llu\n"
1791 "eeh_total_mmio_ffs=%llu\n"
1792 "eeh_false_positives=%llu\n"
1793 "eeh_slot_resets=%llu\n",
1794 eeh_stats.no_device,
1795 eeh_stats.no_dn,
1796 eeh_stats.no_cfg_addr,
1797 eeh_stats.ignored_check,
1798 eeh_stats.total_mmio_ffs,
1799 eeh_stats.false_positives,
1800 eeh_stats.slot_resets);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 }
1802
1803 return 0;
1804}
1805
Gavin Shan7f52a5262014-04-24 18:00:18 +10001806#ifdef CONFIG_DEBUG_FS
1807static int eeh_enable_dbgfs_set(void *data, u64 val)
1808{
1809 if (val)
Gavin Shan05b17212014-07-17 14:41:38 +10001810 eeh_clear_flag(EEH_FORCE_DISABLED);
Gavin Shan7f52a5262014-04-24 18:00:18 +10001811 else
Gavin Shan05b17212014-07-17 14:41:38 +10001812 eeh_add_flag(EEH_FORCE_DISABLED);
Gavin Shan7f52a5262014-04-24 18:00:18 +10001813
Gavin Shan7f52a5262014-04-24 18:00:18 +10001814 return 0;
1815}
1816
1817static int eeh_enable_dbgfs_get(void *data, u64 *val)
1818{
1819 if (eeh_enabled())
1820 *val = 0x1ul;
1821 else
1822 *val = 0x0ul;
1823 return 0;
1824}
1825
YueHaibing8c6c9422018-12-20 02:42:51 +00001826DEFINE_DEBUGFS_ATTRIBUTE(eeh_enable_dbgfs_ops, eeh_enable_dbgfs_get,
1827 eeh_enable_dbgfs_set, "0x%llx\n");
Oliver O'Halloran954bd992019-02-15 11:48:17 +11001828
1829static ssize_t eeh_force_recover_write(struct file *filp,
1830 const char __user *user_buf,
1831 size_t count, loff_t *ppos)
1832{
1833 struct pci_controller *hose;
1834 uint32_t phbid, pe_no;
1835 struct eeh_pe *pe;
1836 char buf[20];
1837 int ret;
1838
1839 ret = simple_write_to_buffer(buf, sizeof(buf), ppos, user_buf, count);
1840 if (!ret)
1841 return -EFAULT;
1842
1843 /*
1844 * When PE is NULL the event is a "special" event. Rather than
1845 * recovering a specific PE it forces the EEH core to scan for failed
1846 * PHBs and recovers each. This needs to be done before any device
1847 * recoveries can occur.
1848 */
1849 if (!strncmp(buf, "hwcheck", 7)) {
1850 __eeh_send_failure_event(NULL);
1851 return count;
1852 }
1853
1854 ret = sscanf(buf, "%x:%x", &phbid, &pe_no);
1855 if (ret != 2)
1856 return -EINVAL;
1857
1858 hose = pci_find_controller_for_domain(phbid);
1859 if (!hose)
1860 return -ENODEV;
1861
1862 /* Retrieve PE */
1863 pe = eeh_pe_get(hose, pe_no, 0);
1864 if (!pe)
1865 return -ENODEV;
1866
1867 /*
1868 * We don't do any state checking here since the detection
1869 * process is async to the recovery process. The recovery
1870 * thread *should* not break even if we schedule a recovery
1871 * from an odd state (e.g. PE removed, or recovery of a
1872 * non-isolated PE)
1873 */
1874 __eeh_send_failure_event(pe);
1875
1876 return ret < 0 ? ret : count;
1877}
1878
1879static const struct file_operations eeh_force_recover_fops = {
1880 .open = simple_open,
1881 .llseek = no_llseek,
1882 .write = eeh_force_recover_write,
1883};
Gavin Shan7f52a5262014-04-24 18:00:18 +10001884#endif
1885
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886static int __init eeh_init_proc(void)
1887{
Gavin Shan7f52a5262014-04-24 18:00:18 +10001888 if (machine_is(pseries) || machine_is(powernv)) {
Christoph Hellwig3f3942a2018-05-15 15:57:23 +02001889 proc_create_single("powerpc/eeh", 0, NULL, proc_eeh_show);
Gavin Shan7f52a5262014-04-24 18:00:18 +10001890#ifdef CONFIG_DEBUG_FS
YueHaibing8c6c9422018-12-20 02:42:51 +00001891 debugfs_create_file_unsafe("eeh_enable", 0600,
1892 powerpc_debugfs_root, NULL,
1893 &eeh_enable_dbgfs_ops);
Oliver O'Halloran46ee7c32019-02-15 11:48:11 +11001894 debugfs_create_u32("eeh_max_freezes", 0600,
1895 powerpc_debugfs_root, &eeh_max_freezes);
Oliver O'Halloran6b493f62019-02-15 11:48:16 +11001896 debugfs_create_bool("eeh_disable_recovery", 0600,
1897 powerpc_debugfs_root,
1898 &eeh_debugfs_no_recover);
Oliver O'Halloran954bd992019-02-15 11:48:17 +11001899 debugfs_create_file_unsafe("eeh_force_recover", 0600,
1900 powerpc_debugfs_root, NULL,
1901 &eeh_force_recover_fops);
Oliver O'Halloran5ca85ae2019-02-15 11:48:13 +11001902 eeh_cache_debugfs_init();
Gavin Shan7f52a5262014-04-24 18:00:18 +10001903#endif
1904 }
1905
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 return 0;
1907}
1908__initcall(eeh_init_proc);