1 // SPDX-License-Identifier: GPL-2.0
3 * Implement the AER root port service driver. The driver registers an IRQ
4 * handler. When a root port triggers an AER interrupt, the IRQ handler
5 * collects root port status and schedules work.
7 * Copyright (C) 2006 Intel Corp.
8 * Tom Long Nguyen (tom.l.nguyen@intel.com)
9 * Zhang Yanmin (yanmin.zhang@intel.com)
11 * (C) Copyright 2009 Hewlett-Packard Development Company, L.P.
12 * Andrew Patterson <andrew.patterson@hp.com>
15 #define pr_fmt(fmt) "AER: " fmt
16 #define dev_fmt pr_fmt
18 #include <linux/bitops.h>
19 #include <linux/cper.h>
20 #include <linux/pci.h>
21 #include <linux/pci-acpi.h>
22 #include <linux/sched.h>
23 #include <linux/kernel.h>
24 #include <linux/errno.h>
26 #include <linux/init.h>
27 #include <linux/interrupt.h>
28 #include <linux/delay.h>
29 #include <linux/kfifo.h>
30 #include <linux/slab.h>
31 #include <acpi/apei.h>
32 #include <ras/ras_event.h>
37 #define AER_ERROR_SOURCES_MAX 128
39 #define AER_MAX_TYPEOF_COR_ERRS 16 /* as per PCI_ERR_COR_STATUS */
40 #define AER_MAX_TYPEOF_UNCOR_ERRS 27 /* as per PCI_ERR_UNCOR_STATUS*/
42 struct aer_err_source
{
48 struct pci_dev
*rpd
; /* Root Port device */
49 DECLARE_KFIFO(aer_fifo
, struct aer_err_source
, AER_ERROR_SOURCES_MAX
);
52 /* AER stats for the device */
56 * Fields for all AER capable devices. They indicate the errors
57 * "as seen by this device". Note that this may mean that if an
58 * end point is causing problems, the AER counters may increment
59 * at its link partner (e.g. root port) because the errors will be
60 * "seen" by the link partner and not the the problematic end point
61 * itself (which may report all counters as 0 as it never saw any
64 /* Counters for different type of correctable errors */
65 u64 dev_cor_errs
[AER_MAX_TYPEOF_COR_ERRS
];
66 /* Counters for different type of fatal uncorrectable errors */
67 u64 dev_fatal_errs
[AER_MAX_TYPEOF_UNCOR_ERRS
];
68 /* Counters for different type of nonfatal uncorrectable errors */
69 u64 dev_nonfatal_errs
[AER_MAX_TYPEOF_UNCOR_ERRS
];
70 /* Total number of ERR_COR sent by this device */
71 u64 dev_total_cor_errs
;
72 /* Total number of ERR_FATAL sent by this device */
73 u64 dev_total_fatal_errs
;
74 /* Total number of ERR_NONFATAL sent by this device */
75 u64 dev_total_nonfatal_errs
;
78 * Fields for Root ports & root complex event collectors only, these
79 * indicate the total number of ERR_COR, ERR_FATAL, and ERR_NONFATAL
80 * messages received by the root port / event collector, INCLUDING the
81 * ones that are generated internally (by the rootport itself)
83 u64 rootport_total_cor_errs
;
84 u64 rootport_total_fatal_errs
;
85 u64 rootport_total_nonfatal_errs
;
88 #define AER_LOG_TLP_MASKS (PCI_ERR_UNC_POISON_TLP| \
91 PCI_ERR_UNC_COMP_ABORT| \
92 PCI_ERR_UNC_UNX_COMP| \
95 #define SYSTEM_ERROR_INTR_ON_MESG_MASK (PCI_EXP_RTCTL_SECEE| \
96 PCI_EXP_RTCTL_SENFEE| \
98 #define ROOT_PORT_INTR_ON_MESG_MASK (PCI_ERR_ROOT_CMD_COR_EN| \
99 PCI_ERR_ROOT_CMD_NONFATAL_EN| \
100 PCI_ERR_ROOT_CMD_FATAL_EN)
101 #define ERR_COR_ID(d) (d & 0xffff)
102 #define ERR_UNCOR_ID(d) (d >> 16)
104 static int pcie_aer_disable
;
105 static pci_ers_result_t
aer_root_reset(struct pci_dev
*dev
);
107 void pci_no_aer(void)
109 pcie_aer_disable
= 1;
112 bool pci_aer_available(void)
114 return !pcie_aer_disable
&& pci_msi_enabled();
117 #ifdef CONFIG_PCIE_ECRC
119 #define ECRC_POLICY_DEFAULT 0 /* ECRC set by BIOS */
120 #define ECRC_POLICY_OFF 1 /* ECRC off for performance */
121 #define ECRC_POLICY_ON 2 /* ECRC on for data integrity */
123 static int ecrc_policy
= ECRC_POLICY_DEFAULT
;
125 static const char * const ecrc_policy_str
[] = {
126 [ECRC_POLICY_DEFAULT
] = "bios",
127 [ECRC_POLICY_OFF
] = "off",
128 [ECRC_POLICY_ON
] = "on"
132 * enable_ercr_checking - enable PCIe ECRC checking for a device
133 * @dev: the PCI device
135 * Returns 0 on success, or negative on failure.
137 static int enable_ecrc_checking(struct pci_dev
*dev
)
142 if (!pci_is_pcie(dev
))
149 pci_read_config_dword(dev
, pos
+ PCI_ERR_CAP
, ®32
);
150 if (reg32
& PCI_ERR_CAP_ECRC_GENC
)
151 reg32
|= PCI_ERR_CAP_ECRC_GENE
;
152 if (reg32
& PCI_ERR_CAP_ECRC_CHKC
)
153 reg32
|= PCI_ERR_CAP_ECRC_CHKE
;
154 pci_write_config_dword(dev
, pos
+ PCI_ERR_CAP
, reg32
);
160 * disable_ercr_checking - disables PCIe ECRC checking for a device
161 * @dev: the PCI device
163 * Returns 0 on success, or negative on failure.
165 static int disable_ecrc_checking(struct pci_dev
*dev
)
170 if (!pci_is_pcie(dev
))
177 pci_read_config_dword(dev
, pos
+ PCI_ERR_CAP
, ®32
);
178 reg32
&= ~(PCI_ERR_CAP_ECRC_GENE
| PCI_ERR_CAP_ECRC_CHKE
);
179 pci_write_config_dword(dev
, pos
+ PCI_ERR_CAP
, reg32
);
185 * pcie_set_ecrc_checking - set/unset PCIe ECRC checking for a device based on global policy
186 * @dev: the PCI device
188 void pcie_set_ecrc_checking(struct pci_dev
*dev
)
190 switch (ecrc_policy
) {
191 case ECRC_POLICY_DEFAULT
:
193 case ECRC_POLICY_OFF
:
194 disable_ecrc_checking(dev
);
197 enable_ecrc_checking(dev
);
205 * pcie_ecrc_get_policy - parse kernel command-line ecrc option
206 * @str: ECRC policy from kernel command line to use
208 void pcie_ecrc_get_policy(char *str
)
212 i
= match_string(ecrc_policy_str
, ARRAY_SIZE(ecrc_policy_str
), str
);
218 #endif /* CONFIG_PCIE_ECRC */
220 #ifdef CONFIG_ACPI_APEI
221 static inline int hest_match_pci(struct acpi_hest_aer_common
*p
,
224 return ACPI_HEST_SEGMENT(p
->bus
) == pci_domain_nr(pci
->bus
) &&
225 ACPI_HEST_BUS(p
->bus
) == pci
->bus
->number
&&
226 p
->device
== PCI_SLOT(pci
->devfn
) &&
227 p
->function
== PCI_FUNC(pci
->devfn
);
230 static inline bool hest_match_type(struct acpi_hest_header
*hest_hdr
,
233 u16 hest_type
= hest_hdr
->type
;
234 u8 pcie_type
= pci_pcie_type(dev
);
236 if ((hest_type
== ACPI_HEST_TYPE_AER_ROOT_PORT
&&
237 pcie_type
== PCI_EXP_TYPE_ROOT_PORT
) ||
238 (hest_type
== ACPI_HEST_TYPE_AER_ENDPOINT
&&
239 pcie_type
== PCI_EXP_TYPE_ENDPOINT
) ||
240 (hest_type
== ACPI_HEST_TYPE_AER_BRIDGE
&&
241 (dev
->class >> 16) == PCI_BASE_CLASS_BRIDGE
))
246 struct aer_hest_parse_info
{
247 struct pci_dev
*pci_dev
;
251 static int hest_source_is_pcie_aer(struct acpi_hest_header
*hest_hdr
)
253 if (hest_hdr
->type
== ACPI_HEST_TYPE_AER_ROOT_PORT
||
254 hest_hdr
->type
== ACPI_HEST_TYPE_AER_ENDPOINT
||
255 hest_hdr
->type
== ACPI_HEST_TYPE_AER_BRIDGE
)
260 static int aer_hest_parse(struct acpi_hest_header
*hest_hdr
, void *data
)
262 struct aer_hest_parse_info
*info
= data
;
263 struct acpi_hest_aer_common
*p
;
266 if (!hest_source_is_pcie_aer(hest_hdr
))
269 p
= (struct acpi_hest_aer_common
*)(hest_hdr
+ 1);
270 ff
= !!(p
->flags
& ACPI_HEST_FIRMWARE_FIRST
);
273 * If no specific device is supplied, determine whether
274 * FIRMWARE_FIRST is set for *any* PCIe device.
276 if (!info
->pci_dev
) {
277 info
->firmware_first
|= ff
;
281 /* Otherwise, check the specific device */
282 if (p
->flags
& ACPI_HEST_GLOBAL
) {
283 if (hest_match_type(hest_hdr
, info
->pci_dev
))
284 info
->firmware_first
= ff
;
286 if (hest_match_pci(p
, info
->pci_dev
))
287 info
->firmware_first
= ff
;
292 static void aer_set_firmware_first(struct pci_dev
*pci_dev
)
295 struct aer_hest_parse_info info
= {
300 rc
= apei_hest_parse(aer_hest_parse
, &info
);
303 pci_dev
->__aer_firmware_first
= 0;
305 pci_dev
->__aer_firmware_first
= info
.firmware_first
;
306 pci_dev
->__aer_firmware_first_valid
= 1;
309 int pcie_aer_get_firmware_first(struct pci_dev
*dev
)
311 if (!pci_is_pcie(dev
))
314 if (pcie_ports_native
)
317 if (!dev
->__aer_firmware_first_valid
)
318 aer_set_firmware_first(dev
);
319 return dev
->__aer_firmware_first
;
322 static bool aer_firmware_first
;
325 * aer_acpi_firmware_first - Check if APEI should control AER.
327 bool aer_acpi_firmware_first(void)
329 static bool parsed
= false;
330 struct aer_hest_parse_info info
= {
331 .pci_dev
= NULL
, /* Check all PCIe devices */
335 if (pcie_ports_native
)
339 apei_hest_parse(aer_hest_parse
, &info
);
340 aer_firmware_first
= info
.firmware_first
;
343 return aer_firmware_first
;
347 #define PCI_EXP_AER_FLAGS (PCI_EXP_DEVCTL_CERE | PCI_EXP_DEVCTL_NFERE | \
348 PCI_EXP_DEVCTL_FERE | PCI_EXP_DEVCTL_URRE)
350 int pci_enable_pcie_error_reporting(struct pci_dev
*dev
)
352 if (pcie_aer_get_firmware_first(dev
))
358 return pcie_capability_set_word(dev
, PCI_EXP_DEVCTL
, PCI_EXP_AER_FLAGS
);
360 EXPORT_SYMBOL_GPL(pci_enable_pcie_error_reporting
);
362 int pci_disable_pcie_error_reporting(struct pci_dev
*dev
)
364 if (pcie_aer_get_firmware_first(dev
))
367 return pcie_capability_clear_word(dev
, PCI_EXP_DEVCTL
,
370 EXPORT_SYMBOL_GPL(pci_disable_pcie_error_reporting
);
372 void pci_aer_clear_device_status(struct pci_dev
*dev
)
376 pcie_capability_read_word(dev
, PCI_EXP_DEVSTA
, &sta
);
377 pcie_capability_write_word(dev
, PCI_EXP_DEVSTA
, sta
);
380 int pci_aer_clear_nonfatal_status(struct pci_dev
*dev
)
389 if (pcie_aer_get_firmware_first(dev
))
392 /* Clear status bits for ERR_NONFATAL errors only */
393 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
, &status
);
394 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_SEVER
, &sev
);
397 pci_write_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
, status
);
401 EXPORT_SYMBOL_GPL(pci_aer_clear_nonfatal_status
);
403 void pci_aer_clear_fatal_status(struct pci_dev
*dev
)
412 if (pcie_aer_get_firmware_first(dev
))
415 /* Clear status bits for ERR_FATAL errors only */
416 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
, &status
);
417 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_SEVER
, &sev
);
420 pci_write_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
, status
);
424 * pci_aer_raw_clear_status - Clear AER error registers.
425 * @dev: the PCI device
427 * Clearing AER error status registers unconditionally, regardless of
428 * whether they're owned by firmware or the OS.
430 * Returns 0 on success, or negative on failure.
432 int pci_aer_raw_clear_status(struct pci_dev
*dev
)
438 if (!pci_is_pcie(dev
))
445 port_type
= pci_pcie_type(dev
);
446 if (port_type
== PCI_EXP_TYPE_ROOT_PORT
) {
447 pci_read_config_dword(dev
, pos
+ PCI_ERR_ROOT_STATUS
, &status
);
448 pci_write_config_dword(dev
, pos
+ PCI_ERR_ROOT_STATUS
, status
);
451 pci_read_config_dword(dev
, pos
+ PCI_ERR_COR_STATUS
, &status
);
452 pci_write_config_dword(dev
, pos
+ PCI_ERR_COR_STATUS
, status
);
454 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
, &status
);
455 pci_write_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
, status
);
460 int pci_aer_clear_status(struct pci_dev
*dev
)
462 if (pcie_aer_get_firmware_first(dev
))
465 return pci_aer_raw_clear_status(dev
);
468 void pci_save_aer_state(struct pci_dev
*dev
)
470 struct pci_cap_saved_state
*save_state
;
478 save_state
= pci_find_saved_ext_cap(dev
, PCI_EXT_CAP_ID_ERR
);
482 cap
= &save_state
->cap
.data
[0];
483 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_MASK
, cap
++);
484 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_SEVER
, cap
++);
485 pci_read_config_dword(dev
, pos
+ PCI_ERR_COR_MASK
, cap
++);
486 pci_read_config_dword(dev
, pos
+ PCI_ERR_CAP
, cap
++);
487 if (pcie_cap_has_rtctl(dev
))
488 pci_read_config_dword(dev
, pos
+ PCI_ERR_ROOT_COMMAND
, cap
++);
491 void pci_restore_aer_state(struct pci_dev
*dev
)
493 struct pci_cap_saved_state
*save_state
;
501 save_state
= pci_find_saved_ext_cap(dev
, PCI_EXT_CAP_ID_ERR
);
505 cap
= &save_state
->cap
.data
[0];
506 pci_write_config_dword(dev
, pos
+ PCI_ERR_UNCOR_MASK
, *cap
++);
507 pci_write_config_dword(dev
, pos
+ PCI_ERR_UNCOR_SEVER
, *cap
++);
508 pci_write_config_dword(dev
, pos
+ PCI_ERR_COR_MASK
, *cap
++);
509 pci_write_config_dword(dev
, pos
+ PCI_ERR_CAP
, *cap
++);
510 if (pcie_cap_has_rtctl(dev
))
511 pci_write_config_dword(dev
, pos
+ PCI_ERR_ROOT_COMMAND
, *cap
++);
514 void pci_aer_init(struct pci_dev
*dev
)
518 dev
->aer_cap
= pci_find_ext_capability(dev
, PCI_EXT_CAP_ID_ERR
);
522 dev
->aer_stats
= kzalloc(sizeof(struct aer_stats
), GFP_KERNEL
);
525 * We save/restore PCI_ERR_UNCOR_MASK, PCI_ERR_UNCOR_SEVER,
526 * PCI_ERR_COR_MASK, and PCI_ERR_CAP. Root and Root Complex Event
527 * Collectors also implement PCI_ERR_ROOT_COMMAND (PCIe r5.0, sec
530 n
= pcie_cap_has_rtctl(dev
) ? 5 : 4;
531 pci_add_ext_cap_save_buffer(dev
, PCI_EXT_CAP_ID_ERR
, sizeof(u32
) * n
);
533 pci_aer_clear_status(dev
);
536 void pci_aer_exit(struct pci_dev
*dev
)
538 kfree(dev
->aer_stats
);
539 dev
->aer_stats
= NULL
;
542 #define AER_AGENT_RECEIVER 0
543 #define AER_AGENT_REQUESTER 1
544 #define AER_AGENT_COMPLETER 2
545 #define AER_AGENT_TRANSMITTER 3
547 #define AER_AGENT_REQUESTER_MASK(t) ((t == AER_CORRECTABLE) ? \
548 0 : (PCI_ERR_UNC_COMP_TIME|PCI_ERR_UNC_UNSUP))
549 #define AER_AGENT_COMPLETER_MASK(t) ((t == AER_CORRECTABLE) ? \
550 0 : PCI_ERR_UNC_COMP_ABORT)
551 #define AER_AGENT_TRANSMITTER_MASK(t) ((t == AER_CORRECTABLE) ? \
552 (PCI_ERR_COR_REP_ROLL|PCI_ERR_COR_REP_TIMER) : 0)
554 #define AER_GET_AGENT(t, e) \
555 ((e & AER_AGENT_COMPLETER_MASK(t)) ? AER_AGENT_COMPLETER : \
556 (e & AER_AGENT_REQUESTER_MASK(t)) ? AER_AGENT_REQUESTER : \
557 (e & AER_AGENT_TRANSMITTER_MASK(t)) ? AER_AGENT_TRANSMITTER : \
560 #define AER_PHYSICAL_LAYER_ERROR 0
561 #define AER_DATA_LINK_LAYER_ERROR 1
562 #define AER_TRANSACTION_LAYER_ERROR 2
564 #define AER_PHYSICAL_LAYER_ERROR_MASK(t) ((t == AER_CORRECTABLE) ? \
565 PCI_ERR_COR_RCVR : 0)
566 #define AER_DATA_LINK_LAYER_ERROR_MASK(t) ((t == AER_CORRECTABLE) ? \
567 (PCI_ERR_COR_BAD_TLP| \
568 PCI_ERR_COR_BAD_DLLP| \
569 PCI_ERR_COR_REP_ROLL| \
570 PCI_ERR_COR_REP_TIMER) : PCI_ERR_UNC_DLP)
572 #define AER_GET_LAYER_ERROR(t, e) \
573 ((e & AER_PHYSICAL_LAYER_ERROR_MASK(t)) ? AER_PHYSICAL_LAYER_ERROR : \
574 (e & AER_DATA_LINK_LAYER_ERROR_MASK(t)) ? AER_DATA_LINK_LAYER_ERROR : \
575 AER_TRANSACTION_LAYER_ERROR)
580 static const char *aer_error_severity_string
[] = {
581 "Uncorrected (Non-Fatal)",
582 "Uncorrected (Fatal)",
586 static const char *aer_error_layer
[] = {
592 static const char *aer_correctable_error_string
[AER_MAX_TYPEOF_COR_ERRS
] = {
593 "RxErr", /* Bit Position 0 */
599 "BadTLP", /* Bit Position 6 */
600 "BadDLLP", /* Bit Position 7 */
601 "Rollover", /* Bit Position 8 */
605 "Timeout", /* Bit Position 12 */
606 "NonFatalErr", /* Bit Position 13 */
607 "CorrIntErr", /* Bit Position 14 */
608 "HeaderOF", /* Bit Position 15 */
611 static const char *aer_uncorrectable_error_string
[AER_MAX_TYPEOF_UNCOR_ERRS
] = {
612 "Undefined", /* Bit Position 0 */
616 "DLP", /* Bit Position 4 */
617 "SDES", /* Bit Position 5 */
624 "TLP", /* Bit Position 12 */
625 "FCP", /* Bit Position 13 */
626 "CmpltTO", /* Bit Position 14 */
627 "CmpltAbrt", /* Bit Position 15 */
628 "UnxCmplt", /* Bit Position 16 */
629 "RxOF", /* Bit Position 17 */
630 "MalfTLP", /* Bit Position 18 */
631 "ECRC", /* Bit Position 19 */
632 "UnsupReq", /* Bit Position 20 */
633 "ACSViol", /* Bit Position 21 */
634 "UncorrIntErr", /* Bit Position 22 */
635 "BlockedTLP", /* Bit Position 23 */
636 "AtomicOpBlocked", /* Bit Position 24 */
637 "TLPBlockedErr", /* Bit Position 25 */
638 "PoisonTLPBlocked", /* Bit Position 26 */
641 static const char *aer_agent_string
[] = {
648 #define aer_stats_dev_attr(name, stats_array, strings_array, \
649 total_string, total_field) \
651 name##_show(struct device *dev, struct device_attribute *attr, \
656 struct pci_dev *pdev = to_pci_dev(dev); \
657 u64 *stats = pdev->aer_stats->stats_array; \
659 for (i = 0; i < ARRAY_SIZE(strings_array); i++) { \
660 if (strings_array[i]) \
661 str += sprintf(str, "%s %llu\n", \
662 strings_array[i], stats[i]); \
664 str += sprintf(str, #stats_array "_bit[%d] %llu\n",\
667 str += sprintf(str, "TOTAL_%s %llu\n", total_string, \
668 pdev->aer_stats->total_field); \
671 static DEVICE_ATTR_RO(name)
673 aer_stats_dev_attr(aer_dev_correctable
, dev_cor_errs
,
674 aer_correctable_error_string
, "ERR_COR",
676 aer_stats_dev_attr(aer_dev_fatal
, dev_fatal_errs
,
677 aer_uncorrectable_error_string
, "ERR_FATAL",
678 dev_total_fatal_errs
);
679 aer_stats_dev_attr(aer_dev_nonfatal
, dev_nonfatal_errs
,
680 aer_uncorrectable_error_string
, "ERR_NONFATAL",
681 dev_total_nonfatal_errs
);
683 #define aer_stats_rootport_attr(name, field) \
685 name##_show(struct device *dev, struct device_attribute *attr, \
688 struct pci_dev *pdev = to_pci_dev(dev); \
689 return sprintf(buf, "%llu\n", pdev->aer_stats->field); \
691 static DEVICE_ATTR_RO(name)
693 aer_stats_rootport_attr(aer_rootport_total_err_cor
,
694 rootport_total_cor_errs
);
695 aer_stats_rootport_attr(aer_rootport_total_err_fatal
,
696 rootport_total_fatal_errs
);
697 aer_stats_rootport_attr(aer_rootport_total_err_nonfatal
,
698 rootport_total_nonfatal_errs
);
700 static struct attribute
*aer_stats_attrs
[] __ro_after_init
= {
701 &dev_attr_aer_dev_correctable
.attr
,
702 &dev_attr_aer_dev_fatal
.attr
,
703 &dev_attr_aer_dev_nonfatal
.attr
,
704 &dev_attr_aer_rootport_total_err_cor
.attr
,
705 &dev_attr_aer_rootport_total_err_fatal
.attr
,
706 &dev_attr_aer_rootport_total_err_nonfatal
.attr
,
710 static umode_t
aer_stats_attrs_are_visible(struct kobject
*kobj
,
711 struct attribute
*a
, int n
)
713 struct device
*dev
= kobj_to_dev(kobj
);
714 struct pci_dev
*pdev
= to_pci_dev(dev
);
716 if (!pdev
->aer_stats
)
719 if ((a
== &dev_attr_aer_rootport_total_err_cor
.attr
||
720 a
== &dev_attr_aer_rootport_total_err_fatal
.attr
||
721 a
== &dev_attr_aer_rootport_total_err_nonfatal
.attr
) &&
722 pci_pcie_type(pdev
) != PCI_EXP_TYPE_ROOT_PORT
)
728 const struct attribute_group aer_stats_attr_group
= {
729 .attrs
= aer_stats_attrs
,
730 .is_visible
= aer_stats_attrs_are_visible
,
733 static void pci_dev_aer_stats_incr(struct pci_dev
*pdev
,
734 struct aer_err_info
*info
)
736 unsigned long status
= info
->status
& ~info
->mask
;
739 struct aer_stats
*aer_stats
= pdev
->aer_stats
;
744 switch (info
->severity
) {
745 case AER_CORRECTABLE
:
746 aer_stats
->dev_total_cor_errs
++;
747 counter
= &aer_stats
->dev_cor_errs
[0];
748 max
= AER_MAX_TYPEOF_COR_ERRS
;
751 aer_stats
->dev_total_nonfatal_errs
++;
752 counter
= &aer_stats
->dev_nonfatal_errs
[0];
753 max
= AER_MAX_TYPEOF_UNCOR_ERRS
;
756 aer_stats
->dev_total_fatal_errs
++;
757 counter
= &aer_stats
->dev_fatal_errs
[0];
758 max
= AER_MAX_TYPEOF_UNCOR_ERRS
;
762 for_each_set_bit(i
, &status
, max
)
766 static void pci_rootport_aer_stats_incr(struct pci_dev
*pdev
,
767 struct aer_err_source
*e_src
)
769 struct aer_stats
*aer_stats
= pdev
->aer_stats
;
774 if (e_src
->status
& PCI_ERR_ROOT_COR_RCV
)
775 aer_stats
->rootport_total_cor_errs
++;
777 if (e_src
->status
& PCI_ERR_ROOT_UNCOR_RCV
) {
778 if (e_src
->status
& PCI_ERR_ROOT_FATAL_RCV
)
779 aer_stats
->rootport_total_fatal_errs
++;
781 aer_stats
->rootport_total_nonfatal_errs
++;
785 static void __print_tlp_header(struct pci_dev
*dev
,
786 struct aer_header_log_regs
*t
)
788 pci_err(dev
, " TLP Header: %08x %08x %08x %08x\n",
789 t
->dw0
, t
->dw1
, t
->dw2
, t
->dw3
);
792 static void __aer_print_error(struct pci_dev
*dev
,
793 struct aer_err_info
*info
)
795 unsigned long status
= info
->status
& ~info
->mask
;
796 const char *errmsg
= NULL
;
799 for_each_set_bit(i
, &status
, 32) {
800 if (info
->severity
== AER_CORRECTABLE
)
801 errmsg
= i
< ARRAY_SIZE(aer_correctable_error_string
) ?
802 aer_correctable_error_string
[i
] : NULL
;
804 errmsg
= i
< ARRAY_SIZE(aer_uncorrectable_error_string
) ?
805 aer_uncorrectable_error_string
[i
] : NULL
;
808 pci_err(dev
, " [%2d] %-22s%s\n", i
, errmsg
,
809 info
->first_error
== i
? " (First)" : "");
811 pci_err(dev
, " [%2d] Unknown Error Bit%s\n",
812 i
, info
->first_error
== i
? " (First)" : "");
814 pci_dev_aer_stats_incr(dev
, info
);
817 void aer_print_error(struct pci_dev
*dev
, struct aer_err_info
*info
)
820 int id
= ((dev
->bus
->number
<< 8) | dev
->devfn
);
823 pci_err(dev
, "PCIe Bus Error: severity=%s, type=Inaccessible, (Unregistered Agent ID)\n",
824 aer_error_severity_string
[info
->severity
]);
828 layer
= AER_GET_LAYER_ERROR(info
->severity
, info
->status
);
829 agent
= AER_GET_AGENT(info
->severity
, info
->status
);
831 pci_err(dev
, "PCIe Bus Error: severity=%s, type=%s, (%s)\n",
832 aer_error_severity_string
[info
->severity
],
833 aer_error_layer
[layer
], aer_agent_string
[agent
]);
835 pci_err(dev
, " device [%04x:%04x] error status/mask=%08x/%08x\n",
836 dev
->vendor
, dev
->device
,
837 info
->status
, info
->mask
);
839 __aer_print_error(dev
, info
);
841 if (info
->tlp_header_valid
)
842 __print_tlp_header(dev
, &info
->tlp
);
845 if (info
->id
&& info
->error_dev_num
> 1 && info
->id
== id
)
846 pci_err(dev
, " Error of this Agent is reported first\n");
848 trace_aer_event(dev_name(&dev
->dev
), (info
->status
& ~info
->mask
),
849 info
->severity
, info
->tlp_header_valid
, &info
->tlp
);
852 static void aer_print_port_info(struct pci_dev
*dev
, struct aer_err_info
*info
)
854 u8 bus
= info
->id
>> 8;
855 u8 devfn
= info
->id
& 0xff;
857 pci_info(dev
, "%s%s error received: %04x:%02x:%02x.%d\n",
858 info
->multi_error_valid
? "Multiple " : "",
859 aer_error_severity_string
[info
->severity
],
860 pci_domain_nr(dev
->bus
), bus
, PCI_SLOT(devfn
),
864 #ifdef CONFIG_ACPI_APEI_PCIEAER
865 int cper_severity_to_aer(int cper_severity
)
867 switch (cper_severity
) {
868 case CPER_SEV_RECOVERABLE
:
873 return AER_CORRECTABLE
;
876 EXPORT_SYMBOL_GPL(cper_severity_to_aer
);
878 void cper_print_aer(struct pci_dev
*dev
, int aer_severity
,
879 struct aer_capability_regs
*aer
)
881 int layer
, agent
, tlp_header_valid
= 0;
883 struct aer_err_info info
;
885 if (aer_severity
== AER_CORRECTABLE
) {
886 status
= aer
->cor_status
;
887 mask
= aer
->cor_mask
;
889 status
= aer
->uncor_status
;
890 mask
= aer
->uncor_mask
;
891 tlp_header_valid
= status
& AER_LOG_TLP_MASKS
;
894 layer
= AER_GET_LAYER_ERROR(aer_severity
, status
);
895 agent
= AER_GET_AGENT(aer_severity
, status
);
897 memset(&info
, 0, sizeof(info
));
898 info
.severity
= aer_severity
;
899 info
.status
= status
;
901 info
.first_error
= PCI_ERR_CAP_FEP(aer
->cap_control
);
903 pci_err(dev
, "aer_status: 0x%08x, aer_mask: 0x%08x\n", status
, mask
);
904 __aer_print_error(dev
, &info
);
905 pci_err(dev
, "aer_layer=%s, aer_agent=%s\n",
906 aer_error_layer
[layer
], aer_agent_string
[agent
]);
908 if (aer_severity
!= AER_CORRECTABLE
)
909 pci_err(dev
, "aer_uncor_severity: 0x%08x\n",
910 aer
->uncor_severity
);
912 if (tlp_header_valid
)
913 __print_tlp_header(dev
, &aer
->header_log
);
915 trace_aer_event(dev_name(&dev
->dev
), (status
& ~mask
),
916 aer_severity
, tlp_header_valid
, &aer
->header_log
);
921 * add_error_device - list device to be handled
922 * @e_info: pointer to error info
923 * @dev: pointer to pci_dev to be added
925 static int add_error_device(struct aer_err_info
*e_info
, struct pci_dev
*dev
)
927 if (e_info
->error_dev_num
< AER_MAX_MULTI_ERR_DEVICES
) {
928 e_info
->dev
[e_info
->error_dev_num
] = pci_dev_get(dev
);
929 e_info
->error_dev_num
++;
936 * is_error_source - check whether the device is source of reported error
937 * @dev: pointer to pci_dev to be checked
938 * @e_info: pointer to reported error info
940 static bool is_error_source(struct pci_dev
*dev
, struct aer_err_info
*e_info
)
947 * When bus id is equal to 0, it might be a bad id
948 * reported by root port.
950 if ((PCI_BUS_NUM(e_info
->id
) != 0) &&
951 !(dev
->bus
->bus_flags
& PCI_BUS_FLAGS_NO_AERSID
)) {
952 /* Device ID match? */
953 if (e_info
->id
== ((dev
->bus
->number
<< 8) | dev
->devfn
))
956 /* Continue id comparing if there is no multiple error */
957 if (!e_info
->multi_error_valid
)
963 * 1) bus id is equal to 0. Some ports might lose the bus
964 * id of error source id;
965 * 2) bus flag PCI_BUS_FLAGS_NO_AERSID is set
966 * 3) There are multiple errors and prior ID comparing fails;
967 * We check AER status registers to find possible reporter.
969 if (atomic_read(&dev
->enable_cnt
) == 0)
972 /* Check if AER is enabled */
973 pcie_capability_read_word(dev
, PCI_EXP_DEVCTL
, ®16
);
974 if (!(reg16
& PCI_EXP_AER_FLAGS
))
981 /* Check if error is recorded */
982 if (e_info
->severity
== AER_CORRECTABLE
) {
983 pci_read_config_dword(dev
, pos
+ PCI_ERR_COR_STATUS
, &status
);
984 pci_read_config_dword(dev
, pos
+ PCI_ERR_COR_MASK
, &mask
);
986 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
, &status
);
987 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_MASK
, &mask
);
995 static int find_device_iter(struct pci_dev
*dev
, void *data
)
997 struct aer_err_info
*e_info
= (struct aer_err_info
*)data
;
999 if (is_error_source(dev
, e_info
)) {
1000 /* List this device */
1001 if (add_error_device(e_info
, dev
)) {
1002 /* We cannot handle more... Stop iteration */
1003 /* TODO: Should print error message here? */
1007 /* If there is only a single error, stop iteration */
1008 if (!e_info
->multi_error_valid
)
1015 * find_source_device - search through device hierarchy for source device
1016 * @parent: pointer to Root Port pci_dev data structure
1017 * @e_info: including detailed error information such like id
1019 * Return true if found.
1021 * Invoked by DPC when error is detected at the Root Port.
1022 * Caller of this function must set id, severity, and multi_error_valid of
1023 * struct aer_err_info pointed by @e_info properly. This function must fill
1024 * e_info->error_dev_num and e_info->dev[], based on the given information.
1026 static bool find_source_device(struct pci_dev
*parent
,
1027 struct aer_err_info
*e_info
)
1029 struct pci_dev
*dev
= parent
;
1032 /* Must reset in this function */
1033 e_info
->error_dev_num
= 0;
1035 /* Is Root Port an agent that sends error message? */
1036 result
= find_device_iter(dev
, e_info
);
1040 pci_walk_bus(parent
->subordinate
, find_device_iter
, e_info
);
1042 if (!e_info
->error_dev_num
) {
1043 pci_info(parent
, "can't find device of ID%04x\n", e_info
->id
);
1050 * handle_error_source - handle logging error into an event log
1051 * @dev: pointer to pci_dev data structure of error source device
1052 * @info: comprehensive error information
1054 * Invoked when an error being detected by Root Port.
1056 static void handle_error_source(struct pci_dev
*dev
, struct aer_err_info
*info
)
1060 if (info
->severity
== AER_CORRECTABLE
) {
1062 * Correctable error does not need software intervention.
1063 * No need to go through error recovery process.
1067 pci_write_config_dword(dev
, pos
+ PCI_ERR_COR_STATUS
,
1069 pci_aer_clear_device_status(dev
);
1070 } else if (info
->severity
== AER_NONFATAL
)
1071 pcie_do_recovery(dev
, pci_channel_io_normal
, aer_root_reset
);
1072 else if (info
->severity
== AER_FATAL
)
1073 pcie_do_recovery(dev
, pci_channel_io_frozen
, aer_root_reset
);
1077 #ifdef CONFIG_ACPI_APEI_PCIEAER
1079 #define AER_RECOVER_RING_ORDER 4
1080 #define AER_RECOVER_RING_SIZE (1 << AER_RECOVER_RING_ORDER)
1082 struct aer_recover_entry
{
1087 struct aer_capability_regs
*regs
;
1090 static DEFINE_KFIFO(aer_recover_ring
, struct aer_recover_entry
,
1091 AER_RECOVER_RING_SIZE
);
1093 static void aer_recover_work_func(struct work_struct
*work
)
1095 struct aer_recover_entry entry
;
1096 struct pci_dev
*pdev
;
1098 while (kfifo_get(&aer_recover_ring
, &entry
)) {
1099 pdev
= pci_get_domain_bus_and_slot(entry
.domain
, entry
.bus
,
1102 pr_err("AER recover: Can not find pci_dev for %04x:%02x:%02x:%x\n",
1103 entry
.domain
, entry
.bus
,
1104 PCI_SLOT(entry
.devfn
), PCI_FUNC(entry
.devfn
));
1107 cper_print_aer(pdev
, entry
.severity
, entry
.regs
);
1108 if (entry
.severity
== AER_NONFATAL
)
1109 pcie_do_recovery(pdev
, pci_channel_io_normal
,
1111 else if (entry
.severity
== AER_FATAL
)
1112 pcie_do_recovery(pdev
, pci_channel_io_frozen
,
1119 * Mutual exclusion for writers of aer_recover_ring, reader side don't
1120 * need lock, because there is only one reader and lock is not needed
1121 * between reader and writer.
1123 static DEFINE_SPINLOCK(aer_recover_ring_lock
);
1124 static DECLARE_WORK(aer_recover_work
, aer_recover_work_func
);
1126 void aer_recover_queue(int domain
, unsigned int bus
, unsigned int devfn
,
1127 int severity
, struct aer_capability_regs
*aer_regs
)
1129 struct aer_recover_entry entry
= {
1133 .severity
= severity
,
1137 if (kfifo_in_spinlocked(&aer_recover_ring
, &entry
, 1,
1138 &aer_recover_ring_lock
))
1139 schedule_work(&aer_recover_work
);
1141 pr_err("AER recover: Buffer overflow when recovering AER for %04x:%02x:%02x:%x\n",
1142 domain
, bus
, PCI_SLOT(devfn
), PCI_FUNC(devfn
));
1144 EXPORT_SYMBOL_GPL(aer_recover_queue
);
1148 * aer_get_device_error_info - read error status from dev and store it to info
1149 * @dev: pointer to the device expected to have a error record
1150 * @info: pointer to structure to store the error record
1152 * Return 1 on success, 0 on error.
1154 * Note that @info is reused among all error devices. Clear fields properly.
1156 int aer_get_device_error_info(struct pci_dev
*dev
, struct aer_err_info
*info
)
1160 /* Must reset in this function */
1162 info
->tlp_header_valid
= 0;
1166 /* The device might not support AER */
1170 if (info
->severity
== AER_CORRECTABLE
) {
1171 pci_read_config_dword(dev
, pos
+ PCI_ERR_COR_STATUS
,
1173 pci_read_config_dword(dev
, pos
+ PCI_ERR_COR_MASK
,
1175 if (!(info
->status
& ~info
->mask
))
1177 } else if (pci_pcie_type(dev
) == PCI_EXP_TYPE_ROOT_PORT
||
1178 pci_pcie_type(dev
) == PCI_EXP_TYPE_DOWNSTREAM
||
1179 info
->severity
== AER_NONFATAL
) {
1181 /* Link is still healthy for IO reads */
1182 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_STATUS
,
1184 pci_read_config_dword(dev
, pos
+ PCI_ERR_UNCOR_MASK
,
1186 if (!(info
->status
& ~info
->mask
))
1189 /* Get First Error Pointer */
1190 pci_read_config_dword(dev
, pos
+ PCI_ERR_CAP
, &temp
);
1191 info
->first_error
= PCI_ERR_CAP_FEP(temp
);
1193 if (info
->status
& AER_LOG_TLP_MASKS
) {
1194 info
->tlp_header_valid
= 1;
1195 pci_read_config_dword(dev
,
1196 pos
+ PCI_ERR_HEADER_LOG
, &info
->tlp
.dw0
);
1197 pci_read_config_dword(dev
,
1198 pos
+ PCI_ERR_HEADER_LOG
+ 4, &info
->tlp
.dw1
);
1199 pci_read_config_dword(dev
,
1200 pos
+ PCI_ERR_HEADER_LOG
+ 8, &info
->tlp
.dw2
);
1201 pci_read_config_dword(dev
,
1202 pos
+ PCI_ERR_HEADER_LOG
+ 12, &info
->tlp
.dw3
);
1209 static inline void aer_process_err_devices(struct aer_err_info
*e_info
)
1213 /* Report all before handle them, not to lost records by reset etc. */
1214 for (i
= 0; i
< e_info
->error_dev_num
&& e_info
->dev
[i
]; i
++) {
1215 if (aer_get_device_error_info(e_info
->dev
[i
], e_info
))
1216 aer_print_error(e_info
->dev
[i
], e_info
);
1218 for (i
= 0; i
< e_info
->error_dev_num
&& e_info
->dev
[i
]; i
++) {
1219 if (aer_get_device_error_info(e_info
->dev
[i
], e_info
))
1220 handle_error_source(e_info
->dev
[i
], e_info
);
1225 * aer_isr_one_error - consume an error detected by root port
1226 * @rpc: pointer to the root port which holds an error
1227 * @e_src: pointer to an error source
1229 static void aer_isr_one_error(struct aer_rpc
*rpc
,
1230 struct aer_err_source
*e_src
)
1232 struct pci_dev
*pdev
= rpc
->rpd
;
1233 struct aer_err_info e_info
;
1235 pci_rootport_aer_stats_incr(pdev
, e_src
);
1238 * There is a possibility that both correctable error and
1239 * uncorrectable error being logged. Report correctable error first.
1241 if (e_src
->status
& PCI_ERR_ROOT_COR_RCV
) {
1242 e_info
.id
= ERR_COR_ID(e_src
->id
);
1243 e_info
.severity
= AER_CORRECTABLE
;
1245 if (e_src
->status
& PCI_ERR_ROOT_MULTI_COR_RCV
)
1246 e_info
.multi_error_valid
= 1;
1248 e_info
.multi_error_valid
= 0;
1249 aer_print_port_info(pdev
, &e_info
);
1251 if (find_source_device(pdev
, &e_info
))
1252 aer_process_err_devices(&e_info
);
1255 if (e_src
->status
& PCI_ERR_ROOT_UNCOR_RCV
) {
1256 e_info
.id
= ERR_UNCOR_ID(e_src
->id
);
1258 if (e_src
->status
& PCI_ERR_ROOT_FATAL_RCV
)
1259 e_info
.severity
= AER_FATAL
;
1261 e_info
.severity
= AER_NONFATAL
;
1263 if (e_src
->status
& PCI_ERR_ROOT_MULTI_UNCOR_RCV
)
1264 e_info
.multi_error_valid
= 1;
1266 e_info
.multi_error_valid
= 0;
1268 aer_print_port_info(pdev
, &e_info
);
1270 if (find_source_device(pdev
, &e_info
))
1271 aer_process_err_devices(&e_info
);
1276 * aer_isr - consume errors detected by root port
1277 * @irq: IRQ assigned to Root Port
1278 * @context: pointer to Root Port data structure
1280 * Invoked, as DPC, when root port records new detected error
1282 static irqreturn_t
aer_isr(int irq
, void *context
)
1284 struct pcie_device
*dev
= (struct pcie_device
*)context
;
1285 struct aer_rpc
*rpc
= get_service_data(dev
);
1286 struct aer_err_source
uninitialized_var(e_src
);
1288 if (kfifo_is_empty(&rpc
->aer_fifo
))
1291 while (kfifo_get(&rpc
->aer_fifo
, &e_src
))
1292 aer_isr_one_error(rpc
, &e_src
);
1297 * aer_irq - Root Port's ISR
1298 * @irq: IRQ assigned to Root Port
1299 * @context: pointer to Root Port data structure
1301 * Invoked when Root Port detects AER messages.
1303 static irqreturn_t
aer_irq(int irq
, void *context
)
1305 struct pcie_device
*pdev
= (struct pcie_device
*)context
;
1306 struct aer_rpc
*rpc
= get_service_data(pdev
);
1307 struct pci_dev
*rp
= rpc
->rpd
;
1308 struct aer_err_source e_src
= {};
1309 int pos
= rp
->aer_cap
;
1311 pci_read_config_dword(rp
, pos
+ PCI_ERR_ROOT_STATUS
, &e_src
.status
);
1312 if (!(e_src
.status
& (PCI_ERR_ROOT_UNCOR_RCV
|PCI_ERR_ROOT_COR_RCV
)))
1315 pci_read_config_dword(rp
, pos
+ PCI_ERR_ROOT_ERR_SRC
, &e_src
.id
);
1316 pci_write_config_dword(rp
, pos
+ PCI_ERR_ROOT_STATUS
, e_src
.status
);
1318 if (!kfifo_put(&rpc
->aer_fifo
, e_src
))
1321 return IRQ_WAKE_THREAD
;
1324 static int set_device_error_reporting(struct pci_dev
*dev
, void *data
)
1326 bool enable
= *((bool *)data
);
1327 int type
= pci_pcie_type(dev
);
1329 if ((type
== PCI_EXP_TYPE_ROOT_PORT
) ||
1330 (type
== PCI_EXP_TYPE_UPSTREAM
) ||
1331 (type
== PCI_EXP_TYPE_DOWNSTREAM
)) {
1333 pci_enable_pcie_error_reporting(dev
);
1335 pci_disable_pcie_error_reporting(dev
);
1339 pcie_set_ecrc_checking(dev
);
1345 * set_downstream_devices_error_reporting - enable/disable the error reporting bits on the root port and its downstream ports.
1346 * @dev: pointer to root port's pci_dev data structure
1347 * @enable: true = enable error reporting, false = disable error reporting.
1349 static void set_downstream_devices_error_reporting(struct pci_dev
*dev
,
1352 set_device_error_reporting(dev
, &enable
);
1354 if (!dev
->subordinate
)
1356 pci_walk_bus(dev
->subordinate
, set_device_error_reporting
, &enable
);
1360 * aer_enable_rootport - enable Root Port's interrupts when receiving messages
1361 * @rpc: pointer to a Root Port data structure
1363 * Invoked when PCIe bus loads AER service driver.
1365 static void aer_enable_rootport(struct aer_rpc
*rpc
)
1367 struct pci_dev
*pdev
= rpc
->rpd
;
1372 /* Clear PCIe Capability's Device Status */
1373 pcie_capability_read_word(pdev
, PCI_EXP_DEVSTA
, ®16
);
1374 pcie_capability_write_word(pdev
, PCI_EXP_DEVSTA
, reg16
);
1376 /* Disable system error generation in response to error messages */
1377 pcie_capability_clear_word(pdev
, PCI_EXP_RTCTL
,
1378 SYSTEM_ERROR_INTR_ON_MESG_MASK
);
1380 aer_pos
= pdev
->aer_cap
;
1381 /* Clear error status */
1382 pci_read_config_dword(pdev
, aer_pos
+ PCI_ERR_ROOT_STATUS
, ®32
);
1383 pci_write_config_dword(pdev
, aer_pos
+ PCI_ERR_ROOT_STATUS
, reg32
);
1384 pci_read_config_dword(pdev
, aer_pos
+ PCI_ERR_COR_STATUS
, ®32
);
1385 pci_write_config_dword(pdev
, aer_pos
+ PCI_ERR_COR_STATUS
, reg32
);
1386 pci_read_config_dword(pdev
, aer_pos
+ PCI_ERR_UNCOR_STATUS
, ®32
);
1387 pci_write_config_dword(pdev
, aer_pos
+ PCI_ERR_UNCOR_STATUS
, reg32
);
1390 * Enable error reporting for the root port device and downstream port
1393 set_downstream_devices_error_reporting(pdev
, true);
1395 /* Enable Root Port's interrupt in response to error messages */
1396 pci_read_config_dword(pdev
, aer_pos
+ PCI_ERR_ROOT_COMMAND
, ®32
);
1397 reg32
|= ROOT_PORT_INTR_ON_MESG_MASK
;
1398 pci_write_config_dword(pdev
, aer_pos
+ PCI_ERR_ROOT_COMMAND
, reg32
);
1402 * aer_disable_rootport - disable Root Port's interrupts when receiving messages
1403 * @rpc: pointer to a Root Port data structure
1405 * Invoked when PCIe bus unloads AER service driver.
1407 static void aer_disable_rootport(struct aer_rpc
*rpc
)
1409 struct pci_dev
*pdev
= rpc
->rpd
;
1414 * Disable error reporting for the root port device and downstream port
1417 set_downstream_devices_error_reporting(pdev
, false);
1419 pos
= pdev
->aer_cap
;
1420 /* Disable Root's interrupt in response to error messages */
1421 pci_read_config_dword(pdev
, pos
+ PCI_ERR_ROOT_COMMAND
, ®32
);
1422 reg32
&= ~ROOT_PORT_INTR_ON_MESG_MASK
;
1423 pci_write_config_dword(pdev
, pos
+ PCI_ERR_ROOT_COMMAND
, reg32
);
1425 /* Clear Root's error status reg */
1426 pci_read_config_dword(pdev
, pos
+ PCI_ERR_ROOT_STATUS
, ®32
);
1427 pci_write_config_dword(pdev
, pos
+ PCI_ERR_ROOT_STATUS
, reg32
);
1431 * aer_remove - clean up resources
1432 * @dev: pointer to the pcie_dev data structure
1434 * Invoked when PCI Express bus unloads or AER probe fails.
1436 static void aer_remove(struct pcie_device
*dev
)
1438 struct aer_rpc
*rpc
= get_service_data(dev
);
1440 aer_disable_rootport(rpc
);
1444 * aer_probe - initialize resources
1445 * @dev: pointer to the pcie_dev data structure
1447 * Invoked when PCI Express bus loads AER service driver.
1449 static int aer_probe(struct pcie_device
*dev
)
1452 struct aer_rpc
*rpc
;
1453 struct device
*device
= &dev
->device
;
1454 struct pci_dev
*port
= dev
->port
;
1456 rpc
= devm_kzalloc(device
, sizeof(struct aer_rpc
), GFP_KERNEL
);
1461 INIT_KFIFO(rpc
->aer_fifo
);
1462 set_service_data(dev
, rpc
);
1464 status
= devm_request_threaded_irq(device
, dev
->irq
, aer_irq
, aer_isr
,
1465 IRQF_SHARED
, "aerdrv", dev
);
1467 pci_err(port
, "request AER IRQ %d failed\n", dev
->irq
);
1471 aer_enable_rootport(rpc
);
1472 pci_info(port
, "enabled with IRQ %d\n", dev
->irq
);
1477 * aer_root_reset - reset link on Root Port
1478 * @dev: pointer to Root Port's pci_dev data structure
1480 * Invoked by Port Bus driver when performing link reset at Root Port.
1482 static pci_ers_result_t
aer_root_reset(struct pci_dev
*dev
)
1490 /* Disable Root's interrupt in response to error messages */
1491 pci_read_config_dword(dev
, pos
+ PCI_ERR_ROOT_COMMAND
, ®32
);
1492 reg32
&= ~ROOT_PORT_INTR_ON_MESG_MASK
;
1493 pci_write_config_dword(dev
, pos
+ PCI_ERR_ROOT_COMMAND
, reg32
);
1495 rc
= pci_bus_error_reset(dev
);
1496 pci_info(dev
, "Root Port link has been reset\n");
1498 /* Clear Root Error Status */
1499 pci_read_config_dword(dev
, pos
+ PCI_ERR_ROOT_STATUS
, ®32
);
1500 pci_write_config_dword(dev
, pos
+ PCI_ERR_ROOT_STATUS
, reg32
);
1502 /* Enable Root Port's interrupt in response to error messages */
1503 pci_read_config_dword(dev
, pos
+ PCI_ERR_ROOT_COMMAND
, ®32
);
1504 reg32
|= ROOT_PORT_INTR_ON_MESG_MASK
;
1505 pci_write_config_dword(dev
, pos
+ PCI_ERR_ROOT_COMMAND
, reg32
);
1507 return rc
? PCI_ERS_RESULT_DISCONNECT
: PCI_ERS_RESULT_RECOVERED
;
1510 static struct pcie_port_service_driver aerdriver
= {
1512 .port_type
= PCI_EXP_TYPE_ROOT_PORT
,
1513 .service
= PCIE_PORT_SERVICE_AER
,
1516 .remove
= aer_remove
,
1520 * aer_service_init - register AER root service driver
1522 * Invoked when AER root service driver is loaded.
1524 int __init
pcie_aer_init(void)
1526 if (!pci_aer_available() || aer_acpi_firmware_first())
1528 return pcie_port_service_register(&aerdriver
);