2 * Architecture-specific trap handling.
4 * Copyright (C) 1998-2003 Hewlett-Packard Co
5 * David Mosberger-Tang <davidm@hpl.hp.com>
7 * 05/12/00 grao <goutham.rao@intel.com> : added isr in siginfo for SIGFPE
10 #include <linux/config.h>
11 #include <linux/kernel.h>
12 #include <linux/init.h>
13 #include <linux/sched.h>
14 #include <linux/tty.h>
15 #include <linux/vt_kern.h> /* For unblank_screen() */
16 #include <linux/module.h> /* for EXPORT_SYMBOL */
17 #include <linux/hardirq.h>
19 #include <asm/fpswa.h>
21 #include <asm/intrinsics.h>
22 #include <asm/processor.h>
23 #include <asm/uaccess.h>
25 extern spinlock_t timerlist_lock;
27 fpswa_interface_t *fpswa_interface;
28 EXPORT_SYMBOL(fpswa_interface);
33 if (ia64_boot_param->fpswa)
34 /* FPSWA fixup: make the interface pointer a kernel virtual address: */
35 fpswa_interface = __va(ia64_boot_param->fpswa);
39 * Unlock any spinlocks which will prevent us from getting the message out (timerlist_lock
40 * is acquired through the console unblank code)
43 bust_spinlocks (int yes)
45 int loglevel_save = console_loglevel;
57 * OK, the message is on the console. Now we call printk() without
58 * oops_in_progress set so that printk will give klogd a poke. Hold onto
61 console_loglevel = 15; /* NMI oopser may have shut the console up */
63 console_loglevel = loglevel_save;
67 die (const char *str, struct pt_regs *regs, long err)
74 .lock = SPIN_LOCK_UNLOCKED,
78 static int die_counter;
80 if (die.lock_owner != smp_processor_id()) {
82 spin_lock_irq(&die.lock);
83 die.lock_owner = smp_processor_id();
84 die.lock_owner_depth = 0;
88 if (++die.lock_owner_depth < 3) {
89 printk("%s[%d]: %s %ld [%d]\n",
90 current->comm, current->pid, str, err, ++die_counter);
93 printk(KERN_ERR "Recursive die() failure, output suppressed\n");
97 spin_unlock_irq(&die.lock);
102 die_if_kernel (char *str, struct pt_regs *regs, long err)
104 if (!user_mode(regs))
109 ia64_bad_break (unsigned long break_num, struct pt_regs *regs)
114 /* SIGILL, SIGFPE, SIGSEGV, and SIGBUS want these field initialized: */
115 siginfo.si_addr = (void __user *) (regs->cr_iip + ia64_psr(regs)->ri);
116 siginfo.si_imm = break_num;
117 siginfo.si_flags = 0; /* clear __ISR_VALID */
121 case 0: /* unknown error (used by GCC for __builtin_abort()) */
122 die_if_kernel("bugcheck!", regs, break_num);
123 sig = SIGILL; code = ILL_ILLOPC;
126 case 1: /* integer divide by zero */
127 sig = SIGFPE; code = FPE_INTDIV;
130 case 2: /* integer overflow */
131 sig = SIGFPE; code = FPE_INTOVF;
134 case 3: /* range check/bounds check */
135 sig = SIGFPE; code = FPE_FLTSUB;
138 case 4: /* null pointer dereference */
139 sig = SIGSEGV; code = SEGV_MAPERR;
142 case 5: /* misaligned data */
143 sig = SIGSEGV; code = BUS_ADRALN;
146 case 6: /* decimal overflow */
147 sig = SIGFPE; code = __FPE_DECOVF;
150 case 7: /* decimal divide by zero */
151 sig = SIGFPE; code = __FPE_DECDIV;
154 case 8: /* packed decimal error */
155 sig = SIGFPE; code = __FPE_DECERR;
158 case 9: /* invalid ASCII digit */
159 sig = SIGFPE; code = __FPE_INVASC;
162 case 10: /* invalid decimal digit */
163 sig = SIGFPE; code = __FPE_INVDEC;
166 case 11: /* paragraph stack overflow */
167 sig = SIGSEGV; code = __SEGV_PSTKOVF;
170 case 0x3f000 ... 0x3ffff: /* bundle-update in progress */
171 sig = SIGILL; code = __ILL_BNDMOD;
175 if (break_num < 0x40000 || break_num > 0x100000)
176 die_if_kernel("Bad break", regs, break_num);
178 if (break_num < 0x80000) {
179 sig = SIGILL; code = __ILL_BREAK;
181 sig = SIGTRAP; code = TRAP_BRKPT;
184 siginfo.si_signo = sig;
185 siginfo.si_errno = 0;
186 siginfo.si_code = code;
187 force_sig_info(sig, &siginfo, current);
191 * disabled_fph_fault() is called when a user-level process attempts to access f32..f127
192 * and it doesn't own the fp-high register partition. When this happens, we save the
193 * current fph partition in the task_struct of the fpu-owner (if necessary) and then load
194 * the fp-high partition of the current task (if necessary). Note that the kernel has
195 * access to fph by the time we get here, as the IVT's "Disabled FP-Register" handler takes
196 * care of clearing psr.dfh.
199 disabled_fph_fault (struct pt_regs *regs)
201 struct ia64_psr *psr = ia64_psr(regs);
203 /* first, grant user-level access to fph partition: */
207 struct task_struct *fpu_owner
208 = (struct task_struct *)ia64_get_kr(IA64_KR_FPU_OWNER);
210 if (ia64_is_local_fpu_owner(current))
214 ia64_flush_fph(fpu_owner);
216 #endif /* !CONFIG_SMP */
217 ia64_set_local_fpu_owner(current);
218 if ((current->thread.flags & IA64_THREAD_FPH_VALID) != 0) {
219 __ia64_load_fpu(current->thread.fph);
224 * Set mfh because the state in thread.fph does not match the state in
232 fp_emulate (int fp_fault, void *bundle, long *ipsr, long *fpsr, long *isr, long *pr, long *ifs,
233 struct pt_regs *regs)
238 if (!fpswa_interface)
241 memset(&fp_state, 0, sizeof(fp_state_t));
244 * compute fp_state. only FP registers f6 - f11 are used by the
245 * kernel, so set those bits in the mask and set the low volatile
246 * pointer to point to these registers.
248 fp_state.bitmask_low64 = 0xfc0; /* bit6..bit11 */
250 fp_state.fp_state_low_volatile = (fp_state_low_volatile_t *) ®s->f6;
252 * unsigned long (*EFI_FPSWA) (
253 * unsigned long trap_type,
255 * unsigned long *pipsr,
256 * unsigned long *pfsr,
257 * unsigned long *pisr,
258 * unsigned long *ppreds,
259 * unsigned long *pifs,
262 ret = (*fpswa_interface->fpswa)((unsigned long) fp_fault, bundle,
263 (unsigned long *) ipsr, (unsigned long *) fpsr,
264 (unsigned long *) isr, (unsigned long *) pr,
265 (unsigned long *) ifs, &fp_state);
271 * Handle floating-point assist faults and traps.
274 handle_fpu_swa (int fp_fault, struct pt_regs *regs, unsigned long isr)
276 long exception, bundle[2];
277 unsigned long fault_ip;
278 struct siginfo siginfo;
279 static int fpu_swa_count = 0;
280 static unsigned long last_time;
282 fault_ip = regs->cr_iip;
283 if (!fp_fault && (ia64_psr(regs)->ri == 0))
285 if (copy_from_user(bundle, (void __user *) fault_ip, sizeof(bundle)))
288 if (jiffies - last_time > 5*HZ)
290 if ((fpu_swa_count < 4) && !(current->thread.flags & IA64_THREAD_FPEMU_NOPRINT)) {
294 "%s(%d): floating-point assist fault at ip %016lx, isr %016lx\n",
295 current->comm, current->pid, regs->cr_iip + ia64_psr(regs)->ri, isr);
298 exception = fp_emulate(fp_fault, bundle, ®s->cr_ipsr, ®s->ar_fpsr, &isr, ®s->pr,
299 ®s->cr_ifs, regs);
301 if (exception == 0) {
302 /* emulation was successful */
303 ia64_increment_ip(regs);
304 } else if (exception == -1) {
305 printk(KERN_ERR "handle_fpu_swa: fp_emulate() returned -1\n");
308 /* is next instruction a trap? */
310 ia64_increment_ip(regs);
312 siginfo.si_signo = SIGFPE;
313 siginfo.si_errno = 0;
314 siginfo.si_code = __SI_FAULT; /* default code */
315 siginfo.si_addr = (void __user *) (regs->cr_iip + ia64_psr(regs)->ri);
317 siginfo.si_code = FPE_FLTINV;
318 } else if (isr & 0x22) {
319 /* denormal operand gets the same si_code as underflow
320 * see arch/i386/kernel/traps.c:math_error() */
321 siginfo.si_code = FPE_FLTUND;
322 } else if (isr & 0x44) {
323 siginfo.si_code = FPE_FLTDIV;
325 siginfo.si_isr = isr;
326 siginfo.si_flags = __ISR_VALID;
328 force_sig_info(SIGFPE, &siginfo, current);
331 if (exception == -1) {
332 printk(KERN_ERR "handle_fpu_swa: fp_emulate() returned -1\n");
334 } else if (exception != 0) {
335 /* raise exception */
336 siginfo.si_signo = SIGFPE;
337 siginfo.si_errno = 0;
338 siginfo.si_code = __SI_FAULT; /* default code */
339 siginfo.si_addr = (void __user *) (regs->cr_iip + ia64_psr(regs)->ri);
341 siginfo.si_code = FPE_FLTOVF;
342 } else if (isr & 0x1100) {
343 siginfo.si_code = FPE_FLTUND;
344 } else if (isr & 0x2200) {
345 siginfo.si_code = FPE_FLTRES;
347 siginfo.si_isr = isr;
348 siginfo.si_flags = __ISR_VALID;
350 force_sig_info(SIGFPE, &siginfo, current);
356 struct illegal_op_return {
357 unsigned long fkt, arg1, arg2, arg3;
360 struct illegal_op_return
361 ia64_illegal_op_fault (unsigned long ec, long arg1, long arg2, long arg3,
362 long arg4, long arg5, long arg6, long arg7,
365 struct illegal_op_return rv;
369 #ifdef CONFIG_IA64_BRL_EMU
371 extern struct illegal_op_return ia64_emulate_brl (struct pt_regs *, unsigned long);
373 rv = ia64_emulate_brl(®s, ec);
374 if (rv.fkt != (unsigned long) -1)
379 sprintf(buf, "IA-64 Illegal operation fault");
380 die_if_kernel(buf, ®s, 0);
382 memset(&si, 0, sizeof(si));
383 si.si_signo = SIGILL;
384 si.si_code = ILL_ILLOPC;
385 si.si_addr = (void __user *) (regs.cr_iip + ia64_psr(®s)->ri);
386 force_sig_info(SIGILL, &si, current);
392 ia64_fault (unsigned long vector, unsigned long isr, unsigned long ifa,
393 unsigned long iim, unsigned long itir, long arg5, long arg6,
394 long arg7, struct pt_regs regs)
396 unsigned long code, error = isr, iip;
397 struct siginfo siginfo;
400 static const char *reason[] = {
401 "IA-64 Illegal Operation fault",
402 "IA-64 Privileged Operation fault",
403 "IA-64 Privileged Register fault",
404 "IA-64 Reserved Register/Field fault",
405 "Disabled Instruction Set Transition fault",
406 "Unknown fault 5", "Unknown fault 6", "Unknown fault 7", "Illegal Hazard fault",
407 "Unknown fault 9", "Unknown fault 10", "Unknown fault 11", "Unknown fault 12",
408 "Unknown fault 13", "Unknown fault 14", "Unknown fault 15"
411 if ((isr & IA64_ISR_NA) && ((isr & IA64_ISR_CODE_MASK) == IA64_ISR_CODE_LFETCH)) {
413 * This fault was due to lfetch.fault, set "ed" bit in the psr to cancel
416 ia64_psr(®s)->ed = 1;
420 iip = regs.cr_iip + ia64_psr(®s)->ri;
423 case 24: /* General Exception */
424 code = (isr >> 4) & 0xf;
425 sprintf(buf, "General Exception: %s%s", reason[code],
426 (code == 3) ? ((isr & (1UL << 37))
427 ? " (RSE access)" : " (data access)") : "");
429 # ifdef CONFIG_IA64_PRINT_HAZARDS
430 printk("%s[%d]: possible hazard @ ip=%016lx (pr = %016lx)\n",
431 current->comm, current->pid,
432 regs.cr_iip + ia64_psr(®s)->ri, regs.pr);
438 case 25: /* Disabled FP-Register */
440 disabled_fph_fault(®s);
443 sprintf(buf, "Disabled FPL fault---not supposed to happen!");
446 case 26: /* NaT Consumption */
447 if (user_mode(®s)) {
450 if (((isr >> 4) & 0xf) == 2) {
451 /* NaT page consumption */
454 addr = (void __user *) ifa;
456 /* register NaT consumption */
459 addr = (void __user *) (regs.cr_iip
460 + ia64_psr(®s)->ri);
462 siginfo.si_signo = sig;
463 siginfo.si_code = code;
464 siginfo.si_errno = 0;
465 siginfo.si_addr = addr;
466 siginfo.si_imm = vector;
467 siginfo.si_flags = __ISR_VALID;
468 siginfo.si_isr = isr;
469 force_sig_info(sig, &siginfo, current);
471 } else if (ia64_done_with_exception(®s))
473 sprintf(buf, "NaT consumption");
476 case 31: /* Unsupported Data Reference */
477 if (user_mode(®s)) {
478 siginfo.si_signo = SIGILL;
479 siginfo.si_code = ILL_ILLOPN;
480 siginfo.si_errno = 0;
481 siginfo.si_addr = (void __user *) iip;
482 siginfo.si_imm = vector;
483 siginfo.si_flags = __ISR_VALID;
484 siginfo.si_isr = isr;
485 force_sig_info(SIGILL, &siginfo, current);
488 sprintf(buf, "Unsupported data reference");
492 case 35: /* Taken Branch Trap */
493 case 36: /* Single Step Trap */
494 if (fsys_mode(current, ®s)) {
495 extern char __kernel_syscall_via_break[];
497 * Got a trap in fsys-mode: Taken Branch Trap and Single Step trap
498 * need special handling; Debug trap is not supposed to happen.
500 if (unlikely(vector == 29)) {
501 die("Got debug trap in fsys-mode---not supposed to happen!",
505 /* re-do the system call via break 0x100000: */
506 regs.cr_iip = (unsigned long) __kernel_syscall_via_break;
507 ia64_psr(®s)->ri = 0;
508 ia64_psr(®s)->cpl = 3;
513 siginfo.si_code = TRAP_HWBKPT;
514 #ifdef CONFIG_ITANIUM
516 * Erratum 10 (IFA may contain incorrect address) now has
517 * "NoFix" status. There are no plans for fixing this.
519 if (ia64_psr(®s)->is == 0)
523 case 35: siginfo.si_code = TRAP_BRANCH; ifa = 0; break;
524 case 36: siginfo.si_code = TRAP_TRACE; ifa = 0; break;
526 siginfo.si_signo = SIGTRAP;
527 siginfo.si_errno = 0;
528 siginfo.si_addr = (void __user *) ifa;
530 siginfo.si_flags = __ISR_VALID;
531 siginfo.si_isr = isr;
532 force_sig_info(SIGTRAP, &siginfo, current);
535 case 32: /* fp fault */
536 case 33: /* fp trap */
537 result = handle_fpu_swa((vector == 32) ? 1 : 0, ®s, isr);
538 if ((result < 0) || (current->thread.flags & IA64_THREAD_FPEMU_SIGFPE)) {
539 siginfo.si_signo = SIGFPE;
540 siginfo.si_errno = 0;
541 siginfo.si_code = FPE_FLTINV;
542 siginfo.si_addr = (void __user *) iip;
543 siginfo.si_flags = __ISR_VALID;
544 siginfo.si_isr = isr;
546 force_sig_info(SIGFPE, &siginfo, current);
552 /* Lower-Privilege Transfer Trap */
554 * Just clear PSR.lp and then return immediately: all the
555 * interesting work (e.g., signal delivery is done in the kernel
558 ia64_psr(®s)->lp = 0;
561 /* Unimplemented Instr. Address Trap */
562 if (user_mode(®s)) {
563 siginfo.si_signo = SIGILL;
564 siginfo.si_code = ILL_BADIADDR;
565 siginfo.si_errno = 0;
566 siginfo.si_flags = 0;
569 siginfo.si_addr = (void __user *) iip;
570 force_sig_info(SIGILL, &siginfo, current);
573 sprintf(buf, "Unimplemented Instruction Address fault");
578 #ifdef CONFIG_IA32_SUPPORT
579 if (ia32_exception(®s, isr) == 0)
582 printk(KERN_ERR "Unexpected IA-32 exception (Trap 45)\n");
583 printk(KERN_ERR " iip - 0x%lx, ifa - 0x%lx, isr - 0x%lx\n",
585 force_sig(SIGSEGV, current);
589 #ifdef CONFIG_IA32_SUPPORT
590 if (ia32_intercept(®s, isr) == 0)
593 printk(KERN_ERR "Unexpected IA-32 intercept trap (Trap 46)\n");
594 printk(KERN_ERR " iip - 0x%lx, ifa - 0x%lx, isr - 0x%lx, iim - 0x%lx\n",
596 force_sig(SIGSEGV, current);
600 sprintf(buf, "IA-32 Interruption Fault (int 0x%lx)", isr >> 16);
604 sprintf(buf, "Fault %lu", vector);
607 die_if_kernel(buf, ®s, error);
608 force_sig(SIGILL, current);