blob: 29376f0e725c985e7427b0bdbd3da60937d8f97b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Heiko Carstensf5daba12009-03-26 15:24:01 +01002 * Machine check handler
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02004 * Copyright IBM Corp. 2000, 2009
Heiko Carstensf5daba12009-03-26 15:24:01 +01005 * 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>,
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 */
10
Heiko Carstens052ff462011-01-05 12:47:28 +010011#include <linux/kernel_stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/errno.h>
Heiko Carstens81f64b82009-04-14 15:36:18 +020014#include <linux/hardirq.h>
Heiko Carstens022e4fc2006-05-01 12:16:14 -070015#include <linux/time.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010016#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <asm/lowcore.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010018#include <asm/smp.h>
Martin Schwidefskyfd5ada02016-05-31 15:06:51 +020019#include <asm/stp.h>
Martin Schwidefsky76d4e002009-06-12 10:26:21 +020020#include <asm/cputime.h>
Heiko Carstensf5daba12009-03-26 15:24:01 +010021#include <asm/nmi.h>
22#include <asm/crw.h>
Martin Schwidefsky80703612014-10-06 17:53:53 +020023#include <asm/switch_to.h>
Heiko Carstenscad49cf2015-07-07 08:40:49 +020024#include <asm/ctl_reg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Heiko Carstens77fa2242005-06-25 14:55:30 -070026struct mcck_struct {
Heiko Carstens36324962015-10-12 13:04:12 +020027 unsigned int kill_task : 1;
28 unsigned int channel_report : 1;
29 unsigned int warning : 1;
Heiko Carstens29b0a822015-10-09 13:48:03 +020030 unsigned int stp_queue : 1;
Heiko Carstensdc6e1552015-10-12 13:00:39 +020031 unsigned long mcck_code;
Heiko Carstens77fa2242005-06-25 14:55:30 -070032};
33
34static DEFINE_PER_CPU(struct mcck_struct, cpu_mcck);
35
Heiko Carstens3d682862015-10-12 12:39:09 +020036static void s390_handle_damage(void)
Heiko Carstensf5daba12009-03-26 15:24:01 +010037{
38 smp_send_stop();
39 disabled_wait((unsigned long) __builtin_return_address(0));
40 while (1);
41}
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/*
Heiko Carstens77fa2242005-06-25 14:55:30 -070044 * Main machine check handler function. Will be called with interrupts enabled
45 * or disabled and machine checks enabled or disabled.
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 */
Heiko Carstensf5daba12009-03-26 15:24:01 +010047void s390_handle_mcck(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
Heiko Carstens77fa2242005-06-25 14:55:30 -070049 unsigned long flags;
50 struct mcck_struct mcck;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Heiko Carstens77fa2242005-06-25 14:55:30 -070052 /*
53 * Disable machine checks and get the current state of accumulated
54 * machine checks. Afterwards delete the old state and enable machine
55 * checks again.
56 */
57 local_irq_save(flags);
58 local_mcck_disable();
Sebastian Ott2cb4a182014-11-28 15:40:57 +010059 mcck = *this_cpu_ptr(&cpu_mcck);
60 memset(this_cpu_ptr(&cpu_mcck), 0, sizeof(mcck));
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +020061 clear_cpu_flag(CIF_MCCK_PENDING);
Heiko Carstens77fa2242005-06-25 14:55:30 -070062 local_mcck_enable();
63 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Heiko Carstens77fa2242005-06-25 14:55:30 -070065 if (mcck.channel_report)
Heiko Carstensf5daba12009-03-26 15:24:01 +010066 crw_handle_channel_report();
Heiko Carstens7b886412009-03-26 15:24:02 +010067 /*
68 * A warning may remain for a prolonged period on the bare iron.
69 * (actually until the machine is powered off, or the problem is gone)
70 * So we just stop listening for the WARNING MCH and avoid continuously
71 * being interrupted. One caveat is however, that we must do this per
72 * processor and cannot use the smp version of ctl_clear_bit().
73 * On VM we only get one interrupt per virtally presented machinecheck.
74 * Though one suffices, we may get one interrupt per (virtual) cpu.
75 */
Heiko Carstens77fa2242005-06-25 14:55:30 -070076 if (mcck.warning) { /* WARNING pending ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 static int mchchk_wng_posted = 0;
Heiko Carstens7b886412009-03-26 15:24:02 +010078
79 /* Use single cpu clear, as we cannot handle smp here. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 __ctl_clear_bit(14, 24); /* Disable WARNING MCH */
81 if (xchg(&mchchk_wng_posted, 1) == 0)
Cedric Le Goater9ec52092006-10-02 02:19:00 -070082 kill_cad_pid(SIGPWR, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 }
Heiko Carstens29b0a822015-10-09 13:48:03 +020084 if (mcck.stp_queue)
85 stp_queue_work();
Heiko Carstens77fa2242005-06-25 14:55:30 -070086 if (mcck.kill_task) {
87 local_irq_enable();
88 printk(KERN_EMERG "mcck: Terminating task because of machine "
Heiko Carstensdc6e1552015-10-12 13:00:39 +020089 "malfunction (code 0x%016lx).\n", mcck.mcck_code);
Heiko Carstens77fa2242005-06-25 14:55:30 -070090 printk(KERN_EMERG "mcck: task: %s, pid: %d.\n",
91 current->comm, current->pid);
92 do_exit(SIGSEGV);
93 }
94}
Christian Borntraeger71cde582008-05-21 13:37:34 +020095EXPORT_SYMBOL_GPL(s390_handle_mcck);
Heiko Carstens77fa2242005-06-25 14:55:30 -070096
97/*
98 * returns 0 if all registers could be validated
99 * returns 1 otherwise
100 */
Heiko Carstens975be632015-10-12 13:03:05 +0200101static int notrace s390_validate_registers(union mci mci)
Heiko Carstens77fa2242005-06-25 14:55:30 -0700102{
103 int kill_task;
Heiko Carstens77fa2242005-06-25 14:55:30 -0700104 u64 zero;
105 void *fpt_save_area, *fpt_creg_save_area;
106
107 kill_task = 0;
108 zero = 0;
Heiko Carstensf5daba12009-03-26 15:24:01 +0100109
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200110 if (!mci.gr) {
Heiko Carstens77fa2242005-06-25 14:55:30 -0700111 /*
112 * General purpose registers couldn't be restored and have
113 * unknown contents. Process needs to be terminated.
114 */
115 kill_task = 1;
Heiko Carstensf5daba12009-03-26 15:24:01 +0100116 }
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200117 if (!mci.fp) {
Heiko Carstens77fa2242005-06-25 14:55:30 -0700118 /*
119 * Floating point registers can't be restored and
120 * therefore the process needs to be terminated.
121 */
122 kill_task = 1;
Heiko Carstensf5daba12009-03-26 15:24:01 +0100123 }
Heiko Carstens5a798592015-02-12 13:08:27 +0100124 fpt_save_area = &S390_lowcore.floating_pt_save_area;
125 fpt_creg_save_area = &S390_lowcore.fpt_creg_save_area;
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200126 if (!mci.fc) {
Heiko Carstens5a798592015-02-12 13:08:27 +0100127 /*
128 * Floating point control register can't be restored.
129 * Task will be terminated.
130 */
131 asm volatile("lfpc 0(%0)" : : "a" (&zero), "m" (zero));
132 kill_task = 1;
133 } else
134 asm volatile("lfpc 0(%0)" : : "a" (fpt_creg_save_area));
135
Heiko Carstenscad49cf2015-07-07 08:40:49 +0200136 if (!MACHINE_HAS_VX) {
Heiko Carstens975be632015-10-12 13:03:05 +0200137 /* Validate floating point registers */
Heiko Carstenscad49cf2015-07-07 08:40:49 +0200138 asm volatile(
139 " ld 0,0(%0)\n"
140 " ld 1,8(%0)\n"
141 " ld 2,16(%0)\n"
142 " ld 3,24(%0)\n"
143 " ld 4,32(%0)\n"
144 " ld 5,40(%0)\n"
145 " ld 6,48(%0)\n"
146 " ld 7,56(%0)\n"
147 " ld 8,64(%0)\n"
148 " ld 9,72(%0)\n"
149 " ld 10,80(%0)\n"
150 " ld 11,88(%0)\n"
151 " ld 12,96(%0)\n"
152 " ld 13,104(%0)\n"
153 " ld 14,112(%0)\n"
154 " ld 15,120(%0)\n"
155 : : "a" (fpt_save_area));
156 } else {
Heiko Carstens975be632015-10-12 13:03:05 +0200157 /* Validate vector registers */
Heiko Carstenscad49cf2015-07-07 08:40:49 +0200158 union ctlreg0 cr0;
159
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200160 if (!mci.vr) {
Martin Schwidefsky80703612014-10-06 17:53:53 +0200161 /*
162 * Vector registers can't be restored and therefore
163 * the process needs to be terminated.
164 */
165 kill_task = 1;
166 }
Heiko Carstenscad49cf2015-07-07 08:40:49 +0200167 cr0.val = S390_lowcore.cregs_save_area[0];
168 cr0.afp = cr0.vx = 1;
169 __ctl_load(cr0.val, 0, 0);
Hendrik Brueckner9977e882015-06-10 12:53:42 +0200170 asm volatile(
171 " la 1,%0\n"
172 " .word 0xe70f,0x1000,0x0036\n" /* vlm 0,15,0(1) */
173 " .word 0xe70f,0x1100,0x0c36\n" /* vlm 16,31,256(1) */
174 : : "Q" (*(struct vx_array *)
175 &S390_lowcore.vector_save_area) : "1");
Heiko Carstenscad49cf2015-07-07 08:40:49 +0200176 __ctl_load(S390_lowcore.cregs_save_area[0], 0, 0);
Martin Schwidefsky80703612014-10-06 17:53:53 +0200177 }
Heiko Carstens975be632015-10-12 13:03:05 +0200178 /* Validate access registers */
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200179 asm volatile(
180 " lam 0,15,0(%0)"
181 : : "a" (&S390_lowcore.access_regs_save_area));
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200182 if (!mci.ar) {
Heiko Carstens77fa2242005-06-25 14:55:30 -0700183 /*
184 * Access registers have unknown contents.
185 * Terminating task.
186 */
187 kill_task = 1;
Heiko Carstensf5daba12009-03-26 15:24:01 +0100188 }
Heiko Carstens975be632015-10-12 13:03:05 +0200189 /* Validate control registers */
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200190 if (!mci.cr) {
Heiko Carstens77fa2242005-06-25 14:55:30 -0700191 /*
192 * Control registers have unknown contents.
193 * Can't recover and therefore stopping machine.
194 */
Heiko Carstens3d682862015-10-12 12:39:09 +0200195 s390_handle_damage();
Heiko Carstensf5daba12009-03-26 15:24:01 +0100196 } else {
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200197 asm volatile(
198 " lctlg 0,15,0(%0)"
199 : : "a" (&S390_lowcore.cregs_save_area));
Heiko Carstensf5daba12009-03-26 15:24:01 +0100200 }
Heiko Carstens77fa2242005-06-25 14:55:30 -0700201 /*
Heiko Carstens975be632015-10-12 13:03:05 +0200202 * We don't even try to validate the TOD register, since we simply
Heiko Carstens77fa2242005-06-25 14:55:30 -0700203 * can't write something sensible into that register.
204 */
Heiko Carstens77fa2242005-06-25 14:55:30 -0700205 /*
Heiko Carstens975be632015-10-12 13:03:05 +0200206 * See if we can validate the TOD programmable register with its
Heiko Carstens77fa2242005-06-25 14:55:30 -0700207 * old contents (should be zero) otherwise set it to zero.
208 */
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200209 if (!mci.pr)
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200210 asm volatile(
211 " sr 0,0\n"
212 " sckpf"
213 : : : "0", "cc");
Heiko Carstens77fa2242005-06-25 14:55:30 -0700214 else
215 asm volatile(
Martin Schwidefsky94c12cc2006-09-28 16:56:43 +0200216 " l 0,0(%0)\n"
217 " sckpf"
218 : : "a" (&S390_lowcore.tod_progreg_save_area)
219 : "0", "cc");
Heiko Carstens975be632015-10-12 13:03:05 +0200220 /* Validate clock comparator register */
Martin Schwidefskyb6bed092013-08-08 12:37:00 +0200221 set_clock_comparator(S390_lowcore.clock_comparator);
Heiko Carstens77fa2242005-06-25 14:55:30 -0700222 /* Check if old PSW is valid */
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200223 if (!mci.wp)
Heiko Carstens77fa2242005-06-25 14:55:30 -0700224 /*
225 * Can't tell if we come from user or kernel mode
226 * -> stopping machine.
227 */
Heiko Carstens3d682862015-10-12 12:39:09 +0200228 s390_handle_damage();
Heiko Carstens77fa2242005-06-25 14:55:30 -0700229
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200230 if (!mci.ms || !mci.pm || !mci.ia)
Heiko Carstens77fa2242005-06-25 14:55:30 -0700231 kill_task = 1;
232
233 return kill_task;
234}
235
Heiko Carstensb73d40c2006-04-27 18:40:23 -0700236#define MAX_IPD_COUNT 29
Heiko Carstens022e4fc2006-05-01 12:16:14 -0700237#define MAX_IPD_TIME (5 * 60 * USEC_PER_SEC) /* 5 minutes */
Heiko Carstensb73d40c2006-04-27 18:40:23 -0700238
Heiko Carstensf5daba12009-03-26 15:24:01 +0100239#define ED_STP_ISLAND 6 /* External damage STP island check */
240#define ED_STP_SYNC 7 /* External damage STP sync check */
Heiko Carstensf5daba12009-03-26 15:24:01 +0100241
Heiko Carstens77fa2242005-06-25 14:55:30 -0700242/*
243 * machine check handler.
244 */
Heiko Carstenscc54c1e2009-03-26 15:23:59 +0100245void notrace s390_do_machine_check(struct pt_regs *regs)
Heiko Carstens77fa2242005-06-25 14:55:30 -0700246{
Heiko Carstensf5daba12009-03-26 15:24:01 +0100247 static int ipd_count;
Heiko Carstensb73d40c2006-04-27 18:40:23 -0700248 static DEFINE_SPINLOCK(ipd_lock);
249 static unsigned long long last_ipd;
Heiko Carstensf5daba12009-03-26 15:24:01 +0100250 struct mcck_struct *mcck;
Heiko Carstensb73d40c2006-04-27 18:40:23 -0700251 unsigned long long tmp;
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200252 union mci mci;
Heiko Carstens77fa2242005-06-25 14:55:30 -0700253 int umode;
254
Heiko Carstens81f64b82009-04-14 15:36:18 +0200255 nmi_enter();
Heiko Carstens420f42e2013-01-02 15:18:18 +0100256 inc_irq_stat(NMI_NMI);
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200257 mci.val = S390_lowcore.mcck_interruption_code;
Christoph Lametereb7e7d72014-08-17 12:30:45 -0500258 mcck = this_cpu_ptr(&cpu_mcck);
Heiko Carstens77fa2242005-06-25 14:55:30 -0700259 umode = user_mode(regs);
260
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200261 if (mci.sd) {
Heiko Carstens77fa2242005-06-25 14:55:30 -0700262 /* System damage -> stopping machine */
Heiko Carstens3d682862015-10-12 12:39:09 +0200263 s390_handle_damage();
Heiko Carstensf5daba12009-03-26 15:24:01 +0100264 }
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200265 if (mci.pd) {
266 if (mci.b) {
Heiko Carstens77fa2242005-06-25 14:55:30 -0700267 /* Processing backup -> verify if we can survive this */
268 u64 z_mcic, o_mcic, t_mcic;
Heiko Carstens77fa2242005-06-25 14:55:30 -0700269 z_mcic = (1ULL<<63 | 1ULL<<59 | 1ULL<<29);
270 o_mcic = (1ULL<<43 | 1ULL<<42 | 1ULL<<41 | 1ULL<<40 |
271 1ULL<<36 | 1ULL<<35 | 1ULL<<34 | 1ULL<<32 |
272 1ULL<<30 | 1ULL<<21 | 1ULL<<20 | 1ULL<<17 |
273 1ULL<<16);
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200274 t_mcic = mci.val;
Heiko Carstens77fa2242005-06-25 14:55:30 -0700275
276 if (((t_mcic & z_mcic) != 0) ||
277 ((t_mcic & o_mcic) != o_mcic)) {
Heiko Carstens3d682862015-10-12 12:39:09 +0200278 s390_handle_damage();
Heiko Carstens77fa2242005-06-25 14:55:30 -0700279 }
Heiko Carstensb73d40c2006-04-27 18:40:23 -0700280
281 /*
282 * Nullifying exigent condition, therefore we might
283 * retry this instruction.
284 */
Heiko Carstensb73d40c2006-04-27 18:40:23 -0700285 spin_lock(&ipd_lock);
Heiko Carstens1aae0562013-01-30 09:49:40 +0100286 tmp = get_tod_clock();
Heiko Carstensb73d40c2006-04-27 18:40:23 -0700287 if (((tmp - last_ipd) >> 12) < MAX_IPD_TIME)
288 ipd_count++;
289 else
290 ipd_count = 1;
Heiko Carstensb73d40c2006-04-27 18:40:23 -0700291 last_ipd = tmp;
Heiko Carstensb73d40c2006-04-27 18:40:23 -0700292 if (ipd_count == MAX_IPD_COUNT)
Heiko Carstens3d682862015-10-12 12:39:09 +0200293 s390_handle_damage();
Heiko Carstensb73d40c2006-04-27 18:40:23 -0700294 spin_unlock(&ipd_lock);
Heiko Carstensf5daba12009-03-26 15:24:01 +0100295 } else {
Heiko Carstens77fa2242005-06-25 14:55:30 -0700296 /* Processing damage -> stopping machine */
Heiko Carstens3d682862015-10-12 12:39:09 +0200297 s390_handle_damage();
Heiko Carstens77fa2242005-06-25 14:55:30 -0700298 }
299 }
Heiko Carstens975be632015-10-12 13:03:05 +0200300 if (s390_validate_registers(mci)) {
Heiko Carstens77fa2242005-06-25 14:55:30 -0700301 if (umode) {
302 /*
303 * Couldn't restore all register contents while in
304 * user mode -> mark task for termination.
305 */
306 mcck->kill_task = 1;
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200307 mcck->mcck_code = mci.val;
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +0200308 set_cpu_flag(CIF_MCCK_PENDING);
Heiko Carstensf5daba12009-03-26 15:24:01 +0100309 } else {
Heiko Carstens77fa2242005-06-25 14:55:30 -0700310 /*
311 * Couldn't restore all register contents while in
312 * kernel mode -> stopping machine.
313 */
Heiko Carstens3d682862015-10-12 12:39:09 +0200314 s390_handle_damage();
Heiko Carstensf5daba12009-03-26 15:24:01 +0100315 }
Heiko Carstens77fa2242005-06-25 14:55:30 -0700316 }
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200317 if (mci.cd) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100318 /* Timing facility damage */
Heiko Carstens3d682862015-10-12 12:39:09 +0200319 s390_handle_damage();
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100320 }
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200321 if (mci.ed && mci.ec) {
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100322 /* External damage */
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200323 if (S390_lowcore.external_damage_code & (1U << ED_STP_SYNC))
Heiko Carstens29b0a822015-10-09 13:48:03 +0200324 mcck->stp_queue |= stp_sync_check();
Martin Schwidefskyd2fec592008-07-14 09:58:56 +0200325 if (S390_lowcore.external_damage_code & (1U << ED_STP_ISLAND))
Heiko Carstens29b0a822015-10-09 13:48:03 +0200326 mcck->stp_queue |= stp_island_check();
Martin Schwidefskyfd5ada02016-05-31 15:06:51 +0200327 if (mcck->stp_queue)
Heiko Carstens29b0a822015-10-09 13:48:03 +0200328 set_cpu_flag(CIF_MCCK_PENDING);
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100329 }
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200330 if (mci.se)
Heiko Carstens77fa2242005-06-25 14:55:30 -0700331 /* Storage error uncorrected */
Heiko Carstens3d682862015-10-12 12:39:09 +0200332 s390_handle_damage();
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200333 if (mci.ke)
Heiko Carstens77fa2242005-06-25 14:55:30 -0700334 /* Storage key-error uncorrected */
Heiko Carstens3d682862015-10-12 12:39:09 +0200335 s390_handle_damage();
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200336 if (mci.ds && mci.fa)
Heiko Carstens77fa2242005-06-25 14:55:30 -0700337 /* Storage degradation */
Heiko Carstens3d682862015-10-12 12:39:09 +0200338 s390_handle_damage();
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200339 if (mci.cp) {
Heiko Carstens77fa2242005-06-25 14:55:30 -0700340 /* Channel report word pending */
341 mcck->channel_report = 1;
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +0200342 set_cpu_flag(CIF_MCCK_PENDING);
Heiko Carstens77fa2242005-06-25 14:55:30 -0700343 }
Heiko Carstensdc6e1552015-10-12 13:00:39 +0200344 if (mci.w) {
Heiko Carstens77fa2242005-06-25 14:55:30 -0700345 /* Warning pending */
346 mcck->warning = 1;
Martin Schwidefskyd3a73ac2014-04-15 12:55:07 +0200347 set_cpu_flag(CIF_MCCK_PENDING);
Heiko Carstens77fa2242005-06-25 14:55:30 -0700348 }
Heiko Carstens81f64b82009-04-14 15:36:18 +0200349 nmi_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Heiko Carstensf5daba12009-03-26 15:24:01 +0100352static int __init machine_check_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Martin Schwidefskyd54853e2007-02-05 21:18:19 +0100354 ctl_set_bit(14, 25); /* enable external damage MCH */
Heiko Carstensf5daba12009-03-26 15:24:01 +0100355 ctl_set_bit(14, 27); /* enable system recovery MCH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 ctl_set_bit(14, 24); /* enable warning MCH */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return 0;
358}
Heiko Carstens24d05ff2015-08-17 08:09:17 +0200359early_initcall(machine_check_init);