Linux 6.10-rc4
[linux-2.6-block.git] / include / acpi / apei.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
9dc96664
HY
2/*
3 * apei.h - ACPI Platform Error Interface
4 */
5
6#ifndef ACPI_APEI_H
7#define ACPI_APEI_H
8
a08f82d0
HY
9#include <linux/acpi.h>
10#include <linux/cper.h>
11#include <asm/ioctls.h>
12
13#define APEI_ERST_INVALID_RECORD_ID 0xffffffffffffffffULL
14
15#define APEI_ERST_CLEAR_RECORD _IOW('E', 1, u64)
16#define APEI_ERST_GET_RECORD_COUNT _IOR('E', 2, u32)
17
18#ifdef __KERNEL__
19
e931d0da
PA
20enum hest_status {
21 HEST_ENABLED,
22 HEST_DISABLED,
23 HEST_NOT_FOUND,
24};
25
26extern int hest_disable;
a08f82d0 27extern int erst_disable;
a7e09d45 28#ifdef CONFIG_ACPI_APEI_GHES
90ab5ee9 29extern bool ghes_disable;
27e932a3 30void __init acpi_ghes_init(void);
a7e09d45
LB
31#else
32#define ghes_disable 1
27e932a3 33static inline void acpi_ghes_init(void) { }
a7e09d45 34#endif
9dc96664 35
415e12b2
RW
36#ifdef CONFIG_ACPI_APEI
37void __init acpi_hest_init(void);
38#else
dc4e8c07 39static inline void acpi_hest_init(void) { }
415e12b2
RW
40#endif
41
a08f82d0
HY
42int erst_write(const struct cper_record_header *record);
43ssize_t erst_get_record_count(void);
885b976f
HY
44int erst_get_record_id_begin(int *pos);
45int erst_get_record_id_next(int *pos, u64 *record_id);
46void erst_get_record_id_end(void);
a08f82d0
HY
47ssize_t erst_read(u64 record_id, struct cper_record_header *record,
48 size_t buflen);
a0909315
LX
49ssize_t erst_read_record(u64 record_id, struct cper_record_header *record,
50 size_t buflen, size_t recordlen, const guid_t *creatorid);
a08f82d0
HY
51int erst_clear(u64 record_id);
52
9dae3d0d
TN
53int arch_apei_enable_cmcff(struct acpi_hest_header *hest_hdr, void *data);
54void arch_apei_report_mem_error(int sev, struct cper_sec_mem_err *mem_err);
55
a08f82d0 56#endif
9dc96664 57#endif