blob: eb860e29341533a6b2d44e90a30f4fa4e6e8c18b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * File: mca_drv.c
3 * Purpose: Generic MCA handling layer
4 *
5 * Copyright (C) 2004 FUJITSU LIMITED
6 * Copyright (C) Hidetoshi Seto (seto.hidetoshi@jp.fujitsu.com)
Keith Owens7f613c72005-09-11 17:22:53 +10007 * Copyright (C) 2005 Silicon Graphics, Inc
8 * Copyright (C) 2005 Keith Owens <kaos@sgi.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10#include <linux/config.h>
11#include <linux/types.h>
12#include <linux/init.h>
13#include <linux/sched.h>
14#include <linux/interrupt.h>
15#include <linux/irq.h>
16#include <linux/kallsyms.h>
17#include <linux/smp_lock.h>
18#include <linux/bootmem.h>
19#include <linux/acpi.h>
20#include <linux/timer.h>
21#include <linux/module.h>
22#include <linux/kernel.h>
23#include <linux/smp.h>
24#include <linux/workqueue.h>
25#include <linux/mm.h>
26
27#include <asm/delay.h>
28#include <asm/machvec.h>
29#include <asm/page.h>
30#include <asm/ptrace.h>
31#include <asm/system.h>
32#include <asm/sal.h>
33#include <asm/mca.h>
34
35#include <asm/irq.h>
36#include <asm/hw_irq.h>
37
38#include "mca_drv.h"
39
40/* max size of SAL error record (default) */
41static int sal_rec_max = 10000;
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* from mca_drv_asm.S */
44extern void *mca_handler_bhhook(void);
45
46static DEFINE_SPINLOCK(mca_bh_lock);
47
48typedef enum {
49 MCA_IS_LOCAL = 0,
50 MCA_IS_GLOBAL = 1
51} mca_type_t;
52
53#define MAX_PAGE_ISOLATE 1024
54
55static struct page *page_isolate[MAX_PAGE_ISOLATE];
56static int num_page_isolate = 0;
57
58typedef enum {
Hidetoshi Seto4881e2c2005-09-20 16:34:41 +090059 ISOLATE_NG,
60 ISOLATE_OK,
61 ISOLATE_NONE
Linus Torvalds1da177e2005-04-16 15:20:36 -070062} isolate_status_t;
63
64/*
65 * This pool keeps pointers to the section part of SAL error record
66 */
67static struct {
68 slidx_list_t *buffer; /* section pointer list pool */
69 int cur_idx; /* Current index of section pointer list pool */
70 int max_idx; /* Maximum index of section pointer list pool */
71} slidx_pool;
72
73/**
74 * mca_page_isolate - isolate a poisoned page in order not to use it later
75 * @paddr: poisoned memory location
76 *
77 * Return value:
Hidetoshi Seto4881e2c2005-09-20 16:34:41 +090078 * one of isolate_status_t, ISOLATE_OK/NG/NONE.
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 */
80
81static isolate_status_t
82mca_page_isolate(unsigned long paddr)
83{
84 int i;
85 struct page *p;
86
87 /* whether physical address is valid or not */
Hidetoshi Seto20305e52005-09-16 13:44:56 +090088 if (!ia64_phys_addr_valid(paddr))
Hidetoshi Seto4881e2c2005-09-20 16:34:41 +090089 return ISOLATE_NONE;
90
91 if (!pfn_valid(paddr))
92 return ISOLATE_NONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
94 /* convert physical address to physical page number */
95 p = pfn_to_page(paddr>>PAGE_SHIFT);
96
97 /* check whether a page number have been already registered or not */
Hidetoshi Seto20305e52005-09-16 13:44:56 +090098 for (i = 0; i < num_page_isolate; i++)
99 if (page_isolate[i] == p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return ISOLATE_OK; /* already listed */
101
102 /* limitation check */
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900103 if (num_page_isolate == MAX_PAGE_ISOLATE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return ISOLATE_NG;
105
106 /* kick pages having attribute 'SLAB' or 'Reserved' */
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900107 if (PageSlab(p) || PageReserved(p))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 return ISOLATE_NG;
109
110 /* add attribute 'Reserved' and register the page */
111 SetPageReserved(p);
112 page_isolate[num_page_isolate++] = p;
113
114 return ISOLATE_OK;
115}
116
117/**
118 * mca_hanlder_bh - Kill the process which occurred memory read error
119 * @paddr: poisoned address received from MCA Handler
120 */
121
122void
123mca_handler_bh(unsigned long paddr)
124{
125 printk(KERN_DEBUG "OS_MCA: process [pid: %d](%s) encounters MCA.\n",
126 current->pid, current->comm);
127
128 spin_lock(&mca_bh_lock);
Hidetoshi Seto4881e2c2005-09-20 16:34:41 +0900129 switch (mca_page_isolate(paddr)) {
130 case ISOLATE_OK:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 printk(KERN_DEBUG "Page isolation: ( %lx ) success.\n", paddr);
Hidetoshi Seto4881e2c2005-09-20 16:34:41 +0900132 break;
133 case ISOLATE_NG:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 printk(KERN_DEBUG "Page isolation: ( %lx ) failure.\n", paddr);
Hidetoshi Seto4881e2c2005-09-20 16:34:41 +0900135 break;
136 default:
137 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139 spin_unlock(&mca_bh_lock);
140
141 /* This process is about to be killed itself */
Russ Andersonb1b901c2005-04-06 00:07:00 -0700142 do_exit(SIGKILL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
145/**
146 * mca_make_peidx - Make index of processor error section
147 * @slpi: pointer to record of processor error section
148 * @peidx: pointer to index of processor error section
149 */
150
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900151static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152mca_make_peidx(sal_log_processor_info_t *slpi, peidx_table_t *peidx)
153{
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900154 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * calculate the start address of
156 * "struct cpuid_info" and "sal_processor_static_info_t".
157 */
158 u64 total_check_num = slpi->valid.num_cache_check
159 + slpi->valid.num_tlb_check
160 + slpi->valid.num_bus_check
161 + slpi->valid.num_reg_file_check
162 + slpi->valid.num_ms_check;
163 u64 head_size = sizeof(sal_log_mod_error_info_t) * total_check_num
164 + sizeof(sal_log_processor_info_t);
165 u64 mid_size = slpi->valid.cpuid_info * sizeof(struct sal_cpuid_info);
166
167 peidx_head(peidx) = slpi;
168 peidx_mid(peidx) = (struct sal_cpuid_info *)
169 (slpi->valid.cpuid_info ? ((char*)slpi + head_size) : NULL);
170 peidx_bottom(peidx) = (sal_processor_static_info_t *)
171 (slpi->valid.psi_static_struct ?
172 ((char*)slpi + head_size + mid_size) : NULL);
173}
174
175/**
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900176 * mca_make_slidx - Make index of SAL error record
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 * @buffer: pointer to SAL error record
178 * @slidx: pointer to index of SAL error record
179 *
180 * Return value:
181 * 1 if record has platform error / 0 if not
182 */
183#define LOG_INDEX_ADD_SECT_PTR(sect, ptr) \
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900184 {slidx_list_t *hl = &slidx_pool.buffer[slidx_pool.cur_idx]; \
185 hl->hdr = ptr; \
186 list_add(&hl->list, &(sect)); \
187 slidx_pool.cur_idx = (slidx_pool.cur_idx + 1)%slidx_pool.max_idx; }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900189static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190mca_make_slidx(void *buffer, slidx_table_t *slidx)
191{
192 int platform_err = 0;
193 int record_len = ((sal_log_record_header_t*)buffer)->len;
194 u32 ercd_pos;
195 int sects;
196 sal_log_section_hdr_t *sp;
197
198 /*
199 * Initialize index referring current record
200 */
201 INIT_LIST_HEAD(&(slidx->proc_err));
202 INIT_LIST_HEAD(&(slidx->mem_dev_err));
203 INIT_LIST_HEAD(&(slidx->sel_dev_err));
204 INIT_LIST_HEAD(&(slidx->pci_bus_err));
205 INIT_LIST_HEAD(&(slidx->smbios_dev_err));
206 INIT_LIST_HEAD(&(slidx->pci_comp_err));
207 INIT_LIST_HEAD(&(slidx->plat_specific_err));
208 INIT_LIST_HEAD(&(slidx->host_ctlr_err));
209 INIT_LIST_HEAD(&(slidx->plat_bus_err));
210 INIT_LIST_HEAD(&(slidx->unsupported));
211
212 /*
213 * Extract a Record Header
214 */
215 slidx->header = buffer;
216
217 /*
218 * Extract each section records
219 * (arranged from "int ia64_log_platform_info_print()")
220 */
221 for (ercd_pos = sizeof(sal_log_record_header_t), sects = 0;
222 ercd_pos < record_len; ercd_pos += sp->len, sects++) {
223 sp = (sal_log_section_hdr_t *)((char*)buffer + ercd_pos);
224 if (!efi_guidcmp(sp->guid, SAL_PROC_DEV_ERR_SECT_GUID)) {
225 LOG_INDEX_ADD_SECT_PTR(slidx->proc_err, sp);
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900226 } else if (!efi_guidcmp(sp->guid,
227 SAL_PLAT_MEM_DEV_ERR_SECT_GUID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 platform_err = 1;
229 LOG_INDEX_ADD_SECT_PTR(slidx->mem_dev_err, sp);
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900230 } else if (!efi_guidcmp(sp->guid,
231 SAL_PLAT_SEL_DEV_ERR_SECT_GUID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 platform_err = 1;
233 LOG_INDEX_ADD_SECT_PTR(slidx->sel_dev_err, sp);
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900234 } else if (!efi_guidcmp(sp->guid,
235 SAL_PLAT_PCI_BUS_ERR_SECT_GUID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 platform_err = 1;
237 LOG_INDEX_ADD_SECT_PTR(slidx->pci_bus_err, sp);
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900238 } else if (!efi_guidcmp(sp->guid,
239 SAL_PLAT_SMBIOS_DEV_ERR_SECT_GUID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 platform_err = 1;
241 LOG_INDEX_ADD_SECT_PTR(slidx->smbios_dev_err, sp);
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900242 } else if (!efi_guidcmp(sp->guid,
243 SAL_PLAT_PCI_COMP_ERR_SECT_GUID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 platform_err = 1;
245 LOG_INDEX_ADD_SECT_PTR(slidx->pci_comp_err, sp);
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900246 } else if (!efi_guidcmp(sp->guid,
247 SAL_PLAT_SPECIFIC_ERR_SECT_GUID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 platform_err = 1;
249 LOG_INDEX_ADD_SECT_PTR(slidx->plat_specific_err, sp);
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900250 } else if (!efi_guidcmp(sp->guid,
251 SAL_PLAT_HOST_CTLR_ERR_SECT_GUID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 platform_err = 1;
253 LOG_INDEX_ADD_SECT_PTR(slidx->host_ctlr_err, sp);
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900254 } else if (!efi_guidcmp(sp->guid,
255 SAL_PLAT_BUS_ERR_SECT_GUID)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 platform_err = 1;
257 LOG_INDEX_ADD_SECT_PTR(slidx->plat_bus_err, sp);
258 } else {
259 LOG_INDEX_ADD_SECT_PTR(slidx->unsupported, sp);
260 }
261 }
262 slidx->n_sections = sects;
263
264 return platform_err;
265}
266
267/**
268 * init_record_index_pools - Initialize pool of lists for SAL record index
269 *
270 * Return value:
271 * 0 on Success / -ENOMEM on Failure
272 */
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900273static int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274init_record_index_pools(void)
275{
276 int i;
277 int rec_max_size; /* Maximum size of SAL error records */
278 int sect_min_size; /* Minimum size of SAL error sections */
279 /* minimum size table of each section */
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900280 static int sal_log_sect_min_sizes[] = {
281 sizeof(sal_log_processor_info_t)
282 + sizeof(sal_processor_static_info_t),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 sizeof(sal_log_mem_dev_err_info_t),
284 sizeof(sal_log_sel_dev_err_info_t),
285 sizeof(sal_log_pci_bus_err_info_t),
286 sizeof(sal_log_smbios_dev_err_info_t),
287 sizeof(sal_log_pci_comp_err_info_t),
288 sizeof(sal_log_plat_specific_err_info_t),
289 sizeof(sal_log_host_ctlr_err_info_t),
290 sizeof(sal_log_plat_bus_err_info_t),
291 };
292
293 /*
294 * MCA handler cannot allocate new memory on flight,
295 * so we preallocate enough memory to handle a SAL record.
296 *
297 * Initialize a handling set of slidx_pool:
298 * 1. Pick up the max size of SAL error records
299 * 2. Pick up the min size of SAL error sections
300 * 3. Allocate the pool as enough to 2 SAL records
301 * (now we can estimate the maxinum of section in a record.)
302 */
303
304 /* - 1 - */
305 rec_max_size = sal_rec_max;
306
307 /* - 2 - */
308 sect_min_size = sal_log_sect_min_sizes[0];
309 for (i = 1; i < sizeof sal_log_sect_min_sizes/sizeof(size_t); i++)
310 if (sect_min_size > sal_log_sect_min_sizes[i])
311 sect_min_size = sal_log_sect_min_sizes[i];
312
313 /* - 3 - */
314 slidx_pool.max_idx = (rec_max_size/sect_min_size) * 2 + 1;
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900315 slidx_pool.buffer = (slidx_list_t *)
316 kmalloc(slidx_pool.max_idx * sizeof(slidx_list_t), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 return slidx_pool.buffer ? 0 : -ENOMEM;
319}
320
321
322/*****************************************************************************
323 * Recovery functions *
324 *****************************************************************************/
325
326/**
327 * is_mca_global - Check whether this MCA is global or not
328 * @peidx: pointer of index of processor error section
329 * @pbci: pointer to pal_bus_check_info_t
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900330 * @sos: pointer to hand off struct between SAL and OS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 *
332 * Return value:
333 * MCA_IS_LOCAL / MCA_IS_GLOBAL
334 */
335
336static mca_type_t
Keith Owens7f613c72005-09-11 17:22:53 +1000337is_mca_global(peidx_table_t *peidx, pal_bus_check_info_t *pbci,
338 struct ia64_sal_os_state *sos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900340 pal_processor_state_info_t *psp =
341 (pal_processor_state_info_t*)peidx_psp(peidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900343 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 * PAL can request a rendezvous, if the MCA has a global scope.
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900345 * If "rz_always" flag is set, SAL requests MCA rendezvous
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * in spite of global MCA.
347 * Therefore it is local MCA when rendezvous has not been requested.
348 * Failed to rendezvous, the system must be down.
349 */
Keith Owens7f613c72005-09-11 17:22:53 +1000350 switch (sos->rv_rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 case -1: /* SAL rendezvous unsuccessful */
352 return MCA_IS_GLOBAL;
353 case 0: /* SAL rendezvous not required */
354 return MCA_IS_LOCAL;
355 case 1: /* SAL rendezvous successful int */
356 case 2: /* SAL rendezvous successful int with init */
357 default:
358 break;
359 }
360
361 /*
362 * If One or more Cache/TLB/Reg_File/Uarch_Check is here,
363 * it would be a local MCA. (i.e. processor internal error)
364 */
365 if (psp->tc || psp->cc || psp->rc || psp->uc)
366 return MCA_IS_LOCAL;
367
368 /*
369 * Bus_Check structure with Bus_Check.ib (internal bus error) flag set
370 * would be a global MCA. (e.g. a system bus address parity error)
371 */
372 if (!pbci || pbci->ib)
373 return MCA_IS_GLOBAL;
374
375 /*
376 * Bus_Check structure with Bus_Check.eb (external bus error) flag set
377 * could be either a local MCA or a global MCA.
378 *
379 * Referring Bus_Check.bsi:
380 * 0: Unknown/unclassified
381 * 1: BERR#
382 * 2: BINIT#
383 * 3: Hard Fail
384 * (FIXME: Are these SGI specific or generic bsi values?)
385 */
386 if (pbci->eb)
387 switch (pbci->bsi) {
388 case 0:
389 /* e.g. a load from poisoned memory */
390 return MCA_IS_LOCAL;
391 case 1:
392 case 2:
393 case 3:
394 return MCA_IS_GLOBAL;
395 }
396
397 return MCA_IS_GLOBAL;
398}
399
400/**
401 * recover_from_read_error - Try to recover the errors which type are "read"s.
402 * @slidx: pointer of index of SAL error record
403 * @peidx: pointer of index of processor error section
404 * @pbci: pointer of pal_bus_check_info
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900405 * @sos: pointer to hand off struct between SAL and OS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 *
407 * Return value:
408 * 1 on Success / 0 on Failure
409 */
410
411static int
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900412recover_from_read_error(slidx_table_t *slidx,
413 peidx_table_t *peidx, pal_bus_check_info_t *pbci,
Keith Owens7f613c72005-09-11 17:22:53 +1000414 struct ia64_sal_os_state *sos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
416 sal_log_mod_error_info_t *smei;
417 pal_min_state_area_t *pmsa;
418 struct ia64_psr *psr1, *psr2;
419 ia64_fptr_t *mca_hdlr_bh = (ia64_fptr_t*)mca_handler_bhhook;
420
421 /* Is target address valid? */
422 if (!pbci->tv)
423 return 0;
424
425 /*
426 * cpu read or memory-mapped io read
427 *
428 * offending process affected process OS MCA do
429 * kernel mode kernel mode down system
430 * kernel mode user mode kill the process
431 * user mode kernel mode down system (*)
432 * user mode user mode kill the process
433 *
434 * (*) You could terminate offending user-mode process
435 * if (pbci->pv && pbci->pl != 0) *and* if you sure
436 * the process not have any locks of kernel.
437 */
438
439 psr1 =(struct ia64_psr *)&(peidx_minstate_area(peidx)->pmsa_ipsr);
440
441 /*
442 * Check the privilege level of interrupted context.
443 * If it is user-mode, then terminate affected process.
444 */
445 if (psr1->cpl != 0) {
446 smei = peidx_bus_check(peidx, 0);
447 if (smei->valid.target_identifier) {
448 /*
449 * setup for resume to bottom half of MCA,
450 * "mca_handler_bhhook"
451 */
Keith Owens7f613c72005-09-11 17:22:53 +1000452 pmsa = sos->pal_min_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 /* pass to bhhook as 1st argument (gr8) */
454 pmsa->pmsa_gr[8-1] = smei->target_identifier;
455 /* set interrupted return address (but no use) */
456 pmsa->pmsa_br0 = pmsa->pmsa_iip;
457 /* change resume address to bottom half */
458 pmsa->pmsa_iip = mca_hdlr_bh->fp;
459 pmsa->pmsa_gr[1-1] = mca_hdlr_bh->gp;
460 /* set cpl with kernel mode */
461 psr2 = (struct ia64_psr *)&pmsa->pmsa_ipsr;
462 psr2->cpl = 0;
463 psr2->ri = 0;
Russ Andersonb1b901c2005-04-06 00:07:00 -0700464 psr2->i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 return 1;
467 }
468
469 }
470
471 return 0;
472}
473
474/**
475 * recover_from_platform_error - Recover from platform error.
476 * @slidx: pointer of index of SAL error record
477 * @peidx: pointer of index of processor error section
478 * @pbci: pointer of pal_bus_check_info
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900479 * @sos: pointer to hand off struct between SAL and OS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 *
481 * Return value:
482 * 1 on Success / 0 on Failure
483 */
484
485static int
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900486recover_from_platform_error(slidx_table_t *slidx, peidx_table_t *peidx,
487 pal_bus_check_info_t *pbci,
Keith Owens7f613c72005-09-11 17:22:53 +1000488 struct ia64_sal_os_state *sos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
490 int status = 0;
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900491 pal_processor_state_info_t *psp =
492 (pal_processor_state_info_t*)peidx_psp(peidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493
494 if (psp->bc && pbci->eb && pbci->bsi == 0) {
495 switch(pbci->type) {
496 case 1: /* partial read */
497 case 3: /* full line(cpu) read */
498 case 9: /* I/O space read */
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900499 status = recover_from_read_error(slidx, peidx, pbci,
500 sos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 break;
502 case 0: /* unknown */
503 case 2: /* partial write */
504 case 4: /* full line write */
505 case 5: /* implicit or explicit write-back operation */
506 case 6: /* snoop probe */
507 case 7: /* incoming or outgoing ptc.g */
508 case 8: /* write coalescing transactions */
509 case 10: /* I/O space write */
510 case 11: /* inter-processor interrupt message(IPI) */
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900511 case 12: /* interrupt acknowledge or
512 external task priority cycle */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 default:
514 break;
515 }
516 }
517
518 return status;
519}
520
521/**
522 * recover_from_processor_error
523 * @platform: whether there are some platform error section or not
524 * @slidx: pointer of index of SAL error record
525 * @peidx: pointer of index of processor error section
526 * @pbci: pointer of pal_bus_check_info
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900527 * @sos: pointer to hand off struct between SAL and OS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 *
529 * Return value:
530 * 1 on Success / 0 on Failure
531 */
532/*
533 * Later we try to recover when below all conditions are satisfied.
534 * 1. Only one processor error section is exist.
535 * 2. BUS_CHECK is exist and the others are not exist.(Except TLB_CHECK)
536 * 3. The entry of BUS_CHECK_INFO is 1.
537 * 4. "External bus error" flag is set and the others are not set.
538 */
539
540static int
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900541recover_from_processor_error(int platform, slidx_table_t *slidx,
542 peidx_table_t *peidx, pal_bus_check_info_t *pbci,
Keith Owens7f613c72005-09-11 17:22:53 +1000543 struct ia64_sal_os_state *sos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900545 pal_processor_state_info_t *psp =
546 (pal_processor_state_info_t*)peidx_psp(peidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900548 /*
Russ Andersona14f25a2005-11-04 13:39:38 -0600549 * Processor recovery status must key off of the PAL recovery
550 * status in the Processor State Parameter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 */
Russ Andersona14f25a2005-11-04 13:39:38 -0600552
553 /*
554 * The machine check is corrected.
555 */
556 if (psp->cm == 1)
557 return 1;
558
559 /*
560 * The error was not contained. Software must be reset.
561 */
562 if (psp->us || psp->ci == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 return 0;
564
565 /*
566 * If there is no bus error, record is weird but we need not to recover.
567 */
568 if (psp->bc == 0 || pbci == NULL)
569 return 1;
570
571 /*
572 * Sorry, we cannot handle so many.
573 */
574 if (peidx_bus_check_num(peidx) > 1)
575 return 0;
576 /*
577 * Well, here is only one bus error.
578 */
579 if (pbci->ib || pbci->cc)
580 return 0;
581 if (pbci->eb && pbci->bsi > 0)
582 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 /*
585 * This is a local MCA and estimated as recoverble external bus error.
586 * (e.g. a load from poisoned memory)
587 * This means "there are some platform errors".
588 */
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900589 if (platform)
Keith Owens7f613c72005-09-11 17:22:53 +1000590 return recover_from_platform_error(slidx, peidx, pbci, sos);
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900591 /*
592 * On account of strange SAL error record, we cannot recover.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 */
594 return 0;
595}
596
597/**
598 * mca_try_to_recover - Try to recover from MCA
599 * @rec: pointer to a SAL error record
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900600 * @sos: pointer to hand off struct between SAL and OS
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 *
602 * Return value:
603 * 1 on Success / 0 on Failure
604 */
605
606static int
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900607mca_try_to_recover(void *rec, struct ia64_sal_os_state *sos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
609 int platform_err;
610 int n_proc_err;
611 slidx_table_t slidx;
612 peidx_table_t peidx;
613 pal_bus_check_info_t pbci;
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 /* Make index of SAL error record */
616 platform_err = mca_make_slidx(rec, &slidx);
617
618 /* Count processor error sections */
619 n_proc_err = slidx_count(&slidx, proc_err);
620
621 /* Now, OS can recover when there is one processor error section */
622 if (n_proc_err > 1)
623 return 0;
624 else if (n_proc_err == 0) {
625 /* Weird SAL record ... We need not to recover */
626
627 return 1;
628 }
629
630 /* Make index of processor error section */
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900631 mca_make_peidx((sal_log_processor_info_t*)
632 slidx_first_entry(&slidx.proc_err)->hdr, &peidx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 /* Extract Processor BUS_CHECK[0] */
635 *((u64*)&pbci) = peidx_check_info(&peidx, bus_check, 0);
636
637 /* Check whether MCA is global or not */
Keith Owens7f613c72005-09-11 17:22:53 +1000638 if (is_mca_global(&peidx, &pbci, sos))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return 0;
640
641 /* Try to recover a processor error */
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900642 return recover_from_processor_error(platform_err, &slidx, &peidx,
643 &pbci, sos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644}
645
646/*
647 * =============================================================================
648 */
649
650int __init mca_external_handler_init(void)
651{
652 if (init_record_index_pools())
653 return -ENOMEM;
654
655 /* register external mca handlers */
Hidetoshi Seto20305e52005-09-16 13:44:56 +0900656 if (ia64_reg_MCA_extension(mca_try_to_recover)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 printk(KERN_ERR "ia64_reg_MCA_extension failed.\n");
658 kfree(slidx_pool.buffer);
659 return -EFAULT;
660 }
661 return 0;
662}
663
664void __exit mca_external_handler_exit(void)
665{
666 /* unregister external mca handlers */
667 ia64_unreg_MCA_extension();
668 kfree(slidx_pool.buffer);
669}
670
671module_init(mca_external_handler_init);
672module_exit(mca_external_handler_exit);
673
674module_param(sal_rec_max, int, 0644);
675MODULE_PARM_DESC(sal_rec_max, "Max size of SAL error record");
676
677MODULE_DESCRIPTION("ia64 platform dependent mca handler driver");
678MODULE_LICENSE("GPL");