diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2011-08-27 07:14:23 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2011-10-07 00:36:55 -0400 |
commit | 37caf9f2a1b99d11ba71e17168d221da9ca13f24 (patch) | |
tree | 0f6c5452edf6d52b84e2d5a088779ad382d75a00 /arch/powerpc/kernel/traps.c | |
parent | 09af52f78e58d9aee0980276833bf3adee3ed07b (diff) |
powerpc/fsl-booke: Handle L1 D-cache parity error correctly on e500mc
If the L1 D-Cache is in write shadow mode the HW will auto-recover the
error. However we might still log the error and cause a machine check
(if L1CSR0[CPE] - Cache error checking enable). We should only treat
the non-write shadow case as non-recoverable.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/traps.c')
-rw-r--r-- | arch/powerpc/kernel/traps.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/traps.c b/arch/powerpc/kernel/traps.c index f19d9777d3c1..4e5908264d1a 100644 --- a/arch/powerpc/kernel/traps.c +++ b/arch/powerpc/kernel/traps.c | |||
@@ -457,7 +457,14 @@ int machine_check_e500mc(struct pt_regs *regs) | |||
457 | 457 | ||
458 | if (reason & MCSR_DCPERR_MC) { | 458 | if (reason & MCSR_DCPERR_MC) { |
459 | printk("Data Cache Parity Error\n"); | 459 | printk("Data Cache Parity Error\n"); |
460 | recoverable = 0; | 460 | |
461 | /* | ||
462 | * In write shadow mode we auto-recover from the error, but it | ||
463 | * may still get logged and cause a machine check. We should | ||
464 | * only treat the non-write shadow case as non-recoverable. | ||
465 | */ | ||
466 | if (!(mfspr(SPRN_L1CSR2) & L1CSR2_DCWS)) | ||
467 | recoverable = 0; | ||
461 | } | 468 | } |
462 | 469 | ||
463 | if (reason & MCSR_L2MMU_MHIT) { | 470 | if (reason & MCSR_L2MMU_MHIT) { |