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