2 * drivers/s390/s390mach.c
3 * S/390 machine check handler
6 * Copyright (C) 2000 IBM Deutschland Entwicklung GmbH, IBM Corporation
7 * Author(s): Ingo Adlung (adlung@de.ibm.com)
8 * Martin Schwidefsky (schwidefsky@de.ibm.com)
11 #include <linux/init.h>
12 #include <linux/sched.h>
13 #include <linux/errno.h>
14 #include <linux/workqueue.h>
15 #include <linux/time.h>
16 #include <linux/kthread.h>
18 #include <asm/lowcore.h>
23 // #define DBG(args,...) do {} while (0);
25 static struct semaphore m_sem;
27 extern int css_process_crw(int, int);
28 extern int chsc_process_crw(void);
29 extern int chp_process_crw(int, int);
30 extern void css_reiterate_subchannels(void);
32 extern struct workqueue_struct *slow_path_wq;
33 extern struct work_struct slow_path_work;
35 static NORET_TYPE void
36 s390_handle_damage(char *msg)
41 disabled_wait((unsigned long) __builtin_return_address(0));
46 * Retrieve CRWs and call function to handle event.
48 * Note : we currently process CRWs for io and chsc subchannels only
51 s390_collect_crw_info(void *param)
55 struct semaphore *sem;
58 sem = (struct semaphore *)param;
60 down_interruptible(sem);
64 if (unlikely(chain > 1)) {
67 printk(KERN_WARNING"%s: Code does not support more "
68 "than two chained crws; please report to "
69 "linux390@de.ibm.com!\n", __FUNCTION__);
70 ccode = stcrw(&tmp_crw);
71 printk(KERN_WARNING"%s: crw reports slct=%d, oflw=%d, "
72 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
73 __FUNCTION__, tmp_crw.slct, tmp_crw.oflw,
74 tmp_crw.chn, tmp_crw.rsc, tmp_crw.anc,
75 tmp_crw.erc, tmp_crw.rsid);
76 printk(KERN_WARNING"%s: This was crw number %x in the "
77 "chain\n", __FUNCTION__, chain);
80 chain = tmp_crw.chn ? chain + 1 : 0;
83 ccode = stcrw(&crw[chain]);
86 DBG(KERN_DEBUG "crw_info : CRW reports slct=%d, oflw=%d, "
87 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
88 crw[chain].slct, crw[chain].oflw, crw[chain].chn,
89 crw[chain].rsc, crw[chain].anc, crw[chain].erc,
91 /* Check for overflows. */
92 if (crw[chain].oflw) {
93 pr_debug("%s: crw overflow detected!\n", __FUNCTION__);
94 css_reiterate_subchannels();
99 switch (crw[chain].rsc) {
101 if (crw[0].chn && !chain)
103 pr_debug("source is subchannel %04X\n", crw[0].rsid);
104 ret = css_process_crw (crw[0].rsid,
105 chain ? crw[1].rsid : 0);
109 case CRW_RSC_MONITOR:
110 pr_debug("source is monitoring facility\n");
113 pr_debug("source is channel path %02X\n", crw[0].rsid);
115 * Check for solicited machine checks. These are
116 * created by reset channel path and need not be
117 * reported to the common I/O layer.
119 if (crw[chain].slct) {
120 DBG(KERN_INFO"solicited machine check for "
121 "channel path %02X\n", crw[0].rsid);
124 switch (crw[0].erc) {
125 case CRW_ERC_IPARM: /* Path has come. */
126 ret = chp_process_crw(crw[0].rsid, 1);
128 case CRW_ERC_PERRI: /* Path has gone. */
130 ret = chp_process_crw(crw[0].rsid, 0);
133 pr_debug("Don't know how to handle erc=%x\n",
141 pr_debug("source is configuration-alert facility\n");
144 pr_debug("source is channel subsystem\n");
145 ret = chsc_process_crw();
150 pr_debug("unknown source\n");
153 /* chain is always 0 or 1 here. */
154 chain = crw[chain].chn ? chain + 1 : 0;
157 queue_work(slow_path_wq, &slow_path_work);
166 unsigned long long mcck_code;
169 static DEFINE_PER_CPU(struct mcck_struct, cpu_mcck);
172 * Main machine check handler function. Will be called with interrupts enabled
173 * or disabled and machine checks enabled or disabled.
176 s390_handle_mcck(void)
179 struct mcck_struct mcck;
182 * Disable machine checks and get the current state of accumulated
183 * machine checks. Afterwards delete the old state and enable machine
186 local_irq_save(flags);
187 local_mcck_disable();
188 mcck = __get_cpu_var(cpu_mcck);
189 memset(&__get_cpu_var(cpu_mcck), 0, sizeof(struct mcck_struct));
190 clear_thread_flag(TIF_MCCK_PENDING);
192 local_irq_restore(flags);
194 if (mcck.channel_report)
197 #ifdef CONFIG_MACHCHK_WARNING
199 * The warning may remain for a prolonged period on the bare iron.
200 * (actually till the machine is powered off, or until the problem is gone)
201 * So we just stop listening for the WARNING MCH and prevent continuously
202 * being interrupted. One caveat is however, that we must do this per
203 * processor and cannot use the smp version of ctl_clear_bit().
204 * On VM we only get one interrupt per virtally presented machinecheck.
205 * Though one suffices, we may get one interrupt per (virtual) processor.
207 if (mcck.warning) { /* WARNING pending ? */
208 static int mchchk_wng_posted = 0;
210 * Use single machine clear, as we cannot handle smp right now
212 __ctl_clear_bit(14, 24); /* Disable WARNING MCH */
213 if (xchg(&mchchk_wng_posted, 1) == 0)
214 kill_proc(1, SIGPWR, 1);
218 if (mcck.kill_task) {
220 printk(KERN_EMERG "mcck: Terminating task because of machine "
221 "malfunction (code 0x%016llx).\n", mcck.mcck_code);
222 printk(KERN_EMERG "mcck: task: %s, pid: %d.\n",
223 current->comm, current->pid);
229 * returns 0 if all registers could be validated
230 * returns 1 otherwise
233 s390_revalidate_registers(struct mci *mci)
238 void *fpt_save_area, *fpt_creg_save_area;
242 /* General purpose registers */
245 * General purpose registers couldn't be restored and have
246 * unknown contents. Process needs to be terminated.
250 /* Revalidate floating point registers */
253 * Floating point registers can't be restored and
254 * therefore the process needs to be terminated.
259 asm volatile("ld 0,0(%0)\n"
263 : : "a" (&S390_lowcore.floating_pt_save_area));
266 if (MACHINE_HAS_IEEE) {
268 fpt_save_area = &S390_lowcore.floating_pt_save_area;
269 fpt_creg_save_area = &S390_lowcore.fpt_creg_save_area;
271 fpt_save_area = (void *) S390_lowcore.extended_save_area_addr;
272 fpt_creg_save_area = fpt_save_area+128;
274 /* Floating point control register */
277 * Floating point control register can't be restored.
278 * Task will be terminated.
280 asm volatile ("lfpc 0(%0)" : : "a" (&zero), "m" (zero));
287 : : "a" (fpt_creg_save_area));
289 asm volatile("ld 0,0(%0)\n"
305 : : "a" (fpt_save_area));
308 /* Revalidate access registers */
309 asm volatile("lam 0,15,0(%0)"
310 : : "a" (&S390_lowcore.access_regs_save_area));
313 * Access registers have unknown contents.
318 /* Revalidate control registers */
321 * Control registers have unknown contents.
322 * Can't recover and therefore stopping machine.
324 s390_handle_damage("invalid control registers.");
327 asm volatile("lctlg 0,15,0(%0)"
328 : : "a" (&S390_lowcore.cregs_save_area));
330 asm volatile("lctl 0,15,0(%0)"
331 : : "a" (&S390_lowcore.cregs_save_area));
335 * We don't even try to revalidate the TOD register, since we simply
336 * can't write something sensible into that register.
341 * See if we can revalidate the TOD programmable register with its
342 * old contents (should be zero) otherwise set it to zero.
345 asm volatile("sr 0,0\n"
352 : : "a" (&S390_lowcore.tod_progreg_save_area) : "0", "cc");
355 /* Revalidate clock comparator register */
356 asm volatile ("stck 0(%1)\n"
358 : "=m" (tmpclock) : "a" (&(tmpclock)) : "cc", "memory");
360 /* Check if old PSW is valid */
363 * Can't tell if we come from user or kernel mode
364 * -> stopping machine.
366 s390_handle_damage("old psw invalid.");
368 if (!mci->ms || !mci->pm || !mci->ia)
374 #define MAX_IPD_COUNT 29
375 #define MAX_IPD_TIME (5 * 60 * USEC_PER_SEC) /* 5 minutes */
378 * machine check handler.
381 s390_do_machine_check(struct pt_regs *regs)
383 static DEFINE_SPINLOCK(ipd_lock);
384 static unsigned long long last_ipd;
385 static int ipd_count;
386 unsigned long long tmp;
388 struct mcck_struct *mcck;
393 mci = (struct mci *) &S390_lowcore.mcck_interruption_code;
394 mcck = &__get_cpu_var(cpu_mcck);
395 umode = user_mode(regs);
398 /* System damage -> stopping machine */
399 s390_handle_damage("received system damage machine check.");
403 /* Processing backup -> verify if we can survive this */
404 u64 z_mcic, o_mcic, t_mcic;
406 z_mcic = (1ULL<<63 | 1ULL<<59 | 1ULL<<29);
407 o_mcic = (1ULL<<43 | 1ULL<<42 | 1ULL<<41 | 1ULL<<40 |
408 1ULL<<36 | 1ULL<<35 | 1ULL<<34 | 1ULL<<32 |
409 1ULL<<30 | 1ULL<<21 | 1ULL<<20 | 1ULL<<17 |
412 z_mcic = (1ULL<<63 | 1ULL<<59 | 1ULL<<57 | 1ULL<<50 |
414 o_mcic = (1ULL<<43 | 1ULL<<42 | 1ULL<<41 | 1ULL<<40 |
415 1ULL<<36 | 1ULL<<35 | 1ULL<<34 | 1ULL<<32 |
416 1ULL<<30 | 1ULL<<20 | 1ULL<<17 | 1ULL<<16);
418 t_mcic = *(u64 *)mci;
420 if (((t_mcic & z_mcic) != 0) ||
421 ((t_mcic & o_mcic) != o_mcic)) {
422 s390_handle_damage("processing backup machine "
423 "check with damage.");
427 * Nullifying exigent condition, therefore we might
428 * retry this instruction.
431 spin_lock(&ipd_lock);
435 if (((tmp - last_ipd) >> 12) < MAX_IPD_TIME)
442 if (ipd_count == MAX_IPD_COUNT)
443 s390_handle_damage("too many ipd retries.");
445 spin_unlock(&ipd_lock);
448 /* Processing damage -> stopping machine */
449 s390_handle_damage("received instruction processing "
450 "damage machine check.");
453 if (s390_revalidate_registers(mci)) {
456 * Couldn't restore all register contents while in
457 * user mode -> mark task for termination.
460 mcck->mcck_code = *(unsigned long long *) mci;
461 set_thread_flag(TIF_MCCK_PENDING);
465 * Couldn't restore all register contents while in
466 * kernel mode -> stopping machine.
468 s390_handle_damage("unable to revalidate registers.");
472 /* Storage error uncorrected */
473 s390_handle_damage("received storage error uncorrected "
477 /* Storage key-error uncorrected */
478 s390_handle_damage("received storage key-error uncorrected "
481 if (mci->ds && mci->fa)
482 /* Storage degradation */
483 s390_handle_damage("received storage degradation machine "
487 /* Channel report word pending */
488 mcck->channel_report = 1;
489 set_thread_flag(TIF_MCCK_PENDING);
493 /* Warning pending */
495 set_thread_flag(TIF_MCCK_PENDING);
501 * s390_init_machine_check
503 * initialize machine check handling
506 machine_check_init(void)
508 init_MUTEX_LOCKED(&m_sem);
509 ctl_clear_bit(14, 25); /* disable external damage MCH */
510 ctl_set_bit(14, 27); /* enable system recovery MCH */
511 #ifdef CONFIG_MACHCHK_WARNING
512 ctl_set_bit(14, 24); /* enable warning MCH */
518 * Initialize the machine check handler really early to be able to
519 * catch all machine checks that happen during boot
521 arch_initcall(machine_check_init);
524 * Machine checks for the channel subsystem must be enabled
525 * after the channel subsystem is initialized
528 machine_check_crw_init (void)
530 kthread_run(s390_collect_crw_info, &m_sem, "kmcheck");
531 ctl_set_bit(14, 28); /* enable channel report MCH */
535 device_initcall (machine_check_crw_init);