blob: 511b971d114878e62c0759fac73e27d48f6fdee2 [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>
Huang Yingd334a492010-05-18 14:35:20 +080050#include <acpi/apei.h>
51#include <acpi/atomicio.h>
52#include <acpi/hed.h>
53#include <asm/mce.h>
Huang Ying81e88fd2011-01-12 14:44:55 +080054#include <asm/tlbflush.h>
Don Zickus9c48f1c2011-09-30 15:06:21 -040055#include <asm/nmi.h>
Huang Yingd334a492010-05-18 14:35:20 +080056
57#include "apei-internal.h"
58
59#define GHES_PFX "GHES: "
60
61#define GHES_ESTATUS_MAX_SIZE 65536
Huang Ying67eb2e92011-07-13 13:14:25 +080062#define GHES_ESOURCE_PREALLOC_MAX_SIZE 65536
63
64#define GHES_ESTATUS_POOL_MIN_ALLOC_ORDER 3
65
Huang Ying152cef42011-07-13 13:14:26 +080066/* This is just an estimation for memory pool allocation */
67#define GHES_ESTATUS_CACHE_AVG_SIZE 512
68
69#define GHES_ESTATUS_CACHES_SIZE 4
70
Len Brown70cb6e12011-08-02 18:00:21 -040071#define GHES_ESTATUS_IN_CACHE_MAX_NSEC 10000000000ULL
Huang Ying152cef42011-07-13 13:14:26 +080072/* Prevent too many caches are allocated because of RCU */
73#define GHES_ESTATUS_CACHE_ALLOCED_MAX (GHES_ESTATUS_CACHES_SIZE * 3 / 2)
74
75#define GHES_ESTATUS_CACHE_LEN(estatus_len) \
76 (sizeof(struct ghes_estatus_cache) + (estatus_len))
77#define GHES_ESTATUS_FROM_CACHE(estatus_cache) \
78 ((struct acpi_hest_generic_status *) \
79 ((struct ghes_estatus_cache *)(estatus_cache) + 1))
80
Huang Ying67eb2e92011-07-13 13:14:25 +080081#define GHES_ESTATUS_NODE_LEN(estatus_len) \
82 (sizeof(struct ghes_estatus_node) + (estatus_len))
83#define GHES_ESTATUS_FROM_NODE(estatus_node) \
84 ((struct acpi_hest_generic_status *) \
85 ((struct ghes_estatus_node *)(estatus_node) + 1))
Huang Yingd334a492010-05-18 14:35:20 +080086
87/*
Huang Ying81e88fd2011-01-12 14:44:55 +080088 * One struct ghes is created for each generic hardware error source.
Huang Yingd334a492010-05-18 14:35:20 +080089 * It provides the context for APEI hardware error timer/IRQ/SCI/NMI
Huang Ying81e88fd2011-01-12 14:44:55 +080090 * handler.
Huang Yingd334a492010-05-18 14:35:20 +080091 *
92 * estatus: memory buffer for error status block, allocated during
93 * HEST parsing.
94 */
95#define GHES_TO_CLEAR 0x0001
Huang Ying81e88fd2011-01-12 14:44:55 +080096#define GHES_EXITING 0x0002
Huang Yingd334a492010-05-18 14:35:20 +080097
98struct ghes {
99 struct acpi_hest_generic *generic;
100 struct acpi_hest_generic_status *estatus;
Huang Yingd334a492010-05-18 14:35:20 +0800101 u64 buffer_paddr;
102 unsigned long flags;
Huang Ying81e88fd2011-01-12 14:44:55 +0800103 union {
104 struct list_head list;
105 struct timer_list timer;
106 unsigned int irq;
107 };
Huang Yingd334a492010-05-18 14:35:20 +0800108};
109
Huang Ying67eb2e92011-07-13 13:14:25 +0800110struct ghes_estatus_node {
111 struct llist_node llnode;
112 struct acpi_hest_generic *generic;
113};
114
Huang Ying152cef42011-07-13 13:14:26 +0800115struct ghes_estatus_cache {
116 u32 estatus_len;
117 atomic_t count;
118 struct acpi_hest_generic *generic;
119 unsigned long long time_in;
120 struct rcu_head rcu;
121};
122
Huang Yingb6a95012011-07-13 13:14:19 +0800123int ghes_disable;
124module_param_named(disable, ghes_disable, bool, 0);
125
Huang Ying81e88fd2011-01-12 14:44:55 +0800126static int ghes_panic_timeout __read_mostly = 30;
127
Huang Yingd334a492010-05-18 14:35:20 +0800128/*
Huang Ying81e88fd2011-01-12 14:44:55 +0800129 * All error sources notified with SCI shares one notifier function,
130 * so they need to be linked and checked one by one. This is applied
131 * to NMI too.
Huang Yingd334a492010-05-18 14:35:20 +0800132 *
Huang Ying81e88fd2011-01-12 14:44:55 +0800133 * RCU is used for these lists, so ghes_list_mutex is only used for
134 * list changing, not for traversing.
Huang Yingd334a492010-05-18 14:35:20 +0800135 */
136static LIST_HEAD(ghes_sci);
Huang Ying81e88fd2011-01-12 14:44:55 +0800137static LIST_HEAD(ghes_nmi);
Huang Ying7ad6e942010-08-02 15:48:24 +0800138static DEFINE_MUTEX(ghes_list_mutex);
Huang Yingd334a492010-05-18 14:35:20 +0800139
Huang Ying81e88fd2011-01-12 14:44:55 +0800140/*
141 * NMI may be triggered on any CPU, so ghes_nmi_lock is used for
142 * mutual exclusion.
143 */
144static DEFINE_RAW_SPINLOCK(ghes_nmi_lock);
145
146/*
147 * Because the memory area used to transfer hardware error information
148 * from BIOS to Linux can be determined only in NMI, IRQ or timer
149 * handler, but general ioremap can not be used in atomic context, so
150 * a special version of atomic ioremap is implemented for that.
151 */
152
153/*
154 * Two virtual pages are used, one for NMI context, the other for
155 * IRQ/PROCESS context
156 */
157#define GHES_IOREMAP_PAGES 2
158#define GHES_IOREMAP_NMI_PAGE(base) (base)
159#define GHES_IOREMAP_IRQ_PAGE(base) ((base) + PAGE_SIZE)
160
161/* virtual memory area for atomic ioremap */
162static struct vm_struct *ghes_ioremap_area;
163/*
164 * These 2 spinlock is used to prevent atomic ioremap virtual memory
165 * area from being mapped simultaneously.
166 */
167static DEFINE_RAW_SPINLOCK(ghes_ioremap_lock_nmi);
168static DEFINE_SPINLOCK(ghes_ioremap_lock_irq);
169
Huang Ying67eb2e92011-07-13 13:14:25 +0800170/*
171 * printk is not safe in NMI context. So in NMI handler, we allocate
172 * required memory from lock-less memory allocator
173 * (ghes_estatus_pool), save estatus into it, put them into lock-less
174 * list (ghes_estatus_llist), then delay printk into IRQ context via
175 * irq_work (ghes_proc_irq_work). ghes_estatus_size_request record
176 * required pool size by all NMI error source.
177 */
178static struct gen_pool *ghes_estatus_pool;
179static unsigned long ghes_estatus_pool_size_request;
180static struct llist_head ghes_estatus_llist;
181static struct irq_work ghes_proc_irq_work;
182
Huang Ying152cef42011-07-13 13:14:26 +0800183struct ghes_estatus_cache *ghes_estatus_caches[GHES_ESTATUS_CACHES_SIZE];
184static atomic_t ghes_estatus_cache_alloced;
185
Huang Ying81e88fd2011-01-12 14:44:55 +0800186static int ghes_ioremap_init(void)
187{
188 ghes_ioremap_area = __get_vm_area(PAGE_SIZE * GHES_IOREMAP_PAGES,
189 VM_IOREMAP, VMALLOC_START, VMALLOC_END);
190 if (!ghes_ioremap_area) {
191 pr_err(GHES_PFX "Failed to allocate virtual memory area for atomic ioremap.\n");
192 return -ENOMEM;
193 }
194
195 return 0;
196}
197
198static void ghes_ioremap_exit(void)
199{
200 free_vm_area(ghes_ioremap_area);
201}
202
203static void __iomem *ghes_ioremap_pfn_nmi(u64 pfn)
204{
205 unsigned long vaddr;
206
207 vaddr = (unsigned long)GHES_IOREMAP_NMI_PAGE(ghes_ioremap_area->addr);
208 ioremap_page_range(vaddr, vaddr + PAGE_SIZE,
209 pfn << PAGE_SHIFT, PAGE_KERNEL);
210
211 return (void __iomem *)vaddr;
212}
213
214static void __iomem *ghes_ioremap_pfn_irq(u64 pfn)
215{
216 unsigned long vaddr;
217
218 vaddr = (unsigned long)GHES_IOREMAP_IRQ_PAGE(ghes_ioremap_area->addr);
219 ioremap_page_range(vaddr, vaddr + PAGE_SIZE,
220 pfn << PAGE_SHIFT, PAGE_KERNEL);
221
222 return (void __iomem *)vaddr;
223}
224
225static void ghes_iounmap_nmi(void __iomem *vaddr_ptr)
226{
227 unsigned long vaddr = (unsigned long __force)vaddr_ptr;
228 void *base = ghes_ioremap_area->addr;
229
230 BUG_ON(vaddr != (unsigned long)GHES_IOREMAP_NMI_PAGE(base));
231 unmap_kernel_range_noflush(vaddr, PAGE_SIZE);
232 __flush_tlb_one(vaddr);
233}
234
235static void ghes_iounmap_irq(void __iomem *vaddr_ptr)
236{
237 unsigned long vaddr = (unsigned long __force)vaddr_ptr;
238 void *base = ghes_ioremap_area->addr;
239
240 BUG_ON(vaddr != (unsigned long)GHES_IOREMAP_IRQ_PAGE(base));
241 unmap_kernel_range_noflush(vaddr, PAGE_SIZE);
242 __flush_tlb_one(vaddr);
243}
244
Huang Ying67eb2e92011-07-13 13:14:25 +0800245static int ghes_estatus_pool_init(void)
246{
247 ghes_estatus_pool = gen_pool_create(GHES_ESTATUS_POOL_MIN_ALLOC_ORDER, -1);
248 if (!ghes_estatus_pool)
249 return -ENOMEM;
250 return 0;
251}
252
253static void ghes_estatus_pool_free_chunk_page(struct gen_pool *pool,
254 struct gen_pool_chunk *chunk,
255 void *data)
256{
257 free_page(chunk->start_addr);
258}
259
260static void ghes_estatus_pool_exit(void)
261{
262 gen_pool_for_each_chunk(ghes_estatus_pool,
263 ghes_estatus_pool_free_chunk_page, NULL);
264 gen_pool_destroy(ghes_estatus_pool);
265}
266
267static int ghes_estatus_pool_expand(unsigned long len)
268{
269 unsigned long i, pages, size, addr;
270 int ret;
271
272 ghes_estatus_pool_size_request += PAGE_ALIGN(len);
273 size = gen_pool_size(ghes_estatus_pool);
274 if (size >= ghes_estatus_pool_size_request)
275 return 0;
276 pages = (ghes_estatus_pool_size_request - size) / PAGE_SIZE;
277 for (i = 0; i < pages; i++) {
278 addr = __get_free_page(GFP_KERNEL);
279 if (!addr)
280 return -ENOMEM;
281 ret = gen_pool_add(ghes_estatus_pool, addr, PAGE_SIZE, -1);
282 if (ret)
283 return ret;
284 }
285
286 return 0;
287}
288
289static void ghes_estatus_pool_shrink(unsigned long len)
290{
291 ghes_estatus_pool_size_request -= PAGE_ALIGN(len);
292}
293
Huang Yingd334a492010-05-18 14:35:20 +0800294static struct ghes *ghes_new(struct acpi_hest_generic *generic)
295{
296 struct ghes *ghes;
297 unsigned int error_block_length;
298 int rc;
299
300 ghes = kzalloc(sizeof(*ghes), GFP_KERNEL);
301 if (!ghes)
302 return ERR_PTR(-ENOMEM);
303 ghes->generic = generic;
Huang Yingd334a492010-05-18 14:35:20 +0800304 rc = acpi_pre_map_gar(&generic->error_status_address);
305 if (rc)
306 goto err_free;
307 error_block_length = generic->error_block_length;
308 if (error_block_length > GHES_ESTATUS_MAX_SIZE) {
309 pr_warning(FW_WARN GHES_PFX
310 "Error status block length is too long: %u for "
311 "generic hardware error source: %d.\n",
312 error_block_length, generic->header.source_id);
313 error_block_length = GHES_ESTATUS_MAX_SIZE;
314 }
315 ghes->estatus = kmalloc(error_block_length, GFP_KERNEL);
316 if (!ghes->estatus) {
317 rc = -ENOMEM;
318 goto err_unmap;
319 }
320
321 return ghes;
322
323err_unmap:
324 acpi_post_unmap_gar(&generic->error_status_address);
325err_free:
326 kfree(ghes);
327 return ERR_PTR(rc);
328}
329
330static void ghes_fini(struct ghes *ghes)
331{
332 kfree(ghes->estatus);
333 acpi_post_unmap_gar(&ghes->generic->error_status_address);
334}
335
336enum {
Huang Yingad4ecef2010-08-02 15:48:23 +0800337 GHES_SEV_NO = 0x0,
338 GHES_SEV_CORRECTED = 0x1,
339 GHES_SEV_RECOVERABLE = 0x2,
340 GHES_SEV_PANIC = 0x3,
Huang Yingd334a492010-05-18 14:35:20 +0800341};
342
343static inline int ghes_severity(int severity)
344{
345 switch (severity) {
Huang Yingad4ecef2010-08-02 15:48:23 +0800346 case CPER_SEV_INFORMATIONAL:
347 return GHES_SEV_NO;
348 case CPER_SEV_CORRECTED:
349 return GHES_SEV_CORRECTED;
350 case CPER_SEV_RECOVERABLE:
351 return GHES_SEV_RECOVERABLE;
352 case CPER_SEV_FATAL:
353 return GHES_SEV_PANIC;
Huang Yingd334a492010-05-18 14:35:20 +0800354 default:
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300355 /* Unknown, go panic */
Huang Yingad4ecef2010-08-02 15:48:23 +0800356 return GHES_SEV_PANIC;
Huang Yingd334a492010-05-18 14:35:20 +0800357 }
358}
359
Huang Ying81e88fd2011-01-12 14:44:55 +0800360static void ghes_copy_tofrom_phys(void *buffer, u64 paddr, u32 len,
361 int from_phys)
Huang Yingd334a492010-05-18 14:35:20 +0800362{
Huang Ying81e88fd2011-01-12 14:44:55 +0800363 void __iomem *vaddr;
364 unsigned long flags = 0;
365 int in_nmi = in_nmi();
366 u64 offset;
367 u32 trunk;
Huang Yingd334a492010-05-18 14:35:20 +0800368
Huang Ying81e88fd2011-01-12 14:44:55 +0800369 while (len > 0) {
370 offset = paddr - (paddr & PAGE_MASK);
371 if (in_nmi) {
372 raw_spin_lock(&ghes_ioremap_lock_nmi);
373 vaddr = ghes_ioremap_pfn_nmi(paddr >> PAGE_SHIFT);
374 } else {
375 spin_lock_irqsave(&ghes_ioremap_lock_irq, flags);
376 vaddr = ghes_ioremap_pfn_irq(paddr >> PAGE_SHIFT);
377 }
378 trunk = PAGE_SIZE - offset;
379 trunk = min(trunk, len);
380 if (from_phys)
381 memcpy_fromio(buffer, vaddr + offset, trunk);
382 else
383 memcpy_toio(vaddr + offset, buffer, trunk);
384 len -= trunk;
385 paddr += trunk;
386 buffer += trunk;
387 if (in_nmi) {
388 ghes_iounmap_nmi(vaddr);
389 raw_spin_unlock(&ghes_ioremap_lock_nmi);
390 } else {
391 ghes_iounmap_irq(vaddr);
392 spin_unlock_irqrestore(&ghes_ioremap_lock_irq, flags);
393 }
394 }
Huang Yingd334a492010-05-18 14:35:20 +0800395}
396
397static int ghes_read_estatus(struct ghes *ghes, int silent)
398{
399 struct acpi_hest_generic *g = ghes->generic;
400 u64 buf_paddr;
401 u32 len;
402 int rc;
403
404 rc = acpi_atomic_read(&buf_paddr, &g->error_status_address);
405 if (rc) {
406 if (!silent && printk_ratelimit())
407 pr_warning(FW_WARN GHES_PFX
408"Failed to read error status block address for hardware error source: %d.\n",
409 g->header.source_id);
410 return -EIO;
411 }
412 if (!buf_paddr)
413 return -ENOENT;
414
Huang Ying81e88fd2011-01-12 14:44:55 +0800415 ghes_copy_tofrom_phys(ghes->estatus, buf_paddr,
416 sizeof(*ghes->estatus), 1);
Huang Yingd334a492010-05-18 14:35:20 +0800417 if (!ghes->estatus->block_status)
418 return -ENOENT;
419
420 ghes->buffer_paddr = buf_paddr;
421 ghes->flags |= GHES_TO_CLEAR;
422
423 rc = -EIO;
424 len = apei_estatus_len(ghes->estatus);
425 if (len < sizeof(*ghes->estatus))
426 goto err_read_block;
427 if (len > ghes->generic->error_block_length)
428 goto err_read_block;
429 if (apei_estatus_check_header(ghes->estatus))
430 goto err_read_block;
Huang Ying81e88fd2011-01-12 14:44:55 +0800431 ghes_copy_tofrom_phys(ghes->estatus + 1,
432 buf_paddr + sizeof(*ghes->estatus),
433 len - sizeof(*ghes->estatus), 1);
Huang Yingd334a492010-05-18 14:35:20 +0800434 if (apei_estatus_check(ghes->estatus))
435 goto err_read_block;
436 rc = 0;
437
438err_read_block:
Huang Ying81e88fd2011-01-12 14:44:55 +0800439 if (rc && !silent && printk_ratelimit())
Huang Yingd334a492010-05-18 14:35:20 +0800440 pr_warning(FW_WARN GHES_PFX
441 "Failed to read error status block!\n");
442 return rc;
443}
444
445static void ghes_clear_estatus(struct ghes *ghes)
446{
447 ghes->estatus->block_status = 0;
448 if (!(ghes->flags & GHES_TO_CLEAR))
449 return;
450 ghes_copy_tofrom_phys(ghes->estatus, ghes->buffer_paddr,
451 sizeof(ghes->estatus->block_status), 0);
452 ghes->flags &= ~GHES_TO_CLEAR;
453}
454
Huang Ying67eb2e92011-07-13 13:14:25 +0800455static void ghes_do_proc(const struct acpi_hest_generic_status *estatus)
Huang Yingd334a492010-05-18 14:35:20 +0800456{
Huang Yingba61ca42011-07-13 13:14:28 +0800457 int sev, sec_sev;
Huang Yingd334a492010-05-18 14:35:20 +0800458 struct acpi_hest_generic_data *gdata;
459
Huang Ying67eb2e92011-07-13 13:14:25 +0800460 sev = ghes_severity(estatus->error_severity);
461 apei_estatus_for_each_section(estatus, gdata) {
Huang Yingba61ca42011-07-13 13:14:28 +0800462 sec_sev = ghes_severity(gdata->error_severity);
Huang Yingd334a492010-05-18 14:35:20 +0800463 if (!uuid_le_cmp(*(uuid_le *)gdata->section_type,
464 CPER_SEC_PLATFORM_MEM)) {
Huang Yingba61ca42011-07-13 13:14:28 +0800465 struct cper_sec_mem_err *mem_err;
466 mem_err = (struct cper_sec_mem_err *)(gdata+1);
467#ifdef CONFIG_X86_MCE
468 apei_mce_report_mem_error(sev == GHES_SEV_CORRECTED,
469 mem_err);
Huang Yingd334a492010-05-18 14:35:20 +0800470#endif
Huang Yingba61ca42011-07-13 13:14:28 +0800471#ifdef CONFIG_ACPI_APEI_MEMORY_FAILURE
472 if (sev == GHES_SEV_RECOVERABLE &&
473 sec_sev == GHES_SEV_RECOVERABLE &&
474 mem_err->validation_bits & CPER_MEM_VALID_PHYSICAL_ADDRESS) {
475 unsigned long pfn;
476 pfn = mem_err->physical_addr >> PAGE_SHIFT;
477 memory_failure_queue(pfn, 0, 0);
478 }
479#endif
480 }
Huang Yinga654e5e2011-12-08 11:25:41 +0800481#ifdef CONFIG_ACPI_APEI_PCIEAER
482 else if (!uuid_le_cmp(*(uuid_le *)gdata->section_type,
483 CPER_SEC_PCIE)) {
484 struct cper_sec_pcie *pcie_err;
485 pcie_err = (struct cper_sec_pcie *)(gdata+1);
486 if (sev == GHES_SEV_RECOVERABLE &&
487 sec_sev == GHES_SEV_RECOVERABLE &&
488 pcie_err->validation_bits & CPER_PCIE_VALID_DEVICE_ID &&
489 pcie_err->validation_bits & CPER_PCIE_VALID_AER_INFO) {
490 unsigned int devfn;
491 int aer_severity;
492 devfn = PCI_DEVFN(pcie_err->device_id.device,
493 pcie_err->device_id.function);
494 aer_severity = cper_severity_to_aer(sev);
495 aer_recover_queue(pcie_err->device_id.segment,
496 pcie_err->device_id.bus,
497 devfn, aer_severity);
498 }
499
500 }
501#endif
Huang Yingd334a492010-05-18 14:35:20 +0800502 }
Huang Ying32c361f2010-12-07 10:22:31 +0800503}
Huang Yingd334a492010-05-18 14:35:20 +0800504
Huang Ying67eb2e92011-07-13 13:14:25 +0800505static void __ghes_print_estatus(const char *pfx,
506 const struct acpi_hest_generic *generic,
507 const struct acpi_hest_generic_status *estatus)
Huang Ying32c361f2010-12-07 10:22:31 +0800508{
Huang Ying32c361f2010-12-07 10:22:31 +0800509 if (pfx == NULL) {
Huang Ying67eb2e92011-07-13 13:14:25 +0800510 if (ghes_severity(estatus->error_severity) <=
Huang Ying32c361f2010-12-07 10:22:31 +0800511 GHES_SEV_CORRECTED)
512 pfx = KERN_WARNING HW_ERR;
513 else
514 pfx = KERN_ERR HW_ERR;
515 }
Huang Ying55883402011-07-13 13:14:15 +0800516 printk("%s""Hardware error from APEI Generic Hardware Error Source: %d\n",
Huang Ying67eb2e92011-07-13 13:14:25 +0800517 pfx, generic->header.source_id);
518 apei_estatus_print(pfx, 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,
523 const struct acpi_hest_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 */
545static int ghes_estatus_cached(struct acpi_hest_generic_status *estatus)
546{
547 u32 len;
548 int i, cached = 0;
549 unsigned long long now;
550 struct ghes_estatus_cache *cache;
551 struct acpi_hest_generic_status *cache_estatus;
552
553 len = apei_estatus_len(estatus);
554 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,
576 struct acpi_hest_generic_status *estatus)
577{
578 int alloced;
579 u32 len, cache_len;
580 struct ghes_estatus_cache *cache;
581 struct acpi_hest_generic_status *cache_estatus;
582
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 }
588 len = apei_estatus_len(estatus);
589 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
608 len = apei_estatus_len(GHES_ESTATUS_FROM_CACHE(cache));
609 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,
624 struct acpi_hest_generic_status *estatus)
625{
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 }
Huang Ying67eb2e92011-07-13 13:14:25 +0800679 ghes_do_proc(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 Ying67eb2e92011-07-13 13:14:25 +0800737static void ghes_proc_in_irq(struct irq_work *irq_work)
738{
739 struct llist_node *llnode, *next, *tail = NULL;
740 struct ghes_estatus_node *estatus_node;
Huang Ying152cef42011-07-13 13:14:26 +0800741 struct acpi_hest_generic *generic;
Huang Ying67eb2e92011-07-13 13:14:25 +0800742 struct acpi_hest_generic_status *estatus;
743 u32 len, node_len;
744
745 /*
746 * Because the time order of estatus in list is reversed,
747 * revert it back to proper order.
748 */
749 llnode = llist_del_all(&ghes_estatus_llist);
750 while (llnode) {
751 next = llnode->next;
752 llnode->next = tail;
753 tail = llnode;
754 llnode = next;
755 }
756 llnode = tail;
757 while (llnode) {
758 next = llnode->next;
759 estatus_node = llist_entry(llnode, struct ghes_estatus_node,
760 llnode);
761 estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
762 len = apei_estatus_len(estatus);
763 node_len = GHES_ESTATUS_NODE_LEN(len);
764 ghes_do_proc(estatus);
Huang Ying152cef42011-07-13 13:14:26 +0800765 if (!ghes_estatus_cached(estatus)) {
766 generic = estatus_node->generic;
767 if (ghes_print_estatus(NULL, generic, estatus))
768 ghes_estatus_cache_add(generic, estatus);
769 }
Huang Ying67eb2e92011-07-13 13:14:25 +0800770 gen_pool_free(ghes_estatus_pool, (unsigned long)estatus_node,
771 node_len);
772 llnode = next;
773 }
774}
775
Don Zickus9c48f1c2011-09-30 15:06:21 -0400776static int ghes_notify_nmi(unsigned int cmd, struct pt_regs *regs)
Huang Ying81e88fd2011-01-12 14:44:55 +0800777{
778 struct ghes *ghes, *ghes_global = NULL;
779 int sev, sev_global = -1;
Don Zickus9c48f1c2011-09-30 15:06:21 -0400780 int ret = NMI_DONE;
Huang Ying81e88fd2011-01-12 14:44:55 +0800781
782 raw_spin_lock(&ghes_nmi_lock);
783 list_for_each_entry_rcu(ghes, &ghes_nmi, list) {
784 if (ghes_read_estatus(ghes, 1)) {
785 ghes_clear_estatus(ghes);
786 continue;
787 }
788 sev = ghes_severity(ghes->estatus->error_severity);
789 if (sev > sev_global) {
790 sev_global = sev;
791 ghes_global = ghes;
792 }
Don Zickus9c48f1c2011-09-30 15:06:21 -0400793 ret = NMI_HANDLED;
Huang Ying81e88fd2011-01-12 14:44:55 +0800794 }
795
Don Zickus9c48f1c2011-09-30 15:06:21 -0400796 if (ret == NMI_DONE)
Huang Ying81e88fd2011-01-12 14:44:55 +0800797 goto out;
798
799 if (sev_global >= GHES_SEV_PANIC) {
800 oops_begin();
Huang Ying67eb2e92011-07-13 13:14:25 +0800801 __ghes_print_estatus(KERN_EMERG HW_ERR, ghes_global->generic,
802 ghes_global->estatus);
Huang Ying81e88fd2011-01-12 14:44:55 +0800803 /* reboot to log the error! */
804 if (panic_timeout == 0)
805 panic_timeout = ghes_panic_timeout;
806 panic("Fatal hardware error!");
807 }
808
809 list_for_each_entry_rcu(ghes, &ghes_nmi, list) {
Huang Ying67eb2e92011-07-13 13:14:25 +0800810#ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
811 u32 len, node_len;
812 struct ghes_estatus_node *estatus_node;
813 struct acpi_hest_generic_status *estatus;
814#endif
Huang Ying81e88fd2011-01-12 14:44:55 +0800815 if (!(ghes->flags & GHES_TO_CLEAR))
816 continue;
Huang Ying67eb2e92011-07-13 13:14:25 +0800817#ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
Huang Ying152cef42011-07-13 13:14:26 +0800818 if (ghes_estatus_cached(ghes->estatus))
819 goto next;
Huang Ying67eb2e92011-07-13 13:14:25 +0800820 /* Save estatus for further processing in IRQ context */
821 len = apei_estatus_len(ghes->estatus);
822 node_len = GHES_ESTATUS_NODE_LEN(len);
823 estatus_node = (void *)gen_pool_alloc(ghes_estatus_pool,
824 node_len);
825 if (estatus_node) {
826 estatus_node->generic = ghes->generic;
827 estatus = GHES_ESTATUS_FROM_NODE(estatus_node);
828 memcpy(estatus, ghes->estatus, len);
829 llist_add(&estatus_node->llnode, &ghes_estatus_llist);
830 }
Huang Ying152cef42011-07-13 13:14:26 +0800831next:
Huang Ying67eb2e92011-07-13 13:14:25 +0800832#endif
Huang Ying81e88fd2011-01-12 14:44:55 +0800833 ghes_clear_estatus(ghes);
834 }
Huang Ying67eb2e92011-07-13 13:14:25 +0800835#ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG
836 irq_work_queue(&ghes_proc_irq_work);
837#endif
Huang Ying81e88fd2011-01-12 14:44:55 +0800838
839out:
840 raw_spin_unlock(&ghes_nmi_lock);
841 return ret;
842}
843
Huang Yingd334a492010-05-18 14:35:20 +0800844static struct notifier_block ghes_notifier_sci = {
845 .notifier_call = ghes_notify_sci,
846};
847
Huang Ying67eb2e92011-07-13 13:14:25 +0800848static unsigned long ghes_esource_prealloc_size(
849 const struct acpi_hest_generic *generic)
850{
851 unsigned long block_length, prealloc_records, prealloc_size;
852
853 block_length = min_t(unsigned long, generic->error_block_length,
854 GHES_ESTATUS_MAX_SIZE);
855 prealloc_records = max_t(unsigned long,
856 generic->records_to_preallocate, 1);
857 prealloc_size = min_t(unsigned long, block_length * prealloc_records,
858 GHES_ESOURCE_PREALLOC_MAX_SIZE);
859
860 return prealloc_size;
861}
862
Huang Ying7ad6e942010-08-02 15:48:24 +0800863static int __devinit ghes_probe(struct platform_device *ghes_dev)
Huang Yingd334a492010-05-18 14:35:20 +0800864{
865 struct acpi_hest_generic *generic;
866 struct ghes *ghes = NULL;
Huang Ying67eb2e92011-07-13 13:14:25 +0800867 unsigned long len;
Huang Ying7ad6e942010-08-02 15:48:24 +0800868 int rc = -EINVAL;
Huang Yingd334a492010-05-18 14:35:20 +0800869
Jin Dongming1dd6b202010-09-29 19:53:53 +0800870 generic = *(struct acpi_hest_generic **)ghes_dev->dev.platform_data;
Huang Yingd334a492010-05-18 14:35:20 +0800871 if (!generic->enabled)
Huang Ying7ad6e942010-08-02 15:48:24 +0800872 return -ENODEV;
Huang Yingd334a492010-05-18 14:35:20 +0800873
Huang Ying81e88fd2011-01-12 14:44:55 +0800874 switch (generic->notify.type) {
875 case ACPI_HEST_NOTIFY_POLLED:
876 case ACPI_HEST_NOTIFY_EXTERNAL:
877 case ACPI_HEST_NOTIFY_SCI:
878 case ACPI_HEST_NOTIFY_NMI:
879 break;
880 case ACPI_HEST_NOTIFY_LOCAL:
881 pr_warning(GHES_PFX "Generic hardware error source: %d notified via local interrupt is not supported!\n",
Huang Yingd334a492010-05-18 14:35:20 +0800882 generic->header.source_id);
883 goto err;
Huang Ying81e88fd2011-01-12 14:44:55 +0800884 default:
885 pr_warning(FW_WARN GHES_PFX "Unknown notification type: %u for generic hardware error source: %d\n",
886 generic->notify.type, generic->header.source_id);
887 goto err;
Huang Yingd334a492010-05-18 14:35:20 +0800888 }
Huang Ying81e88fd2011-01-12 14:44:55 +0800889
890 rc = -EIO;
891 if (generic->error_block_length <
892 sizeof(struct acpi_hest_generic_status)) {
893 pr_warning(FW_BUG GHES_PFX "Invalid error block length: %u for generic hardware error source: %d\n",
894 generic->error_block_length,
Huang Yingd334a492010-05-18 14:35:20 +0800895 generic->header.source_id);
896 goto err;
897 }
898 ghes = ghes_new(generic);
899 if (IS_ERR(ghes)) {
900 rc = PTR_ERR(ghes);
901 ghes = NULL;
902 goto err;
903 }
Huang Ying81e88fd2011-01-12 14:44:55 +0800904 switch (generic->notify.type) {
905 case ACPI_HEST_NOTIFY_POLLED:
906 ghes->timer.function = ghes_poll_func;
907 ghes->timer.data = (unsigned long)ghes;
908 init_timer_deferrable(&ghes->timer);
909 ghes_add_timer(ghes);
910 break;
911 case ACPI_HEST_NOTIFY_EXTERNAL:
912 /* External interrupt vector is GSI */
913 if (acpi_gsi_to_irq(generic->notify.vector, &ghes->irq)) {
914 pr_err(GHES_PFX "Failed to map GSI to IRQ for generic hardware error source: %d\n",
915 generic->header.source_id);
916 goto err;
917 }
918 if (request_irq(ghes->irq, ghes_irq_func,
919 0, "GHES IRQ", ghes)) {
920 pr_err(GHES_PFX "Failed to register IRQ for generic hardware error source: %d\n",
921 generic->header.source_id);
922 goto err;
923 }
924 break;
925 case ACPI_HEST_NOTIFY_SCI:
Huang Ying7ad6e942010-08-02 15:48:24 +0800926 mutex_lock(&ghes_list_mutex);
Huang Yingd334a492010-05-18 14:35:20 +0800927 if (list_empty(&ghes_sci))
928 register_acpi_hed_notifier(&ghes_notifier_sci);
929 list_add_rcu(&ghes->list, &ghes_sci);
Huang Ying7ad6e942010-08-02 15:48:24 +0800930 mutex_unlock(&ghes_list_mutex);
Huang Ying81e88fd2011-01-12 14:44:55 +0800931 break;
932 case ACPI_HEST_NOTIFY_NMI:
Huang Ying67eb2e92011-07-13 13:14:25 +0800933 len = ghes_esource_prealloc_size(generic);
934 ghes_estatus_pool_expand(len);
Huang Ying81e88fd2011-01-12 14:44:55 +0800935 mutex_lock(&ghes_list_mutex);
936 if (list_empty(&ghes_nmi))
Don Zickus9c48f1c2011-09-30 15:06:21 -0400937 register_nmi_handler(NMI_LOCAL, ghes_notify_nmi, 0,
938 "ghes");
Huang Ying81e88fd2011-01-12 14:44:55 +0800939 list_add_rcu(&ghes->list, &ghes_nmi);
940 mutex_unlock(&ghes_list_mutex);
941 break;
942 default:
943 BUG();
Huang Yingd334a492010-05-18 14:35:20 +0800944 }
Huang Ying7ad6e942010-08-02 15:48:24 +0800945 platform_set_drvdata(ghes_dev, ghes);
Huang Yingd334a492010-05-18 14:35:20 +0800946
947 return 0;
948err:
Huang Ying7ad6e942010-08-02 15:48:24 +0800949 if (ghes) {
Huang Yingd334a492010-05-18 14:35:20 +0800950 ghes_fini(ghes);
951 kfree(ghes);
952 }
Huang Ying7ad6e942010-08-02 15:48:24 +0800953 return rc;
Huang Yingd334a492010-05-18 14:35:20 +0800954}
955
Huang Ying7ad6e942010-08-02 15:48:24 +0800956static int __devexit ghes_remove(struct platform_device *ghes_dev)
957{
958 struct ghes *ghes;
959 struct acpi_hest_generic *generic;
Huang Ying67eb2e92011-07-13 13:14:25 +0800960 unsigned long len;
Huang Ying7ad6e942010-08-02 15:48:24 +0800961
962 ghes = platform_get_drvdata(ghes_dev);
963 generic = ghes->generic;
964
Huang Ying81e88fd2011-01-12 14:44:55 +0800965 ghes->flags |= GHES_EXITING;
Huang Ying7ad6e942010-08-02 15:48:24 +0800966 switch (generic->notify.type) {
Huang Ying81e88fd2011-01-12 14:44:55 +0800967 case ACPI_HEST_NOTIFY_POLLED:
968 del_timer_sync(&ghes->timer);
969 break;
970 case ACPI_HEST_NOTIFY_EXTERNAL:
971 free_irq(ghes->irq, ghes);
972 break;
Huang Ying7ad6e942010-08-02 15:48:24 +0800973 case ACPI_HEST_NOTIFY_SCI:
974 mutex_lock(&ghes_list_mutex);
975 list_del_rcu(&ghes->list);
976 if (list_empty(&ghes_sci))
977 unregister_acpi_hed_notifier(&ghes_notifier_sci);
978 mutex_unlock(&ghes_list_mutex);
979 break;
Huang Ying81e88fd2011-01-12 14:44:55 +0800980 case ACPI_HEST_NOTIFY_NMI:
981 mutex_lock(&ghes_list_mutex);
982 list_del_rcu(&ghes->list);
983 if (list_empty(&ghes_nmi))
Don Zickus9c48f1c2011-09-30 15:06:21 -0400984 unregister_nmi_handler(NMI_LOCAL, "ghes");
Huang Ying81e88fd2011-01-12 14:44:55 +0800985 mutex_unlock(&ghes_list_mutex);
986 /*
987 * To synchronize with NMI handler, ghes can only be
988 * freed after NMI handler finishes.
989 */
990 synchronize_rcu();
Huang Ying67eb2e92011-07-13 13:14:25 +0800991 len = ghes_esource_prealloc_size(generic);
992 ghes_estatus_pool_shrink(len);
Huang Ying81e88fd2011-01-12 14:44:55 +0800993 break;
Huang Ying7ad6e942010-08-02 15:48:24 +0800994 default:
995 BUG();
996 break;
997 }
998
Huang Ying7ad6e942010-08-02 15:48:24 +0800999 ghes_fini(ghes);
1000 kfree(ghes);
1001
1002 platform_set_drvdata(ghes_dev, NULL);
1003
1004 return 0;
1005}
1006
1007static struct platform_driver ghes_platform_driver = {
1008 .driver = {
1009 .name = "GHES",
1010 .owner = THIS_MODULE,
1011 },
1012 .probe = ghes_probe,
1013 .remove = ghes_remove,
1014};
1015
Huang Yingd334a492010-05-18 14:35:20 +08001016static int __init ghes_init(void)
1017{
Huang Ying81e88fd2011-01-12 14:44:55 +08001018 int rc;
1019
Huang Yingd334a492010-05-18 14:35:20 +08001020 if (acpi_disabled)
1021 return -ENODEV;
1022
1023 if (hest_disable) {
1024 pr_info(GHES_PFX "HEST is not enabled!\n");
1025 return -EINVAL;
1026 }
1027
Huang Yingb6a95012011-07-13 13:14:19 +08001028 if (ghes_disable) {
1029 pr_info(GHES_PFX "GHES is not enabled!\n");
1030 return -EINVAL;
1031 }
1032
Huang Ying67eb2e92011-07-13 13:14:25 +08001033 init_irq_work(&ghes_proc_irq_work, ghes_proc_in_irq);
1034
Huang Ying81e88fd2011-01-12 14:44:55 +08001035 rc = ghes_ioremap_init();
1036 if (rc)
1037 goto err;
1038
Huang Ying67eb2e92011-07-13 13:14:25 +08001039 rc = ghes_estatus_pool_init();
Huang Ying81e88fd2011-01-12 14:44:55 +08001040 if (rc)
1041 goto err_ioremap_exit;
1042
Huang Ying152cef42011-07-13 13:14:26 +08001043 rc = ghes_estatus_pool_expand(GHES_ESTATUS_CACHE_AVG_SIZE *
1044 GHES_ESTATUS_CACHE_ALLOCED_MAX);
1045 if (rc)
1046 goto err_pool_exit;
1047
Huang Ying67eb2e92011-07-13 13:14:25 +08001048 rc = platform_driver_register(&ghes_platform_driver);
1049 if (rc)
1050 goto err_pool_exit;
1051
Huang Ying9fb0bfe2011-07-13 13:14:21 +08001052 rc = apei_osc_setup();
1053 if (rc == 0 && osc_sb_apei_support_acked)
1054 pr_info(GHES_PFX "APEI firmware first mode is enabled by APEI bit and WHEA _OSC.\n");
1055 else if (rc == 0 && !osc_sb_apei_support_acked)
1056 pr_info(GHES_PFX "APEI firmware first mode is enabled by WHEA _OSC.\n");
1057 else if (rc && osc_sb_apei_support_acked)
1058 pr_info(GHES_PFX "APEI firmware first mode is enabled by APEI bit.\n");
1059 else
1060 pr_info(GHES_PFX "Failed to enable APEI firmware first mode.\n");
1061
Huang Ying81e88fd2011-01-12 14:44:55 +08001062 return 0;
Huang Ying67eb2e92011-07-13 13:14:25 +08001063err_pool_exit:
1064 ghes_estatus_pool_exit();
Huang Ying81e88fd2011-01-12 14:44:55 +08001065err_ioremap_exit:
1066 ghes_ioremap_exit();
1067err:
1068 return rc;
Huang Yingd334a492010-05-18 14:35:20 +08001069}
1070
1071static void __exit ghes_exit(void)
1072{
Huang Ying7ad6e942010-08-02 15:48:24 +08001073 platform_driver_unregister(&ghes_platform_driver);
Huang Ying67eb2e92011-07-13 13:14:25 +08001074 ghes_estatus_pool_exit();
Huang Ying81e88fd2011-01-12 14:44:55 +08001075 ghes_ioremap_exit();
Huang Yingd334a492010-05-18 14:35:20 +08001076}
1077
1078module_init(ghes_init);
1079module_exit(ghes_exit);
1080
1081MODULE_AUTHOR("Huang Ying");
1082MODULE_DESCRIPTION("APEI Generic Hardware Error Source support");
1083MODULE_LICENSE("GPL");
Huang Ying7ad6e942010-08-02 15:48:24 +08001084MODULE_ALIAS("platform:GHES");