blob: 49805a48b81c065b851b4f54ca3d2f52ce24fddc [file] [log] [blame]
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +08001/*
2 * drivers/pci/pcie/aer/aerdrv.c
3 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * This file implements the AER root port service driver. The driver will
9 * register an irq handler. When root port triggers an AER interrupt, the irq
10 * handler will collect root port status and schedule a work.
11 *
12 * Copyright (C) 2006 Intel Corp.
13 * Tom Long Nguyen (tom.l.nguyen@intel.com)
14 * Zhang Yanmin (yanmin.zhang@intel.com)
15 *
16 */
17
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080018#include <linux/pci.h>
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +010019#include <linux/pci-acpi.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040020#include <linux/sched.h>
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080021#include <linux/kernel.h>
22#include <linux/errno.h>
23#include <linux/pm.h>
24#include <linux/init.h>
25#include <linux/interrupt.h>
26#include <linux/delay.h>
27#include <linux/pcieport_if.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080029
30#include "aerdrv.h"
Alex Chiang5d9526d2008-06-04 11:39:07 -060031#include "../../pci.h"
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080032
33/*
34 * Version Information
35 */
36#define DRIVER_VERSION "v1.0"
37#define DRIVER_AUTHOR "tom.l.nguyen@intel.com"
38#define DRIVER_DESC "Root Port Advanced Error Reporting Driver"
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080039
Bill Pemberton15856ad2012-11-21 15:35:00 -050040static int aer_probe(struct pcie_device *dev);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080041static void aer_remove(struct pcie_device *dev);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080042static pci_ers_result_t aer_error_detected(struct pci_dev *dev,
43 enum pci_channel_state error);
44static void aer_error_resume(struct pci_dev *dev);
45static pci_ers_result_t aer_root_reset(struct pci_dev *dev);
46
Stephen Hemminger49453022012-09-07 09:33:14 -070047static const struct pci_error_handlers aer_error_handlers = {
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080048 .error_detected = aer_error_detected,
Hidetoshi Setoc9a91882009-09-07 17:07:29 +090049 .resume = aer_error_resume,
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080050};
51
Sam Ravnborgc1996c22007-02-27 10:22:00 +010052static struct pcie_port_service_driver aerdriver = {
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080053 .name = "aer",
Kenji Kaneshige694f88e2009-11-25 21:06:15 +090054 .port_type = PCI_EXP_TYPE_ROOT_PORT,
Rafael J. Wysocki22106362009-01-13 14:46:46 +010055 .service = PCIE_PORT_SERVICE_AER,
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080056
57 .probe = aer_probe,
58 .remove = aer_remove,
59
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +080060 .err_handler = &aer_error_handlers,
61
62 .reset_link = aer_root_reset,
63};
64
Randy Dunlap7f785762007-10-05 13:17:58 -070065static int pcie_aer_disable;
66
67void pci_no_aer(void)
68{
69 pcie_aer_disable = 1; /* has priority over 'forceload' */
70}
71
Rafael J. Wysockif1a7bfa2010-08-21 01:50:52 +020072bool pci_aer_available(void)
73{
74 return !pcie_aer_disable && pci_msi_enabled();
75}
76
Hidetoshi Seto843f4692010-04-15 13:10:53 +090077static int set_device_error_reporting(struct pci_dev *dev, void *data)
78{
79 bool enable = *((bool *)data);
Yijing Wang62f87c02012-07-24 17:20:03 +080080 int type = pci_pcie_type(dev);
Hidetoshi Seto843f4692010-04-15 13:10:53 +090081
Yijing Wang62f87c02012-07-24 17:20:03 +080082 if ((type == PCI_EXP_TYPE_ROOT_PORT) ||
83 (type == PCI_EXP_TYPE_UPSTREAM) ||
84 (type == PCI_EXP_TYPE_DOWNSTREAM)) {
Hidetoshi Seto843f4692010-04-15 13:10:53 +090085 if (enable)
86 pci_enable_pcie_error_reporting(dev);
87 else
88 pci_disable_pcie_error_reporting(dev);
89 }
90
91 if (enable)
92 pcie_set_ecrc_checking(dev);
93
94 return 0;
95}
96
97/**
98 * set_downstream_devices_error_reporting - enable/disable the error reporting bits on the root port and its downstream ports.
99 * @dev: pointer to root port's pci_dev data structure
100 * @enable: true = enable error reporting, false = disable error reporting.
101 */
102static void set_downstream_devices_error_reporting(struct pci_dev *dev,
103 bool enable)
104{
105 set_device_error_reporting(dev, &enable);
106
107 if (!dev->subordinate)
108 return;
109 pci_walk_bus(dev->subordinate, set_device_error_reporting, &enable);
110}
111
112/**
113 * aer_enable_rootport - enable Root Port's interrupts when receiving messages
114 * @rpc: pointer to a Root Port data structure
115 *
116 * Invoked when PCIe bus loads AER service driver.
117 */
118static void aer_enable_rootport(struct aer_rpc *rpc)
119{
120 struct pci_dev *pdev = rpc->rpd->port;
Jiang Liu43bd4ee2012-07-24 17:20:11 +0800121 int aer_pos;
Hidetoshi Seto843f4692010-04-15 13:10:53 +0900122 u16 reg16;
123 u32 reg32;
124
Hidetoshi Seto843f4692010-04-15 13:10:53 +0900125 /* Clear PCIe Capability's Device Status */
Jiang Liu43bd4ee2012-07-24 17:20:11 +0800126 pcie_capability_read_word(pdev, PCI_EXP_DEVSTA, &reg16);
127 pcie_capability_write_word(pdev, PCI_EXP_DEVSTA, reg16);
Hidetoshi Seto843f4692010-04-15 13:10:53 +0900128
129 /* Disable system error generation in response to error messages */
Jiang Liu43bd4ee2012-07-24 17:20:11 +0800130 pcie_capability_clear_word(pdev, PCI_EXP_RTCTL,
131 SYSTEM_ERROR_INTR_ON_MESG_MASK);
Hidetoshi Seto843f4692010-04-15 13:10:53 +0900132
133 aer_pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ERR);
134 /* Clear error status */
135 pci_read_config_dword(pdev, aer_pos + PCI_ERR_ROOT_STATUS, &reg32);
136 pci_write_config_dword(pdev, aer_pos + PCI_ERR_ROOT_STATUS, reg32);
137 pci_read_config_dword(pdev, aer_pos + PCI_ERR_COR_STATUS, &reg32);
138 pci_write_config_dword(pdev, aer_pos + PCI_ERR_COR_STATUS, reg32);
139 pci_read_config_dword(pdev, aer_pos + PCI_ERR_UNCOR_STATUS, &reg32);
140 pci_write_config_dword(pdev, aer_pos + PCI_ERR_UNCOR_STATUS, reg32);
141
142 /*
143 * Enable error reporting for the root port device and downstream port
144 * devices.
145 */
146 set_downstream_devices_error_reporting(pdev, true);
147
148 /* Enable Root Port's interrupt in response to error messages */
149 pci_read_config_dword(pdev, aer_pos + PCI_ERR_ROOT_COMMAND, &reg32);
150 reg32 |= ROOT_PORT_INTR_ON_MESG_MASK;
151 pci_write_config_dword(pdev, aer_pos + PCI_ERR_ROOT_COMMAND, reg32);
152}
153
154/**
155 * aer_disable_rootport - disable Root Port's interrupts when receiving messages
156 * @rpc: pointer to a Root Port data structure
157 *
158 * Invoked when PCIe bus unloads AER service driver.
159 */
160static void aer_disable_rootport(struct aer_rpc *rpc)
161{
162 struct pci_dev *pdev = rpc->rpd->port;
163 u32 reg32;
164 int pos;
165
166 /*
167 * Disable error reporting for the root port device and downstream port
168 * devices.
169 */
170 set_downstream_devices_error_reporting(pdev, false);
171
172 pos = pci_find_ext_capability(pdev, PCI_EXT_CAP_ID_ERR);
173 /* Disable Root's interrupt in response to error messages */
174 pci_read_config_dword(pdev, pos + PCI_ERR_ROOT_COMMAND, &reg32);
175 reg32 &= ~ROOT_PORT_INTR_ON_MESG_MASK;
176 pci_write_config_dword(pdev, pos + PCI_ERR_ROOT_COMMAND, reg32);
177
178 /* Clear Root's error status reg */
179 pci_read_config_dword(pdev, pos + PCI_ERR_ROOT_STATUS, &reg32);
180 pci_write_config_dword(pdev, pos + PCI_ERR_ROOT_STATUS, reg32);
181}
182
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800183/**
184 * aer_irq - Root Port's ISR
185 * @irq: IRQ assigned to Root Port
186 * @context: pointer to Root Port data structure
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800187 *
188 * Invoked when Root Port detects AER messages.
Hidetoshi Setof6d37802010-04-15 13:22:11 +0900189 */
Huang Ying634deb02009-04-24 10:45:23 +0800190irqreturn_t aer_irq(int irq, void *context)
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800191{
192 unsigned int status, id;
193 struct pcie_device *pdev = (struct pcie_device *)context;
194 struct aer_rpc *rpc = get_service_data(pdev);
195 int next_prod_idx;
196 unsigned long flags;
197 int pos;
198
Jesse Barnes09276782008-10-18 17:33:19 -0700199 pos = pci_find_ext_capability(pdev->port, PCI_EXT_CAP_ID_ERR);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800200 /*
201 * Must lock access to Root Error Status Reg, Root Error ID Reg,
202 * and Root error producer/consumer index
203 */
204 spin_lock_irqsave(&rpc->e_lock, flags);
205
206 /* Read error status */
207 pci_read_config_dword(pdev->port, pos + PCI_ERR_ROOT_STATUS, &status);
Hidetoshi Setoe167bfc2010-04-15 13:18:26 +0900208 if (!(status & (PCI_ERR_ROOT_UNCOR_RCV|PCI_ERR_ROOT_COR_RCV))) {
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800209 spin_unlock_irqrestore(&rpc->e_lock, flags);
210 return IRQ_NONE;
211 }
212
213 /* Read error source and clear error status */
Hidetoshi Setof647a442010-04-15 13:17:33 +0900214 pci_read_config_dword(pdev->port, pos + PCI_ERR_ROOT_ERR_SRC, &id);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800215 pci_write_config_dword(pdev->port, pos + PCI_ERR_ROOT_STATUS, status);
216
217 /* Store error source for later DPC handler */
218 next_prod_idx = rpc->prod_idx + 1;
219 if (next_prod_idx == AER_ERROR_SOURCES_MAX)
220 next_prod_idx = 0;
221 if (next_prod_idx == rpc->cons_idx) {
222 /*
223 * Error Storm Condition - possibly the same error occurred.
224 * Drop the error.
225 */
226 spin_unlock_irqrestore(&rpc->e_lock, flags);
227 return IRQ_HANDLED;
228 }
229 rpc->e_sources[rpc->prod_idx].status = status;
230 rpc->e_sources[rpc->prod_idx].id = id;
231 rpc->prod_idx = next_prod_idx;
232 spin_unlock_irqrestore(&rpc->e_lock, flags);
233
234 /* Invoke DPC handler */
235 schedule_work(&rpc->dpc_handler);
236
237 return IRQ_HANDLED;
238}
Huang Ying634deb02009-04-24 10:45:23 +0800239EXPORT_SYMBOL_GPL(aer_irq);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800240
241/**
242 * aer_alloc_rpc - allocate Root Port data structure
243 * @dev: pointer to the pcie_dev data structure
244 *
245 * Invoked when Root Port's AER service is loaded.
Hidetoshi Setof6d37802010-04-15 13:22:11 +0900246 */
Hidetoshi Setoc9a91882009-09-07 17:07:29 +0900247static struct aer_rpc *aer_alloc_rpc(struct pcie_device *dev)
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800248{
249 struct aer_rpc *rpc;
250
Hidetoshi Setoc9a91882009-09-07 17:07:29 +0900251 rpc = kzalloc(sizeof(struct aer_rpc), GFP_KERNEL);
252 if (!rpc)
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800253 return NULL;
254
Hidetoshi Setof6d37802010-04-15 13:22:11 +0900255 /* Initialize Root lock access, e_lock, to Root Error Status Reg */
Milind Arun Choudharyf5609d72007-07-09 11:55:54 -0700256 spin_lock_init(&rpc->e_lock);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800257
258 rpc->rpd = dev;
David Howells65f27f32006-11-22 14:55:48 +0000259 INIT_WORK(&rpc->dpc_handler, aer_isr);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800260 mutex_init(&rpc->rpc_mutex);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800261
Stefan Assmann45e829e2009-12-03 06:49:24 -0500262 /* Use PCIe bus function to store rpc into PCIe device */
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800263 set_service_data(dev, rpc);
264
265 return rpc;
266}
267
268/**
269 * aer_remove - clean up resources
270 * @dev: pointer to the pcie_dev data structure
271 *
272 * Invoked when PCI Express bus unloads or AER probe fails.
Hidetoshi Setof6d37802010-04-15 13:22:11 +0900273 */
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800274static void aer_remove(struct pcie_device *dev)
275{
276 struct aer_rpc *rpc = get_service_data(dev);
277
278 if (rpc) {
279 /* If register interrupt service, it must be free. */
280 if (rpc->isr)
281 free_irq(dev->irq, dev);
282
Sebastian Andrzej Siewior4ae21822016-01-25 10:08:00 -0600283 flush_work(&rpc->dpc_handler);
Hidetoshi Seto460d2982010-04-15 13:10:03 +0900284 aer_disable_rootport(rpc);
285 kfree(rpc);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800286 set_service_data(dev, NULL);
287 }
288}
289
290/**
291 * aer_probe - initialize resources
292 * @dev: pointer to the pcie_dev data structure
293 * @id: pointer to the service id data structure
294 *
295 * Invoked when PCI Express bus loads AER service driver.
Hidetoshi Setof6d37802010-04-15 13:22:11 +0900296 */
Bill Pemberton15856ad2012-11-21 15:35:00 -0500297static int aer_probe(struct pcie_device *dev)
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800298{
299 int status;
300 struct aer_rpc *rpc;
301 struct device *device = &dev->device;
302
303 /* Init */
Hidetoshi Setoc9a91882009-09-07 17:07:29 +0900304 status = aer_init(dev);
305 if (status)
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800306 return status;
307
308 /* Alloc rpc data structure */
Hidetoshi Setoc9a91882009-09-07 17:07:29 +0900309 rpc = aer_alloc_rpc(dev);
310 if (!rpc) {
Bjorn Helgaas531f2542008-06-13 10:52:12 -0600311 dev_printk(KERN_DEBUG, device, "alloc rpc failed\n");
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800312 aer_remove(dev);
313 return -ENOMEM;
314 }
315
316 /* Request IRQ ISR */
Hidetoshi Setoc9a91882009-09-07 17:07:29 +0900317 status = request_irq(dev->irq, aer_irq, IRQF_SHARED, "aerdrv", dev);
318 if (status) {
Bjorn Helgaas531f2542008-06-13 10:52:12 -0600319 dev_printk(KERN_DEBUG, device, "request IRQ failed\n");
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800320 aer_remove(dev);
321 return status;
322 }
323
324 rpc->isr = 1;
325
326 aer_enable_rootport(rpc);
327
328 return status;
329}
330
331/**
332 * aer_root_reset - reset link on Root Port
333 * @dev: pointer to Root Port's pci_dev data structure
334 *
335 * Invoked by Port Bus driver when performing link reset at Root Port.
Hidetoshi Setof6d37802010-04-15 13:22:11 +0900336 */
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800337static pci_ers_result_t aer_root_reset(struct pci_dev *dev)
338{
Hidetoshi Setoc6d34ed2010-04-15 13:09:13 +0900339 u32 reg32;
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800340 int pos;
341
Jesse Barnes09276782008-10-18 17:33:19 -0700342 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800343
344 /* Disable Root's interrupt in response to error messages */
Hidetoshi Setoc6d34ed2010-04-15 13:09:13 +0900345 pci_read_config_dword(dev, pos + PCI_ERR_ROOT_COMMAND, &reg32);
346 reg32 &= ~ROOT_PORT_INTR_ON_MESG_MASK;
347 pci_write_config_dword(dev, pos + PCI_ERR_ROOT_COMMAND, reg32);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800348
Alex Williamson1b95ce82013-08-08 14:10:20 -0600349 pci_reset_bridge_secondary_bus(dev);
Bjorn Helgaas531f2542008-06-13 10:52:12 -0600350 dev_printk(KERN_DEBUG, &dev->dev, "Root Port link has been reset\n");
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800351
Hidetoshi Setoc6d34ed2010-04-15 13:09:13 +0900352 /* Clear Root Error Status */
353 pci_read_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, &reg32);
354 pci_write_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, reg32);
355
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800356 /* Enable Root Port's interrupt in response to error messages */
Hidetoshi Setoc6d34ed2010-04-15 13:09:13 +0900357 pci_read_config_dword(dev, pos + PCI_ERR_ROOT_COMMAND, &reg32);
358 reg32 |= ROOT_PORT_INTR_ON_MESG_MASK;
359 pci_write_config_dword(dev, pos + PCI_ERR_ROOT_COMMAND, reg32);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800360
361 return PCI_ERS_RESULT_RECOVERED;
362}
363
364/**
365 * aer_error_detected - update severity status
366 * @dev: pointer to Root Port's pci_dev data structure
367 * @error: error severity being notified by port bus
368 *
369 * Invoked by Port Bus driver during error recovery.
Hidetoshi Setof6d37802010-04-15 13:22:11 +0900370 */
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800371static pci_ers_result_t aer_error_detected(struct pci_dev *dev,
372 enum pci_channel_state error)
373{
374 /* Root Port has no impact. Always recovers. */
375 return PCI_ERS_RESULT_CAN_RECOVER;
376}
377
378/**
379 * aer_error_resume - clean up corresponding error status bits
380 * @dev: pointer to Root Port's pci_dev data structure
381 *
382 * Invoked by Port Bus driver during nonfatal recovery.
Hidetoshi Setof6d37802010-04-15 13:22:11 +0900383 */
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800384static void aer_error_resume(struct pci_dev *dev)
385{
386 int pos;
387 u32 status, mask;
388 u16 reg16;
389
390 /* Clean up Root device status */
Jiang Liu43bd4ee2012-07-24 17:20:11 +0800391 pcie_capability_read_word(dev, PCI_EXP_DEVSTA, &reg16);
392 pcie_capability_write_word(dev, PCI_EXP_DEVSTA, reg16);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800393
394 /* Clean AER Root Error Status */
Jesse Barnes09276782008-10-18 17:33:19 -0700395 pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800396 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &status);
397 pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, &mask);
398 if (dev->error_state == pci_channel_io_normal)
399 status &= ~mask; /* Clear corresponding nonfatal bits */
400 else
401 status &= mask; /* Clear corresponding fatal bits */
402 pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, status);
403}
404
405/**
406 * aer_service_init - register AER root service driver
407 *
408 * Invoked when AER root service driver is loaded.
Hidetoshi Setof6d37802010-04-15 13:22:11 +0900409 */
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800410static int __init aer_service_init(void)
411{
Rafael J. Wysockib22c3d82010-09-20 18:50:00 +0200412 if (!pci_aer_available() || aer_acpi_firmware_first())
Andi Kleen3e77a3f2009-09-16 22:40:22 +0200413 return -ENXIO;
Sam Ravnborgc1996c22007-02-27 10:22:00 +0100414 return pcie_port_service_register(&aerdriver);
Zhang, Yanmin6c2b3742006-07-31 15:21:33 +0800415}
Paul Gortmaker87563362016-08-24 16:57:46 -0400416device_initcall(aer_service_init);