mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-17 22:41:25 +00:00
9dc9666416
HEST describes error sources in detail; communicating operational parameters (i.e. severity levels, masking bits, and threshold values) to OS as necessary. It also allows the platform to report error sources for which OS would typically not implement support (for example, chipset-specific error registers). HEST information may be needed by other subsystems. For example, HEST PCIE AER error source information describes whether a PCIE root port works in "firmware first" mode, this is needed by general PCIE AER error subsystem. So a public HEST tabling parsing interface is provided. Signed-off-by: Huang Ying <ying.huang@intel.com> Signed-off-by: Andi Kleen <ak@linux.intel.com> Signed-off-by: Len Brown <len.brown@intel.com>
14 lines
261 B
C
14 lines
261 B
C
/*
|
|
* apei.h - ACPI Platform Error Interface
|
|
*/
|
|
|
|
#ifndef ACPI_APEI_H
|
|
#define ACPI_APEI_H
|
|
|
|
extern int hest_disable;
|
|
|
|
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);
|
|
|
|
#endif
|