2 * drivers/pci/pcie/aer/aerdrv.c
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
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.
12 * Copyright (C) 2006 Intel Corp.
13 * Tom Long Nguyen (tom.l.nguyen@intel.com)
14 * Zhang Yanmin (yanmin.zhang@intel.com)
18 #include <linux/module.h>
19 #include <linux/pci.h>
20 #include <linux/pci-acpi.h>
21 #include <linux/sched.h>
22 #include <linux/kernel.h>
23 #include <linux/errno.h>
25 #include <linux/init.h>
26 #include <linux/interrupt.h>
27 #include <linux/delay.h>
28 #include <linux/pcieport_if.h>
29 #include <linux/slab.h>
32 #include "../../pci.h"
37 #define DRIVER_VERSION "v1.0"
38 #define DRIVER_AUTHOR "tom.l.nguyen@intel.com"
39 #define DRIVER_DESC "Root Port Advanced Error Reporting Driver"
40 MODULE_AUTHOR(DRIVER_AUTHOR
);
41 MODULE_DESCRIPTION(DRIVER_DESC
);
42 MODULE_LICENSE("GPL");
44 static int __devinit
aer_probe(struct pcie_device
*dev
);
45 static void aer_remove(struct pcie_device
*dev
);
46 static pci_ers_result_t
aer_error_detected(struct pci_dev
*dev
,
47 enum pci_channel_state error
);
48 static void aer_error_resume(struct pci_dev
*dev
);
49 static pci_ers_result_t
aer_root_reset(struct pci_dev
*dev
);
51 static struct pci_error_handlers aer_error_handlers
= {
52 .error_detected
= aer_error_detected
,
53 .resume
= aer_error_resume
,
56 static struct pcie_port_service_driver aerdriver
= {
58 .port_type
= PCI_EXP_TYPE_ROOT_PORT
,
59 .service
= PCIE_PORT_SERVICE_AER
,
64 .err_handler
= &aer_error_handlers
,
66 .reset_link
= aer_root_reset
,
69 static int pcie_aer_disable
;
73 pcie_aer_disable
= 1; /* has priority over 'forceload' */
76 bool pci_aer_available(void)
78 return !pcie_aer_disable
&& pci_msi_enabled();
81 static int set_device_error_reporting(struct pci_dev
*dev
, void *data
)
83 bool enable
= *((bool *)data
);
85 if ((dev
->pcie_type
== PCI_EXP_TYPE_ROOT_PORT
) ||
86 (dev
->pcie_type
== PCI_EXP_TYPE_UPSTREAM
) ||
87 (dev
->pcie_type
== PCI_EXP_TYPE_DOWNSTREAM
)) {
89 pci_enable_pcie_error_reporting(dev
);
91 pci_disable_pcie_error_reporting(dev
);
95 pcie_set_ecrc_checking(dev
);
101 * set_downstream_devices_error_reporting - enable/disable the error reporting bits on the root port and its downstream ports.
102 * @dev: pointer to root port's pci_dev data structure
103 * @enable: true = enable error reporting, false = disable error reporting.
105 static void set_downstream_devices_error_reporting(struct pci_dev
*dev
,
108 set_device_error_reporting(dev
, &enable
);
110 if (!dev
->subordinate
)
112 pci_walk_bus(dev
->subordinate
, set_device_error_reporting
, &enable
);
116 * aer_enable_rootport - enable Root Port's interrupts when receiving messages
117 * @rpc: pointer to a Root Port data structure
119 * Invoked when PCIe bus loads AER service driver.
121 static void aer_enable_rootport(struct aer_rpc
*rpc
)
123 struct pci_dev
*pdev
= rpc
->rpd
->port
;
128 pos
= pci_pcie_cap(pdev
);
129 /* Clear PCIe Capability's Device Status */
130 pci_read_config_word(pdev
, pos
+PCI_EXP_DEVSTA
, ®16
);
131 pci_write_config_word(pdev
, pos
+PCI_EXP_DEVSTA
, reg16
);
133 /* Disable system error generation in response to error messages */
134 pci_read_config_word(pdev
, pos
+ PCI_EXP_RTCTL
, ®16
);
135 reg16
&= ~(SYSTEM_ERROR_INTR_ON_MESG_MASK
);
136 pci_write_config_word(pdev
, pos
+ PCI_EXP_RTCTL
, reg16
);
138 aer_pos
= pci_find_ext_capability(pdev
, PCI_EXT_CAP_ID_ERR
);
139 /* Clear error status */
140 pci_read_config_dword(pdev
, aer_pos
+ PCI_ERR_ROOT_STATUS
, ®32
);
141 pci_write_config_dword(pdev
, aer_pos
+ PCI_ERR_ROOT_STATUS
, reg32
);
142 pci_read_config_dword(pdev
, aer_pos
+ PCI_ERR_COR_STATUS
, ®32
);
143 pci_write_config_dword(pdev
, aer_pos
+ PCI_ERR_COR_STATUS
, reg32
);
144 pci_read_config_dword(pdev
, aer_pos
+ PCI_ERR_UNCOR_STATUS
, ®32
);
145 pci_write_config_dword(pdev
, aer_pos
+ PCI_ERR_UNCOR_STATUS
, reg32
);
148 * Enable error reporting for the root port device and downstream port
151 set_downstream_devices_error_reporting(pdev
, true);
153 /* Enable Root Port's interrupt in response to error messages */
154 pci_read_config_dword(pdev
, aer_pos
+ PCI_ERR_ROOT_COMMAND
, ®32
);
155 reg32
|= ROOT_PORT_INTR_ON_MESG_MASK
;
156 pci_write_config_dword(pdev
, aer_pos
+ PCI_ERR_ROOT_COMMAND
, reg32
);
160 * aer_disable_rootport - disable Root Port's interrupts when receiving messages
161 * @rpc: pointer to a Root Port data structure
163 * Invoked when PCIe bus unloads AER service driver.
165 static void aer_disable_rootport(struct aer_rpc
*rpc
)
167 struct pci_dev
*pdev
= rpc
->rpd
->port
;
172 * Disable error reporting for the root port device and downstream port
175 set_downstream_devices_error_reporting(pdev
, false);
177 pos
= pci_find_ext_capability(pdev
, PCI_EXT_CAP_ID_ERR
);
178 /* Disable Root's interrupt in response to error messages */
179 pci_read_config_dword(pdev
, pos
+ PCI_ERR_ROOT_COMMAND
, ®32
);
180 reg32
&= ~ROOT_PORT_INTR_ON_MESG_MASK
;
181 pci_write_config_dword(pdev
, pos
+ PCI_ERR_ROOT_COMMAND
, reg32
);
183 /* Clear Root's error status reg */
184 pci_read_config_dword(pdev
, pos
+ PCI_ERR_ROOT_STATUS
, ®32
);
185 pci_write_config_dword(pdev
, pos
+ PCI_ERR_ROOT_STATUS
, reg32
);
189 * aer_irq - Root Port's ISR
190 * @irq: IRQ assigned to Root Port
191 * @context: pointer to Root Port data structure
193 * Invoked when Root Port detects AER messages.
195 irqreturn_t
aer_irq(int irq
, void *context
)
197 unsigned int status
, id
;
198 struct pcie_device
*pdev
= (struct pcie_device
*)context
;
199 struct aer_rpc
*rpc
= get_service_data(pdev
);
204 pos
= pci_find_ext_capability(pdev
->port
, PCI_EXT_CAP_ID_ERR
);
206 * Must lock access to Root Error Status Reg, Root Error ID Reg,
207 * and Root error producer/consumer index
209 spin_lock_irqsave(&rpc
->e_lock
, flags
);
211 /* Read error status */
212 pci_read_config_dword(pdev
->port
, pos
+ PCI_ERR_ROOT_STATUS
, &status
);
213 if (!(status
& (PCI_ERR_ROOT_UNCOR_RCV
|PCI_ERR_ROOT_COR_RCV
))) {
214 spin_unlock_irqrestore(&rpc
->e_lock
, flags
);
218 /* Read error source and clear error status */
219 pci_read_config_dword(pdev
->port
, pos
+ PCI_ERR_ROOT_ERR_SRC
, &id
);
220 pci_write_config_dword(pdev
->port
, pos
+ PCI_ERR_ROOT_STATUS
, status
);
222 /* Store error source for later DPC handler */
223 next_prod_idx
= rpc
->prod_idx
+ 1;
224 if (next_prod_idx
== AER_ERROR_SOURCES_MAX
)
226 if (next_prod_idx
== rpc
->cons_idx
) {
228 * Error Storm Condition - possibly the same error occurred.
231 spin_unlock_irqrestore(&rpc
->e_lock
, flags
);
234 rpc
->e_sources
[rpc
->prod_idx
].status
= status
;
235 rpc
->e_sources
[rpc
->prod_idx
].id
= id
;
236 rpc
->prod_idx
= next_prod_idx
;
237 spin_unlock_irqrestore(&rpc
->e_lock
, flags
);
239 /* Invoke DPC handler */
240 schedule_work(&rpc
->dpc_handler
);
244 EXPORT_SYMBOL_GPL(aer_irq
);
247 * aer_alloc_rpc - allocate Root Port data structure
248 * @dev: pointer to the pcie_dev data structure
250 * Invoked when Root Port's AER service is loaded.
252 static struct aer_rpc
*aer_alloc_rpc(struct pcie_device
*dev
)
256 rpc
= kzalloc(sizeof(struct aer_rpc
), GFP_KERNEL
);
260 /* Initialize Root lock access, e_lock, to Root Error Status Reg */
261 spin_lock_init(&rpc
->e_lock
);
264 INIT_WORK(&rpc
->dpc_handler
, aer_isr
);
265 mutex_init(&rpc
->rpc_mutex
);
266 init_waitqueue_head(&rpc
->wait_release
);
268 /* Use PCIe bus function to store rpc into PCIe device */
269 set_service_data(dev
, rpc
);
275 * aer_remove - clean up resources
276 * @dev: pointer to the pcie_dev data structure
278 * Invoked when PCI Express bus unloads or AER probe fails.
280 static void aer_remove(struct pcie_device
*dev
)
282 struct aer_rpc
*rpc
= get_service_data(dev
);
285 /* If register interrupt service, it must be free. */
287 free_irq(dev
->irq
, dev
);
289 wait_event(rpc
->wait_release
, rpc
->prod_idx
== rpc
->cons_idx
);
291 aer_disable_rootport(rpc
);
293 set_service_data(dev
, NULL
);
298 * aer_probe - initialize resources
299 * @dev: pointer to the pcie_dev data structure
300 * @id: pointer to the service id data structure
302 * Invoked when PCI Express bus loads AER service driver.
304 static int __devinit
aer_probe(struct pcie_device
*dev
)
308 struct device
*device
= &dev
->device
;
311 status
= aer_init(dev
);
315 /* Alloc rpc data structure */
316 rpc
= aer_alloc_rpc(dev
);
318 dev_printk(KERN_DEBUG
, device
, "alloc rpc failed\n");
323 /* Request IRQ ISR */
324 status
= request_irq(dev
->irq
, aer_irq
, IRQF_SHARED
, "aerdrv", dev
);
326 dev_printk(KERN_DEBUG
, device
, "request IRQ failed\n");
333 aer_enable_rootport(rpc
);
339 * aer_root_reset - reset link on Root Port
340 * @dev: pointer to Root Port's pci_dev data structure
342 * Invoked by Port Bus driver when performing link reset at Root Port.
344 static pci_ers_result_t
aer_root_reset(struct pci_dev
*dev
)
349 pos
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
);
351 /* Disable Root's interrupt in response to error messages */
352 pci_read_config_dword(dev
, pos
+ PCI_ERR_ROOT_COMMAND
, ®32
);
353 reg32
&= ~ROOT_PORT_INTR_ON_MESG_MASK
;
354 pci_write_config_dword(dev
, pos
+ PCI_ERR_ROOT_COMMAND
, reg32
);
356 aer_do_secondary_bus_reset(dev
);
357 dev_printk(KERN_DEBUG
, &dev
->dev
, "Root Port link has been reset\n");
359 /* Clear Root Error Status */
360 pci_read_config_dword(dev
, pos
+ PCI_ERR_ROOT_STATUS
, ®32
);
361 pci_write_config_dword(dev
, pos
+ PCI_ERR_ROOT_STATUS
, reg32
);
363 /* Enable Root Port's interrupt in response to error messages */
364 pci_read_config_dword(dev
, pos
+ PCI_ERR_ROOT_COMMAND
, ®32
);
365 reg32
|= ROOT_PORT_INTR_ON_MESG_MASK
;
366 pci_write_config_dword(dev
, pos
+ PCI_ERR_ROOT_COMMAND
, reg32
);
368 return PCI_ERS_RESULT_RECOVERED
;
372 * aer_error_detected - update severity status
373 * @dev: pointer to Root Port's pci_dev data structure
374 * @error: error severity being notified by port bus
376 * Invoked by Port Bus driver during error recovery.
378 static pci_ers_result_t
aer_error_detected(struct pci_dev
*dev
,
379 enum pci_channel_state error
)
381 /* Root Port has no impact. Always recovers. */
382 return PCI_ERS_RESULT_CAN_RECOVER
;
386 * aer_error_resume - clean up corresponding error status bits
387 * @dev: pointer to Root Port's pci_dev data structure
389 * Invoked by Port Bus driver during nonfatal recovery.
391 static void aer_error_resume(struct pci_dev
*dev
)
397 /* Clean up Root device status */
398 pos
= pci_pcie_cap(dev
);
399 pci_read_config_word(dev
, pos
+ PCI_EXP_DEVSTA
, ®16
);
400 pci_write_config_word(dev
, pos
+ PCI_EXP_DEVSTA
, reg16
);
402 /* Clean AER Root Error Status */
403 pos
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
);
404 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
, &status
);
405 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_SEVER
, &mask
);
406 if (dev
->error_state
== pci_channel_io_normal
)
407 status
&= ~mask
; /* Clear corresponding nonfatal bits */
409 status
&= mask
; /* Clear corresponding fatal bits */
410 pci_write_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
, status
);
414 * aer_service_init - register AER root service driver
416 * Invoked when AER root service driver is loaded.
418 static int __init
aer_service_init(void)
420 if (!pci_aer_available() || aer_acpi_firmware_first())
422 return pcie_port_service_register(&aerdriver
);
426 * aer_service_exit - unregister AER root service driver
428 * Invoked when AER root service driver is unloaded.
430 static void __exit
aer_service_exit(void)
432 pcie_port_service_unregister(&aerdriver
);
435 module_init(aer_service_init
);
436 module_exit(aer_service_exit
);