2 * drivers/s390/s390mach.c
3 * S/390 machine check handler
5 * Copyright IBM Corp. 2000,2008
6 * Author(s): Ingo Adlung (adlung@de.ibm.com)
7 * Martin Schwidefsky (schwidefsky@de.ibm.com)
8 * Cornelia Huck <cornelia.huck@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/device.h>
17 #include <linux/kthread.h>
19 #include <asm/lowcore.h>
23 static struct semaphore m_sem;
25 static NORET_TYPE void
26 s390_handle_damage(char *msg)
31 disabled_wait((unsigned long) __builtin_return_address(0));
35 static crw_handler_t crw_handlers[NR_RSCS];
38 * s390_register_crw_handler() - register a channel report word handler
39 * @rsc: reporting source code to handle
40 * @handler: handler to be registered
42 * Returns %0 on success and a negative error value otherwise.
44 int s390_register_crw_handler(int rsc, crw_handler_t handler)
46 if ((rsc < 0) || (rsc >= NR_RSCS))
48 if (!cmpxchg(&crw_handlers[rsc], NULL, handler))
54 * s390_unregister_crw_handler() - unregister a channel report word handler
55 * @rsc: reporting source code to handle
57 void s390_unregister_crw_handler(int rsc)
59 if ((rsc < 0) || (rsc >= NR_RSCS))
61 xchg(&crw_handlers[rsc], NULL);
66 * Retrieve CRWs and call function to handle event.
68 static int s390_collect_crw_info(void *param)
72 struct semaphore *sem;
76 sem = (struct semaphore *)param;
78 ignore = down_interruptible(sem);
81 if (unlikely(chain > 1)) {
84 printk(KERN_WARNING"%s: Code does not support more "
85 "than two chained crws; please report to "
86 "linux390@de.ibm.com!\n", __func__);
87 ccode = stcrw(&tmp_crw);
88 printk(KERN_WARNING"%s: crw reports slct=%d, oflw=%d, "
89 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
90 __func__, tmp_crw.slct, tmp_crw.oflw,
91 tmp_crw.chn, tmp_crw.rsc, tmp_crw.anc,
92 tmp_crw.erc, tmp_crw.rsid);
93 printk(KERN_WARNING"%s: This was crw number %x in the "
94 "chain\n", __func__, chain);
97 chain = tmp_crw.chn ? chain + 1 : 0;
100 ccode = stcrw(&crw[chain]);
103 printk(KERN_DEBUG "crw_info : CRW reports slct=%d, oflw=%d, "
104 "chn=%d, rsc=%X, anc=%d, erc=%X, rsid=%X\n",
105 crw[chain].slct, crw[chain].oflw, crw[chain].chn,
106 crw[chain].rsc, crw[chain].anc, crw[chain].erc,
108 /* Check for overflows. */
109 if (crw[chain].oflw) {
112 pr_debug("%s: crw overflow detected!\n", __func__);
113 for (i = 0; i < NR_RSCS; i++) {
115 crw_handlers[i](NULL, NULL, 1);
120 if (crw[0].chn && !chain) {
124 if (crw_handlers[crw[chain].rsc])
125 crw_handlers[crw[chain].rsc](&crw[0],
126 chain ? &crw[1] : NULL,
128 /* chain is always 0 or 1 here. */
129 chain = crw[chain].chn ? chain + 1 : 0;
139 unsigned long long mcck_code;
142 static DEFINE_PER_CPU(struct mcck_struct, cpu_mcck);
145 * Main machine check handler function. Will be called with interrupts enabled
146 * or disabled and machine checks enabled or disabled.
149 s390_handle_mcck(void)
152 struct mcck_struct mcck;
155 * Disable machine checks and get the current state of accumulated
156 * machine checks. Afterwards delete the old state and enable machine
159 local_irq_save(flags);
160 local_mcck_disable();
161 mcck = __get_cpu_var(cpu_mcck);
162 memset(&__get_cpu_var(cpu_mcck), 0, sizeof(struct mcck_struct));
163 clear_thread_flag(TIF_MCCK_PENDING);
165 local_irq_restore(flags);
167 if (mcck.channel_report)
170 #ifdef CONFIG_MACHCHK_WARNING
172 * The warning may remain for a prolonged period on the bare iron.
173 * (actually till the machine is powered off, or until the problem is gone)
174 * So we just stop listening for the WARNING MCH and prevent continuously
175 * being interrupted. One caveat is however, that we must do this per
176 * processor and cannot use the smp version of ctl_clear_bit().
177 * On VM we only get one interrupt per virtally presented machinecheck.
178 * Though one suffices, we may get one interrupt per (virtual) processor.
180 if (mcck.warning) { /* WARNING pending ? */
181 static int mchchk_wng_posted = 0;
183 * Use single machine clear, as we cannot handle smp right now
185 __ctl_clear_bit(14, 24); /* Disable WARNING MCH */
186 if (xchg(&mchchk_wng_posted, 1) == 0)
187 kill_cad_pid(SIGPWR, 1);
191 if (mcck.kill_task) {
193 printk(KERN_EMERG "mcck: Terminating task because of machine "
194 "malfunction (code 0x%016llx).\n", mcck.mcck_code);
195 printk(KERN_EMERG "mcck: task: %s, pid: %d.\n",
196 current->comm, current->pid);
200 EXPORT_SYMBOL_GPL(s390_handle_mcck);
203 * returns 0 if all registers could be validated
204 * returns 1 otherwise
207 s390_revalidate_registers(struct mci *mci)
212 void *fpt_save_area, *fpt_creg_save_area;
216 /* General purpose registers */
219 * General purpose registers couldn't be restored and have
220 * unknown contents. Process needs to be terminated.
224 /* Revalidate floating point registers */
227 * Floating point registers can't be restored and
228 * therefore the process needs to be terminated.
238 : : "a" (&S390_lowcore.floating_pt_save_area));
241 if (MACHINE_HAS_IEEE) {
243 fpt_save_area = &S390_lowcore.floating_pt_save_area;
244 fpt_creg_save_area = &S390_lowcore.fpt_creg_save_area;
246 fpt_save_area = (void *) S390_lowcore.extended_save_area_addr;
247 fpt_creg_save_area = fpt_save_area+128;
249 /* Floating point control register */
252 * Floating point control register can't be restored.
253 * Task will be terminated.
255 asm volatile("lfpc 0(%0)" : : "a" (&zero), "m" (zero));
259 asm volatile("lfpc 0(%0)" : : "a" (fpt_creg_save_area));
278 : : "a" (fpt_save_area));
281 /* Revalidate access registers */
284 : : "a" (&S390_lowcore.access_regs_save_area));
287 * Access registers have unknown contents.
292 /* Revalidate control registers */
295 * Control registers have unknown contents.
296 * Can't recover and therefore stopping machine.
298 s390_handle_damage("invalid control registers.");
303 : : "a" (&S390_lowcore.cregs_save_area));
307 : : "a" (&S390_lowcore.cregs_save_area));
311 * We don't even try to revalidate the TOD register, since we simply
312 * can't write something sensible into that register.
317 * See if we can revalidate the TOD programmable register with its
318 * old contents (should be zero) otherwise set it to zero.
329 : : "a" (&S390_lowcore.tod_progreg_save_area)
333 /* Revalidate clock comparator register */
337 : "=m" (tmpclock) : "a" (&(tmpclock)) : "cc", "memory");
339 /* Check if old PSW is valid */
342 * Can't tell if we come from user or kernel mode
343 * -> stopping machine.
345 s390_handle_damage("old psw invalid.");
347 if (!mci->ms || !mci->pm || !mci->ia)
353 #define MAX_IPD_COUNT 29
354 #define MAX_IPD_TIME (5 * 60 * USEC_PER_SEC) /* 5 minutes */
357 * machine check handler.
360 s390_do_machine_check(struct pt_regs *regs)
362 static DEFINE_SPINLOCK(ipd_lock);
363 static unsigned long long last_ipd;
364 static int ipd_count;
365 unsigned long long tmp;
367 struct mcck_struct *mcck;
372 mci = (struct mci *) &S390_lowcore.mcck_interruption_code;
373 mcck = &__get_cpu_var(cpu_mcck);
374 umode = user_mode(regs);
377 /* System damage -> stopping machine */
378 s390_handle_damage("received system damage machine check.");
382 /* Processing backup -> verify if we can survive this */
383 u64 z_mcic, o_mcic, t_mcic;
385 z_mcic = (1ULL<<63 | 1ULL<<59 | 1ULL<<29);
386 o_mcic = (1ULL<<43 | 1ULL<<42 | 1ULL<<41 | 1ULL<<40 |
387 1ULL<<36 | 1ULL<<35 | 1ULL<<34 | 1ULL<<32 |
388 1ULL<<30 | 1ULL<<21 | 1ULL<<20 | 1ULL<<17 |
391 z_mcic = (1ULL<<63 | 1ULL<<59 | 1ULL<<57 | 1ULL<<50 |
393 o_mcic = (1ULL<<43 | 1ULL<<42 | 1ULL<<41 | 1ULL<<40 |
394 1ULL<<36 | 1ULL<<35 | 1ULL<<34 | 1ULL<<32 |
395 1ULL<<30 | 1ULL<<20 | 1ULL<<17 | 1ULL<<16);
397 t_mcic = *(u64 *)mci;
399 if (((t_mcic & z_mcic) != 0) ||
400 ((t_mcic & o_mcic) != o_mcic)) {
401 s390_handle_damage("processing backup machine "
402 "check with damage.");
406 * Nullifying exigent condition, therefore we might
407 * retry this instruction.
410 spin_lock(&ipd_lock);
414 if (((tmp - last_ipd) >> 12) < MAX_IPD_TIME)
421 if (ipd_count == MAX_IPD_COUNT)
422 s390_handle_damage("too many ipd retries.");
424 spin_unlock(&ipd_lock);
427 /* Processing damage -> stopping machine */
428 s390_handle_damage("received instruction processing "
429 "damage machine check.");
432 if (s390_revalidate_registers(mci)) {
435 * Couldn't restore all register contents while in
436 * user mode -> mark task for termination.
439 mcck->mcck_code = *(unsigned long long *) mci;
440 set_thread_flag(TIF_MCCK_PENDING);
444 * Couldn't restore all register contents while in
445 * kernel mode -> stopping machine.
447 s390_handle_damage("unable to revalidate registers.");
451 /* Timing facility damage */
452 s390_handle_damage("TOD clock damaged");
455 if (mci->ed && mci->ec) {
456 /* External damage */
457 if (S390_lowcore.external_damage_code & (1U << ED_ETR_SYNC))
459 if (S390_lowcore.external_damage_code & (1U << ED_ETR_SWITCH))
460 etr_switch_to_local();
461 if (S390_lowcore.external_damage_code & (1U << ED_STP_SYNC))
463 if (S390_lowcore.external_damage_code & (1U << ED_STP_ISLAND))
468 /* Storage error uncorrected */
469 s390_handle_damage("received storage error uncorrected "
473 /* Storage key-error uncorrected */
474 s390_handle_damage("received storage key-error uncorrected "
477 if (mci->ds && mci->fa)
478 /* Storage degradation */
479 s390_handle_damage("received storage degradation machine "
483 /* Channel report word pending */
484 mcck->channel_report = 1;
485 set_thread_flag(TIF_MCCK_PENDING);
489 /* Warning pending */
491 set_thread_flag(TIF_MCCK_PENDING);
497 * s390_init_machine_check
499 * initialize machine check handling
502 machine_check_init(void)
504 init_MUTEX_LOCKED(&m_sem);
505 ctl_set_bit(14, 25); /* enable external damage MCH */
506 ctl_set_bit(14, 27); /* enable system recovery MCH */
507 #ifdef CONFIG_MACHCHK_WARNING
508 ctl_set_bit(14, 24); /* enable warning MCH */
514 * Initialize the machine check handler really early to be able to
515 * catch all machine checks that happen during boot
517 arch_initcall(machine_check_init);
520 * Machine checks for the channel subsystem must be enabled
521 * after the channel subsystem is initialized
524 machine_check_crw_init (void)
526 struct task_struct *task;
528 task = kthread_run(s390_collect_crw_info, &m_sem, "kmcheck");
530 return PTR_ERR(task);
531 ctl_set_bit(14, 28); /* enable channel report MCH */
535 device_initcall (machine_check_crw_init);