* [PATCH v5 0/4] Parse the HEST PCIe AER and set to relevant registers
@ 2025-02-26 12:18 LeoLiu-oc
2025-02-26 12:18 ` [PATCH v5 1/4] ACPI: APEI: Move apei_hest_parse() to apei.h LeoLiu-oc
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: LeoLiu-oc @ 2025-02-26 12:18 UTC (permalink / raw)
To: rafael, lenb, james.morse, tony.luck, bp, bhelgaas, robert.moore,
yazen.ghannam, avadhut.naik, linux-acpi, linux-kernel, linux-pci,
acpica-devel
Cc: CobeChen, TonyWWang, ErosZhang, leoliu, LeoLiuoc
From: LeoLiuoc <LeoLiu-oc@zhaoxin.com>
According to the Section 18.3.2.4, 18.3.2.5 and 18.3.2.6 in ACPI SPEC r6.5,
the register value form HEST PCI Express AER Structure should be written to
relevant PCIe Device's AER Capabilities. So the purpose of the patch set is
to extract register value from HEST PCI Express AER structures and program
them into PCIe Device's AER registers. Refer to the ACPI SPEC r6.5 for the
more detailed description.
Changes in v2:
- Move the definition of structure "hest_parse_aer_info" to file apei.h.
- Link to v1: https://lore.kernel.org/all/20231115091612.580685-1-LeoLiu-oc@zhaoxin.com/
Changes in v3:
- The applicable hardware for this patch is added to the commit
information.
- Change the function name "program_hest_aer_endpoint" to
"program_hest_aer_common".
- Add the comment to function "program_hest_aer_common".
- Remove the "PCI_EXP_TYPE_PCIE_BRIDGE" branch handling in function
"program_hest_aer_params".
- Link to v2: https://lore.kernel.org/all/20231218030430.783495-1-LeoLiu-oc@zhaoxin.com/
Changes in v4:
- Fix some compilation warnings.
- Link to v3: https://lore.kernel.org/all/20240718062405.30571-1-LeoLiu-oc@zhaoxin.com/
Changes in v5:
- Optimize the code according to the suggestions.
- Link to v4: https://lore.kernel.org/all/20241205114048.60291-1-LeoLiu-oc@zhaoxin.com/
LeoLiuoc (4):
ACPI: APEI: Move apei_hest_parse() to apei.h
ACPI: APEI: Add new hest_parse_pcie_aer()
PCI: Add AER bits #defines for PCIe to PCI/PCI-X Bridge
PCI: ACPI: Add new pci_acpi_program_hest_aer_params()
drivers/acpi/apei/hest.c | 54 ++++++++++++++++++++-
drivers/pci/pci-acpi.c | 90 +++++++++++++++++++++++++++++++++++
drivers/pci/pci.h | 6 +++
drivers/pci/probe.c | 1 +
include/acpi/apei.h | 13 +++++
include/uapi/linux/pci_regs.h | 4 ++
6 files changed, 166 insertions(+), 2 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v5 1/4] ACPI: APEI: Move apei_hest_parse() to apei.h
2025-02-26 12:18 [PATCH v5 0/4] Parse the HEST PCIe AER and set to relevant registers LeoLiu-oc
@ 2025-02-26 12:18 ` LeoLiu-oc
2025-03-05 23:34 ` Bjorn Helgaas
2025-02-26 12:18 ` [PATCH v5 2/4] ACPI: APEI: Add new hest_parse_pcie_aer() LeoLiu-oc
` (2 subsequent siblings)
3 siblings, 1 reply; 6+ messages in thread
From: LeoLiu-oc @ 2025-02-26 12:18 UTC (permalink / raw)
To: rafael, lenb, james.morse, tony.luck, bp, bhelgaas, robert.moore,
yazen.ghannam, avadhut.naik, linux-acpi, linux-kernel, linux-pci,
acpica-devel
Cc: CobeChen, TonyWWang, ErosZhang, leoliu, LeoLiuoc
From: LeoLiuoc <LeoLiu-oc@zhaoxin.com>
Remove static from apei_hest_parse() so that it can be called in another
file.
Signed-off-by: LeoLiuoc <LeoLiu-oc@zhaoxin.com>
---
drivers/acpi/apei/hest.c | 2 +-
include/acpi/apei.h | 2 ++
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/acpi/apei/hest.c b/drivers/acpi/apei/hest.c
index 20d757687e3d..35d08f4e50e6 100644
--- a/drivers/acpi/apei/hest.c
+++ b/drivers/acpi/apei/hest.c
@@ -134,7 +134,7 @@ static bool is_ghes_assist_struct(struct acpi_hest_header *hest_hdr)
typedef int (*apei_hest_func_t)(struct acpi_hest_header *hest_hdr, void *data);
-static int apei_hest_parse(apei_hest_func_t func, void *data)
+int apei_hest_parse(apei_hest_func_t func, void *data)
{
struct acpi_hest_header *hest_hdr;
int i, rc, len;
diff --git a/include/acpi/apei.h b/include/acpi/apei.h
index dc60f7db5524..b79976daa4bb 100644
--- a/include/acpi/apei.h
+++ b/include/acpi/apei.h
@@ -33,6 +33,8 @@ void __init acpi_ghes_init(void);
static inline void acpi_ghes_init(void) { }
#endif
+int apei_hest_parse(apei_hest_func_t func, void *data);
+
#ifdef CONFIG_ACPI_APEI
void __init acpi_hest_init(void);
#else
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v5 2/4] ACPI: APEI: Add new hest_parse_pcie_aer()
2025-02-26 12:18 [PATCH v5 0/4] Parse the HEST PCIe AER and set to relevant registers LeoLiu-oc
2025-02-26 12:18 ` [PATCH v5 1/4] ACPI: APEI: Move apei_hest_parse() to apei.h LeoLiu-oc
@ 2025-02-26 12:18 ` LeoLiu-oc
2025-02-26 12:18 ` [PATCH v5 3/4] PCI: Add AER bits #defines for PCIe to PCI/PCI-X Bridge LeoLiu-oc
2025-02-26 12:18 ` [PATCH v5 4/4] PCI: ACPI: Add new pci_acpi_program_hest_aer_params() LeoLiu-oc
3 siblings, 0 replies; 6+ messages in thread
From: LeoLiu-oc @ 2025-02-26 12:18 UTC (permalink / raw)
To: rafael, lenb, james.morse, tony.luck, bp, bhelgaas, robert.moore,
yazen.ghannam, avadhut.naik, linux-acpi, linux-kernel, linux-pci,
acpica-devel
Cc: CobeChen, TonyWWang, ErosZhang, leoliu, LeoLiuoc
From: LeoLiuoc <LeoLiu-oc@zhaoxin.com>
The purpose of the function apei_hest_parse_aer() is used to parse and
extract register value from HEST PCIe AER structures. This applies to
all hardware platforms that has a PCI Express AER structure in HEST.
Signed-off-by: LeoLiuoc <LeoLiu-oc@zhaoxin.com>
---
drivers/acpi/apei/hest.c | 52 +++++++++++++++++++++++++++++++++++++++-
include/acpi/apei.h | 11 +++++++++
2 files changed, 62 insertions(+), 1 deletion(-)
diff --git a/drivers/acpi/apei/hest.c b/drivers/acpi/apei/hest.c
index 35d08f4e50e6..e7a15d60ecc1 100644
--- a/drivers/acpi/apei/hest.c
+++ b/drivers/acpi/apei/hest.c
@@ -22,6 +22,7 @@
#include <linux/kdebug.h>
#include <linux/highmem.h>
#include <linux/io.h>
+#include <linux/pci.h>
#include <linux/platform_device.h>
#include <acpi/apei.h>
#include <acpi/ghes.h>
@@ -132,7 +133,56 @@ static bool is_ghes_assist_struct(struct acpi_hest_header *hest_hdr)
return false;
}
-typedef int (*apei_hest_func_t)(struct acpi_hest_header *hest_hdr, void *data);
+static bool hest_match_pci_devfn(struct acpi_hest_aer_common *p, struct pci_dev *dev)
+{
+ return ACPI_HEST_SEGMENT(p->bus) == pci_domain_nr(dev->bus) &&
+ ACPI_HEST_BUS(p->bus) == dev->bus->number &&
+ p->device == PCI_SLOT(dev->devfn) &&
+ p->function == PCI_FUNC(dev->devfn);
+}
+
+static bool hest_source_is_pcie_aer(struct acpi_hest_header *hest_hdr, struct pci_dev *dev)
+{
+ u16 hest_type = hest_hdr->type;
+ u8 pcie_type = pci_pcie_type(dev);
+ struct acpi_hest_aer_common *common = (struct acpi_hest_aer_common *)(hest_hdr + 1);
+
+ switch (hest_type) {
+ case ACPI_HEST_TYPE_AER_ROOT_PORT:
+ if (pcie_type != PCI_EXP_TYPE_ROOT_PORT)
+ return false;
+ break;
+ case ACPI_HEST_TYPE_AER_ENDPOINT:
+ if (pcie_type != PCI_EXP_TYPE_ENDPOINT)
+ return false;
+ break;
+ case ACPI_HEST_TYPE_AER_BRIDGE:
+ if (pcie_type != PCI_EXP_TYPE_PCI_BRIDGE && pcie_type != PCI_EXP_TYPE_PCIE_BRIDGE)
+ return false;
+ break;
+ default:
+ return false;
+ }
+
+ if (common->flags & ACPI_HEST_GLOBAL)
+ return true;
+
+ if (hest_match_pci_devfn(common, dev))
+ return true;
+
+ return false;
+}
+
+int hest_parse_pcie_aer(struct acpi_hest_header *hest_hdr, void *data)
+{
+ struct hest_parse_aer_info *info = data;
+
+ info->data = (void *)hest_hdr;
+ if (!hest_source_is_pcie_aer(hest_hdr, info->pci_dev))
+ return 0;
+ else
+ return 1;
+}
int apei_hest_parse(apei_hest_func_t func, void *data)
{
diff --git a/include/acpi/apei.h b/include/acpi/apei.h
index b79976daa4bb..047e0469927c 100644
--- a/include/acpi/apei.h
+++ b/include/acpi/apei.h
@@ -23,6 +23,11 @@ enum hest_status {
HEST_NOT_FOUND,
};
+struct hest_parse_aer_info {
+ struct pci_dev *pci_dev;
+ void *data;
+};
+
extern int hest_disable;
extern int erst_disable;
#ifdef CONFIG_ACPI_APEI_GHES
@@ -33,12 +38,18 @@ void __init acpi_ghes_init(void);
static inline void acpi_ghes_init(void) { }
#endif
+typedef int (*apei_hest_func_t)(struct acpi_hest_header *hest_hdr, void *data);
int apei_hest_parse(apei_hest_func_t func, void *data);
#ifdef CONFIG_ACPI_APEI
void __init acpi_hest_init(void);
+int hest_parse_pcie_aer(struct acpi_hest_header *hest_hdr, void *data);
#else
static inline void acpi_hest_init(void) { }
+static inline int hest_parse_pcie_aer(struct acpi_hest_header *hest_hdr, void *data)
+{
+ return 0;
+}
#endif
int erst_write(const struct cper_record_header *record);
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v5 3/4] PCI: Add AER bits #defines for PCIe to PCI/PCI-X Bridge
2025-02-26 12:18 [PATCH v5 0/4] Parse the HEST PCIe AER and set to relevant registers LeoLiu-oc
2025-02-26 12:18 ` [PATCH v5 1/4] ACPI: APEI: Move apei_hest_parse() to apei.h LeoLiu-oc
2025-02-26 12:18 ` [PATCH v5 2/4] ACPI: APEI: Add new hest_parse_pcie_aer() LeoLiu-oc
@ 2025-02-26 12:18 ` LeoLiu-oc
2025-02-26 12:18 ` [PATCH v5 4/4] PCI: ACPI: Add new pci_acpi_program_hest_aer_params() LeoLiu-oc
3 siblings, 0 replies; 6+ messages in thread
From: LeoLiu-oc @ 2025-02-26 12:18 UTC (permalink / raw)
To: rafael, lenb, james.morse, tony.luck, bp, bhelgaas, robert.moore,
yazen.ghannam, avadhut.naik, linux-acpi, linux-kernel, linux-pci,
acpica-devel
Cc: CobeChen, TonyWWang, ErosZhang, leoliu, LeoLiuoc
From: LeoLiuoc <LeoLiu-oc@zhaoxin.com>
Define secondary uncorrectable error mask register, secondary
uncorrectable error severity register and secondary error capabilities and
control register bits in AER capability for PCIe to PCI/PCI-X Bridge.
Please refer to PCIe to PCI/PCI-X Bridge Specification r1.0, sec 5.2.3.2,
5.2.3.3 and 5.2.3.4.
Signed-off-by: LeoLiuoc <LeoLiu-oc@zhaoxin.com>
---
include/uapi/linux/pci_regs.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/include/uapi/linux/pci_regs.h b/include/uapi/linux/pci_regs.h
index 3445c4970e4d..0566c663beb7 100644
--- a/include/uapi/linux/pci_regs.h
+++ b/include/uapi/linux/pci_regs.h
@@ -812,6 +812,10 @@
#define PCI_ERR_ROOT_ERR_SRC 0x34 /* Error Source Identification */
#define PCI_ERR_PREFIX_LOG 0x38 /* TLP Prefix LOG Register (up to 16 bytes) */
+#define PCI_ERR_UNCOR_MASK2 0x30 /* PCIe to PCI/PCI-X Bridge */
+#define PCI_ERR_UNCOR_SEVER2 0x34 /* PCIe to PCI/PCI-X Bridge */
+#define PCI_ERR_CAP2 0x38 /* PCIe to PCI/PCI-X Bridge */
+
/* Virtual Channel */
#define PCI_VC_PORT_CAP1 0x04
#define PCI_VC_CAP1_EVCC 0x00000007 /* extended VC count */
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v5 4/4] PCI: ACPI: Add new pci_acpi_program_hest_aer_params()
2025-02-26 12:18 [PATCH v5 0/4] Parse the HEST PCIe AER and set to relevant registers LeoLiu-oc
` (2 preceding siblings ...)
2025-02-26 12:18 ` [PATCH v5 3/4] PCI: Add AER bits #defines for PCIe to PCI/PCI-X Bridge LeoLiu-oc
@ 2025-02-26 12:18 ` LeoLiu-oc
3 siblings, 0 replies; 6+ messages in thread
From: LeoLiu-oc @ 2025-02-26 12:18 UTC (permalink / raw)
To: rafael, lenb, james.morse, tony.luck, bp, bhelgaas, robert.moore,
yazen.ghannam, avadhut.naik, linux-acpi, linux-kernel, linux-pci,
acpica-devel
Cc: CobeChen, TonyWWang, ErosZhang, leoliu, LeoLiuoc
From: LeoLiuoc <LeoLiu-oc@zhaoxin.com>
Call the func pci_acpi_program_hest_aer_params() for every PCIe device,
the purpose of this function is to extract register value from HEST PCIe
AER structures and program them into AER Capabilities. This function
applies to all hardware platforms that has a PCI Express AER structure
in HEST.
Signed-off-by: LeoLiuoc <LeoLiu-oc@zhaoxin.com>
---
drivers/pci/pci-acpi.c | 90 ++++++++++++++++++++++++++++++++++++++++++
drivers/pci/pci.h | 6 +++
drivers/pci/probe.c | 1 +
3 files changed, 97 insertions(+)
diff --git a/drivers/pci/pci-acpi.c b/drivers/pci/pci-acpi.c
index af370628e583..2e9a50fc7433 100644
--- a/drivers/pci/pci-acpi.c
+++ b/drivers/pci/pci-acpi.c
@@ -19,6 +19,7 @@
#include <linux/pm_runtime.h>
#include <linux/pm_qos.h>
#include <linux/rwsem.h>
+#include <acpi/apei.h>
#include "pci.h"
/*
@@ -806,6 +807,95 @@ int pci_acpi_program_hp_params(struct pci_dev *dev)
return -ENODEV;
}
+#ifdef CONFIG_ACPI_APEI
+/*
+ * program_hest_aer_common() - configure AER common registers for Root Ports,
+ * Endpoints and PCIe to PCI/PCI-X bridges
+ */
+static void program_hest_aer_common(struct acpi_hest_aer_common aer_common, struct pci_dev *dev,
+ int pos)
+{
+ u32 uncor_mask = aer_common.uncorrectable_mask;
+ u32 uncor_severity = aer_common.uncorrectable_severity;
+ u32 cor_mask = aer_common.correctable_mask;
+ u32 adv_cap = aer_common.advanced_capabilities;
+
+ pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, uncor_mask);
+ pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER, uncor_severity);
+ pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, cor_mask);
+ pci_write_config_dword(dev, pos + PCI_ERR_CAP, adv_cap);
+}
+
+static void program_hest_aer_root(struct acpi_hest_aer_root *aer_root, struct pci_dev *dev, int pos)
+{
+ u32 root_err_cmd = aer_root->root_error_command;
+
+ pci_write_config_dword(dev, pos + PCI_ERR_ROOT_COMMAND, root_err_cmd);
+}
+
+static void program_hest_aer_bridge(struct acpi_hest_aer_bridge *hest_aer_bridge,
+ struct pci_dev *dev, int pos)
+{
+ u32 uncor_mask2 = hest_aer_bridge->uncorrectable_mask2;
+ u32 uncor_severity2 = hest_aer_bridge->uncorrectable_severity2;
+ u32 adv_cap2 = hest_aer_bridge->advanced_capabilities2;
+
+ pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_MASK2, uncor_mask2);
+ pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_SEVER2, uncor_severity2);
+ pci_write_config_dword(dev, pos + PCI_ERR_CAP2, adv_cap2);
+}
+
+static void program_hest_aer_params(struct hest_parse_aer_info info)
+{
+ struct pci_dev *dev;
+ int port_type;
+ int pos;
+ struct acpi_hest_aer_root *hest_aer_root;
+ struct acpi_hest_aer *hest_aer_endpoint;
+ struct acpi_hest_aer_bridge *hest_aer_bridge;
+
+ dev = info.pci_dev;
+ port_type = pci_pcie_type(dev);
+ pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
+ if (!pos)
+ return;
+
+ switch (port_type) {
+ case PCI_EXP_TYPE_ROOT_PORT:
+ hest_aer_root = (struct acpi_hest_aer_root *)info.data;
+ program_hest_aer_common(hest_aer_root->aer, dev, pos);
+ program_hest_aer_root(hest_aer_root, dev, pos);
+ break;
+ case PCI_EXP_TYPE_ENDPOINT:
+ hest_aer_endpoint = (struct acpi_hest_aer *)info.data;
+ program_hest_aer_common(hest_aer_endpoint->aer, dev, pos);
+ break;
+ case PCI_EXP_TYPE_PCI_BRIDGE:
+ hest_aer_bridge = (struct acpi_hest_aer_bridge *)info.data;
+ program_hest_aer_common(hest_aer_bridge->aer, dev, pos);
+ program_hest_aer_bridge(hest_aer_bridge, dev, pos);
+ break;
+ default:
+ break;
+ }
+}
+
+void pci_acpi_program_hest_aer_params(struct pci_dev *dev)
+{
+ struct hest_parse_aer_info info = {
+ .pci_dev = dev
+ };
+
+ if (!pci_is_pcie(dev))
+ return;
+
+ if (apei_hest_parse(hest_parse_pcie_aer, &info) > 0)
+ program_hest_aer_params(info);
+
+ return;
+}
+#endif
+
/**
* pciehp_is_native - Check whether a hotplug port is handled by the OS
* @bridge: Hotplug port to check
diff --git a/drivers/pci/pci.h b/drivers/pci/pci.h
index 01e51db8d285..6ce44a2a3a69 100644
--- a/drivers/pci/pci.h
+++ b/drivers/pci/pci.h
@@ -902,6 +902,12 @@ static inline void pci_save_aer_state(struct pci_dev *dev) { }
static inline void pci_restore_aer_state(struct pci_dev *dev) { }
#endif
+#ifdef CONFIG_ACPI_APEI
+void pci_acpi_program_hest_aer_params(struct pci_dev *dev);
+#else
+static inline void pci_acpi_program_hest_aer_params(struct pci_dev *dev){ }
+#endif
+
#ifdef CONFIG_ACPI
bool pci_acpi_preserve_config(struct pci_host_bridge *bridge);
int pci_acpi_program_hp_params(struct pci_dev *dev);
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
index 246744d8d268..40ef918c049c 100644
--- a/drivers/pci/probe.c
+++ b/drivers/pci/probe.c
@@ -2352,6 +2352,7 @@ static void pci_configure_device(struct pci_dev *dev)
pci_configure_serr(dev);
pci_acpi_program_hp_params(dev);
+ pci_acpi_program_hest_aer_params(dev);
}
static void pci_release_capabilities(struct pci_dev *dev)
--
2.34.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v5 1/4] ACPI: APEI: Move apei_hest_parse() to apei.h
2025-02-26 12:18 ` [PATCH v5 1/4] ACPI: APEI: Move apei_hest_parse() to apei.h LeoLiu-oc
@ 2025-03-05 23:34 ` Bjorn Helgaas
0 siblings, 0 replies; 6+ messages in thread
From: Bjorn Helgaas @ 2025-03-05 23:34 UTC (permalink / raw)
To: LeoLiu-oc
Cc: rafael, lenb, james.morse, tony.luck, bp, bhelgaas, robert.moore,
yazen.ghannam, avadhut.naik, linux-acpi, linux-kernel, linux-pci,
acpica-devel, CobeChen, TonyWWang, ErosZhang, leoliu
On Wed, Feb 26, 2025 at 08:18:35PM +0800, LeoLiu-oc wrote:
> From: LeoLiuoc <LeoLiu-oc@zhaoxin.com>
>
> Remove static from apei_hest_parse() so that it can be called in another
> file.
> +++ b/drivers/acpi/apei/hest.c
> @@ -134,7 +134,7 @@ static bool is_ghes_assist_struct(struct acpi_hest_header *hest_hdr)
>
> typedef int (*apei_hest_func_t)(struct acpi_hest_header *hest_hdr, void *data);
>
> -static int apei_hest_parse(apei_hest_func_t func, void *data)
> +int apei_hest_parse(apei_hest_func_t func, void *data)
> {
> struct acpi_hest_header *hest_hdr;
> int i, rc, len;
> diff --git a/include/acpi/apei.h b/include/acpi/apei.h
> index dc60f7db5524..b79976daa4bb 100644
> --- a/include/acpi/apei.h
> +++ b/include/acpi/apei.h
> @@ -33,6 +33,8 @@ void __init acpi_ghes_init(void);
> static inline void acpi_ghes_init(void) { }
> #endif
>
> +int apei_hest_parse(apei_hest_func_t func, void *data);
Series doesn't build after this patch because we lack the
apei_hest_func_t typedef:
$ make drivers/acpi/apei/
CC drivers/acpi/apei/apei-base.o
In file included from drivers/acpi/apei/apei-base.c:30:
./include/acpi/apei.h:36:21: error: unknown type name ‘apei_hest_func_t’
36 | int apei_hest_parse(apei_hest_func_t func, void *data);
| ^~~~~~~~~~~~~~~~
The kernel must build and function correctly after each and every
patch in the series.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-03-05 23:34 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-26 12:18 [PATCH v5 0/4] Parse the HEST PCIe AER and set to relevant registers LeoLiu-oc
2025-02-26 12:18 ` [PATCH v5 1/4] ACPI: APEI: Move apei_hest_parse() to apei.h LeoLiu-oc
2025-03-05 23:34 ` Bjorn Helgaas
2025-02-26 12:18 ` [PATCH v5 2/4] ACPI: APEI: Add new hest_parse_pcie_aer() LeoLiu-oc
2025-02-26 12:18 ` [PATCH v5 3/4] PCI: Add AER bits #defines for PCIe to PCI/PCI-X Bridge LeoLiu-oc
2025-02-26 12:18 ` [PATCH v5 4/4] PCI: ACPI: Add new pci_acpi_program_hest_aer_params() LeoLiu-oc
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox