1 /*
2 * APEI Generic Hardware Error Source support
3 *
4 * Generic Hardware Error Source provides a way to report platform
5 * hardware errors (such as that from chipset). It works in so called
6 * "Firmware First" mode, that is, hardware errors are reported to
7 * firmware firstly, then reported to Linux by firmware. This way,
8 * some non-standard hardware error registers or non-standard hardware
9 * link can be checked by firmware to produce more hardware error
10 * information for Linux.
11 *
12 * For more information about Generic Hardware Error Source, please
13 * refer to ACPI Specification version 4.0, section 17.3.2.6
14 *
15 * Copyright 2010,2011 Intel Corp.
16 * Author: Huang Ying <ying.huang@intel.com>
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License version
20 * 2 as published by the Free Software Foundation;
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 */
27
28 #include <linux/kernel.h>
29 #include <linux/moduleparam.h>
30 #include <linux/init.h>
31 #include <linux/acpi.h>
32 #include <linux/io.h>
33 #include <linux/interrupt.h>
34 #include <linux/timer.h>
35 #include <linux/cper.h>
36 #include <linux/kdebug.h>
37 #include <linux/platform_device.h>
38 #include <linux/mutex.h>
39 #include <linux/ratelimit.h>
40 #include <linux/vmalloc.h>
41 #include <linux/irq_work.h>
42 #include <linux/llist.h>
43 #include <linux/genalloc.h>
44 #include <linux/pci.h>
45 #include <linux/aer.h>
46 #include <linux/nmi.h>
47 #include <linux/sched/clock.h>
48 #include <linux/uuid.h>
49 #include <linux/ras.h>
50
51 #include <acpi/actbl1.h>
52 #include <acpi/ghes.h>
53 #include <acpi/apei.h>
54 #include <asm/fixmap.h>
55 #include <asm/tlbflush.h>
56 #include <ras/ras_event.h>
57
58 #include "apei-internal.h"
59
60 #define GHES_PFX "GHES: "
61
62 #define GHES_ESTATUS_MAX_SIZE 65536
63 #define GHES_ESOURCE_PREALLOC_MAX_SIZE 65536
64
65 #define GHES_ESTATUS_POOL_MIN_ALLOC_ORDER 3
66
67 /* This is just an estimation for memory pool allocation */
68 #define GHES_ESTATUS_CACHE_AVG_SIZE 512
69
70 #define GHES_ESTATUS_CACHES_SIZE 4
71
72 #define GHES_ESTATUS_IN_CACHE_MAX_NSEC 10000000000ULL
73 /* Prevent too many caches are allocated because of RCU */
74 #define GHES_ESTATUS_CACHE_ALLOCED_MAX (GHES_ESTATUS_CACHES_SIZE * 3 / 2)
75
76 #define GHES_ESTATUS_CACHE_LEN(estatus_len) \
77 (sizeof(struct ghes_estatus_cache) + (estatus_len))
78 #define GHES_ESTATUS_FROM_CACHE(estatus_cache) \
79 ((struct acpi_hest_generic_status *) \
80 ((struct ghes_estatus_cache *)(estatus_cache) + 1))
81
82 #define GHES_ESTATUS_NODE_LEN(estatus_len) \
83 (sizeof(struct ghes_estatus_node) + (estatus_len))
84 #define GHES_ESTATUS_FROM_NODE(estatus_node) \
85 ((struct acpi_hest_generic_status *) \
86 ((struct ghes_estatus_node *)(estatus_node) + 1))
87
is_hest_type_generic_v2(struct ghes * ghes)88 static inline bool is_hest_type_generic_v2(struct ghes *ghes)
89 {
90 return ghes->generic->header.type == ACPI_HEST_TYPE_GENERIC_ERROR_V2;
91 }
92
93 /*
94 * This driver isn't really modular, however for the time being,
95 * continuing to use module_param is the easiest way to remain
96 * compatible with existing boot arg use cases.
97 */
98 bool ghes_disable;
99 module_param_named(disable, ghes_disable, bool, 0);
100
101 /*
102 * All error sources notified with HED (Hardware Error Device) share a
103 * single notifier callback, so they need to be linked and checked one
104 * by one. This holds true for NMI too.
105 *
106 * RCU is used for these lists, so ghes_list_mutex is only used for
107 * list changing, not for traversing.
108 */
109 static LIST_HEAD(ghes_hed);
110 static DEFINE_MUTEX(ghes_list_mutex);
111
112 /*
113 * Because the memory area used to transfer hardware error information
114 * from BIOS to Linux can be determined only in NMI, IRQ or timer
115 * handler, but general ioremap can not be used in atomic context, so
116 * the fixmap is used instead.
117 *
118 * These 2 spinlocks are used to prevent the fixmap entries from being used
119 * simultaneously.
120 */
121 static DEFINE_RAW_SPINLOCK(ghes_ioremap_lock_nmi);
122 static DEFINE_SPINLOCK(ghes_ioremap_lock_irq);
123
124 static struct gen_pool *ghes_estatus_pool;
125 static unsigned long ghes_estatus_pool_size_request;
126
127 static struct ghes_estatus_cache *ghes_estatus_caches[GHES_ESTATUS_CACHES_SIZE];
128 static atomic_t ghes_estatus_cache_alloced;
129
130 static int ghes_panic_timeout __read_mostly = 30;
131
ghes_ioremap_pfn_nmi(u64 pfn)132 static void __iomem *ghes_ioremap_pfn_nmi(u64 pfn)
133 {
134 phys_addr_t paddr;
135 pgprot_t prot;
136
137 paddr = pfn << PAGE_SHIFT;
138 prot = arch_apei_get_mem_attribute(paddr);
139 __set_fixmap(FIX_APEI_GHES_NMI, paddr, prot);
140
141 return (void __iomem *) fix_to_virt(FIX_APEI_GHES_NMI);
142 }
143
ghes_ioremap_pfn_irq(u64 pfn)144 static void __iomem *ghes_ioremap_pfn_irq(u64 pfn)
145 {
146 phys_addr_t paddr;
147 pgprot_t prot;
148
149 paddr = pfn << PAGE_SHIFT;
150 prot = arch_apei_get_mem_attribute(paddr);
151 __set_fixmap(FIX_APEI_GHES_IRQ, paddr, prot);
152
153 return (void __iomem *) fix_to_virt(FIX_APEI_GHES_IRQ);
154 }
155
ghes_iounmap_nmi(void)156 static void ghes_iounmap_nmi(void)
157 {
158 clear_fixmap(FIX_APEI_GHES_NMI);
159 }
160
ghes_iounmap_irq(void)161 static void ghes_iounmap_irq(void)
162 {
163 clear_fixmap(FIX_APEI_GHES_IRQ);
164 }
165
ghes_estatus_pool_init(void)166 static int ghes_estatus_pool_init(void)
167 {
168 ghes_estatus_pool = gen_pool_create(GHES_ESTATUS_POOL_MIN_ALLOC_ORDER, -1);
169 if (!ghes_estatus_pool)
170 return -ENOMEM;
171 return 0;
172 }
173
ghes_estatus_pool_free_chunk_page(struct gen_pool * pool,struct gen_pool_chunk * chunk,void * data)174 static void ghes_estatus_pool_free_chunk_page(struct gen_pool *pool,
175 struct gen_pool_chunk *chunk,
176 void *data)
177 {
178 free_page(chunk->start_addr);
179 }
180
ghes_estatus_pool_exit(void)181 static void ghes_estatus_pool_exit(void)
182 {
183 gen_pool_for_each_chunk(ghes_estatus_pool,
184 ghes_estatus_pool_free_chunk_page, NULL);
185 gen_pool_destroy(ghes_estatus_pool);
186 }
187
ghes_estatus_pool_expand(unsigned long len)188 static int ghes_estatus_pool_expand(unsigned long len)
189 {
190 unsigned long i, pages, size, addr;
191 int ret;
192
193 ghes_estatus_pool_size_request += PAGE_ALIGN(len);
194 size = gen_pool_size(ghes_estatus_pool);
195 if (size >= ghes_estatus_pool_size_request)
196 return 0;
197 pages = (ghes_estatus_pool_size_request - size) / PAGE_SIZE;
198 for (i = 0; i < pages; i++) {
199 addr = __get_free_page(GFP_KERNEL);
200 if (!addr)
201 return -ENOMEM;
202 ret = gen_pool_add(ghes_estatus_pool, addr, PAGE_SIZE, -1);
203 if (ret)
204 return ret;
205 }
206
207 return 0;
208 }
209
map_gen_v2(struct ghes * ghes)210 static int map_gen_v2(struct ghes *ghes)
211 {
212 return apei_map_generic_address(&ghes->generic_v2->read_ack_register);
213 }
214
unmap_gen_v2(struct ghes * ghes)215 static void unmap_gen_v2(struct ghes *ghes)
216 {
217 apei_unmap_generic_address(&ghes->generic_v2->read_ack_register);
218 }
219
ghes_new(struct acpi_hest_generic * generic)220 static struct ghes *ghes_new(struct acpi_hest_generic *generic)
221 {
222 struct ghes *ghes;
223 unsigned int error_block_length;
224 int rc;
225
226 ghes = kzalloc(sizeof(*ghes), GFP_KERNEL);
227 if (!ghes)
228 return ERR_PTR(-ENOMEM);
229
230 ghes->generic = generic;
231 if (is_hest_type_generic_v2(ghes)) {
232 rc = map_gen_v2(ghes);
233 if (rc)
234 goto err_free;
235 }
236
237 rc = apei_map_generic_address(&generic->error_status_address);
238 if (rc)
239 goto err_unmap_read_ack_addr;
240 error_block_length = generic->error_block_length;
241 if (error_block_length > GHES_ESTATUS_MAX_SIZE) {
242 pr_warning(FW_WARN GHES_PFX
243 "Error status block length is too long: %u for "
244 "generic hardware error source: %d.\n",
245 error_block_length, generic->header.source_id);
246 error_block_length = GHES_ESTATUS_MAX_SIZE;
247 }
248 ghes->estatus = kmalloc(error_block_length, GFP_KERNEL);
249 if (!ghes->estatus) {
250 rc = -ENOMEM;
251 goto err_unmap_status_addr;
252 }
253
254 return ghes;
255
256 err_unmap_status_addr:
257 apei_unmap_generic_address(&generic->error_status_address);
258 err_unmap_read_ack_addr:
259 if (is_hest_type_generic_v2(ghes))
260 unmap_gen_v2(ghes);
261 err_free:
262 kfree(ghes);
263 return ERR_PTR(rc);
264 }
265
ghes_fini(struct ghes * ghes)266 static void ghes_fini(struct ghes *ghes)
267 {
268 kfree(ghes->estatus);
269 apei_unmap_generic_address(&ghes->generic->error_status_address);
270 if (is_hest_type_generic_v2(ghes))
271 unmap_gen_v2(ghes);
272 }
273
ghes_severity(int severity)274 static inline int ghes_severity(int severity)
275 {
276 switch (severity) {
277 case CPER_SEV_INFORMATIONAL:
278 return GHES_SEV_NO;
279 case CPER_SEV_CORRECTED:
280 return GHES_SEV_CORRECTED;
281 case CPER_SEV_RECOVERABLE:
282 return GHES_SEV_RECOVERABLE;
283 case CPER_SEV_FATAL:
284 return GHES_SEV_PANIC;
285 default:
286 /* Unknown, go panic */
287 return GHES_SEV_PANIC;
288 }
289 }
290
ghes_copy_tofrom_phys(void * buffer,u64 paddr,u32 len,int from_phys)291 static void ghes_copy_tofrom_phys(void *buffer, u64 paddr, u32 len,
292 int from_phys)
293 {
294 void __iomem *vaddr;
295 unsigned long flags = 0;
296 int in_nmi = in_nmi();
297 u64 offset;
298 u32 trunk;
299
300 while (len > 0) {
301 offset = paddr - (paddr & PAGE_MASK);
302 if (in_nmi) {
303 raw_spin_lock(&ghes_ioremap_lock_nmi);
304 vaddr = ghes_ioremap_pfn_nmi(paddr >> PAGE_SHIFT);
305 } else {
306 spin_lock_irqsave(&ghes_ioremap_lock_irq, flags);
307 vaddr = ghes_ioremap_pfn_irq(paddr >> PAGE_SHIFT);
308 }
309 trunk = PAGE_SIZE - offset;
310 trunk = min(trunk, len);
311 if (from_phys)
312 memcpy_fromio(buffer, vaddr + offset, trunk);
313 else
314 memcpy_toio(vaddr + offset, buffer, trunk);
315 len -= trunk;
316 paddr += trunk;
317 buffer += trunk;
318 if (in_nmi) {
319 ghes_iounmap_nmi();
320 raw_spin_unlock(&ghes_ioremap_lock_nmi);
321 } else {
322 ghes_iounmap_irq();
323 spin_unlock_irqrestore(&ghes_ioremap_lock_irq, flags);
324 }
325 }
326 }
327
ghes_read_estatus(struct ghes * ghes,int silent)328 static int ghes_read_estatus(struct ghes *ghes, int silent)
329 {
330 struct acpi_hest_generic *g = ghes->generic;
331 u64 buf_paddr;
332 u32 len;
333 int rc;
334
335 rc = apei_read(&buf_paddr, &g->error_status_address);
336 if (rc) {
337 if (!silent && printk_ratelimit())
338 pr_warning(FW_WARN GHES_PFX
339 "Failed to read error status block address for hardware error source: %d.\n",
340 g->header.source_id);
341 return -EIO;
342 }
343 if (!buf_paddr)
344 return -ENOENT;
345
346 ghes_copy_tofrom_phys(ghes->estatus, buf_paddr,
347 sizeof(*ghes->estatus), 1);
348 if (!ghes->estatus->block_status)
349 return -ENOENT;
350
351 ghes->buffer_paddr = buf_paddr;
352 ghes->flags |= GHES_TO_CLEAR;
353
354 rc = -EIO;
355 len = cper_estatus_len(ghes->estatus);
356 if (len < sizeof(*ghes->estatus))
357 goto err_read_block;
358 if (len > ghes->generic->error_block_length)
359 goto err_read_block;
360 if (cper_estatus_check_header(ghes->estatus))
361 goto err_read_block;
362 ghes_copy_tofrom_phys(ghes->estatus + 1,
363 buf_paddr + sizeof(*ghes->estatus),
364 len - sizeof(*ghes->estatus), 1);
365 if (cper_estatus_check(ghes->estatus))
366 goto err_read_block;
367 rc = 0;
368
369 err_read_block:
370 if (rc && !silent && printk_ratelimit())
371 pr_warning(FW_WARN GHES_PFX
372 "Failed to read error status block!\n");
373 return rc;
374 }
375
ghes_clear_estatus(struct ghes * ghes)376 static void ghes_clear_estatus(struct ghes *ghes)
377 {
378 ghes->estatus->block_status = 0;
379 if (!(ghes->flags & GHES_TO_CLEAR))
380 return;
381 ghes_copy_tofrom_phys(ghes->estatus, ghes->buffer_paddr,
382 sizeof(ghes->estatus->block_status), 0);
383 ghes->flags &= ~GHES_TO_CLEAR;
384 }
385
ghes_handle_memory_failure(struct acpi_hest_generic_data * gdata,int sev)386 static void ghes_handle_memory_failure(struct acpi_hest_generic_data *gdata, int sev)
387 {
388 #ifdef CONFIG_ACPI_APEI_MEMORY_FAILURE
389 unsigned long pfn;
390 int flags = -1;
391 int sec_sev = ghes_severity(gdata->error_severity);
392 struct cper_sec_mem_err *mem_err = acpi_hest_get_payload(gdata);
393
394 if (!(mem_err->validation_bits & CPER_MEM_VALID_PA))
395 return;
396
397 pfn = mem_err->physical_addr >> PAGE_SHIFT;
398 if (!pfn_valid(pfn)) {
399 pr_warn_ratelimited(FW_WARN GHES_PFX
400 "Invalid address in generic error data: %#llx\n",
401 mem_err->physical_addr);
402 return;
403 }
404
405 /* iff following two events can be handled properly by now */
406 if (sec_sev == GHES_SEV_CORRECTED &&
407 (gdata->flags & CPER_SEC_ERROR_THRESHOLD_EXCEEDED))
408 flags = MF_SOFT_OFFLINE;
409 if (sev == GHES_SEV_RECOVERABLE && sec_sev == GHES_SEV_RECOVERABLE)
410 flags = 0;
411
412 if (flags != -1)
413 memory_failure_queue(pfn, flags);
414 #endif
415 }
416
417 /*
418 * PCIe AER errors need to be sent to the AER driver for reporting and
419 * recovery. The GHES severities map to the following AER severities and
420 * require the following handling:
421 *
422 * GHES_SEV_CORRECTABLE -> AER_CORRECTABLE
423 * These need to be reported by the AER driver but no recovery is
424 * necessary.
425 * GHES_SEV_RECOVERABLE -> AER_NONFATAL
426 * GHES_SEV_RECOVERABLE && CPER_SEC_RESET -> AER_FATAL
427 * These both need to be reported and recovered from by the AER driver.
428 * GHES_SEV_PANIC does not make it to this handling since the kernel must
429 * panic.
430 */
ghes_handle_aer(struct acpi_hest_generic_data * gdata)431 static void ghes_handle_aer(struct acpi_hest_generic_data *gdata)
432 {
433 #ifdef CONFIG_ACPI_APEI_PCIEAER
434 struct cper_sec_pcie *pcie_err = acpi_hest_get_payload(gdata);
435
436 if (pcie_err->validation_bits & CPER_PCIE_VALID_DEVICE_ID &&
437 pcie_err->validation_bits & CPER_PCIE_VALID_AER_INFO) {
438 unsigned int devfn;
439 int aer_severity;
440
441 devfn = PCI_DEVFN(pcie_err->device_id.device,
442 pcie_err->device_id.function);
443 aer_severity = cper_severity_to_aer(gdata->error_severity);
444
445 /*
446 * If firmware reset the component to contain
447 * the error, we must reinitialize it before
448 * use, so treat it as a fatal AER error.
449 */
450 if (gdata->flags & CPER_SEC_RESET)
451 aer_severity = AER_FATAL;
452
453 aer_recover_queue(pcie_err->device_id.segment,
454 pcie_err->device_id.bus,
455 devfn, aer_severity,
456 (struct aer_capability_regs *)
457 pcie_err->aer_info);
458 }
459 #endif
460 }
461
ghes_do_proc(struct ghes * ghes,const struct acpi_hest_generic_status * estatus)462 static void ghes_do_proc(struct ghes *ghes,
463 const struct acpi_hest_generic_status *estatus)
464 {
465 int sev, sec_sev;
466 struct acpi_hest_generic_data *gdata;
467 guid_t *sec_type;
468 guid_t *fru_id = &NULL_UUID_LE;
469 char *fru_text = "";
470
471 sev = ghes_severity(estatus->error_severity);
472 apei_estatus_for_each_section(estatus, gdata) {
473 sec_type = (guid_t *)gdata->section_type;
474 sec_sev = ghes_severity(gdata->error_severity);
475 if (gdata->validation_bits & CPER_SEC_VALID_FRU_ID)
476 fru_id = (guid_t *)gdata->fru_id;
477
478 if (gdata->validation_bits & CPER_SEC_VALID_FRU_TEXT)
479 fru_text = gdata->fru_text;
480
481 if (guid_equal(sec_type, &CPER_SEC_PLATFORM_MEM)) {
482 struct cper_sec_mem_err *mem_err = acpi_hest_get_payload(gdata);
483
484 ghes_edac_report_mem_error(sev, mem_err);
485
486 arch_apei_report_mem_error(sev, mem_err);
487 ghes_handle_memory_failure(gdata, sev);
488 }
489 else if (guid_equal(sec_type, &CPER_SEC_PCIE)) {
490 ghes_handle_aer(gdata);
491 }
492 else if (guid_equal(sec_type, &CPER_SEC_PROC_ARM)) {
493 struct cper_sec_proc_arm *err = acpi_hest_get_payload(gdata);
494
495 log_arm_hw_error(err);
496 } else {
497 void *err = acpi_hest_get_payload(gdata);
498
499 log_non_standard_event(sec_type, fru_id, fru_text,
500 sec_sev, err,
501 gdata->error_data_length);
502 }
503 }
504 }
505
__ghes_print_estatus(const char * pfx,const struct acpi_hest_generic * generic,const struct acpi_hest_generic_status * estatus)506 static void __ghes_print_estatus(const char *pfx,
507 const struct acpi_hest_generic *generic,
508 const struct acpi_hest_generic_status *estatus)
509 {
510 static atomic_t seqno;
511 unsigned int curr_seqno;
512 char pfx_seq[64];
513
514 if (pfx == NULL) {
515 if (ghes_severity(estatus->error_severity) <=
516 GHES_SEV_CORRECTED)
517 pfx = KERN_WARNING;
518 else
519 pfx = KERN_ERR;
520 }
521 curr_seqno = atomic_inc_return(&seqno);
522 snprintf(pfx_seq, sizeof(pfx_seq), "%s{%u}" HW_ERR, pfx, curr_seqno);
523 printk("%s""Hardware error from APEI Generic Hardware Error Source: %d\n",
524 pfx_seq, generic->header.source_id);
525 cper_estatus_print(pfx_seq, estatus);
526 }
527
ghes_print_estatus(const char * pfx,const struct acpi_hest_generic * generic,const struct acpi_hest_generic_status * estatus)528 static int ghes_print_estatus(const char *pfx,
529 const struct acpi_hest_generic *generic,
530 const struct acpi_hest_generic_status *estatus)
531 {
532 /* Not more than 2 messages every 5 seconds */
533 static DEFINE_RATELIMIT_STATE(ratelimit_corrected, 5*HZ, 2);
534 static DEFINE_RATELIMIT_STATE(ratelimit_uncorrected, 5*HZ, 2);
535 struct ratelimit_state *ratelimit;
536
537 if (ghes_severity(estatus->error_severity) <= GHES_SEV_CORRECTED)
538 ratelimit = &ratelimit_corrected;
539 else
540 ratelimit = &ratelimit_uncorrected;
541 if (__ratelimit(ratelimit)) {
542 __ghes_print_estatus(pfx, generic, estatus);
543 return 1;
544 }
545 return 0;
546 }
547
548 /*
549 * GHES error status reporting throttle, to report more kinds of
550 * errors, instead of just most frequently occurred errors.
551 */
ghes_estatus_cached(struct acpi_hest_generic_status * estatus)552 static int ghes_estatus_cached(struct acpi_hest_generic_status *estatus)
553 {
554 u32 len;
555 int i, cached = 0;
556 unsigned long long now;
557 struct ghes_estatus_cache *cache;
558 struct acpi_hest_generic_status *cache_estatus;
559
560 len = cper_estatus_len(estatus);
561 rcu_read_lock();
562 for (i = 0; i < GHES_ESTATUS_CACHES_SIZE; i++) {
563 cache = rcu_dereference(ghes_estatus_caches[i]);
564 if (cache == NULL)
565 continue;
566 if (len != cache->estatus_len)
567 continue;
568 cache_estatus = GHES_ESTATUS_FROM_CACHE(cache);
569 if (memcmp(estatus, cache_estatus, len))
570 continue;
571 atomic_inc(&cache->count);
572 now = sched_clock();
573 if (now - cache->time_in < GHES_ESTATUS_IN_CACHE_MAX_NSEC)
574 cached = 1;
575 break;
576 }
577 rcu_read_unlock();
578 return cached;
579 }
580
ghes_estatus_cache_alloc(struct acpi_hest_generic * generic,struct acpi_hest_generic_status * estatus)581 static struct ghes_estatus_cache *ghes_estatus_cache_alloc(
582 struct acpi_hest_generic *generic,
583 struct acpi_hest_generic_status *estatus)
584 {
585 int alloced;
586 u32 len, cache_len;
587 struct ghes_estatus_cache *cache;
588 struct acpi_hest_generic_status *cache_estatus;
589
590 alloced = atomic_add_return(1, &ghes_estatus_cache_alloced);
591 if (alloced > GHES_ESTATUS_CACHE_ALLOCED_MAX) {
592 atomic_dec(&ghes_estatus_cache_alloced);
593 return NULL;
594 }
595 len = cper_estatus_len(estatus);
596 cache_len = GHES_ESTATUS_CACHE_LEN(len);
597 cache = (void *)gen_pool_alloc(ghes_estatus_pool, cache_len);
598 if (!cache) {
599 atomic_dec(&ghes_estatus_cache_alloced);
600 return NULL;
601 }
602 cache_estatus = GHES_ESTATUS_FROM_CACHE(cache);
603 memcpy(cache_estatus, estatus, len);
604 cache->estatus_len = len;
605 atomic_set(&cache->count, 0);
606 cache->generic = generic;
607 cache->time_in = sched_clock();
608 return cache;
609 }
610
ghes_estatus_cache_free(struct ghes_estatus_cache * cache)611 static void ghes_estatus_cache_free(struct ghes_estatus_cache *cache)
612 {
613 u32 len;
614
615 len = cper_estatus_len(GHES_ESTATUS_FROM_CACHE(cache));
616 len = GHES_ESTATUS_CACHE_LEN(len);
617 gen_pool_free(ghes_estatus_pool, (unsigned long)cache, len);
618 atomic_dec(&ghes_estatus_cache_alloced);
619 }
620
ghes_estatus_cache_rcu_free(struct rcu_head * head)621 static void ghes_estatus_cache_rcu_free(struct rcu_head *head)
622 {
623 struct ghes_estatus_cache *cache;
624
625 cache = container_of(head, struct ghes_estatus_cache, rcu);
626 ghes_estatus_cache_free(cache);
627 }
628
ghes_estatus_cache_add(struct acpi_hest_generic * generic,struct acpi_hest_generic_status * estatus)629 static void ghes_estatus_cache_add(
630 struct acpi_hest_generic *generic,
631 struct acpi_hest_generic_status *estatus)
632 {
633 int i, slot = -1, count;
634 unsigned long long now, duration, period, max_period = 0;
635 struct ghes_estatus_cache *cache, *slot_cache = NULL, *new_cache;
636
637 new_cache = ghes_estatus_cache_alloc(generic, estatus);
638 if (new_cache == NULL)
639 return;
640 rcu_read_lock();
641 now = sched_clock();
642 for (i = 0; i < GHES_ESTATUS_CACHES_SIZE; i++) {
643 cache = rcu_dereference(ghes_estatus_caches[i]);
644 if (cache == NULL) {
645 slot = i;
646 slot_cache = NULL;
647 break;
648 }
649 duration = now - cache->time_in;
650 if (duration >= GHES_ESTATUS_IN_CACHE_MAX_NSEC) {
651 slot = i;
652 slot_cache = cache;
653 break;
654 }
655 count = atomic_read(&cache->count);
656 period = duration;
657 do_div(period, (count + 1));
658 if (period > max_period) {
659 max_period = period;
660 slot = i;
661 slot_cache = cache;
662 }
663 }
664 /* new_cache must be put into array after its contents are written */
665 smp_wmb();
666 if (slot != -1 && cmpxchg(ghes_estatus_caches + slot,
667 slot_cache, new_cache) == slot_cache) {
668 if (slot_cache)
669 call_rcu(&slot_cache->rcu, ghes_estatus_cache_rcu_free);
670 } else
671 ghes_estatus_cache_free(new_cache);
672 rcu_read_unlock();
673 }
674
ghes_ack_error(struct acpi_hest_generic_v2 * gv2)675 static int ghes_ack_error(struct acpi_hest_generic_v2 *gv2)
676 {
677 int rc;
678 u64 val = 0;
679
680 rc = apei_read(&val, &gv2->read_ack_register);
681 if (rc)
682 return rc;
683
684 val &= gv2->read_ack_preserve << gv2->read_ack_register.bit_offset;
685 val |= gv2->read_ack_write << gv2->read_ack_register.bit_offset;
686
687 return apei_write(val, &gv2->read_ack_register);
688 }
689
__ghes_panic(struct ghes * ghes)690 static void __ghes_panic(struct ghes *ghes)
691 {
692 __ghes_print_estatus(KERN_EMERG, ghes->generic, ghes->estatus);
693
694 /* reboot to log the error! */
695 if (!panic_timeout)
696 panic_timeout = ghes_panic_timeout;
697 panic("Fatal hardware error!");
698 }
699
ghes_proc(struct ghes * ghes)700 static int ghes_proc(struct ghes *ghes)
701 {
702 int rc;
703
704 rc = ghes_read_estatus(ghes, 0);
705 if (rc)
706 goto out;
707
708 if (ghes_severity(ghes->estatus->error_severity) >= GHES_SEV_PANIC) {
709 __ghes_panic(ghes);
710 }
711
712 if (!ghes_estatus_cached(ghes->estatus)) {
713 if (ghes_print_estatus(NULL, ghes->generic, ghes->estatus))
714 ghes_estatus_cache_add(ghes->generic, ghes->estatus);
715 }
716 ghes_do_proc(ghes, ghes->estatus);
717
718 out:
719 ghes_clear_estatus(ghes);
720
721 if (rc == -ENOENT)
722 return rc;
723
724 /*
725 * GHESv2 type HEST entries introduce support for error acknowledgment,
726 * so only acknowledge the error if this support is present.
727 */
728 if (is_hest_type_generic_v2(ghes))
729 return ghes_ack_error(ghes->generic_v2);
730
731 return rc;
732 }
733
ghes_add_timer(struct ghes * ghes)734 static void ghes_add_timer(struct ghes *ghes)
735 {
736 struct acpi_hest_generic *g = ghes->generic;
737 unsigned long expire;
738
739 if (!g->notify.poll_interval) {
740 pr_warning(FW_WARN GHES_PFX "Poll interval is 0 for generic hardware error source: %d, disabled.\n",
741 g->header.source_id);
742 return;
743 }
744 expire = jiffies + msecs_to_jiffies(g->notify.poll_interval);
745 ghes->timer.expires = round_jiffies_relative(expire);
746 add_timer(&ghes->timer);
747 }
748
ghes_poll_func(struct timer_list * t)749 static void ghes_poll_func(struct timer_list *t)
750 {
751 struct ghes *ghes = from_timer(ghes, t, timer);
752
753 ghes_proc(ghes);
754 if (!(ghes->flags & GHES_EXITING))
755 ghes_add_timer(ghes);
756 }
757
ghes_irq_func(int irq,void * data)758 static irqreturn_t ghes_irq_func(int irq, void *data)
759 {
760 struct ghes *ghes = data;
761 int rc;
762
763 rc = ghes_proc(ghes);
764 if (rc)
765 return IRQ_NONE;
766
767 return IRQ_HANDLED;
768 }
769
ghes_notify_hed(struct notifier_block * this,unsigned long event,void * data)770 static int ghes_notify_hed(struct notifier_block *this, unsigned long event,
771 void *data)
772 {
773 struct ghes *ghes;
774 int ret = NOTIFY_DONE;
775
776 rcu_read_lock();
777 list_for_each_entry_rcu(ghes, &ghes_hed, list) {
778 if (!ghes_proc(ghes))
779 ret = NOTIFY_OK;
780 }
781 rcu_read_unlock();
782
783 return ret;
784 }
785
786 static struct notifier_block ghes_notifier_hed = {
787 .notifier_call = ghes_notify_hed,
788 };
789
790 #ifdef CONFIG_ACPI_APEI_SEA
791 static LIST_HEAD(ghes_sea);
792
793 /*
794 * Return 0 only if one of the SEA error sources successfully reported an error
795 * record sent from the firmware.
796 */
ghes_notify_sea(void)797 int ghes_notify_sea(void)
798 {
799 struct ghes *ghes;
800 int ret = -ENOENT;
801
802 rcu_read_lock();
803 list_for_each_entry_rcu(ghes, &ghes_sea, list) {
804 if (!ghes_proc(ghes))
805 ret = 0;
806 }
807 rcu_read_unlock();
808 return ret;
809 }
810
ghes_sea_add(struct ghes * ghes)811 static void ghes_sea_add(struct ghes *ghes)
812 {
813 mutex_lock(&ghes_list_mutex);
814 list_add_rcu(&ghes->list, &ghes_sea);
815 mutex_unlock(&ghes_list_mutex);
816 }
817
ghes_sea_remove(struct ghes * ghes)818 static void ghes_sea_remove(struct ghes *ghes)
819 {
820 mutex_lock(&ghes_list_mutex);
821 list_del_rcu(&ghes->list);
822 mutex_unlock(&ghes_list_mutex);
823 synchronize_rcu();
824 }
825 #else /* CONFIG_ACPI_APEI_SEA */
ghes_sea_add(struct ghes * ghes)826 static inline void ghes_sea_add(struct ghes *ghes) { }
ghes_sea_remove(struct ghes * ghes)827 static inline void ghes_sea_remove(struct ghes *ghes) { }
828 #endif /* CONFIG_ACPI_APEI_SEA */
829
830 #ifdef CONFIG_HAVE_ACPI_APEI_NMI
831 /*
832 * printk is not safe in NMI context. So in NMI handler, we allocate
833 * required memory from lock-less memory allocator
834 * (ghes_estatus_pool), save estatus into it, put them into lock-less
835 * list (ghes_estatus_llist), then delay printk into IRQ context via
836 * irq_work (ghes_proc_irq_work). ghes_estatus_size_request record
837 * required pool size by all NMI error source.
838 */
839 static struct llist_head ghes_estatus_llist;
840 static struct irq_work ghes_proc_irq_work;
841
842 /*
843 * NMI may be triggered on any CPU, so ghes_in_nmi is used for
844 * having only one concurrent reader.
845 */
846 static atomic_t ghes_in_nmi = ATOMIC_INIT(0);
847
848 static LIST_HEAD(ghes_nmi);
849
ghes_proc_in_irq(struct irq_work * irq_work)850 static void ghes_proc_in_irq(struct irq_work *irq_work)
851 {
852 struct llist_node *llnode, *next;
853 struct ghes_estatus_node *estatus_node;
854 struct acpi_hest_generic *generic;
855 struct acpi_hest_generic_status *estatus;
856 u32 len, node_len;
857
858 llnode = llist_del_all(&ghes_estatus_llist);
859 /*
860 * Because the time order of estatus in list is reversed,
861 * revert it back to proper order.
862 */
863 llnode = llist_reverse_order(llnode);
864 while (llnode) {
865 next = llnode->next;
866 estatus_node = llist_entry(llnode, struct ghes_estatus_node,
867 llnode);
868 estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
869 len = cper_estatus_len(estatus);
870 node_len = GHES_ESTATUS_NODE_LEN(len);
871 ghes_do_proc(estatus_node->ghes, estatus);
872 if (!ghes_estatus_cached(estatus)) {
873 generic = estatus_node->generic;
874 if (ghes_print_estatus(NULL, generic, estatus))
875 ghes_estatus_cache_add(generic, estatus);
876 }
877 gen_pool_free(ghes_estatus_pool, (unsigned long)estatus_node,
878 node_len);
879 llnode = next;
880 }
881 }
882
ghes_print_queued_estatus(void)883 static void ghes_print_queued_estatus(void)
884 {
885 struct llist_node *llnode;
886 struct ghes_estatus_node *estatus_node;
887 struct acpi_hest_generic *generic;
888 struct acpi_hest_generic_status *estatus;
889
890 llnode = llist_del_all(&ghes_estatus_llist);
891 /*
892 * Because the time order of estatus in list is reversed,
893 * revert it back to proper order.
894 */
895 llnode = llist_reverse_order(llnode);
896 while (llnode) {
897 estatus_node = llist_entry(llnode, struct ghes_estatus_node,
898 llnode);
899 estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
900 generic = estatus_node->generic;
901 ghes_print_estatus(NULL, generic, estatus);
902 llnode = llnode->next;
903 }
904 }
905
906 /* Save estatus for further processing in IRQ context */
__process_error(struct ghes * ghes)907 static void __process_error(struct ghes *ghes)
908 {
909 #ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
910 u32 len, node_len;
911 struct ghes_estatus_node *estatus_node;
912 struct acpi_hest_generic_status *estatus;
913
914 if (ghes_estatus_cached(ghes->estatus))
915 return;
916
917 len = cper_estatus_len(ghes->estatus);
918 node_len = GHES_ESTATUS_NODE_LEN(len);
919
920 estatus_node = (void *)gen_pool_alloc(ghes_estatus_pool, node_len);
921 if (!estatus_node)
922 return;
923
924 estatus_node->ghes = ghes;
925 estatus_node->generic = ghes->generic;
926 estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
927 memcpy(estatus, ghes->estatus, len);
928 llist_add(&estatus_node->llnode, &ghes_estatus_llist);
929 #endif
930 }
931
ghes_notify_nmi(unsigned int cmd,struct pt_regs * regs)932 static int ghes_notify_nmi(unsigned int cmd, struct pt_regs *regs)
933 {
934 struct ghes *ghes;
935 int sev, ret = NMI_DONE;
936
937 if (!atomic_add_unless(&ghes_in_nmi, 1, 1))
938 return ret;
939
940 list_for_each_entry_rcu(ghes, &ghes_nmi, list) {
941 if (ghes_read_estatus(ghes, 1)) {
942 ghes_clear_estatus(ghes);
943 continue;
944 } else {
945 ret = NMI_HANDLED;
946 }
947
948 sev = ghes_severity(ghes->estatus->error_severity);
949 if (sev >= GHES_SEV_PANIC) {
950 oops_begin();
951 ghes_print_queued_estatus();
952 __ghes_panic(ghes);
953 }
954
955 if (!(ghes->flags & GHES_TO_CLEAR))
956 continue;
957
958 __process_error(ghes);
959 ghes_clear_estatus(ghes);
960 }
961
962 #ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
963 if (ret == NMI_HANDLED)
964 irq_work_queue(&ghes_proc_irq_work);
965 #endif
966 atomic_dec(&ghes_in_nmi);
967 return ret;
968 }
969
ghes_esource_prealloc_size(const struct acpi_hest_generic * generic)970 static unsigned long ghes_esource_prealloc_size(
971 const struct acpi_hest_generic *generic)
972 {
973 unsigned long block_length, prealloc_records, prealloc_size;
974
975 block_length = min_t(unsigned long, generic->error_block_length,
976 GHES_ESTATUS_MAX_SIZE);
977 prealloc_records = max_t(unsigned long,
978 generic->records_to_preallocate, 1);
979 prealloc_size = min_t(unsigned long, block_length * prealloc_records,
980 GHES_ESOURCE_PREALLOC_MAX_SIZE);
981
982 return prealloc_size;
983 }
984
ghes_estatus_pool_shrink(unsigned long len)985 static void ghes_estatus_pool_shrink(unsigned long len)
986 {
987 ghes_estatus_pool_size_request -= PAGE_ALIGN(len);
988 }
989
ghes_nmi_add(struct ghes * ghes)990 static void ghes_nmi_add(struct ghes *ghes)
991 {
992 unsigned long len;
993
994 len = ghes_esource_prealloc_size(ghes->generic);
995 ghes_estatus_pool_expand(len);
996 mutex_lock(&ghes_list_mutex);
997 if (list_empty(&ghes_nmi))
998 register_nmi_handler(NMI_LOCAL, ghes_notify_nmi, 0, "ghes");
999 list_add_rcu(&ghes->list, &ghes_nmi);
1000 mutex_unlock(&ghes_list_mutex);
1001 }
1002
ghes_nmi_remove(struct ghes * ghes)1003 static void ghes_nmi_remove(struct ghes *ghes)
1004 {
1005 unsigned long len;
1006
1007 mutex_lock(&ghes_list_mutex);
1008 list_del_rcu(&ghes->list);
1009 if (list_empty(&ghes_nmi))
1010 unregister_nmi_handler(NMI_LOCAL, "ghes");
1011 mutex_unlock(&ghes_list_mutex);
1012 /*
1013 * To synchronize with NMI handler, ghes can only be
1014 * freed after NMI handler finishes.
1015 */
1016 synchronize_rcu();
1017 len = ghes_esource_prealloc_size(ghes->generic);
1018 ghes_estatus_pool_shrink(len);
1019 }
1020
ghes_nmi_init_cxt(void)1021 static void ghes_nmi_init_cxt(void)
1022 {
1023 init_irq_work(&ghes_proc_irq_work, ghes_proc_in_irq);
1024 }
1025 #else /* CONFIG_HAVE_ACPI_APEI_NMI */
ghes_nmi_add(struct ghes * ghes)1026 static inline void ghes_nmi_add(struct ghes *ghes) { }
ghes_nmi_remove(struct ghes * ghes)1027 static inline void ghes_nmi_remove(struct ghes *ghes) { }
ghes_nmi_init_cxt(void)1028 static inline void ghes_nmi_init_cxt(void) { }
1029 #endif /* CONFIG_HAVE_ACPI_APEI_NMI */
1030
ghes_probe(struct platform_device * ghes_dev)1031 static int ghes_probe(struct platform_device *ghes_dev)
1032 {
1033 struct acpi_hest_generic *generic;
1034 struct ghes *ghes = NULL;
1035
1036 int rc = -EINVAL;
1037
1038 generic = *(struct acpi_hest_generic **)ghes_dev->dev.platform_data;
1039 if (!generic->enabled)
1040 return -ENODEV;
1041
1042 switch (generic->notify.type) {
1043 case ACPI_HEST_NOTIFY_POLLED:
1044 case ACPI_HEST_NOTIFY_EXTERNAL:
1045 case ACPI_HEST_NOTIFY_SCI:
1046 case ACPI_HEST_NOTIFY_GSIV:
1047 case ACPI_HEST_NOTIFY_GPIO:
1048 break;
1049
1050 case ACPI_HEST_NOTIFY_SEA:
1051 if (!IS_ENABLED(CONFIG_ACPI_APEI_SEA)) {
1052 pr_warn(GHES_PFX "Generic hardware error source: %d notified via SEA is not supported\n",
1053 generic->header.source_id);
1054 rc = -ENOTSUPP;
1055 goto err;
1056 }
1057 break;
1058 case ACPI_HEST_NOTIFY_NMI:
1059 if (!IS_ENABLED(CONFIG_HAVE_ACPI_APEI_NMI)) {
1060 pr_warn(GHES_PFX "Generic hardware error source: %d notified via NMI interrupt is not supported!\n",
1061 generic->header.source_id);
1062 goto err;
1063 }
1064 break;
1065 case ACPI_HEST_NOTIFY_LOCAL:
1066 pr_warning(GHES_PFX "Generic hardware error source: %d notified via local interrupt is not supported!\n",
1067 generic->header.source_id);
1068 goto err;
1069 default:
1070 pr_warning(FW_WARN GHES_PFX "Unknown notification type: %u for generic hardware error source: %d\n",
1071 generic->notify.type, generic->header.source_id);
1072 goto err;
1073 }
1074
1075 rc = -EIO;
1076 if (generic->error_block_length <
1077 sizeof(struct acpi_hest_generic_status)) {
1078 pr_warning(FW_BUG GHES_PFX "Invalid error block length: %u for generic hardware error source: %d\n",
1079 generic->error_block_length,
1080 generic->header.source_id);
1081 goto err;
1082 }
1083 ghes = ghes_new(generic);
1084 if (IS_ERR(ghes)) {
1085 rc = PTR_ERR(ghes);
1086 ghes = NULL;
1087 goto err;
1088 }
1089
1090 switch (generic->notify.type) {
1091 case ACPI_HEST_NOTIFY_POLLED:
1092 timer_setup(&ghes->timer, ghes_poll_func, TIMER_DEFERRABLE);
1093 ghes_add_timer(ghes);
1094 break;
1095 case ACPI_HEST_NOTIFY_EXTERNAL:
1096 /* External interrupt vector is GSI */
1097 rc = acpi_gsi_to_irq(generic->notify.vector, &ghes->irq);
1098 if (rc) {
1099 pr_err(GHES_PFX "Failed to map GSI to IRQ for generic hardware error source: %d\n",
1100 generic->header.source_id);
1101 goto err;
1102 }
1103 rc = request_irq(ghes->irq, ghes_irq_func, IRQF_SHARED,
1104 "GHES IRQ", ghes);
1105 if (rc) {
1106 pr_err(GHES_PFX "Failed to register IRQ for generic hardware error source: %d\n",
1107 generic->header.source_id);
1108 goto err;
1109 }
1110 break;
1111
1112 case ACPI_HEST_NOTIFY_SCI:
1113 case ACPI_HEST_NOTIFY_GSIV:
1114 case ACPI_HEST_NOTIFY_GPIO:
1115 mutex_lock(&ghes_list_mutex);
1116 if (list_empty(&ghes_hed))
1117 register_acpi_hed_notifier(&ghes_notifier_hed);
1118 list_add_rcu(&ghes->list, &ghes_hed);
1119 mutex_unlock(&ghes_list_mutex);
1120 break;
1121
1122 case ACPI_HEST_NOTIFY_SEA:
1123 ghes_sea_add(ghes);
1124 break;
1125 case ACPI_HEST_NOTIFY_NMI:
1126 ghes_nmi_add(ghes);
1127 break;
1128 default:
1129 BUG();
1130 }
1131
1132 platform_set_drvdata(ghes_dev, ghes);
1133
1134 ghes_edac_register(ghes, &ghes_dev->dev);
1135
1136 /* Handle any pending errors right away */
1137 ghes_proc(ghes);
1138
1139 return 0;
1140
1141 err:
1142 if (ghes) {
1143 ghes_fini(ghes);
1144 kfree(ghes);
1145 }
1146 return rc;
1147 }
1148
ghes_remove(struct platform_device * ghes_dev)1149 static int ghes_remove(struct platform_device *ghes_dev)
1150 {
1151 struct ghes *ghes;
1152 struct acpi_hest_generic *generic;
1153
1154 ghes = platform_get_drvdata(ghes_dev);
1155 generic = ghes->generic;
1156
1157 ghes->flags |= GHES_EXITING;
1158 switch (generic->notify.type) {
1159 case ACPI_HEST_NOTIFY_POLLED:
1160 del_timer_sync(&ghes->timer);
1161 break;
1162 case ACPI_HEST_NOTIFY_EXTERNAL:
1163 free_irq(ghes->irq, ghes);
1164 break;
1165
1166 case ACPI_HEST_NOTIFY_SCI:
1167 case ACPI_HEST_NOTIFY_GSIV:
1168 case ACPI_HEST_NOTIFY_GPIO:
1169 mutex_lock(&ghes_list_mutex);
1170 list_del_rcu(&ghes->list);
1171 if (list_empty(&ghes_hed))
1172 unregister_acpi_hed_notifier(&ghes_notifier_hed);
1173 mutex_unlock(&ghes_list_mutex);
1174 synchronize_rcu();
1175 break;
1176
1177 case ACPI_HEST_NOTIFY_SEA:
1178 ghes_sea_remove(ghes);
1179 break;
1180 case ACPI_HEST_NOTIFY_NMI:
1181 ghes_nmi_remove(ghes);
1182 break;
1183 default:
1184 BUG();
1185 break;
1186 }
1187
1188 ghes_fini(ghes);
1189
1190 ghes_edac_unregister(ghes);
1191
1192 kfree(ghes);
1193
1194 platform_set_drvdata(ghes_dev, NULL);
1195
1196 return 0;
1197 }
1198
1199 static struct platform_driver ghes_platform_driver = {
1200 .driver = {
1201 .name = "GHES",
1202 },
1203 .probe = ghes_probe,
1204 .remove = ghes_remove,
1205 };
1206
ghes_init(void)1207 static int __init ghes_init(void)
1208 {
1209 int rc;
1210
1211 if (acpi_disabled)
1212 return -ENODEV;
1213
1214 switch (hest_disable) {
1215 case HEST_NOT_FOUND:
1216 return -ENODEV;
1217 case HEST_DISABLED:
1218 pr_info(GHES_PFX "HEST is not enabled!\n");
1219 return -EINVAL;
1220 default:
1221 break;
1222 }
1223
1224 if (ghes_disable) {
1225 pr_info(GHES_PFX "GHES is not enabled!\n");
1226 return -EINVAL;
1227 }
1228
1229 ghes_nmi_init_cxt();
1230
1231 rc = ghes_estatus_pool_init();
1232 if (rc)
1233 goto err;
1234
1235 rc = ghes_estatus_pool_expand(GHES_ESTATUS_CACHE_AVG_SIZE *
1236 GHES_ESTATUS_CACHE_ALLOCED_MAX);
1237 if (rc)
1238 goto err_pool_exit;
1239
1240 rc = platform_driver_register(&ghes_platform_driver);
1241 if (rc)
1242 goto err_pool_exit;
1243
1244 rc = apei_osc_setup();
1245 if (rc == 0 && osc_sb_apei_support_acked)
1246 pr_info(GHES_PFX "APEI firmware first mode is enabled by APEI bit and WHEA _OSC.\n");
1247 else if (rc == 0 && !osc_sb_apei_support_acked)
1248 pr_info(GHES_PFX "APEI firmware first mode is enabled by WHEA _OSC.\n");
1249 else if (rc && osc_sb_apei_support_acked)
1250 pr_info(GHES_PFX "APEI firmware first mode is enabled by APEI bit.\n");
1251 else
1252 pr_info(GHES_PFX "Failed to enable APEI firmware first mode.\n");
1253
1254 return 0;
1255 err_pool_exit:
1256 ghes_estatus_pool_exit();
1257 err:
1258 return rc;
1259 }
1260 device_initcall(ghes_init);
1261