1 /* SPDX-License-Identifier: GPL-2.0 */ 1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef GHES_H 2 #ifndef GHES_H 3 #define GHES_H 3 #define GHES_H 4 4 5 #include <acpi/apei.h> 5 #include <acpi/apei.h> 6 #include <acpi/hed.h> 6 #include <acpi/hed.h> 7 7 8 /* 8 /* 9 * One struct ghes is created for each generic 9 * One struct ghes is created for each generic hardware error source. 10 * It provides the context for APEI hardware e 10 * It provides the context for APEI hardware error timer/IRQ/SCI/NMI 11 * handler. 11 * handler. 12 * 12 * 13 * estatus: memory buffer for error status blo 13 * estatus: memory buffer for error status block, allocated during 14 * HEST parsing. 14 * HEST parsing. 15 */ 15 */ 16 #define GHES_EXITING 0x0002 16 #define GHES_EXITING 0x0002 17 17 18 struct ghes { 18 struct ghes { 19 union { 19 union { 20 struct acpi_hest_generic *gene 20 struct acpi_hest_generic *generic; 21 struct acpi_hest_generic_v2 *g 21 struct acpi_hest_generic_v2 *generic_v2; 22 }; 22 }; 23 struct acpi_hest_generic_status *estat 23 struct acpi_hest_generic_status *estatus; 24 unsigned long flags; 24 unsigned long flags; 25 union { 25 union { 26 struct list_head list; 26 struct list_head list; 27 struct timer_list timer; 27 struct timer_list timer; 28 unsigned int irq; 28 unsigned int irq; 29 }; 29 }; 30 struct device *dev; 30 struct device *dev; 31 struct list_head elist; 31 struct list_head elist; 32 }; 32 }; 33 33 34 struct ghes_estatus_node { 34 struct ghes_estatus_node { 35 struct llist_node llnode; 35 struct llist_node llnode; 36 struct acpi_hest_generic *generic; 36 struct acpi_hest_generic *generic; 37 struct ghes *ghes; 37 struct ghes *ghes; 38 38 39 int task_work_cpu; 39 int task_work_cpu; 40 struct callback_head task_work; 40 struct callback_head task_work; 41 }; 41 }; 42 42 43 struct ghes_estatus_cache { 43 struct ghes_estatus_cache { 44 u32 estatus_len; 44 u32 estatus_len; 45 atomic_t count; 45 atomic_t count; 46 struct acpi_hest_generic *generic; 46 struct acpi_hest_generic *generic; 47 unsigned long long time_in; 47 unsigned long long time_in; 48 struct rcu_head rcu; 48 struct rcu_head rcu; 49 }; 49 }; 50 50 51 enum { 51 enum { 52 GHES_SEV_NO = 0x0, 52 GHES_SEV_NO = 0x0, 53 GHES_SEV_CORRECTED = 0x1, 53 GHES_SEV_CORRECTED = 0x1, 54 GHES_SEV_RECOVERABLE = 0x2, 54 GHES_SEV_RECOVERABLE = 0x2, 55 GHES_SEV_PANIC = 0x3, 55 GHES_SEV_PANIC = 0x3, 56 }; 56 }; 57 57 58 #ifdef CONFIG_ACPI_APEI_GHES 58 #ifdef CONFIG_ACPI_APEI_GHES 59 /** 59 /** 60 * ghes_register_vendor_record_notifier - regi 60 * ghes_register_vendor_record_notifier - register a notifier for vendor 61 * records that the kernel would otherwise ign 61 * records that the kernel would otherwise ignore. 62 * @nb: pointer to the notifier_block structur 62 * @nb: pointer to the notifier_block structure of the event handler. 63 * 63 * 64 * return 0 : SUCCESS, non-zero : FAIL 64 * return 0 : SUCCESS, non-zero : FAIL 65 */ 65 */ 66 int ghes_register_vendor_record_notifier(struc 66 int ghes_register_vendor_record_notifier(struct notifier_block *nb); 67 67 68 /** 68 /** 69 * ghes_unregister_vendor_record_notifier - un 69 * ghes_unregister_vendor_record_notifier - unregister the previously 70 * registered vendor record notifier. 70 * registered vendor record notifier. 71 * @nb: pointer to the notifier_block structur 71 * @nb: pointer to the notifier_block structure of the vendor record handler. 72 */ 72 */ 73 void ghes_unregister_vendor_record_notifier(st 73 void ghes_unregister_vendor_record_notifier(struct notifier_block *nb); 74 74 75 struct list_head *ghes_get_devices(void); 75 struct list_head *ghes_get_devices(void); 76 << 77 void ghes_estatus_pool_region_free(unsigned lo << 78 #else 76 #else 79 static inline struct list_head *ghes_get_devic 77 static inline struct list_head *ghes_get_devices(void) { return NULL; } 80 << 81 static inline void ghes_estatus_pool_region_fr << 82 #endif 78 #endif 83 79 84 int ghes_estatus_pool_init(unsigned int num_gh 80 int ghes_estatus_pool_init(unsigned int num_ghes); 85 81 86 static inline int acpi_hest_get_version(struct 82 static inline int acpi_hest_get_version(struct acpi_hest_generic_data *gdata) 87 { 83 { 88 return gdata->revision >> 8; 84 return gdata->revision >> 8; 89 } 85 } 90 86 91 static inline void *acpi_hest_get_payload(stru 87 static inline void *acpi_hest_get_payload(struct acpi_hest_generic_data *gdata) 92 { 88 { 93 if (acpi_hest_get_version(gdata) >= 3) 89 if (acpi_hest_get_version(gdata) >= 3) 94 return (void *)(((struct acpi_ 90 return (void *)(((struct acpi_hest_generic_data_v300 *)(gdata)) + 1); 95 91 96 return gdata + 1; 92 return gdata + 1; 97 } 93 } 98 94 99 static inline int acpi_hest_get_error_length(s 95 static inline int acpi_hest_get_error_length(struct acpi_hest_generic_data *gdata) 100 { 96 { 101 return ((struct acpi_hest_generic_data 97 return ((struct acpi_hest_generic_data *)(gdata))->error_data_length; 102 } 98 } 103 99 104 static inline int acpi_hest_get_size(struct ac 100 static inline int acpi_hest_get_size(struct acpi_hest_generic_data *gdata) 105 { 101 { 106 if (acpi_hest_get_version(gdata) >= 3) 102 if (acpi_hest_get_version(gdata) >= 3) 107 return sizeof(struct acpi_hest 103 return sizeof(struct acpi_hest_generic_data_v300); 108 104 109 return sizeof(struct acpi_hest_generic 105 return sizeof(struct acpi_hest_generic_data); 110 } 106 } 111 107 112 static inline int acpi_hest_get_record_size(st 108 static inline int acpi_hest_get_record_size(struct acpi_hest_generic_data *gdata) 113 { 109 { 114 return (acpi_hest_get_size(gdata) + ac 110 return (acpi_hest_get_size(gdata) + acpi_hest_get_error_length(gdata)); 115 } 111 } 116 112 117 static inline void *acpi_hest_get_next(struct 113 static inline void *acpi_hest_get_next(struct acpi_hest_generic_data *gdata) 118 { 114 { 119 return (void *)(gdata) + acpi_hest_get 115 return (void *)(gdata) + acpi_hest_get_record_size(gdata); 120 } 116 } 121 117 122 #define apei_estatus_for_each_section(estatus, 118 #define apei_estatus_for_each_section(estatus, section) \ 123 for (section = (struct acpi_hest_gener 119 for (section = (struct acpi_hest_generic_data *)(estatus + 1); \ 124 (void *)section - (void *)(estatu 120 (void *)section - (void *)(estatus + 1) < estatus->data_length; \ 125 section = acpi_hest_get_next(sect 121 section = acpi_hest_get_next(section)) 126 122 127 #ifdef CONFIG_ACPI_APEI_SEA 123 #ifdef CONFIG_ACPI_APEI_SEA 128 int ghes_notify_sea(void); 124 int ghes_notify_sea(void); 129 #else 125 #else 130 static inline int ghes_notify_sea(void) { retu 126 static inline int ghes_notify_sea(void) { return -ENOENT; } 131 #endif 127 #endif 132 128 133 struct notifier_block; 129 struct notifier_block; 134 extern void ghes_register_report_chain(struct 130 extern void ghes_register_report_chain(struct notifier_block *nb); 135 extern void ghes_unregister_report_chain(struc 131 extern void ghes_unregister_report_chain(struct notifier_block *nb); 136 #endif /* GHES_H */ 132 #endif /* GHES_H */ 137 133
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.