2 * APEI Generic Hardware Error Source support
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.
12 * For more information about Generic Hardware Error Source, please
13 * refer to ACPI Specification version 4.0, section 17.3.2.6
15 * Copyright 2010,2011 Intel Corp.
16 * Author: Huang Ying <ying.huang@intel.com>
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;
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.
28 #include <linux/kernel.h>
29 #include <linux/moduleparam.h>
30 #include <linux/init.h>
31 #include <linux/acpi.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>
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>
58 #include "apei-internal.h"
60 #define GHES_PFX "GHES: "
62 #define GHES_ESTATUS_MAX_SIZE 65536
63 #define GHES_ESOURCE_PREALLOC_MAX_SIZE 65536
65 #define GHES_ESTATUS_POOL_MIN_ALLOC_ORDER 3
67 /* This is just an estimation for memory pool allocation */
68 #define GHES_ESTATUS_CACHE_AVG_SIZE 512
70 #define GHES_ESTATUS_CACHES_SIZE 4
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)
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))
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))
88 static inline bool is_hest_type_generic_v2(struct ghes
*ghes
)
90 return ghes
->generic
->header
.type
== ACPI_HEST_TYPE_GENERIC_ERROR_V2
;
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.
99 module_param_named(disable
, ghes_disable
, bool, 0);
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.
106 * RCU is used for these lists, so ghes_list_mutex is only used for
107 * list changing, not for traversing.
109 static LIST_HEAD(ghes_hed
);
110 static DEFINE_MUTEX(ghes_list_mutex
);
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.
118 * These 2 spinlocks are used to prevent the fixmap entries from being used
121 static DEFINE_RAW_SPINLOCK(ghes_ioremap_lock_nmi
);
122 static DEFINE_SPINLOCK(ghes_ioremap_lock_irq
);
124 static struct gen_pool
*ghes_estatus_pool
;
125 static unsigned long ghes_estatus_pool_size_request
;
127 static struct ghes_estatus_cache
*ghes_estatus_caches
[GHES_ESTATUS_CACHES_SIZE
];
128 static atomic_t ghes_estatus_cache_alloced
;
130 static int ghes_panic_timeout __read_mostly
= 30;
132 static void __iomem
*ghes_ioremap_pfn_nmi(u64 pfn
)
137 paddr
= pfn
<< PAGE_SHIFT
;
138 prot
= arch_apei_get_mem_attribute(paddr
);
139 __set_fixmap(FIX_APEI_GHES_NMI
, paddr
, prot
);
141 return (void __iomem
*) fix_to_virt(FIX_APEI_GHES_NMI
);
144 static void __iomem
*ghes_ioremap_pfn_irq(u64 pfn
)
149 paddr
= pfn
<< PAGE_SHIFT
;
150 prot
= arch_apei_get_mem_attribute(paddr
);
151 __set_fixmap(FIX_APEI_GHES_IRQ
, paddr
, prot
);
153 return (void __iomem
*) fix_to_virt(FIX_APEI_GHES_IRQ
);
156 static void ghes_iounmap_nmi(void)
158 clear_fixmap(FIX_APEI_GHES_NMI
);
161 static void ghes_iounmap_irq(void)
163 clear_fixmap(FIX_APEI_GHES_IRQ
);
166 static int ghes_estatus_pool_init(void)
168 ghes_estatus_pool
= gen_pool_create(GHES_ESTATUS_POOL_MIN_ALLOC_ORDER
, -1);
169 if (!ghes_estatus_pool
)
174 static void ghes_estatus_pool_free_chunk_page(struct gen_pool
*pool
,
175 struct gen_pool_chunk
*chunk
,
178 free_page(chunk
->start_addr
);
181 static void ghes_estatus_pool_exit(void)
183 gen_pool_for_each_chunk(ghes_estatus_pool
,
184 ghes_estatus_pool_free_chunk_page
, NULL
);
185 gen_pool_destroy(ghes_estatus_pool
);
188 static int ghes_estatus_pool_expand(unsigned long len
)
190 unsigned long i
, pages
, size
, addr
;
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
)
197 pages
= (ghes_estatus_pool_size_request
- size
) / PAGE_SIZE
;
198 for (i
= 0; i
< pages
; i
++) {
199 addr
= __get_free_page(GFP_KERNEL
);
202 ret
= gen_pool_add(ghes_estatus_pool
, addr
, PAGE_SIZE
, -1);
210 static int map_gen_v2(struct ghes
*ghes
)
212 return apei_map_generic_address(&ghes
->generic_v2
->read_ack_register
);
215 static void unmap_gen_v2(struct ghes
*ghes
)
217 apei_unmap_generic_address(&ghes
->generic_v2
->read_ack_register
);
220 static struct ghes
*ghes_new(struct acpi_hest_generic
*generic
)
223 unsigned int error_block_length
;
226 ghes
= kzalloc(sizeof(*ghes
), GFP_KERNEL
);
228 return ERR_PTR(-ENOMEM
);
230 ghes
->generic
= generic
;
231 if (is_hest_type_generic_v2(ghes
)) {
232 rc
= map_gen_v2(ghes
);
237 rc
= apei_map_generic_address(&generic
->error_status_address
);
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
;
248 ghes
->estatus
= kmalloc(error_block_length
, GFP_KERNEL
);
249 if (!ghes
->estatus
) {
251 goto err_unmap_status_addr
;
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
))
266 static void ghes_fini(struct ghes
*ghes
)
268 kfree(ghes
->estatus
);
269 apei_unmap_generic_address(&ghes
->generic
->error_status_address
);
270 if (is_hest_type_generic_v2(ghes
))
274 static inline int ghes_severity(int severity
)
277 case CPER_SEV_INFORMATIONAL
:
279 case CPER_SEV_CORRECTED
:
280 return GHES_SEV_CORRECTED
;
281 case CPER_SEV_RECOVERABLE
:
282 return GHES_SEV_RECOVERABLE
;
284 return GHES_SEV_PANIC
;
286 /* Unknown, go panic */
287 return GHES_SEV_PANIC
;
291 static void ghes_copy_tofrom_phys(void *buffer
, u64 paddr
, u32 len
,
295 unsigned long flags
= 0;
296 int in_nmi
= in_nmi();
301 offset
= paddr
- (paddr
& PAGE_MASK
);
303 raw_spin_lock(&ghes_ioremap_lock_nmi
);
304 vaddr
= ghes_ioremap_pfn_nmi(paddr
>> PAGE_SHIFT
);
306 spin_lock_irqsave(&ghes_ioremap_lock_irq
, flags
);
307 vaddr
= ghes_ioremap_pfn_irq(paddr
>> PAGE_SHIFT
);
309 trunk
= PAGE_SIZE
- offset
;
310 trunk
= min(trunk
, len
);
312 memcpy_fromio(buffer
, vaddr
+ offset
, trunk
);
314 memcpy_toio(vaddr
+ offset
, buffer
, trunk
);
320 raw_spin_unlock(&ghes_ioremap_lock_nmi
);
323 spin_unlock_irqrestore(&ghes_ioremap_lock_irq
, flags
);
328 static int ghes_read_estatus(struct ghes
*ghes
, int silent
)
330 struct acpi_hest_generic
*g
= ghes
->generic
;
335 rc
= apei_read(&buf_paddr
, &g
->error_status_address
);
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
);
346 ghes_copy_tofrom_phys(ghes
->estatus
, buf_paddr
,
347 sizeof(*ghes
->estatus
), 1);
348 if (!ghes
->estatus
->block_status
)
351 ghes
->buffer_paddr
= buf_paddr
;
352 ghes
->flags
|= GHES_TO_CLEAR
;
355 len
= cper_estatus_len(ghes
->estatus
);
356 if (len
< sizeof(*ghes
->estatus
))
358 if (len
> ghes
->generic
->error_block_length
)
360 if (cper_estatus_check_header(ghes
->estatus
))
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
))
370 if (rc
&& !silent
&& printk_ratelimit())
371 pr_warning(FW_WARN GHES_PFX
372 "Failed to read error status block!\n");
376 static void ghes_clear_estatus(struct ghes
*ghes
)
378 ghes
->estatus
->block_status
= 0;
379 if (!(ghes
->flags
& GHES_TO_CLEAR
))
381 ghes_copy_tofrom_phys(ghes
->estatus
, ghes
->buffer_paddr
,
382 sizeof(ghes
->estatus
->block_status
), 0);
383 ghes
->flags
&= ~GHES_TO_CLEAR
;
386 static void ghes_handle_memory_failure(struct acpi_hest_generic_data
*gdata
, int sev
)
388 #ifdef CONFIG_ACPI_APEI_MEMORY_FAILURE
391 int sec_sev
= ghes_severity(gdata
->error_severity
);
392 struct cper_sec_mem_err
*mem_err
= acpi_hest_get_payload(gdata
);
394 if (!(mem_err
->validation_bits
& CPER_MEM_VALID_PA
))
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
);
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
)
413 memory_failure_queue(pfn
, flags
);
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:
422 * GHES_SEV_CORRECTABLE -> AER_CORRECTABLE
423 * These need to be reported by the AER driver but no recovery is
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
431 static void ghes_handle_aer(struct acpi_hest_generic_data
*gdata
)
433 #ifdef CONFIG_ACPI_APEI_PCIEAER
434 struct cper_sec_pcie
*pcie_err
= acpi_hest_get_payload(gdata
);
436 if (pcie_err
->validation_bits
& CPER_PCIE_VALID_DEVICE_ID
&&
437 pcie_err
->validation_bits
& CPER_PCIE_VALID_AER_INFO
) {
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
);
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.
450 if (gdata
->flags
& CPER_SEC_RESET
)
451 aer_severity
= AER_FATAL
;
453 aer_recover_queue(pcie_err
->device_id
.segment
,
454 pcie_err
->device_id
.bus
,
456 (struct aer_capability_regs
*)
462 static void ghes_do_proc(struct ghes
*ghes
,
463 const struct acpi_hest_generic_status
*estatus
)
466 struct acpi_hest_generic_data
*gdata
;
468 guid_t
*fru_id
= &NULL_UUID_LE
;
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
;
478 if (gdata
->validation_bits
& CPER_SEC_VALID_FRU_TEXT
)
479 fru_text
= gdata
->fru_text
;
481 if (guid_equal(sec_type
, &CPER_SEC_PLATFORM_MEM
)) {
482 struct cper_sec_mem_err
*mem_err
= acpi_hest_get_payload(gdata
);
484 ghes_edac_report_mem_error(ghes
, sev
, mem_err
);
486 arch_apei_report_mem_error(sev
, mem_err
);
487 ghes_handle_memory_failure(gdata
, sev
);
489 else if (guid_equal(sec_type
, &CPER_SEC_PCIE
)) {
490 ghes_handle_aer(gdata
);
492 else if (guid_equal(sec_type
, &CPER_SEC_PROC_ARM
)) {
493 struct cper_sec_proc_arm
*err
= acpi_hest_get_payload(gdata
);
495 log_arm_hw_error(err
);
497 void *err
= acpi_hest_get_payload(gdata
);
499 log_non_standard_event(sec_type
, fru_id
, fru_text
,
501 gdata
->error_data_length
);
506 static void __ghes_print_estatus(const char *pfx
,
507 const struct acpi_hest_generic
*generic
,
508 const struct acpi_hest_generic_status
*estatus
)
510 static atomic_t seqno
;
511 unsigned int curr_seqno
;
515 if (ghes_severity(estatus
->error_severity
) <=
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
);
528 static int ghes_print_estatus(const char *pfx
,
529 const struct acpi_hest_generic
*generic
,
530 const struct acpi_hest_generic_status
*estatus
)
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
;
537 if (ghes_severity(estatus
->error_severity
) <= GHES_SEV_CORRECTED
)
538 ratelimit
= &ratelimit_corrected
;
540 ratelimit
= &ratelimit_uncorrected
;
541 if (__ratelimit(ratelimit
)) {
542 __ghes_print_estatus(pfx
, generic
, estatus
);
549 * GHES error status reporting throttle, to report more kinds of
550 * errors, instead of just most frequently occurred errors.
552 static int ghes_estatus_cached(struct acpi_hest_generic_status
*estatus
)
556 unsigned long long now
;
557 struct ghes_estatus_cache
*cache
;
558 struct acpi_hest_generic_status
*cache_estatus
;
560 len
= cper_estatus_len(estatus
);
562 for (i
= 0; i
< GHES_ESTATUS_CACHES_SIZE
; i
++) {
563 cache
= rcu_dereference(ghes_estatus_caches
[i
]);
566 if (len
!= cache
->estatus_len
)
568 cache_estatus
= GHES_ESTATUS_FROM_CACHE(cache
);
569 if (memcmp(estatus
, cache_estatus
, len
))
571 atomic_inc(&cache
->count
);
573 if (now
- cache
->time_in
< GHES_ESTATUS_IN_CACHE_MAX_NSEC
)
581 static struct ghes_estatus_cache
*ghes_estatus_cache_alloc(
582 struct acpi_hest_generic
*generic
,
583 struct acpi_hest_generic_status
*estatus
)
587 struct ghes_estatus_cache
*cache
;
588 struct acpi_hest_generic_status
*cache_estatus
;
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
);
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
);
599 atomic_dec(&ghes_estatus_cache_alloced
);
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();
611 static void ghes_estatus_cache_free(struct ghes_estatus_cache
*cache
)
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
);
621 static void ghes_estatus_cache_rcu_free(struct rcu_head
*head
)
623 struct ghes_estatus_cache
*cache
;
625 cache
= container_of(head
, struct ghes_estatus_cache
, rcu
);
626 ghes_estatus_cache_free(cache
);
629 static void ghes_estatus_cache_add(
630 struct acpi_hest_generic
*generic
,
631 struct acpi_hest_generic_status
*estatus
)
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
;
637 new_cache
= ghes_estatus_cache_alloc(generic
, estatus
);
638 if (new_cache
== NULL
)
642 for (i
= 0; i
< GHES_ESTATUS_CACHES_SIZE
; i
++) {
643 cache
= rcu_dereference(ghes_estatus_caches
[i
]);
649 duration
= now
- cache
->time_in
;
650 if (duration
>= GHES_ESTATUS_IN_CACHE_MAX_NSEC
) {
655 count
= atomic_read(&cache
->count
);
657 do_div(period
, (count
+ 1));
658 if (period
> max_period
) {
664 /* new_cache must be put into array after its contents are written */
666 if (slot
!= -1 && cmpxchg(ghes_estatus_caches
+ slot
,
667 slot_cache
, new_cache
) == slot_cache
) {
669 call_rcu(&slot_cache
->rcu
, ghes_estatus_cache_rcu_free
);
671 ghes_estatus_cache_free(new_cache
);
675 static int ghes_ack_error(struct acpi_hest_generic_v2
*gv2
)
680 rc
= apei_read(&val
, &gv2
->read_ack_register
);
684 val
&= gv2
->read_ack_preserve
<< gv2
->read_ack_register
.bit_offset
;
685 val
|= gv2
->read_ack_write
<< gv2
->read_ack_register
.bit_offset
;
687 return apei_write(val
, &gv2
->read_ack_register
);
690 static void __ghes_panic(struct ghes
*ghes
)
692 __ghes_print_estatus(KERN_EMERG
, ghes
->generic
, ghes
->estatus
);
694 /* reboot to log the error! */
696 panic_timeout
= ghes_panic_timeout
;
697 panic("Fatal hardware error!");
700 static int ghes_proc(struct ghes
*ghes
)
704 rc
= ghes_read_estatus(ghes
, 0);
708 if (ghes_severity(ghes
->estatus
->error_severity
) >= GHES_SEV_PANIC
) {
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
);
716 ghes_do_proc(ghes
, ghes
->estatus
);
719 ghes_clear_estatus(ghes
);
725 * GHESv2 type HEST entries introduce support for error acknowledgment,
726 * so only acknowledge the error if this support is present.
728 if (is_hest_type_generic_v2(ghes
))
729 return ghes_ack_error(ghes
->generic_v2
);
734 static void ghes_add_timer(struct ghes
*ghes
)
736 struct acpi_hest_generic
*g
= ghes
->generic
;
737 unsigned long expire
;
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
);
744 expire
= jiffies
+ msecs_to_jiffies(g
->notify
.poll_interval
);
745 ghes
->timer
.expires
= round_jiffies_relative(expire
);
746 add_timer(&ghes
->timer
);
749 static void ghes_poll_func(struct timer_list
*t
)
751 struct ghes
*ghes
= from_timer(ghes
, t
, timer
);
754 if (!(ghes
->flags
& GHES_EXITING
))
755 ghes_add_timer(ghes
);
758 static irqreturn_t
ghes_irq_func(int irq
, void *data
)
760 struct ghes
*ghes
= data
;
763 rc
= ghes_proc(ghes
);
770 static int ghes_notify_hed(struct notifier_block
*this, unsigned long event
,
774 int ret
= NOTIFY_DONE
;
777 list_for_each_entry_rcu(ghes
, &ghes_hed
, list
) {
778 if (!ghes_proc(ghes
))
786 static struct notifier_block ghes_notifier_hed
= {
787 .notifier_call
= ghes_notify_hed
,
790 #ifdef CONFIG_ACPI_APEI_SEA
791 static LIST_HEAD(ghes_sea
);
794 * Return 0 only if one of the SEA error sources successfully reported an error
795 * record sent from the firmware.
797 int ghes_notify_sea(void)
803 list_for_each_entry_rcu(ghes
, &ghes_sea
, list
) {
804 if (!ghes_proc(ghes
))
811 static void ghes_sea_add(struct ghes
*ghes
)
813 mutex_lock(&ghes_list_mutex
);
814 list_add_rcu(&ghes
->list
, &ghes_sea
);
815 mutex_unlock(&ghes_list_mutex
);
818 static void ghes_sea_remove(struct ghes
*ghes
)
820 mutex_lock(&ghes_list_mutex
);
821 list_del_rcu(&ghes
->list
);
822 mutex_unlock(&ghes_list_mutex
);
825 #else /* CONFIG_ACPI_APEI_SEA */
826 static inline void ghes_sea_add(struct ghes
*ghes
) { }
827 static inline void ghes_sea_remove(struct ghes
*ghes
) { }
828 #endif /* CONFIG_ACPI_APEI_SEA */
830 #ifdef CONFIG_HAVE_ACPI_APEI_NMI
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.
839 static struct llist_head ghes_estatus_llist
;
840 static struct irq_work ghes_proc_irq_work
;
843 * NMI may be triggered on any CPU, so ghes_in_nmi is used for
844 * having only one concurrent reader.
846 static atomic_t ghes_in_nmi
= ATOMIC_INIT(0);
848 static LIST_HEAD(ghes_nmi
);
850 static void ghes_proc_in_irq(struct irq_work
*irq_work
)
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
;
858 llnode
= llist_del_all(&ghes_estatus_llist
);
860 * Because the time order of estatus in list is reversed,
861 * revert it back to proper order.
863 llnode
= llist_reverse_order(llnode
);
866 estatus_node
= llist_entry(llnode
, struct ghes_estatus_node
,
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
);
877 gen_pool_free(ghes_estatus_pool
, (unsigned long)estatus_node
,
883 static void ghes_print_queued_estatus(void)
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
;
890 llnode
= llist_del_all(&ghes_estatus_llist
);
892 * Because the time order of estatus in list is reversed,
893 * revert it back to proper order.
895 llnode
= llist_reverse_order(llnode
);
897 estatus_node
= llist_entry(llnode
, struct ghes_estatus_node
,
899 estatus
= GHES_ESTATUS_FROM_NODE(estatus_node
);
900 generic
= estatus_node
->generic
;
901 ghes_print_estatus(NULL
, generic
, estatus
);
902 llnode
= llnode
->next
;
906 /* Save estatus for further processing in IRQ context */
907 static void __process_error(struct ghes
*ghes
)
909 #ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
911 struct ghes_estatus_node
*estatus_node
;
912 struct acpi_hest_generic_status
*estatus
;
914 if (ghes_estatus_cached(ghes
->estatus
))
917 len
= cper_estatus_len(ghes
->estatus
);
918 node_len
= GHES_ESTATUS_NODE_LEN(len
);
920 estatus_node
= (void *)gen_pool_alloc(ghes_estatus_pool
, node_len
);
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
);
932 static int ghes_notify_nmi(unsigned int cmd
, struct pt_regs
*regs
)
935 int sev
, ret
= NMI_DONE
;
937 if (!atomic_add_unless(&ghes_in_nmi
, 1, 1))
940 list_for_each_entry_rcu(ghes
, &ghes_nmi
, list
) {
941 if (ghes_read_estatus(ghes
, 1)) {
942 ghes_clear_estatus(ghes
);
948 sev
= ghes_severity(ghes
->estatus
->error_severity
);
949 if (sev
>= GHES_SEV_PANIC
) {
951 ghes_print_queued_estatus();
955 if (!(ghes
->flags
& GHES_TO_CLEAR
))
958 __process_error(ghes
);
959 ghes_clear_estatus(ghes
);
962 #ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
963 if (ret
== NMI_HANDLED
)
964 irq_work_queue(&ghes_proc_irq_work
);
966 atomic_dec(&ghes_in_nmi
);
970 static unsigned long ghes_esource_prealloc_size(
971 const struct acpi_hest_generic
*generic
)
973 unsigned long block_length
, prealloc_records
, prealloc_size
;
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
);
982 return prealloc_size
;
985 static void ghes_estatus_pool_shrink(unsigned long len
)
987 ghes_estatus_pool_size_request
-= PAGE_ALIGN(len
);
990 static void ghes_nmi_add(struct ghes
*ghes
)
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
);
1003 static void ghes_nmi_remove(struct ghes
*ghes
)
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
);
1013 * To synchronize with NMI handler, ghes can only be
1014 * freed after NMI handler finishes.
1017 len
= ghes_esource_prealloc_size(ghes
->generic
);
1018 ghes_estatus_pool_shrink(len
);
1021 static void ghes_nmi_init_cxt(void)
1023 init_irq_work(&ghes_proc_irq_work
, ghes_proc_in_irq
);
1025 #else /* CONFIG_HAVE_ACPI_APEI_NMI */
1026 static inline void ghes_nmi_add(struct ghes
*ghes
) { }
1027 static inline void ghes_nmi_remove(struct ghes
*ghes
) { }
1028 static inline void ghes_nmi_init_cxt(void) { }
1029 #endif /* CONFIG_HAVE_ACPI_APEI_NMI */
1031 static int ghes_probe(struct platform_device
*ghes_dev
)
1033 struct acpi_hest_generic
*generic
;
1034 struct ghes
*ghes
= NULL
;
1038 generic
= *(struct acpi_hest_generic
**)ghes_dev
->dev
.platform_data
;
1039 if (!generic
->enabled
)
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
:
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
);
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
);
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
);
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
);
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
);
1083 ghes
= ghes_new(generic
);
1090 rc
= ghes_edac_register(ghes
, &ghes_dev
->dev
);
1094 switch (generic
->notify
.type
) {
1095 case ACPI_HEST_NOTIFY_POLLED
:
1096 timer_setup(&ghes
->timer
, ghes_poll_func
, TIMER_DEFERRABLE
);
1097 ghes_add_timer(ghes
);
1099 case ACPI_HEST_NOTIFY_EXTERNAL
:
1100 /* External interrupt vector is GSI */
1101 rc
= acpi_gsi_to_irq(generic
->notify
.vector
, &ghes
->irq
);
1103 pr_err(GHES_PFX
"Failed to map GSI to IRQ for generic hardware error source: %d\n",
1104 generic
->header
.source_id
);
1105 goto err_edac_unreg
;
1107 rc
= request_irq(ghes
->irq
, ghes_irq_func
, IRQF_SHARED
,
1110 pr_err(GHES_PFX
"Failed to register IRQ for generic hardware error source: %d\n",
1111 generic
->header
.source_id
);
1112 goto err_edac_unreg
;
1116 case ACPI_HEST_NOTIFY_SCI
:
1117 case ACPI_HEST_NOTIFY_GSIV
:
1118 case ACPI_HEST_NOTIFY_GPIO
:
1119 mutex_lock(&ghes_list_mutex
);
1120 if (list_empty(&ghes_hed
))
1121 register_acpi_hed_notifier(&ghes_notifier_hed
);
1122 list_add_rcu(&ghes
->list
, &ghes_hed
);
1123 mutex_unlock(&ghes_list_mutex
);
1126 case ACPI_HEST_NOTIFY_SEA
:
1129 case ACPI_HEST_NOTIFY_NMI
:
1135 platform_set_drvdata(ghes_dev
, ghes
);
1137 /* Handle any pending errors right away */
1142 ghes_edac_unregister(ghes
);
1151 static int ghes_remove(struct platform_device
*ghes_dev
)
1154 struct acpi_hest_generic
*generic
;
1156 ghes
= platform_get_drvdata(ghes_dev
);
1157 generic
= ghes
->generic
;
1159 ghes
->flags
|= GHES_EXITING
;
1160 switch (generic
->notify
.type
) {
1161 case ACPI_HEST_NOTIFY_POLLED
:
1162 del_timer_sync(&ghes
->timer
);
1164 case ACPI_HEST_NOTIFY_EXTERNAL
:
1165 free_irq(ghes
->irq
, ghes
);
1168 case ACPI_HEST_NOTIFY_SCI
:
1169 case ACPI_HEST_NOTIFY_GSIV
:
1170 case ACPI_HEST_NOTIFY_GPIO
:
1171 mutex_lock(&ghes_list_mutex
);
1172 list_del_rcu(&ghes
->list
);
1173 if (list_empty(&ghes_hed
))
1174 unregister_acpi_hed_notifier(&ghes_notifier_hed
);
1175 mutex_unlock(&ghes_list_mutex
);
1179 case ACPI_HEST_NOTIFY_SEA
:
1180 ghes_sea_remove(ghes
);
1182 case ACPI_HEST_NOTIFY_NMI
:
1183 ghes_nmi_remove(ghes
);
1192 ghes_edac_unregister(ghes
);
1196 platform_set_drvdata(ghes_dev
, NULL
);
1201 static struct platform_driver ghes_platform_driver
= {
1205 .probe
= ghes_probe
,
1206 .remove
= ghes_remove
,
1209 static int __init
ghes_init(void)
1216 switch (hest_disable
) {
1217 case HEST_NOT_FOUND
:
1220 pr_info(GHES_PFX
"HEST is not enabled!\n");
1227 pr_info(GHES_PFX
"GHES is not enabled!\n");
1231 ghes_nmi_init_cxt();
1233 rc
= ghes_estatus_pool_init();
1237 rc
= ghes_estatus_pool_expand(GHES_ESTATUS_CACHE_AVG_SIZE
*
1238 GHES_ESTATUS_CACHE_ALLOCED_MAX
);
1242 rc
= platform_driver_register(&ghes_platform_driver
);
1246 rc
= apei_osc_setup();
1247 if (rc
== 0 && osc_sb_apei_support_acked
)
1248 pr_info(GHES_PFX
"APEI firmware first mode is enabled by APEI bit and WHEA _OSC.\n");
1249 else if (rc
== 0 && !osc_sb_apei_support_acked
)
1250 pr_info(GHES_PFX
"APEI firmware first mode is enabled by WHEA _OSC.\n");
1251 else if (rc
&& osc_sb_apei_support_acked
)
1252 pr_info(GHES_PFX
"APEI firmware first mode is enabled by APEI bit.\n");
1254 pr_info(GHES_PFX
"Failed to enable APEI firmware first mode.\n");
1258 ghes_estatus_pool_exit();
1262 device_initcall(ghes_init
);