ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / arch / ppc64 / kernel / traps.c
1 /*
2  *  linux/arch/ppc64/kernel/traps.c
3  *
4  *  Copyright (C) 1995-1996  Gary Thomas (gdt@linuxppc.org)
5  *
6  *  This program is free software; you can redistribute it and/or
7  *  modify it under the terms of the GNU General Public License
8  *  as published by the Free Software Foundation; either version
9  *  2 of the License, or (at your option) any later version.
10  *
11  *  Modified by Cort Dougan (cort@cs.nmt.edu)
12  *  and Paul Mackerras (paulus@cs.anu.edu.au)
13  */
14
15 /*
16  * This file handles the architecture-dependent parts of hardware exceptions
17  */
18
19 #include <linux/config.h>
20 #include <linux/errno.h>
21 #include <linux/sched.h>
22 #include <linux/kernel.h>
23 #include <linux/mm.h>
24 #include <linux/stddef.h>
25 #include <linux/unistd.h>
26 #include <linux/slab.h>
27 #include <linux/user.h>
28 #include <linux/a.out.h>
29 #include <linux/interrupt.h>
30 #include <linux/init.h>
31 #include <linux/module.h>
32
33 #include <asm/pgtable.h>
34 #include <asm/uaccess.h>
35 #include <asm/system.h>
36 #include <asm/io.h>
37 #include <asm/processor.h>
38 #include <asm/ppcdebug.h>
39
40 #ifdef CONFIG_PPC_PSERIES
41 /* This is true if we are using the firmware NMI handler (typically LPAR) */
42 extern int fwnmi_active;
43 #endif
44
45 #ifdef CONFIG_DEBUGGER
46 int (*__debugger)(struct pt_regs *regs);
47 int (*__debugger_bpt)(struct pt_regs *regs);
48 int (*__debugger_sstep)(struct pt_regs *regs);
49 int (*__debugger_iabr_match)(struct pt_regs *regs);
50 int (*__debugger_dabr_match)(struct pt_regs *regs);
51 int (*__debugger_fault_handler)(struct pt_regs *regs);
52
53 EXPORT_SYMBOL(__debugger);
54 EXPORT_SYMBOL(__debugger_bpt);
55 EXPORT_SYMBOL(__debugger_sstep);
56 EXPORT_SYMBOL(__debugger_iabr_match);
57 EXPORT_SYMBOL(__debugger_dabr_match);
58 EXPORT_SYMBOL(__debugger_fault_handler);
59 #endif
60
61 /*
62  * Trap & Exception support
63  */
64
65 static spinlock_t die_lock = SPIN_LOCK_UNLOCKED;
66
67 int die(const char *str, struct pt_regs *regs, long err)
68 {
69         static int die_counter;
70         int nl = 0;
71
72         if (debugger_fault_handler(regs))
73                 return 1;
74
75         if (debugger(regs))
76                 return 1;
77
78         console_verbose();
79         spin_lock_irq(&die_lock);
80         bust_spinlocks(1);
81         printk("Oops: %s, sig: %ld [#%d]\n", str, err, ++die_counter);
82 #ifdef CONFIG_PREEMPT
83         printk("PREEMPT ");
84         nl = 1;
85 #endif
86 #ifdef CONFIG_SMP
87         printk("SMP NR_CPUS=%d ", NR_CPUS);
88         nl = 1;
89 #endif
90 #ifdef CONFIG_DEBUG_PAGEALLOC
91         printk("DEBUG_PAGEALLOC ");
92         nl = 1;
93 #endif
94 #ifdef CONFIG_NUMA
95         printk("NUMA ");
96         nl = 1;
97 #endif
98         switch(systemcfg->platform) {
99                 case PLATFORM_PSERIES:
100                         printk("PSERIES ");
101                         nl = 1;
102                         break;
103                 case PLATFORM_PSERIES_LPAR:
104                         printk("PSERIES LPAR ");
105                         nl = 1;
106                         break;
107                 case PLATFORM_ISERIES_LPAR:
108                         printk("ISERIES LPAR ");
109                         nl = 1;
110                         break;
111                 case PLATFORM_POWERMAC:
112                         printk("POWERMAC ");
113                         nl = 1;
114                         break;
115         }
116         if (nl)
117                 printk("\n");
118         show_regs(regs);
119         bust_spinlocks(0);
120         spin_unlock_irq(&die_lock);
121
122         if (in_interrupt())
123                 panic("Fatal exception in interrupt");
124
125         if (panic_on_oops) {
126                 printk(KERN_EMERG "Fatal exception: panic in 5 seconds\n");
127                 set_current_state(TASK_UNINTERRUPTIBLE);
128                 schedule_timeout(5 * HZ);
129                 panic("Fatal exception");
130         }
131         do_exit(SIGSEGV);
132
133         return 0;
134 }
135
136 static void
137 _exception(int signr, siginfo_t *info, struct pt_regs *regs)
138 {
139         if (!user_mode(regs)) {
140                 if (die("Exception in kernel mode", regs, signr))
141                         return;
142         }
143
144         force_sig_info(signr, info, current);
145 }
146
147 #ifdef CONFIG_PPC_PSERIES
148 /* Get the error information for errors coming through the
149  * FWNMI vectors.  The pt_regs' r3 will be updated to reflect
150  * the actual r3 if possible, and a ptr to the error log entry
151  * will be returned if found.
152  */
153 static struct rtas_error_log *FWNMI_get_errinfo(struct pt_regs *regs)
154 {
155         unsigned long errdata = regs->gpr[3];
156         struct rtas_error_log *errhdr = NULL;
157         unsigned long *savep;
158
159         if ((errdata >= 0x7000 && errdata < 0x7fff0) ||
160             (errdata >= rtas.base && errdata < rtas.base + rtas.size - 16)) {
161                 savep = __va(errdata);
162                 regs->gpr[3] = savep[0];        /* restore original r3 */
163                 errhdr = (struct rtas_error_log *)(savep + 1);
164         } else {
165                 printk("FWNMI: corrupt r3\n");
166         }
167         return errhdr;
168 }
169
170 /* Call this when done with the data returned by FWNMI_get_errinfo.
171  * It will release the saved data area for other CPUs in the
172  * partition to receive FWNMI errors.
173  */
174 static void FWNMI_release_errinfo(void)
175 {
176         unsigned long ret = rtas_call(rtas_token("ibm,nmi-interlock"), 0, 1, NULL);
177         if (ret != 0)
178                 printk("FWNMI: nmi-interlock failed: %ld\n", ret);
179 }
180 #endif
181
182 void
183 SystemResetException(struct pt_regs *regs)
184 {
185 #ifdef CONFIG_PPC_PSERIES
186         if (fwnmi_active) {
187                 struct rtas_error_log *errhdr = FWNMI_get_errinfo(regs);
188                 if (errhdr) {
189                         /* XXX Should look at FWNMI information */
190                 }
191                 FWNMI_release_errinfo();
192         }
193 #endif
194
195         die("System Reset", regs, 0);
196
197         /* Must die if the interrupt is not recoverable */
198         if (!(regs->msr & MSR_RI))
199                 panic("Unrecoverable System Reset");
200
201         /* What should we do here? We could issue a shutdown or hard reset. */
202 }
203
204 #ifdef CONFIG_PPC_PSERIES
205 /* 
206  * See if we can recover from a machine check exception.
207  * This is only called on power4 (or above) and only via
208  * the Firmware Non-Maskable Interrupts (fwnmi) handler
209  * which provides the error analysis for us.
210  *
211  * Return 1 if corrected (or delivered a signal).
212  * Return 0 if there is nothing we can do.
213  */
214 static int recover_mce(struct pt_regs *regs, struct rtas_error_log err)
215 {
216         siginfo_t info;
217
218         if (err.disposition == DISP_FULLY_RECOVERED) {
219                 /* Platform corrected itself */
220                 return 1;
221         } else if ((regs->msr & MSR_RI) &&
222                    user_mode(regs) &&
223                    err.severity == SEVERITY_ERROR_SYNC &&
224                    err.disposition == DISP_NOT_RECOVERED &&
225                    err.target == TARGET_MEMORY &&
226                    err.type == TYPE_ECC_UNCORR &&
227                    !(current->pid == 0 || current->pid == 1)) {
228                 /* Kill off a user process with an ECC error */
229                 info.si_signo = SIGBUS;
230                 info.si_errno = 0;
231                 /* XXX something better for ECC error? */
232                 info.si_code = BUS_ADRERR;
233                 info.si_addr = (void *)regs->nip;
234                 printk(KERN_ERR "MCE: uncorrectable ecc error for pid %d\n",
235                        current->pid);
236                 _exception(SIGBUS, &info, regs);
237                 return 1;
238         }
239         return 0;
240 }
241 #endif
242
243 /*
244  * Handle a machine check.
245  *
246  * Note that on Power 4 and beyond Firmware Non-Maskable Interrupts (fwnmi)
247  * should be present.  If so the handler which called us tells us if the
248  * error was recovered (never true if RI=0).
249  *
250  * On hardware prior to Power 4 these exceptions were asynchronous which
251  * means we can't tell exactly where it occurred and so we can't recover.
252  */
253 void
254 MachineCheckException(struct pt_regs *regs)
255 {
256 #ifdef CONFIG_PPC_PSERIES
257         struct rtas_error_log err, *errp;
258
259         if (fwnmi_active) {
260                 errp = FWNMI_get_errinfo(regs);
261                 if (errp)
262                         err = *errp;
263                 FWNMI_release_errinfo();        /* frees errp */
264                 if (errp && recover_mce(regs, err))
265                         return;
266         }
267 #endif
268
269         die("Machine check", regs, 0);
270
271         /* Must die if the interrupt is not recoverable */
272         if (!(regs->msr & MSR_RI))
273                 panic("Unrecoverable Machine check");
274 }
275
276 void
277 UnknownException(struct pt_regs *regs)
278 {
279         siginfo_t info;
280
281         printk("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
282                regs->nip, regs->msr, regs->trap);
283
284         info.si_signo = SIGTRAP;
285         info.si_errno = 0;
286         info.si_code = 0;
287         info.si_addr = 0;
288         _exception(SIGTRAP, &info, regs);       
289 }
290
291 void
292 InstructionBreakpointException(struct pt_regs *regs)
293 {
294         siginfo_t info;
295
296         if (debugger_iabr_match(regs))
297                 return;
298         info.si_signo = SIGTRAP;
299         info.si_errno = 0;
300         info.si_code = TRAP_BRKPT;
301         info.si_addr = (void *)regs->nip;
302         _exception(SIGTRAP, &info, regs);
303 }
304
305 static void parse_fpe(struct pt_regs *regs)
306 {
307         siginfo_t info;
308         unsigned long fpscr;
309
310         if (regs->msr & MSR_FP)
311                 giveup_fpu(current);
312
313         fpscr = current->thread.fpscr;
314
315         /* Invalid operation */
316         if ((fpscr & FPSCR_VE) && (fpscr & FPSCR_VX))
317                 info.si_code = FPE_FLTINV;
318
319         /* Overflow */
320         else if ((fpscr & FPSCR_OE) && (fpscr & FPSCR_OX))
321                 info.si_code = FPE_FLTOVF;
322
323         /* Underflow */
324         else if ((fpscr & FPSCR_UE) && (fpscr & FPSCR_UX))
325                 info.si_code = FPE_FLTUND;
326
327         /* Divide by zero */
328         else if ((fpscr & FPSCR_ZE) && (fpscr & FPSCR_ZX))
329                 info.si_code = FPE_FLTDIV;
330
331         /* Inexact result */
332         else if ((fpscr & FPSCR_XE) && (fpscr & FPSCR_XX))
333                 info.si_code = FPE_FLTRES;
334
335         else
336                 info.si_code = 0;
337
338         info.si_signo = SIGFPE;
339         info.si_errno = 0;
340         info.si_addr = (void *)regs->nip;
341         _exception(SIGFPE, &info, regs);
342 }
343
344 /*
345  * Look through the list of trap instructions that are used for BUG(),
346  * BUG_ON() and WARN_ON() and see if we hit one.  At this point we know
347  * that the exception was caused by a trap instruction of some kind.
348  * Returns 1 if we should continue (i.e. it was a WARN_ON) or 0
349  * otherwise.
350  */
351 extern struct bug_entry __start___bug_table[], __stop___bug_table[];
352
353 #ifndef CONFIG_MODULES
354 #define module_find_bug(x)      NULL
355 #endif
356
357 static struct bug_entry *find_bug(unsigned long bugaddr)
358 {
359         struct bug_entry *bug;
360
361         for (bug = __start___bug_table; bug < __stop___bug_table; ++bug)
362                 if (bugaddr == bug->bug_addr)
363                         return bug;
364         return module_find_bug(bugaddr);
365 }
366
367 int
368 check_bug_trap(struct pt_regs *regs)
369 {
370         struct bug_entry *bug;
371         unsigned long addr;
372
373         if (regs->msr & MSR_PR)
374                 return 0;       /* not in kernel */
375         addr = regs->nip;       /* address of trap instruction */
376         if (addr < PAGE_OFFSET)
377                 return 0;
378         bug = find_bug(regs->nip);
379         if (bug == NULL)
380                 return 0;
381         if (bug->line & BUG_WARNING_TRAP) {
382                 /* this is a WARN_ON rather than BUG/BUG_ON */
383                 printk(KERN_ERR "Badness in %s at %s:%d\n",
384                        bug->function, bug->file,
385                       (unsigned int)bug->line & ~BUG_WARNING_TRAP);
386                 show_stack(current, (void *)regs->gpr[1]);
387                 return 1;
388         }
389         printk(KERN_CRIT "kernel BUG in %s at %s:%d!\n",
390                bug->function, bug->file, (unsigned int)bug->line);
391         return 0;
392 }
393
394 void
395 ProgramCheckException(struct pt_regs *regs)
396 {
397         siginfo_t info;
398
399         if (regs->msr & 0x100000) {
400                 /* IEEE FP exception */
401
402                 parse_fpe(regs);
403         } else if (regs->msr & 0x40000) {
404                 /* Privileged instruction */
405
406                 info.si_signo = SIGILL;
407                 info.si_errno = 0;
408                 info.si_code = ILL_PRVOPC;
409                 info.si_addr = (void *)regs->nip;
410                 _exception(SIGILL, &info, regs);
411         } else if (regs->msr & 0x20000) {
412                 /* trap exception */
413
414                 if (debugger_bpt(regs))
415                         return;
416
417                 if (check_bug_trap(regs)) {
418                         regs->nip += 4;
419                         return;
420                 }
421                 info.si_signo = SIGTRAP;
422                 info.si_errno = 0;
423                 info.si_code = TRAP_BRKPT;
424                 info.si_addr = (void *)regs->nip;
425                 _exception(SIGTRAP, &info, regs);
426         } else {
427                 /* Illegal instruction */
428
429                 info.si_signo = SIGILL;
430                 info.si_errno = 0;
431                 info.si_code = ILL_ILLTRP;
432                 info.si_addr = (void *)regs->nip;
433                 _exception(SIGILL, &info, regs);
434         }
435 }
436
437 void KernelFPUnavailableException(struct pt_regs *regs)
438 {
439         printk(KERN_EMERG "Unrecoverable FP Unavailable Exception "
440                           "%lx at %lx\n", regs->trap, regs->nip);
441         die("Unrecoverable FP Unavailable Exception", regs, SIGABRT);
442 }
443
444 void KernelAltivecUnavailableException(struct pt_regs *regs)
445 {
446         printk(KERN_EMERG "Unrecoverable VMX/Altivec Unavailable Exception "
447                           "%lx at %lx\n", regs->trap, regs->nip);
448         die("Unrecoverable VMX/Altivec Unavailable Exception", regs, SIGABRT);
449 }
450
451 void
452 SingleStepException(struct pt_regs *regs)
453 {
454         siginfo_t info;
455
456         regs->msr &= ~MSR_SE;  /* Turn off 'trace' bit */
457
458         if (debugger_sstep(regs))
459                 return;
460
461         info.si_signo = SIGTRAP;
462         info.si_errno = 0;
463         info.si_code = TRAP_TRACE;
464         info.si_addr = (void *)regs->nip;
465         _exception(SIGTRAP, &info, regs);       
466 }
467
468 static void dummy_perf(struct pt_regs *regs)
469 {
470 }
471
472 void (*perf_irq)(struct pt_regs *) = dummy_perf;
473
474 void
475 PerformanceMonitorException(struct pt_regs *regs)
476 {
477         perf_irq(regs);
478 }
479
480 void
481 AlignmentException(struct pt_regs *regs)
482 {
483         int fixed;
484         siginfo_t info;
485
486         fixed = fix_alignment(regs);
487
488         if (fixed == 1) {
489                 if (!user_mode(regs))
490                         PPCDBG(PPCDBG_ALIGNFIXUP, "fix alignment at %lx\n",
491                                regs->nip);
492                 regs->nip += 4; /* skip over emulated instruction */
493                 return;
494         }
495
496         /* Operand address was bad */   
497         if (fixed == -EFAULT) {
498                 if (user_mode(regs)) {
499                         info.si_signo = SIGSEGV;
500                         info.si_errno = 0;
501                         info.si_code = SEGV_MAPERR;
502                         info.si_addr = (void *)regs->dar;
503                         force_sig_info(SIGSEGV, &info, current);
504                 } else {
505                         /* Search exception table */
506                         bad_page_fault(regs, regs->dar, SIGSEGV);
507                 }
508
509                 return;
510         }
511
512         info.si_signo = SIGBUS;
513         info.si_errno = 0;
514         info.si_code = BUS_ADRALN;
515         info.si_addr = (void *)regs->nip;
516         _exception(SIGBUS, &info, regs);        
517 }
518
519 #ifdef CONFIG_ALTIVEC
520 void
521 AltivecAssistException(struct pt_regs *regs)
522 {
523         if (regs->msr & MSR_VEC)
524                 giveup_altivec(current);
525         /* XXX quick hack for now: set the non-Java bit in the VSCR */
526         current->thread.vscr.u[3] |= 0x10000;
527 }
528 #endif /* CONFIG_ALTIVEC */
529
530 /*
531  * We enter here if we get an unrecoverable exception, that is, one
532  * that happened at a point where the RI (recoverable interrupt) bit
533  * in the MSR is 0.  This indicates that SRR0/1 are live, and that
534  * we therefore lost state by taking this exception.
535  */
536 void unrecoverable_exception(struct pt_regs *regs)
537 {
538         printk(KERN_EMERG "Unrecoverable exception %lx at %lx\n",
539                regs->trap, regs->nip);
540         die("Unrecoverable exception", regs, SIGABRT);
541 }
542
543 /*
544  * We enter here if we discover during exception entry that we are
545  * running in supervisor mode with a userspace value in the stack pointer.
546  */
547 void kernel_bad_stack(struct pt_regs *regs)
548 {
549         printk(KERN_EMERG "Bad kernel stack pointer %lx at %lx\n",
550                regs->gpr[1], regs->nip);
551         die("Bad kernel stack pointer", regs, SIGABRT);
552 }
553
554 void __init trap_init(void)
555 {
556 }