2 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
3 * Copyright 2007-2010 Freescale Semiconductor, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
10 * Modified by Cort Dougan (cort@cs.nmt.edu)
11 * and Paul Mackerras (paulus@samba.org)
15 * This file handles the architecture-dependent parts of hardware exceptions
18 #include <linux/errno.h>
19 #include <linux/sched.h>
20 #include <linux/kernel.h>
22 #include <linux/stddef.h>
23 #include <linux/unistd.h>
24 #include <linux/ptrace.h>
25 #include <linux/user.h>
26 #include <linux/interrupt.h>
27 #include <linux/init.h>
28 #include <linux/extable.h>
29 #include <linux/module.h> /* print_modules */
30 #include <linux/prctl.h>
31 #include <linux/delay.h>
32 #include <linux/kprobes.h>
33 #include <linux/kexec.h>
34 #include <linux/backlight.h>
35 #include <linux/bug.h>
36 #include <linux/kdebug.h>
37 #include <linux/debugfs.h>
38 #include <linux/ratelimit.h>
39 #include <linux/context_tracking.h>
41 #include <asm/emulated_ops.h>
42 #include <asm/pgtable.h>
43 #include <asm/uaccess.h>
45 #include <asm/machdep.h>
49 #ifdef CONFIG_PMAC_BACKLIGHT
50 #include <asm/backlight.h>
53 #include <asm/firmware.h>
54 #include <asm/processor.h>
57 #include <asm/kexec.h>
58 #include <asm/ppc-opcode.h>
60 #include <asm/fadump.h>
61 #include <asm/switch_to.h>
63 #include <asm/debug.h>
64 #include <asm/asm-prototypes.h>
66 #include <sysdev/fsl_pci.h>
68 #if defined(CONFIG_DEBUGGER) || defined(CONFIG_KEXEC)
69 int (*__debugger
)(struct pt_regs
*regs
) __read_mostly
;
70 int (*__debugger_ipi
)(struct pt_regs
*regs
) __read_mostly
;
71 int (*__debugger_bpt
)(struct pt_regs
*regs
) __read_mostly
;
72 int (*__debugger_sstep
)(struct pt_regs
*regs
) __read_mostly
;
73 int (*__debugger_iabr_match
)(struct pt_regs
*regs
) __read_mostly
;
74 int (*__debugger_break_match
)(struct pt_regs
*regs
) __read_mostly
;
75 int (*__debugger_fault_handler
)(struct pt_regs
*regs
) __read_mostly
;
77 EXPORT_SYMBOL(__debugger
);
78 EXPORT_SYMBOL(__debugger_ipi
);
79 EXPORT_SYMBOL(__debugger_bpt
);
80 EXPORT_SYMBOL(__debugger_sstep
);
81 EXPORT_SYMBOL(__debugger_iabr_match
);
82 EXPORT_SYMBOL(__debugger_break_match
);
83 EXPORT_SYMBOL(__debugger_fault_handler
);
86 /* Transactional Memory trap debug */
88 #define TM_DEBUG(x...) printk(KERN_INFO x)
90 #define TM_DEBUG(x...) do { } while(0)
94 * Trap & Exception support
97 #ifdef CONFIG_PMAC_BACKLIGHT
98 static void pmac_backlight_unblank(void)
100 mutex_lock(&pmac_backlight_mutex
);
101 if (pmac_backlight
) {
102 struct backlight_properties
*props
;
104 props
= &pmac_backlight
->props
;
105 props
->brightness
= props
->max_brightness
;
106 props
->power
= FB_BLANK_UNBLANK
;
107 backlight_update_status(pmac_backlight
);
109 mutex_unlock(&pmac_backlight_mutex
);
112 static inline void pmac_backlight_unblank(void) { }
115 static arch_spinlock_t die_lock
= __ARCH_SPIN_LOCK_UNLOCKED
;
116 static int die_owner
= -1;
117 static unsigned int die_nest_count
;
118 static int die_counter
;
120 static unsigned long oops_begin(struct pt_regs
*regs
)
130 /* racy, but better than risking deadlock. */
131 raw_local_irq_save(flags
);
132 cpu
= smp_processor_id();
133 if (!arch_spin_trylock(&die_lock
)) {
134 if (cpu
== die_owner
)
135 /* nested oops. should stop eventually */;
137 arch_spin_lock(&die_lock
);
143 if (machine_is(powermac
))
144 pmac_backlight_unblank();
147 NOKPROBE_SYMBOL(oops_begin
);
149 static void oops_end(unsigned long flags
, struct pt_regs
*regs
,
154 add_taint(TAINT_DIE
, LOCKDEP_NOW_UNRELIABLE
);
159 /* Nest count reaches zero, release the lock. */
160 arch_spin_unlock(&die_lock
);
161 raw_local_irq_restore(flags
);
163 crash_fadump(regs
, "die oops");
166 * A system reset (0x100) is a request to dump, so we always send
167 * it through the crashdump code.
169 if (kexec_should_crash(current
) || (TRAP(regs
) == 0x100)) {
173 * We aren't the primary crash CPU. We need to send it
174 * to a holding pattern to avoid it ending up in the panic
177 crash_kexec_secondary(regs
);
184 * While our oops output is serialised by a spinlock, output
185 * from panic() called below can race and corrupt it. If we
186 * know we are going to panic, delay for 1 second so we have a
187 * chance to get clean backtraces from all CPUs that are oopsing.
189 if (in_interrupt() || panic_on_oops
|| !current
->pid
||
190 is_global_init(current
)) {
191 mdelay(MSEC_PER_SEC
);
195 panic("Fatal exception in interrupt");
197 panic("Fatal exception");
200 NOKPROBE_SYMBOL(oops_end
);
202 static int __die(const char *str
, struct pt_regs
*regs
, long err
)
204 printk("Oops: %s, sig: %ld [#%d]\n", str
, err
, ++die_counter
);
205 #ifdef CONFIG_PREEMPT
209 printk("SMP NR_CPUS=%d ", NR_CPUS
);
211 if (debug_pagealloc_enabled())
212 printk("DEBUG_PAGEALLOC ");
216 printk("%s\n", ppc_md
.name
? ppc_md
.name
: "");
218 if (notify_die(DIE_OOPS
, str
, regs
, err
, 255, SIGSEGV
) == NOTIFY_STOP
)
226 NOKPROBE_SYMBOL(__die
);
228 void die(const char *str
, struct pt_regs
*regs
, long err
)
230 unsigned long flags
= oops_begin(regs
);
232 if (__die(str
, regs
, err
))
234 oops_end(flags
, regs
, err
);
237 void user_single_step_siginfo(struct task_struct
*tsk
,
238 struct pt_regs
*regs
, siginfo_t
*info
)
240 memset(info
, 0, sizeof(*info
));
241 info
->si_signo
= SIGTRAP
;
242 info
->si_code
= TRAP_TRACE
;
243 info
->si_addr
= (void __user
*)regs
->nip
;
246 void _exception(int signr
, struct pt_regs
*regs
, int code
, unsigned long addr
)
249 const char fmt32
[] = KERN_INFO
"%s[%d]: unhandled signal %d " \
250 "at %08lx nip %08lx lr %08lx code %x\n";
251 const char fmt64
[] = KERN_INFO
"%s[%d]: unhandled signal %d " \
252 "at %016lx nip %016lx lr %016lx code %x\n";
254 if (!user_mode(regs
)) {
255 die("Exception in kernel mode", regs
, signr
);
259 if (show_unhandled_signals
&& unhandled_signal(current
, signr
)) {
260 printk_ratelimited(regs
->msr
& MSR_64BIT
? fmt64
: fmt32
,
261 current
->comm
, current
->pid
, signr
,
262 addr
, regs
->nip
, regs
->link
, code
);
265 if (arch_irqs_disabled() && !arch_irq_disabled_regs(regs
))
268 current
->thread
.trap_nr
= code
;
269 memset(&info
, 0, sizeof(info
));
270 info
.si_signo
= signr
;
272 info
.si_addr
= (void __user
*) addr
;
273 force_sig_info(signr
, &info
, current
);
276 void system_reset_exception(struct pt_regs
*regs
)
278 /* See if any machine dependent calls */
279 if (ppc_md
.system_reset_exception
) {
280 if (ppc_md
.system_reset_exception(regs
))
284 die("System Reset", regs
, SIGABRT
);
286 /* Must die if the interrupt is not recoverable */
287 if (!(regs
->msr
& MSR_RI
))
288 panic("Unrecoverable System Reset");
290 /* What should we do here? We could issue a shutdown or hard reset. */
295 * This function is called in real mode. Strictly no printk's please.
297 * regs->nip and regs->msr contains srr0 and ssr1.
299 long machine_check_early(struct pt_regs
*regs
)
303 __this_cpu_inc(irq_stat
.mce_exceptions
);
305 if (cur_cpu_spec
&& cur_cpu_spec
->machine_check_early
)
306 handled
= cur_cpu_spec
->machine_check_early(regs
);
310 long hmi_exception_realmode(struct pt_regs
*regs
)
312 __this_cpu_inc(irq_stat
.hmi_exceptions
);
314 wait_for_subcore_guest_exit();
316 if (ppc_md
.hmi_exception_early
)
317 ppc_md
.hmi_exception_early(regs
);
319 wait_for_tb_resync();
327 * I/O accesses can cause machine checks on powermacs.
328 * Check if the NIP corresponds to the address of a sync
329 * instruction for which there is an entry in the exception
331 * Note that the 601 only takes a machine check on TEA
332 * (transfer error ack) signal assertion, and does not
333 * set any of the top 16 bits of SRR1.
336 static inline int check_io_access(struct pt_regs
*regs
)
339 unsigned long msr
= regs
->msr
;
340 const struct exception_table_entry
*entry
;
341 unsigned int *nip
= (unsigned int *)regs
->nip
;
343 if (((msr
& 0xffff0000) == 0 || (msr
& (0x80000 | 0x40000)))
344 && (entry
= search_exception_tables(regs
->nip
)) != NULL
) {
346 * Check that it's a sync instruction, or somewhere
347 * in the twi; isync; nop sequence that inb/inw/inl uses.
348 * As the address is in the exception table
349 * we should be able to read the instr there.
350 * For the debug message, we look at the preceding
353 if (*nip
== PPC_INST_NOP
)
355 else if (*nip
== PPC_INST_ISYNC
)
357 if (*nip
== PPC_INST_SYNC
|| (*nip
>> 26) == OP_TRAP
) {
361 rb
= (*nip
>> 11) & 0x1f;
362 printk(KERN_DEBUG
"%s bad port %lx at %p\n",
363 (*nip
& 0x100)? "OUT to": "IN from",
364 regs
->gpr
[rb
] - _IO_BASE
, nip
);
366 regs
->nip
= entry
->fixup
;
370 #endif /* CONFIG_PPC32 */
374 #ifdef CONFIG_PPC_ADV_DEBUG_REGS
375 /* On 4xx, the reason for the machine check or program exception
377 #define get_reason(regs) ((regs)->dsisr)
378 #ifndef CONFIG_FSL_BOOKE
379 #define get_mc_reason(regs) ((regs)->dsisr)
381 #define get_mc_reason(regs) (mfspr(SPRN_MCSR))
383 #define REASON_FP ESR_FP
384 #define REASON_ILLEGAL (ESR_PIL | ESR_PUO)
385 #define REASON_PRIVILEGED ESR_PPR
386 #define REASON_TRAP ESR_PTR
388 /* single-step stuff */
389 #define single_stepping(regs) (current->thread.debug.dbcr0 & DBCR0_IC)
390 #define clear_single_step(regs) (current->thread.debug.dbcr0 &= ~DBCR0_IC)
393 /* On non-4xx, the reason for the machine check or program
394 exception is in the MSR. */
395 #define get_reason(regs) ((regs)->msr)
396 #define get_mc_reason(regs) ((regs)->msr)
397 #define REASON_TM 0x200000
398 #define REASON_FP 0x100000
399 #define REASON_ILLEGAL 0x80000
400 #define REASON_PRIVILEGED 0x40000
401 #define REASON_TRAP 0x20000
403 #define single_stepping(regs) ((regs)->msr & MSR_SE)
404 #define clear_single_step(regs) ((regs)->msr &= ~MSR_SE)
407 #if defined(CONFIG_4xx)
408 int machine_check_4xx(struct pt_regs
*regs
)
410 unsigned long reason
= get_mc_reason(regs
);
412 if (reason
& ESR_IMCP
) {
413 printk("Instruction");
414 mtspr(SPRN_ESR
, reason
& ~ESR_IMCP
);
417 printk(" machine check in kernel mode.\n");
422 int machine_check_440A(struct pt_regs
*regs
)
424 unsigned long reason
= get_mc_reason(regs
);
426 printk("Machine check in kernel mode.\n");
427 if (reason
& ESR_IMCP
){
428 printk("Instruction Synchronous Machine Check exception\n");
429 mtspr(SPRN_ESR
, reason
& ~ESR_IMCP
);
432 u32 mcsr
= mfspr(SPRN_MCSR
);
434 printk("Instruction Read PLB Error\n");
436 printk("Data Read PLB Error\n");
438 printk("Data Write PLB Error\n");
439 if (mcsr
& MCSR_TLBP
)
440 printk("TLB Parity Error\n");
441 if (mcsr
& MCSR_ICP
){
442 flush_instruction_cache();
443 printk("I-Cache Parity Error\n");
445 if (mcsr
& MCSR_DCSP
)
446 printk("D-Cache Search Parity Error\n");
447 if (mcsr
& MCSR_DCFP
)
448 printk("D-Cache Flush Parity Error\n");
449 if (mcsr
& MCSR_IMPE
)
450 printk("Machine Check exception is imprecise\n");
453 mtspr(SPRN_MCSR
, mcsr
);
458 int machine_check_47x(struct pt_regs
*regs
)
460 unsigned long reason
= get_mc_reason(regs
);
463 printk(KERN_ERR
"Machine check in kernel mode.\n");
464 if (reason
& ESR_IMCP
) {
466 "Instruction Synchronous Machine Check exception\n");
467 mtspr(SPRN_ESR
, reason
& ~ESR_IMCP
);
470 mcsr
= mfspr(SPRN_MCSR
);
472 printk(KERN_ERR
"Instruction Read PLB Error\n");
474 printk(KERN_ERR
"Data Read PLB Error\n");
476 printk(KERN_ERR
"Data Write PLB Error\n");
477 if (mcsr
& MCSR_TLBP
)
478 printk(KERN_ERR
"TLB Parity Error\n");
479 if (mcsr
& MCSR_ICP
) {
480 flush_instruction_cache();
481 printk(KERN_ERR
"I-Cache Parity Error\n");
483 if (mcsr
& MCSR_DCSP
)
484 printk(KERN_ERR
"D-Cache Search Parity Error\n");
485 if (mcsr
& PPC47x_MCSR_GPR
)
486 printk(KERN_ERR
"GPR Parity Error\n");
487 if (mcsr
& PPC47x_MCSR_FPR
)
488 printk(KERN_ERR
"FPR Parity Error\n");
489 if (mcsr
& PPC47x_MCSR_IPR
)
490 printk(KERN_ERR
"Machine Check exception is imprecise\n");
493 mtspr(SPRN_MCSR
, mcsr
);
497 #elif defined(CONFIG_E500)
498 int machine_check_e500mc(struct pt_regs
*regs
)
500 unsigned long mcsr
= mfspr(SPRN_MCSR
);
501 unsigned long reason
= mcsr
;
504 if (reason
& MCSR_LD
) {
505 recoverable
= fsl_rio_mcheck_exception(regs
);
506 if (recoverable
== 1)
510 printk("Machine check in kernel mode.\n");
511 printk("Caused by (from MCSR=%lx): ", reason
);
513 if (reason
& MCSR_MCP
)
514 printk("Machine Check Signal\n");
516 if (reason
& MCSR_ICPERR
) {
517 printk("Instruction Cache Parity Error\n");
520 * This is recoverable by invalidating the i-cache.
522 mtspr(SPRN_L1CSR1
, mfspr(SPRN_L1CSR1
) | L1CSR1_ICFI
);
523 while (mfspr(SPRN_L1CSR1
) & L1CSR1_ICFI
)
527 * This will generally be accompanied by an instruction
528 * fetch error report -- only treat MCSR_IF as fatal
529 * if it wasn't due to an L1 parity error.
534 if (reason
& MCSR_DCPERR_MC
) {
535 printk("Data Cache Parity Error\n");
538 * In write shadow mode we auto-recover from the error, but it
539 * may still get logged and cause a machine check. We should
540 * only treat the non-write shadow case as non-recoverable.
542 if (!(mfspr(SPRN_L1CSR2
) & L1CSR2_DCWS
))
546 if (reason
& MCSR_L2MMU_MHIT
) {
547 printk("Hit on multiple TLB entries\n");
551 if (reason
& MCSR_NMI
)
552 printk("Non-maskable interrupt\n");
554 if (reason
& MCSR_IF
) {
555 printk("Instruction Fetch Error Report\n");
559 if (reason
& MCSR_LD
) {
560 printk("Load Error Report\n");
564 if (reason
& MCSR_ST
) {
565 printk("Store Error Report\n");
569 if (reason
& MCSR_LDG
) {
570 printk("Guarded Load Error Report\n");
574 if (reason
& MCSR_TLBSYNC
)
575 printk("Simultaneous tlbsync operations\n");
577 if (reason
& MCSR_BSL2_ERR
) {
578 printk("Level 2 Cache Error\n");
582 if (reason
& MCSR_MAV
) {
585 addr
= mfspr(SPRN_MCAR
);
586 addr
|= (u64
)mfspr(SPRN_MCARU
) << 32;
588 printk("Machine Check %s Address: %#llx\n",
589 reason
& MCSR_MEA
? "Effective" : "Physical", addr
);
593 mtspr(SPRN_MCSR
, mcsr
);
594 return mfspr(SPRN_MCSR
) == 0 && recoverable
;
597 int machine_check_e500(struct pt_regs
*regs
)
599 unsigned long reason
= get_mc_reason(regs
);
601 if (reason
& MCSR_BUS_RBERR
) {
602 if (fsl_rio_mcheck_exception(regs
))
604 if (fsl_pci_mcheck_exception(regs
))
608 printk("Machine check in kernel mode.\n");
609 printk("Caused by (from MCSR=%lx): ", reason
);
611 if (reason
& MCSR_MCP
)
612 printk("Machine Check Signal\n");
613 if (reason
& MCSR_ICPERR
)
614 printk("Instruction Cache Parity Error\n");
615 if (reason
& MCSR_DCP_PERR
)
616 printk("Data Cache Push Parity Error\n");
617 if (reason
& MCSR_DCPERR
)
618 printk("Data Cache Parity Error\n");
619 if (reason
& MCSR_BUS_IAERR
)
620 printk("Bus - Instruction Address Error\n");
621 if (reason
& MCSR_BUS_RAERR
)
622 printk("Bus - Read Address Error\n");
623 if (reason
& MCSR_BUS_WAERR
)
624 printk("Bus - Write Address Error\n");
625 if (reason
& MCSR_BUS_IBERR
)
626 printk("Bus - Instruction Data Error\n");
627 if (reason
& MCSR_BUS_RBERR
)
628 printk("Bus - Read Data Bus Error\n");
629 if (reason
& MCSR_BUS_WBERR
)
630 printk("Bus - Write Data Bus Error\n");
631 if (reason
& MCSR_BUS_IPERR
)
632 printk("Bus - Instruction Parity Error\n");
633 if (reason
& MCSR_BUS_RPERR
)
634 printk("Bus - Read Parity Error\n");
639 int machine_check_generic(struct pt_regs
*regs
)
643 #elif defined(CONFIG_E200)
644 int machine_check_e200(struct pt_regs
*regs
)
646 unsigned long reason
= get_mc_reason(regs
);
648 printk("Machine check in kernel mode.\n");
649 printk("Caused by (from MCSR=%lx): ", reason
);
651 if (reason
& MCSR_MCP
)
652 printk("Machine Check Signal\n");
653 if (reason
& MCSR_CP_PERR
)
654 printk("Cache Push Parity Error\n");
655 if (reason
& MCSR_CPERR
)
656 printk("Cache Parity Error\n");
657 if (reason
& MCSR_EXCP_ERR
)
658 printk("ISI, ITLB, or Bus Error on first instruction fetch for an exception handler\n");
659 if (reason
& MCSR_BUS_IRERR
)
660 printk("Bus - Read Bus Error on instruction fetch\n");
661 if (reason
& MCSR_BUS_DRERR
)
662 printk("Bus - Read Bus Error on data load\n");
663 if (reason
& MCSR_BUS_WRERR
)
664 printk("Bus - Write Bus Error on buffered store or cache line push\n");
668 #elif defined(CONFIG_PPC_8xx)
669 int machine_check_8xx(struct pt_regs
*regs
)
671 unsigned long reason
= get_mc_reason(regs
);
673 pr_err("Machine check in kernel mode.\n");
674 pr_err("Caused by (from SRR1=%lx): ", reason
);
675 if (reason
& 0x40000000)
676 pr_err("Fetch error at address %lx\n", regs
->nip
);
678 pr_err("Data access error at address %lx\n", regs
->dar
);
681 /* the qspan pci read routines can cause machine checks -- Cort
683 * yuck !!! that totally needs to go away ! There are better ways
684 * to deal with that than having a wart in the mcheck handler.
687 bad_page_fault(regs
, regs
->dar
, SIGBUS
);
694 int machine_check_generic(struct pt_regs
*regs
)
696 unsigned long reason
= get_mc_reason(regs
);
698 printk("Machine check in kernel mode.\n");
699 printk("Caused by (from SRR1=%lx): ", reason
);
700 switch (reason
& 0x601F0000) {
702 printk("Machine check signal\n");
704 case 0: /* for 601 */
706 case 0x140000: /* 7450 MSS error and TEA */
707 printk("Transfer error ack signal\n");
710 printk("Data parity error signal\n");
713 printk("Address parity error signal\n");
716 printk("L1 Data Cache error\n");
719 printk("L1 Instruction Cache error\n");
722 printk("L2 data cache parity error\n");
725 printk("Unknown values in msr\n");
729 #endif /* everything else */
731 void machine_check_exception(struct pt_regs
*regs
)
733 enum ctx_state prev_state
= exception_enter();
736 __this_cpu_inc(irq_stat
.mce_exceptions
);
738 add_taint(TAINT_MACHINE_CHECK
, LOCKDEP_NOW_UNRELIABLE
);
740 /* See if any machine dependent calls. In theory, we would want
741 * to call the CPU first, and call the ppc_md. one if the CPU
742 * one returns a positive number. However there is existing code
743 * that assumes the board gets a first chance, so let's keep it
744 * that way for now and fix things later. --BenH.
746 if (ppc_md
.machine_check_exception
)
747 recover
= ppc_md
.machine_check_exception(regs
);
748 else if (cur_cpu_spec
->machine_check
)
749 recover
= cur_cpu_spec
->machine_check(regs
);
754 if (debugger_fault_handler(regs
))
757 if (check_io_access(regs
))
760 die("Machine check", regs
, SIGBUS
);
762 /* Must die if the interrupt is not recoverable */
763 if (!(regs
->msr
& MSR_RI
))
764 panic("Unrecoverable Machine check");
767 exception_exit(prev_state
);
770 void SMIException(struct pt_regs
*regs
)
772 die("System Management Interrupt", regs
, SIGABRT
);
775 void handle_hmi_exception(struct pt_regs
*regs
)
777 struct pt_regs
*old_regs
;
779 old_regs
= set_irq_regs(regs
);
782 if (ppc_md
.handle_hmi_exception
)
783 ppc_md
.handle_hmi_exception(regs
);
786 set_irq_regs(old_regs
);
789 void unknown_exception(struct pt_regs
*regs
)
791 enum ctx_state prev_state
= exception_enter();
793 printk("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
794 regs
->nip
, regs
->msr
, regs
->trap
);
796 _exception(SIGTRAP
, regs
, 0, 0);
798 exception_exit(prev_state
);
801 void instruction_breakpoint_exception(struct pt_regs
*regs
)
803 enum ctx_state prev_state
= exception_enter();
805 if (notify_die(DIE_IABR_MATCH
, "iabr_match", regs
, 5,
806 5, SIGTRAP
) == NOTIFY_STOP
)
808 if (debugger_iabr_match(regs
))
810 _exception(SIGTRAP
, regs
, TRAP_BRKPT
, regs
->nip
);
813 exception_exit(prev_state
);
816 void RunModeException(struct pt_regs
*regs
)
818 _exception(SIGTRAP
, regs
, 0, 0);
821 void single_step_exception(struct pt_regs
*regs
)
823 enum ctx_state prev_state
= exception_enter();
825 clear_single_step(regs
);
827 if (notify_die(DIE_SSTEP
, "single_step", regs
, 5,
828 5, SIGTRAP
) == NOTIFY_STOP
)
830 if (debugger_sstep(regs
))
833 _exception(SIGTRAP
, regs
, TRAP_TRACE
, regs
->nip
);
836 exception_exit(prev_state
);
838 NOKPROBE_SYMBOL(single_step_exception
);
841 * After we have successfully emulated an instruction, we have to
842 * check if the instruction was being single-stepped, and if so,
843 * pretend we got a single-step exception. This was pointed out
844 * by Kumar Gala. -- paulus
846 static void emulate_single_step(struct pt_regs
*regs
)
848 if (single_stepping(regs
))
849 single_step_exception(regs
);
852 static inline int __parse_fpscr(unsigned long fpscr
)
856 /* Invalid operation */
857 if ((fpscr
& FPSCR_VE
) && (fpscr
& FPSCR_VX
))
861 else if ((fpscr
& FPSCR_OE
) && (fpscr
& FPSCR_OX
))
865 else if ((fpscr
& FPSCR_UE
) && (fpscr
& FPSCR_UX
))
869 else if ((fpscr
& FPSCR_ZE
) && (fpscr
& FPSCR_ZX
))
873 else if ((fpscr
& FPSCR_XE
) && (fpscr
& FPSCR_XX
))
879 static void parse_fpe(struct pt_regs
*regs
)
883 flush_fp_to_thread(current
);
885 code
= __parse_fpscr(current
->thread
.fp_state
.fpscr
);
887 _exception(SIGFPE
, regs
, code
, regs
->nip
);
891 * Illegal instruction emulation support. Originally written to
892 * provide the PVR to user applications using the mfspr rd, PVR.
893 * Return non-zero if we can't emulate, or -EFAULT if the associated
894 * memory access caused an access fault. Return zero on success.
896 * There are a couple of ways to do this, either "decode" the instruction
897 * or directly match lots of bits. In this case, matching lots of
898 * bits is faster and easier.
901 static int emulate_string_inst(struct pt_regs
*regs
, u32 instword
)
903 u8 rT
= (instword
>> 21) & 0x1f;
904 u8 rA
= (instword
>> 16) & 0x1f;
905 u8 NB_RB
= (instword
>> 11) & 0x1f;
910 /* Early out if we are an invalid form of lswx */
911 if ((instword
& PPC_INST_STRING_MASK
) == PPC_INST_LSWX
)
912 if ((rT
== rA
) || (rT
== NB_RB
))
915 EA
= (rA
== 0) ? 0 : regs
->gpr
[rA
];
917 switch (instword
& PPC_INST_STRING_MASK
) {
921 num_bytes
= regs
->xer
& 0x7f;
925 num_bytes
= (NB_RB
== 0) ? 32 : NB_RB
;
931 while (num_bytes
!= 0)
934 u32 shift
= 8 * (3 - (pos
& 0x3));
936 /* if process is 32-bit, clear upper 32 bits of EA */
937 if ((regs
->msr
& MSR_64BIT
) == 0)
940 switch ((instword
& PPC_INST_STRING_MASK
)) {
943 if (get_user(val
, (u8 __user
*)EA
))
945 /* first time updating this reg,
949 regs
->gpr
[rT
] |= val
<< shift
;
953 val
= regs
->gpr
[rT
] >> shift
;
954 if (put_user(val
, (u8 __user
*)EA
))
958 /* move EA to next address */
962 /* manage our position within the register */
973 static int emulate_popcntb_inst(struct pt_regs
*regs
, u32 instword
)
978 ra
= (instword
>> 16) & 0x1f;
979 rs
= (instword
>> 21) & 0x1f;
982 tmp
= tmp
- ((tmp
>> 1) & 0x5555555555555555ULL
);
983 tmp
= (tmp
& 0x3333333333333333ULL
) + ((tmp
>> 2) & 0x3333333333333333ULL
);
984 tmp
= (tmp
+ (tmp
>> 4)) & 0x0f0f0f0f0f0f0f0fULL
;
990 static int emulate_isel(struct pt_regs
*regs
, u32 instword
)
992 u8 rT
= (instword
>> 21) & 0x1f;
993 u8 rA
= (instword
>> 16) & 0x1f;
994 u8 rB
= (instword
>> 11) & 0x1f;
995 u8 BC
= (instword
>> 6) & 0x1f;
999 tmp
= (rA
== 0) ? 0 : regs
->gpr
[rA
];
1000 bit
= (regs
->ccr
>> (31 - BC
)) & 0x1;
1002 regs
->gpr
[rT
] = bit
? tmp
: regs
->gpr
[rB
];
1007 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1008 static inline bool tm_abort_check(struct pt_regs
*regs
, int cause
)
1010 /* If we're emulating a load/store in an active transaction, we cannot
1011 * emulate it as the kernel operates in transaction suspended context.
1012 * We need to abort the transaction. This creates a persistent TM
1013 * abort so tell the user what caused it with a new code.
1015 if (MSR_TM_TRANSACTIONAL(regs
->msr
)) {
1023 static inline bool tm_abort_check(struct pt_regs
*regs
, int reason
)
1029 static int emulate_instruction(struct pt_regs
*regs
)
1034 if (!user_mode(regs
))
1036 CHECK_FULL_REGS(regs
);
1038 if (get_user(instword
, (u32 __user
*)(regs
->nip
)))
1041 /* Emulate the mfspr rD, PVR. */
1042 if ((instword
& PPC_INST_MFSPR_PVR_MASK
) == PPC_INST_MFSPR_PVR
) {
1043 PPC_WARN_EMULATED(mfpvr
, regs
);
1044 rd
= (instword
>> 21) & 0x1f;
1045 regs
->gpr
[rd
] = mfspr(SPRN_PVR
);
1049 /* Emulating the dcba insn is just a no-op. */
1050 if ((instword
& PPC_INST_DCBA_MASK
) == PPC_INST_DCBA
) {
1051 PPC_WARN_EMULATED(dcba
, regs
);
1055 /* Emulate the mcrxr insn. */
1056 if ((instword
& PPC_INST_MCRXR_MASK
) == PPC_INST_MCRXR
) {
1057 int shift
= (instword
>> 21) & 0x1c;
1058 unsigned long msk
= 0xf0000000UL
>> shift
;
1060 PPC_WARN_EMULATED(mcrxr
, regs
);
1061 regs
->ccr
= (regs
->ccr
& ~msk
) | ((regs
->xer
>> shift
) & msk
);
1062 regs
->xer
&= ~0xf0000000UL
;
1066 /* Emulate load/store string insn. */
1067 if ((instword
& PPC_INST_STRING_GEN_MASK
) == PPC_INST_STRING
) {
1068 if (tm_abort_check(regs
,
1069 TM_CAUSE_EMULATE
| TM_CAUSE_PERSISTENT
))
1071 PPC_WARN_EMULATED(string
, regs
);
1072 return emulate_string_inst(regs
, instword
);
1075 /* Emulate the popcntb (Population Count Bytes) instruction. */
1076 if ((instword
& PPC_INST_POPCNTB_MASK
) == PPC_INST_POPCNTB
) {
1077 PPC_WARN_EMULATED(popcntb
, regs
);
1078 return emulate_popcntb_inst(regs
, instword
);
1081 /* Emulate isel (Integer Select) instruction */
1082 if ((instword
& PPC_INST_ISEL_MASK
) == PPC_INST_ISEL
) {
1083 PPC_WARN_EMULATED(isel
, regs
);
1084 return emulate_isel(regs
, instword
);
1087 /* Emulate sync instruction variants */
1088 if ((instword
& PPC_INST_SYNC_MASK
) == PPC_INST_SYNC
) {
1089 PPC_WARN_EMULATED(sync
, regs
);
1090 asm volatile("sync");
1095 /* Emulate the mfspr rD, DSCR. */
1096 if ((((instword
& PPC_INST_MFSPR_DSCR_USER_MASK
) ==
1097 PPC_INST_MFSPR_DSCR_USER
) ||
1098 ((instword
& PPC_INST_MFSPR_DSCR_MASK
) ==
1099 PPC_INST_MFSPR_DSCR
)) &&
1100 cpu_has_feature(CPU_FTR_DSCR
)) {
1101 PPC_WARN_EMULATED(mfdscr
, regs
);
1102 rd
= (instword
>> 21) & 0x1f;
1103 regs
->gpr
[rd
] = mfspr(SPRN_DSCR
);
1106 /* Emulate the mtspr DSCR, rD. */
1107 if ((((instword
& PPC_INST_MTSPR_DSCR_USER_MASK
) ==
1108 PPC_INST_MTSPR_DSCR_USER
) ||
1109 ((instword
& PPC_INST_MTSPR_DSCR_MASK
) ==
1110 PPC_INST_MTSPR_DSCR
)) &&
1111 cpu_has_feature(CPU_FTR_DSCR
)) {
1112 PPC_WARN_EMULATED(mtdscr
, regs
);
1113 rd
= (instword
>> 21) & 0x1f;
1114 current
->thread
.dscr
= regs
->gpr
[rd
];
1115 current
->thread
.dscr_inherit
= 1;
1116 mtspr(SPRN_DSCR
, current
->thread
.dscr
);
1124 int is_valid_bugaddr(unsigned long addr
)
1126 return is_kernel_addr(addr
);
1129 #ifdef CONFIG_MATH_EMULATION
1130 static int emulate_math(struct pt_regs
*regs
)
1133 extern int do_mathemu(struct pt_regs
*regs
);
1135 ret
= do_mathemu(regs
);
1137 PPC_WARN_EMULATED(math
, regs
);
1141 emulate_single_step(regs
);
1145 code
= __parse_fpscr(current
->thread
.fp_state
.fpscr
);
1146 _exception(SIGFPE
, regs
, code
, regs
->nip
);
1150 _exception(SIGSEGV
, regs
, SEGV_MAPERR
, regs
->nip
);
1157 static inline int emulate_math(struct pt_regs
*regs
) { return -1; }
1160 void program_check_exception(struct pt_regs
*regs
)
1162 enum ctx_state prev_state
= exception_enter();
1163 unsigned int reason
= get_reason(regs
);
1165 /* We can now get here via a FP Unavailable exception if the core
1166 * has no FPU, in that case the reason flags will be 0 */
1168 if (reason
& REASON_FP
) {
1169 /* IEEE FP exception */
1173 if (reason
& REASON_TRAP
) {
1174 unsigned long bugaddr
;
1175 /* Debugger is first in line to stop recursive faults in
1176 * rcu_lock, notify_die, or atomic_notifier_call_chain */
1177 if (debugger_bpt(regs
))
1180 /* trap exception */
1181 if (notify_die(DIE_BPT
, "breakpoint", regs
, 5, 5, SIGTRAP
)
1185 bugaddr
= regs
->nip
;
1187 * Fixup bugaddr for BUG_ON() in real mode
1189 if (!is_kernel_addr(bugaddr
) && !(regs
->msr
& MSR_IR
))
1190 bugaddr
+= PAGE_OFFSET
;
1192 if (!(regs
->msr
& MSR_PR
) && /* not user-mode */
1193 report_bug(bugaddr
, regs
) == BUG_TRAP_TYPE_WARN
) {
1197 _exception(SIGTRAP
, regs
, TRAP_BRKPT
, regs
->nip
);
1200 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1201 if (reason
& REASON_TM
) {
1202 /* This is a TM "Bad Thing Exception" program check.
1204 * - An rfid/hrfid/mtmsrd attempts to cause an illegal
1205 * transition in TM states.
1206 * - A trechkpt is attempted when transactional.
1207 * - A treclaim is attempted when non transactional.
1208 * - A tend is illegally attempted.
1209 * - writing a TM SPR when transactional.
1211 if (!user_mode(regs
) &&
1212 report_bug(regs
->nip
, regs
) == BUG_TRAP_TYPE_WARN
) {
1216 /* If usermode caused this, it's done something illegal and
1217 * gets a SIGILL slap on the wrist. We call it an illegal
1218 * operand to distinguish from the instruction just being bad
1219 * (e.g. executing a 'tend' on a CPU without TM!); it's an
1220 * illegal /placement/ of a valid instruction.
1222 if (user_mode(regs
)) {
1223 _exception(SIGILL
, regs
, ILL_ILLOPN
, regs
->nip
);
1226 printk(KERN_EMERG
"Unexpected TM Bad Thing exception "
1227 "at %lx (msr 0x%x)\n", regs
->nip
, reason
);
1228 die("Unrecoverable exception", regs
, SIGABRT
);
1234 * If we took the program check in the kernel skip down to sending a
1235 * SIGILL. The subsequent cases all relate to emulating instructions
1236 * which we should only do for userspace. We also do not want to enable
1237 * interrupts for kernel faults because that might lead to further
1238 * faults, and loose the context of the original exception.
1240 if (!user_mode(regs
))
1243 /* We restore the interrupt state now */
1244 if (!arch_irq_disabled_regs(regs
))
1247 /* (reason & REASON_ILLEGAL) would be the obvious thing here,
1248 * but there seems to be a hardware bug on the 405GP (RevD)
1249 * that means ESR is sometimes set incorrectly - either to
1250 * ESR_DST (!?) or 0. In the process of chasing this with the
1251 * hardware people - not sure if it can happen on any illegal
1252 * instruction or only on FP instructions, whether there is a
1253 * pattern to occurrences etc. -dgibson 31/Mar/2003
1255 if (!emulate_math(regs
))
1258 /* Try to emulate it if we should. */
1259 if (reason
& (REASON_ILLEGAL
| REASON_PRIVILEGED
)) {
1260 switch (emulate_instruction(regs
)) {
1263 emulate_single_step(regs
);
1266 _exception(SIGSEGV
, regs
, SEGV_MAPERR
, regs
->nip
);
1272 if (reason
& REASON_PRIVILEGED
)
1273 _exception(SIGILL
, regs
, ILL_PRVOPC
, regs
->nip
);
1275 _exception(SIGILL
, regs
, ILL_ILLOPC
, regs
->nip
);
1278 exception_exit(prev_state
);
1280 NOKPROBE_SYMBOL(program_check_exception
);
1283 * This occurs when running in hypervisor mode on POWER6 or later
1284 * and an illegal instruction is encountered.
1286 void emulation_assist_interrupt(struct pt_regs
*regs
)
1288 regs
->msr
|= REASON_ILLEGAL
;
1289 program_check_exception(regs
);
1291 NOKPROBE_SYMBOL(emulation_assist_interrupt
);
1293 void alignment_exception(struct pt_regs
*regs
)
1295 enum ctx_state prev_state
= exception_enter();
1296 int sig
, code
, fixed
= 0;
1298 /* We restore the interrupt state now */
1299 if (!arch_irq_disabled_regs(regs
))
1302 if (tm_abort_check(regs
, TM_CAUSE_ALIGNMENT
| TM_CAUSE_PERSISTENT
))
1305 /* we don't implement logging of alignment exceptions */
1306 if (!(current
->thread
.align_ctl
& PR_UNALIGN_SIGBUS
))
1307 fixed
= fix_alignment(regs
);
1310 regs
->nip
+= 4; /* skip over emulated instruction */
1311 emulate_single_step(regs
);
1315 /* Operand address was bad */
1316 if (fixed
== -EFAULT
) {
1323 if (user_mode(regs
))
1324 _exception(sig
, regs
, code
, regs
->dar
);
1326 bad_page_fault(regs
, regs
->dar
, sig
);
1329 exception_exit(prev_state
);
1332 void slb_miss_bad_addr(struct pt_regs
*regs
)
1334 enum ctx_state prev_state
= exception_enter();
1336 if (user_mode(regs
))
1337 _exception(SIGSEGV
, regs
, SEGV_BNDERR
, regs
->dar
);
1339 bad_page_fault(regs
, regs
->dar
, SIGSEGV
);
1341 exception_exit(prev_state
);
1344 void StackOverflow(struct pt_regs
*regs
)
1346 printk(KERN_CRIT
"Kernel stack overflow in process %p, r1=%lx\n",
1347 current
, regs
->gpr
[1]);
1350 panic("kernel stack overflow");
1353 void nonrecoverable_exception(struct pt_regs
*regs
)
1355 printk(KERN_ERR
"Non-recoverable exception at PC=%lx MSR=%lx\n",
1356 regs
->nip
, regs
->msr
);
1358 die("nonrecoverable exception", regs
, SIGKILL
);
1361 void kernel_fp_unavailable_exception(struct pt_regs
*regs
)
1363 enum ctx_state prev_state
= exception_enter();
1365 printk(KERN_EMERG
"Unrecoverable FP Unavailable Exception "
1366 "%lx at %lx\n", regs
->trap
, regs
->nip
);
1367 die("Unrecoverable FP Unavailable Exception", regs
, SIGABRT
);
1369 exception_exit(prev_state
);
1372 void altivec_unavailable_exception(struct pt_regs
*regs
)
1374 enum ctx_state prev_state
= exception_enter();
1376 if (user_mode(regs
)) {
1377 /* A user program has executed an altivec instruction,
1378 but this kernel doesn't support altivec. */
1379 _exception(SIGILL
, regs
, ILL_ILLOPC
, regs
->nip
);
1383 printk(KERN_EMERG
"Unrecoverable VMX/Altivec Unavailable Exception "
1384 "%lx at %lx\n", regs
->trap
, regs
->nip
);
1385 die("Unrecoverable VMX/Altivec Unavailable Exception", regs
, SIGABRT
);
1388 exception_exit(prev_state
);
1391 void vsx_unavailable_exception(struct pt_regs
*regs
)
1393 if (user_mode(regs
)) {
1394 /* A user program has executed an vsx instruction,
1395 but this kernel doesn't support vsx. */
1396 _exception(SIGILL
, regs
, ILL_ILLOPC
, regs
->nip
);
1400 printk(KERN_EMERG
"Unrecoverable VSX Unavailable Exception "
1401 "%lx at %lx\n", regs
->trap
, regs
->nip
);
1402 die("Unrecoverable VSX Unavailable Exception", regs
, SIGABRT
);
1406 static void tm_unavailable(struct pt_regs
*regs
)
1408 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1409 if (user_mode(regs
)) {
1410 current
->thread
.load_tm
++;
1411 regs
->msr
|= MSR_TM
;
1413 tm_restore_sprs(¤t
->thread
);
1417 pr_emerg("Unrecoverable TM Unavailable Exception "
1418 "%lx at %lx\n", regs
->trap
, regs
->nip
);
1419 die("Unrecoverable TM Unavailable Exception", regs
, SIGABRT
);
1422 void facility_unavailable_exception(struct pt_regs
*regs
)
1424 static char *facility_strings
[] = {
1425 [FSCR_FP_LG
] = "FPU",
1426 [FSCR_VECVSX_LG
] = "VMX/VSX",
1427 [FSCR_DSCR_LG
] = "DSCR",
1428 [FSCR_PM_LG
] = "PMU SPRs",
1429 [FSCR_BHRB_LG
] = "BHRB",
1430 [FSCR_TM_LG
] = "TM",
1431 [FSCR_EBB_LG
] = "EBB",
1432 [FSCR_TAR_LG
] = "TAR",
1433 [FSCR_LM_LG
] = "LM",
1435 char *facility
= "unknown";
1441 hv
= (regs
->trap
== 0xf80);
1443 value
= mfspr(SPRN_HFSCR
);
1445 value
= mfspr(SPRN_FSCR
);
1447 status
= value
>> 56;
1448 if (status
== FSCR_DSCR_LG
) {
1450 * User is accessing the DSCR register using the problem
1451 * state only SPR number (0x03) either through a mfspr or
1452 * a mtspr instruction. If it is a write attempt through
1453 * a mtspr, then we set the inherit bit. This also allows
1454 * the user to write or read the register directly in the
1455 * future by setting via the FSCR DSCR bit. But in case it
1456 * is a read DSCR attempt through a mfspr instruction, we
1457 * just emulate the instruction instead. This code path will
1458 * always emulate all the mfspr instructions till the user
1459 * has attempted at least one mtspr instruction. This way it
1460 * preserves the same behaviour when the user is accessing
1461 * the DSCR through privilege level only SPR number (0x11)
1462 * which is emulated through illegal instruction exception.
1463 * We always leave HFSCR DSCR set.
1465 if (get_user(instword
, (u32 __user
*)(regs
->nip
))) {
1466 pr_err("Failed to fetch the user instruction\n");
1470 /* Write into DSCR (mtspr 0x03, RS) */
1471 if ((instword
& PPC_INST_MTSPR_DSCR_USER_MASK
)
1472 == PPC_INST_MTSPR_DSCR_USER
) {
1473 rd
= (instword
>> 21) & 0x1f;
1474 current
->thread
.dscr
= regs
->gpr
[rd
];
1475 current
->thread
.dscr_inherit
= 1;
1476 current
->thread
.fscr
|= FSCR_DSCR
;
1477 mtspr(SPRN_FSCR
, current
->thread
.fscr
);
1480 /* Read from DSCR (mfspr RT, 0x03) */
1481 if ((instword
& PPC_INST_MFSPR_DSCR_USER_MASK
)
1482 == PPC_INST_MFSPR_DSCR_USER
) {
1483 if (emulate_instruction(regs
)) {
1484 pr_err("DSCR based mfspr emulation failed\n");
1488 emulate_single_step(regs
);
1491 } else if ((status
== FSCR_LM_LG
) && cpu_has_feature(CPU_FTR_ARCH_300
)) {
1493 * This process has touched LM, so turn it on forever
1496 current
->thread
.fscr
|= FSCR_LM
;
1497 mtspr(SPRN_FSCR
, current
->thread
.fscr
);
1501 if (status
== FSCR_TM_LG
) {
1503 * If we're here then the hardware is TM aware because it
1504 * generated an exception with FSRM_TM set.
1506 * If cpu_has_feature(CPU_FTR_TM) is false, then either firmware
1507 * told us not to do TM, or the kernel is not built with TM
1510 * If both of those things are true, then userspace can spam the
1511 * console by triggering the printk() below just by continually
1512 * doing tbegin (or any TM instruction). So in that case just
1513 * send the process a SIGILL immediately.
1515 if (!cpu_has_feature(CPU_FTR_TM
))
1518 tm_unavailable(regs
);
1522 if ((status
< ARRAY_SIZE(facility_strings
)) &&
1523 facility_strings
[status
])
1524 facility
= facility_strings
[status
];
1526 /* We restore the interrupt state now */
1527 if (!arch_irq_disabled_regs(regs
))
1531 "%sFacility '%s' unavailable, exception at 0x%lx, MSR=%lx\n",
1532 hv
? "Hypervisor " : "", facility
, regs
->nip
, regs
->msr
);
1535 if (user_mode(regs
)) {
1536 _exception(SIGILL
, regs
, ILL_ILLOPC
, regs
->nip
);
1540 die("Unexpected facility unavailable exception", regs
, SIGABRT
);
1544 #ifdef CONFIG_PPC_TRANSACTIONAL_MEM
1546 void fp_unavailable_tm(struct pt_regs
*regs
)
1548 /* Note: This does not handle any kind of FP laziness. */
1550 TM_DEBUG("FP Unavailable trap whilst transactional at 0x%lx, MSR=%lx\n",
1551 regs
->nip
, regs
->msr
);
1553 /* We can only have got here if the task started using FP after
1554 * beginning the transaction. So, the transactional regs are just a
1555 * copy of the checkpointed ones. But, we still need to recheckpoint
1556 * as we're enabling FP for the process; it will return, abort the
1557 * transaction, and probably retry but now with FP enabled. So the
1558 * checkpointed FP registers need to be loaded.
1560 tm_reclaim_current(TM_CAUSE_FAC_UNAV
);
1561 /* Reclaim didn't save out any FPRs to transact_fprs. */
1563 /* Enable FP for the task: */
1564 regs
->msr
|= (MSR_FP
| current
->thread
.fpexc_mode
);
1566 /* This loads and recheckpoints the FP registers from
1567 * thread.fpr[]. They will remain in registers after the
1568 * checkpoint so we don't need to reload them after.
1569 * If VMX is in use, the VRs now hold checkpointed values,
1570 * so we don't want to load the VRs from the thread_struct.
1572 tm_recheckpoint(¤t
->thread
, MSR_FP
);
1574 /* If VMX is in use, get the transactional values back */
1575 if (regs
->msr
& MSR_VEC
) {
1576 msr_check_and_set(MSR_VEC
);
1577 load_vr_state(¤t
->thread
.vr_state
);
1578 /* At this point all the VSX state is loaded, so enable it */
1579 regs
->msr
|= MSR_VSX
;
1583 void altivec_unavailable_tm(struct pt_regs
*regs
)
1585 /* See the comments in fp_unavailable_tm(). This function operates
1589 TM_DEBUG("Vector Unavailable trap whilst transactional at 0x%lx,"
1591 regs
->nip
, regs
->msr
);
1592 tm_reclaim_current(TM_CAUSE_FAC_UNAV
);
1593 regs
->msr
|= MSR_VEC
;
1594 tm_recheckpoint(¤t
->thread
, MSR_VEC
);
1595 current
->thread
.used_vr
= 1;
1597 if (regs
->msr
& MSR_FP
) {
1598 msr_check_and_set(MSR_FP
);
1599 load_fp_state(¤t
->thread
.fp_state
);
1600 regs
->msr
|= MSR_VSX
;
1604 void vsx_unavailable_tm(struct pt_regs
*regs
)
1606 unsigned long orig_msr
= regs
->msr
;
1608 /* See the comments in fp_unavailable_tm(). This works similarly,
1609 * though we're loading both FP and VEC registers in here.
1611 * If FP isn't in use, load FP regs. If VEC isn't in use, load VEC
1612 * regs. Either way, set MSR_VSX.
1615 TM_DEBUG("VSX Unavailable trap whilst transactional at 0x%lx,"
1617 regs
->nip
, regs
->msr
);
1619 current
->thread
.used_vsr
= 1;
1621 /* If FP and VMX are already loaded, we have all the state we need */
1622 if ((orig_msr
& (MSR_FP
| MSR_VEC
)) == (MSR_FP
| MSR_VEC
)) {
1623 regs
->msr
|= MSR_VSX
;
1627 /* This reclaims FP and/or VR regs if they're already enabled */
1628 tm_reclaim_current(TM_CAUSE_FAC_UNAV
);
1630 regs
->msr
|= MSR_VEC
| MSR_FP
| current
->thread
.fpexc_mode
|
1633 /* This loads & recheckpoints FP and VRs; but we have
1634 * to be sure not to overwrite previously-valid state.
1636 tm_recheckpoint(¤t
->thread
, regs
->msr
& ~orig_msr
);
1638 msr_check_and_set(orig_msr
& (MSR_FP
| MSR_VEC
));
1640 if (orig_msr
& MSR_FP
)
1641 load_fp_state(¤t
->thread
.fp_state
);
1642 if (orig_msr
& MSR_VEC
)
1643 load_vr_state(¤t
->thread
.vr_state
);
1645 #endif /* CONFIG_PPC_TRANSACTIONAL_MEM */
1647 void performance_monitor_exception(struct pt_regs
*regs
)
1649 __this_cpu_inc(irq_stat
.pmu_irqs
);
1655 void SoftwareEmulation(struct pt_regs
*regs
)
1657 CHECK_FULL_REGS(regs
);
1659 if (!user_mode(regs
)) {
1661 die("Kernel Mode Unimplemented Instruction or SW FPU Emulation",
1665 if (!emulate_math(regs
))
1668 _exception(SIGILL
, regs
, ILL_ILLOPC
, regs
->nip
);
1670 #endif /* CONFIG_8xx */
1672 #ifdef CONFIG_PPC_ADV_DEBUG_REGS
1673 static void handle_debug(struct pt_regs
*regs
, unsigned long debug_status
)
1677 * Determine the cause of the debug event, clear the
1678 * event flags and send a trap to the handler. Torez
1680 if (debug_status
& (DBSR_DAC1R
| DBSR_DAC1W
)) {
1681 dbcr_dac(current
) &= ~(DBCR_DAC1R
| DBCR_DAC1W
);
1682 #ifdef CONFIG_PPC_ADV_DEBUG_DAC_RANGE
1683 current
->thread
.debug
.dbcr2
&= ~DBCR2_DAC12MODE
;
1685 do_send_trap(regs
, mfspr(SPRN_DAC1
), debug_status
, TRAP_HWBKPT
,
1688 } else if (debug_status
& (DBSR_DAC2R
| DBSR_DAC2W
)) {
1689 dbcr_dac(current
) &= ~(DBCR_DAC2R
| DBCR_DAC2W
);
1690 do_send_trap(regs
, mfspr(SPRN_DAC2
), debug_status
, TRAP_HWBKPT
,
1693 } else if (debug_status
& DBSR_IAC1
) {
1694 current
->thread
.debug
.dbcr0
&= ~DBCR0_IAC1
;
1695 dbcr_iac_range(current
) &= ~DBCR_IAC12MODE
;
1696 do_send_trap(regs
, mfspr(SPRN_IAC1
), debug_status
, TRAP_HWBKPT
,
1699 } else if (debug_status
& DBSR_IAC2
) {
1700 current
->thread
.debug
.dbcr0
&= ~DBCR0_IAC2
;
1701 do_send_trap(regs
, mfspr(SPRN_IAC2
), debug_status
, TRAP_HWBKPT
,
1704 } else if (debug_status
& DBSR_IAC3
) {
1705 current
->thread
.debug
.dbcr0
&= ~DBCR0_IAC3
;
1706 dbcr_iac_range(current
) &= ~DBCR_IAC34MODE
;
1707 do_send_trap(regs
, mfspr(SPRN_IAC3
), debug_status
, TRAP_HWBKPT
,
1710 } else if (debug_status
& DBSR_IAC4
) {
1711 current
->thread
.debug
.dbcr0
&= ~DBCR0_IAC4
;
1712 do_send_trap(regs
, mfspr(SPRN_IAC4
), debug_status
, TRAP_HWBKPT
,
1717 * At the point this routine was called, the MSR(DE) was turned off.
1718 * Check all other debug flags and see if that bit needs to be turned
1721 if (DBCR_ACTIVE_EVENTS(current
->thread
.debug
.dbcr0
,
1722 current
->thread
.debug
.dbcr1
))
1723 regs
->msr
|= MSR_DE
;
1725 /* Make sure the IDM flag is off */
1726 current
->thread
.debug
.dbcr0
&= ~DBCR0_IDM
;
1729 mtspr(SPRN_DBCR0
, current
->thread
.debug
.dbcr0
);
1732 void DebugException(struct pt_regs
*regs
, unsigned long debug_status
)
1734 current
->thread
.debug
.dbsr
= debug_status
;
1736 /* Hack alert: On BookE, Branch Taken stops on the branch itself, while
1737 * on server, it stops on the target of the branch. In order to simulate
1738 * the server behaviour, we thus restart right away with a single step
1739 * instead of stopping here when hitting a BT
1741 if (debug_status
& DBSR_BT
) {
1742 regs
->msr
&= ~MSR_DE
;
1745 mtspr(SPRN_DBCR0
, mfspr(SPRN_DBCR0
) & ~DBCR0_BT
);
1746 /* Clear the BT event */
1747 mtspr(SPRN_DBSR
, DBSR_BT
);
1749 /* Do the single step trick only when coming from userspace */
1750 if (user_mode(regs
)) {
1751 current
->thread
.debug
.dbcr0
&= ~DBCR0_BT
;
1752 current
->thread
.debug
.dbcr0
|= DBCR0_IDM
| DBCR0_IC
;
1753 regs
->msr
|= MSR_DE
;
1757 if (notify_die(DIE_SSTEP
, "block_step", regs
, 5,
1758 5, SIGTRAP
) == NOTIFY_STOP
) {
1761 if (debugger_sstep(regs
))
1763 } else if (debug_status
& DBSR_IC
) { /* Instruction complete */
1764 regs
->msr
&= ~MSR_DE
;
1766 /* Disable instruction completion */
1767 mtspr(SPRN_DBCR0
, mfspr(SPRN_DBCR0
) & ~DBCR0_IC
);
1768 /* Clear the instruction completion event */
1769 mtspr(SPRN_DBSR
, DBSR_IC
);
1771 if (notify_die(DIE_SSTEP
, "single_step", regs
, 5,
1772 5, SIGTRAP
) == NOTIFY_STOP
) {
1776 if (debugger_sstep(regs
))
1779 if (user_mode(regs
)) {
1780 current
->thread
.debug
.dbcr0
&= ~DBCR0_IC
;
1781 if (DBCR_ACTIVE_EVENTS(current
->thread
.debug
.dbcr0
,
1782 current
->thread
.debug
.dbcr1
))
1783 regs
->msr
|= MSR_DE
;
1785 /* Make sure the IDM bit is off */
1786 current
->thread
.debug
.dbcr0
&= ~DBCR0_IDM
;
1789 _exception(SIGTRAP
, regs
, TRAP_TRACE
, regs
->nip
);
1791 handle_debug(regs
, debug_status
);
1793 NOKPROBE_SYMBOL(DebugException
);
1794 #endif /* CONFIG_PPC_ADV_DEBUG_REGS */
1796 #if !defined(CONFIG_TAU_INT)
1797 void TAUException(struct pt_regs
*regs
)
1799 printk("TAU trap at PC: %lx, MSR: %lx, vector=%lx %s\n",
1800 regs
->nip
, regs
->msr
, regs
->trap
, print_tainted());
1802 #endif /* CONFIG_INT_TAU */
1804 #ifdef CONFIG_ALTIVEC
1805 void altivec_assist_exception(struct pt_regs
*regs
)
1809 if (!user_mode(regs
)) {
1810 printk(KERN_EMERG
"VMX/Altivec assist exception in kernel mode"
1811 " at %lx\n", regs
->nip
);
1812 die("Kernel VMX/Altivec assist exception", regs
, SIGILL
);
1815 flush_altivec_to_thread(current
);
1817 PPC_WARN_EMULATED(altivec
, regs
);
1818 err
= emulate_altivec(regs
);
1820 regs
->nip
+= 4; /* skip emulated instruction */
1821 emulate_single_step(regs
);
1825 if (err
== -EFAULT
) {
1826 /* got an error reading the instruction */
1827 _exception(SIGSEGV
, regs
, SEGV_ACCERR
, regs
->nip
);
1829 /* didn't recognize the instruction */
1830 /* XXX quick hack for now: set the non-Java bit in the VSCR */
1831 printk_ratelimited(KERN_ERR
"Unrecognized altivec instruction "
1832 "in %s at %lx\n", current
->comm
, regs
->nip
);
1833 current
->thread
.vr_state
.vscr
.u
[3] |= 0x10000;
1836 #endif /* CONFIG_ALTIVEC */
1838 #ifdef CONFIG_FSL_BOOKE
1839 void CacheLockingException(struct pt_regs
*regs
, unsigned long address
,
1840 unsigned long error_code
)
1842 /* We treat cache locking instructions from the user
1843 * as priv ops, in the future we could try to do
1846 if (error_code
& (ESR_DLK
|ESR_ILK
))
1847 _exception(SIGILL
, regs
, ILL_PRVOPC
, regs
->nip
);
1850 #endif /* CONFIG_FSL_BOOKE */
1853 void SPEFloatingPointException(struct pt_regs
*regs
)
1855 extern int do_spe_mathemu(struct pt_regs
*regs
);
1856 unsigned long spefscr
;
1861 flush_spe_to_thread(current
);
1863 spefscr
= current
->thread
.spefscr
;
1864 fpexc_mode
= current
->thread
.fpexc_mode
;
1866 if ((spefscr
& SPEFSCR_FOVF
) && (fpexc_mode
& PR_FP_EXC_OVF
)) {
1869 else if ((spefscr
& SPEFSCR_FUNF
) && (fpexc_mode
& PR_FP_EXC_UND
)) {
1872 else if ((spefscr
& SPEFSCR_FDBZ
) && (fpexc_mode
& PR_FP_EXC_DIV
))
1874 else if ((spefscr
& SPEFSCR_FINV
) && (fpexc_mode
& PR_FP_EXC_INV
)) {
1877 else if ((spefscr
& (SPEFSCR_FG
| SPEFSCR_FX
)) && (fpexc_mode
& PR_FP_EXC_RES
))
1880 err
= do_spe_mathemu(regs
);
1882 regs
->nip
+= 4; /* skip emulated instruction */
1883 emulate_single_step(regs
);
1887 if (err
== -EFAULT
) {
1888 /* got an error reading the instruction */
1889 _exception(SIGSEGV
, regs
, SEGV_ACCERR
, regs
->nip
);
1890 } else if (err
== -EINVAL
) {
1891 /* didn't recognize the instruction */
1892 printk(KERN_ERR
"unrecognized spe instruction "
1893 "in %s at %lx\n", current
->comm
, regs
->nip
);
1895 _exception(SIGFPE
, regs
, code
, regs
->nip
);
1901 void SPEFloatingPointRoundException(struct pt_regs
*regs
)
1903 extern int speround_handler(struct pt_regs
*regs
);
1907 if (regs
->msr
& MSR_SPE
)
1908 giveup_spe(current
);
1912 err
= speround_handler(regs
);
1914 regs
->nip
+= 4; /* skip emulated instruction */
1915 emulate_single_step(regs
);
1919 if (err
== -EFAULT
) {
1920 /* got an error reading the instruction */
1921 _exception(SIGSEGV
, regs
, SEGV_ACCERR
, regs
->nip
);
1922 } else if (err
== -EINVAL
) {
1923 /* didn't recognize the instruction */
1924 printk(KERN_ERR
"unrecognized spe instruction "
1925 "in %s at %lx\n", current
->comm
, regs
->nip
);
1927 _exception(SIGFPE
, regs
, 0, regs
->nip
);
1934 * We enter here if we get an unrecoverable exception, that is, one
1935 * that happened at a point where the RI (recoverable interrupt) bit
1936 * in the MSR is 0. This indicates that SRR0/1 are live, and that
1937 * we therefore lost state by taking this exception.
1939 void unrecoverable_exception(struct pt_regs
*regs
)
1941 printk(KERN_EMERG
"Unrecoverable exception %lx at %lx\n",
1942 regs
->trap
, regs
->nip
);
1943 die("Unrecoverable exception", regs
, SIGABRT
);
1946 #if defined(CONFIG_BOOKE_WDT) || defined(CONFIG_40x)
1948 * Default handler for a Watchdog exception,
1949 * spins until a reboot occurs
1951 void __attribute__ ((weak
)) WatchdogHandler(struct pt_regs
*regs
)
1953 /* Generic WatchdogHandler, implement your own */
1954 mtspr(SPRN_TCR
, mfspr(SPRN_TCR
)&(~TCR_WIE
));
1958 void WatchdogException(struct pt_regs
*regs
)
1960 printk (KERN_EMERG
"PowerPC Book-E Watchdog Exception\n");
1961 WatchdogHandler(regs
);
1966 * We enter here if we discover during exception entry that we are
1967 * running in supervisor mode with a userspace value in the stack pointer.
1969 void kernel_bad_stack(struct pt_regs
*regs
)
1971 printk(KERN_EMERG
"Bad kernel stack pointer %lx at %lx\n",
1972 regs
->gpr
[1], regs
->nip
);
1973 die("Bad kernel stack pointer", regs
, SIGABRT
);
1976 void __init
trap_init(void)
1981 #ifdef CONFIG_PPC_EMULATED_STATS
1983 #define WARN_EMULATED_SETUP(type) .type = { .name = #type }
1985 struct ppc_emulated ppc_emulated
= {
1986 #ifdef CONFIG_ALTIVEC
1987 WARN_EMULATED_SETUP(altivec
),
1989 WARN_EMULATED_SETUP(dcba
),
1990 WARN_EMULATED_SETUP(dcbz
),
1991 WARN_EMULATED_SETUP(fp_pair
),
1992 WARN_EMULATED_SETUP(isel
),
1993 WARN_EMULATED_SETUP(mcrxr
),
1994 WARN_EMULATED_SETUP(mfpvr
),
1995 WARN_EMULATED_SETUP(multiple
),
1996 WARN_EMULATED_SETUP(popcntb
),
1997 WARN_EMULATED_SETUP(spe
),
1998 WARN_EMULATED_SETUP(string
),
1999 WARN_EMULATED_SETUP(sync
),
2000 WARN_EMULATED_SETUP(unaligned
),
2001 #ifdef CONFIG_MATH_EMULATION
2002 WARN_EMULATED_SETUP(math
),
2005 WARN_EMULATED_SETUP(vsx
),
2008 WARN_EMULATED_SETUP(mfdscr
),
2009 WARN_EMULATED_SETUP(mtdscr
),
2010 WARN_EMULATED_SETUP(lq_stq
),
2014 u32 ppc_warn_emulated
;
2016 void ppc_warn_emulated_print(const char *type
)
2018 pr_warn_ratelimited("%s used emulated %s instruction\n", current
->comm
,
2022 static int __init
ppc_warn_emulated_init(void)
2024 struct dentry
*dir
, *d
;
2026 struct ppc_emulated_entry
*entries
= (void *)&ppc_emulated
;
2028 if (!powerpc_debugfs_root
)
2031 dir
= debugfs_create_dir("emulated_instructions",
2032 powerpc_debugfs_root
);
2036 d
= debugfs_create_u32("do_warn", S_IRUGO
| S_IWUSR
, dir
,
2037 &ppc_warn_emulated
);
2041 for (i
= 0; i
< sizeof(ppc_emulated
)/sizeof(*entries
); i
++) {
2042 d
= debugfs_create_u32(entries
[i
].name
, S_IRUGO
| S_IWUSR
, dir
,
2043 (u32
*)&entries
[i
].val
.counter
);
2051 debugfs_remove_recursive(dir
);
2055 device_initcall(ppc_warn_emulated_init
);
2057 #endif /* CONFIG_PPC_EMULATED_STATS */