2 * Machine check exception handling CPU-side for power7 and power8
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.
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.
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.
18 * Copyright 2013 IBM Corporation
19 * Author: Mahesh Salgaonkar <mahesh@linux.vnet.ibm.com>
23 #define pr_fmt(fmt) "mce_power: " fmt
25 #include <linux/types.h>
26 #include <linux/ptrace.h>
29 #include <asm/machdep.h>
31 static void flush_tlb_206(unsigned int num_sets
, unsigned int action
)
37 case TLB_INVAL_SCOPE_GLOBAL
:
38 rb
= TLBIEL_INVAL_SET
;
40 case TLB_INVAL_SCOPE_LPID
:
41 rb
= TLBIEL_INVAL_SET_LPID
;
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
;
53 asm volatile("ptesync" : : : "memory");
56 static void flush_tlb_300(unsigned int num_sets
, unsigned int action
)
63 case TLB_INVAL_SCOPE_GLOBAL
:
64 rb
= TLBIEL_INVAL_SET
;
66 case TLB_INVAL_SCOPE_LPID
:
67 rb
= TLBIEL_INVAL_SET_LPID
;
74 asm volatile("ptesync" : : : "memory");
76 if (early_radix_enabled())
82 * First flush table/PWC caches with set 0, then flush the
83 * rest of the sets, partition scope. Radix must then do it
84 * all again with process scope. Hash just has to flush
87 asm volatile(PPC_TLBIEL(%0, %1, %2, %3, %4) : :
88 "r"(rb
), "r"(0), "i"(2), "i"(0), "r"(r
));
89 for (i
= 1; i
< num_sets
; i
++) {
90 unsigned long set
= i
* (1<<TLBIEL_INVAL_SET_SHIFT
);
92 asm volatile(PPC_TLBIEL(%0, %1, %2, %3, %4) : :
93 "r"(rb
+set
), "r"(0), "i"(2), "i"(0), "r"(r
));
96 asm volatile(PPC_TLBIEL(%0, %1, %2, %3, %4) : :
97 "r"(rb
), "r"(0), "i"(2), "i"(1), "r"(r
));
98 if (early_radix_enabled()) {
99 for (i
= 1; i
< num_sets
; i
++) {
100 unsigned long set
= i
* (1<<TLBIEL_INVAL_SET_SHIFT
);
102 asm volatile(PPC_TLBIEL(%0, %1, %2, %3, %4) : :
103 "r"(rb
+set
), "r"(0), "i"(2), "i"(1), "r"(r
));
107 asm volatile("ptesync" : : : "memory");
111 * Generic routines to flush TLB on POWER processors. These routines
112 * are used as flush_tlb hook in the cpu_spec.
114 * action => TLB_INVAL_SCOPE_GLOBAL: Invalidate all TLBs.
115 * TLB_INVAL_SCOPE_LPID: Invalidate TLB for current LPID.
117 void __flush_tlb_power7(unsigned int action
)
119 flush_tlb_206(POWER7_TLB_SETS
, action
);
122 void __flush_tlb_power8(unsigned int action
)
124 flush_tlb_206(POWER8_TLB_SETS
, action
);
127 void __flush_tlb_power9(unsigned int action
)
129 unsigned int num_sets
;
132 num_sets
= POWER9_TLB_SETS_RADIX
;
134 num_sets
= POWER9_TLB_SETS_HASH
;
136 flush_tlb_300(num_sets
, action
);
140 /* flush SLBs and reload */
141 #ifdef CONFIG_PPC_STD_MMU_64
142 static void flush_and_reload_slb(void)
144 struct slb_shadow
*slb
;
147 /* Invalidate all SLBs */
148 asm volatile("slbmte %0,%0; slbia" : : "r" (0));
150 #ifdef CONFIG_KVM_BOOK3S_HANDLER
152 * If machine check is hit when in guest or in transition, we will
153 * only flush the SLBs and continue.
155 if (get_paca()->kvm_hstate
.in_guest
)
159 /* For host kernel, reload the SLBs from shadow SLB buffer. */
160 slb
= get_slb_shadow();
164 n
= min_t(u32
, be32_to_cpu(slb
->persistent
), SLB_MIN_SIZE
);
166 /* Load up the SLB entries from shadow SLB */
167 for (i
= 0; i
< n
; i
++) {
168 unsigned long rb
= be64_to_cpu(slb
->save_area
[i
].esid
);
169 unsigned long rs
= be64_to_cpu(slb
->save_area
[i
].vsid
);
171 rb
= (rb
& ~0xFFFul
) | i
;
172 asm volatile("slbmte %0,%1" : : "r" (rs
), "r" (rb
));
177 static void flush_erat(void)
179 asm volatile(PPC_INVALIDATE_ERAT
: : :"memory");
182 #define MCE_FLUSH_SLB 1
183 #define MCE_FLUSH_TLB 2
184 #define MCE_FLUSH_ERAT 3
186 static int mce_flush(int what
)
188 #ifdef CONFIG_PPC_STD_MMU_64
189 if (what
== MCE_FLUSH_SLB
) {
190 flush_and_reload_slb();
194 if (what
== MCE_FLUSH_ERAT
) {
198 if (what
== MCE_FLUSH_TLB
) {
199 if (cur_cpu_spec
&& cur_cpu_spec
->flush_tlb
) {
200 cur_cpu_spec
->flush_tlb(TLB_INVAL_SCOPE_GLOBAL
);
208 #define SRR1_MC_LOADSTORE(srr1) ((srr1) & PPC_BIT(42))
210 struct mce_ierror_table
{
211 unsigned long srr1_mask
;
212 unsigned long srr1_value
;
213 bool nip_valid
; /* nip is a valid indicator of faulting address */
214 unsigned int error_type
;
215 unsigned int error_subtype
;
216 unsigned int initiator
;
217 unsigned int severity
;
220 static const struct mce_ierror_table mce_p7_ierror_table
[] = {
221 { 0x00000000001c0000, 0x0000000000040000, true,
222 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_IFETCH
,
223 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
224 { 0x00000000001c0000, 0x0000000000080000, true,
225 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_PARITY
,
226 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
227 { 0x00000000001c0000, 0x00000000000c0000, true,
228 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_MULTIHIT
,
229 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
230 { 0x00000000001c0000, 0x0000000000100000, true,
231 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_INDETERMINATE
, /* BOTH */
232 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
233 { 0x00000000001c0000, 0x0000000000140000, true,
234 MCE_ERROR_TYPE_TLB
, MCE_TLB_ERROR_MULTIHIT
,
235 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
236 { 0x00000000001c0000, 0x0000000000180000, true,
237 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_PAGE_TABLE_WALK_IFETCH
,
238 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
239 { 0x00000000001c0000, 0x00000000001c0000, true,
240 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_IFETCH
,
241 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
242 { 0, 0, 0, 0, 0, 0 } };
244 static const struct mce_ierror_table mce_p8_ierror_table
[] = {
245 { 0x00000000081c0000, 0x0000000000040000, true,
246 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_IFETCH
,
247 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
248 { 0x00000000081c0000, 0x0000000000080000, true,
249 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_PARITY
,
250 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
251 { 0x00000000081c0000, 0x00000000000c0000, true,
252 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_MULTIHIT
,
253 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
254 { 0x00000000081c0000, 0x0000000000100000, true,
255 MCE_ERROR_TYPE_ERAT
,MCE_ERAT_ERROR_MULTIHIT
,
256 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
257 { 0x00000000081c0000, 0x0000000000140000, true,
258 MCE_ERROR_TYPE_TLB
, MCE_TLB_ERROR_MULTIHIT
,
259 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
260 { 0x00000000081c0000, 0x0000000000180000, true,
261 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_PAGE_TABLE_WALK_IFETCH
,
262 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
263 { 0x00000000081c0000, 0x00000000001c0000, true,
264 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_IFETCH
,
265 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
266 { 0x00000000081c0000, 0x0000000008000000, true,
267 MCE_ERROR_TYPE_LINK
,MCE_LINK_ERROR_IFETCH_TIMEOUT
,
268 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
269 { 0x00000000081c0000, 0x0000000008040000, true,
270 MCE_ERROR_TYPE_LINK
,MCE_LINK_ERROR_PAGE_TABLE_WALK_IFETCH_TIMEOUT
,
271 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
272 { 0, 0, 0, 0, 0, 0 } };
274 static const struct mce_ierror_table mce_p9_ierror_table
[] = {
275 { 0x00000000081c0000, 0x0000000000040000, true,
276 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_IFETCH
,
277 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
278 { 0x00000000081c0000, 0x0000000000080000, true,
279 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_PARITY
,
280 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
281 { 0x00000000081c0000, 0x00000000000c0000, true,
282 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_MULTIHIT
,
283 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
284 { 0x00000000081c0000, 0x0000000000100000, true,
285 MCE_ERROR_TYPE_ERAT
,MCE_ERAT_ERROR_MULTIHIT
,
286 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
287 { 0x00000000081c0000, 0x0000000000140000, true,
288 MCE_ERROR_TYPE_TLB
, MCE_TLB_ERROR_MULTIHIT
,
289 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
290 { 0x00000000081c0000, 0x0000000000180000, true,
291 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_PAGE_TABLE_WALK_IFETCH
,
292 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
293 { 0x00000000081c0000, 0x00000000001c0000, true,
294 MCE_ERROR_TYPE_RA
, MCE_RA_ERROR_IFETCH_FOREIGN
,
295 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
296 { 0x00000000081c0000, 0x0000000008000000, true,
297 MCE_ERROR_TYPE_LINK
,MCE_LINK_ERROR_IFETCH_TIMEOUT
,
298 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
299 { 0x00000000081c0000, 0x0000000008040000, true,
300 MCE_ERROR_TYPE_LINK
,MCE_LINK_ERROR_PAGE_TABLE_WALK_IFETCH_TIMEOUT
,
301 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
302 { 0x00000000081c0000, 0x00000000080c0000, true,
303 MCE_ERROR_TYPE_RA
, MCE_RA_ERROR_IFETCH
,
304 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
305 { 0x00000000081c0000, 0x0000000008100000, true,
306 MCE_ERROR_TYPE_RA
, MCE_RA_ERROR_PAGE_TABLE_WALK_IFETCH
,
307 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
308 { 0x00000000081c0000, 0x0000000008140000, false,
309 MCE_ERROR_TYPE_RA
, MCE_RA_ERROR_STORE
,
310 MCE_INITIATOR_CPU
, MCE_SEV_FATAL
, }, /* ASYNC is fatal */
311 { 0x00000000081c0000, 0x0000000008180000, false,
312 MCE_ERROR_TYPE_LINK
,MCE_LINK_ERROR_STORE_TIMEOUT
,
313 MCE_INITIATOR_CPU
, MCE_SEV_FATAL
, }, /* ASYNC is fatal */
314 { 0x00000000081c0000, 0x00000000081c0000, true,
315 MCE_ERROR_TYPE_RA
, MCE_RA_ERROR_PAGE_TABLE_WALK_IFETCH_FOREIGN
,
316 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
317 { 0, 0, 0, 0, 0, 0 } };
319 struct mce_derror_table
{
320 unsigned long dsisr_value
;
321 bool dar_valid
; /* dar is a valid indicator of faulting address */
322 unsigned int error_type
;
323 unsigned int error_subtype
;
324 unsigned int initiator
;
325 unsigned int severity
;
328 static const struct mce_derror_table mce_p7_derror_table
[] = {
330 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_LOAD_STORE
,
331 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
333 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_PAGE_TABLE_WALK_LOAD_STORE
,
334 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
336 MCE_ERROR_TYPE_ERAT
, MCE_ERAT_ERROR_MULTIHIT
,
337 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
339 MCE_ERROR_TYPE_TLB
, MCE_TLB_ERROR_MULTIHIT
,
340 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
342 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_PARITY
,
343 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
345 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_MULTIHIT
,
346 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
348 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_INDETERMINATE
, /* BOTH */
349 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
350 { 0, false, 0, 0, 0, 0 } };
352 static const struct mce_derror_table mce_p8_derror_table
[] = {
354 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_LOAD_STORE
,
355 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
357 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_PAGE_TABLE_WALK_LOAD_STORE
,
358 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
360 MCE_ERROR_TYPE_LINK
, MCE_LINK_ERROR_LOAD_TIMEOUT
,
361 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
363 MCE_ERROR_TYPE_LINK
, MCE_LINK_ERROR_PAGE_TABLE_WALK_LOAD_STORE_TIMEOUT
,
364 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
366 MCE_ERROR_TYPE_ERAT
, MCE_ERAT_ERROR_MULTIHIT
,
367 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
369 MCE_ERROR_TYPE_TLB
, MCE_TLB_ERROR_MULTIHIT
,
370 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
372 MCE_ERROR_TYPE_ERAT
, MCE_ERAT_ERROR_MULTIHIT
, /* SECONDARY ERAT */
373 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
375 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_PARITY
,
376 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
378 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_MULTIHIT
,
379 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
380 { 0, false, 0, 0, 0, 0 } };
382 static const struct mce_derror_table mce_p9_derror_table
[] = {
384 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_LOAD_STORE
,
385 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
387 MCE_ERROR_TYPE_UE
, MCE_UE_ERROR_PAGE_TABLE_WALK_LOAD_STORE
,
388 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
390 MCE_ERROR_TYPE_LINK
, MCE_LINK_ERROR_LOAD_TIMEOUT
,
391 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
393 MCE_ERROR_TYPE_LINK
, MCE_LINK_ERROR_PAGE_TABLE_WALK_LOAD_STORE_TIMEOUT
,
394 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
396 MCE_ERROR_TYPE_ERAT
, MCE_ERAT_ERROR_MULTIHIT
,
397 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
399 MCE_ERROR_TYPE_TLB
, MCE_TLB_ERROR_MULTIHIT
,
400 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
402 MCE_ERROR_TYPE_USER
, MCE_USER_ERROR_TLBIE
,
403 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
405 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_PARITY
,
406 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
408 MCE_ERROR_TYPE_SLB
, MCE_SLB_ERROR_MULTIHIT
,
409 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
411 MCE_ERROR_TYPE_RA
, MCE_RA_ERROR_LOAD
,
412 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
414 MCE_ERROR_TYPE_RA
, MCE_RA_ERROR_PAGE_TABLE_WALK_LOAD_STORE
,
415 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
417 MCE_ERROR_TYPE_RA
, MCE_RA_ERROR_PAGE_TABLE_WALK_LOAD_STORE_FOREIGN
,
418 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
420 MCE_ERROR_TYPE_RA
, MCE_RA_ERROR_LOAD_STORE_FOREIGN
,
421 MCE_INITIATOR_CPU
, MCE_SEV_ERROR_SYNC
, },
422 { 0, false, 0, 0, 0, 0 } };
424 static int mce_handle_ierror(struct pt_regs
*regs
,
425 const struct mce_ierror_table table
[],
426 struct mce_error_info
*mce_err
, uint64_t *addr
)
428 uint64_t srr1
= regs
->msr
;
434 for (i
= 0; table
[i
].srr1_mask
; i
++) {
435 if ((srr1
& table
[i
].srr1_mask
) != table
[i
].srr1_value
)
438 /* attempt to correct the error */
439 switch (table
[i
].error_type
) {
440 case MCE_ERROR_TYPE_SLB
:
441 handled
= mce_flush(MCE_FLUSH_SLB
);
443 case MCE_ERROR_TYPE_ERAT
:
444 handled
= mce_flush(MCE_FLUSH_ERAT
);
446 case MCE_ERROR_TYPE_TLB
:
447 handled
= mce_flush(MCE_FLUSH_TLB
);
451 /* now fill in mce_error_info */
452 mce_err
->error_type
= table
[i
].error_type
;
453 switch (table
[i
].error_type
) {
454 case MCE_ERROR_TYPE_UE
:
455 mce_err
->u
.ue_error_type
= table
[i
].error_subtype
;
457 case MCE_ERROR_TYPE_SLB
:
458 mce_err
->u
.slb_error_type
= table
[i
].error_subtype
;
460 case MCE_ERROR_TYPE_ERAT
:
461 mce_err
->u
.erat_error_type
= table
[i
].error_subtype
;
463 case MCE_ERROR_TYPE_TLB
:
464 mce_err
->u
.tlb_error_type
= table
[i
].error_subtype
;
466 case MCE_ERROR_TYPE_USER
:
467 mce_err
->u
.user_error_type
= table
[i
].error_subtype
;
469 case MCE_ERROR_TYPE_RA
:
470 mce_err
->u
.ra_error_type
= table
[i
].error_subtype
;
472 case MCE_ERROR_TYPE_LINK
:
473 mce_err
->u
.link_error_type
= table
[i
].error_subtype
;
476 mce_err
->severity
= table
[i
].severity
;
477 mce_err
->initiator
= table
[i
].initiator
;
478 if (table
[i
].nip_valid
)
483 mce_err
->error_type
= MCE_ERROR_TYPE_UNKNOWN
;
484 mce_err
->severity
= MCE_SEV_ERROR_SYNC
;
485 mce_err
->initiator
= MCE_INITIATOR_CPU
;
490 static int mce_handle_derror(struct pt_regs
*regs
,
491 const struct mce_derror_table table
[],
492 struct mce_error_info
*mce_err
, uint64_t *addr
)
494 uint64_t dsisr
= regs
->dsisr
;
501 for (i
= 0; table
[i
].dsisr_value
; i
++) {
502 if (!(dsisr
& table
[i
].dsisr_value
))
505 /* attempt to correct the error */
506 switch (table
[i
].error_type
) {
507 case MCE_ERROR_TYPE_SLB
:
508 if (mce_flush(MCE_FLUSH_SLB
))
511 case MCE_ERROR_TYPE_ERAT
:
512 if (mce_flush(MCE_FLUSH_ERAT
))
515 case MCE_ERROR_TYPE_TLB
:
516 if (mce_flush(MCE_FLUSH_TLB
))
522 * Attempt to handle multiple conditions, but only return
523 * one. Ensure uncorrectable errors are first in the table
529 /* now fill in mce_error_info */
530 mce_err
->error_type
= table
[i
].error_type
;
531 switch (table
[i
].error_type
) {
532 case MCE_ERROR_TYPE_UE
:
533 mce_err
->u
.ue_error_type
= table
[i
].error_subtype
;
535 case MCE_ERROR_TYPE_SLB
:
536 mce_err
->u
.slb_error_type
= table
[i
].error_subtype
;
538 case MCE_ERROR_TYPE_ERAT
:
539 mce_err
->u
.erat_error_type
= table
[i
].error_subtype
;
541 case MCE_ERROR_TYPE_TLB
:
542 mce_err
->u
.tlb_error_type
= table
[i
].error_subtype
;
544 case MCE_ERROR_TYPE_USER
:
545 mce_err
->u
.user_error_type
= table
[i
].error_subtype
;
547 case MCE_ERROR_TYPE_RA
:
548 mce_err
->u
.ra_error_type
= table
[i
].error_subtype
;
550 case MCE_ERROR_TYPE_LINK
:
551 mce_err
->u
.link_error_type
= table
[i
].error_subtype
;
554 mce_err
->severity
= table
[i
].severity
;
555 mce_err
->initiator
= table
[i
].initiator
;
556 if (table
[i
].dar_valid
)
565 mce_err
->error_type
= MCE_ERROR_TYPE_UNKNOWN
;
566 mce_err
->severity
= MCE_SEV_ERROR_SYNC
;
567 mce_err
->initiator
= MCE_INITIATOR_CPU
;
572 static long mce_handle_ue_error(struct pt_regs
*regs
)
577 * On specific SCOM read via MMIO we may get a machine check
578 * exception with SRR0 pointing inside opal. If that is the
579 * case OPAL may have recovery address to re-read SCOM data in
580 * different way and hence we can recover from this MC.
583 if (ppc_md
.mce_check_early_recovery
) {
584 if (ppc_md
.mce_check_early_recovery(regs
))
590 static long mce_handle_error(struct pt_regs
*regs
,
591 const struct mce_derror_table dtable
[],
592 const struct mce_ierror_table itable
[])
594 struct mce_error_info mce_err
= { 0 };
596 uint64_t srr1
= regs
->msr
;
599 if (SRR1_MC_LOADSTORE(srr1
))
600 handled
= mce_handle_derror(regs
, dtable
, &mce_err
, &addr
);
602 handled
= mce_handle_ierror(regs
, itable
, &mce_err
, &addr
);
604 if (!handled
&& mce_err
.error_type
== MCE_ERROR_TYPE_UE
)
605 handled
= mce_handle_ue_error(regs
);
607 save_mce_event(regs
, handled
, &mce_err
, regs
->nip
, addr
);
612 long __machine_check_early_realmode_p7(struct pt_regs
*regs
)
614 /* P7 DD1 leaves top bits of DSISR undefined */
615 regs
->dsisr
&= 0x0000ffff;
617 return mce_handle_error(regs
, mce_p7_derror_table
, mce_p7_ierror_table
);
620 long __machine_check_early_realmode_p8(struct pt_regs
*regs
)
622 return mce_handle_error(regs
, mce_p8_derror_table
, mce_p8_ierror_table
);
625 long __machine_check_early_realmode_p9(struct pt_regs
*regs
)
627 return mce_handle_error(regs
, mce_p9_derror_table
, mce_p9_ierror_table
);