Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Tyler Baicar | 7edda08 | 2017-06-21 12:17:09 -0600 | [diff] [blame] | 2 | #ifndef GHES_H |
| 3 | #define GHES_H |
| 4 | |
Mauro Carvalho Chehab | 40e0641 | 2013-02-15 05:41:22 -0300 | [diff] [blame] | 5 | #include <acpi/apei.h> |
| 6 | #include <acpi/hed.h> |
| 7 | |
| 8 | /* |
| 9 | * One struct ghes is created for each generic hardware error source. |
| 10 | * It provides the context for APEI hardware error timer/IRQ/SCI/NMI |
| 11 | * handler. |
| 12 | * |
| 13 | * estatus: memory buffer for error status block, allocated during |
| 14 | * HEST parsing. |
| 15 | */ |
Mauro Carvalho Chehab | 40e0641 | 2013-02-15 05:41:22 -0300 | [diff] [blame] | 16 | #define GHES_EXITING 0x0002 |
| 17 | |
| 18 | struct ghes { |
Tyler Baicar | 42aa560 | 2017-06-21 12:17:04 -0600 | [diff] [blame] | 19 | union { |
| 20 | struct acpi_hest_generic *generic; |
| 21 | struct acpi_hest_generic_v2 *generic_v2; |
| 22 | }; |
Lv Zheng | 0a00fd5 | 2014-06-03 16:32:53 +0800 | [diff] [blame] | 23 | struct acpi_hest_generic_status *estatus; |
Mauro Carvalho Chehab | 40e0641 | 2013-02-15 05:41:22 -0300 | [diff] [blame] | 24 | unsigned long flags; |
| 25 | union { |
| 26 | struct list_head list; |
| 27 | struct timer_list timer; |
| 28 | unsigned int irq; |
| 29 | }; |
| 30 | }; |
| 31 | |
| 32 | struct ghes_estatus_node { |
| 33 | struct llist_node llnode; |
| 34 | struct acpi_hest_generic *generic; |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 35 | struct ghes *ghes; |
James Morse | 7f17b4a | 2020-05-01 17:45:42 +0100 | [diff] [blame] | 36 | |
| 37 | int task_work_cpu; |
| 38 | struct callback_head task_work; |
Mauro Carvalho Chehab | 40e0641 | 2013-02-15 05:41:22 -0300 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | struct ghes_estatus_cache { |
| 42 | u32 estatus_len; |
| 43 | atomic_t count; |
| 44 | struct acpi_hest_generic *generic; |
| 45 | unsigned long long time_in; |
| 46 | struct rcu_head rcu; |
| 47 | }; |
| 48 | |
| 49 | enum { |
| 50 | GHES_SEV_NO = 0x0, |
| 51 | GHES_SEV_CORRECTED = 0x1, |
| 52 | GHES_SEV_RECOVERABLE = 0x2, |
| 53 | GHES_SEV_PANIC = 0x3, |
| 54 | }; |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 55 | |
Shiju Jose | 9aa9cf3 | 2020-09-03 13:34:55 +0100 | [diff] [blame] | 56 | #ifdef CONFIG_ACPI_APEI_GHES |
| 57 | /** |
| 58 | * ghes_register_vendor_record_notifier - register a notifier for vendor |
| 59 | * records that the kernel would otherwise ignore. |
| 60 | * @nb: pointer to the notifier_block structure of the event handler. |
| 61 | * |
| 62 | * return 0 : SUCCESS, non-zero : FAIL |
| 63 | */ |
| 64 | int ghes_register_vendor_record_notifier(struct notifier_block *nb); |
| 65 | |
| 66 | /** |
| 67 | * ghes_unregister_vendor_record_notifier - unregister the previously |
| 68 | * registered vendor record notifier. |
| 69 | * @nb: pointer to the notifier_block structure of the vendor record handler. |
| 70 | */ |
| 71 | void ghes_unregister_vendor_record_notifier(struct notifier_block *nb); |
| 72 | #endif |
| 73 | |
James Morse | fb7be08 | 2019-01-29 18:48:41 +0000 | [diff] [blame] | 74 | int ghes_estatus_pool_init(int num_ghes); |
James Morse | e147133 | 2019-01-29 18:48:40 +0000 | [diff] [blame] | 75 | |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 76 | /* From drivers/edac/ghes_edac.c */ |
| 77 | |
| 78 | #ifdef CONFIG_EDAC_GHES |
Alexandru Gagniuc | 305d0e0 | 2018-04-30 16:33:50 -0500 | [diff] [blame] | 79 | void ghes_edac_report_mem_error(int sev, struct cper_sec_mem_err *mem_err); |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 80 | |
| 81 | int ghes_edac_register(struct ghes *ghes, struct device *dev); |
| 82 | |
| 83 | void ghes_edac_unregister(struct ghes *ghes); |
| 84 | |
| 85 | #else |
Alexandru Gagniuc | 305d0e0 | 2018-04-30 16:33:50 -0500 | [diff] [blame] | 86 | static inline void ghes_edac_report_mem_error(int sev, |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 87 | struct cper_sec_mem_err *mem_err) |
| 88 | { |
| 89 | } |
| 90 | |
| 91 | static inline int ghes_edac_register(struct ghes *ghes, struct device *dev) |
| 92 | { |
Borislav Petkov | cc7f3f1 | 2018-04-23 14:16:46 +0200 | [diff] [blame] | 93 | return -ENODEV; |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | static inline void ghes_edac_unregister(struct ghes *ghes) |
| 97 | { |
| 98 | } |
| 99 | #endif |
Tyler Baicar | bbcc2e7 | 2017-06-21 12:17:05 -0600 | [diff] [blame] | 100 | |
| 101 | static inline int acpi_hest_get_version(struct acpi_hest_generic_data *gdata) |
| 102 | { |
| 103 | return gdata->revision >> 8; |
| 104 | } |
| 105 | |
| 106 | static inline void *acpi_hest_get_payload(struct acpi_hest_generic_data *gdata) |
| 107 | { |
| 108 | if (acpi_hest_get_version(gdata) >= 3) |
| 109 | return (void *)(((struct acpi_hest_generic_data_v300 *)(gdata)) + 1); |
| 110 | |
| 111 | return gdata + 1; |
| 112 | } |
| 113 | |
| 114 | static inline int acpi_hest_get_error_length(struct acpi_hest_generic_data *gdata) |
| 115 | { |
| 116 | return ((struct acpi_hest_generic_data *)(gdata))->error_data_length; |
| 117 | } |
| 118 | |
| 119 | static inline int acpi_hest_get_size(struct acpi_hest_generic_data *gdata) |
| 120 | { |
| 121 | if (acpi_hest_get_version(gdata) >= 3) |
| 122 | return sizeof(struct acpi_hest_generic_data_v300); |
| 123 | |
| 124 | return sizeof(struct acpi_hest_generic_data); |
| 125 | } |
| 126 | |
| 127 | static inline int acpi_hest_get_record_size(struct acpi_hest_generic_data *gdata) |
| 128 | { |
| 129 | return (acpi_hest_get_size(gdata) + acpi_hest_get_error_length(gdata)); |
| 130 | } |
| 131 | |
| 132 | static inline void *acpi_hest_get_next(struct acpi_hest_generic_data *gdata) |
| 133 | { |
| 134 | return (void *)(gdata) + acpi_hest_get_record_size(gdata); |
| 135 | } |
Tyler Baicar | 7edda08 | 2017-06-21 12:17:09 -0600 | [diff] [blame] | 136 | |
gengdongjiu | c4335fd | 2017-08-17 20:07:18 +0800 | [diff] [blame] | 137 | #define apei_estatus_for_each_section(estatus, section) \ |
| 138 | for (section = (struct acpi_hest_generic_data *)(estatus + 1); \ |
| 139 | (void *)section - (void *)(estatus + 1) < estatus->data_length; \ |
| 140 | section = acpi_hest_get_next(section)) |
| 141 | |
Dongjiu Geng | 1035a07 | 2018-08-07 12:26:15 -0400 | [diff] [blame] | 142 | #ifdef CONFIG_ACPI_APEI_SEA |
Tyler Baicar | 621f48e | 2017-06-21 12:17:14 -0600 | [diff] [blame] | 143 | int ghes_notify_sea(void); |
Dongjiu Geng | 1035a07 | 2018-08-07 12:26:15 -0400 | [diff] [blame] | 144 | #else |
| 145 | static inline int ghes_notify_sea(void) { return -ENOENT; } |
| 146 | #endif |
Tyler Baicar | 7edda08 | 2017-06-21 12:17:09 -0600 | [diff] [blame] | 147 | |
| 148 | #endif /* GHES_H */ |