ARM: ux500: Rip out SSP/SPI registration when not booting with Device Tree
[linux-2.6/btrfs-unstable.git] / include / acpi / ghes.h
blob720446cb243e81f07a02a8763eea0994ce43e772
1 #include <acpi/apei.h>
2 #include <acpi/hed.h>
4 /*
5 * One struct ghes is created for each generic hardware error source.
6 * It provides the context for APEI hardware error timer/IRQ/SCI/NMI
7 * handler.
9 * estatus: memory buffer for error status block, allocated during
10 * HEST parsing.
12 #define GHES_TO_CLEAR 0x0001
13 #define GHES_EXITING 0x0002
15 struct ghes {
16 struct acpi_hest_generic *generic;
17 struct acpi_hest_generic_status *estatus;
18 u64 buffer_paddr;
19 unsigned long flags;
20 union {
21 struct list_head list;
22 struct timer_list timer;
23 unsigned int irq;
27 struct ghes_estatus_node {
28 struct llist_node llnode;
29 struct acpi_hest_generic *generic;
30 struct ghes *ghes;
33 struct ghes_estatus_cache {
34 u32 estatus_len;
35 atomic_t count;
36 struct acpi_hest_generic *generic;
37 unsigned long long time_in;
38 struct rcu_head rcu;
41 enum {
42 GHES_SEV_NO = 0x0,
43 GHES_SEV_CORRECTED = 0x1,
44 GHES_SEV_RECOVERABLE = 0x2,
45 GHES_SEV_PANIC = 0x3,
48 /* From drivers/edac/ghes_edac.c */
50 #ifdef CONFIG_EDAC_GHES
51 void ghes_edac_report_mem_error(struct ghes *ghes, int sev,
52 struct cper_sec_mem_err *mem_err);
54 int ghes_edac_register(struct ghes *ghes, struct device *dev);
56 void ghes_edac_unregister(struct ghes *ghes);
58 #else
59 static inline void ghes_edac_report_mem_error(struct ghes *ghes, int sev,
60 struct cper_sec_mem_err *mem_err)
64 static inline int ghes_edac_register(struct ghes *ghes, struct device *dev)
66 return 0;
69 static inline void ghes_edac_unregister(struct ghes *ghes)
72 #endif