2 * Machine check handler
4 * Copyright IBM Corp. 2000, 2009
5 * Author(s): Ingo Adlung <adlung@de.ibm.com>,
6 * Martin Schwidefsky <schwidefsky@de.ibm.com>,
7 * Cornelia Huck <cornelia.huck@de.ibm.com>,
8 * Heiko Carstens <heiko.carstens@de.ibm.com>,
11 #include <linux/kernel_stat.h>
12 #include <linux/init.h>
13 #include <linux/errno.h>
14 #include <linux/hardirq.h>
15 #include <linux/time.h>
16 #include <linux/module.h>
17 #include <asm/lowcore.h>
20 #include <asm/cputime.h>
23 #include <asm/switch_to.h>
24 #include <asm/ctl_reg.h>
27 unsigned int kill_task
: 1;
28 unsigned int channel_report
: 1;
29 unsigned int warning
: 1;
30 unsigned int etr_queue
: 1;
31 unsigned int stp_queue
: 1;
32 unsigned long mcck_code
;
35 static DEFINE_PER_CPU(struct mcck_struct
, cpu_mcck
);
37 static void s390_handle_damage(void)
40 disabled_wait((unsigned long) __builtin_return_address(0));
45 * Main machine check handler function. Will be called with interrupts enabled
46 * or disabled and machine checks enabled or disabled.
48 void s390_handle_mcck(void)
51 struct mcck_struct mcck
;
54 * Disable machine checks and get the current state of accumulated
55 * machine checks. Afterwards delete the old state and enable machine
58 local_irq_save(flags
);
60 mcck
= *this_cpu_ptr(&cpu_mcck
);
61 memset(this_cpu_ptr(&cpu_mcck
), 0, sizeof(mcck
));
62 clear_cpu_flag(CIF_MCCK_PENDING
);
64 local_irq_restore(flags
);
66 if (mcck
.channel_report
)
67 crw_handle_channel_report();
69 * A warning may remain for a prolonged period on the bare iron.
70 * (actually until the machine is powered off, or the problem is gone)
71 * So we just stop listening for the WARNING MCH and avoid continuously
72 * being interrupted. One caveat is however, that we must do this per
73 * processor and cannot use the smp version of ctl_clear_bit().
74 * On VM we only get one interrupt per virtally presented machinecheck.
75 * Though one suffices, we may get one interrupt per (virtual) cpu.
77 if (mcck
.warning
) { /* WARNING pending ? */
78 static int mchchk_wng_posted
= 0;
80 /* Use single cpu clear, as we cannot handle smp here. */
81 __ctl_clear_bit(14, 24); /* Disable WARNING MCH */
82 if (xchg(&mchchk_wng_posted
, 1) == 0)
83 kill_cad_pid(SIGPWR
, 1);
91 printk(KERN_EMERG
"mcck: Terminating task because of machine "
92 "malfunction (code 0x%016lx).\n", mcck
.mcck_code
);
93 printk(KERN_EMERG
"mcck: task: %s, pid: %d.\n",
94 current
->comm
, current
->pid
);
98 EXPORT_SYMBOL_GPL(s390_handle_mcck
);
101 * returns 0 if all registers could be validated
102 * returns 1 otherwise
104 static int notrace
s390_validate_registers(union mci mci
)
108 void *fpt_save_area
, *fpt_creg_save_area
;
115 * General purpose registers couldn't be restored and have
116 * unknown contents. Process needs to be terminated.
122 * Floating point registers can't be restored and
123 * therefore the process needs to be terminated.
127 fpt_save_area
= &S390_lowcore
.floating_pt_save_area
;
128 fpt_creg_save_area
= &S390_lowcore
.fpt_creg_save_area
;
131 * Floating point control register can't be restored.
132 * Task will be terminated.
134 asm volatile("lfpc 0(%0)" : : "a" (&zero
), "m" (zero
));
137 asm volatile("lfpc 0(%0)" : : "a" (fpt_creg_save_area
));
139 if (!MACHINE_HAS_VX
) {
140 /* Validate floating point registers */
158 : : "a" (fpt_save_area
));
160 /* Validate vector registers */
165 * Vector registers can't be restored and therefore
166 * the process needs to be terminated.
170 cr0
.val
= S390_lowcore
.cregs_save_area
[0];
171 cr0
.afp
= cr0
.vx
= 1;
172 __ctl_load(cr0
.val
, 0, 0);
175 " .word 0xe70f,0x1000,0x0036\n" /* vlm 0,15,0(1) */
176 " .word 0xe70f,0x1100,0x0c36\n" /* vlm 16,31,256(1) */
177 : : "Q" (*(struct vx_array
*)
178 &S390_lowcore
.vector_save_area
) : "1");
179 __ctl_load(S390_lowcore
.cregs_save_area
[0], 0, 0);
181 /* Validate access registers */
184 : : "a" (&S390_lowcore
.access_regs_save_area
));
187 * Access registers have unknown contents.
192 /* Validate control registers */
195 * Control registers have unknown contents.
196 * Can't recover and therefore stopping machine.
198 s390_handle_damage();
202 : : "a" (&S390_lowcore
.cregs_save_area
));
205 * We don't even try to validate the TOD register, since we simply
206 * can't write something sensible into that register.
209 * See if we can validate the TOD programmable register with its
210 * old contents (should be zero) otherwise set it to zero.
221 : : "a" (&S390_lowcore
.tod_progreg_save_area
)
223 /* Validate clock comparator register */
224 set_clock_comparator(S390_lowcore
.clock_comparator
);
225 /* Check if old PSW is valid */
228 * Can't tell if we come from user or kernel mode
229 * -> stopping machine.
231 s390_handle_damage();
233 if (!mci
.ms
|| !mci
.pm
|| !mci
.ia
)
239 #define MAX_IPD_COUNT 29
240 #define MAX_IPD_TIME (5 * 60 * USEC_PER_SEC) /* 5 minutes */
242 #define ED_STP_ISLAND 6 /* External damage STP island check */
243 #define ED_STP_SYNC 7 /* External damage STP sync check */
244 #define ED_ETR_SYNC 12 /* External damage ETR sync check */
245 #define ED_ETR_SWITCH 13 /* External damage ETR switch to local */
248 * machine check handler.
250 void notrace
s390_do_machine_check(struct pt_regs
*regs
)
252 static int ipd_count
;
253 static DEFINE_SPINLOCK(ipd_lock
);
254 static unsigned long long last_ipd
;
255 struct mcck_struct
*mcck
;
256 unsigned long long tmp
;
261 inc_irq_stat(NMI_NMI
);
262 mci
.val
= S390_lowcore
.mcck_interruption_code
;
263 mcck
= this_cpu_ptr(&cpu_mcck
);
264 umode
= user_mode(regs
);
267 /* System damage -> stopping machine */
268 s390_handle_damage();
272 /* Processing backup -> verify if we can survive this */
273 u64 z_mcic
, o_mcic
, t_mcic
;
274 z_mcic
= (1ULL<<63 | 1ULL<<59 | 1ULL<<29);
275 o_mcic
= (1ULL<<43 | 1ULL<<42 | 1ULL<<41 | 1ULL<<40 |
276 1ULL<<36 | 1ULL<<35 | 1ULL<<34 | 1ULL<<32 |
277 1ULL<<30 | 1ULL<<21 | 1ULL<<20 | 1ULL<<17 |
281 if (((t_mcic
& z_mcic
) != 0) ||
282 ((t_mcic
& o_mcic
) != o_mcic
)) {
283 s390_handle_damage();
287 * Nullifying exigent condition, therefore we might
288 * retry this instruction.
290 spin_lock(&ipd_lock
);
291 tmp
= get_tod_clock();
292 if (((tmp
- last_ipd
) >> 12) < MAX_IPD_TIME
)
297 if (ipd_count
== MAX_IPD_COUNT
)
298 s390_handle_damage();
299 spin_unlock(&ipd_lock
);
301 /* Processing damage -> stopping machine */
302 s390_handle_damage();
305 if (s390_validate_registers(mci
)) {
308 * Couldn't restore all register contents while in
309 * user mode -> mark task for termination.
312 mcck
->mcck_code
= mci
.val
;
313 set_cpu_flag(CIF_MCCK_PENDING
);
316 * Couldn't restore all register contents while in
317 * kernel mode -> stopping machine.
319 s390_handle_damage();
323 /* Timing facility damage */
324 s390_handle_damage();
326 if (mci
.ed
&& mci
.ec
) {
327 /* External damage */
328 if (S390_lowcore
.external_damage_code
& (1U << ED_ETR_SYNC
))
329 mcck
->etr_queue
|= etr_sync_check();
330 if (S390_lowcore
.external_damage_code
& (1U << ED_ETR_SWITCH
))
331 mcck
->etr_queue
|= etr_switch_to_local();
332 if (S390_lowcore
.external_damage_code
& (1U << ED_STP_SYNC
))
333 mcck
->stp_queue
|= stp_sync_check();
334 if (S390_lowcore
.external_damage_code
& (1U << ED_STP_ISLAND
))
335 mcck
->stp_queue
|= stp_island_check();
336 if (mcck
->etr_queue
|| mcck
->stp_queue
)
337 set_cpu_flag(CIF_MCCK_PENDING
);
340 /* Storage error uncorrected */
341 s390_handle_damage();
343 /* Storage key-error uncorrected */
344 s390_handle_damage();
345 if (mci
.ds
&& mci
.fa
)
346 /* Storage degradation */
347 s390_handle_damage();
349 /* Channel report word pending */
350 mcck
->channel_report
= 1;
351 set_cpu_flag(CIF_MCCK_PENDING
);
354 /* Warning pending */
356 set_cpu_flag(CIF_MCCK_PENDING
);
361 static int __init
machine_check_init(void)
363 ctl_set_bit(14, 25); /* enable external damage MCH */
364 ctl_set_bit(14, 27); /* enable system recovery MCH */
365 ctl_set_bit(14, 24); /* enable warning MCH */
368 early_initcall(machine_check_init
);