blob: 680f80960c3dcf36f6dac83c4061cce7f5103f1b [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Huang Ying9dc96662010-05-18 14:35:13 +08002/*
3 * apei.h - ACPI Platform Error Interface
4 */
5
6#ifndef ACPI_APEI_H
7#define ACPI_APEI_H
8
Huang Yinga08f82d2010-05-18 14:35:21 +08009#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
Punit Agrawale931d0d2017-08-29 14:20:20 +010020enum hest_status {
21 HEST_ENABLED,
22 HEST_DISABLED,
23 HEST_NOT_FOUND,
24};
25
26extern int hest_disable;
Huang Yinga08f82d2010-05-18 14:35:21 +080027extern int erst_disable;
Len Browna7e09d42011-07-16 18:14:21 -040028#ifdef CONFIG_ACPI_APEI_GHES
Rusty Russell90ab5ee2012-01-13 09:32:20 +103029extern bool ghes_disable;
Len Browna7e09d42011-07-16 18:14:21 -040030#else
31#define ghes_disable 1
32#endif
Huang Ying9dc96662010-05-18 14:35:13 +080033
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +010034#ifdef CONFIG_ACPI_APEI
35void __init acpi_hest_init(void);
36#else
37static inline void acpi_hest_init(void) { return; }
38#endif
39
Huang Ying9dc96662010-05-18 14:35:13 +080040typedef int (*apei_hest_func_t)(struct acpi_hest_header *hest_hdr, void *data);
41int apei_hest_parse(apei_hest_func_t func, void *data);
42
Huang Yinga08f82d2010-05-18 14:35:21 +080043int erst_write(const struct cper_record_header *record);
44ssize_t erst_get_record_count(void);
Huang Ying885b9762011-02-21 13:54:41 +080045int erst_get_record_id_begin(int *pos);
46int erst_get_record_id_next(int *pos, u64 *record_id);
47void erst_get_record_id_end(void);
Huang Yinga08f82d2010-05-18 14:35:21 +080048ssize_t erst_read(u64 record_id, struct cper_record_header *record,
49 size_t buflen);
Huang Yinga08f82d2010-05-18 14:35:21 +080050int erst_clear(u64 record_id);
51
Tomasz Nowicki9dae3d02014-07-22 11:20:11 +020052int arch_apei_enable_cmcff(struct acpi_hest_header *hest_hdr, void *data);
53void arch_apei_report_mem_error(int sev, struct cper_sec_mem_err *mem_err);
54
Huang Yinga08f82d2010-05-18 14:35:21 +080055#endif
Huang Ying9dc96662010-05-18 14:35:13 +080056#endif