Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 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 | * |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 15 | * Copyright 2010,2011 Intel Corp. |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 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 | * 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 Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 38 | #include <linux/timer.h> |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 39 | #include <linux/cper.h> |
| 40 | #include <linux/kdebug.h> |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 41 | #include <linux/platform_device.h> |
| 42 | #include <linux/mutex.h> |
Huang Ying | 32c361f | 2010-12-07 10:22:31 +0800 | [diff] [blame] | 43 | #include <linux/ratelimit.h> |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 44 | #include <linux/vmalloc.h> |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 45 | #include <linux/irq_work.h> |
| 46 | #include <linux/llist.h> |
| 47 | #include <linux/genalloc.h> |
Huang Ying | a654e5e | 2011-12-08 11:25:41 +0800 | [diff] [blame] | 48 | #include <linux/pci.h> |
| 49 | #include <linux/aer.h> |
Mauro Carvalho Chehab | 40e0641 | 2013-02-15 05:41:22 -0300 | [diff] [blame] | 50 | |
| 51 | #include <acpi/ghes.h> |
Tomasz Nowicki | 9dae3d0 | 2014-07-22 11:20:11 +0200 | [diff] [blame^] | 52 | #include <acpi/apei.h> |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 53 | #include <asm/tlbflush.h> |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 54 | #include <asm/nmi.h> |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 55 | |
| 56 | #include "apei-internal.h" |
| 57 | |
| 58 | #define GHES_PFX "GHES: " |
| 59 | |
| 60 | #define GHES_ESTATUS_MAX_SIZE 65536 |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 61 | #define GHES_ESOURCE_PREALLOC_MAX_SIZE 65536 |
| 62 | |
| 63 | #define GHES_ESTATUS_POOL_MIN_ALLOC_ORDER 3 |
| 64 | |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 65 | /* 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 Brown | 70cb6e1 | 2011-08-02 18:00:21 -0400 | [diff] [blame] | 70 | #define GHES_ESTATUS_IN_CACHE_MAX_NSEC 10000000000ULL |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 71 | /* 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, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 77 | ((struct acpi_generic_status *) \ |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 78 | ((struct ghes_estatus_cache *)(estatus_cache) + 1)) |
| 79 | |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 80 | #define GHES_ESTATUS_NODE_LEN(estatus_len) \ |
| 81 | (sizeof(struct ghes_estatus_node) + (estatus_len)) |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 82 | #define GHES_ESTATUS_FROM_NODE(estatus_node) \ |
| 83 | ((struct acpi_generic_status *) \ |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 84 | ((struct ghes_estatus_node *)(estatus_node) + 1)) |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 85 | |
Rusty Russell | 90ab5ee | 2012-01-13 09:32:20 +1030 | [diff] [blame] | 86 | bool ghes_disable; |
Huang Ying | b6a9501 | 2011-07-13 13:14:19 +0800 | [diff] [blame] | 87 | module_param_named(disable, ghes_disable, bool, 0); |
| 88 | |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 89 | static int ghes_panic_timeout __read_mostly = 30; |
| 90 | |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 91 | /* |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 92 | * 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 Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 95 | * |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 96 | * RCU is used for these lists, so ghes_list_mutex is only used for |
| 97 | * list changing, not for traversing. |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 98 | */ |
| 99 | static LIST_HEAD(ghes_sci); |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 100 | static LIST_HEAD(ghes_nmi); |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 101 | static DEFINE_MUTEX(ghes_list_mutex); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 102 | |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 103 | /* |
| 104 | * NMI may be triggered on any CPU, so ghes_nmi_lock is used for |
| 105 | * mutual exclusion. |
| 106 | */ |
| 107 | static 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 */ |
| 125 | static 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 | */ |
| 130 | static DEFINE_RAW_SPINLOCK(ghes_ioremap_lock_nmi); |
| 131 | static DEFINE_SPINLOCK(ghes_ioremap_lock_irq); |
| 132 | |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 133 | /* |
| 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 | */ |
| 141 | static struct gen_pool *ghes_estatus_pool; |
| 142 | static unsigned long ghes_estatus_pool_size_request; |
| 143 | static struct llist_head ghes_estatus_llist; |
| 144 | static struct irq_work ghes_proc_irq_work; |
| 145 | |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 146 | struct ghes_estatus_cache *ghes_estatus_caches[GHES_ESTATUS_CACHES_SIZE]; |
| 147 | static atomic_t ghes_estatus_cache_alloced; |
| 148 | |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 149 | static 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 | |
| 161 | static void ghes_ioremap_exit(void) |
| 162 | { |
| 163 | free_vm_area(ghes_ioremap_area); |
| 164 | } |
| 165 | |
| 166 | static 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 | |
| 177 | static 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 | |
| 188 | static 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 | |
| 198 | static 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 Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 208 | static 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 | |
| 216 | static 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 | |
| 223 | static 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 | |
| 230 | static 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 | |
| 252 | static void ghes_estatus_pool_shrink(unsigned long len) |
| 253 | { |
| 254 | ghes_estatus_pool_size_request -= PAGE_ALIGN(len); |
| 255 | } |
| 256 | |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 257 | static 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 Ying | 34ddeb0 | 2012-06-12 11:20:19 +0800 | [diff] [blame] | 267 | rc = apei_map_generic_address(&generic->error_status_address); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 268 | 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 | |
| 286 | err_unmap: |
Huang Ying | 34ddeb0 | 2012-06-12 11:20:19 +0800 | [diff] [blame] | 287 | apei_unmap_generic_address(&generic->error_status_address); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 288 | err_free: |
| 289 | kfree(ghes); |
| 290 | return ERR_PTR(rc); |
| 291 | } |
| 292 | |
| 293 | static void ghes_fini(struct ghes *ghes) |
| 294 | { |
| 295 | kfree(ghes->estatus); |
Huang Ying | 34ddeb0 | 2012-06-12 11:20:19 +0800 | [diff] [blame] | 296 | apei_unmap_generic_address(&ghes->generic->error_status_address); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 297 | } |
| 298 | |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 299 | static inline int ghes_severity(int severity) |
| 300 | { |
| 301 | switch (severity) { |
Huang Ying | ad4ecef | 2010-08-02 15:48:23 +0800 | [diff] [blame] | 302 | 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 Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 310 | default: |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 311 | /* Unknown, go panic */ |
Huang Ying | ad4ecef | 2010-08-02 15:48:23 +0800 | [diff] [blame] | 312 | return GHES_SEV_PANIC; |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 313 | } |
| 314 | } |
| 315 | |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 316 | static void ghes_copy_tofrom_phys(void *buffer, u64 paddr, u32 len, |
| 317 | int from_phys) |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 318 | { |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 319 | void __iomem *vaddr; |
| 320 | unsigned long flags = 0; |
| 321 | int in_nmi = in_nmi(); |
| 322 | u64 offset; |
| 323 | u32 trunk; |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 324 | |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 325 | 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 Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 351 | } |
| 352 | |
| 353 | static 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 Stowe | 700130b | 2011-11-07 16:23:41 -0700 | [diff] [blame] | 360 | rc = apei_read(&buf_paddr, &g->error_status_address); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 361 | 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 Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 371 | ghes_copy_tofrom_phys(ghes->estatus, buf_paddr, |
| 372 | sizeof(*ghes->estatus), 1); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 373 | 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, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 380 | len = cper_estatus_len(ghes->estatus); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 381 | if (len < sizeof(*ghes->estatus)) |
| 382 | goto err_read_block; |
| 383 | if (len > ghes->generic->error_block_length) |
| 384 | goto err_read_block; |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 385 | if (cper_estatus_check_header(ghes->estatus)) |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 386 | goto err_read_block; |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 387 | ghes_copy_tofrom_phys(ghes->estatus + 1, |
| 388 | buf_paddr + sizeof(*ghes->estatus), |
| 389 | len - sizeof(*ghes->estatus), 1); |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 390 | if (cper_estatus_check(ghes->estatus)) |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 391 | goto err_read_block; |
| 392 | rc = 0; |
| 393 | |
| 394 | err_read_block: |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 395 | if (rc && !silent && printk_ratelimit()) |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 396 | pr_warning(FW_WARN GHES_PFX |
| 397 | "Failed to read error status block!\n"); |
| 398 | return rc; |
| 399 | } |
| 400 | |
| 401 | static 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, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 411 | static void ghes_handle_memory_failure(struct acpi_generic_data *gdata, int sev) |
Naveen N. Rao | cf870c7 | 2013-07-10 14:57:01 +0530 | [diff] [blame] | 412 | { |
| 413 | #ifdef CONFIG_ACPI_APEI_MEMORY_FAILURE |
| 414 | unsigned long pfn; |
Chen, Gong | ca104ed | 2013-11-25 02:15:01 -0500 | [diff] [blame] | 415 | int flags = -1; |
Naveen N. Rao | cf870c7 | 2013-07-10 14:57:01 +0530 | [diff] [blame] | 416 | 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, Gong | ca104ed | 2013-11-25 02:15:01 -0500 | [diff] [blame] | 420 | 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. Rao | cf870c7 | 2013-07-10 14:57:01 +0530 | [diff] [blame] | 432 | if (sec_sev == GHES_SEV_CORRECTED && |
Chen, Gong | ca104ed | 2013-11-25 02:15:01 -0500 | [diff] [blame] | 433 | (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. Rao | cf870c7 | 2013-07-10 14:57:01 +0530 | [diff] [blame] | 440 | #endif |
| 441 | } |
| 442 | |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 443 | static void ghes_do_proc(struct ghes *ghes, |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 444 | const struct acpi_generic_status *estatus) |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 445 | { |
Huang Ying | ba61ca4 | 2011-07-13 13:14:28 +0800 | [diff] [blame] | 446 | int sev, sec_sev; |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 447 | struct acpi_generic_data *gdata; |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 448 | |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 449 | sev = ghes_severity(estatus->error_severity); |
| 450 | apei_estatus_for_each_section(estatus, gdata) { |
Huang Ying | ba61ca4 | 2011-07-13 13:14:28 +0800 | [diff] [blame] | 451 | sec_sev = ghes_severity(gdata->error_severity); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 452 | if (!uuid_le_cmp(*(uuid_le *)gdata->section_type, |
| 453 | CPER_SEC_PLATFORM_MEM)) { |
Huang Ying | ba61ca4 | 2011-07-13 13:14:28 +0800 | [diff] [blame] | 454 | struct cper_sec_mem_err *mem_err; |
| 455 | mem_err = (struct cper_sec_mem_err *)(gdata+1); |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 456 | ghes_edac_report_mem_error(ghes, sev, mem_err); |
| 457 | |
Tomasz Nowicki | 9dae3d0 | 2014-07-22 11:20:11 +0200 | [diff] [blame^] | 458 | arch_apei_report_mem_error(sev, mem_err); |
Naveen N. Rao | cf870c7 | 2013-07-10 14:57:01 +0530 | [diff] [blame] | 459 | ghes_handle_memory_failure(gdata, sev); |
Huang Ying | ba61ca4 | 2011-07-13 13:14:28 +0800 | [diff] [blame] | 460 | } |
Huang Ying | a654e5e | 2011-12-08 11:25:41 +0800 | [diff] [blame] | 461 | #ifdef CONFIG_ACPI_APEI_PCIEAER |
| 462 | else if (!uuid_le_cmp(*(uuid_le *)gdata->section_type, |
| 463 | CPER_SEC_PCIE)) { |
| 464 | struct cper_sec_pcie *pcie_err; |
| 465 | pcie_err = (struct cper_sec_pcie *)(gdata+1); |
| 466 | if (sev == GHES_SEV_RECOVERABLE && |
| 467 | sec_sev == GHES_SEV_RECOVERABLE && |
| 468 | pcie_err->validation_bits & CPER_PCIE_VALID_DEVICE_ID && |
| 469 | pcie_err->validation_bits & CPER_PCIE_VALID_AER_INFO) { |
| 470 | unsigned int devfn; |
| 471 | int aer_severity; |
Betty Dall | 0ba98ec | 2013-06-06 12:10:50 -0600 | [diff] [blame] | 472 | |
Huang Ying | a654e5e | 2011-12-08 11:25:41 +0800 | [diff] [blame] | 473 | devfn = PCI_DEVFN(pcie_err->device_id.device, |
| 474 | pcie_err->device_id.function); |
| 475 | aer_severity = cper_severity_to_aer(sev); |
Betty Dall | 0ba98ec | 2013-06-06 12:10:50 -0600 | [diff] [blame] | 476 | |
| 477 | /* |
| 478 | * If firmware reset the component to contain |
| 479 | * the error, we must reinitialize it before |
| 480 | * use, so treat it as a fatal AER error. |
| 481 | */ |
| 482 | if (gdata->flags & CPER_SEC_RESET) |
| 483 | aer_severity = AER_FATAL; |
| 484 | |
Huang Ying | a654e5e | 2011-12-08 11:25:41 +0800 | [diff] [blame] | 485 | aer_recover_queue(pcie_err->device_id.segment, |
| 486 | pcie_err->device_id.bus, |
Lance Ortiz | 37448ad | 2013-05-30 08:25:12 -0600 | [diff] [blame] | 487 | devfn, aer_severity, |
| 488 | (struct aer_capability_regs *) |
| 489 | pcie_err->aer_info); |
Huang Ying | a654e5e | 2011-12-08 11:25:41 +0800 | [diff] [blame] | 490 | } |
| 491 | |
| 492 | } |
| 493 | #endif |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 494 | } |
Huang Ying | 32c361f | 2010-12-07 10:22:31 +0800 | [diff] [blame] | 495 | } |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 496 | |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 497 | static void __ghes_print_estatus(const char *pfx, |
| 498 | const struct acpi_hest_generic *generic, |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 499 | const struct acpi_generic_status *estatus) |
Huang Ying | 32c361f | 2010-12-07 10:22:31 +0800 | [diff] [blame] | 500 | { |
Huang Ying | 5ba82ab | 2011-12-08 11:25:44 +0800 | [diff] [blame] | 501 | static atomic_t seqno; |
| 502 | unsigned int curr_seqno; |
| 503 | char pfx_seq[64]; |
| 504 | |
Huang Ying | 32c361f | 2010-12-07 10:22:31 +0800 | [diff] [blame] | 505 | if (pfx == NULL) { |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 506 | if (ghes_severity(estatus->error_severity) <= |
Huang Ying | 32c361f | 2010-12-07 10:22:31 +0800 | [diff] [blame] | 507 | GHES_SEV_CORRECTED) |
Huang Ying | 5ba82ab | 2011-12-08 11:25:44 +0800 | [diff] [blame] | 508 | pfx = KERN_WARNING; |
Huang Ying | 32c361f | 2010-12-07 10:22:31 +0800 | [diff] [blame] | 509 | else |
Huang Ying | 5ba82ab | 2011-12-08 11:25:44 +0800 | [diff] [blame] | 510 | pfx = KERN_ERR; |
Huang Ying | 32c361f | 2010-12-07 10:22:31 +0800 | [diff] [blame] | 511 | } |
Huang Ying | 5ba82ab | 2011-12-08 11:25:44 +0800 | [diff] [blame] | 512 | curr_seqno = atomic_inc_return(&seqno); |
| 513 | snprintf(pfx_seq, sizeof(pfx_seq), "%s{%u}" HW_ERR, pfx, curr_seqno); |
Huang Ying | 5588340 | 2011-07-13 13:14:15 +0800 | [diff] [blame] | 514 | printk("%s""Hardware error from APEI Generic Hardware Error Source: %d\n", |
Huang Ying | 5ba82ab | 2011-12-08 11:25:44 +0800 | [diff] [blame] | 515 | pfx_seq, generic->header.source_id); |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 516 | cper_estatus_print(pfx_seq, estatus); |
Huang Ying | 5588340 | 2011-07-13 13:14:15 +0800 | [diff] [blame] | 517 | } |
| 518 | |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 519 | static int ghes_print_estatus(const char *pfx, |
| 520 | const struct acpi_hest_generic *generic, |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 521 | const struct acpi_generic_status *estatus) |
Huang Ying | 5588340 | 2011-07-13 13:14:15 +0800 | [diff] [blame] | 522 | { |
| 523 | /* Not more than 2 messages every 5 seconds */ |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 524 | static DEFINE_RATELIMIT_STATE(ratelimit_corrected, 5*HZ, 2); |
| 525 | static DEFINE_RATELIMIT_STATE(ratelimit_uncorrected, 5*HZ, 2); |
| 526 | struct ratelimit_state *ratelimit; |
Huang Ying | 5588340 | 2011-07-13 13:14:15 +0800 | [diff] [blame] | 527 | |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 528 | if (ghes_severity(estatus->error_severity) <= GHES_SEV_CORRECTED) |
| 529 | ratelimit = &ratelimit_corrected; |
| 530 | else |
| 531 | ratelimit = &ratelimit_uncorrected; |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 532 | if (__ratelimit(ratelimit)) { |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 533 | __ghes_print_estatus(pfx, generic, estatus); |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 534 | return 1; |
| 535 | } |
| 536 | return 0; |
| 537 | } |
| 538 | |
| 539 | /* |
| 540 | * GHES error status reporting throttle, to report more kinds of |
| 541 | * errors, instead of just most frequently occurred errors. |
| 542 | */ |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 543 | static int ghes_estatus_cached(struct acpi_generic_status *estatus) |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 544 | { |
| 545 | u32 len; |
| 546 | int i, cached = 0; |
| 547 | unsigned long long now; |
| 548 | struct ghes_estatus_cache *cache; |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 549 | struct acpi_generic_status *cache_estatus; |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 550 | |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 551 | len = cper_estatus_len(estatus); |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 552 | rcu_read_lock(); |
| 553 | for (i = 0; i < GHES_ESTATUS_CACHES_SIZE; i++) { |
| 554 | cache = rcu_dereference(ghes_estatus_caches[i]); |
| 555 | if (cache == NULL) |
| 556 | continue; |
| 557 | if (len != cache->estatus_len) |
| 558 | continue; |
| 559 | cache_estatus = GHES_ESTATUS_FROM_CACHE(cache); |
| 560 | if (memcmp(estatus, cache_estatus, len)) |
| 561 | continue; |
| 562 | atomic_inc(&cache->count); |
| 563 | now = sched_clock(); |
| 564 | if (now - cache->time_in < GHES_ESTATUS_IN_CACHE_MAX_NSEC) |
| 565 | cached = 1; |
| 566 | break; |
| 567 | } |
| 568 | rcu_read_unlock(); |
| 569 | return cached; |
| 570 | } |
| 571 | |
| 572 | static struct ghes_estatus_cache *ghes_estatus_cache_alloc( |
| 573 | struct acpi_hest_generic *generic, |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 574 | struct acpi_generic_status *estatus) |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 575 | { |
| 576 | int alloced; |
| 577 | u32 len, cache_len; |
| 578 | struct ghes_estatus_cache *cache; |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 579 | struct acpi_generic_status *cache_estatus; |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 580 | |
| 581 | alloced = atomic_add_return(1, &ghes_estatus_cache_alloced); |
| 582 | if (alloced > GHES_ESTATUS_CACHE_ALLOCED_MAX) { |
| 583 | atomic_dec(&ghes_estatus_cache_alloced); |
| 584 | return NULL; |
| 585 | } |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 586 | len = cper_estatus_len(estatus); |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 587 | cache_len = GHES_ESTATUS_CACHE_LEN(len); |
| 588 | cache = (void *)gen_pool_alloc(ghes_estatus_pool, cache_len); |
| 589 | if (!cache) { |
| 590 | atomic_dec(&ghes_estatus_cache_alloced); |
| 591 | return NULL; |
| 592 | } |
| 593 | cache_estatus = GHES_ESTATUS_FROM_CACHE(cache); |
| 594 | memcpy(cache_estatus, estatus, len); |
| 595 | cache->estatus_len = len; |
| 596 | atomic_set(&cache->count, 0); |
| 597 | cache->generic = generic; |
| 598 | cache->time_in = sched_clock(); |
| 599 | return cache; |
| 600 | } |
| 601 | |
| 602 | static void ghes_estatus_cache_free(struct ghes_estatus_cache *cache) |
| 603 | { |
| 604 | u32 len; |
| 605 | |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 606 | len = cper_estatus_len(GHES_ESTATUS_FROM_CACHE(cache)); |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 607 | len = GHES_ESTATUS_CACHE_LEN(len); |
| 608 | gen_pool_free(ghes_estatus_pool, (unsigned long)cache, len); |
| 609 | atomic_dec(&ghes_estatus_cache_alloced); |
| 610 | } |
| 611 | |
| 612 | static void ghes_estatus_cache_rcu_free(struct rcu_head *head) |
| 613 | { |
| 614 | struct ghes_estatus_cache *cache; |
| 615 | |
| 616 | cache = container_of(head, struct ghes_estatus_cache, rcu); |
| 617 | ghes_estatus_cache_free(cache); |
| 618 | } |
| 619 | |
| 620 | static void ghes_estatus_cache_add( |
| 621 | struct acpi_hest_generic *generic, |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 622 | struct acpi_generic_status *estatus) |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 623 | { |
| 624 | int i, slot = -1, count; |
| 625 | unsigned long long now, duration, period, max_period = 0; |
| 626 | struct ghes_estatus_cache *cache, *slot_cache = NULL, *new_cache; |
| 627 | |
| 628 | new_cache = ghes_estatus_cache_alloc(generic, estatus); |
| 629 | if (new_cache == NULL) |
| 630 | return; |
| 631 | rcu_read_lock(); |
| 632 | now = sched_clock(); |
| 633 | for (i = 0; i < GHES_ESTATUS_CACHES_SIZE; i++) { |
| 634 | cache = rcu_dereference(ghes_estatus_caches[i]); |
| 635 | if (cache == NULL) { |
| 636 | slot = i; |
| 637 | slot_cache = NULL; |
| 638 | break; |
| 639 | } |
| 640 | duration = now - cache->time_in; |
| 641 | if (duration >= GHES_ESTATUS_IN_CACHE_MAX_NSEC) { |
| 642 | slot = i; |
| 643 | slot_cache = cache; |
| 644 | break; |
| 645 | } |
| 646 | count = atomic_read(&cache->count); |
Len Brown | 70cb6e1 | 2011-08-02 18:00:21 -0400 | [diff] [blame] | 647 | period = duration; |
| 648 | do_div(period, (count + 1)); |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 649 | if (period > max_period) { |
| 650 | max_period = period; |
| 651 | slot = i; |
| 652 | slot_cache = cache; |
| 653 | } |
| 654 | } |
| 655 | /* new_cache must be put into array after its contents are written */ |
| 656 | smp_wmb(); |
| 657 | if (slot != -1 && cmpxchg(ghes_estatus_caches + slot, |
| 658 | slot_cache, new_cache) == slot_cache) { |
| 659 | if (slot_cache) |
| 660 | call_rcu(&slot_cache->rcu, ghes_estatus_cache_rcu_free); |
| 661 | } else |
| 662 | ghes_estatus_cache_free(new_cache); |
| 663 | rcu_read_unlock(); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | static int ghes_proc(struct ghes *ghes) |
| 667 | { |
| 668 | int rc; |
| 669 | |
| 670 | rc = ghes_read_estatus(ghes, 0); |
| 671 | if (rc) |
| 672 | goto out; |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 673 | if (!ghes_estatus_cached(ghes->estatus)) { |
| 674 | if (ghes_print_estatus(NULL, ghes->generic, ghes->estatus)) |
| 675 | ghes_estatus_cache_add(ghes->generic, ghes->estatus); |
| 676 | } |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 677 | ghes_do_proc(ghes, ghes->estatus); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 678 | out: |
| 679 | ghes_clear_estatus(ghes); |
| 680 | return 0; |
| 681 | } |
| 682 | |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 683 | static void ghes_add_timer(struct ghes *ghes) |
| 684 | { |
| 685 | struct acpi_hest_generic *g = ghes->generic; |
| 686 | unsigned long expire; |
| 687 | |
| 688 | if (!g->notify.poll_interval) { |
| 689 | pr_warning(FW_WARN GHES_PFX "Poll interval is 0 for generic hardware error source: %d, disabled.\n", |
| 690 | g->header.source_id); |
| 691 | return; |
| 692 | } |
| 693 | expire = jiffies + msecs_to_jiffies(g->notify.poll_interval); |
| 694 | ghes->timer.expires = round_jiffies_relative(expire); |
| 695 | add_timer(&ghes->timer); |
| 696 | } |
| 697 | |
| 698 | static void ghes_poll_func(unsigned long data) |
| 699 | { |
| 700 | struct ghes *ghes = (void *)data; |
| 701 | |
| 702 | ghes_proc(ghes); |
| 703 | if (!(ghes->flags & GHES_EXITING)) |
| 704 | ghes_add_timer(ghes); |
| 705 | } |
| 706 | |
| 707 | static irqreturn_t ghes_irq_func(int irq, void *data) |
| 708 | { |
| 709 | struct ghes *ghes = data; |
| 710 | int rc; |
| 711 | |
| 712 | rc = ghes_proc(ghes); |
| 713 | if (rc) |
| 714 | return IRQ_NONE; |
| 715 | |
| 716 | return IRQ_HANDLED; |
| 717 | } |
| 718 | |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 719 | static int ghes_notify_sci(struct notifier_block *this, |
| 720 | unsigned long event, void *data) |
| 721 | { |
| 722 | struct ghes *ghes; |
| 723 | int ret = NOTIFY_DONE; |
| 724 | |
| 725 | rcu_read_lock(); |
| 726 | list_for_each_entry_rcu(ghes, &ghes_sci, list) { |
| 727 | if (!ghes_proc(ghes)) |
| 728 | ret = NOTIFY_OK; |
| 729 | } |
| 730 | rcu_read_unlock(); |
| 731 | |
| 732 | return ret; |
| 733 | } |
| 734 | |
Huang Ying | 46d12f0 | 2011-12-08 11:25:45 +0800 | [diff] [blame] | 735 | static struct llist_node *llist_nodes_reverse(struct llist_node *llnode) |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 736 | { |
Huang Ying | 46d12f0 | 2011-12-08 11:25:45 +0800 | [diff] [blame] | 737 | struct llist_node *next, *tail = NULL; |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 738 | |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 739 | while (llnode) { |
| 740 | next = llnode->next; |
| 741 | llnode->next = tail; |
| 742 | tail = llnode; |
| 743 | llnode = next; |
| 744 | } |
Huang Ying | 46d12f0 | 2011-12-08 11:25:45 +0800 | [diff] [blame] | 745 | |
| 746 | return tail; |
| 747 | } |
| 748 | |
| 749 | static void ghes_proc_in_irq(struct irq_work *irq_work) |
| 750 | { |
| 751 | struct llist_node *llnode, *next; |
| 752 | struct ghes_estatus_node *estatus_node; |
| 753 | struct acpi_hest_generic *generic; |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 754 | struct acpi_generic_status *estatus; |
Huang Ying | 46d12f0 | 2011-12-08 11:25:45 +0800 | [diff] [blame] | 755 | u32 len, node_len; |
| 756 | |
| 757 | llnode = llist_del_all(&ghes_estatus_llist); |
| 758 | /* |
| 759 | * Because the time order of estatus in list is reversed, |
| 760 | * revert it back to proper order. |
| 761 | */ |
| 762 | llnode = llist_nodes_reverse(llnode); |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 763 | while (llnode) { |
| 764 | next = llnode->next; |
| 765 | estatus_node = llist_entry(llnode, struct ghes_estatus_node, |
| 766 | llnode); |
| 767 | estatus = GHES_ESTATUS_FROM_NODE(estatus_node); |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 768 | len = cper_estatus_len(estatus); |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 769 | node_len = GHES_ESTATUS_NODE_LEN(len); |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 770 | ghes_do_proc(estatus_node->ghes, estatus); |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 771 | if (!ghes_estatus_cached(estatus)) { |
| 772 | generic = estatus_node->generic; |
| 773 | if (ghes_print_estatus(NULL, generic, estatus)) |
| 774 | ghes_estatus_cache_add(generic, estatus); |
| 775 | } |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 776 | gen_pool_free(ghes_estatus_pool, (unsigned long)estatus_node, |
| 777 | node_len); |
| 778 | llnode = next; |
| 779 | } |
| 780 | } |
| 781 | |
Huang Ying | 46d12f0 | 2011-12-08 11:25:45 +0800 | [diff] [blame] | 782 | static void ghes_print_queued_estatus(void) |
| 783 | { |
| 784 | struct llist_node *llnode; |
| 785 | struct ghes_estatus_node *estatus_node; |
| 786 | struct acpi_hest_generic *generic; |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 787 | struct acpi_generic_status *estatus; |
Huang Ying | 46d12f0 | 2011-12-08 11:25:45 +0800 | [diff] [blame] | 788 | u32 len, node_len; |
| 789 | |
| 790 | llnode = llist_del_all(&ghes_estatus_llist); |
| 791 | /* |
| 792 | * Because the time order of estatus in list is reversed, |
| 793 | * revert it back to proper order. |
| 794 | */ |
| 795 | llnode = llist_nodes_reverse(llnode); |
| 796 | while (llnode) { |
| 797 | estatus_node = llist_entry(llnode, struct ghes_estatus_node, |
| 798 | llnode); |
| 799 | estatus = GHES_ESTATUS_FROM_NODE(estatus_node); |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 800 | len = cper_estatus_len(estatus); |
Huang Ying | 46d12f0 | 2011-12-08 11:25:45 +0800 | [diff] [blame] | 801 | node_len = GHES_ESTATUS_NODE_LEN(len); |
| 802 | generic = estatus_node->generic; |
| 803 | ghes_print_estatus(NULL, generic, estatus); |
| 804 | llnode = llnode->next; |
| 805 | } |
| 806 | } |
| 807 | |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 808 | static int ghes_notify_nmi(unsigned int cmd, struct pt_regs *regs) |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 809 | { |
| 810 | struct ghes *ghes, *ghes_global = NULL; |
| 811 | int sev, sev_global = -1; |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 812 | int ret = NMI_DONE; |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 813 | |
| 814 | raw_spin_lock(&ghes_nmi_lock); |
| 815 | list_for_each_entry_rcu(ghes, &ghes_nmi, list) { |
| 816 | if (ghes_read_estatus(ghes, 1)) { |
| 817 | ghes_clear_estatus(ghes); |
| 818 | continue; |
| 819 | } |
| 820 | sev = ghes_severity(ghes->estatus->error_severity); |
| 821 | if (sev > sev_global) { |
| 822 | sev_global = sev; |
| 823 | ghes_global = ghes; |
| 824 | } |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 825 | ret = NMI_HANDLED; |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 826 | } |
| 827 | |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 828 | if (ret == NMI_DONE) |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 829 | goto out; |
| 830 | |
| 831 | if (sev_global >= GHES_SEV_PANIC) { |
| 832 | oops_begin(); |
Huang Ying | 46d12f0 | 2011-12-08 11:25:45 +0800 | [diff] [blame] | 833 | ghes_print_queued_estatus(); |
Huang Ying | 5ba82ab | 2011-12-08 11:25:44 +0800 | [diff] [blame] | 834 | __ghes_print_estatus(KERN_EMERG, ghes_global->generic, |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 835 | ghes_global->estatus); |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 836 | /* reboot to log the error! */ |
| 837 | if (panic_timeout == 0) |
| 838 | panic_timeout = ghes_panic_timeout; |
| 839 | panic("Fatal hardware error!"); |
| 840 | } |
| 841 | |
| 842 | list_for_each_entry_rcu(ghes, &ghes_nmi, list) { |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 843 | #ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG |
| 844 | u32 len, node_len; |
| 845 | struct ghes_estatus_node *estatus_node; |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 846 | struct acpi_generic_status *estatus; |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 847 | #endif |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 848 | if (!(ghes->flags & GHES_TO_CLEAR)) |
| 849 | continue; |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 850 | #ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 851 | if (ghes_estatus_cached(ghes->estatus)) |
| 852 | goto next; |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 853 | /* Save estatus for further processing in IRQ context */ |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 854 | len = cper_estatus_len(ghes->estatus); |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 855 | node_len = GHES_ESTATUS_NODE_LEN(len); |
| 856 | estatus_node = (void *)gen_pool_alloc(ghes_estatus_pool, |
| 857 | node_len); |
| 858 | if (estatus_node) { |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 859 | estatus_node->ghes = ghes; |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 860 | estatus_node->generic = ghes->generic; |
| 861 | estatus = GHES_ESTATUS_FROM_NODE(estatus_node); |
| 862 | memcpy(estatus, ghes->estatus, len); |
| 863 | llist_add(&estatus_node->llnode, &ghes_estatus_llist); |
| 864 | } |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 865 | next: |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 866 | #endif |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 867 | ghes_clear_estatus(ghes); |
| 868 | } |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 869 | #ifdef CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG |
| 870 | irq_work_queue(&ghes_proc_irq_work); |
| 871 | #endif |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 872 | |
| 873 | out: |
| 874 | raw_spin_unlock(&ghes_nmi_lock); |
| 875 | return ret; |
| 876 | } |
| 877 | |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 878 | static struct notifier_block ghes_notifier_sci = { |
| 879 | .notifier_call = ghes_notify_sci, |
| 880 | }; |
| 881 | |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 882 | static unsigned long ghes_esource_prealloc_size( |
| 883 | const struct acpi_hest_generic *generic) |
| 884 | { |
| 885 | unsigned long block_length, prealloc_records, prealloc_size; |
| 886 | |
| 887 | block_length = min_t(unsigned long, generic->error_block_length, |
| 888 | GHES_ESTATUS_MAX_SIZE); |
| 889 | prealloc_records = max_t(unsigned long, |
| 890 | generic->records_to_preallocate, 1); |
| 891 | prealloc_size = min_t(unsigned long, block_length * prealloc_records, |
| 892 | GHES_ESOURCE_PREALLOC_MAX_SIZE); |
| 893 | |
| 894 | return prealloc_size; |
| 895 | } |
| 896 | |
Bill Pemberton | da095fd | 2012-11-19 13:22:46 -0500 | [diff] [blame] | 897 | static int ghes_probe(struct platform_device *ghes_dev) |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 898 | { |
| 899 | struct acpi_hest_generic *generic; |
| 900 | struct ghes *ghes = NULL; |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 901 | unsigned long len; |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 902 | int rc = -EINVAL; |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 903 | |
Jin Dongming | 1dd6b20 | 2010-09-29 19:53:53 +0800 | [diff] [blame] | 904 | generic = *(struct acpi_hest_generic **)ghes_dev->dev.platform_data; |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 905 | if (!generic->enabled) |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 906 | return -ENODEV; |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 907 | |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 908 | switch (generic->notify.type) { |
| 909 | case ACPI_HEST_NOTIFY_POLLED: |
| 910 | case ACPI_HEST_NOTIFY_EXTERNAL: |
| 911 | case ACPI_HEST_NOTIFY_SCI: |
| 912 | case ACPI_HEST_NOTIFY_NMI: |
| 913 | break; |
| 914 | case ACPI_HEST_NOTIFY_LOCAL: |
| 915 | pr_warning(GHES_PFX "Generic hardware error source: %d notified via local interrupt is not supported!\n", |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 916 | generic->header.source_id); |
| 917 | goto err; |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 918 | default: |
| 919 | pr_warning(FW_WARN GHES_PFX "Unknown notification type: %u for generic hardware error source: %d\n", |
| 920 | generic->notify.type, generic->header.source_id); |
| 921 | goto err; |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 922 | } |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 923 | |
| 924 | rc = -EIO; |
| 925 | if (generic->error_block_length < |
Chen, Gong | 88f074f | 2013-10-18 14:28:59 -0700 | [diff] [blame] | 926 | sizeof(struct acpi_generic_status)) { |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 927 | pr_warning(FW_BUG GHES_PFX "Invalid error block length: %u for generic hardware error source: %d\n", |
| 928 | generic->error_block_length, |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 929 | generic->header.source_id); |
| 930 | goto err; |
| 931 | } |
| 932 | ghes = ghes_new(generic); |
| 933 | if (IS_ERR(ghes)) { |
| 934 | rc = PTR_ERR(ghes); |
| 935 | ghes = NULL; |
| 936 | goto err; |
| 937 | } |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 938 | |
| 939 | rc = ghes_edac_register(ghes, &ghes_dev->dev); |
| 940 | if (rc < 0) |
| 941 | goto err; |
| 942 | |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 943 | switch (generic->notify.type) { |
| 944 | case ACPI_HEST_NOTIFY_POLLED: |
| 945 | ghes->timer.function = ghes_poll_func; |
| 946 | ghes->timer.data = (unsigned long)ghes; |
| 947 | init_timer_deferrable(&ghes->timer); |
| 948 | ghes_add_timer(ghes); |
| 949 | break; |
| 950 | case ACPI_HEST_NOTIFY_EXTERNAL: |
| 951 | /* External interrupt vector is GSI */ |
Wei Yongjun | a98d4f6 | 2013-06-03 02:08:39 +0000 | [diff] [blame] | 952 | rc = acpi_gsi_to_irq(generic->notify.vector, &ghes->irq); |
| 953 | if (rc) { |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 954 | pr_err(GHES_PFX "Failed to map GSI to IRQ for generic hardware error source: %d\n", |
| 955 | generic->header.source_id); |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 956 | goto err_edac_unreg; |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 957 | } |
Wei Yongjun | a98d4f6 | 2013-06-03 02:08:39 +0000 | [diff] [blame] | 958 | rc = request_irq(ghes->irq, ghes_irq_func, 0, "GHES IRQ", ghes); |
| 959 | if (rc) { |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 960 | pr_err(GHES_PFX "Failed to register IRQ for generic hardware error source: %d\n", |
| 961 | generic->header.source_id); |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 962 | goto err_edac_unreg; |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 963 | } |
| 964 | break; |
| 965 | case ACPI_HEST_NOTIFY_SCI: |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 966 | mutex_lock(&ghes_list_mutex); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 967 | if (list_empty(&ghes_sci)) |
| 968 | register_acpi_hed_notifier(&ghes_notifier_sci); |
| 969 | list_add_rcu(&ghes->list, &ghes_sci); |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 970 | mutex_unlock(&ghes_list_mutex); |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 971 | break; |
| 972 | case ACPI_HEST_NOTIFY_NMI: |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 973 | len = ghes_esource_prealloc_size(generic); |
| 974 | ghes_estatus_pool_expand(len); |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 975 | mutex_lock(&ghes_list_mutex); |
| 976 | if (list_empty(&ghes_nmi)) |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 977 | register_nmi_handler(NMI_LOCAL, ghes_notify_nmi, 0, |
| 978 | "ghes"); |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 979 | list_add_rcu(&ghes->list, &ghes_nmi); |
| 980 | mutex_unlock(&ghes_list_mutex); |
| 981 | break; |
| 982 | default: |
| 983 | BUG(); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 984 | } |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 985 | platform_set_drvdata(ghes_dev, ghes); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 986 | |
| 987 | return 0; |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 988 | err_edac_unreg: |
| 989 | ghes_edac_unregister(ghes); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 990 | err: |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 991 | if (ghes) { |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 992 | ghes_fini(ghes); |
| 993 | kfree(ghes); |
| 994 | } |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 995 | return rc; |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 996 | } |
| 997 | |
Bill Pemberton | b59bc2f | 2012-11-21 23:13:09 +0100 | [diff] [blame] | 998 | static int ghes_remove(struct platform_device *ghes_dev) |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 999 | { |
| 1000 | struct ghes *ghes; |
| 1001 | struct acpi_hest_generic *generic; |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 1002 | unsigned long len; |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 1003 | |
| 1004 | ghes = platform_get_drvdata(ghes_dev); |
| 1005 | generic = ghes->generic; |
| 1006 | |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 1007 | ghes->flags |= GHES_EXITING; |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 1008 | switch (generic->notify.type) { |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 1009 | case ACPI_HEST_NOTIFY_POLLED: |
| 1010 | del_timer_sync(&ghes->timer); |
| 1011 | break; |
| 1012 | case ACPI_HEST_NOTIFY_EXTERNAL: |
| 1013 | free_irq(ghes->irq, ghes); |
| 1014 | break; |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 1015 | case ACPI_HEST_NOTIFY_SCI: |
| 1016 | mutex_lock(&ghes_list_mutex); |
| 1017 | list_del_rcu(&ghes->list); |
| 1018 | if (list_empty(&ghes_sci)) |
| 1019 | unregister_acpi_hed_notifier(&ghes_notifier_sci); |
| 1020 | mutex_unlock(&ghes_list_mutex); |
| 1021 | break; |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 1022 | case ACPI_HEST_NOTIFY_NMI: |
| 1023 | mutex_lock(&ghes_list_mutex); |
| 1024 | list_del_rcu(&ghes->list); |
| 1025 | if (list_empty(&ghes_nmi)) |
Don Zickus | 9c48f1c | 2011-09-30 15:06:21 -0400 | [diff] [blame] | 1026 | unregister_nmi_handler(NMI_LOCAL, "ghes"); |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 1027 | mutex_unlock(&ghes_list_mutex); |
| 1028 | /* |
| 1029 | * To synchronize with NMI handler, ghes can only be |
| 1030 | * freed after NMI handler finishes. |
| 1031 | */ |
| 1032 | synchronize_rcu(); |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 1033 | len = ghes_esource_prealloc_size(generic); |
| 1034 | ghes_estatus_pool_shrink(len); |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 1035 | break; |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 1036 | default: |
| 1037 | BUG(); |
| 1038 | break; |
| 1039 | } |
| 1040 | |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 1041 | ghes_fini(ghes); |
Mauro Carvalho Chehab | 2148054 | 2013-02-15 06:10:39 -0300 | [diff] [blame] | 1042 | |
| 1043 | ghes_edac_unregister(ghes); |
| 1044 | |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 1045 | kfree(ghes); |
| 1046 | |
| 1047 | platform_set_drvdata(ghes_dev, NULL); |
| 1048 | |
| 1049 | return 0; |
| 1050 | } |
| 1051 | |
| 1052 | static struct platform_driver ghes_platform_driver = { |
| 1053 | .driver = { |
| 1054 | .name = "GHES", |
| 1055 | .owner = THIS_MODULE, |
| 1056 | }, |
| 1057 | .probe = ghes_probe, |
| 1058 | .remove = ghes_remove, |
| 1059 | }; |
| 1060 | |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 1061 | static int __init ghes_init(void) |
| 1062 | { |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 1063 | int rc; |
| 1064 | |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 1065 | if (acpi_disabled) |
| 1066 | return -ENODEV; |
| 1067 | |
| 1068 | if (hest_disable) { |
| 1069 | pr_info(GHES_PFX "HEST is not enabled!\n"); |
| 1070 | return -EINVAL; |
| 1071 | } |
| 1072 | |
Huang Ying | b6a9501 | 2011-07-13 13:14:19 +0800 | [diff] [blame] | 1073 | if (ghes_disable) { |
| 1074 | pr_info(GHES_PFX "GHES is not enabled!\n"); |
| 1075 | return -EINVAL; |
| 1076 | } |
| 1077 | |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 1078 | init_irq_work(&ghes_proc_irq_work, ghes_proc_in_irq); |
| 1079 | |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 1080 | rc = ghes_ioremap_init(); |
| 1081 | if (rc) |
| 1082 | goto err; |
| 1083 | |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 1084 | rc = ghes_estatus_pool_init(); |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 1085 | if (rc) |
| 1086 | goto err_ioremap_exit; |
| 1087 | |
Huang Ying | 152cef4 | 2011-07-13 13:14:26 +0800 | [diff] [blame] | 1088 | rc = ghes_estatus_pool_expand(GHES_ESTATUS_CACHE_AVG_SIZE * |
| 1089 | GHES_ESTATUS_CACHE_ALLOCED_MAX); |
| 1090 | if (rc) |
| 1091 | goto err_pool_exit; |
| 1092 | |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 1093 | rc = platform_driver_register(&ghes_platform_driver); |
| 1094 | if (rc) |
| 1095 | goto err_pool_exit; |
| 1096 | |
Huang Ying | 9fb0bfe | 2011-07-13 13:14:21 +0800 | [diff] [blame] | 1097 | rc = apei_osc_setup(); |
| 1098 | if (rc == 0 && osc_sb_apei_support_acked) |
| 1099 | pr_info(GHES_PFX "APEI firmware first mode is enabled by APEI bit and WHEA _OSC.\n"); |
| 1100 | else if (rc == 0 && !osc_sb_apei_support_acked) |
| 1101 | pr_info(GHES_PFX "APEI firmware first mode is enabled by WHEA _OSC.\n"); |
| 1102 | else if (rc && osc_sb_apei_support_acked) |
| 1103 | pr_info(GHES_PFX "APEI firmware first mode is enabled by APEI bit.\n"); |
| 1104 | else |
| 1105 | pr_info(GHES_PFX "Failed to enable APEI firmware first mode.\n"); |
| 1106 | |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 1107 | return 0; |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 1108 | err_pool_exit: |
| 1109 | ghes_estatus_pool_exit(); |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 1110 | err_ioremap_exit: |
| 1111 | ghes_ioremap_exit(); |
| 1112 | err: |
| 1113 | return rc; |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 1114 | } |
| 1115 | |
| 1116 | static void __exit ghes_exit(void) |
| 1117 | { |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 1118 | platform_driver_unregister(&ghes_platform_driver); |
Huang Ying | 67eb2e9 | 2011-07-13 13:14:25 +0800 | [diff] [blame] | 1119 | ghes_estatus_pool_exit(); |
Huang Ying | 81e88fd | 2011-01-12 14:44:55 +0800 | [diff] [blame] | 1120 | ghes_ioremap_exit(); |
Huang Ying | d334a49 | 2010-05-18 14:35:20 +0800 | [diff] [blame] | 1121 | } |
| 1122 | |
| 1123 | module_init(ghes_init); |
| 1124 | module_exit(ghes_exit); |
| 1125 | |
| 1126 | MODULE_AUTHOR("Huang Ying"); |
| 1127 | MODULE_DESCRIPTION("APEI Generic Hardware Error Source support"); |
| 1128 | MODULE_LICENSE("GPL"); |
Huang Ying | 7ad6e94 | 2010-08-02 15:48:24 +0800 | [diff] [blame] | 1129 | MODULE_ALIAS("platform:GHES"); |