blob: c4dbb132d902c0d2284473d30a954926c1745ac4 [file] [log] [blame]
Huang Ying9dc96662010-05-18 14:35:13 +08001/*
2 * apei.h - ACPI Platform Error Interface
3 */
4
5#ifndef ACPI_APEI_H
6#define ACPI_APEI_H
7
Huang Yinga08f82d2010-05-18 14:35:21 +08008#include <linux/acpi.h>
9#include <linux/cper.h>
10#include <asm/ioctls.h>
11
12#define APEI_ERST_INVALID_RECORD_ID 0xffffffffffffffffULL
13
14#define APEI_ERST_CLEAR_RECORD _IOW('E', 1, u64)
15#define APEI_ERST_GET_RECORD_COUNT _IOR('E', 2, u32)
16
17#ifdef __KERNEL__
18
Huang Ying9dc96662010-05-18 14:35:13 +080019extern int hest_disable;
Huang Yinga08f82d2010-05-18 14:35:21 +080020extern int erst_disable;
Huang Ying9dc96662010-05-18 14:35:13 +080021
Rafael J. Wysocki415e12b2011-01-07 00:55:09 +010022#ifdef CONFIG_ACPI_APEI
23void __init acpi_hest_init(void);
24#else
25static inline void acpi_hest_init(void) { return; }
26#endif
27
Huang Ying9dc96662010-05-18 14:35:13 +080028typedef int (*apei_hest_func_t)(struct acpi_hest_header *hest_hdr, void *data);
29int apei_hest_parse(apei_hest_func_t func, void *data);
30
Huang Yinga08f82d2010-05-18 14:35:21 +080031int erst_write(const struct cper_record_header *record);
32ssize_t erst_get_record_count(void);
33int erst_get_next_record_id(u64 *record_id);
34ssize_t erst_read(u64 record_id, struct cper_record_header *record,
35 size_t buflen);
36ssize_t erst_read_next(struct cper_record_header *record, size_t buflen);
37int erst_clear(u64 record_id);
38
39#endif
Huang Ying9dc96662010-05-18 14:35:13 +080040#endif