blob: f913139bb0c2c9cdd67a20514a453e0b223c314b [file] [log] [blame]
Mahesh Salgaonkare22a2272013-10-30 20:05:11 +05301/*
2 * Machine check exception handling CPU-side for power7 and power8
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
18 * Copyright 2013 IBM Corporation
19 * Author: Mahesh Salgaonkar <mahesh@linux.vnet.ibm.com>
20 */
21
22#undef DEBUG
23#define pr_fmt(fmt) "mce_power: " fmt
24
25#include <linux/types.h>
26#include <linux/ptrace.h>
27#include <asm/mmu.h>
28#include <asm/mce.h>
Mahesh Salgaonkar55672ec2013-12-16 10:46:24 +053029#include <asm/machdep.h>
Mahesh Salgaonkare22a2272013-10-30 20:05:11 +053030
Mahesh Salgaonkar45706bb2014-12-19 08:41:05 +053031static void flush_tlb_206(unsigned int num_sets, unsigned int action)
32{
33 unsigned long rb;
34 unsigned int i;
35
36 switch (action) {
37 case TLB_INVAL_SCOPE_GLOBAL:
38 rb = TLBIEL_INVAL_SET;
39 break;
40 case TLB_INVAL_SCOPE_LPID:
41 rb = TLBIEL_INVAL_SET_LPID;
42 break;
43 default:
44 BUG();
45 break;
46 }
47
48 asm volatile("ptesync" : : : "memory");
49 for (i = 0; i < num_sets; i++) {
50 asm volatile("tlbiel %0" : : "r" (rb));
51 rb += 1 << TLBIEL_INVAL_SET_SHIFT;
52 }
53 asm volatile("ptesync" : : : "memory");
54}
55
56/*
Michael Neulingc3ab3002016-02-19 11:16:24 +110057 * Generic routines to flush TLB on POWER processors. These routines
58 * are used as flush_tlb hook in the cpu_spec.
Mahesh Salgaonkar45706bb2014-12-19 08:41:05 +053059 *
60 * action => TLB_INVAL_SCOPE_GLOBAL: Invalidate all TLBs.
61 * TLB_INVAL_SCOPE_LPID: Invalidate TLB for current LPID.
62 */
63void __flush_tlb_power7(unsigned int action)
64{
65 flush_tlb_206(POWER7_TLB_SETS, action);
66}
67
Mahesh Salgaonkar45706bb2014-12-19 08:41:05 +053068void __flush_tlb_power8(unsigned int action)
69{
70 flush_tlb_206(POWER8_TLB_SETS, action);
71}
72
Michael Neulingc3ab3002016-02-19 11:16:24 +110073void __flush_tlb_power9(unsigned int action)
74{
Nicholas Piggin95dbdf42017-04-17 00:21:19 +100075 unsigned int num_sets;
Aneesh Kumar K.V1a472c92016-04-29 23:26:05 +100076
Nicholas Piggin95dbdf42017-04-17 00:21:19 +100077 if (radix_enabled())
78 num_sets = POWER9_TLB_SETS_RADIX;
79 else
80 num_sets = POWER9_TLB_SETS_HASH;
81
82 flush_tlb_206(num_sets, action);
Michael Neulingc3ab3002016-02-19 11:16:24 +110083}
84
85
Mahesh Salgaonkare22a2272013-10-30 20:05:11 +053086/* flush SLBs and reload */
Valentin Rothbergbb03efe2016-05-03 08:59:27 +020087#ifdef CONFIG_PPC_STD_MMU_64
Mahesh Salgaonkare22a2272013-10-30 20:05:11 +053088static void flush_and_reload_slb(void)
89{
90 struct slb_shadow *slb;
91 unsigned long i, n;
92
93 /* Invalidate all SLBs */
94 asm volatile("slbmte %0,%0; slbia" : : "r" (0));
95
96#ifdef CONFIG_KVM_BOOK3S_HANDLER
97 /*
98 * If machine check is hit when in guest or in transition, we will
99 * only flush the SLBs and continue.
100 */
101 if (get_paca()->kvm_hstate.in_guest)
102 return;
103#endif
104
105 /* For host kernel, reload the SLBs from shadow SLB buffer. */
106 slb = get_slb_shadow();
107 if (!slb)
108 return;
109
Anton Blancharda68c33f2013-12-16 10:47:54 +1100110 n = min_t(u32, be32_to_cpu(slb->persistent), SLB_MIN_SIZE);
Mahesh Salgaonkare22a2272013-10-30 20:05:11 +0530111
112 /* Load up the SLB entries from shadow SLB */
113 for (i = 0; i < n; i++) {
Anton Blancharda68c33f2013-12-16 10:47:54 +1100114 unsigned long rb = be64_to_cpu(slb->save_area[i].esid);
115 unsigned long rs = be64_to_cpu(slb->save_area[i].vsid);
Mahesh Salgaonkare22a2272013-10-30 20:05:11 +0530116
117 rb = (rb & ~0xFFFul) | i;
118 asm volatile("slbmte %0,%1" : : "r" (rs), "r" (rb));
119 }
120}
Aneesh Kumar K.Vcaca2852016-04-29 23:26:07 +1000121#endif
Mahesh Salgaonkare22a2272013-10-30 20:05:11 +0530122
Nicholas Piggin7b9f71f92017-02-28 12:00:48 +1000123static void flush_erat(void)
124{
125 asm volatile(PPC_INVALIDATE_ERAT : : :"memory");
126}
127
128#define MCE_FLUSH_SLB 1
129#define MCE_FLUSH_TLB 2
130#define MCE_FLUSH_ERAT 3
131
132static int mce_flush(int what)
133{
134#ifdef CONFIG_PPC_STD_MMU_64
135 if (what == MCE_FLUSH_SLB) {
136 flush_and_reload_slb();
137 return 1;
138 }
139#endif
140 if (what == MCE_FLUSH_ERAT) {
141 flush_erat();
142 return 1;
143 }
144 if (what == MCE_FLUSH_TLB) {
145 if (cur_cpu_spec && cur_cpu_spec->flush_tlb) {
146 cur_cpu_spec->flush_tlb(TLB_INVAL_SCOPE_GLOBAL);
147 return 1;
148 }
149 }
150
151 return 0;
152}
153
Nicholas Piggin755309b2017-03-14 22:36:47 +1000154#define SRR1_MC_LOADSTORE(srr1) ((srr1) & PPC_BIT(42))
Nicholas Piggin58c8d172017-03-14 22:36:45 +1000155
Nicholas Piggin631bc462017-03-14 22:36:46 +1000156struct mce_ierror_table {
157 unsigned long srr1_mask;
158 unsigned long srr1_value;
159 bool nip_valid; /* nip is a valid indicator of faulting address */
160 unsigned int error_type;
161 unsigned int error_subtype;
162 unsigned int initiator;
163 unsigned int severity;
164};
165
166static const struct mce_ierror_table mce_p7_ierror_table[] = {
167{ 0x00000000001c0000, 0x0000000000040000, true,
168 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_IFETCH,
169 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
170{ 0x00000000001c0000, 0x0000000000080000, true,
171 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_PARITY,
172 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
173{ 0x00000000001c0000, 0x00000000000c0000, true,
174 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_MULTIHIT,
175 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
176{ 0x00000000001c0000, 0x0000000000100000, true,
177 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_INDETERMINATE, /* BOTH */
178 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
179{ 0x00000000001c0000, 0x0000000000140000, true,
180 MCE_ERROR_TYPE_TLB, MCE_TLB_ERROR_MULTIHIT,
181 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
182{ 0x00000000001c0000, 0x0000000000180000, true,
183 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_PAGE_TABLE_WALK_IFETCH,
184 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
185{ 0x00000000001c0000, 0x00000000001c0000, true,
186 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_IFETCH,
187 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
188{ 0, 0, 0, 0, 0, 0 } };
189
190static const struct mce_ierror_table mce_p8_ierror_table[] = {
Nicholas Pigginc7e790c2017-03-14 22:36:48 +1000191{ 0x00000000081c0000, 0x0000000000040000, true,
Nicholas Piggin631bc462017-03-14 22:36:46 +1000192 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_IFETCH,
193 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
Nicholas Pigginc7e790c2017-03-14 22:36:48 +1000194{ 0x00000000081c0000, 0x0000000000080000, true,
Nicholas Piggin631bc462017-03-14 22:36:46 +1000195 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_PARITY,
196 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
Nicholas Pigginc7e790c2017-03-14 22:36:48 +1000197{ 0x00000000081c0000, 0x00000000000c0000, true,
Nicholas Piggin631bc462017-03-14 22:36:46 +1000198 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_MULTIHIT,
199 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
Nicholas Pigginc7e790c2017-03-14 22:36:48 +1000200{ 0x00000000081c0000, 0x0000000000100000, true,
Nicholas Piggin631bc462017-03-14 22:36:46 +1000201 MCE_ERROR_TYPE_ERAT,MCE_ERAT_ERROR_MULTIHIT,
202 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
Nicholas Pigginc7e790c2017-03-14 22:36:48 +1000203{ 0x00000000081c0000, 0x0000000000140000, true,
Nicholas Piggin631bc462017-03-14 22:36:46 +1000204 MCE_ERROR_TYPE_TLB, MCE_TLB_ERROR_MULTIHIT,
205 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
Nicholas Pigginc7e790c2017-03-14 22:36:48 +1000206{ 0x00000000081c0000, 0x0000000000180000, true,
Nicholas Piggin631bc462017-03-14 22:36:46 +1000207 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_PAGE_TABLE_WALK_IFETCH,
208 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
Nicholas Pigginc7e790c2017-03-14 22:36:48 +1000209{ 0x00000000081c0000, 0x00000000001c0000, true,
Nicholas Piggin631bc462017-03-14 22:36:46 +1000210 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_IFETCH,
211 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
Nicholas Pigginc7e790c2017-03-14 22:36:48 +1000212{ 0x00000000081c0000, 0x0000000008000000, true,
213 MCE_ERROR_TYPE_LINK,MCE_LINK_ERROR_IFETCH_TIMEOUT,
214 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
215{ 0x00000000081c0000, 0x0000000008040000, true,
216 MCE_ERROR_TYPE_LINK,MCE_LINK_ERROR_PAGE_TABLE_WALK_IFETCH_TIMEOUT,
217 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
Nicholas Piggin631bc462017-03-14 22:36:46 +1000218{ 0, 0, 0, 0, 0, 0 } };
219
220static const struct mce_ierror_table mce_p9_ierror_table[] = {
221{ 0x00000000081c0000, 0x0000000000040000, true,
222 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_IFETCH,
223 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
224{ 0x00000000081c0000, 0x0000000000080000, true,
225 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_PARITY,
226 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
227{ 0x00000000081c0000, 0x00000000000c0000, true,
228 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_MULTIHIT,
229 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
230{ 0x00000000081c0000, 0x0000000000100000, true,
231 MCE_ERROR_TYPE_ERAT,MCE_ERAT_ERROR_MULTIHIT,
232 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
233{ 0x00000000081c0000, 0x0000000000140000, true,
234 MCE_ERROR_TYPE_TLB, MCE_TLB_ERROR_MULTIHIT,
235 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
236{ 0x00000000081c0000, 0x0000000000180000, true,
237 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_PAGE_TABLE_WALK_IFETCH,
238 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
239{ 0x00000000081c0000, 0x0000000008000000, true,
240 MCE_ERROR_TYPE_LINK,MCE_LINK_ERROR_IFETCH_TIMEOUT,
241 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
242{ 0x00000000081c0000, 0x0000000008040000, true,
243 MCE_ERROR_TYPE_LINK,MCE_LINK_ERROR_PAGE_TABLE_WALK_IFETCH_TIMEOUT,
244 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
245{ 0x00000000081c0000, 0x00000000080c0000, true,
246 MCE_ERROR_TYPE_RA, MCE_RA_ERROR_IFETCH,
247 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
248{ 0x00000000081c0000, 0x0000000008100000, true,
249 MCE_ERROR_TYPE_RA, MCE_RA_ERROR_PAGE_TABLE_WALK_IFETCH,
250 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
251{ 0x00000000081c0000, 0x0000000008140000, false,
252 MCE_ERROR_TYPE_RA, MCE_RA_ERROR_STORE,
253 MCE_INITIATOR_CPU, MCE_SEV_FATAL, }, /* ASYNC is fatal */
254{ 0x00000000081c0000, 0x0000000008180000, false,
255 MCE_ERROR_TYPE_LINK,MCE_LINK_ERROR_STORE_TIMEOUT,
256 MCE_INITIATOR_CPU, MCE_SEV_FATAL, }, /* ASYNC is fatal */
257{ 0x00000000081c0000, 0x00000000081c0000, true,
258 MCE_ERROR_TYPE_RA, MCE_RA_ERROR_PAGE_TABLE_WALK_IFETCH_FOREIGN,
259 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
260{ 0, 0, 0, 0, 0, 0 } };
261
262struct mce_derror_table {
263 unsigned long dsisr_value;
264 bool dar_valid; /* dar is a valid indicator of faulting address */
265 unsigned int error_type;
266 unsigned int error_subtype;
267 unsigned int initiator;
268 unsigned int severity;
269};
270
271static const struct mce_derror_table mce_p7_derror_table[] = {
272{ 0x00008000, false,
273 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_LOAD_STORE,
274 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
275{ 0x00004000, true,
276 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_PAGE_TABLE_WALK_LOAD_STORE,
277 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
278{ 0x00000800, true,
279 MCE_ERROR_TYPE_ERAT, MCE_ERAT_ERROR_MULTIHIT,
280 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
281{ 0x00000400, true,
282 MCE_ERROR_TYPE_TLB, MCE_TLB_ERROR_MULTIHIT,
283 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
284{ 0x00000100, true,
285 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_PARITY,
286 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
287{ 0x00000080, true,
288 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_MULTIHIT,
289 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
290{ 0x00000040, true,
291 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_INDETERMINATE, /* BOTH */
292 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
293{ 0, false, 0, 0, 0, 0 } };
294
295static const struct mce_derror_table mce_p8_derror_table[] = {
296{ 0x00008000, false,
297 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_LOAD_STORE,
298 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
299{ 0x00004000, true,
300 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_PAGE_TABLE_WALK_LOAD_STORE,
301 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
Nicholas Pigginc7e790c2017-03-14 22:36:48 +1000302{ 0x00002000, true,
303 MCE_ERROR_TYPE_LINK, MCE_LINK_ERROR_LOAD_TIMEOUT,
304 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
305{ 0x00001000, true,
306 MCE_ERROR_TYPE_LINK, MCE_LINK_ERROR_PAGE_TABLE_WALK_LOAD_STORE_TIMEOUT,
307 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
Nicholas Piggin631bc462017-03-14 22:36:46 +1000308{ 0x00000800, true,
309 MCE_ERROR_TYPE_ERAT, MCE_ERAT_ERROR_MULTIHIT,
310 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
311{ 0x00000400, true,
312 MCE_ERROR_TYPE_TLB, MCE_TLB_ERROR_MULTIHIT,
313 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
314{ 0x00000200, true,
315 MCE_ERROR_TYPE_ERAT, MCE_ERAT_ERROR_MULTIHIT, /* SECONDARY ERAT */
316 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
317{ 0x00000100, true,
318 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_PARITY,
319 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
320{ 0x00000080, true,
321 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_MULTIHIT,
322 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
323{ 0, false, 0, 0, 0, 0 } };
324
325static const struct mce_derror_table mce_p9_derror_table[] = {
326{ 0x00008000, false,
327 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_LOAD_STORE,
328 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
329{ 0x00004000, true,
330 MCE_ERROR_TYPE_UE, MCE_UE_ERROR_PAGE_TABLE_WALK_LOAD_STORE,
331 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
332{ 0x00002000, true,
333 MCE_ERROR_TYPE_LINK, MCE_LINK_ERROR_LOAD_TIMEOUT,
334 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
335{ 0x00001000, true,
336 MCE_ERROR_TYPE_LINK, MCE_LINK_ERROR_PAGE_TABLE_WALK_LOAD_STORE_TIMEOUT,
337 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
338{ 0x00000800, true,
339 MCE_ERROR_TYPE_ERAT, MCE_ERAT_ERROR_MULTIHIT,
340 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
341{ 0x00000400, true,
342 MCE_ERROR_TYPE_TLB, MCE_TLB_ERROR_MULTIHIT,
343 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
344{ 0x00000200, false,
345 MCE_ERROR_TYPE_USER, MCE_USER_ERROR_TLBIE,
346 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
347{ 0x00000100, true,
348 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_PARITY,
349 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
350{ 0x00000080, true,
351 MCE_ERROR_TYPE_SLB, MCE_SLB_ERROR_MULTIHIT,
352 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
353{ 0x00000040, true,
354 MCE_ERROR_TYPE_RA, MCE_RA_ERROR_LOAD,
355 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
356{ 0x00000020, false,
357 MCE_ERROR_TYPE_RA, MCE_RA_ERROR_PAGE_TABLE_WALK_LOAD_STORE,
358 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
359{ 0x00000010, false,
360 MCE_ERROR_TYPE_RA, MCE_RA_ERROR_PAGE_TABLE_WALK_LOAD_STORE_FOREIGN,
361 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
362{ 0x00000008, false,
363 MCE_ERROR_TYPE_RA, MCE_RA_ERROR_LOAD_STORE_FOREIGN,
364 MCE_INITIATOR_CPU, MCE_SEV_ERROR_SYNC, },
365{ 0, false, 0, 0, 0, 0 } };
366
Nicholas Piggin755309b2017-03-14 22:36:47 +1000367static int mce_handle_ierror(struct pt_regs *regs,
Nicholas Piggin631bc462017-03-14 22:36:46 +1000368 const struct mce_ierror_table table[],
369 struct mce_error_info *mce_err, uint64_t *addr)
370{
371 uint64_t srr1 = regs->msr;
Nicholas Piggin755309b2017-03-14 22:36:47 +1000372 int handled = 0;
Nicholas Piggin631bc462017-03-14 22:36:46 +1000373 int i;
374
375 *addr = 0;
376
377 for (i = 0; table[i].srr1_mask; i++) {
378 if ((srr1 & table[i].srr1_mask) != table[i].srr1_value)
379 continue;
380
Nicholas Piggin755309b2017-03-14 22:36:47 +1000381 /* attempt to correct the error */
382 switch (table[i].error_type) {
383 case MCE_ERROR_TYPE_SLB:
384 handled = mce_flush(MCE_FLUSH_SLB);
385 break;
386 case MCE_ERROR_TYPE_ERAT:
387 handled = mce_flush(MCE_FLUSH_ERAT);
388 break;
389 case MCE_ERROR_TYPE_TLB:
390 handled = mce_flush(MCE_FLUSH_TLB);
391 break;
392 }
393
394 /* now fill in mce_error_info */
Nicholas Piggin631bc462017-03-14 22:36:46 +1000395 mce_err->error_type = table[i].error_type;
396 switch (table[i].error_type) {
397 case MCE_ERROR_TYPE_UE:
398 mce_err->u.ue_error_type = table[i].error_subtype;
399 break;
400 case MCE_ERROR_TYPE_SLB:
401 mce_err->u.slb_error_type = table[i].error_subtype;
402 break;
403 case MCE_ERROR_TYPE_ERAT:
404 mce_err->u.erat_error_type = table[i].error_subtype;
405 break;
406 case MCE_ERROR_TYPE_TLB:
407 mce_err->u.tlb_error_type = table[i].error_subtype;
408 break;
409 case MCE_ERROR_TYPE_USER:
410 mce_err->u.user_error_type = table[i].error_subtype;
411 break;
412 case MCE_ERROR_TYPE_RA:
413 mce_err->u.ra_error_type = table[i].error_subtype;
414 break;
415 case MCE_ERROR_TYPE_LINK:
416 mce_err->u.link_error_type = table[i].error_subtype;
417 break;
418 }
419 mce_err->severity = table[i].severity;
420 mce_err->initiator = table[i].initiator;
421 if (table[i].nip_valid)
422 *addr = regs->nip;
Nicholas Piggin755309b2017-03-14 22:36:47 +1000423 return handled;
Nicholas Piggin631bc462017-03-14 22:36:46 +1000424 }
425
426 mce_err->error_type = MCE_ERROR_TYPE_UNKNOWN;
427 mce_err->severity = MCE_SEV_ERROR_SYNC;
428 mce_err->initiator = MCE_INITIATOR_CPU;
Nicholas Piggin755309b2017-03-14 22:36:47 +1000429
430 return 0;
Nicholas Piggin631bc462017-03-14 22:36:46 +1000431}
432
Nicholas Piggin755309b2017-03-14 22:36:47 +1000433static int mce_handle_derror(struct pt_regs *regs,
Nicholas Piggin631bc462017-03-14 22:36:46 +1000434 const struct mce_derror_table table[],
435 struct mce_error_info *mce_err, uint64_t *addr)
436{
437 uint64_t dsisr = regs->dsisr;
Nicholas Piggin755309b2017-03-14 22:36:47 +1000438 int handled = 0;
439 int found = 0;
Nicholas Piggin631bc462017-03-14 22:36:46 +1000440 int i;
441
442 *addr = 0;
443
444 for (i = 0; table[i].dsisr_value; i++) {
445 if (!(dsisr & table[i].dsisr_value))
446 continue;
447
Nicholas Piggin755309b2017-03-14 22:36:47 +1000448 /* attempt to correct the error */
449 switch (table[i].error_type) {
450 case MCE_ERROR_TYPE_SLB:
451 if (mce_flush(MCE_FLUSH_SLB))
452 handled = 1;
453 break;
454 case MCE_ERROR_TYPE_ERAT:
455 if (mce_flush(MCE_FLUSH_ERAT))
456 handled = 1;
457 break;
458 case MCE_ERROR_TYPE_TLB:
459 if (mce_flush(MCE_FLUSH_TLB))
460 handled = 1;
461 break;
462 }
463
464 /*
465 * Attempt to handle multiple conditions, but only return
466 * one. Ensure uncorrectable errors are first in the table
467 * to match.
468 */
469 if (found)
470 continue;
471
472 /* now fill in mce_error_info */
Nicholas Piggin631bc462017-03-14 22:36:46 +1000473 mce_err->error_type = table[i].error_type;
474 switch (table[i].error_type) {
475 case MCE_ERROR_TYPE_UE:
476 mce_err->u.ue_error_type = table[i].error_subtype;
477 break;
478 case MCE_ERROR_TYPE_SLB:
479 mce_err->u.slb_error_type = table[i].error_subtype;
480 break;
481 case MCE_ERROR_TYPE_ERAT:
482 mce_err->u.erat_error_type = table[i].error_subtype;
483 break;
484 case MCE_ERROR_TYPE_TLB:
485 mce_err->u.tlb_error_type = table[i].error_subtype;
486 break;
487 case MCE_ERROR_TYPE_USER:
488 mce_err->u.user_error_type = table[i].error_subtype;
489 break;
490 case MCE_ERROR_TYPE_RA:
491 mce_err->u.ra_error_type = table[i].error_subtype;
492 break;
493 case MCE_ERROR_TYPE_LINK:
494 mce_err->u.link_error_type = table[i].error_subtype;
495 break;
496 }
497 mce_err->severity = table[i].severity;
498 mce_err->initiator = table[i].initiator;
499 if (table[i].dar_valid)
500 *addr = regs->dar;
501
Nicholas Piggin755309b2017-03-14 22:36:47 +1000502 found = 1;
Nicholas Piggin631bc462017-03-14 22:36:46 +1000503 }
504
Nicholas Piggin755309b2017-03-14 22:36:47 +1000505 if (found)
506 return handled;
507
Nicholas Piggin631bc462017-03-14 22:36:46 +1000508 mce_err->error_type = MCE_ERROR_TYPE_UNKNOWN;
509 mce_err->severity = MCE_SEV_ERROR_SYNC;
510 mce_err->initiator = MCE_INITIATOR_CPU;
Nicholas Piggin755309b2017-03-14 22:36:47 +1000511
512 return 0;
Nicholas Piggin631bc462017-03-14 22:36:46 +1000513}
514
515static long mce_handle_ue_error(struct pt_regs *regs)
516{
517 long handled = 0;
518
519 /*
520 * On specific SCOM read via MMIO we may get a machine check
521 * exception with SRR0 pointing inside opal. If that is the
522 * case OPAL may have recovery address to re-read SCOM data in
523 * different way and hence we can recover from this MC.
524 */
525
526 if (ppc_md.mce_check_early_recovery) {
527 if (ppc_md.mce_check_early_recovery(regs))
528 handled = 1;
529 }
530 return handled;
531}
532
Nicholas Piggin755309b2017-03-14 22:36:47 +1000533static long mce_handle_error(struct pt_regs *regs,
534 const struct mce_derror_table dtable[],
535 const struct mce_ierror_table itable[])
Mahesh Salgaonkare22a2272013-10-30 20:05:11 +0530536{
Nicholas Piggin755309b2017-03-14 22:36:47 +1000537 struct mce_error_info mce_err = { 0 };
538 uint64_t addr;
539 uint64_t srr1 = regs->msr;
540 long handled;
Mahesh Salgaonkare22a2272013-10-30 20:05:11 +0530541
Nicholas Piggin755309b2017-03-14 22:36:47 +1000542 if (SRR1_MC_LOADSTORE(srr1))
543 handled = mce_handle_derror(regs, dtable, &mce_err, &addr);
544 else
545 handled = mce_handle_ierror(regs, itable, &mce_err, &addr);
Mahesh Salgaonkare22a2272013-10-30 20:05:11 +0530546
Nicholas Piggin755309b2017-03-14 22:36:47 +1000547 if (!handled && mce_err.error_type == MCE_ERROR_TYPE_UE)
548 handled = mce_handle_ue_error(regs);
549
550 save_mce_event(regs, handled, &mce_err, regs->nip, addr);
551
552 return handled;
Mahesh Salgaonkare22a2272013-10-30 20:05:11 +0530553}
554
555long __machine_check_early_realmode_p7(struct pt_regs *regs)
556{
Nicholas Piggin631bc462017-03-14 22:36:46 +1000557 /* P7 DD1 leaves top bits of DSISR undefined */
558 regs->dsisr &= 0x0000ffff;
559
Nicholas Piggin755309b2017-03-14 22:36:47 +1000560 return mce_handle_error(regs, mce_p7_derror_table, mce_p7_ierror_table);
Mahesh Salgaonkarae744f32013-10-30 20:05:26 +0530561}
562
563long __machine_check_early_realmode_p8(struct pt_regs *regs)
564{
Nicholas Piggin755309b2017-03-14 22:36:47 +1000565 return mce_handle_error(regs, mce_p8_derror_table, mce_p8_ierror_table);
Nicholas Piggin7b9f71f92017-02-28 12:00:48 +1000566}
567
Nicholas Piggin7b9f71f92017-02-28 12:00:48 +1000568long __machine_check_early_realmode_p9(struct pt_regs *regs)
569{
Nicholas Piggin755309b2017-03-14 22:36:47 +1000570 return mce_handle_error(regs, mce_p9_derror_table, mce_p9_ierror_table);
Nicholas Piggin7b9f71f92017-02-28 12:00:48 +1000571}