|
@@ -55,6 +55,7 @@
|
|
|
#endif
|
|
|
#include <asm/kexec.h>
|
|
|
#include <asm/ppc-opcode.h>
|
|
|
+#include <asm/rio.h>
|
|
|
|
|
|
#if defined(CONFIG_DEBUGGER) || defined(CONFIG_KEXEC)
|
|
|
int (*__debugger)(struct pt_regs *regs) __read_mostly;
|
|
@@ -424,6 +425,12 @@ int machine_check_e500mc(struct pt_regs *regs)
|
|
|
unsigned long reason = mcsr;
|
|
|
int recoverable = 1;
|
|
|
|
|
|
+ if (reason & MCSR_BUS_RBERR) {
|
|
|
+ recoverable = fsl_rio_mcheck_exception(regs);
|
|
|
+ if (recoverable == 1)
|
|
|
+ goto silent_out;
|
|
|
+ }
|
|
|
+
|
|
|
printk("Machine check in kernel mode.\n");
|
|
|
printk("Caused by (from MCSR=%lx): ", reason);
|
|
|
|
|
@@ -499,6 +506,7 @@ int machine_check_e500mc(struct pt_regs *regs)
|
|
|
reason & MCSR_MEA ? "Effective" : "Physical", addr);
|
|
|
}
|
|
|
|
|
|
+silent_out:
|
|
|
mtspr(SPRN_MCSR, mcsr);
|
|
|
return mfspr(SPRN_MCSR) == 0 && recoverable;
|
|
|
}
|
|
@@ -507,6 +515,11 @@ int machine_check_e500(struct pt_regs *regs)
|
|
|
{
|
|
|
unsigned long reason = get_mc_reason(regs);
|
|
|
|
|
|
+ if (reason & MCSR_BUS_RBERR) {
|
|
|
+ if (fsl_rio_mcheck_exception(regs))
|
|
|
+ return 1;
|
|
|
+ }
|
|
|
+
|
|
|
printk("Machine check in kernel mode.\n");
|
|
|
printk("Caused by (from MCSR=%lx): ", reason);
|
|
|
|