/* * linux/arch/ppc64/kernel/traps.c * * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. * * Modified by Cort Dougan (cort@cs.nmt.edu) * and Paul Mackerras (paulus@cs.anu.edu.au) */ /* * This file handles the architecture-dependent parts of hardware exceptions */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef CONFIG_KDB #include #endif #include #include #include #include #include #include #include /* for ppc_attention_msg */ extern int fix_alignment(struct pt_regs *); extern void bad_page_fault(struct pt_regs *, unsigned long); /* This is true if we are using the firmware NMI handler (typically LPAR) */ extern int fwnmi_active; #ifdef CONFIG_XMON extern void xmon(struct pt_regs *regs); extern int xmon_bpt(struct pt_regs *regs); extern int xmon_sstep(struct pt_regs *regs); extern int xmon_iabr_match(struct pt_regs *regs); extern int xmon_dabr_match(struct pt_regs *regs); extern void (*xmon_fault_handler)(struct pt_regs *regs); #endif #ifdef CONFIG_XMON void (*debugger)(struct pt_regs *regs) = xmon; int (*debugger_bpt)(struct pt_regs *regs) = xmon_bpt; int (*debugger_sstep)(struct pt_regs *regs) = xmon_sstep; int (*debugger_iabr_match)(struct pt_regs *regs) = xmon_iabr_match; int (*debugger_dabr_match)(struct pt_regs *regs) = xmon_dabr_match; void (*debugger_fault_handler)(struct pt_regs *regs); #else #ifdef CONFIG_KGDB void (*debugger)(struct pt_regs *regs); int (*debugger_bpt)(struct pt_regs *regs); int (*debugger_sstep)(struct pt_regs *regs); int (*debugger_iabr_match)(struct pt_regs *regs); int (*debugger_dabr_match)(struct pt_regs *regs); void (*debugger_fault_handler)(struct pt_regs *regs); #else #ifdef CONFIG_KDB void (*debugger)(struct pt_regs *regs); int (*debugger_bpt)(struct pt_regs *regs); int (*debugger_sstep)(struct pt_regs *regs); int (*debugger_iabr_match)(struct pt_regs *regs); int (*debugger_dabr_match)(struct pt_regs *regs); void (*debugger_fault_handler)(struct pt_regs *regs); #endif /* kdb */ #endif /* kgdb */ #endif /* xmon */ void set_local_DABR(void *valp); /* * Trap & Exception support */ static void _exception(int signr, siginfo_t *info, struct pt_regs *regs) { if (!user_mode(regs)) { show_regs(regs); #if defined(CONFIG_XMON) || defined(CONFIG_KGDB) || defined(CONFIG_KDB) debugger(regs); #endif print_backtrace((unsigned long *)regs->gpr[1]); panic("Exception in kernel pc %lx signal %d",regs->nip,signr); #if defined(CONFIG_PPCDBG) && (defined(CONFIG_XMON) || defined(CONFIG_KGDB)) /* Allow us to catch SIGILLs for 64-bit app/glibc debugging. -Peter */ } else if (signr == SIGILL) { ifppcdebug(PPCDBG_SIGNALXMON) debugger(regs); #endif } force_sig_info(signr, info, current); } /* Get the error information for errors coming through the * FWNMI vectors. The pt_regs' r3 will be updated to reflect * the actual r3 if possible, and a ptr to the error log entry * will be returned if found. */ static struct rtas_error_log *FWNMI_get_errinfo(struct pt_regs *regs) { unsigned long errdata = regs->gpr[3]; struct rtas_error_log *errhdr = NULL; unsigned long *savep; if ((errdata >= 0x7000 && errdata < 0x7fff0) || (errdata >= rtas.base && errdata < rtas.base + rtas.size - 16)) { savep = __va(errdata); regs->gpr[3] = savep[0]; /* restore original r3 */ errhdr = (struct rtas_error_log *)(savep + 1); } else { printk("FWNMI: corrupt r3\n"); } return errhdr; } /* Call this when done with the data returned by FWNMI_get_errinfo. * It will release the saved data area for other CPUs in the * partition to receive FWNMI errors. */ static void FWNMI_release_errinfo(void) { unsigned long ret = rtas_call(rtas_token("ibm,nmi-interlock"), 0, 1, NULL); if (ret != 0) printk("FWNMI: nmi-interlock failed: %ld\n", ret); } void SystemResetException(struct pt_regs *regs) { char *msg = "System Reset in kernel mode.\n"; printk(msg); if (fwnmi_active) { unsigned long *r3 = __va(regs->gpr[3]); /* for FWNMI debug */ printk("FWNMI is active with save area at %p\n", r3); FWNMI_release_errinfo(); } #if defined(CONFIG_XMON) xmon(regs); if (smp_processor_id() == 0) udbg_printf("leaving xmon...\n"); #endif #if defined(CONFIG_KDB) kdb_reset_debugger(regs); #endif } void MachineCheckException(struct pt_regs *regs) { if (fwnmi_active) { struct rtas_error_log *errhdr = FWNMI_get_errinfo(regs); if (errhdr) { /* ToDo: attempt to recover from some errors here */ } FWNMI_release_errinfo(); } #if defined(CONFIG_XMON) || defined(CONFIG_KGDB) if (debugger_fault_handler) { debugger_fault_handler(regs); return; } #endif printk(KERN_EMERG "Unrecoverable Machine check.\n"); printk(KERN_EMERG "Caused by (from SRR1=%lx): ", regs->msr); show_regs(regs); #if defined(CONFIG_XMON) || defined(CONFIG_KGDB) || defined(CONFIG_KDB) debugger(regs); #endif print_backtrace((unsigned long *)regs->gpr[1]); panic("machine check"); } void SMIException(struct pt_regs *regs) { #if defined(CONFIG_XMON) || defined(CONFIG_KGDB) || defined(CONFIG_KDB) { debugger(regs); return; } #endif show_regs(regs); print_backtrace((unsigned long *)regs->gpr[1]); panic("System Management Interrupt"); } void UnknownException(struct pt_regs *regs) { siginfo_t info; printk("Bad trap at PC: %lx, SR: %lx, vector=%lx\n", regs->nip, regs->msr, regs->trap); info.si_signo = SIGTRAP; info.si_errno = 0; info.si_code = 0; info.si_addr = 0; _exception(SIGTRAP, &info, regs); } void InstructionBreakpointException(struct pt_regs *regs) { siginfo_t info; #if defined(CONFIG_XMON) || defined(CONFIG_KGDB) || defined (CONFIG_KDB) if (debugger_iabr_match(regs)) return; #endif info.si_signo = SIGTRAP; info.si_errno = 0; info.si_code = TRAP_BRKPT; info.si_addr = (void *)regs->nip; _exception(SIGTRAP, &info, regs); } static void parse_fpe(siginfo_t *info, struct pt_regs *regs) { unsigned long fpscr; if (regs->msr & MSR_FP) giveup_fpu(current); fpscr = current->thread.fpscr; /* Invalid operation */ if ((fpscr & FPSCR_VE) && (fpscr & FPSCR_VX)) info->si_code = FPE_FLTINV; /* Overflow */ else if ((fpscr & FPSCR_OE) && (fpscr & FPSCR_OX)) info->si_code = FPE_FLTOVF; /* Underflow */ else if ((fpscr & FPSCR_UE) && (fpscr & FPSCR_UX)) info->si_code = FPE_FLTUND; /* Divide by zero */ else if ((fpscr & FPSCR_ZE) && (fpscr & FPSCR_ZX)) info->si_code = FPE_FLTDIV; /* Inexact result */ else if ((fpscr & FPSCR_XE) && (fpscr & FPSCR_XX)) info->si_code = FPE_FLTRES; else info->si_code = 0; info->si_signo = SIGFPE; info->si_errno = 0; info->si_addr = (void *)regs->nip; _exception(SIGFPE, info, regs); } void ProgramCheckException(struct pt_regs *regs) { siginfo_t info; if (regs->msr & 0x100000) { /* IEEE FP exception */ parse_fpe(&info, regs); } else if (regs->msr & 0x40000) { /* Privileged instruction */ info.si_signo = SIGILL; info.si_errno = 0; info.si_code = ILL_PRVOPC; info.si_addr = (void *)regs->nip; _exception(SIGILL, &info, regs); } else if (regs->msr & 0x20000) { /* trap exception */ #if defined(CONFIG_XMON) || defined(CONFIG_KGDB) || defined(CONFIG_KDB) if (debugger_bpt(regs)) return; #endif info.si_signo = SIGTRAP; info.si_errno = 0; info.si_code = TRAP_BRKPT; info.si_addr = (void *)regs->nip; _exception(SIGTRAP, &info, regs); } else { /* Illegal instruction */ info.si_signo = SIGILL; info.si_errno = 0; info.si_code = ILL_ILLTRP; info.si_addr = (void *)regs->nip; _exception(SIGILL, &info, regs); } } void KernelFPUnavailableException(struct pt_regs *regs) { printk("Illegal floating point used in kernel (task=0x%016lx, pc=0x%016lx, trap=0x%08x)\n", current, regs->nip, regs->trap); panic("Unrecoverable FP Unavailable Exception in Kernel"); } void SingleStepException(struct pt_regs *regs) { siginfo_t info; regs->msr &= ~MSR_SE; /* Turn off 'trace' bit */ #if defined(CONFIG_XMON) || defined(CONFIG_KGDB) || defined(CONFIG_KDB) if (debugger_sstep(regs)) return; #endif info.si_signo = SIGTRAP; info.si_errno = 0; info.si_code = TRAP_TRACE; info.si_addr = (void *)regs->nip; _exception(SIGTRAP, &info, regs); } void AlignmentException(struct pt_regs *regs) { int fixed; siginfo_t info; fixed = fix_alignment(regs); if (fixed == 1) { ifppcdebug(PPCDBG_ALIGNFIXUP) if (!user_mode(regs)) PPCDBG(PPCDBG_ALIGNFIXUP, "fix alignment at %lx\n", regs->nip); regs->nip += 4; /* skip over emulated instruction */ return; } /* Operand address was bad */ if (fixed == -EFAULT) { if (user_mode(regs)) { info.si_signo = SIGSEGV; info.si_errno = 0; info.si_code = SEGV_MAPERR; info.si_addr = (void *)regs->dar; force_sig_info(SIGSEGV, &info, current); } else { /* Search exception table */ bad_page_fault(regs, regs->dar); } return; } info.si_signo = SIGBUS; info.si_errno = 0; info.si_code = BUS_ADRALN; info.si_addr = (void *)regs->nip; _exception(SIGBUS, &info, regs); } void __init trap_init(void) { } /* * Set the DABR on all processors in the system. The value is defined as: * DAB(0:60), Break Translate(61), Write(62), Read(63) */ void set_all_DABR(unsigned long val) { set_local_DABR(&val); smp_call_function(set_local_DABR, &val, 0, 0); } void set_local_DABR(void *valp) { unsigned long val = *((unsigned long *)valp); HvCall_setDABR(val); }