2 * drivers/pci/pcie/aer/aerdrv_core.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 core part of PCI-Express AER. When an pci-express
9 * error is delivered, an error message will be collected and printed to
10 * console, then, an error recovery procedure will be executed by following
11 * the pci error recovery rules.
13 * Copyright (C) 2006 Intel Corp.
14 * Tom Long Nguyen (tom.l.nguyen@intel.com)
15 * Zhang Yanmin (yanmin.zhang@intel.com)
19 #include <linux/module.h>
20 #include <linux/pci.h>
21 #include <linux/kernel.h>
22 #include <linux/errno.h>
24 #include <linux/suspend.h>
25 #include <linux/delay.h>
26 #include <linux/slab.h>
27 #include <linux/kfifo.h>
30 static bool forceload
;
31 static bool nosourceid
;
32 module_param(forceload
, bool, 0);
33 module_param(nosourceid
, bool, 0);
35 #define PCI_EXP_AER_FLAGS (PCI_EXP_DEVCTL_CERE | PCI_EXP_DEVCTL_NFERE | \
36 PCI_EXP_DEVCTL_FERE | PCI_EXP_DEVCTL_URRE)
38 int pci_enable_pcie_error_reporting(struct pci_dev
*dev
)
40 if (pcie_aer_get_firmware_first(dev
))
43 if (!pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
))
46 return pcie_capability_set_word(dev
, PCI_EXP_DEVCTL
, PCI_EXP_AER_FLAGS
);
48 EXPORT_SYMBOL_GPL(pci_enable_pcie_error_reporting
);
50 int pci_disable_pcie_error_reporting(struct pci_dev
*dev
)
52 if (pcie_aer_get_firmware_first(dev
))
55 return pcie_capability_clear_word(dev
, PCI_EXP_DEVCTL
,
58 EXPORT_SYMBOL_GPL(pci_disable_pcie_error_reporting
);
60 int pci_cleanup_aer_uncorrect_error_status(struct pci_dev
*dev
)
65 pos
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
);
69 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
, &status
);
71 pci_write_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
, status
);
75 EXPORT_SYMBOL_GPL(pci_cleanup_aer_uncorrect_error_status
);
78 * add_error_device - list device to be handled
79 * @e_info: pointer to error info
80 * @dev: pointer to pci_dev to be added
82 static int add_error_device(struct aer_err_info
*e_info
, struct pci_dev
*dev
)
84 if (e_info
->error_dev_num
< AER_MAX_MULTI_ERR_DEVICES
) {
85 e_info
->dev
[e_info
->error_dev_num
] = dev
;
86 e_info
->error_dev_num
++;
93 * is_error_source - check whether the device is source of reported error
94 * @dev: pointer to pci_dev to be checked
95 * @e_info: pointer to reported error info
97 static bool is_error_source(struct pci_dev
*dev
, struct aer_err_info
*e_info
)
104 * When bus id is equal to 0, it might be a bad id
105 * reported by root port.
107 if (!nosourceid
&& (PCI_BUS_NUM(e_info
->id
) != 0)) {
108 /* Device ID match? */
109 if (e_info
->id
== ((dev
->bus
->number
<< 8) | dev
->devfn
))
112 /* Continue id comparing if there is no multiple error */
113 if (!e_info
->multi_error_valid
)
120 * 2) bus id is equal to 0. Some ports might lose the bus
121 * id of error source id;
122 * 3) There are multiple errors and prior id comparing fails;
123 * We check AER status registers to find possible reporter.
125 if (atomic_read(&dev
->enable_cnt
) == 0)
128 /* Check if AER is enabled */
129 pcie_capability_read_word(dev
, PCI_EXP_DEVCTL
, ®16
);
130 if (!(reg16
& PCI_EXP_AER_FLAGS
))
133 pos
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
);
137 /* Check if error is recorded */
138 if (e_info
->severity
== AER_CORRECTABLE
) {
139 pci_read_config_dword(dev
, pos
+ PCI_ERR_COR_STATUS
, &status
);
140 pci_read_config_dword(dev
, pos
+ PCI_ERR_COR_MASK
, &mask
);
142 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
, &status
);
143 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_MASK
, &mask
);
151 static int find_device_iter(struct pci_dev
*dev
, void *data
)
153 struct aer_err_info
*e_info
= (struct aer_err_info
*)data
;
155 if (is_error_source(dev
, e_info
)) {
156 /* List this device */
157 if (add_error_device(e_info
, dev
)) {
158 /* We cannot handle more... Stop iteration */
159 /* TODO: Should print error message here? */
163 /* If there is only a single error, stop iteration */
164 if (!e_info
->multi_error_valid
)
171 * find_source_device - search through device hierarchy for source device
172 * @parent: pointer to Root Port pci_dev data structure
173 * @e_info: including detailed error information such like id
175 * Return true if found.
177 * Invoked by DPC when error is detected at the Root Port.
178 * Caller of this function must set id, severity, and multi_error_valid of
179 * struct aer_err_info pointed by @e_info properly. This function must fill
180 * e_info->error_dev_num and e_info->dev[], based on the given information.
182 static bool find_source_device(struct pci_dev
*parent
,
183 struct aer_err_info
*e_info
)
185 struct pci_dev
*dev
= parent
;
188 /* Must reset in this function */
189 e_info
->error_dev_num
= 0;
191 /* Is Root Port an agent that sends error message? */
192 result
= find_device_iter(dev
, e_info
);
196 pci_walk_bus(parent
->subordinate
, find_device_iter
, e_info
);
198 if (!e_info
->error_dev_num
) {
199 dev_printk(KERN_DEBUG
, &parent
->dev
,
200 "can't find device of ID%04x\n",
207 static int report_error_detected(struct pci_dev
*dev
, void *data
)
209 pci_ers_result_t vote
;
210 const struct pci_error_handlers
*err_handler
;
211 struct aer_broadcast_data
*result_data
;
212 result_data
= (struct aer_broadcast_data
*) data
;
214 device_lock(&dev
->dev
);
215 dev
->error_state
= result_data
->state
;
218 !dev
->driver
->err_handler
||
219 !dev
->driver
->err_handler
->error_detected
) {
220 if (result_data
->state
== pci_channel_io_frozen
&&
221 !(dev
->hdr_type
& PCI_HEADER_TYPE_BRIDGE
)) {
223 * In case of fatal recovery, if one of down-
224 * stream device has no driver. We might be
225 * unable to recover because a later insmod
226 * of a driver for this device is unaware of
229 dev_printk(KERN_DEBUG
, &dev
->dev
, "device has %s\n",
231 "no AER-aware driver" : "no driver");
235 * If there's any device in the subtree that does not
236 * have an error_detected callback, returning
237 * PCI_ERS_RESULT_NO_AER_DRIVER prevents calling of
238 * the subsequent mmio_enabled/slot_reset/resume
239 * callbacks of "any" device in the subtree. All the
240 * devices in the subtree are left in the error state
244 if (!(dev
->hdr_type
& PCI_HEADER_TYPE_BRIDGE
))
245 vote
= PCI_ERS_RESULT_NO_AER_DRIVER
;
247 vote
= PCI_ERS_RESULT_NONE
;
249 err_handler
= dev
->driver
->err_handler
;
250 vote
= err_handler
->error_detected(dev
, result_data
->state
);
253 result_data
->result
= merge_result(result_data
->result
, vote
);
254 device_unlock(&dev
->dev
);
258 static int report_mmio_enabled(struct pci_dev
*dev
, void *data
)
260 pci_ers_result_t vote
;
261 const struct pci_error_handlers
*err_handler
;
262 struct aer_broadcast_data
*result_data
;
263 result_data
= (struct aer_broadcast_data
*) data
;
265 device_lock(&dev
->dev
);
267 !dev
->driver
->err_handler
||
268 !dev
->driver
->err_handler
->mmio_enabled
)
271 err_handler
= dev
->driver
->err_handler
;
272 vote
= err_handler
->mmio_enabled(dev
);
273 result_data
->result
= merge_result(result_data
->result
, vote
);
275 device_unlock(&dev
->dev
);
279 static int report_slot_reset(struct pci_dev
*dev
, void *data
)
281 pci_ers_result_t vote
;
282 const struct pci_error_handlers
*err_handler
;
283 struct aer_broadcast_data
*result_data
;
284 result_data
= (struct aer_broadcast_data
*) data
;
286 device_lock(&dev
->dev
);
288 !dev
->driver
->err_handler
||
289 !dev
->driver
->err_handler
->slot_reset
)
292 err_handler
= dev
->driver
->err_handler
;
293 vote
= err_handler
->slot_reset(dev
);
294 result_data
->result
= merge_result(result_data
->result
, vote
);
296 device_unlock(&dev
->dev
);
300 static int report_resume(struct pci_dev
*dev
, void *data
)
302 const struct pci_error_handlers
*err_handler
;
304 device_lock(&dev
->dev
);
305 dev
->error_state
= pci_channel_io_normal
;
308 !dev
->driver
->err_handler
||
309 !dev
->driver
->err_handler
->resume
)
312 err_handler
= dev
->driver
->err_handler
;
313 err_handler
->resume(dev
);
315 device_unlock(&dev
->dev
);
320 * broadcast_error_message - handle message broadcast to downstream drivers
321 * @dev: pointer to from where in a hierarchy message is broadcasted down
322 * @state: error state
323 * @error_mesg: message to print
324 * @cb: callback to be broadcasted
326 * Invoked during error recovery process. Once being invoked, the content
327 * of error severity will be broadcasted to all downstream drivers in a
328 * hierarchy in question.
330 static pci_ers_result_t
broadcast_error_message(struct pci_dev
*dev
,
331 enum pci_channel_state state
,
333 int (*cb
)(struct pci_dev
*, void *))
335 struct aer_broadcast_data result_data
;
337 dev_printk(KERN_DEBUG
, &dev
->dev
, "broadcast %s message\n", error_mesg
);
338 result_data
.state
= state
;
339 if (cb
== report_error_detected
)
340 result_data
.result
= PCI_ERS_RESULT_CAN_RECOVER
;
342 result_data
.result
= PCI_ERS_RESULT_RECOVERED
;
344 if (dev
->hdr_type
& PCI_HEADER_TYPE_BRIDGE
) {
346 * If the error is reported by a bridge, we think this error
347 * is related to the downstream link of the bridge, so we
348 * do error recovery on all subordinates of the bridge instead
349 * of the bridge and clear the error status of the bridge.
351 if (cb
== report_error_detected
)
352 dev
->error_state
= state
;
353 pci_walk_bus(dev
->subordinate
, cb
, &result_data
);
354 if (cb
== report_resume
) {
355 pci_cleanup_aer_uncorrect_error_status(dev
);
356 dev
->error_state
= pci_channel_io_normal
;
360 * If the error is reported by an end point, we think this
361 * error is related to the upstream link of the end point.
363 pci_walk_bus(dev
->bus
, cb
, &result_data
);
366 return result_data
.result
;
370 * default_reset_link - default reset function
371 * @dev: pointer to pci_dev data structure
373 * Invoked when performing link reset on a Downstream Port or a
374 * Root Port with no aer driver.
376 static pci_ers_result_t
default_reset_link(struct pci_dev
*dev
)
378 pci_reset_bridge_secondary_bus(dev
);
379 dev_printk(KERN_DEBUG
, &dev
->dev
, "downstream link has been reset\n");
380 return PCI_ERS_RESULT_RECOVERED
;
383 static int find_aer_service_iter(struct device
*device
, void *data
)
385 struct pcie_port_service_driver
*service_driver
, **drv
;
387 drv
= (struct pcie_port_service_driver
**) data
;
389 if (device
->bus
== &pcie_port_bus_type
&& device
->driver
) {
390 service_driver
= to_service_driver(device
->driver
);
391 if (service_driver
->service
== PCIE_PORT_SERVICE_AER
) {
392 *drv
= service_driver
;
400 static struct pcie_port_service_driver
*find_aer_service(struct pci_dev
*dev
)
402 struct pcie_port_service_driver
*drv
= NULL
;
404 device_for_each_child(&dev
->dev
, &drv
, find_aer_service_iter
);
409 static pci_ers_result_t
reset_link(struct pci_dev
*dev
)
411 struct pci_dev
*udev
;
412 pci_ers_result_t status
;
413 struct pcie_port_service_driver
*driver
;
415 if (dev
->hdr_type
& PCI_HEADER_TYPE_BRIDGE
) {
416 /* Reset this port for all subordinates */
419 /* Reset the upstream component (likely downstream port) */
420 udev
= dev
->bus
->self
;
423 /* Use the aer driver of the component firstly */
424 driver
= find_aer_service(udev
);
426 if (driver
&& driver
->reset_link
) {
427 status
= driver
->reset_link(udev
);
428 } else if (pci_pcie_type(udev
) == PCI_EXP_TYPE_DOWNSTREAM
||
429 pci_pcie_type(udev
) == PCI_EXP_TYPE_ROOT_PORT
) {
430 status
= default_reset_link(udev
);
432 dev_printk(KERN_DEBUG
, &dev
->dev
,
433 "no link-reset support at upstream device %s\n",
435 return PCI_ERS_RESULT_DISCONNECT
;
438 if (status
!= PCI_ERS_RESULT_RECOVERED
) {
439 dev_printk(KERN_DEBUG
, &dev
->dev
,
440 "link reset at upstream device %s failed\n",
442 return PCI_ERS_RESULT_DISCONNECT
;
449 * do_recovery - handle nonfatal/fatal error recovery process
450 * @dev: pointer to a pci_dev data structure of agent detecting an error
451 * @severity: error severity type
453 * Invoked when an error is nonfatal/fatal. Once being invoked, broadcast
454 * error detected message to all downstream drivers within a hierarchy in
455 * question and return the returned code.
457 static void do_recovery(struct pci_dev
*dev
, int severity
)
459 pci_ers_result_t status
, result
= PCI_ERS_RESULT_RECOVERED
;
460 enum pci_channel_state state
;
462 if (severity
== AER_FATAL
)
463 state
= pci_channel_io_frozen
;
465 state
= pci_channel_io_normal
;
467 status
= broadcast_error_message(dev
,
470 report_error_detected
);
472 if (severity
== AER_FATAL
) {
473 result
= reset_link(dev
);
474 if (result
!= PCI_ERS_RESULT_RECOVERED
)
478 if (status
== PCI_ERS_RESULT_CAN_RECOVER
)
479 status
= broadcast_error_message(dev
,
482 report_mmio_enabled
);
484 if (status
== PCI_ERS_RESULT_NEED_RESET
) {
486 * TODO: Should call platform-specific
487 * functions to reset slot before calling
488 * drivers' slot_reset callbacks?
490 status
= broadcast_error_message(dev
,
496 if (status
!= PCI_ERS_RESULT_RECOVERED
)
499 broadcast_error_message(dev
,
504 dev_info(&dev
->dev
, "AER: Device recovery successful\n");
508 /* TODO: Should kernel panic here? */
509 dev_info(&dev
->dev
, "AER: Device recovery failed\n");
513 * handle_error_source - handle logging error into an event log
514 * @aerdev: pointer to pcie_device data structure of the root port
515 * @dev: pointer to pci_dev data structure of error source device
516 * @info: comprehensive error information
518 * Invoked when an error being detected by Root Port.
520 static void handle_error_source(struct pcie_device
*aerdev
,
522 struct aer_err_info
*info
)
526 if (info
->severity
== AER_CORRECTABLE
) {
528 * Correctable error does not need software intervention.
529 * No need to go through error recovery process.
531 pos
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
);
533 pci_write_config_dword(dev
, pos
+ PCI_ERR_COR_STATUS
,
536 do_recovery(dev
, info
->severity
);
539 #ifdef CONFIG_ACPI_APEI_PCIEAER
540 static void aer_recover_work_func(struct work_struct
*work
);
542 #define AER_RECOVER_RING_ORDER 4
543 #define AER_RECOVER_RING_SIZE (1 << AER_RECOVER_RING_ORDER)
545 struct aer_recover_entry
551 struct aer_capability_regs
*regs
;
554 static DEFINE_KFIFO(aer_recover_ring
, struct aer_recover_entry
,
555 AER_RECOVER_RING_SIZE
);
557 * Mutual exclusion for writers of aer_recover_ring, reader side don't
558 * need lock, because there is only one reader and lock is not needed
559 * between reader and writer.
561 static DEFINE_SPINLOCK(aer_recover_ring_lock
);
562 static DECLARE_WORK(aer_recover_work
, aer_recover_work_func
);
564 void aer_recover_queue(int domain
, unsigned int bus
, unsigned int devfn
,
565 int severity
, struct aer_capability_regs
*aer_regs
)
568 struct aer_recover_entry entry
= {
572 .severity
= severity
,
576 spin_lock_irqsave(&aer_recover_ring_lock
, flags
);
577 if (kfifo_put(&aer_recover_ring
, entry
))
578 schedule_work(&aer_recover_work
);
580 pr_err("AER recover: Buffer overflow when recovering AER for %04x:%02x:%02x:%x\n",
581 domain
, bus
, PCI_SLOT(devfn
), PCI_FUNC(devfn
));
582 spin_unlock_irqrestore(&aer_recover_ring_lock
, flags
);
584 EXPORT_SYMBOL_GPL(aer_recover_queue
);
586 static void aer_recover_work_func(struct work_struct
*work
)
588 struct aer_recover_entry entry
;
589 struct pci_dev
*pdev
;
591 while (kfifo_get(&aer_recover_ring
, &entry
)) {
592 pdev
= pci_get_domain_bus_and_slot(entry
.domain
, entry
.bus
,
595 pr_err("AER recover: Can not find pci_dev for %04x:%02x:%02x:%x\n",
596 entry
.domain
, entry
.bus
,
597 PCI_SLOT(entry
.devfn
), PCI_FUNC(entry
.devfn
));
600 cper_print_aer(pdev
, entry
.severity
, entry
.regs
);
601 do_recovery(pdev
, entry
.severity
);
608 * get_device_error_info - read error status from dev and store it to info
609 * @dev: pointer to the device expected to have a error record
610 * @info: pointer to structure to store the error record
612 * Return 1 on success, 0 on error.
614 * Note that @info is reused among all error devices. Clear fields properly.
616 static int get_device_error_info(struct pci_dev
*dev
, struct aer_err_info
*info
)
620 /* Must reset in this function */
622 info
->tlp_header_valid
= 0;
624 pos
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
);
626 /* The device might not support AER */
630 if (info
->severity
== AER_CORRECTABLE
) {
631 pci_read_config_dword(dev
, pos
+ PCI_ERR_COR_STATUS
,
633 pci_read_config_dword(dev
, pos
+ PCI_ERR_COR_MASK
,
635 if (!(info
->status
& ~info
->mask
))
637 } else if (dev
->hdr_type
& PCI_HEADER_TYPE_BRIDGE
||
638 info
->severity
== AER_NONFATAL
) {
640 /* Link is still healthy for IO reads */
641 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
,
643 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_MASK
,
645 if (!(info
->status
& ~info
->mask
))
648 /* Get First Error Pointer */
649 pci_read_config_dword(dev
, pos
+ PCI_ERR_CAP
, &temp
);
650 info
->first_error
= PCI_ERR_CAP_FEP(temp
);
652 if (info
->status
& AER_LOG_TLP_MASKS
) {
653 info
->tlp_header_valid
= 1;
654 pci_read_config_dword(dev
,
655 pos
+ PCI_ERR_HEADER_LOG
, &info
->tlp
.dw0
);
656 pci_read_config_dword(dev
,
657 pos
+ PCI_ERR_HEADER_LOG
+ 4, &info
->tlp
.dw1
);
658 pci_read_config_dword(dev
,
659 pos
+ PCI_ERR_HEADER_LOG
+ 8, &info
->tlp
.dw2
);
660 pci_read_config_dword(dev
,
661 pos
+ PCI_ERR_HEADER_LOG
+ 12, &info
->tlp
.dw3
);
668 static inline void aer_process_err_devices(struct pcie_device
*p_device
,
669 struct aer_err_info
*e_info
)
673 /* Report all before handle them, not to lost records by reset etc. */
674 for (i
= 0; i
< e_info
->error_dev_num
&& e_info
->dev
[i
]; i
++) {
675 if (get_device_error_info(e_info
->dev
[i
], e_info
))
676 aer_print_error(e_info
->dev
[i
], e_info
);
678 for (i
= 0; i
< e_info
->error_dev_num
&& e_info
->dev
[i
]; i
++) {
679 if (get_device_error_info(e_info
->dev
[i
], e_info
))
680 handle_error_source(p_device
, e_info
->dev
[i
], e_info
);
685 * aer_isr_one_error - consume an error detected by root port
686 * @p_device: pointer to error root port service device
687 * @e_src: pointer to an error source
689 static void aer_isr_one_error(struct pcie_device
*p_device
,
690 struct aer_err_source
*e_src
)
692 struct aer_err_info
*e_info
;
694 /* struct aer_err_info might be big, so we allocate it with slab */
695 e_info
= kmalloc(sizeof(struct aer_err_info
), GFP_KERNEL
);
697 dev_printk(KERN_DEBUG
, &p_device
->port
->dev
,
698 "Can't allocate mem when processing AER errors\n");
703 * There is a possibility that both correctable error and
704 * uncorrectable error being logged. Report correctable error first.
706 if (e_src
->status
& PCI_ERR_ROOT_COR_RCV
) {
707 e_info
->id
= ERR_COR_ID(e_src
->id
);
708 e_info
->severity
= AER_CORRECTABLE
;
710 if (e_src
->status
& PCI_ERR_ROOT_MULTI_COR_RCV
)
711 e_info
->multi_error_valid
= 1;
713 e_info
->multi_error_valid
= 0;
715 aer_print_port_info(p_device
->port
, e_info
);
717 if (find_source_device(p_device
->port
, e_info
))
718 aer_process_err_devices(p_device
, e_info
);
721 if (e_src
->status
& PCI_ERR_ROOT_UNCOR_RCV
) {
722 e_info
->id
= ERR_UNCOR_ID(e_src
->id
);
724 if (e_src
->status
& PCI_ERR_ROOT_FATAL_RCV
)
725 e_info
->severity
= AER_FATAL
;
727 e_info
->severity
= AER_NONFATAL
;
729 if (e_src
->status
& PCI_ERR_ROOT_MULTI_UNCOR_RCV
)
730 e_info
->multi_error_valid
= 1;
732 e_info
->multi_error_valid
= 0;
734 aer_print_port_info(p_device
->port
, e_info
);
736 if (find_source_device(p_device
->port
, e_info
))
737 aer_process_err_devices(p_device
, e_info
);
744 * get_e_source - retrieve an error source
745 * @rpc: pointer to the root port which holds an error
746 * @e_src: pointer to store retrieved error source
748 * Return 1 if an error source is retrieved, otherwise 0.
750 * Invoked by DPC handler to consume an error.
752 static int get_e_source(struct aer_rpc
*rpc
, struct aer_err_source
*e_src
)
756 /* Lock access to Root error producer/consumer index */
757 spin_lock_irqsave(&rpc
->e_lock
, flags
);
758 if (rpc
->prod_idx
== rpc
->cons_idx
) {
759 spin_unlock_irqrestore(&rpc
->e_lock
, flags
);
763 *e_src
= rpc
->e_sources
[rpc
->cons_idx
];
765 if (rpc
->cons_idx
== AER_ERROR_SOURCES_MAX
)
767 spin_unlock_irqrestore(&rpc
->e_lock
, flags
);
773 * aer_isr - consume errors detected by root port
774 * @work: definition of this work item
776 * Invoked, as DPC, when root port records new detected error
778 void aer_isr(struct work_struct
*work
)
780 struct aer_rpc
*rpc
= container_of(work
, struct aer_rpc
, dpc_handler
);
781 struct pcie_device
*p_device
= rpc
->rpd
;
782 struct aer_err_source
uninitialized_var(e_src
);
784 mutex_lock(&rpc
->rpc_mutex
);
785 while (get_e_source(rpc
, &e_src
))
786 aer_isr_one_error(p_device
, &e_src
);
787 mutex_unlock(&rpc
->rpc_mutex
);
789 wake_up(&rpc
->wait_release
);
793 * aer_init - provide AER initialization
794 * @dev: pointer to AER pcie device
796 * Invoked when AER service driver is loaded.
798 int aer_init(struct pcie_device
*dev
)
801 dev_printk(KERN_DEBUG
, &dev
->device
,
802 "aerdrv forceload requested.\n");
803 pcie_aer_force_firmware_first(dev
->port
, 0);