xref: /openbmc/linux/drivers/acpi/apei/ghes.c (revision 2fa49589)
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 
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 
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 
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 
156 static void ghes_iounmap_nmi(void)
157 {
158 	clear_fixmap(FIX_APEI_GHES_NMI);
159 }
160 
161 static void ghes_iounmap_irq(void)
162 {
163 	clear_fixmap(FIX_APEI_GHES_IRQ);
164 }
165 
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 
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 
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 
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 
210 static int map_gen_v2(struct ghes *ghes)
211 {
212 	return apei_map_generic_address(&ghes->generic_v2->read_ack_register);
213 }
214 
215 static void unmap_gen_v2(struct ghes *ghes)
216 {
217 	apei_unmap_generic_address(&ghes->generic_v2->read_ack_register);
218 }
219 
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 
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 
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 
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 
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 
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 
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  */
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 
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 
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 
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  */
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 
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 
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 
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 
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 
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 
690 static void __ghes_panic(struct ghes *ghes)
691 {
692 	__ghes_print_estatus(KERN_EMERG, ghes->generic, ghes->estatus);
693 
694 	ghes_clear_estatus(ghes);
695 
696 	/* reboot to log the error! */
697 	if (!panic_timeout)
698 		panic_timeout = ghes_panic_timeout;
699 	panic("Fatal hardware error!");
700 }
701 
702 static int ghes_proc(struct ghes *ghes)
703 {
704 	int rc;
705 
706 	rc = ghes_read_estatus(ghes, 0);
707 	if (rc)
708 		goto out;
709 
710 	if (ghes_severity(ghes->estatus->error_severity) >= GHES_SEV_PANIC) {
711 		__ghes_panic(ghes);
712 	}
713 
714 	if (!ghes_estatus_cached(ghes->estatus)) {
715 		if (ghes_print_estatus(NULL, ghes->generic, ghes->estatus))
716 			ghes_estatus_cache_add(ghes->generic, ghes->estatus);
717 	}
718 	ghes_do_proc(ghes, ghes->estatus);
719 
720 out:
721 	ghes_clear_estatus(ghes);
722 
723 	if (rc == -ENOENT)
724 		return rc;
725 
726 	/*
727 	 * GHESv2 type HEST entries introduce support for error acknowledgment,
728 	 * so only acknowledge the error if this support is present.
729 	 */
730 	if (is_hest_type_generic_v2(ghes))
731 		return ghes_ack_error(ghes->generic_v2);
732 
733 	return rc;
734 }
735 
736 static void ghes_add_timer(struct ghes *ghes)
737 {
738 	struct acpi_hest_generic *g = ghes->generic;
739 	unsigned long expire;
740 
741 	if (!g->notify.poll_interval) {
742 		pr_warning(FW_WARN GHES_PFX "Poll interval is 0 for generic hardware error source: %d, disabled.\n",
743 			   g->header.source_id);
744 		return;
745 	}
746 	expire = jiffies + msecs_to_jiffies(g->notify.poll_interval);
747 	ghes->timer.expires = round_jiffies_relative(expire);
748 	add_timer(&ghes->timer);
749 }
750 
751 static void ghes_poll_func(struct timer_list *t)
752 {
753 	struct ghes *ghes = from_timer(ghes, t, timer);
754 
755 	ghes_proc(ghes);
756 	if (!(ghes->flags & GHES_EXITING))
757 		ghes_add_timer(ghes);
758 }
759 
760 static irqreturn_t ghes_irq_func(int irq, void *data)
761 {
762 	struct ghes *ghes = data;
763 	int rc;
764 
765 	rc = ghes_proc(ghes);
766 	if (rc)
767 		return IRQ_NONE;
768 
769 	return IRQ_HANDLED;
770 }
771 
772 static int ghes_notify_hed(struct notifier_block *this, unsigned long event,
773 			   void *data)
774 {
775 	struct ghes *ghes;
776 	int ret = NOTIFY_DONE;
777 
778 	rcu_read_lock();
779 	list_for_each_entry_rcu(ghes, &ghes_hed, list) {
780 		if (!ghes_proc(ghes))
781 			ret = NOTIFY_OK;
782 	}
783 	rcu_read_unlock();
784 
785 	return ret;
786 }
787 
788 static struct notifier_block ghes_notifier_hed = {
789 	.notifier_call = ghes_notify_hed,
790 };
791 
792 #ifdef CONFIG_ACPI_APEI_SEA
793 static LIST_HEAD(ghes_sea);
794 
795 /*
796  * Return 0 only if one of the SEA error sources successfully reported an error
797  * record sent from the firmware.
798  */
799 int ghes_notify_sea(void)
800 {
801 	struct ghes *ghes;
802 	int ret = -ENOENT;
803 
804 	rcu_read_lock();
805 	list_for_each_entry_rcu(ghes, &ghes_sea, list) {
806 		if (!ghes_proc(ghes))
807 			ret = 0;
808 	}
809 	rcu_read_unlock();
810 	return ret;
811 }
812 
813 static void ghes_sea_add(struct ghes *ghes)
814 {
815 	mutex_lock(&ghes_list_mutex);
816 	list_add_rcu(&ghes->list, &ghes_sea);
817 	mutex_unlock(&ghes_list_mutex);
818 }
819 
820 static void ghes_sea_remove(struct ghes *ghes)
821 {
822 	mutex_lock(&ghes_list_mutex);
823 	list_del_rcu(&ghes->list);
824 	mutex_unlock(&ghes_list_mutex);
825 	synchronize_rcu();
826 }
827 #else /* CONFIG_ACPI_APEI_SEA */
828 static inline void ghes_sea_add(struct ghes *ghes) { }
829 static inline void ghes_sea_remove(struct ghes *ghes) { }
830 #endif /* CONFIG_ACPI_APEI_SEA */
831 
832 #ifdef CONFIG_HAVE_ACPI_APEI_NMI
833 /*
834  * printk is not safe in NMI context.  So in NMI handler, we allocate
835  * required memory from lock-less memory allocator
836  * (ghes_estatus_pool), save estatus into it, put them into lock-less
837  * list (ghes_estatus_llist), then delay printk into IRQ context via
838  * irq_work (ghes_proc_irq_work).  ghes_estatus_size_request record
839  * required pool size by all NMI error source.
840  */
841 static struct llist_head ghes_estatus_llist;
842 static struct irq_work ghes_proc_irq_work;
843 
844 /*
845  * NMI may be triggered on any CPU, so ghes_in_nmi is used for
846  * having only one concurrent reader.
847  */
848 static atomic_t ghes_in_nmi = ATOMIC_INIT(0);
849 
850 static LIST_HEAD(ghes_nmi);
851 
852 static void ghes_proc_in_irq(struct irq_work *irq_work)
853 {
854 	struct llist_node *llnode, *next;
855 	struct ghes_estatus_node *estatus_node;
856 	struct acpi_hest_generic *generic;
857 	struct acpi_hest_generic_status *estatus;
858 	u32 len, node_len;
859 
860 	llnode = llist_del_all(&ghes_estatus_llist);
861 	/*
862 	 * Because the time order of estatus in list is reversed,
863 	 * revert it back to proper order.
864 	 */
865 	llnode = llist_reverse_order(llnode);
866 	while (llnode) {
867 		next = llnode->next;
868 		estatus_node = llist_entry(llnode, struct ghes_estatus_node,
869 					   llnode);
870 		estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
871 		len = cper_estatus_len(estatus);
872 		node_len = GHES_ESTATUS_NODE_LEN(len);
873 		ghes_do_proc(estatus_node->ghes, estatus);
874 		if (!ghes_estatus_cached(estatus)) {
875 			generic = estatus_node->generic;
876 			if (ghes_print_estatus(NULL, generic, estatus))
877 				ghes_estatus_cache_add(generic, estatus);
878 		}
879 		gen_pool_free(ghes_estatus_pool, (unsigned long)estatus_node,
880 			      node_len);
881 		llnode = next;
882 	}
883 }
884 
885 static void ghes_print_queued_estatus(void)
886 {
887 	struct llist_node *llnode;
888 	struct ghes_estatus_node *estatus_node;
889 	struct acpi_hest_generic *generic;
890 	struct acpi_hest_generic_status *estatus;
891 
892 	llnode = llist_del_all(&ghes_estatus_llist);
893 	/*
894 	 * Because the time order of estatus in list is reversed,
895 	 * revert it back to proper order.
896 	 */
897 	llnode = llist_reverse_order(llnode);
898 	while (llnode) {
899 		estatus_node = llist_entry(llnode, struct ghes_estatus_node,
900 					   llnode);
901 		estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
902 		generic = estatus_node->generic;
903 		ghes_print_estatus(NULL, generic, estatus);
904 		llnode = llnode->next;
905 	}
906 }
907 
908 /* Save estatus for further processing in IRQ context */
909 static void __process_error(struct ghes *ghes)
910 {
911 #ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
912 	u32 len, node_len;
913 	struct ghes_estatus_node *estatus_node;
914 	struct acpi_hest_generic_status *estatus;
915 
916 	if (ghes_estatus_cached(ghes->estatus))
917 		return;
918 
919 	len = cper_estatus_len(ghes->estatus);
920 	node_len = GHES_ESTATUS_NODE_LEN(len);
921 
922 	estatus_node = (void *)gen_pool_alloc(ghes_estatus_pool, node_len);
923 	if (!estatus_node)
924 		return;
925 
926 	estatus_node->ghes = ghes;
927 	estatus_node->generic = ghes->generic;
928 	estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
929 	memcpy(estatus, ghes->estatus, len);
930 	llist_add(&estatus_node->llnode, &ghes_estatus_llist);
931 #endif
932 }
933 
934 static int ghes_notify_nmi(unsigned int cmd, struct pt_regs *regs)
935 {
936 	struct ghes *ghes;
937 	int sev, ret = NMI_DONE;
938 
939 	if (!atomic_add_unless(&ghes_in_nmi, 1, 1))
940 		return ret;
941 
942 	list_for_each_entry_rcu(ghes, &ghes_nmi, list) {
943 		if (ghes_read_estatus(ghes, 1)) {
944 			ghes_clear_estatus(ghes);
945 			continue;
946 		} else {
947 			ret = NMI_HANDLED;
948 		}
949 
950 		sev = ghes_severity(ghes->estatus->error_severity);
951 		if (sev >= GHES_SEV_PANIC) {
952 			oops_begin();
953 			ghes_print_queued_estatus();
954 			__ghes_panic(ghes);
955 		}
956 
957 		if (!(ghes->flags & GHES_TO_CLEAR))
958 			continue;
959 
960 		__process_error(ghes);
961 		ghes_clear_estatus(ghes);
962 	}
963 
964 #ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
965 	if (ret == NMI_HANDLED)
966 		irq_work_queue(&ghes_proc_irq_work);
967 #endif
968 	atomic_dec(&ghes_in_nmi);
969 	return ret;
970 }
971 
972 static unsigned long ghes_esource_prealloc_size(
973 	const struct acpi_hest_generic *generic)
974 {
975 	unsigned long block_length, prealloc_records, prealloc_size;
976 
977 	block_length = min_t(unsigned long, generic->error_block_length,
978 			     GHES_ESTATUS_MAX_SIZE);
979 	prealloc_records = max_t(unsigned long,
980 				 generic->records_to_preallocate, 1);
981 	prealloc_size = min_t(unsigned long, block_length * prealloc_records,
982 			      GHES_ESOURCE_PREALLOC_MAX_SIZE);
983 
984 	return prealloc_size;
985 }
986 
987 static void ghes_estatus_pool_shrink(unsigned long len)
988 {
989 	ghes_estatus_pool_size_request -= PAGE_ALIGN(len);
990 }
991 
992 static void ghes_nmi_add(struct ghes *ghes)
993 {
994 	unsigned long len;
995 
996 	len = ghes_esource_prealloc_size(ghes->generic);
997 	ghes_estatus_pool_expand(len);
998 	mutex_lock(&ghes_list_mutex);
999 	if (list_empty(&ghes_nmi))
1000 		register_nmi_handler(NMI_LOCAL, ghes_notify_nmi, 0, "ghes");
1001 	list_add_rcu(&ghes->list, &ghes_nmi);
1002 	mutex_unlock(&ghes_list_mutex);
1003 }
1004 
1005 static void ghes_nmi_remove(struct ghes *ghes)
1006 {
1007 	unsigned long len;
1008 
1009 	mutex_lock(&ghes_list_mutex);
1010 	list_del_rcu(&ghes->list);
1011 	if (list_empty(&ghes_nmi))
1012 		unregister_nmi_handler(NMI_LOCAL, "ghes");
1013 	mutex_unlock(&ghes_list_mutex);
1014 	/*
1015 	 * To synchronize with NMI handler, ghes can only be
1016 	 * freed after NMI handler finishes.
1017 	 */
1018 	synchronize_rcu();
1019 	len = ghes_esource_prealloc_size(ghes->generic);
1020 	ghes_estatus_pool_shrink(len);
1021 }
1022 
1023 static void ghes_nmi_init_cxt(void)
1024 {
1025 	init_irq_work(&ghes_proc_irq_work, ghes_proc_in_irq);
1026 }
1027 #else /* CONFIG_HAVE_ACPI_APEI_NMI */
1028 static inline void ghes_nmi_add(struct ghes *ghes) { }
1029 static inline void ghes_nmi_remove(struct ghes *ghes) { }
1030 static inline void ghes_nmi_init_cxt(void) { }
1031 #endif /* CONFIG_HAVE_ACPI_APEI_NMI */
1032 
1033 static int ghes_probe(struct platform_device *ghes_dev)
1034 {
1035 	struct acpi_hest_generic *generic;
1036 	struct ghes *ghes = NULL;
1037 
1038 	int rc = -EINVAL;
1039 
1040 	generic = *(struct acpi_hest_generic **)ghes_dev->dev.platform_data;
1041 	if (!generic->enabled)
1042 		return -ENODEV;
1043 
1044 	switch (generic->notify.type) {
1045 	case ACPI_HEST_NOTIFY_POLLED:
1046 	case ACPI_HEST_NOTIFY_EXTERNAL:
1047 	case ACPI_HEST_NOTIFY_SCI:
1048 	case ACPI_HEST_NOTIFY_GSIV:
1049 	case ACPI_HEST_NOTIFY_GPIO:
1050 		break;
1051 
1052 	case ACPI_HEST_NOTIFY_SEA:
1053 		if (!IS_ENABLED(CONFIG_ACPI_APEI_SEA)) {
1054 			pr_warn(GHES_PFX "Generic hardware error source: %d notified via SEA is not supported\n",
1055 				generic->header.source_id);
1056 			rc = -ENOTSUPP;
1057 			goto err;
1058 		}
1059 		break;
1060 	case ACPI_HEST_NOTIFY_NMI:
1061 		if (!IS_ENABLED(CONFIG_HAVE_ACPI_APEI_NMI)) {
1062 			pr_warn(GHES_PFX "Generic hardware error source: %d notified via NMI interrupt is not supported!\n",
1063 				generic->header.source_id);
1064 			goto err;
1065 		}
1066 		break;
1067 	case ACPI_HEST_NOTIFY_LOCAL:
1068 		pr_warning(GHES_PFX "Generic hardware error source: %d notified via local interrupt is not supported!\n",
1069 			   generic->header.source_id);
1070 		goto err;
1071 	default:
1072 		pr_warning(FW_WARN GHES_PFX "Unknown notification type: %u for generic hardware error source: %d\n",
1073 			   generic->notify.type, generic->header.source_id);
1074 		goto err;
1075 	}
1076 
1077 	rc = -EIO;
1078 	if (generic->error_block_length <
1079 	    sizeof(struct acpi_hest_generic_status)) {
1080 		pr_warning(FW_BUG GHES_PFX "Invalid error block length: %u for generic hardware error source: %d\n",
1081 			   generic->error_block_length,
1082 			   generic->header.source_id);
1083 		goto err;
1084 	}
1085 	ghes = ghes_new(generic);
1086 	if (IS_ERR(ghes)) {
1087 		rc = PTR_ERR(ghes);
1088 		ghes = NULL;
1089 		goto err;
1090 	}
1091 
1092 	switch (generic->notify.type) {
1093 	case ACPI_HEST_NOTIFY_POLLED:
1094 		timer_setup(&ghes->timer, ghes_poll_func, TIMER_DEFERRABLE);
1095 		ghes_add_timer(ghes);
1096 		break;
1097 	case ACPI_HEST_NOTIFY_EXTERNAL:
1098 		/* External interrupt vector is GSI */
1099 		rc = acpi_gsi_to_irq(generic->notify.vector, &ghes->irq);
1100 		if (rc) {
1101 			pr_err(GHES_PFX "Failed to map GSI to IRQ for generic hardware error source: %d\n",
1102 			       generic->header.source_id);
1103 			goto err;
1104 		}
1105 		rc = request_irq(ghes->irq, ghes_irq_func, IRQF_SHARED,
1106 				 "GHES IRQ", ghes);
1107 		if (rc) {
1108 			pr_err(GHES_PFX "Failed to register IRQ for generic hardware error source: %d\n",
1109 			       generic->header.source_id);
1110 			goto err;
1111 		}
1112 		break;
1113 
1114 	case ACPI_HEST_NOTIFY_SCI:
1115 	case ACPI_HEST_NOTIFY_GSIV:
1116 	case ACPI_HEST_NOTIFY_GPIO:
1117 		mutex_lock(&ghes_list_mutex);
1118 		if (list_empty(&ghes_hed))
1119 			register_acpi_hed_notifier(&ghes_notifier_hed);
1120 		list_add_rcu(&ghes->list, &ghes_hed);
1121 		mutex_unlock(&ghes_list_mutex);
1122 		break;
1123 
1124 	case ACPI_HEST_NOTIFY_SEA:
1125 		ghes_sea_add(ghes);
1126 		break;
1127 	case ACPI_HEST_NOTIFY_NMI:
1128 		ghes_nmi_add(ghes);
1129 		break;
1130 	default:
1131 		BUG();
1132 	}
1133 
1134 	platform_set_drvdata(ghes_dev, ghes);
1135 
1136 	ghes_edac_register(ghes, &ghes_dev->dev);
1137 
1138 	/* Handle any pending errors right away */
1139 	ghes_proc(ghes);
1140 
1141 	return 0;
1142 
1143 err:
1144 	if (ghes) {
1145 		ghes_fini(ghes);
1146 		kfree(ghes);
1147 	}
1148 	return rc;
1149 }
1150 
1151 static int ghes_remove(struct platform_device *ghes_dev)
1152 {
1153 	struct ghes *ghes;
1154 	struct acpi_hest_generic *generic;
1155 
1156 	ghes = platform_get_drvdata(ghes_dev);
1157 	generic = ghes->generic;
1158 
1159 	ghes->flags |= GHES_EXITING;
1160 	switch (generic->notify.type) {
1161 	case ACPI_HEST_NOTIFY_POLLED:
1162 		del_timer_sync(&ghes->timer);
1163 		break;
1164 	case ACPI_HEST_NOTIFY_EXTERNAL:
1165 		free_irq(ghes->irq, ghes);
1166 		break;
1167 
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);
1176 		synchronize_rcu();
1177 		break;
1178 
1179 	case ACPI_HEST_NOTIFY_SEA:
1180 		ghes_sea_remove(ghes);
1181 		break;
1182 	case ACPI_HEST_NOTIFY_NMI:
1183 		ghes_nmi_remove(ghes);
1184 		break;
1185 	default:
1186 		BUG();
1187 		break;
1188 	}
1189 
1190 	ghes_fini(ghes);
1191 
1192 	ghes_edac_unregister(ghes);
1193 
1194 	kfree(ghes);
1195 
1196 	platform_set_drvdata(ghes_dev, NULL);
1197 
1198 	return 0;
1199 }
1200 
1201 static struct platform_driver ghes_platform_driver = {
1202 	.driver		= {
1203 		.name	= "GHES",
1204 	},
1205 	.probe		= ghes_probe,
1206 	.remove		= ghes_remove,
1207 };
1208 
1209 static int __init ghes_init(void)
1210 {
1211 	int rc;
1212 
1213 	if (acpi_disabled)
1214 		return -ENODEV;
1215 
1216 	switch (hest_disable) {
1217 	case HEST_NOT_FOUND:
1218 		return -ENODEV;
1219 	case HEST_DISABLED:
1220 		pr_info(GHES_PFX "HEST is not enabled!\n");
1221 		return -EINVAL;
1222 	default:
1223 		break;
1224 	}
1225 
1226 	if (ghes_disable) {
1227 		pr_info(GHES_PFX "GHES is not enabled!\n");
1228 		return -EINVAL;
1229 	}
1230 
1231 	ghes_nmi_init_cxt();
1232 
1233 	rc = ghes_estatus_pool_init();
1234 	if (rc)
1235 		goto err;
1236 
1237 	rc = ghes_estatus_pool_expand(GHES_ESTATUS_CACHE_AVG_SIZE *
1238 				      GHES_ESTATUS_CACHE_ALLOCED_MAX);
1239 	if (rc)
1240 		goto err_pool_exit;
1241 
1242 	rc = platform_driver_register(&ghes_platform_driver);
1243 	if (rc)
1244 		goto err_pool_exit;
1245 
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");
1253 	else
1254 		pr_info(GHES_PFX "Failed to enable APEI firmware first mode.\n");
1255 
1256 	return 0;
1257 err_pool_exit:
1258 	ghes_estatus_pool_exit();
1259 err:
1260 	return rc;
1261 }
1262 device_initcall(ghes_init);
1263