Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 1 | /* |
| 2 | * PCI Error Recovery Driver for RPA-compliant PPC64 platform. |
Linas Vepstas | 3c8c90a | 2007-05-24 03:28:01 +1000 | [diff] [blame] | 3 | * Copyright IBM Corp. 2004 2005 |
| 4 | * Copyright Linas Vepstas <linas@linas.org> 2004, 2005 |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 5 | * |
| 6 | * All rights reserved. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or (at |
| 11 | * your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, but |
| 14 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or |
| 16 | * NON INFRINGEMENT. See the GNU General Public License for more |
| 17 | * details. |
| 18 | * |
| 19 | * You should have received a copy of the GNU General Public License |
| 20 | * along with this program; if not, write to the Free Software |
| 21 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 22 | * |
Linas Vepstas | 3c8c90a | 2007-05-24 03:28:01 +1000 | [diff] [blame] | 23 | * Send comments and feedback to Linas Vepstas <linas@austin.ibm.com> |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 24 | */ |
| 25 | #include <linux/delay.h> |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 26 | #include <linux/interrupt.h> |
Linas Vepstas | ac325ac | 2006-04-18 21:05:21 -0700 | [diff] [blame] | 27 | #include <linux/irq.h> |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 28 | #include <linux/module.h> |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 29 | #include <linux/pci.h> |
| 30 | #include <asm/eeh.h> |
| 31 | #include <asm/eeh_event.h> |
| 32 | #include <asm/ppc-pci.h> |
| 33 | #include <asm/pci-bridge.h> |
| 34 | #include <asm/prom.h> |
| 35 | #include <asm/rtas.h> |
| 36 | |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 37 | /** |
| 38 | * eeh_pcid_name - Retrieve name of PCI device driver |
| 39 | * @pdev: PCI device |
| 40 | * |
| 41 | * This routine is used to retrieve the name of PCI device driver |
| 42 | * if that's valid. |
| 43 | */ |
Gavin Shan | 40a7cd9 | 2012-02-27 20:04:08 +0000 | [diff] [blame] | 44 | static inline const char *eeh_pcid_name(struct pci_dev *pdev) |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 45 | { |
Olaf Hering | 273d280 | 2006-02-27 15:52:59 +0100 | [diff] [blame] | 46 | if (pdev && pdev->dev.driver) |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 47 | return pdev->dev.driver->name; |
| 48 | return ""; |
| 49 | } |
| 50 | |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 51 | /** |
| 52 | * eeh_pcid_get - Get the PCI device driver |
| 53 | * @pdev: PCI device |
| 54 | * |
| 55 | * The function is used to retrieve the PCI device driver for |
| 56 | * the indicated PCI device. Besides, we will increase the reference |
| 57 | * of the PCI device driver to prevent that being unloaded on |
| 58 | * the fly. Otherwise, kernel crash would be seen. |
| 59 | */ |
| 60 | static inline struct pci_driver *eeh_pcid_get(struct pci_dev *pdev) |
| 61 | { |
| 62 | if (!pdev || !pdev->driver) |
| 63 | return NULL; |
| 64 | |
| 65 | if (!try_module_get(pdev->driver->driver.owner)) |
| 66 | return NULL; |
| 67 | |
| 68 | return pdev->driver; |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * eeh_pcid_put - Dereference on the PCI device driver |
| 73 | * @pdev: PCI device |
| 74 | * |
| 75 | * The function is called to do dereference on the PCI device |
| 76 | * driver of the indicated PCI device. |
| 77 | */ |
| 78 | static inline void eeh_pcid_put(struct pci_dev *pdev) |
| 79 | { |
| 80 | if (!pdev || !pdev->driver) |
| 81 | return; |
| 82 | |
| 83 | module_put(pdev->driver->driver.owner); |
| 84 | } |
| 85 | |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 86 | /** |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 87 | * eeh_disable_irq - Disable interrupt for the recovering device |
| 88 | * @dev: PCI device |
| 89 | * |
| 90 | * This routine must be called when reporting temporary or permanent |
| 91 | * error to the particular PCI device to disable interrupt of that |
| 92 | * device. If the device has enabled MSI or MSI-X interrupt, we needn't |
| 93 | * do real work because EEH should freeze DMA transfers for those PCI |
| 94 | * devices encountering EEH errors, which includes MSI or MSI-X. |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 95 | */ |
| 96 | static void eeh_disable_irq(struct pci_dev *dev) |
| 97 | { |
Gavin Shan | 40a7cd9 | 2012-02-27 20:04:08 +0000 | [diff] [blame] | 98 | struct eeh_dev *edev = pci_dev_to_eeh_dev(dev); |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 99 | |
| 100 | /* Don't disable MSI and MSI-X interrupts. They are |
| 101 | * effectively disabled by the DMA Stopped state |
| 102 | * when an EEH error occurs. |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 103 | */ |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 104 | if (dev->msi_enabled || dev->msix_enabled) |
| 105 | return; |
| 106 | |
Michael Ellerman | 59e3f83 | 2009-10-13 19:44:47 +0000 | [diff] [blame] | 107 | if (!irq_has_action(dev->irq)) |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 108 | return; |
| 109 | |
Gavin Shan | dbbceee | 2012-09-07 22:44:20 +0000 | [diff] [blame] | 110 | edev->mode |= EEH_DEV_IRQ_DISABLED; |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 111 | disable_irq_nosync(dev->irq); |
| 112 | } |
| 113 | |
| 114 | /** |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 115 | * eeh_enable_irq - Enable interrupt for the recovering device |
| 116 | * @dev: PCI device |
| 117 | * |
| 118 | * This routine must be called to enable interrupt while failed |
| 119 | * device could be resumed. |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 120 | */ |
| 121 | static void eeh_enable_irq(struct pci_dev *dev) |
| 122 | { |
Gavin Shan | 40a7cd9 | 2012-02-27 20:04:08 +0000 | [diff] [blame] | 123 | struct eeh_dev *edev = pci_dev_to_eeh_dev(dev); |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 124 | |
Gavin Shan | dbbceee | 2012-09-07 22:44:20 +0000 | [diff] [blame] | 125 | if ((edev->mode) & EEH_DEV_IRQ_DISABLED) { |
| 126 | edev->mode &= ~EEH_DEV_IRQ_DISABLED; |
Thomas Gleixner | b8a9a11 | 2014-02-23 21:40:09 +0000 | [diff] [blame] | 127 | /* |
| 128 | * FIXME !!!!! |
| 129 | * |
| 130 | * This is just ass backwards. This maze has |
| 131 | * unbalanced irq_enable/disable calls. So instead of |
| 132 | * finding the root cause it works around the warning |
| 133 | * in the irq_enable code by conditionally calling |
| 134 | * into it. |
| 135 | * |
| 136 | * That's just wrong.The warning in the core code is |
| 137 | * there to tell people to fix their assymetries in |
| 138 | * their own code, not by abusing the core information |
| 139 | * to avoid it. |
| 140 | * |
| 141 | * I so wish that the assymetry would be the other way |
| 142 | * round and a few more irq_disable calls render that |
| 143 | * shit unusable forever. |
| 144 | * |
| 145 | * tglx |
| 146 | */ |
Thomas Gleixner | 57310c3 | 2014-03-05 00:06:11 +0100 | [diff] [blame] | 147 | if (irqd_irq_disabled(irq_get_irq_data(dev->irq))) |
Gavin Shan | 91150af | 2013-07-24 10:25:00 +0800 | [diff] [blame] | 148 | enable_irq(dev->irq); |
Thomas Gleixner | 57310c3 | 2014-03-05 00:06:11 +0100 | [diff] [blame] | 149 | } |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 150 | } |
| 151 | |
Gavin Shan | d2b0f6f | 2014-04-24 18:00:19 +1000 | [diff] [blame] | 152 | static bool eeh_dev_removed(struct eeh_dev *edev) |
| 153 | { |
| 154 | /* EEH device removed ? */ |
| 155 | if (!edev || (edev->mode & EEH_DEV_REMOVED)) |
| 156 | return true; |
| 157 | |
| 158 | return false; |
| 159 | } |
| 160 | |
Gavin Shan | 5cfb20b | 2014-09-30 12:39:07 +1000 | [diff] [blame] | 161 | static void *eeh_dev_save_state(void *data, void *userdata) |
| 162 | { |
| 163 | struct eeh_dev *edev = data; |
| 164 | struct pci_dev *pdev; |
| 165 | |
| 166 | if (!edev) |
| 167 | return NULL; |
| 168 | |
| 169 | pdev = eeh_dev_to_pci_dev(edev); |
| 170 | if (!pdev) |
| 171 | return NULL; |
| 172 | |
| 173 | pci_save_state(pdev); |
| 174 | return NULL; |
| 175 | } |
| 176 | |
Linas Vepstas | cb5b5624 | 2006-09-15 18:56:35 -0500 | [diff] [blame] | 177 | /** |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 178 | * eeh_report_error - Report pci error to each device driver |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 179 | * @data: eeh device |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 180 | * @userdata: return value |
Gavin Shan | a84f273 | 2013-06-20 13:20:51 +0800 | [diff] [blame] | 181 | * |
| 182 | * Report an EEH error to each device driver, collect up and |
| 183 | * merge the device driver responses. Cumulative response |
Linas Vepstas | cb5b5624 | 2006-09-15 18:56:35 -0500 | [diff] [blame] | 184 | * passed back in "userdata". |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 185 | */ |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 186 | static void *eeh_report_error(void *data, void *userdata) |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 187 | { |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 188 | struct eeh_dev *edev = (struct eeh_dev *)data; |
| 189 | struct pci_dev *dev = eeh_dev_to_pci_dev(edev); |
Paul Mackerras | 18eb3b3 | 2005-11-29 17:17:02 +1100 | [diff] [blame] | 190 | enum pci_ers_result rc, *res = userdata; |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 191 | struct pci_driver *driver; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 192 | |
Gavin Shan | d2b0f6f | 2014-04-24 18:00:19 +1000 | [diff] [blame] | 193 | if (!dev || eeh_dev_removed(edev)) |
| 194 | return NULL; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 195 | dev->error_state = pci_channel_io_frozen; |
| 196 | |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 197 | driver = eeh_pcid_get(dev); |
| 198 | if (!driver) return NULL; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 199 | |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 200 | eeh_disable_irq(dev); |
| 201 | |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 202 | if (!driver->err_handler || |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 203 | !driver->err_handler->error_detected) { |
| 204 | eeh_pcid_put(dev); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 205 | return NULL; |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 206 | } |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 207 | |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 208 | rc = driver->err_handler->error_detected(dev, pci_channel_io_frozen); |
Linas Vepstas | 2a50f14 | 2007-11-03 07:27:50 +1100 | [diff] [blame] | 209 | |
| 210 | /* A driver that needs a reset trumps all others */ |
| 211 | if (rc == PCI_ERS_RESULT_NEED_RESET) *res = rc; |
Paul Mackerras | 18eb3b3 | 2005-11-29 17:17:02 +1100 | [diff] [blame] | 212 | if (*res == PCI_ERS_RESULT_NONE) *res = rc; |
Zhang, Yanmin | 70298c6 | 2009-06-16 13:34:38 +0800 | [diff] [blame] | 213 | |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 214 | eeh_pcid_put(dev); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 215 | return NULL; |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 216 | } |
| 217 | |
| 218 | /** |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 219 | * eeh_report_mmio_enabled - Tell drivers that MMIO has been enabled |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 220 | * @data: eeh device |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 221 | * @userdata: return value |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 222 | * |
Linas Vepstas | 638799b | 2007-11-03 07:25:55 +1100 | [diff] [blame] | 223 | * Tells each device driver that IO ports, MMIO and config space I/O |
| 224 | * are now enabled. Collects up and merges the device driver responses. |
| 225 | * Cumulative response passed back in "userdata". |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 226 | */ |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 227 | static void *eeh_report_mmio_enabled(void *data, void *userdata) |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 228 | { |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 229 | struct eeh_dev *edev = (struct eeh_dev *)data; |
| 230 | struct pci_dev *dev = eeh_dev_to_pci_dev(edev); |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 231 | enum pci_ers_result rc, *res = userdata; |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 232 | struct pci_driver *driver; |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 233 | |
Gavin Shan | d2b0f6f | 2014-04-24 18:00:19 +1000 | [diff] [blame] | 234 | if (!dev || eeh_dev_removed(edev)) |
| 235 | return NULL; |
| 236 | |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 237 | driver = eeh_pcid_get(dev); |
| 238 | if (!driver) return NULL; |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 239 | |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 240 | if (!driver->err_handler || |
Gavin Shan | f26c7a0 | 2014-01-12 14:13:45 +0800 | [diff] [blame] | 241 | !driver->err_handler->mmio_enabled || |
| 242 | (edev->mode & EEH_DEV_NO_HANDLER)) { |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 243 | eeh_pcid_put(dev); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 244 | return NULL; |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 245 | } |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 246 | |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 247 | rc = driver->err_handler->mmio_enabled(dev); |
Linas Vepstas | 2a50f14 | 2007-11-03 07:27:50 +1100 | [diff] [blame] | 248 | |
| 249 | /* A driver that needs a reset trumps all others */ |
| 250 | if (rc == PCI_ERS_RESULT_NEED_RESET) *res = rc; |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 251 | if (*res == PCI_ERS_RESULT_NONE) *res = rc; |
Zhang, Yanmin | 70298c6 | 2009-06-16 13:34:38 +0800 | [diff] [blame] | 252 | |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 253 | eeh_pcid_put(dev); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 254 | return NULL; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 255 | } |
| 256 | |
Linas Vepstas | cb5b5624 | 2006-09-15 18:56:35 -0500 | [diff] [blame] | 257 | /** |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 258 | * eeh_report_reset - Tell device that slot has been reset |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 259 | * @data: eeh device |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 260 | * @userdata: return value |
| 261 | * |
| 262 | * This routine must be called while EEH tries to reset particular |
| 263 | * PCI device so that the associated PCI device driver could take |
| 264 | * some actions, usually to save data the driver needs so that the |
| 265 | * driver can work again while the device is recovered. |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 266 | */ |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 267 | static void *eeh_report_reset(void *data, void *userdata) |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 268 | { |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 269 | struct eeh_dev *edev = (struct eeh_dev *)data; |
| 270 | struct pci_dev *dev = eeh_dev_to_pci_dev(edev); |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 271 | enum pci_ers_result rc, *res = userdata; |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 272 | struct pci_driver *driver; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 273 | |
Gavin Shan | d2b0f6f | 2014-04-24 18:00:19 +1000 | [diff] [blame] | 274 | if (!dev || eeh_dev_removed(edev)) |
| 275 | return NULL; |
Mike Mason | c58dc57 | 2009-04-10 08:57:03 +0000 | [diff] [blame] | 276 | dev->error_state = pci_channel_io_normal; |
| 277 | |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 278 | driver = eeh_pcid_get(dev); |
| 279 | if (!driver) return NULL; |
| 280 | |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 281 | eeh_enable_irq(dev); |
| 282 | |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 283 | if (!driver->err_handler || |
Gavin Shan | f26c7a0 | 2014-01-12 14:13:45 +0800 | [diff] [blame] | 284 | !driver->err_handler->slot_reset || |
| 285 | (edev->mode & EEH_DEV_NO_HANDLER)) { |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 286 | eeh_pcid_put(dev); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 287 | return NULL; |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 288 | } |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 289 | |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 290 | rc = driver->err_handler->slot_reset(dev); |
Linas Vepstas | 5794dbc | 2007-03-19 14:55:51 -0500 | [diff] [blame] | 291 | if ((*res == PCI_ERS_RESULT_NONE) || |
| 292 | (*res == PCI_ERS_RESULT_RECOVERED)) *res = rc; |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 293 | if (*res == PCI_ERS_RESULT_DISCONNECT && |
| 294 | rc == PCI_ERS_RESULT_NEED_RESET) *res = rc; |
Zhang, Yanmin | 70298c6 | 2009-06-16 13:34:38 +0800 | [diff] [blame] | 295 | |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 296 | eeh_pcid_put(dev); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 297 | return NULL; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 298 | } |
| 299 | |
Gavin Shan | 5cfb20b | 2014-09-30 12:39:07 +1000 | [diff] [blame] | 300 | static void *eeh_dev_restore_state(void *data, void *userdata) |
| 301 | { |
| 302 | struct eeh_dev *edev = data; |
| 303 | struct pci_dev *pdev; |
| 304 | |
| 305 | if (!edev) |
| 306 | return NULL; |
| 307 | |
| 308 | pdev = eeh_dev_to_pci_dev(edev); |
| 309 | if (!pdev) |
| 310 | return NULL; |
| 311 | |
| 312 | pci_restore_state(pdev); |
| 313 | return NULL; |
| 314 | } |
| 315 | |
Linas Vepstas | cb5b5624 | 2006-09-15 18:56:35 -0500 | [diff] [blame] | 316 | /** |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 317 | * eeh_report_resume - Tell device to resume normal operations |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 318 | * @data: eeh device |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 319 | * @userdata: return value |
| 320 | * |
| 321 | * This routine must be called to notify the device driver that it |
| 322 | * could resume so that the device driver can do some initialization |
| 323 | * to make the recovered device work again. |
Linas Vepstas | cb5b5624 | 2006-09-15 18:56:35 -0500 | [diff] [blame] | 324 | */ |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 325 | static void *eeh_report_resume(void *data, void *userdata) |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 326 | { |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 327 | struct eeh_dev *edev = (struct eeh_dev *)data; |
| 328 | struct pci_dev *dev = eeh_dev_to_pci_dev(edev); |
| 329 | struct pci_driver *driver; |
| 330 | |
Gavin Shan | d2b0f6f | 2014-04-24 18:00:19 +1000 | [diff] [blame] | 331 | if (!dev || eeh_dev_removed(edev)) |
| 332 | return NULL; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 333 | dev->error_state = pci_channel_io_normal; |
| 334 | |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 335 | driver = eeh_pcid_get(dev); |
| 336 | if (!driver) return NULL; |
Linas Vepstas | d0e7034 | 2006-12-06 12:32:20 -0600 | [diff] [blame] | 337 | |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 338 | eeh_enable_irq(dev); |
| 339 | |
Linas Vepstas | d0e7034 | 2006-12-06 12:32:20 -0600 | [diff] [blame] | 340 | if (!driver->err_handler || |
Gavin Shan | f26c7a0 | 2014-01-12 14:13:45 +0800 | [diff] [blame] | 341 | !driver->err_handler->resume || |
| 342 | (edev->mode & EEH_DEV_NO_HANDLER)) { |
| 343 | edev->mode &= ~EEH_DEV_NO_HANDLER; |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 344 | eeh_pcid_put(dev); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 345 | return NULL; |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 346 | } |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 347 | |
| 348 | driver->err_handler->resume(dev); |
Zhang, Yanmin | 70298c6 | 2009-06-16 13:34:38 +0800 | [diff] [blame] | 349 | |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 350 | eeh_pcid_put(dev); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 351 | return NULL; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 352 | } |
| 353 | |
Linas Vepstas | cb5b5624 | 2006-09-15 18:56:35 -0500 | [diff] [blame] | 354 | /** |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 355 | * eeh_report_failure - Tell device driver that device is dead. |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 356 | * @data: eeh device |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 357 | * @userdata: return value |
Linas Vepstas | cb5b5624 | 2006-09-15 18:56:35 -0500 | [diff] [blame] | 358 | * |
| 359 | * This informs the device driver that the device is permanently |
| 360 | * dead, and that no further recovery attempts will be made on it. |
| 361 | */ |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 362 | static void *eeh_report_failure(void *data, void *userdata) |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 363 | { |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 364 | struct eeh_dev *edev = (struct eeh_dev *)data; |
| 365 | struct pci_dev *dev = eeh_dev_to_pci_dev(edev); |
| 366 | struct pci_driver *driver; |
| 367 | |
Gavin Shan | d2b0f6f | 2014-04-24 18:00:19 +1000 | [diff] [blame] | 368 | if (!dev || eeh_dev_removed(edev)) |
| 369 | return NULL; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 370 | dev->error_state = pci_channel_io_perm_failure; |
| 371 | |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 372 | driver = eeh_pcid_get(dev); |
| 373 | if (!driver) return NULL; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 374 | |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 375 | eeh_disable_irq(dev); |
| 376 | |
| 377 | if (!driver->err_handler || |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 378 | !driver->err_handler->error_detected) { |
| 379 | eeh_pcid_put(dev); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 380 | return NULL; |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 381 | } |
Mike Mason | 8535ef0 | 2009-02-10 11:12:21 +0000 | [diff] [blame] | 382 | |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 383 | driver->err_handler->error_detected(dev, pci_channel_io_perm_failure); |
Zhang, Yanmin | 70298c6 | 2009-06-16 13:34:38 +0800 | [diff] [blame] | 384 | |
Gavin Shan | feadf7c | 2012-09-17 04:34:27 +0000 | [diff] [blame] | 385 | eeh_pcid_put(dev); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 386 | return NULL; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 387 | } |
| 388 | |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 389 | static void *eeh_rmv_device(void *data, void *userdata) |
| 390 | { |
| 391 | struct pci_driver *driver; |
| 392 | struct eeh_dev *edev = (struct eeh_dev *)data; |
| 393 | struct pci_dev *dev = eeh_dev_to_pci_dev(edev); |
| 394 | int *removed = (int *)userdata; |
| 395 | |
| 396 | /* |
| 397 | * Actually, we should remove the PCI bridges as well. |
| 398 | * However, that's lots of complexity to do that, |
| 399 | * particularly some of devices under the bridge might |
| 400 | * support EEH. So we just care about PCI devices for |
| 401 | * simplicity here. |
| 402 | */ |
| 403 | if (!dev || (dev->hdr_type & PCI_HEADER_TYPE_BRIDGE)) |
| 404 | return NULL; |
Thadeu Lima de Souza Cascardo | 8cc6b6c | 2014-02-05 16:20:45 -0200 | [diff] [blame] | 405 | |
Gavin Shan | d2b0f6f | 2014-04-24 18:00:19 +1000 | [diff] [blame] | 406 | /* |
| 407 | * We rely on count-based pcibios_release_device() to |
| 408 | * detach permanently offlined PEs. Unfortunately, that's |
| 409 | * not reliable enough. We might have the permanently |
| 410 | * offlined PEs attached, but we needn't take care of |
| 411 | * them and their child devices. |
| 412 | */ |
| 413 | if (eeh_dev_removed(edev)) |
| 414 | return NULL; |
| 415 | |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 416 | driver = eeh_pcid_get(dev); |
Thadeu Lima de Souza Cascardo | 8cc6b6c | 2014-02-05 16:20:45 -0200 | [diff] [blame] | 417 | if (driver) { |
| 418 | eeh_pcid_put(dev); |
Gavin Shan | f2da4cc | 2015-10-08 14:58:53 +1100 | [diff] [blame] | 419 | if (driver->err_handler && |
| 420 | driver->err_handler->error_detected && |
| 421 | driver->err_handler->slot_reset && |
| 422 | driver->err_handler->resume) |
Thadeu Lima de Souza Cascardo | 8cc6b6c | 2014-02-05 16:20:45 -0200 | [diff] [blame] | 423 | return NULL; |
| 424 | } |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 425 | |
| 426 | /* Remove it from PCI subsystem */ |
| 427 | pr_debug("EEH: Removing %s without EEH sensitive driver\n", |
| 428 | pci_name(dev)); |
| 429 | edev->bus = dev->bus; |
| 430 | edev->mode |= EEH_DEV_DISCONNECTED; |
| 431 | (*removed)++; |
| 432 | |
Rafael J. Wysocki | 1c2042c | 2014-01-15 14:33:20 +0100 | [diff] [blame] | 433 | pci_lock_rescan_remove(); |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 434 | pci_stop_and_remove_bus_device(dev); |
Rafael J. Wysocki | 1c2042c | 2014-01-15 14:33:20 +0100 | [diff] [blame] | 435 | pci_unlock_rescan_remove(); |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 436 | |
| 437 | return NULL; |
| 438 | } |
| 439 | |
| 440 | static void *eeh_pe_detach_dev(void *data, void *userdata) |
| 441 | { |
| 442 | struct eeh_pe *pe = (struct eeh_pe *)data; |
| 443 | struct eeh_dev *edev, *tmp; |
| 444 | |
| 445 | eeh_pe_for_each_dev(pe, edev, tmp) { |
| 446 | if (!(edev->mode & EEH_DEV_DISCONNECTED)) |
| 447 | continue; |
| 448 | |
| 449 | edev->mode &= ~(EEH_DEV_DISCONNECTED | EEH_DEV_IRQ_DISABLED); |
| 450 | eeh_rmv_from_parent_pe(edev); |
| 451 | } |
| 452 | |
| 453 | return NULL; |
| 454 | } |
| 455 | |
Gavin Shan | 7895470 | 2014-04-24 18:00:14 +1000 | [diff] [blame] | 456 | /* |
| 457 | * Explicitly clear PE's frozen state for PowerNV where |
| 458 | * we have frozen PE until BAR restore is completed. It's |
| 459 | * harmless to clear it for pSeries. To be consistent with |
| 460 | * PE reset (for 3 times), we try to clear the frozen state |
| 461 | * for 3 times as well. |
| 462 | */ |
Gavin Shan | 2c66599 | 2014-05-05 09:29:02 +1000 | [diff] [blame] | 463 | static void *__eeh_clear_pe_frozen_state(void *data, void *flag) |
Gavin Shan | 7895470 | 2014-04-24 18:00:14 +1000 | [diff] [blame] | 464 | { |
Gavin Shan | 2c66599 | 2014-05-05 09:29:02 +1000 | [diff] [blame] | 465 | struct eeh_pe *pe = (struct eeh_pe *)data; |
Gavin Shan | 5cfb20b | 2014-09-30 12:39:07 +1000 | [diff] [blame] | 466 | bool *clear_sw_state = flag; |
Gavin Shan | c9dd014 | 2014-09-30 12:39:02 +1000 | [diff] [blame] | 467 | int i, rc = 1; |
Gavin Shan | 7895470 | 2014-04-24 18:00:14 +1000 | [diff] [blame] | 468 | |
Gavin Shan | c9dd014 | 2014-09-30 12:39:02 +1000 | [diff] [blame] | 469 | for (i = 0; rc && i < 3; i++) |
Gavin Shan | 5cfb20b | 2014-09-30 12:39:07 +1000 | [diff] [blame] | 470 | rc = eeh_unfreeze_pe(pe, clear_sw_state); |
Gavin Shan | 7895470 | 2014-04-24 18:00:14 +1000 | [diff] [blame] | 471 | |
Gavin Shan | c9dd014 | 2014-09-30 12:39:02 +1000 | [diff] [blame] | 472 | /* Stop immediately on any errors */ |
Gavin Shan | 2c66599 | 2014-05-05 09:29:02 +1000 | [diff] [blame] | 473 | if (rc) { |
Gavin Shan | c9dd014 | 2014-09-30 12:39:02 +1000 | [diff] [blame] | 474 | pr_warn("%s: Failure %d unfreezing PHB#%x-PE#%x\n", |
| 475 | __func__, rc, pe->phb->global_number, pe->addr); |
Gavin Shan | 2c66599 | 2014-05-05 09:29:02 +1000 | [diff] [blame] | 476 | return (void *)pe; |
| 477 | } |
| 478 | |
| 479 | return NULL; |
| 480 | } |
| 481 | |
Gavin Shan | 5cfb20b | 2014-09-30 12:39:07 +1000 | [diff] [blame] | 482 | static int eeh_clear_pe_frozen_state(struct eeh_pe *pe, |
| 483 | bool clear_sw_state) |
Gavin Shan | 2c66599 | 2014-05-05 09:29:02 +1000 | [diff] [blame] | 484 | { |
| 485 | void *rc; |
| 486 | |
Gavin Shan | 5cfb20b | 2014-09-30 12:39:07 +1000 | [diff] [blame] | 487 | rc = eeh_pe_traverse(pe, __eeh_clear_pe_frozen_state, &clear_sw_state); |
Gavin Shan | 2c66599 | 2014-05-05 09:29:02 +1000 | [diff] [blame] | 488 | if (!rc) |
Gavin Shan | 7895470 | 2014-04-24 18:00:14 +1000 | [diff] [blame] | 489 | eeh_pe_state_clear(pe, EEH_PE_ISOLATED); |
| 490 | |
Gavin Shan | 2c66599 | 2014-05-05 09:29:02 +1000 | [diff] [blame] | 491 | return rc ? -EIO : 0; |
Gavin Shan | 7895470 | 2014-04-24 18:00:14 +1000 | [diff] [blame] | 492 | } |
| 493 | |
Gavin Shan | 5cfb20b | 2014-09-30 12:39:07 +1000 | [diff] [blame] | 494 | int eeh_pe_reset_and_recover(struct eeh_pe *pe) |
| 495 | { |
| 496 | int result, ret; |
| 497 | |
| 498 | /* Bail if the PE is being recovered */ |
| 499 | if (pe->state & EEH_PE_RECOVERING) |
| 500 | return 0; |
| 501 | |
| 502 | /* Put the PE into recovery mode */ |
| 503 | eeh_pe_state_mark(pe, EEH_PE_RECOVERING); |
| 504 | |
| 505 | /* Save states */ |
| 506 | eeh_pe_dev_traverse(pe, eeh_dev_save_state, NULL); |
| 507 | |
| 508 | /* Report error */ |
| 509 | eeh_pe_dev_traverse(pe, eeh_report_error, &result); |
| 510 | |
| 511 | /* Issue reset */ |
Gavin Shan | 5cfb20b | 2014-09-30 12:39:07 +1000 | [diff] [blame] | 512 | ret = eeh_reset_pe(pe); |
| 513 | if (ret) { |
Gavin Shan | 28bf36f | 2014-11-14 10:47:29 +1100 | [diff] [blame] | 514 | eeh_pe_state_clear(pe, EEH_PE_RECOVERING); |
Gavin Shan | 5cfb20b | 2014-09-30 12:39:07 +1000 | [diff] [blame] | 515 | return ret; |
| 516 | } |
Gavin Shan | 5cfb20b | 2014-09-30 12:39:07 +1000 | [diff] [blame] | 517 | |
| 518 | /* Unfreeze the PE */ |
| 519 | ret = eeh_clear_pe_frozen_state(pe, true); |
| 520 | if (ret) { |
| 521 | eeh_pe_state_clear(pe, EEH_PE_RECOVERING); |
| 522 | return ret; |
| 523 | } |
| 524 | |
| 525 | /* Notify completion of reset */ |
| 526 | eeh_pe_dev_traverse(pe, eeh_report_reset, &result); |
| 527 | |
| 528 | /* Restore device state */ |
| 529 | eeh_pe_dev_traverse(pe, eeh_dev_restore_state, NULL); |
| 530 | |
| 531 | /* Resume */ |
| 532 | eeh_pe_dev_traverse(pe, eeh_report_resume, NULL); |
| 533 | |
| 534 | /* Clear recovery mode */ |
| 535 | eeh_pe_state_clear(pe, EEH_PE_RECOVERING); |
| 536 | |
| 537 | return 0; |
| 538 | } |
| 539 | |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 540 | /** |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 541 | * eeh_reset_device - Perform actual reset of a pci slot |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 542 | * @pe: EEH PE |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 543 | * @bus: PCI bus corresponding to the isolcated slot |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 544 | * |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 545 | * This routine must be called to do reset on the indicated PE. |
| 546 | * During the reset, udev might be invoked because those affected |
| 547 | * PCI devices will be removed and then added. |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 548 | */ |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 549 | static int eeh_reset_device(struct eeh_pe *pe, struct pci_bus *bus) |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 550 | { |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 551 | struct pci_bus *frozen_bus = eeh_pe_bus_get(pe); |
Gavin Shan | 5a71978 | 2013-06-20 13:21:01 +0800 | [diff] [blame] | 552 | struct timeval tstamp; |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 553 | int cnt, rc, removed = 0; |
Linas Vepstas | 4240545 | 2006-04-28 17:39:38 -0500 | [diff] [blame] | 554 | |
| 555 | /* pcibios will clear the counter; save the value */ |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 556 | cnt = pe->freeze_count; |
Gavin Shan | 5a71978 | 2013-06-20 13:21:01 +0800 | [diff] [blame] | 557 | tstamp = pe->tstamp; |
Linas Vepstas | 4240545 | 2006-04-28 17:39:38 -0500 | [diff] [blame] | 558 | |
Gavin Shan | 20ee6a9 | 2012-09-11 19:16:17 +0000 | [diff] [blame] | 559 | /* |
| 560 | * We don't remove the corresponding PE instances because |
| 561 | * we need the information afterwords. The attached EEH |
| 562 | * devices are expected to be attached soon when calling |
| 563 | * into pcibios_add_pci_devices(). |
| 564 | */ |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 565 | eeh_pe_state_mark(pe, EEH_PE_KEEP); |
Rafael J. Wysocki | 1c2042c | 2014-01-15 14:33:20 +0100 | [diff] [blame] | 566 | if (bus) { |
| 567 | pci_lock_rescan_remove(); |
Gavin Shan | 807a827 | 2013-07-24 10:24:55 +0800 | [diff] [blame] | 568 | pcibios_remove_pci_devices(bus); |
Rafael J. Wysocki | 1c2042c | 2014-01-15 14:33:20 +0100 | [diff] [blame] | 569 | pci_unlock_rescan_remove(); |
| 570 | } else if (frozen_bus) { |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 571 | eeh_pe_dev_traverse(pe, eeh_rmv_device, &removed); |
Rafael J. Wysocki | 1c2042c | 2014-01-15 14:33:20 +0100 | [diff] [blame] | 572 | } |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 573 | |
Gavin Shan | d0914f5 | 2014-04-24 18:00:12 +1000 | [diff] [blame] | 574 | /* |
| 575 | * Reset the pci controller. (Asserts RST#; resets config space). |
Linas Vepstas | b6495c0 | 2005-11-03 18:54:54 -0600 | [diff] [blame] | 576 | * Reconfigure bridges and devices. Don't try to bring the system |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 577 | * up if the reset failed for some reason. |
Gavin Shan | d0914f5 | 2014-04-24 18:00:12 +1000 | [diff] [blame] | 578 | * |
| 579 | * During the reset, it's very dangerous to have uncontrolled PCI |
| 580 | * config accesses. So we prefer to block them. However, controlled |
| 581 | * PCI config accesses initiated from EEH itself are allowed. |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 582 | */ |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 583 | rc = eeh_reset_pe(pe); |
Gavin Shan | 28bf36f | 2014-11-14 10:47:29 +1100 | [diff] [blame] | 584 | if (rc) |
Linas Vepstas | b6495c0 | 2005-11-03 18:54:54 -0600 | [diff] [blame] | 585 | return rc; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 586 | |
Rafael J. Wysocki | 1c2042c | 2014-01-15 14:33:20 +0100 | [diff] [blame] | 587 | pci_lock_rescan_remove(); |
| 588 | |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 589 | /* Restore PE */ |
| 590 | eeh_ops->configure_bridge(pe); |
| 591 | eeh_pe_restore_bars(pe); |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 592 | |
Gavin Shan | 527d10e | 2015-10-08 14:58:52 +1100 | [diff] [blame] | 593 | /* |
| 594 | * If it's PHB PE, the frozen state on all available PEs should have |
| 595 | * been cleared by the PHB reset. Otherwise, we unfreeze the PE and its |
| 596 | * child PEs because they might be in frozen state. |
| 597 | */ |
| 598 | if (!(pe->type & EEH_PE_PHB)) { |
| 599 | rc = eeh_clear_pe_frozen_state(pe, false); |
| 600 | if (rc) |
| 601 | return rc; |
| 602 | } |
Gavin Shan | 7895470 | 2014-04-24 18:00:14 +1000 | [diff] [blame] | 603 | |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 604 | /* Give the system 5 seconds to finish running the user-space |
Gavin Shan | a84f273 | 2013-06-20 13:20:51 +0800 | [diff] [blame] | 605 | * hotplug shutdown scripts, e.g. ifdown for ethernet. Yes, |
| 606 | * this is a hack, but if we don't do this, and try to bring |
| 607 | * the device up before the scripts have taken it down, |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 608 | * potentially weird things happen. |
| 609 | */ |
| 610 | if (bus) { |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 611 | pr_info("EEH: Sleep 5s ahead of complete hotplug\n"); |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 612 | ssleep(5); |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 613 | |
| 614 | /* |
| 615 | * The EEH device is still connected with its parent |
| 616 | * PE. We should disconnect it so the binding can be |
| 617 | * rebuilt when adding PCI devices. |
| 618 | */ |
| 619 | eeh_pe_traverse(pe, eeh_pe_detach_dev, NULL); |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 620 | pcibios_add_pci_devices(bus); |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 621 | } else if (frozen_bus && removed) { |
| 622 | pr_info("EEH: Sleep 5s ahead of partial hotplug\n"); |
| 623 | ssleep(5); |
| 624 | |
| 625 | eeh_pe_traverse(pe, eeh_pe_detach_dev, NULL); |
| 626 | pcibios_add_pci_devices(frozen_bus); |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 627 | } |
Gavin Shan | f5c5771 | 2013-07-24 10:24:58 +0800 | [diff] [blame] | 628 | eeh_pe_state_clear(pe, EEH_PE_KEEP); |
Gavin Shan | 5a71978 | 2013-06-20 13:21:01 +0800 | [diff] [blame] | 629 | |
| 630 | pe->tstamp = tstamp; |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 631 | pe->freeze_count = cnt; |
Linas Vepstas | b6495c0 | 2005-11-03 18:54:54 -0600 | [diff] [blame] | 632 | |
Rafael J. Wysocki | 1c2042c | 2014-01-15 14:33:20 +0100 | [diff] [blame] | 633 | pci_unlock_rescan_remove(); |
Linas Vepstas | b6495c0 | 2005-11-03 18:54:54 -0600 | [diff] [blame] | 634 | return 0; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 635 | } |
| 636 | |
| 637 | /* The longest amount of time to wait for a pci device |
| 638 | * to come back on line, in seconds. |
| 639 | */ |
Brian King | fb48dc2 | 2013-11-25 16:27:54 -0600 | [diff] [blame] | 640 | #define MAX_WAIT_FOR_RECOVERY 300 |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 641 | |
Gavin Shan | 8a6b1bc | 2013-06-20 13:21:04 +0800 | [diff] [blame] | 642 | static void eeh_handle_normal_event(struct eeh_pe *pe) |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 643 | { |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 644 | struct pci_bus *frozen_bus; |
Linas Vepstas | b6495c0 | 2005-11-03 18:54:54 -0600 | [diff] [blame] | 645 | int rc = 0; |
Paul Mackerras | 18eb3b3 | 2005-11-29 17:17:02 +1100 | [diff] [blame] | 646 | enum pci_ers_result result = PCI_ERS_RESULT_NONE; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 647 | |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 648 | frozen_bus = eeh_pe_bus_get(pe); |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 649 | if (!frozen_bus) { |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 650 | pr_err("%s: Cannot find PCI bus for PHB#%d-PE#%x\n", |
| 651 | __func__, pe->phb->global_number, pe->addr); |
| 652 | return; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 653 | } |
| 654 | |
Gavin Shan | 5a71978 | 2013-06-20 13:21:01 +0800 | [diff] [blame] | 655 | eeh_pe_update_time_stamp(pe); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 656 | pe->freeze_count++; |
Gavin Shan | 1b28f17 | 2014-12-11 14:28:56 +1100 | [diff] [blame] | 657 | if (pe->freeze_count > eeh_max_freezes) |
Linas Vepstas | 8df8302 | 2006-03-29 15:31:04 -0600 | [diff] [blame] | 658 | goto excess_failures; |
Gavin Shan | 0dae274 | 2014-07-17 14:41:41 +1000 | [diff] [blame] | 659 | pr_warn("EEH: This PCI device has failed %d times in the last hour\n", |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 660 | pe->freeze_count); |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 661 | |
| 662 | /* Walk the various device drivers attached to this slot through |
| 663 | * a reset sequence, giving each an opportunity to do what it needs |
| 664 | * to accomplish the reset. Each child gets a report of the |
| 665 | * status ... if any child can't handle the reset, then the entire |
| 666 | * slot is dlpar removed and added. |
Gavin Shan | 8234fce | 2015-10-08 14:58:54 +1100 | [diff] [blame] | 667 | * |
| 668 | * When the PHB is fenced, we have to issue a reset to recover from |
| 669 | * the error. Override the result if necessary to have partially |
| 670 | * hotplug for this case. |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 671 | */ |
Gavin Shan | 56ca4fd | 2013-06-27 13:46:46 +0800 | [diff] [blame] | 672 | pr_info("EEH: Notify device drivers to shutdown\n"); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 673 | eeh_pe_dev_traverse(pe, eeh_report_error, &result); |
Gavin Shan | 8234fce | 2015-10-08 14:58:54 +1100 | [diff] [blame] | 674 | if ((pe->type & EEH_PE_PHB) && |
| 675 | result != PCI_ERS_RESULT_NONE && |
| 676 | result != PCI_ERS_RESULT_NEED_RESET) |
| 677 | result = PCI_ERS_RESULT_NEED_RESET; |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 678 | |
Linas Vepstas | 5f1a7c8 | 2007-11-16 05:58:36 +1100 | [diff] [blame] | 679 | /* Get the current PCI slot state. This can take a long time, |
Wei Yang | 2ac3990 | 2015-04-27 09:25:10 +0800 | [diff] [blame] | 680 | * sometimes over 300 seconds for certain systems. |
Gavin Shan | 29f8bf1 | 2012-02-27 20:04:02 +0000 | [diff] [blame] | 681 | */ |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 682 | rc = eeh_ops->wait_state(pe, MAX_WAIT_FOR_RECOVERY*1000); |
Gavin Shan | eb594a4 | 2012-02-27 20:03:57 +0000 | [diff] [blame] | 683 | if (rc < 0 || rc == EEH_STATE_NOT_SUPPORT) { |
Gavin Shan | 0dae274 | 2014-07-17 14:41:41 +1000 | [diff] [blame] | 684 | pr_warn("EEH: Permanent failure\n"); |
Linas Vepstas | 5f1a7c8 | 2007-11-16 05:58:36 +1100 | [diff] [blame] | 685 | goto hard_fail; |
| 686 | } |
| 687 | |
Linas Vepstas | ede8ca2 | 2007-05-09 09:33:29 +1000 | [diff] [blame] | 688 | /* Since rtas may enable MMIO when posting the error log, |
| 689 | * don't post the error log until after all dev drivers |
Linas Vepstas | 17213c3 | 2007-05-10 02:38:11 +1000 | [diff] [blame] | 690 | * have been informed. |
| 691 | */ |
Gavin Shan | 56ca4fd | 2013-06-27 13:46:46 +0800 | [diff] [blame] | 692 | pr_info("EEH: Collect temporary log\n"); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 693 | eeh_slot_error_detail(pe, EEH_LOG_TEMP); |
Linas Vepstas | ede8ca2 | 2007-05-09 09:33:29 +1000 | [diff] [blame] | 694 | |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 695 | /* If all device drivers were EEH-unaware, then shut |
| 696 | * down all of the device drivers, and hope they |
| 697 | * go down willingly, without panicing the system. |
| 698 | */ |
Paul Mackerras | 18eb3b3 | 2005-11-29 17:17:02 +1100 | [diff] [blame] | 699 | if (result == PCI_ERS_RESULT_NONE) { |
Gavin Shan | 56ca4fd | 2013-06-27 13:46:46 +0800 | [diff] [blame] | 700 | pr_info("EEH: Reset with hotplug activity\n"); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 701 | rc = eeh_reset_device(pe, frozen_bus); |
Linas Vepstas | e0f90b6 | 2007-03-19 14:52:04 -0500 | [diff] [blame] | 702 | if (rc) { |
Gavin Shan | 0dae274 | 2014-07-17 14:41:41 +1000 | [diff] [blame] | 703 | pr_warn("%s: Unable to reset, err=%d\n", |
| 704 | __func__, rc); |
Linas Vepstas | b6495c0 | 2005-11-03 18:54:54 -0600 | [diff] [blame] | 705 | goto hard_fail; |
Linas Vepstas | e0f90b6 | 2007-03-19 14:52:04 -0500 | [diff] [blame] | 706 | } |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 707 | } |
| 708 | |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 709 | /* If all devices reported they can proceed, then re-enable MMIO */ |
| 710 | if (result == PCI_ERS_RESULT_CAN_RECOVER) { |
Gavin Shan | 56ca4fd | 2013-06-27 13:46:46 +0800 | [diff] [blame] | 711 | pr_info("EEH: Enable I/O for affected devices\n"); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 712 | rc = eeh_pci_enable(pe, EEH_OPT_THAW_MMIO); |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 713 | |
Linas Vepstas | fa1be47 | 2007-03-19 14:59:59 -0500 | [diff] [blame] | 714 | if (rc < 0) |
| 715 | goto hard_fail; |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 716 | if (rc) { |
| 717 | result = PCI_ERS_RESULT_NEED_RESET; |
| 718 | } else { |
Gavin Shan | 56ca4fd | 2013-06-27 13:46:46 +0800 | [diff] [blame] | 719 | pr_info("EEH: Notify device drivers to resume I/O\n"); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 720 | eeh_pe_dev_traverse(pe, eeh_report_mmio_enabled, &result); |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 721 | } |
| 722 | } |
| 723 | |
| 724 | /* If all devices reported they can proceed, then re-enable DMA */ |
| 725 | if (result == PCI_ERS_RESULT_CAN_RECOVER) { |
Gavin Shan | 56ca4fd | 2013-06-27 13:46:46 +0800 | [diff] [blame] | 726 | pr_info("EEH: Enabled DMA for affected devices\n"); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 727 | rc = eeh_pci_enable(pe, EEH_OPT_THAW_DMA); |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 728 | |
Linas Vepstas | fa1be47 | 2007-03-19 14:59:59 -0500 | [diff] [blame] | 729 | if (rc < 0) |
| 730 | goto hard_fail; |
Gavin Shan | 35845a7 | 2014-04-24 18:00:26 +1000 | [diff] [blame] | 731 | if (rc) { |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 732 | result = PCI_ERS_RESULT_NEED_RESET; |
Gavin Shan | 35845a7 | 2014-04-24 18:00:26 +1000 | [diff] [blame] | 733 | } else { |
| 734 | /* |
| 735 | * We didn't do PE reset for the case. The PE |
| 736 | * is still in frozen state. Clear it before |
| 737 | * resuming the PE. |
| 738 | */ |
| 739 | eeh_pe_state_clear(pe, EEH_PE_ISOLATED); |
Linas Vepstas | d0e7034 | 2006-12-06 12:32:20 -0600 | [diff] [blame] | 740 | result = PCI_ERS_RESULT_RECOVERED; |
Gavin Shan | 35845a7 | 2014-04-24 18:00:26 +1000 | [diff] [blame] | 741 | } |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 742 | } |
| 743 | |
| 744 | /* If any device has a hard failure, then shut off everything. */ |
Linas Vepstas | e0f90b6 | 2007-03-19 14:52:04 -0500 | [diff] [blame] | 745 | if (result == PCI_ERS_RESULT_DISCONNECT) { |
Gavin Shan | 0dae274 | 2014-07-17 14:41:41 +1000 | [diff] [blame] | 746 | pr_warn("EEH: Device driver gave up\n"); |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 747 | goto hard_fail; |
Linas Vepstas | e0f90b6 | 2007-03-19 14:52:04 -0500 | [diff] [blame] | 748 | } |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 749 | |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 750 | /* If any device called out for a reset, then reset the slot */ |
Paul Mackerras | 18eb3b3 | 2005-11-29 17:17:02 +1100 | [diff] [blame] | 751 | if (result == PCI_ERS_RESULT_NEED_RESET) { |
Gavin Shan | 56ca4fd | 2013-06-27 13:46:46 +0800 | [diff] [blame] | 752 | pr_info("EEH: Reset without hotplug activity\n"); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 753 | rc = eeh_reset_device(pe, NULL); |
Linas Vepstas | e0f90b6 | 2007-03-19 14:52:04 -0500 | [diff] [blame] | 754 | if (rc) { |
Gavin Shan | 0dae274 | 2014-07-17 14:41:41 +1000 | [diff] [blame] | 755 | pr_warn("%s: Cannot reset, err=%d\n", |
| 756 | __func__, rc); |
Linas Vepstas | b6495c0 | 2005-11-03 18:54:54 -0600 | [diff] [blame] | 757 | goto hard_fail; |
Linas Vepstas | e0f90b6 | 2007-03-19 14:52:04 -0500 | [diff] [blame] | 758 | } |
Gavin Shan | 56ca4fd | 2013-06-27 13:46:46 +0800 | [diff] [blame] | 759 | |
| 760 | pr_info("EEH: Notify device drivers " |
| 761 | "the completion of reset\n"); |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 762 | result = PCI_ERS_RESULT_NONE; |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 763 | eeh_pe_dev_traverse(pe, eeh_report_reset, &result); |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 764 | } |
| 765 | |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 766 | /* All devices should claim they have recovered by now. */ |
Linas Vepstas | 90fdd61 | 2007-03-19 14:55:10 -0500 | [diff] [blame] | 767 | if ((result != PCI_ERS_RESULT_RECOVERED) && |
| 768 | (result != PCI_ERS_RESULT_NONE)) { |
Gavin Shan | 0dae274 | 2014-07-17 14:41:41 +1000 | [diff] [blame] | 769 | pr_warn("EEH: Not recovered\n"); |
Linas Vepstas | 6a1ca37 | 2006-09-15 18:58:59 -0500 | [diff] [blame] | 770 | goto hard_fail; |
Linas Vepstas | e0f90b6 | 2007-03-19 14:52:04 -0500 | [diff] [blame] | 771 | } |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 772 | |
| 773 | /* Tell all device drivers that they can resume operations */ |
Gavin Shan | 56ca4fd | 2013-06-27 13:46:46 +0800 | [diff] [blame] | 774 | pr_info("EEH: Notify device driver to resume\n"); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 775 | eeh_pe_dev_traverse(pe, eeh_report_resume, NULL); |
Linas Vepstas | b6495c0 | 2005-11-03 18:54:54 -0600 | [diff] [blame] | 776 | |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 777 | return; |
Gavin Shan | a84f273 | 2013-06-20 13:20:51 +0800 | [diff] [blame] | 778 | |
Linas Vepstas | 8df8302 | 2006-03-29 15:31:04 -0600 | [diff] [blame] | 779 | excess_failures: |
Linas Vepstas | b6495c0 | 2005-11-03 18:54:54 -0600 | [diff] [blame] | 780 | /* |
| 781 | * About 90% of all real-life EEH failures in the field |
| 782 | * are due to poorly seated PCI cards. Only 10% or so are |
| 783 | * due to actual, failed cards. |
| 784 | */ |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 785 | pr_err("EEH: PHB#%d-PE#%x has failed %d times in the\n" |
| 786 | "last hour and has been permanently disabled.\n" |
| 787 | "Please try reseating or replacing it.\n", |
| 788 | pe->phb->global_number, pe->addr, |
| 789 | pe->freeze_count); |
Linas Vepstas | 8df8302 | 2006-03-29 15:31:04 -0600 | [diff] [blame] | 790 | goto perm_error; |
Linas Vepstas | b6495c0 | 2005-11-03 18:54:54 -0600 | [diff] [blame] | 791 | |
Linas Vepstas | 8df8302 | 2006-03-29 15:31:04 -0600 | [diff] [blame] | 792 | hard_fail: |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 793 | pr_err("EEH: Unable to recover from failure from PHB#%d-PE#%x.\n" |
| 794 | "Please try reseating or replacing it\n", |
| 795 | pe->phb->global_number, pe->addr); |
Linas Vepstas | 8df8302 | 2006-03-29 15:31:04 -0600 | [diff] [blame] | 796 | |
| 797 | perm_error: |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 798 | eeh_slot_error_detail(pe, EEH_LOG_PERM); |
Linas Vepstas | b6495c0 | 2005-11-03 18:54:54 -0600 | [diff] [blame] | 799 | |
| 800 | /* Notify all devices that they're about to go down. */ |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 801 | eeh_pe_dev_traverse(pe, eeh_report_failure, NULL); |
Linas Vepstas | b6495c0 | 2005-11-03 18:54:54 -0600 | [diff] [blame] | 802 | |
Gavin Shan | d2b0f6f | 2014-04-24 18:00:19 +1000 | [diff] [blame] | 803 | /* Mark the PE to be removed permanently */ |
Gavin Shan | 432227e | 2014-12-11 14:28:55 +1100 | [diff] [blame] | 804 | eeh_pe_state_mark(pe, EEH_PE_REMOVED); |
Gavin Shan | d2b0f6f | 2014-04-24 18:00:19 +1000 | [diff] [blame] | 805 | |
| 806 | /* |
| 807 | * Shut down the device drivers for good. We mark |
| 808 | * all removed devices correctly to avoid access |
| 809 | * the their PCI config any more. |
| 810 | */ |
Rafael J. Wysocki | 1c2042c | 2014-01-15 14:33:20 +0100 | [diff] [blame] | 811 | if (frozen_bus) { |
Gavin Shan | d2b0f6f | 2014-04-24 18:00:19 +1000 | [diff] [blame] | 812 | eeh_pe_dev_mode_mark(pe, EEH_DEV_REMOVED); |
| 813 | |
Rafael J. Wysocki | 1c2042c | 2014-01-15 14:33:20 +0100 | [diff] [blame] | 814 | pci_lock_rescan_remove(); |
Gavin Shan | 9b3c76f | 2012-09-07 22:44:19 +0000 | [diff] [blame] | 815 | pcibios_remove_pci_devices(frozen_bus); |
Rafael J. Wysocki | 1c2042c | 2014-01-15 14:33:20 +0100 | [diff] [blame] | 816 | pci_unlock_rescan_remove(); |
| 817 | } |
Linas Vepstas | 77bd741 | 2005-11-03 18:52:49 -0600 | [diff] [blame] | 818 | } |
Gavin Shan | 8a6b1bc | 2013-06-20 13:21:04 +0800 | [diff] [blame] | 819 | |
| 820 | static void eeh_handle_special_event(void) |
| 821 | { |
| 822 | struct eeh_pe *pe, *phb_pe; |
| 823 | struct pci_bus *bus; |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 824 | struct pci_controller *hose; |
Gavin Shan | 8a6b1bc | 2013-06-20 13:21:04 +0800 | [diff] [blame] | 825 | unsigned long flags; |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 826 | int rc; |
Gavin Shan | 8a6b1bc | 2013-06-20 13:21:04 +0800 | [diff] [blame] | 827 | |
Gavin Shan | 8a6b1bc | 2013-06-20 13:21:04 +0800 | [diff] [blame] | 828 | |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 829 | do { |
| 830 | rc = eeh_ops->next_error(&pe); |
Gavin Shan | 8a6b1bc | 2013-06-20 13:21:04 +0800 | [diff] [blame] | 831 | |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 832 | switch (rc) { |
| 833 | case EEH_NEXT_ERR_DEAD_IOC: |
| 834 | /* Mark all PHBs in dead state */ |
| 835 | eeh_serialize_lock(&flags); |
| 836 | |
| 837 | /* Purge all events */ |
Gavin Shan | 5c7a35e | 2014-06-04 17:31:52 +1000 | [diff] [blame] | 838 | eeh_remove_event(NULL, true); |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 839 | |
| 840 | list_for_each_entry(hose, &hose_list, list_node) { |
| 841 | phb_pe = eeh_phb_pe_get(hose); |
| 842 | if (!phb_pe) continue; |
| 843 | |
Gavin Shan | 9e04937 | 2014-04-24 18:00:07 +1000 | [diff] [blame] | 844 | eeh_pe_state_mark(phb_pe, EEH_PE_ISOLATED); |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 845 | } |
| 846 | |
| 847 | eeh_serialize_unlock(flags); |
| 848 | |
| 849 | break; |
| 850 | case EEH_NEXT_ERR_FROZEN_PE: |
| 851 | case EEH_NEXT_ERR_FENCED_PHB: |
| 852 | case EEH_NEXT_ERR_DEAD_PHB: |
| 853 | /* Mark the PE in fenced state */ |
| 854 | eeh_serialize_lock(&flags); |
| 855 | |
| 856 | /* Purge all events of the PHB */ |
Gavin Shan | 5c7a35e | 2014-06-04 17:31:52 +1000 | [diff] [blame] | 857 | eeh_remove_event(pe, true); |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 858 | |
| 859 | if (rc == EEH_NEXT_ERR_DEAD_PHB) |
Gavin Shan | 9e04937 | 2014-04-24 18:00:07 +1000 | [diff] [blame] | 860 | eeh_pe_state_mark(pe, EEH_PE_ISOLATED); |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 861 | else |
| 862 | eeh_pe_state_mark(pe, |
| 863 | EEH_PE_ISOLATED | EEH_PE_RECOVERING); |
| 864 | |
| 865 | eeh_serialize_unlock(flags); |
| 866 | |
| 867 | break; |
| 868 | case EEH_NEXT_ERR_NONE: |
| 869 | return; |
| 870 | default: |
| 871 | pr_warn("%s: Invalid value %d from next_error()\n", |
| 872 | __func__, rc); |
| 873 | return; |
Gavin Shan | 8a6b1bc | 2013-06-20 13:21:04 +0800 | [diff] [blame] | 874 | } |
Gavin Shan | 8a6b1bc | 2013-06-20 13:21:04 +0800 | [diff] [blame] | 875 | |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 876 | /* |
| 877 | * For fenced PHB and frozen PE, it's handled as normal |
| 878 | * event. We have to remove the affected PHBs for dead |
| 879 | * PHB and IOC |
| 880 | */ |
| 881 | if (rc == EEH_NEXT_ERR_FROZEN_PE || |
| 882 | rc == EEH_NEXT_ERR_FENCED_PHB) { |
| 883 | eeh_handle_normal_event(pe); |
Gavin Shan | 9e04937 | 2014-04-24 18:00:07 +1000 | [diff] [blame] | 884 | eeh_pe_state_clear(pe, EEH_PE_RECOVERING); |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 885 | } else { |
Linus Torvalds | 1b17366 | 2014-01-27 21:11:26 -0800 | [diff] [blame] | 886 | pci_lock_rescan_remove(); |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 887 | list_for_each_entry(hose, &hose_list, list_node) { |
| 888 | phb_pe = eeh_phb_pe_get(hose); |
| 889 | if (!phb_pe || |
Gavin Shan | 9e04937 | 2014-04-24 18:00:07 +1000 | [diff] [blame] | 890 | !(phb_pe->state & EEH_PE_ISOLATED) || |
| 891 | (phb_pe->state & EEH_PE_RECOVERING)) |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 892 | continue; |
Gavin Shan | 8a6b1bc | 2013-06-20 13:21:04 +0800 | [diff] [blame] | 893 | |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 894 | /* Notify all devices to be down */ |
| 895 | bus = eeh_pe_bus_get(phb_pe); |
| 896 | eeh_pe_dev_traverse(pe, |
| 897 | eeh_report_failure, NULL); |
| 898 | pcibios_remove_pci_devices(bus); |
| 899 | } |
Linus Torvalds | 1b17366 | 2014-01-27 21:11:26 -0800 | [diff] [blame] | 900 | pci_unlock_rescan_remove(); |
Gavin Shan | 8a6b1bc | 2013-06-20 13:21:04 +0800 | [diff] [blame] | 901 | } |
Gavin Shan | 7e4e786 | 2014-01-15 13:16:11 +0800 | [diff] [blame] | 902 | |
| 903 | /* |
| 904 | * If we have detected dead IOC, we needn't proceed |
| 905 | * any more since all PHBs would have been removed |
| 906 | */ |
| 907 | if (rc == EEH_NEXT_ERR_DEAD_IOC) |
| 908 | break; |
| 909 | } while (rc != EEH_NEXT_ERR_NONE); |
Gavin Shan | 8a6b1bc | 2013-06-20 13:21:04 +0800 | [diff] [blame] | 910 | } |
| 911 | |
| 912 | /** |
| 913 | * eeh_handle_event - Reset a PCI device after hard lockup. |
| 914 | * @pe: EEH PE |
| 915 | * |
| 916 | * While PHB detects address or data parity errors on particular PCI |
| 917 | * slot, the associated PE will be frozen. Besides, DMA's occurring |
| 918 | * to wild addresses (which usually happen due to bugs in device |
| 919 | * drivers or in PCI adapter firmware) can cause EEH error. #SERR, |
| 920 | * #PERR or other misc PCI-related errors also can trigger EEH errors. |
| 921 | * |
| 922 | * Recovery process consists of unplugging the device driver (which |
| 923 | * generated hotplug events to userspace), then issuing a PCI #RST to |
| 924 | * the device, then reconfiguring the PCI config space for all bridges |
| 925 | * & devices under this slot, and then finally restarting the device |
| 926 | * drivers (which cause a second set of hotplug events to go out to |
| 927 | * userspace). |
| 928 | */ |
| 929 | void eeh_handle_event(struct eeh_pe *pe) |
| 930 | { |
| 931 | if (pe) |
| 932 | eeh_handle_normal_event(pe); |
| 933 | else |
| 934 | eeh_handle_special_event(); |
| 935 | } |