blob: dab7cb7349df7e62ee24f32493d8d5a8065ad3d9 [file] [log] [blame]
Huang Yingd334a492010-05-18 14:35:20 +08001/*
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 *
Huang Ying67eb2e92011-07-13 13:14:25 +080015 * Copyright 2010,2011 Intel Corp.
Huang Yingd334a492010-05-18 14:35:20 +080016 * 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 * You should have received a copy of the GNU General Public License
28 * along with this program; if not, write to the Free Software
29 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30 */
31
32#include <linux/kernel.h>
33#include <linux/module.h>
34#include <linux/init.h>
35#include <linux/acpi.h>
36#include <linux/io.h>
37#include <linux/interrupt.h>
Huang Ying81e88fd2011-01-12 14:44:55 +080038#include <linux/timer.h>
Huang Yingd334a492010-05-18 14:35:20 +080039#include <linux/cper.h>
40#include <linux/kdebug.h>
Huang Ying7ad6e942010-08-02 15:48:24 +080041#include <linux/platform_device.h>
42#include <linux/mutex.h>
Huang Ying32c361f2010-12-07 10:22:31 +080043#include <linux/ratelimit.h>
Huang Ying81e88fd2011-01-12 14:44:55 +080044#include <linux/vmalloc.h>
Huang Ying67eb2e92011-07-13 13:14:25 +080045#include <linux/irq_work.h>
46#include <linux/llist.h>
47#include <linux/genalloc.h>
Huang Yinga654e5e2011-12-08 11:25:41 +080048#include <linux/pci.h>
49#include <linux/aer.h>
Mauro Carvalho Chehab40e06412013-02-15 05:41:22 -030050
51#include <acpi/ghes.h>
Huang Yingd334a492010-05-18 14:35:20 +080052#include <asm/mce.h>
Huang Ying81e88fd2011-01-12 14:44:55 +080053#include <asm/tlbflush.h>
Don Zickus9c48f1c2011-09-30 15:06:21 -040054#include <asm/nmi.h>
Huang Yingd334a492010-05-18 14:35:20 +080055
56#include "apei-internal.h"
57
58#define GHES_PFX "GHES: "
59
60#define GHES_ESTATUS_MAX_SIZE 65536
Huang Ying67eb2e92011-07-13 13:14:25 +080061#define GHES_ESOURCE_PREALLOC_MAX_SIZE 65536
62
63#define GHES_ESTATUS_POOL_MIN_ALLOC_ORDER 3
64
Huang Ying152cef42011-07-13 13:14:26 +080065/* This is just an estimation for memory pool allocation */
66#define GHES_ESTATUS_CACHE_AVG_SIZE 512
67
68#define GHES_ESTATUS_CACHES_SIZE 4
69
Len Brown70cb6e12011-08-02 18:00:21 -040070#define GHES_ESTATUS_IN_CACHE_MAX_NSEC 10000000000ULL
Huang Ying152cef42011-07-13 13:14:26 +080071/* Prevent too many caches are allocated because of RCU */
72#define GHES_ESTATUS_CACHE_ALLOCED_MAX (GHES_ESTATUS_CACHES_SIZE * 3 / 2)
73
74#define GHES_ESTATUS_CACHE_LEN(estatus_len) \
75 (sizeof(struct ghes_estatus_cache) + (estatus_len))
76#define GHES_ESTATUS_FROM_CACHE(estatus_cache) \
Chen, Gong88f074f2013-10-18 14:28:59 -070077 ((struct acpi_generic_status *) \
Huang Ying152cef42011-07-13 13:14:26 +080078 ((struct ghes_estatus_cache *)(estatus_cache) + 1))
79
Huang Ying67eb2e92011-07-13 13:14:25 +080080#define GHES_ESTATUS_NODE_LEN(estatus_len) \
81 (sizeof(struct ghes_estatus_node) + (estatus_len))
Chen, Gong88f074f2013-10-18 14:28:59 -070082#define GHES_ESTATUS_FROM_NODE(estatus_node) \
83 ((struct acpi_generic_status *) \
Huang Ying67eb2e92011-07-13 13:14:25 +080084 ((struct ghes_estatus_node *)(estatus_node) + 1))
Huang Yingd334a492010-05-18 14:35:20 +080085
Rusty Russell90ab5ee2012-01-13 09:32:20 +103086bool ghes_disable;
Huang Yingb6a95012011-07-13 13:14:19 +080087module_param_named(disable, ghes_disable, bool, 0);
88
Huang Ying81e88fd2011-01-12 14:44:55 +080089static int ghes_panic_timeout __read_mostly = 30;
90
Huang Yingd334a492010-05-18 14:35:20 +080091/*
Huang Ying81e88fd2011-01-12 14:44:55 +080092 * All error sources notified with SCI shares one notifier function,
93 * so they need to be linked and checked one by one. This is applied
94 * to NMI too.
Huang Yingd334a492010-05-18 14:35:20 +080095 *
Huang Ying81e88fd2011-01-12 14:44:55 +080096 * RCU is used for these lists, so ghes_list_mutex is only used for
97 * list changing, not for traversing.
Huang Yingd334a492010-05-18 14:35:20 +080098 */
99static LIST_HEAD(ghes_sci);
Huang Ying81e88fd2011-01-12 14:44:55 +0800100static LIST_HEAD(ghes_nmi);
Huang Ying7ad6e942010-08-02 15:48:24 +0800101static DEFINE_MUTEX(ghes_list_mutex);
Huang Yingd334a492010-05-18 14:35:20 +0800102
Huang Ying81e88fd2011-01-12 14:44:55 +0800103/*
104 * NMI may be triggered on any CPU, so ghes_nmi_lock is used for
105 * mutual exclusion.
106 */
107static DEFINE_RAW_SPINLOCK(ghes_nmi_lock);
108
109/*
110 * Because the memory area used to transfer hardware error information
111 * from BIOS to Linux can be determined only in NMI, IRQ or timer
112 * handler, but general ioremap can not be used in atomic context, so
113 * a special version of atomic ioremap is implemented for that.
114 */
115
116/*
117 * Two virtual pages are used, one for NMI context, the other for
118 * IRQ/PROCESS context
119 */
120#define GHES_IOREMAP_PAGES 2
121#define GHES_IOREMAP_NMI_PAGE(base) (base)
122#define GHES_IOREMAP_IRQ_PAGE(base) ((base) + PAGE_SIZE)
123
124/* virtual memory area for atomic ioremap */
125static struct vm_struct *ghes_ioremap_area;
126/*
127 * These 2 spinlock is used to prevent atomic ioremap virtual memory
128 * area from being mapped simultaneously.
129 */
130static DEFINE_RAW_SPINLOCK(ghes_ioremap_lock_nmi);
131static DEFINE_SPINLOCK(ghes_ioremap_lock_irq);
132
Huang Ying67eb2e92011-07-13 13:14:25 +0800133/*
134 * printk is not safe in NMI context. So in NMI handler, we allocate
135 * required memory from lock-less memory allocator
136 * (ghes_estatus_pool), save estatus into it, put them into lock-less
137 * list (ghes_estatus_llist), then delay printk into IRQ context via
138 * irq_work (ghes_proc_irq_work). ghes_estatus_size_request record
139 * required pool size by all NMI error source.
140 */
141static struct gen_pool *ghes_estatus_pool;
142static unsigned long ghes_estatus_pool_size_request;
143static struct llist_head ghes_estatus_llist;
144static struct irq_work ghes_proc_irq_work;
145
Huang Ying152cef42011-07-13 13:14:26 +0800146struct ghes_estatus_cache *ghes_estatus_caches[GHES_ESTATUS_CACHES_SIZE];
147static atomic_t ghes_estatus_cache_alloced;
148
Huang Ying81e88fd2011-01-12 14:44:55 +0800149static int ghes_ioremap_init(void)
150{
151 ghes_ioremap_area = __get_vm_area(PAGE_SIZE * GHES_IOREMAP_PAGES,
152 VM_IOREMAP, VMALLOC_START, VMALLOC_END);
153 if (!ghes_ioremap_area) {
154 pr_err(GHES_PFX "Failed to allocate virtual memory area for atomic ioremap.\n");
155 return -ENOMEM;
156 }
157
158 return 0;
159}
160
161static void ghes_ioremap_exit(void)
162{
163 free_vm_area(ghes_ioremap_area);
164}
165
166static void __iomem *ghes_ioremap_pfn_nmi(u64 pfn)
167{
168 unsigned long vaddr;
169
170 vaddr = (unsigned long)GHES_IOREMAP_NMI_PAGE(ghes_ioremap_area->addr);
171 ioremap_page_range(vaddr, vaddr + PAGE_SIZE,
172 pfn << PAGE_SHIFT, PAGE_KERNEL);
173
174 return (void __iomem *)vaddr;
175}
176
177static void __iomem *ghes_ioremap_pfn_irq(u64 pfn)
178{
179 unsigned long vaddr;
180
181 vaddr = (unsigned long)GHES_IOREMAP_IRQ_PAGE(ghes_ioremap_area->addr);
182 ioremap_page_range(vaddr, vaddr + PAGE_SIZE,
183 pfn << PAGE_SHIFT, PAGE_KERNEL);
184
185 return (void __iomem *)vaddr;
186}
187
188static void ghes_iounmap_nmi(void __iomem *vaddr_ptr)
189{
190 unsigned long vaddr = (unsigned long __force)vaddr_ptr;
191 void *base = ghes_ioremap_area->addr;
192
193 BUG_ON(vaddr != (unsigned long)GHES_IOREMAP_NMI_PAGE(base));
194 unmap_kernel_range_noflush(vaddr, PAGE_SIZE);
195 __flush_tlb_one(vaddr);
196}
197
198static void ghes_iounmap_irq(void __iomem *vaddr_ptr)
199{
200 unsigned long vaddr = (unsigned long __force)vaddr_ptr;
201 void *base = ghes_ioremap_area->addr;
202
203 BUG_ON(vaddr != (unsigned long)GHES_IOREMAP_IRQ_PAGE(base));
204 unmap_kernel_range_noflush(vaddr, PAGE_SIZE);
205 __flush_tlb_one(vaddr);
206}
207
Huang Ying67eb2e92011-07-13 13:14:25 +0800208static int ghes_estatus_pool_init(void)
209{
210 ghes_estatus_pool = gen_pool_create(GHES_ESTATUS_POOL_MIN_ALLOC_ORDER, -1);
211 if (!ghes_estatus_pool)
212 return -ENOMEM;
213 return 0;
214}
215
216static void ghes_estatus_pool_free_chunk_page(struct gen_pool *pool,
217 struct gen_pool_chunk *chunk,
218 void *data)
219{
220 free_page(chunk->start_addr);
221}
222
223static void ghes_estatus_pool_exit(void)
224{
225 gen_pool_for_each_chunk(ghes_estatus_pool,
226 ghes_estatus_pool_free_chunk_page, NULL);
227 gen_pool_destroy(ghes_estatus_pool);
228}
229
230static int ghes_estatus_pool_expand(unsigned long len)
231{
232 unsigned long i, pages, size, addr;
233 int ret;
234
235 ghes_estatus_pool_size_request += PAGE_ALIGN(len);
236 size = gen_pool_size(ghes_estatus_pool);
237 if (size >= ghes_estatus_pool_size_request)
238 return 0;
239 pages = (ghes_estatus_pool_size_request - size) / PAGE_SIZE;
240 for (i = 0; i < pages; i++) {
241 addr = __get_free_page(GFP_KERNEL);
242 if (!addr)
243 return -ENOMEM;
244 ret = gen_pool_add(ghes_estatus_pool, addr, PAGE_SIZE, -1);
245 if (ret)
246 return ret;
247 }
248
249 return 0;
250}
251
252static void ghes_estatus_pool_shrink(unsigned long len)
253{
254 ghes_estatus_pool_size_request -= PAGE_ALIGN(len);
255}
256
Huang Yingd334a492010-05-18 14:35:20 +0800257static struct ghes *ghes_new(struct acpi_hest_generic *generic)
258{
259 struct ghes *ghes;
260 unsigned int error_block_length;
261 int rc;
262
263 ghes = kzalloc(sizeof(*ghes), GFP_KERNEL);
264 if (!ghes)
265 return ERR_PTR(-ENOMEM);
266 ghes->generic = generic;
Huang Ying34ddeb02012-06-12 11:20:19 +0800267 rc = apei_map_generic_address(&generic->error_status_address);
Huang Yingd334a492010-05-18 14:35:20 +0800268 if (rc)
269 goto err_free;
270 error_block_length = generic->error_block_length;
271 if (error_block_length > GHES_ESTATUS_MAX_SIZE) {
272 pr_warning(FW_WARN GHES_PFX
273 "Error status block length is too long: %u for "
274 "generic hardware error source: %d.\n",
275 error_block_length, generic->header.source_id);
276 error_block_length = GHES_ESTATUS_MAX_SIZE;
277 }
278 ghes->estatus = kmalloc(error_block_length, GFP_KERNEL);
279 if (!ghes->estatus) {
280 rc = -ENOMEM;
281 goto err_unmap;
282 }
283
284 return ghes;
285
286err_unmap:
Huang Ying34ddeb02012-06-12 11:20:19 +0800287 apei_unmap_generic_address(&generic->error_status_address);
Huang Yingd334a492010-05-18 14:35:20 +0800288err_free:
289 kfree(ghes);
290 return ERR_PTR(rc);
291}
292
293static void ghes_fini(struct ghes *ghes)
294{
295 kfree(ghes->estatus);
Huang Ying34ddeb02012-06-12 11:20:19 +0800296 apei_unmap_generic_address(&ghes->generic->error_status_address);
Huang Yingd334a492010-05-18 14:35:20 +0800297}
298
Huang Yingd334a492010-05-18 14:35:20 +0800299static inline int ghes_severity(int severity)
300{
301 switch (severity) {
Huang Yingad4ecef2010-08-02 15:48:23 +0800302 case CPER_SEV_INFORMATIONAL:
303 return GHES_SEV_NO;
304 case CPER_SEV_CORRECTED:
305 return GHES_SEV_CORRECTED;
306 case CPER_SEV_RECOVERABLE:
307 return GHES_SEV_RECOVERABLE;
308 case CPER_SEV_FATAL:
309 return GHES_SEV_PANIC;
Huang Yingd334a492010-05-18 14:35:20 +0800310 default:
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300311 /* Unknown, go panic */
Huang Yingad4ecef2010-08-02 15:48:23 +0800312 return GHES_SEV_PANIC;
Huang Yingd334a492010-05-18 14:35:20 +0800313 }
314}
315
Huang Ying81e88fd2011-01-12 14:44:55 +0800316static void ghes_copy_tofrom_phys(void *buffer, u64 paddr, u32 len,
317 int from_phys)
Huang Yingd334a492010-05-18 14:35:20 +0800318{
Huang Ying81e88fd2011-01-12 14:44:55 +0800319 void __iomem *vaddr;
320 unsigned long flags = 0;
321 int in_nmi = in_nmi();
322 u64 offset;
323 u32 trunk;
Huang Yingd334a492010-05-18 14:35:20 +0800324
Huang Ying81e88fd2011-01-12 14:44:55 +0800325 while (len > 0) {
326 offset = paddr - (paddr & PAGE_MASK);
327 if (in_nmi) {
328 raw_spin_lock(&ghes_ioremap_lock_nmi);
329 vaddr = ghes_ioremap_pfn_nmi(paddr >> PAGE_SHIFT);
330 } else {
331 spin_lock_irqsave(&ghes_ioremap_lock_irq, flags);
332 vaddr = ghes_ioremap_pfn_irq(paddr >> PAGE_SHIFT);
333 }
334 trunk = PAGE_SIZE - offset;
335 trunk = min(trunk, len);
336 if (from_phys)
337 memcpy_fromio(buffer, vaddr + offset, trunk);
338 else
339 memcpy_toio(vaddr + offset, buffer, trunk);
340 len -= trunk;
341 paddr += trunk;
342 buffer += trunk;
343 if (in_nmi) {
344 ghes_iounmap_nmi(vaddr);
345 raw_spin_unlock(&ghes_ioremap_lock_nmi);
346 } else {
347 ghes_iounmap_irq(vaddr);
348 spin_unlock_irqrestore(&ghes_ioremap_lock_irq, flags);
349 }
350 }
Huang Yingd334a492010-05-18 14:35:20 +0800351}
352
353static int ghes_read_estatus(struct ghes *ghes, int silent)
354{
355 struct acpi_hest_generic *g = ghes->generic;
356 u64 buf_paddr;
357 u32 len;
358 int rc;
359
Myron Stowe700130b2011-11-07 16:23:41 -0700360 rc = apei_read(&buf_paddr, &g->error_status_address);
Huang Yingd334a492010-05-18 14:35:20 +0800361 if (rc) {
362 if (!silent && printk_ratelimit())
363 pr_warning(FW_WARN GHES_PFX
364"Failed to read error status block address for hardware error source: %d.\n",
365 g->header.source_id);
366 return -EIO;
367 }
368 if (!buf_paddr)
369 return -ENOENT;
370
Huang Ying81e88fd2011-01-12 14:44:55 +0800371 ghes_copy_tofrom_phys(ghes->estatus, buf_paddr,
372 sizeof(*ghes->estatus), 1);
Huang Yingd334a492010-05-18 14:35:20 +0800373 if (!ghes->estatus->block_status)
374 return -ENOENT;
375
376 ghes->buffer_paddr = buf_paddr;
377 ghes->flags |= GHES_TO_CLEAR;
378
379 rc = -EIO;
Chen, Gong88f074f2013-10-18 14:28:59 -0700380 len = cper_estatus_len(ghes->estatus);
Huang Yingd334a492010-05-18 14:35:20 +0800381 if (len < sizeof(*ghes->estatus))
382 goto err_read_block;
383 if (len > ghes->generic->error_block_length)
384 goto err_read_block;
Chen, Gong88f074f2013-10-18 14:28:59 -0700385 if (cper_estatus_check_header(ghes->estatus))
Huang Yingd334a492010-05-18 14:35:20 +0800386 goto err_read_block;
Huang Ying81e88fd2011-01-12 14:44:55 +0800387 ghes_copy_tofrom_phys(ghes->estatus + 1,
388 buf_paddr + sizeof(*ghes->estatus),
389 len - sizeof(*ghes->estatus), 1);
Chen, Gong88f074f2013-10-18 14:28:59 -0700390 if (cper_estatus_check(ghes->estatus))
Huang Yingd334a492010-05-18 14:35:20 +0800391 goto err_read_block;
392 rc = 0;
393
394err_read_block:
Huang Ying81e88fd2011-01-12 14:44:55 +0800395 if (rc && !silent && printk_ratelimit())
Huang Yingd334a492010-05-18 14:35:20 +0800396 pr_warning(FW_WARN GHES_PFX
397 "Failed to read error status block!\n");
398 return rc;
399}
400
401static void ghes_clear_estatus(struct ghes *ghes)
402{
403 ghes->estatus->block_status = 0;
404 if (!(ghes->flags & GHES_TO_CLEAR))
405 return;
406 ghes_copy_tofrom_phys(ghes->estatus, ghes->buffer_paddr,
407 sizeof(ghes->estatus->block_status), 0);
408 ghes->flags &= ~GHES_TO_CLEAR;
409}
410
Chen, Gong88f074f2013-10-18 14:28:59 -0700411static void ghes_handle_memory_failure(struct acpi_generic_data *gdata, int sev)
Naveen N. Raocf870c72013-07-10 14:57:01 +0530412{
413#ifdef CONFIG_ACPI_APEI_MEMORY_FAILURE
414 unsigned long pfn;
Chen, Gongca104ed2013-11-25 02:15:01 -0500415 int flags = -1;
Naveen N. Raocf870c72013-07-10 14:57:01 +0530416 int sec_sev = ghes_severity(gdata->error_severity);
417 struct cper_sec_mem_err *mem_err;
418 mem_err = (struct cper_sec_mem_err *)(gdata + 1);
419
Chen, Gongca104ed2013-11-25 02:15:01 -0500420 if (!(mem_err->validation_bits & CPER_MEM_VALID_PA))
421 return;
422
423 pfn = mem_err->physical_addr >> PAGE_SHIFT;
424 if (!pfn_valid(pfn)) {
425 pr_warn_ratelimited(FW_WARN GHES_PFX
426 "Invalid address in generic error data: %#llx\n",
427 mem_err->physical_addr);
428 return;
429 }
430
431 /* iff following two events can be handled properly by now */
Naveen N. Raocf870c72013-07-10 14:57:01 +0530432 if (sec_sev == GHES_SEV_CORRECTED &&
Chen, Gongca104ed2013-11-25 02:15:01 -0500433 (gdata->flags & CPER_SEC_ERROR_THRESHOLD_EXCEEDED))
434 flags = MF_SOFT_OFFLINE;
435 if (sev == GHES_SEV_RECOVERABLE && sec_sev == GHES_SEV_RECOVERABLE)
436 flags = 0;
437
438 if (flags != -1)
439 memory_failure_queue(pfn, 0, flags);
Naveen N. Raocf870c72013-07-10 14:57:01 +0530440#endif
441}
442
Mauro Carvalho Chehab21480542013-02-15 06:10:39 -0300443static void ghes_do_proc(struct ghes *ghes,
Chen, Gong88f074f2013-10-18 14:28:59 -0700444 const struct acpi_generic_status *estatus)
Huang Yingd334a492010-05-18 14:35:20 +0800445{
Huang Yingba61ca42011-07-13 13:14:28 +0800446 int sev, sec_sev;
Chen, Gong88f074f2013-10-18 14:28:59 -0700447 struct acpi_generic_data *gdata;
Huang Yingd334a492010-05-18 14:35:20 +0800448
Huang Ying67eb2e92011-07-13 13:14:25 +0800449 sev = ghes_severity(estatus->error_severity);
450 apei_estatus_for_each_section(estatus, gdata) {
Huang Yingba61ca42011-07-13 13:14:28 +0800451 sec_sev = ghes_severity(gdata->error_severity);
Huang Yingd334a492010-05-18 14:35:20 +0800452 if (!uuid_le_cmp(*(uuid_le *)gdata->section_type,
453 CPER_SEC_PLATFORM_MEM)) {
Huang Yingba61ca42011-07-13 13:14:28 +0800454 struct cper_sec_mem_err *mem_err;
455 mem_err = (struct cper_sec_mem_err *)(gdata+1);
Mauro Carvalho Chehab21480542013-02-15 06:10:39 -0300456 ghes_edac_report_mem_error(ghes, sev, mem_err);
457
Huang Yingba61ca42011-07-13 13:14:28 +0800458#ifdef CONFIG_X86_MCE
Chen, Gongaddccbb2013-11-25 02:15:00 -0500459 apei_mce_report_mem_error(sev, mem_err);
Huang Yingd334a492010-05-18 14:35:20 +0800460#endif
Naveen N. Raocf870c72013-07-10 14:57:01 +0530461 ghes_handle_memory_failure(gdata, sev);
Huang Yingba61ca42011-07-13 13:14:28 +0800462 }
Huang Yinga654e5e2011-12-08 11:25:41 +0800463#ifdef CONFIG_ACPI_APEI_PCIEAER
464 else if (!uuid_le_cmp(*(uuid_le *)gdata->section_type,
465 CPER_SEC_PCIE)) {
466 struct cper_sec_pcie *pcie_err;
467 pcie_err = (struct cper_sec_pcie *)(gdata+1);
468 if (sev == GHES_SEV_RECOVERABLE &&
469 sec_sev == GHES_SEV_RECOVERABLE &&
470 pcie_err->validation_bits & CPER_PCIE_VALID_DEVICE_ID &&
471 pcie_err->validation_bits & CPER_PCIE_VALID_AER_INFO) {
472 unsigned int devfn;
473 int aer_severity;
Betty Dall0ba98ec2013-06-06 12:10:50 -0600474
Huang Yinga654e5e2011-12-08 11:25:41 +0800475 devfn = PCI_DEVFN(pcie_err->device_id.device,
476 pcie_err->device_id.function);
477 aer_severity = cper_severity_to_aer(sev);
Betty Dall0ba98ec2013-06-06 12:10:50 -0600478
479 /*
480 * If firmware reset the component to contain
481 * the error, we must reinitialize it before
482 * use, so treat it as a fatal AER error.
483 */
484 if (gdata->flags & CPER_SEC_RESET)
485 aer_severity = AER_FATAL;
486
Huang Yinga654e5e2011-12-08 11:25:41 +0800487 aer_recover_queue(pcie_err->device_id.segment,
488 pcie_err->device_id.bus,
Lance Ortiz37448ad2013-05-30 08:25:12 -0600489 devfn, aer_severity,
490 (struct aer_capability_regs *)
491 pcie_err->aer_info);
Huang Yinga654e5e2011-12-08 11:25:41 +0800492 }
493
494 }
495#endif
Huang Yingd334a492010-05-18 14:35:20 +0800496 }
Huang Ying32c361f2010-12-07 10:22:31 +0800497}
Huang Yingd334a492010-05-18 14:35:20 +0800498
Huang Ying67eb2e92011-07-13 13:14:25 +0800499static void __ghes_print_estatus(const char *pfx,
500 const struct acpi_hest_generic *generic,
Chen, Gong88f074f2013-10-18 14:28:59 -0700501 const struct acpi_generic_status *estatus)
Huang Ying32c361f2010-12-07 10:22:31 +0800502{
Huang Ying5ba82ab2011-12-08 11:25:44 +0800503 static atomic_t seqno;
504 unsigned int curr_seqno;
505 char pfx_seq[64];
506
Huang Ying32c361f2010-12-07 10:22:31 +0800507 if (pfx == NULL) {
Huang Ying67eb2e92011-07-13 13:14:25 +0800508 if (ghes_severity(estatus->error_severity) <=
Huang Ying32c361f2010-12-07 10:22:31 +0800509 GHES_SEV_CORRECTED)
Huang Ying5ba82ab2011-12-08 11:25:44 +0800510 pfx = KERN_WARNING;
Huang Ying32c361f2010-12-07 10:22:31 +0800511 else
Huang Ying5ba82ab2011-12-08 11:25:44 +0800512 pfx = KERN_ERR;
Huang Ying32c361f2010-12-07 10:22:31 +0800513 }
Huang Ying5ba82ab2011-12-08 11:25:44 +0800514 curr_seqno = atomic_inc_return(&seqno);
515 snprintf(pfx_seq, sizeof(pfx_seq), "%s{%u}" HW_ERR, pfx, curr_seqno);
Huang Ying55883402011-07-13 13:14:15 +0800516 printk("%s""Hardware error from APEI Generic Hardware Error Source: %d\n",
Huang Ying5ba82ab2011-12-08 11:25:44 +0800517 pfx_seq, generic->header.source_id);
Chen, Gong88f074f2013-10-18 14:28:59 -0700518 cper_estatus_print(pfx_seq, estatus);
Huang Ying55883402011-07-13 13:14:15 +0800519}
520
Huang Ying152cef42011-07-13 13:14:26 +0800521static int ghes_print_estatus(const char *pfx,
522 const struct acpi_hest_generic *generic,
Chen, Gong88f074f2013-10-18 14:28:59 -0700523 const struct acpi_generic_status *estatus)
Huang Ying55883402011-07-13 13:14:15 +0800524{
525 /* Not more than 2 messages every 5 seconds */
Huang Ying67eb2e92011-07-13 13:14:25 +0800526 static DEFINE_RATELIMIT_STATE(ratelimit_corrected, 5*HZ, 2);
527 static DEFINE_RATELIMIT_STATE(ratelimit_uncorrected, 5*HZ, 2);
528 struct ratelimit_state *ratelimit;
Huang Ying55883402011-07-13 13:14:15 +0800529
Huang Ying67eb2e92011-07-13 13:14:25 +0800530 if (ghes_severity(estatus->error_severity) <= GHES_SEV_CORRECTED)
531 ratelimit = &ratelimit_corrected;
532 else
533 ratelimit = &ratelimit_uncorrected;
Huang Ying152cef42011-07-13 13:14:26 +0800534 if (__ratelimit(ratelimit)) {
Huang Ying67eb2e92011-07-13 13:14:25 +0800535 __ghes_print_estatus(pfx, generic, estatus);
Huang Ying152cef42011-07-13 13:14:26 +0800536 return 1;
537 }
538 return 0;
539}
540
541/*
542 * GHES error status reporting throttle, to report more kinds of
543 * errors, instead of just most frequently occurred errors.
544 */
Chen, Gong88f074f2013-10-18 14:28:59 -0700545static int ghes_estatus_cached(struct acpi_generic_status *estatus)
Huang Ying152cef42011-07-13 13:14:26 +0800546{
547 u32 len;
548 int i, cached = 0;
549 unsigned long long now;
550 struct ghes_estatus_cache *cache;
Chen, Gong88f074f2013-10-18 14:28:59 -0700551 struct acpi_generic_status *cache_estatus;
Huang Ying152cef42011-07-13 13:14:26 +0800552
Chen, Gong88f074f2013-10-18 14:28:59 -0700553 len = cper_estatus_len(estatus);
Huang Ying152cef42011-07-13 13:14:26 +0800554 rcu_read_lock();
555 for (i = 0; i < GHES_ESTATUS_CACHES_SIZE; i++) {
556 cache = rcu_dereference(ghes_estatus_caches[i]);
557 if (cache == NULL)
558 continue;
559 if (len != cache->estatus_len)
560 continue;
561 cache_estatus = GHES_ESTATUS_FROM_CACHE(cache);
562 if (memcmp(estatus, cache_estatus, len))
563 continue;
564 atomic_inc(&cache->count);
565 now = sched_clock();
566 if (now - cache->time_in < GHES_ESTATUS_IN_CACHE_MAX_NSEC)
567 cached = 1;
568 break;
569 }
570 rcu_read_unlock();
571 return cached;
572}
573
574static struct ghes_estatus_cache *ghes_estatus_cache_alloc(
575 struct acpi_hest_generic *generic,
Chen, Gong88f074f2013-10-18 14:28:59 -0700576 struct acpi_generic_status *estatus)
Huang Ying152cef42011-07-13 13:14:26 +0800577{
578 int alloced;
579 u32 len, cache_len;
580 struct ghes_estatus_cache *cache;
Chen, Gong88f074f2013-10-18 14:28:59 -0700581 struct acpi_generic_status *cache_estatus;
Huang Ying152cef42011-07-13 13:14:26 +0800582
583 alloced = atomic_add_return(1, &ghes_estatus_cache_alloced);
584 if (alloced > GHES_ESTATUS_CACHE_ALLOCED_MAX) {
585 atomic_dec(&ghes_estatus_cache_alloced);
586 return NULL;
587 }
Chen, Gong88f074f2013-10-18 14:28:59 -0700588 len = cper_estatus_len(estatus);
Huang Ying152cef42011-07-13 13:14:26 +0800589 cache_len = GHES_ESTATUS_CACHE_LEN(len);
590 cache = (void *)gen_pool_alloc(ghes_estatus_pool, cache_len);
591 if (!cache) {
592 atomic_dec(&ghes_estatus_cache_alloced);
593 return NULL;
594 }
595 cache_estatus = GHES_ESTATUS_FROM_CACHE(cache);
596 memcpy(cache_estatus, estatus, len);
597 cache->estatus_len = len;
598 atomic_set(&cache->count, 0);
599 cache->generic = generic;
600 cache->time_in = sched_clock();
601 return cache;
602}
603
604static void ghes_estatus_cache_free(struct ghes_estatus_cache *cache)
605{
606 u32 len;
607
Chen, Gong88f074f2013-10-18 14:28:59 -0700608 len = cper_estatus_len(GHES_ESTATUS_FROM_CACHE(cache));
Huang Ying152cef42011-07-13 13:14:26 +0800609 len = GHES_ESTATUS_CACHE_LEN(len);
610 gen_pool_free(ghes_estatus_pool, (unsigned long)cache, len);
611 atomic_dec(&ghes_estatus_cache_alloced);
612}
613
614static void ghes_estatus_cache_rcu_free(struct rcu_head *head)
615{
616 struct ghes_estatus_cache *cache;
617
618 cache = container_of(head, struct ghes_estatus_cache, rcu);
619 ghes_estatus_cache_free(cache);
620}
621
622static void ghes_estatus_cache_add(
623 struct acpi_hest_generic *generic,
Chen, Gong88f074f2013-10-18 14:28:59 -0700624 struct acpi_generic_status *estatus)
Huang Ying152cef42011-07-13 13:14:26 +0800625{
626 int i, slot = -1, count;
627 unsigned long long now, duration, period, max_period = 0;
628 struct ghes_estatus_cache *cache, *slot_cache = NULL, *new_cache;
629
630 new_cache = ghes_estatus_cache_alloc(generic, estatus);
631 if (new_cache == NULL)
632 return;
633 rcu_read_lock();
634 now = sched_clock();
635 for (i = 0; i < GHES_ESTATUS_CACHES_SIZE; i++) {
636 cache = rcu_dereference(ghes_estatus_caches[i]);
637 if (cache == NULL) {
638 slot = i;
639 slot_cache = NULL;
640 break;
641 }
642 duration = now - cache->time_in;
643 if (duration >= GHES_ESTATUS_IN_CACHE_MAX_NSEC) {
644 slot = i;
645 slot_cache = cache;
646 break;
647 }
648 count = atomic_read(&cache->count);
Len Brown70cb6e12011-08-02 18:00:21 -0400649 period = duration;
650 do_div(period, (count + 1));
Huang Ying152cef42011-07-13 13:14:26 +0800651 if (period > max_period) {
652 max_period = period;
653 slot = i;
654 slot_cache = cache;
655 }
656 }
657 /* new_cache must be put into array after its contents are written */
658 smp_wmb();
659 if (slot != -1 && cmpxchg(ghes_estatus_caches + slot,
660 slot_cache, new_cache) == slot_cache) {
661 if (slot_cache)
662 call_rcu(&slot_cache->rcu, ghes_estatus_cache_rcu_free);
663 } else
664 ghes_estatus_cache_free(new_cache);
665 rcu_read_unlock();
Huang Yingd334a492010-05-18 14:35:20 +0800666}
667
668static int ghes_proc(struct ghes *ghes)
669{
670 int rc;
671
672 rc = ghes_read_estatus(ghes, 0);
673 if (rc)
674 goto out;
Huang Ying152cef42011-07-13 13:14:26 +0800675 if (!ghes_estatus_cached(ghes->estatus)) {
676 if (ghes_print_estatus(NULL, ghes->generic, ghes->estatus))
677 ghes_estatus_cache_add(ghes->generic, ghes->estatus);
678 }
Mauro Carvalho Chehab21480542013-02-15 06:10:39 -0300679 ghes_do_proc(ghes, ghes->estatus);
Huang Yingd334a492010-05-18 14:35:20 +0800680out:
681 ghes_clear_estatus(ghes);
682 return 0;
683}
684
Huang Ying81e88fd2011-01-12 14:44:55 +0800685static void ghes_add_timer(struct ghes *ghes)
686{
687 struct acpi_hest_generic *g = ghes->generic;
688 unsigned long expire;
689
690 if (!g->notify.poll_interval) {
691 pr_warning(FW_WARN GHES_PFX "Poll interval is 0 for generic hardware error source: %d, disabled.\n",
692 g->header.source_id);
693 return;
694 }
695 expire = jiffies + msecs_to_jiffies(g->notify.poll_interval);
696 ghes->timer.expires = round_jiffies_relative(expire);
697 add_timer(&ghes->timer);
698}
699
700static void ghes_poll_func(unsigned long data)
701{
702 struct ghes *ghes = (void *)data;
703
704 ghes_proc(ghes);
705 if (!(ghes->flags & GHES_EXITING))
706 ghes_add_timer(ghes);
707}
708
709static irqreturn_t ghes_irq_func(int irq, void *data)
710{
711 struct ghes *ghes = data;
712 int rc;
713
714 rc = ghes_proc(ghes);
715 if (rc)
716 return IRQ_NONE;
717
718 return IRQ_HANDLED;
719}
720
Huang Yingd334a492010-05-18 14:35:20 +0800721static int ghes_notify_sci(struct notifier_block *this,
722 unsigned long event, void *data)
723{
724 struct ghes *ghes;
725 int ret = NOTIFY_DONE;
726
727 rcu_read_lock();
728 list_for_each_entry_rcu(ghes, &ghes_sci, list) {
729 if (!ghes_proc(ghes))
730 ret = NOTIFY_OK;
731 }
732 rcu_read_unlock();
733
734 return ret;
735}
736
Huang Ying46d12f02011-12-08 11:25:45 +0800737static struct llist_node *llist_nodes_reverse(struct llist_node *llnode)
Huang Ying67eb2e92011-07-13 13:14:25 +0800738{
Huang Ying46d12f02011-12-08 11:25:45 +0800739 struct llist_node *next, *tail = NULL;
Huang Ying67eb2e92011-07-13 13:14:25 +0800740
Huang Ying67eb2e92011-07-13 13:14:25 +0800741 while (llnode) {
742 next = llnode->next;
743 llnode->next = tail;
744 tail = llnode;
745 llnode = next;
746 }
Huang Ying46d12f02011-12-08 11:25:45 +0800747
748 return tail;
749}
750
751static void ghes_proc_in_irq(struct irq_work *irq_work)
752{
753 struct llist_node *llnode, *next;
754 struct ghes_estatus_node *estatus_node;
755 struct acpi_hest_generic *generic;
Chen, Gong88f074f2013-10-18 14:28:59 -0700756 struct acpi_generic_status *estatus;
Huang Ying46d12f02011-12-08 11:25:45 +0800757 u32 len, node_len;
758
759 llnode = llist_del_all(&ghes_estatus_llist);
760 /*
761 * Because the time order of estatus in list is reversed,
762 * revert it back to proper order.
763 */
764 llnode = llist_nodes_reverse(llnode);
Huang Ying67eb2e92011-07-13 13:14:25 +0800765 while (llnode) {
766 next = llnode->next;
767 estatus_node = llist_entry(llnode, struct ghes_estatus_node,
768 llnode);
769 estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
Chen, Gong88f074f2013-10-18 14:28:59 -0700770 len = cper_estatus_len(estatus);
Huang Ying67eb2e92011-07-13 13:14:25 +0800771 node_len = GHES_ESTATUS_NODE_LEN(len);
Mauro Carvalho Chehab21480542013-02-15 06:10:39 -0300772 ghes_do_proc(estatus_node->ghes, estatus);
Huang Ying152cef42011-07-13 13:14:26 +0800773 if (!ghes_estatus_cached(estatus)) {
774 generic = estatus_node->generic;
775 if (ghes_print_estatus(NULL, generic, estatus))
776 ghes_estatus_cache_add(generic, estatus);
777 }
Huang Ying67eb2e92011-07-13 13:14:25 +0800778 gen_pool_free(ghes_estatus_pool, (unsigned long)estatus_node,
779 node_len);
780 llnode = next;
781 }
782}
783
Huang Ying46d12f02011-12-08 11:25:45 +0800784static void ghes_print_queued_estatus(void)
785{
786 struct llist_node *llnode;
787 struct ghes_estatus_node *estatus_node;
788 struct acpi_hest_generic *generic;
Chen, Gong88f074f2013-10-18 14:28:59 -0700789 struct acpi_generic_status *estatus;
Huang Ying46d12f02011-12-08 11:25:45 +0800790 u32 len, node_len;
791
792 llnode = llist_del_all(&ghes_estatus_llist);
793 /*
794 * Because the time order of estatus in list is reversed,
795 * revert it back to proper order.
796 */
797 llnode = llist_nodes_reverse(llnode);
798 while (llnode) {
799 estatus_node = llist_entry(llnode, struct ghes_estatus_node,
800 llnode);
801 estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
Chen, Gong88f074f2013-10-18 14:28:59 -0700802 len = cper_estatus_len(estatus);
Huang Ying46d12f02011-12-08 11:25:45 +0800803 node_len = GHES_ESTATUS_NODE_LEN(len);
804 generic = estatus_node->generic;
805 ghes_print_estatus(NULL, generic, estatus);
806 llnode = llnode->next;
807 }
808}
809
Don Zickus9c48f1c2011-09-30 15:06:21 -0400810static int ghes_notify_nmi(unsigned int cmd, struct pt_regs *regs)
Huang Ying81e88fd2011-01-12 14:44:55 +0800811{
812 struct ghes *ghes, *ghes_global = NULL;
813 int sev, sev_global = -1;
Don Zickus9c48f1c2011-09-30 15:06:21 -0400814 int ret = NMI_DONE;
Huang Ying81e88fd2011-01-12 14:44:55 +0800815
816 raw_spin_lock(&ghes_nmi_lock);
817 list_for_each_entry_rcu(ghes, &ghes_nmi, list) {
818 if (ghes_read_estatus(ghes, 1)) {
819 ghes_clear_estatus(ghes);
820 continue;
821 }
822 sev = ghes_severity(ghes->estatus->error_severity);
823 if (sev > sev_global) {
824 sev_global = sev;
825 ghes_global = ghes;
826 }
Don Zickus9c48f1c2011-09-30 15:06:21 -0400827 ret = NMI_HANDLED;
Huang Ying81e88fd2011-01-12 14:44:55 +0800828 }
829
Don Zickus9c48f1c2011-09-30 15:06:21 -0400830 if (ret == NMI_DONE)
Huang Ying81e88fd2011-01-12 14:44:55 +0800831 goto out;
832
833 if (sev_global >= GHES_SEV_PANIC) {
834 oops_begin();
Huang Ying46d12f02011-12-08 11:25:45 +0800835 ghes_print_queued_estatus();
Huang Ying5ba82ab2011-12-08 11:25:44 +0800836 __ghes_print_estatus(KERN_EMERG, ghes_global->generic,
Huang Ying67eb2e92011-07-13 13:14:25 +0800837 ghes_global->estatus);
Huang Ying81e88fd2011-01-12 14:44:55 +0800838 /* reboot to log the error! */
839 if (panic_timeout == 0)
840 panic_timeout = ghes_panic_timeout;
841 panic("Fatal hardware error!");
842 }
843
844 list_for_each_entry_rcu(ghes, &ghes_nmi, list) {
Huang Ying67eb2e92011-07-13 13:14:25 +0800845#ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
846 u32 len, node_len;
847 struct ghes_estatus_node *estatus_node;
Chen, Gong88f074f2013-10-18 14:28:59 -0700848 struct acpi_generic_status *estatus;
Huang Ying67eb2e92011-07-13 13:14:25 +0800849#endif
Huang Ying81e88fd2011-01-12 14:44:55 +0800850 if (!(ghes->flags & GHES_TO_CLEAR))
851 continue;
Huang Ying67eb2e92011-07-13 13:14:25 +0800852#ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
Huang Ying152cef42011-07-13 13:14:26 +0800853 if (ghes_estatus_cached(ghes->estatus))
854 goto next;
Huang Ying67eb2e92011-07-13 13:14:25 +0800855 /* Save estatus for further processing in IRQ context */
Chen, Gong88f074f2013-10-18 14:28:59 -0700856 len = cper_estatus_len(ghes->estatus);
Huang Ying67eb2e92011-07-13 13:14:25 +0800857 node_len = GHES_ESTATUS_NODE_LEN(len);
858 estatus_node = (void *)gen_pool_alloc(ghes_estatus_pool,
859 node_len);
860 if (estatus_node) {
Mauro Carvalho Chehab21480542013-02-15 06:10:39 -0300861 estatus_node->ghes = ghes;
Huang Ying67eb2e92011-07-13 13:14:25 +0800862 estatus_node->generic = ghes->generic;
863 estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
864 memcpy(estatus, ghes->estatus, len);
865 llist_add(&estatus_node->llnode, &ghes_estatus_llist);
866 }
Huang Ying152cef42011-07-13 13:14:26 +0800867next:
Huang Ying67eb2e92011-07-13 13:14:25 +0800868#endif
Huang Ying81e88fd2011-01-12 14:44:55 +0800869 ghes_clear_estatus(ghes);
870 }
Huang Ying67eb2e92011-07-13 13:14:25 +0800871#ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
872 irq_work_queue(&ghes_proc_irq_work);
873#endif
Huang Ying81e88fd2011-01-12 14:44:55 +0800874
875out:
876 raw_spin_unlock(&ghes_nmi_lock);
877 return ret;
878}
879
Huang Yingd334a492010-05-18 14:35:20 +0800880static struct notifier_block ghes_notifier_sci = {
881 .notifier_call = ghes_notify_sci,
882};
883
Huang Ying67eb2e92011-07-13 13:14:25 +0800884static unsigned long ghes_esource_prealloc_size(
885 const struct acpi_hest_generic *generic)
886{
887 unsigned long block_length, prealloc_records, prealloc_size;
888
889 block_length = min_t(unsigned long, generic->error_block_length,
890 GHES_ESTATUS_MAX_SIZE);
891 prealloc_records = max_t(unsigned long,
892 generic->records_to_preallocate, 1);
893 prealloc_size = min_t(unsigned long, block_length * prealloc_records,
894 GHES_ESOURCE_PREALLOC_MAX_SIZE);
895
896 return prealloc_size;
897}
898
Bill Pembertonda095fd2012-11-19 13:22:46 -0500899static int ghes_probe(struct platform_device *ghes_dev)
Huang Yingd334a492010-05-18 14:35:20 +0800900{
901 struct acpi_hest_generic *generic;
902 struct ghes *ghes = NULL;
Huang Ying67eb2e92011-07-13 13:14:25 +0800903 unsigned long len;
Huang Ying7ad6e942010-08-02 15:48:24 +0800904 int rc = -EINVAL;
Huang Yingd334a492010-05-18 14:35:20 +0800905
Jin Dongming1dd6b202010-09-29 19:53:53 +0800906 generic = *(struct acpi_hest_generic **)ghes_dev->dev.platform_data;
Huang Yingd334a492010-05-18 14:35:20 +0800907 if (!generic->enabled)
Huang Ying7ad6e942010-08-02 15:48:24 +0800908 return -ENODEV;
Huang Yingd334a492010-05-18 14:35:20 +0800909
Huang Ying81e88fd2011-01-12 14:44:55 +0800910 switch (generic->notify.type) {
911 case ACPI_HEST_NOTIFY_POLLED:
912 case ACPI_HEST_NOTIFY_EXTERNAL:
913 case ACPI_HEST_NOTIFY_SCI:
914 case ACPI_HEST_NOTIFY_NMI:
915 break;
916 case ACPI_HEST_NOTIFY_LOCAL:
917 pr_warning(GHES_PFX "Generic hardware error source: %d notified via local interrupt is not supported!\n",
Huang Yingd334a492010-05-18 14:35:20 +0800918 generic->header.source_id);
919 goto err;
Huang Ying81e88fd2011-01-12 14:44:55 +0800920 default:
921 pr_warning(FW_WARN GHES_PFX "Unknown notification type: %u for generic hardware error source: %d\n",
922 generic->notify.type, generic->header.source_id);
923 goto err;
Huang Yingd334a492010-05-18 14:35:20 +0800924 }
Huang Ying81e88fd2011-01-12 14:44:55 +0800925
926 rc = -EIO;
927 if (generic->error_block_length <
Chen, Gong88f074f2013-10-18 14:28:59 -0700928 sizeof(struct acpi_generic_status)) {
Huang Ying81e88fd2011-01-12 14:44:55 +0800929 pr_warning(FW_BUG GHES_PFX "Invalid error block length: %u for generic hardware error source: %d\n",
930 generic->error_block_length,
Huang Yingd334a492010-05-18 14:35:20 +0800931 generic->header.source_id);
932 goto err;
933 }
934 ghes = ghes_new(generic);
935 if (IS_ERR(ghes)) {
936 rc = PTR_ERR(ghes);
937 ghes = NULL;
938 goto err;
939 }
Mauro Carvalho Chehab21480542013-02-15 06:10:39 -0300940
941 rc = ghes_edac_register(ghes, &ghes_dev->dev);
942 if (rc < 0)
943 goto err;
944
Huang Ying81e88fd2011-01-12 14:44:55 +0800945 switch (generic->notify.type) {
946 case ACPI_HEST_NOTIFY_POLLED:
947 ghes->timer.function = ghes_poll_func;
948 ghes->timer.data = (unsigned long)ghes;
949 init_timer_deferrable(&ghes->timer);
950 ghes_add_timer(ghes);
951 break;
952 case ACPI_HEST_NOTIFY_EXTERNAL:
953 /* External interrupt vector is GSI */
Wei Yongjuna98d4f62013-06-03 02:08:39 +0000954 rc = acpi_gsi_to_irq(generic->notify.vector, &ghes->irq);
955 if (rc) {
Huang Ying81e88fd2011-01-12 14:44:55 +0800956 pr_err(GHES_PFX "Failed to map GSI to IRQ for generic hardware error source: %d\n",
957 generic->header.source_id);
Mauro Carvalho Chehab21480542013-02-15 06:10:39 -0300958 goto err_edac_unreg;
Huang Ying81e88fd2011-01-12 14:44:55 +0800959 }
Wei Yongjuna98d4f62013-06-03 02:08:39 +0000960 rc = request_irq(ghes->irq, ghes_irq_func, 0, "GHES IRQ", ghes);
961 if (rc) {
Huang Ying81e88fd2011-01-12 14:44:55 +0800962 pr_err(GHES_PFX "Failed to register IRQ for generic hardware error source: %d\n",
963 generic->header.source_id);
Mauro Carvalho Chehab21480542013-02-15 06:10:39 -0300964 goto err_edac_unreg;
Huang Ying81e88fd2011-01-12 14:44:55 +0800965 }
966 break;
967 case ACPI_HEST_NOTIFY_SCI:
Huang Ying7ad6e942010-08-02 15:48:24 +0800968 mutex_lock(&ghes_list_mutex);
Huang Yingd334a492010-05-18 14:35:20 +0800969 if (list_empty(&ghes_sci))
970 register_acpi_hed_notifier(&ghes_notifier_sci);
971 list_add_rcu(&ghes->list, &ghes_sci);
Huang Ying7ad6e942010-08-02 15:48:24 +0800972 mutex_unlock(&ghes_list_mutex);
Huang Ying81e88fd2011-01-12 14:44:55 +0800973 break;
974 case ACPI_HEST_NOTIFY_NMI:
Huang Ying67eb2e92011-07-13 13:14:25 +0800975 len = ghes_esource_prealloc_size(generic);
976 ghes_estatus_pool_expand(len);
Huang Ying81e88fd2011-01-12 14:44:55 +0800977 mutex_lock(&ghes_list_mutex);
978 if (list_empty(&ghes_nmi))
Don Zickus9c48f1c2011-09-30 15:06:21 -0400979 register_nmi_handler(NMI_LOCAL, ghes_notify_nmi, 0,
980 "ghes");
Huang Ying81e88fd2011-01-12 14:44:55 +0800981 list_add_rcu(&ghes->list, &ghes_nmi);
982 mutex_unlock(&ghes_list_mutex);
983 break;
984 default:
985 BUG();
Huang Yingd334a492010-05-18 14:35:20 +0800986 }
Huang Ying7ad6e942010-08-02 15:48:24 +0800987 platform_set_drvdata(ghes_dev, ghes);
Huang Yingd334a492010-05-18 14:35:20 +0800988
989 return 0;
Mauro Carvalho Chehab21480542013-02-15 06:10:39 -0300990err_edac_unreg:
991 ghes_edac_unregister(ghes);
Huang Yingd334a492010-05-18 14:35:20 +0800992err:
Huang Ying7ad6e942010-08-02 15:48:24 +0800993 if (ghes) {
Huang Yingd334a492010-05-18 14:35:20 +0800994 ghes_fini(ghes);
995 kfree(ghes);
996 }
Huang Ying7ad6e942010-08-02 15:48:24 +0800997 return rc;
Huang Yingd334a492010-05-18 14:35:20 +0800998}
999
Bill Pembertonb59bc2f2012-11-21 23:13:09 +01001000static int ghes_remove(struct platform_device *ghes_dev)
Huang Ying7ad6e942010-08-02 15:48:24 +08001001{
1002 struct ghes *ghes;
1003 struct acpi_hest_generic *generic;
Huang Ying67eb2e92011-07-13 13:14:25 +08001004 unsigned long len;
Huang Ying7ad6e942010-08-02 15:48:24 +08001005
1006 ghes = platform_get_drvdata(ghes_dev);
1007 generic = ghes->generic;
1008
Huang Ying81e88fd2011-01-12 14:44:55 +08001009 ghes->flags |= GHES_EXITING;
Huang Ying7ad6e942010-08-02 15:48:24 +08001010 switch (generic->notify.type) {
Huang Ying81e88fd2011-01-12 14:44:55 +08001011 case ACPI_HEST_NOTIFY_POLLED:
1012 del_timer_sync(&ghes->timer);
1013 break;
1014 case ACPI_HEST_NOTIFY_EXTERNAL:
1015 free_irq(ghes->irq, ghes);
1016 break;
Huang Ying7ad6e942010-08-02 15:48:24 +08001017 case ACPI_HEST_NOTIFY_SCI:
1018 mutex_lock(&ghes_list_mutex);
1019 list_del_rcu(&ghes->list);
1020 if (list_empty(&ghes_sci))
1021 unregister_acpi_hed_notifier(&ghes_notifier_sci);
1022 mutex_unlock(&ghes_list_mutex);
1023 break;
Huang Ying81e88fd2011-01-12 14:44:55 +08001024 case ACPI_HEST_NOTIFY_NMI:
1025 mutex_lock(&ghes_list_mutex);
1026 list_del_rcu(&ghes->list);
1027 if (list_empty(&ghes_nmi))
Don Zickus9c48f1c2011-09-30 15:06:21 -04001028 unregister_nmi_handler(NMI_LOCAL, "ghes");
Huang Ying81e88fd2011-01-12 14:44:55 +08001029 mutex_unlock(&ghes_list_mutex);
1030 /*
1031 * To synchronize with NMI handler, ghes can only be
1032 * freed after NMI handler finishes.
1033 */
1034 synchronize_rcu();
Huang Ying67eb2e92011-07-13 13:14:25 +08001035 len = ghes_esource_prealloc_size(generic);
1036 ghes_estatus_pool_shrink(len);
Huang Ying81e88fd2011-01-12 14:44:55 +08001037 break;
Huang Ying7ad6e942010-08-02 15:48:24 +08001038 default:
1039 BUG();
1040 break;
1041 }
1042
Huang Ying7ad6e942010-08-02 15:48:24 +08001043 ghes_fini(ghes);
Mauro Carvalho Chehab21480542013-02-15 06:10:39 -03001044
1045 ghes_edac_unregister(ghes);
1046
Huang Ying7ad6e942010-08-02 15:48:24 +08001047 kfree(ghes);
1048
1049 platform_set_drvdata(ghes_dev, NULL);
1050
1051 return 0;
1052}
1053
1054static struct platform_driver ghes_platform_driver = {
1055 .driver = {
1056 .name = "GHES",
1057 .owner = THIS_MODULE,
1058 },
1059 .probe = ghes_probe,
1060 .remove = ghes_remove,
1061};
1062
Huang Yingd334a492010-05-18 14:35:20 +08001063static int __init ghes_init(void)
1064{
Huang Ying81e88fd2011-01-12 14:44:55 +08001065 int rc;
1066
Huang Yingd334a492010-05-18 14:35:20 +08001067 if (acpi_disabled)
1068 return -ENODEV;
1069
1070 if (hest_disable) {
1071 pr_info(GHES_PFX "HEST is not enabled!\n");
1072 return -EINVAL;
1073 }
1074
Huang Yingb6a95012011-07-13 13:14:19 +08001075 if (ghes_disable) {
1076 pr_info(GHES_PFX "GHES is not enabled!\n");
1077 return -EINVAL;
1078 }
1079
Huang Ying67eb2e92011-07-13 13:14:25 +08001080 init_irq_work(&ghes_proc_irq_work, ghes_proc_in_irq);
1081
Huang Ying81e88fd2011-01-12 14:44:55 +08001082 rc = ghes_ioremap_init();
1083 if (rc)
1084 goto err;
1085
Huang Ying67eb2e92011-07-13 13:14:25 +08001086 rc = ghes_estatus_pool_init();
Huang Ying81e88fd2011-01-12 14:44:55 +08001087 if (rc)
1088 goto err_ioremap_exit;
1089
Huang Ying152cef42011-07-13 13:14:26 +08001090 rc = ghes_estatus_pool_expand(GHES_ESTATUS_CACHE_AVG_SIZE *
1091 GHES_ESTATUS_CACHE_ALLOCED_MAX);
1092 if (rc)
1093 goto err_pool_exit;
1094
Huang Ying67eb2e92011-07-13 13:14:25 +08001095 rc = platform_driver_register(&ghes_platform_driver);
1096 if (rc)
1097 goto err_pool_exit;
1098
Huang Ying9fb0bfe2011-07-13 13:14:21 +08001099 rc = apei_osc_setup();
1100 if (rc == 0 && osc_sb_apei_support_acked)
1101 pr_info(GHES_PFX "APEI firmware first mode is enabled by APEI bit and WHEA _OSC.\n");
1102 else if (rc == 0 && !osc_sb_apei_support_acked)
1103 pr_info(GHES_PFX "APEI firmware first mode is enabled by WHEA _OSC.\n");
1104 else if (rc && osc_sb_apei_support_acked)
1105 pr_info(GHES_PFX "APEI firmware first mode is enabled by APEI bit.\n");
1106 else
1107 pr_info(GHES_PFX "Failed to enable APEI firmware first mode.\n");
1108
Huang Ying81e88fd2011-01-12 14:44:55 +08001109 return 0;
Huang Ying67eb2e92011-07-13 13:14:25 +08001110err_pool_exit:
1111 ghes_estatus_pool_exit();
Huang Ying81e88fd2011-01-12 14:44:55 +08001112err_ioremap_exit:
1113 ghes_ioremap_exit();
1114err:
1115 return rc;
Huang Yingd334a492010-05-18 14:35:20 +08001116}
1117
1118static void __exit ghes_exit(void)
1119{
Huang Ying7ad6e942010-08-02 15:48:24 +08001120 platform_driver_unregister(&ghes_platform_driver);
Huang Ying67eb2e92011-07-13 13:14:25 +08001121 ghes_estatus_pool_exit();
Huang Ying81e88fd2011-01-12 14:44:55 +08001122 ghes_ioremap_exit();
Huang Yingd334a492010-05-18 14:35:20 +08001123}
1124
1125module_init(ghes_init);
1126module_exit(ghes_exit);
1127
1128MODULE_AUTHOR("Huang Ying");
1129MODULE_DESCRIPTION("APEI Generic Hardware Error Source support");
1130MODULE_LICENSE("GPL");
Huang Ying7ad6e942010-08-02 15:48:24 +08001131MODULE_ALIAS("platform:GHES");