2 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
9 * Modified by Cort Dougan (cort@cs.nmt.edu)
10 * and Paul Mackerras (paulus@cs.anu.edu.au)
14 * This file handles the architecture-dependent parts of hardware exceptions
17 #include <linux/errno.h>
18 #include <linux/sched.h>
19 #include <linux/kernel.h>
21 #include <linux/stddef.h>
22 #include <linux/unistd.h>
23 #include <linux/ptrace.h>
24 #include <linux/slab.h>
25 #include <linux/user.h>
26 #include <linux/a.out.h>
27 #include <linux/interrupt.h>
28 #include <linux/init.h>
29 #include <linux/module.h>
30 #include <linux/prctl.h>
31 #include <linux/bug.h>
33 #include <asm/pgtable.h>
34 #include <asm/uaccess.h>
35 #include <asm/system.h>
42 extern int xmon_bpt(struct pt_regs
*regs
);
43 extern int xmon_sstep(struct pt_regs
*regs
);
44 extern int xmon_iabr_match(struct pt_regs
*regs
);
45 extern int xmon_dabr_match(struct pt_regs
*regs
);
47 int (*debugger
)(struct pt_regs
*regs
) = xmon
;
48 int (*debugger_bpt
)(struct pt_regs
*regs
) = xmon_bpt
;
49 int (*debugger_sstep
)(struct pt_regs
*regs
) = xmon_sstep
;
50 int (*debugger_iabr_match
)(struct pt_regs
*regs
) = xmon_iabr_match
;
51 int (*debugger_dabr_match
)(struct pt_regs
*regs
) = xmon_dabr_match
;
52 void (*debugger_fault_handler
)(struct pt_regs
*regs
);
55 int (*debugger
)(struct pt_regs
*regs
);
56 int (*debugger_bpt
)(struct pt_regs
*regs
);
57 int (*debugger_sstep
)(struct pt_regs
*regs
);
58 int (*debugger_iabr_match
)(struct pt_regs
*regs
);
59 int (*debugger_dabr_match
)(struct pt_regs
*regs
);
60 void (*debugger_fault_handler
)(struct pt_regs
*regs
);
62 #define debugger(regs) do { } while (0)
63 #define debugger_bpt(regs) 0
64 #define debugger_sstep(regs) 0
65 #define debugger_iabr_match(regs) 0
66 #define debugger_dabr_match(regs) 0
67 #define debugger_fault_handler ((void (*)(struct pt_regs *))0)
72 * Trap & Exception support
75 DEFINE_SPINLOCK(die_lock
);
77 int die(const char * str
, struct pt_regs
* fp
, long err
)
79 static int die_counter
;
82 spin_lock_irq(&die_lock
);
83 printk("Oops: %s, sig: %ld [#%d]\n", str
, err
, ++die_counter
);
89 printk("SMP NR_CPUS=%d ", NR_CPUS
);
95 spin_unlock_irq(&die_lock
);
96 /* do_exit() should take care of panic'ing from an interrupt
97 * context so we don't handle it here
102 void _exception(int signr
, struct pt_regs
*regs
, int code
, unsigned long addr
)
106 if (!user_mode(regs
)) {
108 die("Exception in kernel mode", regs
, signr
);
110 info
.si_signo
= signr
;
113 info
.si_addr
= (void __user
*) addr
;
114 force_sig_info(signr
, &info
, current
);
117 * Init gets no signals that it doesn't have a handler for.
118 * That's all very well, but if it has caused a synchronous
119 * exception and we ignore the resulting signal, it will just
120 * generate the same exception over and over again and we get
121 * nowhere. Better to kill it and let the kernel panic.
123 if (is_init(current
)) {
124 __sighandler_t handler
;
126 spin_lock_irq(¤t
->sighand
->siglock
);
127 handler
= current
->sighand
->action
[signr
-1].sa
.sa_handler
;
128 spin_unlock_irq(¤t
->sighand
->siglock
);
129 if (handler
== SIG_DFL
) {
130 /* init has generated a synchronous exception
131 and it doesn't have a handler for the signal */
132 printk(KERN_CRIT
"init has generated signal %d "
133 "but has no handler for it\n", signr
);
140 * I/O accesses can cause machine checks on powermacs.
141 * Check if the NIP corresponds to the address of a sync
142 * instruction for which there is an entry in the exception
144 * Note that the 601 only takes a machine check on TEA
145 * (transfer error ack) signal assertion, and does not
146 * set any of the top 16 bits of SRR1.
149 static inline int check_io_access(struct pt_regs
*regs
)
151 #if defined CONFIG_8xx
152 unsigned long msr
= regs
->msr
;
153 const struct exception_table_entry
*entry
;
154 unsigned int *nip
= (unsigned int *)regs
->nip
;
156 if (((msr
& 0xffff0000) == 0 || (msr
& (0x80000 | 0x40000)))
157 && (entry
= search_exception_tables(regs
->nip
)) != NULL
) {
159 * Check that it's a sync instruction, or somewhere
160 * in the twi; isync; nop sequence that inb/inw/inl uses.
161 * As the address is in the exception table
162 * we should be able to read the instr there.
163 * For the debug message, we look at the preceding
166 if (*nip
== 0x60000000) /* nop */
168 else if (*nip
== 0x4c00012c) /* isync */
170 /* eieio from I/O string functions */
171 else if ((*nip
) == 0x7c0006ac || *(nip
+1) == 0x7c0006ac)
173 if (*nip
== 0x7c0004ac || (*nip
>> 26) == 3 ||
174 (*(nip
+1) >> 26) == 3) {
179 rb
= (*nip
>> 11) & 0x1f;
180 printk(KERN_DEBUG
"%s bad port %lx at %p\n",
181 (*nip
& 0x100)? "OUT to": "IN from",
182 regs
->gpr
[rb
] - _IO_BASE
, nip
);
184 regs
->nip
= entry
->fixup
;
188 #endif /* CONFIG_8xx */
192 #if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
193 /* On 4xx, the reason for the machine check or program exception
195 #define get_reason(regs) ((regs)->dsisr)
196 #ifndef CONFIG_FSL_BOOKE
197 #define get_mc_reason(regs) ((regs)->dsisr)
199 #define get_mc_reason(regs) (mfspr(SPRN_MCSR))
201 #define REASON_FP ESR_FP
202 #define REASON_ILLEGAL (ESR_PIL | ESR_PUO)
203 #define REASON_PRIVILEGED ESR_PPR
204 #define REASON_TRAP ESR_PTR
206 /* single-step stuff */
207 #define single_stepping(regs) (current->thread.dbcr0 & DBCR0_IC)
208 #define clear_single_step(regs) (current->thread.dbcr0 &= ~DBCR0_IC)
211 /* On non-4xx, the reason for the machine check or program
212 exception is in the MSR. */
213 #define get_reason(regs) ((regs)->msr)
214 #define get_mc_reason(regs) ((regs)->msr)
215 #define REASON_FP 0x100000
216 #define REASON_ILLEGAL 0x80000
217 #define REASON_PRIVILEGED 0x40000
218 #define REASON_TRAP 0x20000
220 #define single_stepping(regs) ((regs)->msr & MSR_SE)
221 #define clear_single_step(regs) ((regs)->msr &= ~MSR_SE)
225 * This is "fall-back" implementation for configurations
226 * which don't provide platform-specific machine check info
228 void __attribute__ ((weak
))
229 platform_machine_check(struct pt_regs
*regs
)
233 void machine_check_exception(struct pt_regs
*regs
)
235 unsigned long reason
= get_mc_reason(regs
);
237 if (user_mode(regs
)) {
239 _exception(SIGBUS
, regs
, BUS_ADRERR
, regs
->nip
);
243 #if defined(CONFIG_8xx) && defined(CONFIG_PCI)
244 /* the qspan pci read routines can cause machine checks -- Cort */
245 bad_page_fault(regs
, regs
->dar
, SIGBUS
);
249 if (debugger_fault_handler
) {
250 debugger_fault_handler(regs
);
255 if (check_io_access(regs
))
258 #if defined(CONFIG_4xx) && !defined(CONFIG_440A)
259 if (reason
& ESR_IMCP
) {
260 printk("Instruction");
261 mtspr(SPRN_ESR
, reason
& ~ESR_IMCP
);
264 printk(" machine check in kernel mode.\n");
265 #elif defined(CONFIG_440A)
266 printk("Machine check in kernel mode.\n");
267 if (reason
& ESR_IMCP
){
268 printk("Instruction Synchronous Machine Check exception\n");
269 mtspr(SPRN_ESR
, reason
& ~ESR_IMCP
);
272 u32 mcsr
= mfspr(SPRN_MCSR
);
274 printk("Instruction Read PLB Error\n");
276 printk("Data Read PLB Error\n");
278 printk("Data Write PLB Error\n");
279 if (mcsr
& MCSR_TLBP
)
280 printk("TLB Parity Error\n");
281 if (mcsr
& MCSR_ICP
){
282 flush_instruction_cache();
283 printk("I-Cache Parity Error\n");
285 if (mcsr
& MCSR_DCSP
)
286 printk("D-Cache Search Parity Error\n");
287 if (mcsr
& MCSR_DCFP
)
288 printk("D-Cache Flush Parity Error\n");
289 if (mcsr
& MCSR_IMPE
)
290 printk("Machine Check exception is imprecise\n");
293 mtspr(SPRN_MCSR
, mcsr
);
295 #elif defined (CONFIG_E500)
296 printk("Machine check in kernel mode.\n");
297 printk("Caused by (from MCSR=%lx): ", reason
);
299 if (reason
& MCSR_MCP
)
300 printk("Machine Check Signal\n");
301 if (reason
& MCSR_ICPERR
)
302 printk("Instruction Cache Parity Error\n");
303 if (reason
& MCSR_DCP_PERR
)
304 printk("Data Cache Push Parity Error\n");
305 if (reason
& MCSR_DCPERR
)
306 printk("Data Cache Parity Error\n");
307 if (reason
& MCSR_GL_CI
)
308 printk("Guarded Load or Cache-Inhibited stwcx.\n");
309 if (reason
& MCSR_BUS_IAERR
)
310 printk("Bus - Instruction Address Error\n");
311 if (reason
& MCSR_BUS_RAERR
)
312 printk("Bus - Read Address Error\n");
313 if (reason
& MCSR_BUS_WAERR
)
314 printk("Bus - Write Address Error\n");
315 if (reason
& MCSR_BUS_IBERR
)
316 printk("Bus - Instruction Data Error\n");
317 if (reason
& MCSR_BUS_RBERR
)
318 printk("Bus - Read Data Bus Error\n");
319 if (reason
& MCSR_BUS_WBERR
)
320 printk("Bus - Write Data Bus Error\n");
321 if (reason
& MCSR_BUS_IPERR
)
322 printk("Bus - Instruction Parity Error\n");
323 if (reason
& MCSR_BUS_RPERR
)
324 printk("Bus - Read Parity Error\n");
325 #elif defined (CONFIG_E200)
326 printk("Machine check in kernel mode.\n");
327 printk("Caused by (from MCSR=%lx): ", reason
);
329 if (reason
& MCSR_MCP
)
330 printk("Machine Check Signal\n");
331 if (reason
& MCSR_CP_PERR
)
332 printk("Cache Push Parity Error\n");
333 if (reason
& MCSR_CPERR
)
334 printk("Cache Parity Error\n");
335 if (reason
& MCSR_EXCP_ERR
)
336 printk("ISI, ITLB, or Bus Error on first instruction fetch for an exception handler\n");
337 if (reason
& MCSR_BUS_IRERR
)
338 printk("Bus - Read Bus Error on instruction fetch\n");
339 if (reason
& MCSR_BUS_DRERR
)
340 printk("Bus - Read Bus Error on data load\n");
341 if (reason
& MCSR_BUS_WRERR
)
342 printk("Bus - Write Bus Error on buffered store or cache line push\n");
343 #else /* !CONFIG_4xx && !CONFIG_E500 && !CONFIG_E200 */
344 printk("Machine check in kernel mode.\n");
345 printk("Caused by (from SRR1=%lx): ", reason
);
346 switch (reason
& 0x601F0000) {
348 printk("Machine check signal\n");
350 case 0: /* for 601 */
352 case 0x140000: /* 7450 MSS error and TEA */
353 printk("Transfer error ack signal\n");
356 printk("Data parity error signal\n");
359 printk("Address parity error signal\n");
362 printk("L1 Data Cache error\n");
365 printk("L1 Instruction Cache error\n");
368 printk("L2 data cache parity error\n");
371 printk("Unknown values in msr\n");
373 #endif /* CONFIG_4xx */
376 * Optional platform-provided routine to print out
377 * additional info, e.g. bus error registers.
379 platform_machine_check(regs
);
382 die("machine check", regs
, SIGBUS
);
385 void SMIException(struct pt_regs
*regs
)
388 #if !(defined(CONFIG_XMON) || defined(CONFIG_KGDB))
390 panic("System Management Interrupt");
394 void unknown_exception(struct pt_regs
*regs
)
396 printk("Bad trap at PC: %lx, MSR: %lx, vector=%lx %s\n",
397 regs
->nip
, regs
->msr
, regs
->trap
, print_tainted());
398 _exception(SIGTRAP
, regs
, 0, 0);
401 void instruction_breakpoint_exception(struct pt_regs
*regs
)
403 if (debugger_iabr_match(regs
))
405 _exception(SIGTRAP
, regs
, TRAP_BRKPT
, 0);
408 void RunModeException(struct pt_regs
*regs
)
410 _exception(SIGTRAP
, regs
, 0, 0);
413 /* Illegal instruction emulation support. Originally written to
414 * provide the PVR to user applications using the mfspr rd, PVR.
415 * Return non-zero if we can't emulate, or -EFAULT if the associated
416 * memory access caused an access fault. Return zero on success.
418 * There are a couple of ways to do this, either "decode" the instruction
419 * or directly match lots of bits. In this case, matching lots of
420 * bits is faster and easier.
423 #define INST_MFSPR_PVR 0x7c1f42a6
424 #define INST_MFSPR_PVR_MASK 0xfc1fffff
426 #define INST_DCBA 0x7c0005ec
427 #define INST_DCBA_MASK 0x7c0007fe
429 #define INST_MCRXR 0x7c000400
430 #define INST_MCRXR_MASK 0x7c0007fe
432 #define INST_STRING 0x7c00042a
433 #define INST_STRING_MASK 0x7c0007fe
434 #define INST_STRING_GEN_MASK 0x7c00067e
435 #define INST_LSWI 0x7c0004aa
436 #define INST_LSWX 0x7c00042a
437 #define INST_STSWI 0x7c0005aa
438 #define INST_STSWX 0x7c00052a
440 static int emulate_string_inst(struct pt_regs
*regs
, u32 instword
)
442 u8 rT
= (instword
>> 21) & 0x1f;
443 u8 rA
= (instword
>> 16) & 0x1f;
444 u8 NB_RB
= (instword
>> 11) & 0x1f;
449 /* Early out if we are an invalid form of lswx */
450 if ((instword
& INST_STRING_MASK
) == INST_LSWX
)
451 if ((rT
== rA
) || (rT
== NB_RB
))
454 EA
= (rA
== 0) ? 0 : regs
->gpr
[rA
];
456 switch (instword
& INST_STRING_MASK
) {
460 num_bytes
= regs
->xer
& 0x7f;
464 num_bytes
= (NB_RB
== 0) ? 32 : NB_RB
;
470 while (num_bytes
!= 0)
473 u32 shift
= 8 * (3 - (pos
& 0x3));
475 switch ((instword
& INST_STRING_MASK
)) {
478 if (get_user(val
, (u8 __user
*)EA
))
480 /* first time updating this reg,
484 regs
->gpr
[rT
] |= val
<< shift
;
488 val
= regs
->gpr
[rT
] >> shift
;
489 if (put_user(val
, (u8 __user
*)EA
))
493 /* move EA to next address */
497 /* manage our position within the register */
508 static int emulate_instruction(struct pt_regs
*regs
)
513 if (!user_mode(regs
))
515 CHECK_FULL_REGS(regs
);
517 if (get_user(instword
, (u32 __user
*)(regs
->nip
)))
520 /* Emulate the mfspr rD, PVR.
522 if ((instword
& INST_MFSPR_PVR_MASK
) == INST_MFSPR_PVR
) {
523 rd
= (instword
>> 21) & 0x1f;
524 regs
->gpr
[rd
] = mfspr(SPRN_PVR
);
528 /* Emulating the dcba insn is just a no-op. */
529 if ((instword
& INST_DCBA_MASK
) == INST_DCBA
)
532 /* Emulate the mcrxr insn. */
533 if ((instword
& INST_MCRXR_MASK
) == INST_MCRXR
) {
534 int shift
= (instword
>> 21) & 0x1c;
535 unsigned long msk
= 0xf0000000UL
>> shift
;
537 regs
->ccr
= (regs
->ccr
& ~msk
) | ((regs
->xer
>> shift
) & msk
);
538 regs
->xer
&= ~0xf0000000UL
;
542 /* Emulate load/store string insn. */
543 if ((instword
& INST_STRING_GEN_MASK
) == INST_STRING
)
544 return emulate_string_inst(regs
, instword
);
550 * After we have successfully emulated an instruction, we have to
551 * check if the instruction was being single-stepped, and if so,
552 * pretend we got a single-step exception. This was pointed out
553 * by Kumar Gala. -- paulus
555 static void emulate_single_step(struct pt_regs
*regs
)
557 if (single_stepping(regs
)) {
558 clear_single_step(regs
);
559 _exception(SIGTRAP
, regs
, TRAP_TRACE
, 0);
563 int is_valid_bugaddr(unsigned long addr
)
565 return addr
>= PAGE_OFFSET
;
568 void program_check_exception(struct pt_regs
*regs
)
570 unsigned int reason
= get_reason(regs
);
571 extern int do_mathemu(struct pt_regs
*regs
);
573 #ifdef CONFIG_MATH_EMULATION
574 /* (reason & REASON_ILLEGAL) would be the obvious thing here,
575 * but there seems to be a hardware bug on the 405GP (RevD)
576 * that means ESR is sometimes set incorrectly - either to
577 * ESR_DST (!?) or 0. In the process of chasing this with the
578 * hardware people - not sure if it can happen on any illegal
579 * instruction or only on FP instructions, whether there is a
580 * pattern to occurrences etc. -dgibson 31/Mar/2003 */
581 if (!(reason
& REASON_TRAP
) && do_mathemu(regs
) == 0) {
582 emulate_single_step(regs
);
585 #endif /* CONFIG_MATH_EMULATION */
587 if (reason
& REASON_FP
) {
588 /* IEEE FP exception */
592 /* We must make sure the FP state is consistent with
596 if (regs
->msr
& MSR_FP
)
600 fpscr
= current
->thread
.fpscr
.val
;
601 fpscr
&= fpscr
<< 22; /* mask summary bits with enables */
602 if (fpscr
& FPSCR_VX
)
604 else if (fpscr
& FPSCR_OX
)
606 else if (fpscr
& FPSCR_UX
)
608 else if (fpscr
& FPSCR_ZX
)
610 else if (fpscr
& FPSCR_XX
)
612 _exception(SIGFPE
, regs
, code
, regs
->nip
);
616 if (reason
& REASON_TRAP
) {
618 if (debugger_bpt(regs
))
621 if (!(regs
->msr
& MSR_PR
) && /* not user-mode */
622 report_bug(regs
->nip
) == BUG_TRAP_TYPE_WARN
) {
626 _exception(SIGTRAP
, regs
, TRAP_BRKPT
, 0);
630 /* Try to emulate it if we should. */
631 if (reason
& (REASON_ILLEGAL
| REASON_PRIVILEGED
)) {
632 switch (emulate_instruction(regs
)) {
635 emulate_single_step(regs
);
638 _exception(SIGSEGV
, regs
, SEGV_MAPERR
, regs
->nip
);
643 if (reason
& REASON_PRIVILEGED
)
644 _exception(SIGILL
, regs
, ILL_PRVOPC
, regs
->nip
);
646 _exception(SIGILL
, regs
, ILL_ILLOPC
, regs
->nip
);
649 void single_step_exception(struct pt_regs
*regs
)
651 regs
->msr
&= ~(MSR_SE
| MSR_BE
); /* Turn off 'trace' bits */
652 if (debugger_sstep(regs
))
654 _exception(SIGTRAP
, regs
, TRAP_TRACE
, 0);
657 void alignment_exception(struct pt_regs
*regs
)
659 int sig
, code
, fixed
= 0;
661 fixed
= fix_alignment(regs
);
663 regs
->nip
+= 4; /* skip over emulated instruction */
664 emulate_single_step(regs
);
667 if (fixed
== -EFAULT
) {
675 _exception(sig
, regs
, code
, regs
->dar
);
677 bad_page_fault(regs
, regs
->dar
, sig
);
680 void StackOverflow(struct pt_regs
*regs
)
682 printk(KERN_CRIT
"Kernel stack overflow in process %p, r1=%lx\n",
683 current
, regs
->gpr
[1]);
686 panic("kernel stack overflow");
689 void nonrecoverable_exception(struct pt_regs
*regs
)
691 printk(KERN_ERR
"Non-recoverable exception at PC=%lx MSR=%lx\n",
692 regs
->nip
, regs
->msr
);
694 die("nonrecoverable exception", regs
, SIGKILL
);
697 void trace_syscall(struct pt_regs
*regs
)
699 printk("Task: %p(%d), PC: %08lX/%08lX, Syscall: %3ld, Result: %s%ld %s\n",
700 current
, current
->pid
, regs
->nip
, regs
->link
, regs
->gpr
[0],
701 regs
->ccr
&0x10000000?"Error=":"", regs
->gpr
[3], print_tainted());
705 void SoftwareEmulation(struct pt_regs
*regs
)
707 extern int do_mathemu(struct pt_regs
*);
708 extern int Soft_emulate_8xx(struct pt_regs
*);
711 CHECK_FULL_REGS(regs
);
713 if (!user_mode(regs
)) {
715 die("Kernel Mode Software FPU Emulation", regs
, SIGFPE
);
718 #ifdef CONFIG_MATH_EMULATION
719 errcode
= do_mathemu(regs
);
721 errcode
= Soft_emulate_8xx(regs
);
725 _exception(SIGFPE
, regs
, 0, 0);
726 else if (errcode
== -EFAULT
)
727 _exception(SIGSEGV
, regs
, 0, 0);
729 _exception(SIGILL
, regs
, ILL_ILLOPC
, regs
->nip
);
731 emulate_single_step(regs
);
733 #endif /* CONFIG_8xx */
735 #if defined(CONFIG_40x) || defined(CONFIG_BOOKE)
737 void DebugException(struct pt_regs
*regs
, unsigned long debug_status
)
739 if (debug_status
& DBSR_IC
) { /* instruction completion */
740 regs
->msr
&= ~MSR_DE
;
741 if (user_mode(regs
)) {
742 current
->thread
.dbcr0
&= ~DBCR0_IC
;
744 /* Disable instruction completion */
745 mtspr(SPRN_DBCR0
, mfspr(SPRN_DBCR0
) & ~DBCR0_IC
);
746 /* Clear the instruction completion event */
747 mtspr(SPRN_DBSR
, DBSR_IC
);
748 if (debugger_sstep(regs
))
751 _exception(SIGTRAP
, regs
, TRAP_TRACE
, 0);
754 #endif /* CONFIG_4xx || CONFIG_BOOKE */
756 #if !defined(CONFIG_TAU_INT)
757 void TAUException(struct pt_regs
*regs
)
759 printk("TAU trap at PC: %lx, MSR: %lx, vector=%lx %s\n",
760 regs
->nip
, regs
->msr
, regs
->trap
, print_tainted());
762 #endif /* CONFIG_INT_TAU */
765 * FP unavailable trap from kernel - print a message, but let
766 * the task use FP in the kernel until it returns to user mode.
768 void kernel_fp_unavailable_exception(struct pt_regs
*regs
)
771 printk(KERN_ERR
"floating point used in kernel (task=%p, pc=%lx)\n",
775 void altivec_unavailable_exception(struct pt_regs
*regs
)
777 static int kernel_altivec_count
;
779 #ifndef CONFIG_ALTIVEC
780 if (user_mode(regs
)) {
781 /* A user program has executed an altivec instruction,
782 but this kernel doesn't support altivec. */
783 _exception(SIGILL
, regs
, ILL_ILLOPC
, regs
->nip
);
787 /* The kernel has executed an altivec instruction without
788 first enabling altivec. Whinge but let it do it. */
789 if (++kernel_altivec_count
< 10)
790 printk(KERN_ERR
"AltiVec used in kernel (task=%p, pc=%lx)\n",
792 regs
->msr
|= MSR_VEC
;
795 #ifdef CONFIG_ALTIVEC
796 void altivec_assist_exception(struct pt_regs
*regs
)
801 if (regs
->msr
& MSR_VEC
)
802 giveup_altivec(current
);
804 if (!user_mode(regs
)) {
805 printk(KERN_ERR
"altivec assist exception in kernel mode"
806 " at %lx\n", regs
->nip
);
808 die("altivec assist exception", regs
, SIGFPE
);
812 err
= emulate_altivec(regs
);
814 regs
->nip
+= 4; /* skip emulated instruction */
815 emulate_single_step(regs
);
819 if (err
== -EFAULT
) {
820 /* got an error reading the instruction */
821 _exception(SIGSEGV
, regs
, SEGV_ACCERR
, regs
->nip
);
823 /* didn't recognize the instruction */
824 /* XXX quick hack for now: set the non-Java bit in the VSCR */
825 printk(KERN_ERR
"unrecognized altivec instruction "
826 "in %s at %lx\n", current
->comm
, regs
->nip
);
827 current
->thread
.vscr
.u
[3] |= 0x10000;
830 #endif /* CONFIG_ALTIVEC */
833 void performance_monitor_exception(struct pt_regs
*regs
)
839 #ifdef CONFIG_FSL_BOOKE
840 void CacheLockingException(struct pt_regs
*regs
, unsigned long address
,
841 unsigned long error_code
)
843 /* We treat cache locking instructions from the user
844 * as priv ops, in the future we could try to do
847 if (error_code
& (ESR_DLK
|ESR_ILK
))
848 _exception(SIGILL
, regs
, ILL_PRVOPC
, regs
->nip
);
851 #endif /* CONFIG_FSL_BOOKE */
854 void SPEFloatingPointException(struct pt_regs
*regs
)
856 unsigned long spefscr
;
860 spefscr
= current
->thread
.spefscr
;
861 fpexc_mode
= current
->thread
.fpexc_mode
;
863 /* Hardware does not necessarily set sticky
864 * underflow/overflow/invalid flags */
865 if ((spefscr
& SPEFSCR_FOVF
) && (fpexc_mode
& PR_FP_EXC_OVF
)) {
867 spefscr
|= SPEFSCR_FOVFS
;
869 else if ((spefscr
& SPEFSCR_FUNF
) && (fpexc_mode
& PR_FP_EXC_UND
)) {
871 spefscr
|= SPEFSCR_FUNFS
;
873 else if ((spefscr
& SPEFSCR_FDBZ
) && (fpexc_mode
& PR_FP_EXC_DIV
))
875 else if ((spefscr
& SPEFSCR_FINV
) && (fpexc_mode
& PR_FP_EXC_INV
)) {
877 spefscr
|= SPEFSCR_FINVS
;
879 else if ((spefscr
& (SPEFSCR_FG
| SPEFSCR_FX
)) && (fpexc_mode
& PR_FP_EXC_RES
))
882 current
->thread
.spefscr
= spefscr
;
884 _exception(SIGFPE
, regs
, code
, regs
->nip
);
889 #ifdef CONFIG_BOOKE_WDT
891 * Default handler for a Watchdog exception,
892 * spins until a reboot occurs
894 void __attribute__ ((weak
)) WatchdogHandler(struct pt_regs
*regs
)
896 /* Generic WatchdogHandler, implement your own */
897 mtspr(SPRN_TCR
, mfspr(SPRN_TCR
)&(~TCR_WIE
));
901 void WatchdogException(struct pt_regs
*regs
)
903 printk (KERN_EMERG
"PowerPC Book-E Watchdog Exception\n");
904 WatchdogHandler(regs
);
908 void __init
trap_init(void)