blob: 970d66ec46579202db8e8219d7d708fa9edd657b [file] [log] [blame]
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001/*
Paul Mackerras14cf11a2005-09-26 16:04:21 +10002 * Copyright (C) 1995-1996 Gary Thomas (gdt@linuxppc.org)
3 *
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.
8 *
9 * Modified by Cort Dougan (cort@cs.nmt.edu)
10 * and Paul Mackerras (paulus@samba.org)
11 */
12
13/*
14 * This file handles the architecture-dependent parts of hardware exceptions
15 */
16
Paul Mackerras14cf11a2005-09-26 16:04:21 +100017#include <linux/errno.h>
18#include <linux/sched.h>
19#include <linux/kernel.h>
20#include <linux/mm.h>
21#include <linux/stddef.h>
22#include <linux/unistd.h>
Paul Mackerras8dad3f92005-10-06 13:27:05 +100023#include <linux/ptrace.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100024#include <linux/slab.h>
25#include <linux/user.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100026#include <linux/interrupt.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100027#include <linux/init.h>
28#include <linux/module.h>
Paul Mackerras8dad3f92005-10-06 13:27:05 +100029#include <linux/prctl.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100030#include <linux/delay.h>
31#include <linux/kprobes.h>
Michael Ellermancc532912005-12-04 18:39:43 +110032#include <linux/kexec.h>
Michael Hanselmann5474c122006-06-25 05:47:08 -070033#include <linux/backlight.h>
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -080034#include <linux/bug.h>
Christoph Hellwig1eeb66a2007-05-08 00:27:03 -070035#include <linux/kdebug.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100036
37#include <asm/pgtable.h>
38#include <asm/uaccess.h>
39#include <asm/system.h>
40#include <asm/io.h>
Paul Mackerras86417782005-10-10 22:37:57 +100041#include <asm/machdep.h>
42#include <asm/rtas.h>
David Gibsonf7f6f4f2005-10-19 14:53:32 +100043#include <asm/pmc.h>
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +100044#ifdef CONFIG_PPC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +100045#include <asm/reg.h>
Paul Mackerras86417782005-10-10 22:37:57 +100046#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +100047#ifdef CONFIG_PMAC_BACKLIGHT
48#include <asm/backlight.h>
49#endif
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +100050#ifdef CONFIG_PPC64
Paul Mackerras86417782005-10-10 22:37:57 +100051#include <asm/firmware.h>
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +100052#include <asm/processor.h>
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +100053#endif
David Wilderc0ce7d02006-06-23 15:29:34 -070054#include <asm/kexec.h>
Kumar Gala16c57b32009-02-10 20:10:44 +000055#include <asm/ppc-opcode.h>
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +100056
Olof Johansson7dbb9222008-01-31 14:34:47 +110057#if defined(CONFIG_DEBUGGER) || defined(CONFIG_KEXEC)
Paul Mackerras14cf11a2005-09-26 16:04:21 +100058int (*__debugger)(struct pt_regs *regs);
59int (*__debugger_ipi)(struct pt_regs *regs);
60int (*__debugger_bpt)(struct pt_regs *regs);
61int (*__debugger_sstep)(struct pt_regs *regs);
62int (*__debugger_iabr_match)(struct pt_regs *regs);
63int (*__debugger_dabr_match)(struct pt_regs *regs);
64int (*__debugger_fault_handler)(struct pt_regs *regs);
65
66EXPORT_SYMBOL(__debugger);
67EXPORT_SYMBOL(__debugger_ipi);
68EXPORT_SYMBOL(__debugger_bpt);
69EXPORT_SYMBOL(__debugger_sstep);
70EXPORT_SYMBOL(__debugger_iabr_match);
71EXPORT_SYMBOL(__debugger_dabr_match);
72EXPORT_SYMBOL(__debugger_fault_handler);
73#endif
74
Paul Mackerras14cf11a2005-09-26 16:04:21 +100075/*
76 * Trap & Exception support
77 */
78
anton@samba.org6031d9d2007-03-20 20:38:12 -050079#ifdef CONFIG_PMAC_BACKLIGHT
80static void pmac_backlight_unblank(void)
81{
82 mutex_lock(&pmac_backlight_mutex);
83 if (pmac_backlight) {
84 struct backlight_properties *props;
85
86 props = &pmac_backlight->props;
87 props->brightness = props->max_brightness;
88 props->power = FB_BLANK_UNBLANK;
89 backlight_update_status(pmac_backlight);
90 }
91 mutex_unlock(&pmac_backlight_mutex);
92}
93#else
94static inline void pmac_backlight_unblank(void) { }
95#endif
96
Paul Mackerras14cf11a2005-09-26 16:04:21 +100097int die(const char *str, struct pt_regs *regs, long err)
98{
anton@samba.org34c2a142007-03-20 20:38:13 -050099 static struct {
100 spinlock_t lock;
101 u32 lock_owner;
102 int lock_owner_depth;
103 } die = {
104 .lock = __SPIN_LOCK_UNLOCKED(die.lock),
105 .lock_owner = -1,
106 .lock_owner_depth = 0
107 };
David Wilderc0ce7d02006-06-23 15:29:34 -0700108 static int die_counter;
anton@samba.org34c2a142007-03-20 20:38:13 -0500109 unsigned long flags;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000110
111 if (debugger(regs))
112 return 1;
113
anton@samba.org293e4682007-03-20 20:38:11 -0500114 oops_enter();
115
anton@samba.org34c2a142007-03-20 20:38:13 -0500116 if (die.lock_owner != raw_smp_processor_id()) {
117 console_verbose();
118 spin_lock_irqsave(&die.lock, flags);
119 die.lock_owner = smp_processor_id();
120 die.lock_owner_depth = 0;
121 bust_spinlocks(1);
122 if (machine_is(powermac))
123 pmac_backlight_unblank();
124 } else {
125 local_save_flags(flags);
126 }
Michael Hanselmann5474c122006-06-25 05:47:08 -0700127
anton@samba.org34c2a142007-03-20 20:38:13 -0500128 if (++die.lock_owner_depth < 3) {
129 printk("Oops: %s, sig: %ld [#%d]\n", str, err, ++die_counter);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000130#ifdef CONFIG_PREEMPT
anton@samba.org34c2a142007-03-20 20:38:13 -0500131 printk("PREEMPT ");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000132#endif
133#ifdef CONFIG_SMP
anton@samba.org34c2a142007-03-20 20:38:13 -0500134 printk("SMP NR_CPUS=%d ", NR_CPUS);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000135#endif
136#ifdef CONFIG_DEBUG_PAGEALLOC
anton@samba.org34c2a142007-03-20 20:38:13 -0500137 printk("DEBUG_PAGEALLOC ");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000138#endif
139#ifdef CONFIG_NUMA
anton@samba.org34c2a142007-03-20 20:38:13 -0500140 printk("NUMA ");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000141#endif
anton@samba.orgae7f4462007-03-20 20:38:14 -0500142 printk("%s\n", ppc_md.name ? ppc_md.name : "");
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100143
anton@samba.org34c2a142007-03-20 20:38:13 -0500144 print_modules();
145 show_regs(regs);
146 } else {
147 printk("Recursive die() failure, output suppressed\n");
148 }
149
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000150 bust_spinlocks(0);
anton@samba.org34c2a142007-03-20 20:38:13 -0500151 die.lock_owner = -1;
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700152 add_taint(TAINT_DIE);
anton@samba.org34c2a142007-03-20 20:38:13 -0500153 spin_unlock_irqrestore(&die.lock, flags);
David Wilderc0ce7d02006-06-23 15:29:34 -0700154
155 if (kexec_should_crash(current) ||
156 kexec_sr_activated(smp_processor_id()))
157 crash_kexec(regs);
158 crash_kexec_secondary(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000159
160 if (in_interrupt())
161 panic("Fatal exception in interrupt");
162
Hormscea6a4b2006-07-30 03:03:34 -0700163 if (panic_on_oops)
Horms012c4372006-08-13 23:24:22 -0700164 panic("Fatal exception");
Hormscea6a4b2006-07-30 03:03:34 -0700165
anton@samba.org293e4682007-03-20 20:38:11 -0500166 oops_exit();
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000167 do_exit(err);
168
169 return 0;
170}
171
172void _exception(int signr, struct pt_regs *regs, int code, unsigned long addr)
173{
174 siginfo_t info;
Olof Johanssond0c3d532007-10-12 10:20:07 +1000175 const char fmt32[] = KERN_INFO "%s[%d]: unhandled signal %d " \
176 "at %08lx nip %08lx lr %08lx code %x\n";
177 const char fmt64[] = KERN_INFO "%s[%d]: unhandled signal %d " \
178 "at %016lx nip %016lx lr %016lx code %x\n";
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000179
180 if (!user_mode(regs)) {
181 if (die("Exception in kernel mode", regs, signr))
182 return;
Olof Johanssond0c3d532007-10-12 10:20:07 +1000183 } else if (show_unhandled_signals &&
184 unhandled_signal(current, signr) &&
185 printk_ratelimit()) {
186 printk(regs->msr & MSR_SF ? fmt64 : fmt32,
187 current->comm, current->pid, signr,
188 addr, regs->nip, regs->link, code);
189 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000190
191 memset(&info, 0, sizeof(info));
192 info.si_signo = signr;
193 info.si_code = code;
194 info.si_addr = (void __user *) addr;
195 force_sig_info(signr, &info, current);
196
197 /*
198 * Init gets no signals that it doesn't have a handler for.
199 * That's all very well, but if it has caused a synchronous
200 * exception and we ignore the resulting signal, it will just
201 * generate the same exception over and over again and we get
202 * nowhere. Better to kill it and let the kernel panic.
203 */
Serge E. Hallynb460cbc2007-10-18 23:39:52 -0700204 if (is_global_init(current)) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000205 __sighandler_t handler;
206
207 spin_lock_irq(&current->sighand->siglock);
208 handler = current->sighand->action[signr-1].sa.sa_handler;
209 spin_unlock_irq(&current->sighand->siglock);
210 if (handler == SIG_DFL) {
211 /* init has generated a synchronous exception
212 and it doesn't have a handler for the signal */
213 printk(KERN_CRIT "init has generated signal %d "
214 "but has no handler for it\n", signr);
215 do_exit(signr);
216 }
217 }
218}
219
220#ifdef CONFIG_PPC64
221void system_reset_exception(struct pt_regs *regs)
222{
223 /* See if any machine dependent calls */
Arnd Bergmannc902be72006-01-04 19:55:53 +0000224 if (ppc_md.system_reset_exception) {
225 if (ppc_md.system_reset_exception(regs))
226 return;
227 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000228
David Wilderc0ce7d02006-06-23 15:29:34 -0700229#ifdef CONFIG_KEXEC
230 cpu_set(smp_processor_id(), cpus_in_sr);
231#endif
232
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000233 die("System Reset", regs, SIGABRT);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000234
David Wildereac83922006-06-29 15:17:30 -0700235 /*
236 * Some CPUs when released from the debugger will execute this path.
237 * These CPUs entered the debugger via a soft-reset. If the CPU was
238 * hung before entering the debugger it will return to the hung
239 * state when exiting this function. This causes a problem in
240 * kdump since the hung CPU(s) will not respond to the IPI sent
241 * from kdump. To prevent the problem we call crash_kexec_secondary()
242 * here. If a kdump had not been initiated or we exit the debugger
243 * with the "exit and recover" command (x) crash_kexec_secondary()
244 * will return after 5ms and the CPU returns to its previous state.
245 */
246 crash_kexec_secondary(regs);
247
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000248 /* Must die if the interrupt is not recoverable */
249 if (!(regs->msr & MSR_RI))
250 panic("Unrecoverable System Reset");
251
252 /* What should we do here? We could issue a shutdown or hard reset. */
253}
254#endif
255
256/*
257 * I/O accesses can cause machine checks on powermacs.
258 * Check if the NIP corresponds to the address of a sync
259 * instruction for which there is an entry in the exception
260 * table.
261 * Note that the 601 only takes a machine check on TEA
262 * (transfer error ack) signal assertion, and does not
263 * set any of the top 16 bits of SRR1.
264 * -- paulus.
265 */
266static inline int check_io_access(struct pt_regs *regs)
267{
Benjamin Herrenschmidt68a64352006-11-13 09:27:39 +1100268#ifdef CONFIG_PPC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000269 unsigned long msr = regs->msr;
270 const struct exception_table_entry *entry;
271 unsigned int *nip = (unsigned int *)regs->nip;
272
273 if (((msr & 0xffff0000) == 0 || (msr & (0x80000 | 0x40000)))
274 && (entry = search_exception_tables(regs->nip)) != NULL) {
275 /*
276 * Check that it's a sync instruction, or somewhere
277 * in the twi; isync; nop sequence that inb/inw/inl uses.
278 * As the address is in the exception table
279 * we should be able to read the instr there.
280 * For the debug message, we look at the preceding
281 * load or store.
282 */
283 if (*nip == 0x60000000) /* nop */
284 nip -= 2;
285 else if (*nip == 0x4c00012c) /* isync */
286 --nip;
287 if (*nip == 0x7c0004ac || (*nip >> 26) == 3) {
288 /* sync or twi */
289 unsigned int rb;
290
291 --nip;
292 rb = (*nip >> 11) & 0x1f;
293 printk(KERN_DEBUG "%s bad port %lx at %p\n",
294 (*nip & 0x100)? "OUT to": "IN from",
295 regs->gpr[rb] - _IO_BASE, nip);
296 regs->msr |= MSR_RI;
297 regs->nip = entry->fixup;
298 return 1;
299 }
300 }
Benjamin Herrenschmidt68a64352006-11-13 09:27:39 +1100301#endif /* CONFIG_PPC32 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000302 return 0;
303}
304
305#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
306/* On 4xx, the reason for the machine check or program exception
307 is in the ESR. */
308#define get_reason(regs) ((regs)->dsisr)
309#ifndef CONFIG_FSL_BOOKE
310#define get_mc_reason(regs) ((regs)->dsisr)
311#else
Becky Bruce86d7a9a2007-08-02 15:37:15 -0500312#define get_mc_reason(regs) (mfspr(SPRN_MCSR) & MCSR_MASK)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000313#endif
314#define REASON_FP ESR_FP
315#define REASON_ILLEGAL (ESR_PIL | ESR_PUO)
316#define REASON_PRIVILEGED ESR_PPR
317#define REASON_TRAP ESR_PTR
318
319/* single-step stuff */
320#define single_stepping(regs) (current->thread.dbcr0 & DBCR0_IC)
321#define clear_single_step(regs) (current->thread.dbcr0 &= ~DBCR0_IC)
322
323#else
324/* On non-4xx, the reason for the machine check or program
325 exception is in the MSR. */
326#define get_reason(regs) ((regs)->msr)
327#define get_mc_reason(regs) ((regs)->msr)
328#define REASON_FP 0x100000
329#define REASON_ILLEGAL 0x80000
330#define REASON_PRIVILEGED 0x40000
331#define REASON_TRAP 0x20000
332
333#define single_stepping(regs) ((regs)->msr & MSR_SE)
334#define clear_single_step(regs) ((regs)->msr &= ~MSR_SE)
335#endif
336
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100337#if defined(CONFIG_4xx)
338int machine_check_4xx(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000339{
Kumar Gala1a6a4ff2006-03-30 21:11:15 -0600340 unsigned long reason = get_mc_reason(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000341
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000342 if (reason & ESR_IMCP) {
343 printk("Instruction");
344 mtspr(SPRN_ESR, reason & ~ESR_IMCP);
345 } else
346 printk("Data");
347 printk(" machine check in kernel mode.\n");
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100348
349 return 0;
350}
351
352int machine_check_440A(struct pt_regs *regs)
353{
354 unsigned long reason = get_mc_reason(regs);
355
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000356 printk("Machine check in kernel mode.\n");
357 if (reason & ESR_IMCP){
358 printk("Instruction Synchronous Machine Check exception\n");
359 mtspr(SPRN_ESR, reason & ~ESR_IMCP);
360 }
361 else {
362 u32 mcsr = mfspr(SPRN_MCSR);
363 if (mcsr & MCSR_IB)
364 printk("Instruction Read PLB Error\n");
365 if (mcsr & MCSR_DRB)
366 printk("Data Read PLB Error\n");
367 if (mcsr & MCSR_DWB)
368 printk("Data Write PLB Error\n");
369 if (mcsr & MCSR_TLBP)
370 printk("TLB Parity Error\n");
371 if (mcsr & MCSR_ICP){
372 flush_instruction_cache();
373 printk("I-Cache Parity Error\n");
374 }
375 if (mcsr & MCSR_DCSP)
376 printk("D-Cache Search Parity Error\n");
377 if (mcsr & MCSR_DCFP)
378 printk("D-Cache Flush Parity Error\n");
379 if (mcsr & MCSR_IMPE)
380 printk("Machine Check exception is imprecise\n");
381
382 /* Clear MCSR */
383 mtspr(SPRN_MCSR, mcsr);
384 }
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100385 return 0;
386}
387#elif defined(CONFIG_E500)
388int machine_check_e500(struct pt_regs *regs)
389{
390 unsigned long reason = get_mc_reason(regs);
391
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000392 printk("Machine check in kernel mode.\n");
393 printk("Caused by (from MCSR=%lx): ", reason);
394
395 if (reason & MCSR_MCP)
396 printk("Machine Check Signal\n");
397 if (reason & MCSR_ICPERR)
398 printk("Instruction Cache Parity Error\n");
399 if (reason & MCSR_DCP_PERR)
400 printk("Data Cache Push Parity Error\n");
401 if (reason & MCSR_DCPERR)
402 printk("Data Cache Parity Error\n");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000403 if (reason & MCSR_BUS_IAERR)
404 printk("Bus - Instruction Address Error\n");
405 if (reason & MCSR_BUS_RAERR)
406 printk("Bus - Read Address Error\n");
407 if (reason & MCSR_BUS_WAERR)
408 printk("Bus - Write Address Error\n");
409 if (reason & MCSR_BUS_IBERR)
410 printk("Bus - Instruction Data Error\n");
411 if (reason & MCSR_BUS_RBERR)
412 printk("Bus - Read Data Bus Error\n");
413 if (reason & MCSR_BUS_WBERR)
414 printk("Bus - Read Data Bus Error\n");
415 if (reason & MCSR_BUS_IPERR)
416 printk("Bus - Instruction Parity Error\n");
417 if (reason & MCSR_BUS_RPERR)
418 printk("Bus - Read Parity Error\n");
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100419
420 return 0;
421}
422#elif defined(CONFIG_E200)
423int machine_check_e200(struct pt_regs *regs)
424{
425 unsigned long reason = get_mc_reason(regs);
426
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000427 printk("Machine check in kernel mode.\n");
428 printk("Caused by (from MCSR=%lx): ", reason);
429
430 if (reason & MCSR_MCP)
431 printk("Machine Check Signal\n");
432 if (reason & MCSR_CP_PERR)
433 printk("Cache Push Parity Error\n");
434 if (reason & MCSR_CPERR)
435 printk("Cache Parity Error\n");
436 if (reason & MCSR_EXCP_ERR)
437 printk("ISI, ITLB, or Bus Error on first instruction fetch for an exception handler\n");
438 if (reason & MCSR_BUS_IRERR)
439 printk("Bus - Read Bus Error on instruction fetch\n");
440 if (reason & MCSR_BUS_DRERR)
441 printk("Bus - Read Bus Error on data load\n");
442 if (reason & MCSR_BUS_WRERR)
443 printk("Bus - Write Bus Error on buffered store or cache line push\n");
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100444
445 return 0;
446}
447#else
448int machine_check_generic(struct pt_regs *regs)
449{
450 unsigned long reason = get_mc_reason(regs);
451
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000452 printk("Machine check in kernel mode.\n");
453 printk("Caused by (from SRR1=%lx): ", reason);
454 switch (reason & 0x601F0000) {
455 case 0x80000:
456 printk("Machine check signal\n");
457 break;
458 case 0: /* for 601 */
459 case 0x40000:
460 case 0x140000: /* 7450 MSS error and TEA */
461 printk("Transfer error ack signal\n");
462 break;
463 case 0x20000:
464 printk("Data parity error signal\n");
465 break;
466 case 0x10000:
467 printk("Address parity error signal\n");
468 break;
469 case 0x20000000:
470 printk("L1 Data Cache error\n");
471 break;
472 case 0x40000000:
473 printk("L1 Instruction Cache error\n");
474 break;
475 case 0x00100000:
476 printk("L2 data cache parity error\n");
477 break;
478 default:
479 printk("Unknown values in msr\n");
480 }
Olof Johansson75918a42007-09-21 05:11:20 +1000481 return 0;
482}
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100483#endif /* everything else */
Olof Johansson75918a42007-09-21 05:11:20 +1000484
485void machine_check_exception(struct pt_regs *regs)
486{
487 int recover = 0;
488
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100489 /* See if any machine dependent calls. In theory, we would want
490 * to call the CPU first, and call the ppc_md. one if the CPU
491 * one returns a positive number. However there is existing code
492 * that assumes the board gets a first chance, so let's keep it
493 * that way for now and fix things later. --BenH.
494 */
Olof Johansson75918a42007-09-21 05:11:20 +1000495 if (ppc_md.machine_check_exception)
496 recover = ppc_md.machine_check_exception(regs);
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100497 else if (cur_cpu_spec->machine_check)
498 recover = cur_cpu_spec->machine_check(regs);
Olof Johansson75918a42007-09-21 05:11:20 +1000499
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100500 if (recover > 0)
Olof Johansson75918a42007-09-21 05:11:20 +1000501 return;
502
503 if (user_mode(regs)) {
504 regs->msr |= MSR_RI;
505 _exception(SIGBUS, regs, BUS_ADRERR, regs->nip);
506 return;
507 }
508
509#if defined(CONFIG_8xx) && defined(CONFIG_PCI)
Benjamin Herrenschmidt47c0bd12007-12-21 15:39:21 +1100510 /* the qspan pci read routines can cause machine checks -- Cort
511 *
512 * yuck !!! that totally needs to go away ! There are better ways
513 * to deal with that than having a wart in the mcheck handler.
514 * -- BenH
515 */
Olof Johansson75918a42007-09-21 05:11:20 +1000516 bad_page_fault(regs, regs->dar, SIGBUS);
517 return;
518#endif
519
520 if (debugger_fault_handler(regs)) {
521 regs->msr |= MSR_RI;
522 return;
523 }
524
525 if (check_io_access(regs))
526 return;
527
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000528 if (debugger_fault_handler(regs))
529 return;
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000530 die("Machine check", regs, SIGBUS);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000531
532 /* Must die if the interrupt is not recoverable */
533 if (!(regs->msr & MSR_RI))
534 panic("Unrecoverable Machine check");
535}
536
537void SMIException(struct pt_regs *regs)
538{
539 die("System Management Interrupt", regs, SIGABRT);
540}
541
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000542void unknown_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000543{
544 printk("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
545 regs->nip, regs->msr, regs->trap);
546
547 _exception(SIGTRAP, regs, 0, 0);
548}
549
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000550void instruction_breakpoint_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000551{
552 if (notify_die(DIE_IABR_MATCH, "iabr_match", regs, 5,
553 5, SIGTRAP) == NOTIFY_STOP)
554 return;
555 if (debugger_iabr_match(regs))
556 return;
557 _exception(SIGTRAP, regs, TRAP_BRKPT, regs->nip);
558}
559
560void RunModeException(struct pt_regs *regs)
561{
562 _exception(SIGTRAP, regs, 0, 0);
563}
564
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000565void __kprobes single_step_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000566{
567 regs->msr &= ~(MSR_SE | MSR_BE); /* Turn off 'trace' bits */
568
569 if (notify_die(DIE_SSTEP, "single_step", regs, 5,
570 5, SIGTRAP) == NOTIFY_STOP)
571 return;
572 if (debugger_sstep(regs))
573 return;
574
575 _exception(SIGTRAP, regs, TRAP_TRACE, regs->nip);
576}
577
578/*
579 * After we have successfully emulated an instruction, we have to
580 * check if the instruction was being single-stepped, and if so,
581 * pretend we got a single-step exception. This was pointed out
582 * by Kumar Gala. -- paulus
583 */
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000584static void emulate_single_step(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000585{
586 if (single_stepping(regs)) {
587 clear_single_step(regs);
588 _exception(SIGTRAP, regs, TRAP_TRACE, 0);
589 }
590}
591
Kumar Gala5fad2932007-02-07 01:47:59 -0600592static inline int __parse_fpscr(unsigned long fpscr)
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000593{
Kumar Gala5fad2932007-02-07 01:47:59 -0600594 int ret = 0;
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000595
596 /* Invalid operation */
597 if ((fpscr & FPSCR_VE) && (fpscr & FPSCR_VX))
Kumar Gala5fad2932007-02-07 01:47:59 -0600598 ret = FPE_FLTINV;
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000599
600 /* Overflow */
601 else if ((fpscr & FPSCR_OE) && (fpscr & FPSCR_OX))
Kumar Gala5fad2932007-02-07 01:47:59 -0600602 ret = FPE_FLTOVF;
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000603
604 /* Underflow */
605 else if ((fpscr & FPSCR_UE) && (fpscr & FPSCR_UX))
Kumar Gala5fad2932007-02-07 01:47:59 -0600606 ret = FPE_FLTUND;
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000607
608 /* Divide by zero */
609 else if ((fpscr & FPSCR_ZE) && (fpscr & FPSCR_ZX))
Kumar Gala5fad2932007-02-07 01:47:59 -0600610 ret = FPE_FLTDIV;
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000611
612 /* Inexact result */
613 else if ((fpscr & FPSCR_XE) && (fpscr & FPSCR_XX))
Kumar Gala5fad2932007-02-07 01:47:59 -0600614 ret = FPE_FLTRES;
615
616 return ret;
617}
618
619static void parse_fpe(struct pt_regs *regs)
620{
621 int code = 0;
622
623 flush_fp_to_thread(current);
624
625 code = __parse_fpscr(current->thread.fpscr.val);
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000626
627 _exception(SIGFPE, regs, code, regs->nip);
628}
629
630/*
631 * Illegal instruction emulation support. Originally written to
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000632 * provide the PVR to user applications using the mfspr rd, PVR.
633 * Return non-zero if we can't emulate, or -EFAULT if the associated
634 * memory access caused an access fault. Return zero on success.
635 *
636 * There are a couple of ways to do this, either "decode" the instruction
637 * or directly match lots of bits. In this case, matching lots of
638 * bits is faster and easier.
Paul Mackerras86417782005-10-10 22:37:57 +1000639 *
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000640 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000641static int emulate_string_inst(struct pt_regs *regs, u32 instword)
642{
643 u8 rT = (instword >> 21) & 0x1f;
644 u8 rA = (instword >> 16) & 0x1f;
645 u8 NB_RB = (instword >> 11) & 0x1f;
646 u32 num_bytes;
647 unsigned long EA;
648 int pos = 0;
649
650 /* Early out if we are an invalid form of lswx */
Kumar Gala16c57b32009-02-10 20:10:44 +0000651 if ((instword & PPC_INST_STRING_MASK) == PPC_INST_LSWX)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000652 if ((rT == rA) || (rT == NB_RB))
653 return -EINVAL;
654
655 EA = (rA == 0) ? 0 : regs->gpr[rA];
656
Kumar Gala16c57b32009-02-10 20:10:44 +0000657 switch (instword & PPC_INST_STRING_MASK) {
658 case PPC_INST_LSWX:
659 case PPC_INST_STSWX:
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000660 EA += NB_RB;
661 num_bytes = regs->xer & 0x7f;
662 break;
Kumar Gala16c57b32009-02-10 20:10:44 +0000663 case PPC_INST_LSWI:
664 case PPC_INST_STSWI:
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000665 num_bytes = (NB_RB == 0) ? 32 : NB_RB;
666 break;
667 default:
668 return -EINVAL;
669 }
670
671 while (num_bytes != 0)
672 {
673 u8 val;
674 u32 shift = 8 * (3 - (pos & 0x3));
675
Kumar Gala16c57b32009-02-10 20:10:44 +0000676 switch ((instword & PPC_INST_STRING_MASK)) {
677 case PPC_INST_LSWX:
678 case PPC_INST_LSWI:
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000679 if (get_user(val, (u8 __user *)EA))
680 return -EFAULT;
681 /* first time updating this reg,
682 * zero it out */
683 if (pos == 0)
684 regs->gpr[rT] = 0;
685 regs->gpr[rT] |= val << shift;
686 break;
Kumar Gala16c57b32009-02-10 20:10:44 +0000687 case PPC_INST_STSWI:
688 case PPC_INST_STSWX:
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000689 val = regs->gpr[rT] >> shift;
690 if (put_user(val, (u8 __user *)EA))
691 return -EFAULT;
692 break;
693 }
694 /* move EA to next address */
695 EA += 1;
696 num_bytes--;
697
698 /* manage our position within the register */
699 if (++pos == 4) {
700 pos = 0;
701 if (++rT == 32)
702 rT = 0;
703 }
704 }
705
706 return 0;
707}
708
Will Schmidtc3412dc2006-08-30 13:11:38 -0500709static int emulate_popcntb_inst(struct pt_regs *regs, u32 instword)
710{
711 u32 ra,rs;
712 unsigned long tmp;
713
714 ra = (instword >> 16) & 0x1f;
715 rs = (instword >> 21) & 0x1f;
716
717 tmp = regs->gpr[rs];
718 tmp = tmp - ((tmp >> 1) & 0x5555555555555555ULL);
719 tmp = (tmp & 0x3333333333333333ULL) + ((tmp >> 2) & 0x3333333333333333ULL);
720 tmp = (tmp + (tmp >> 4)) & 0x0f0f0f0f0f0f0f0fULL;
721 regs->gpr[ra] = tmp;
722
723 return 0;
724}
725
Kumar Galac1469f12007-11-19 21:35:29 -0600726static int emulate_isel(struct pt_regs *regs, u32 instword)
727{
728 u8 rT = (instword >> 21) & 0x1f;
729 u8 rA = (instword >> 16) & 0x1f;
730 u8 rB = (instword >> 11) & 0x1f;
731 u8 BC = (instword >> 6) & 0x1f;
732 u8 bit;
733 unsigned long tmp;
734
735 tmp = (rA == 0) ? 0 : regs->gpr[rA];
736 bit = (regs->ccr >> (31 - BC)) & 0x1;
737
738 regs->gpr[rT] = bit ? tmp : regs->gpr[rB];
739
740 return 0;
741}
742
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000743static int emulate_instruction(struct pt_regs *regs)
744{
745 u32 instword;
746 u32 rd;
747
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000748 if (!user_mode(regs) || (regs->msr & MSR_LE))
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000749 return -EINVAL;
750 CHECK_FULL_REGS(regs);
751
752 if (get_user(instword, (u32 __user *)(regs->nip)))
753 return -EFAULT;
754
755 /* Emulate the mfspr rD, PVR. */
Kumar Gala16c57b32009-02-10 20:10:44 +0000756 if ((instword & PPC_INST_MFSPR_PVR_MASK) == PPC_INST_MFSPR_PVR) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000757 rd = (instword >> 21) & 0x1f;
758 regs->gpr[rd] = mfspr(SPRN_PVR);
759 return 0;
760 }
761
762 /* Emulating the dcba insn is just a no-op. */
Kumar Gala16c57b32009-02-10 20:10:44 +0000763 if ((instword & PPC_INST_DCBA_MASK) == PPC_INST_DCBA)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000764 return 0;
765
766 /* Emulate the mcrxr insn. */
Kumar Gala16c57b32009-02-10 20:10:44 +0000767 if ((instword & PPC_INST_MCRXR_MASK) == PPC_INST_MCRXR) {
Paul Mackerras86417782005-10-10 22:37:57 +1000768 int shift = (instword >> 21) & 0x1c;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000769 unsigned long msk = 0xf0000000UL >> shift;
770
771 regs->ccr = (regs->ccr & ~msk) | ((regs->xer >> shift) & msk);
772 regs->xer &= ~0xf0000000UL;
773 return 0;
774 }
775
776 /* Emulate load/store string insn. */
Kumar Gala16c57b32009-02-10 20:10:44 +0000777 if ((instword & PPC_INST_STRING_GEN_MASK) == PPC_INST_STRING)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000778 return emulate_string_inst(regs, instword);
779
Will Schmidtc3412dc2006-08-30 13:11:38 -0500780 /* Emulate the popcntb (Population Count Bytes) instruction. */
Kumar Gala16c57b32009-02-10 20:10:44 +0000781 if ((instword & PPC_INST_POPCNTB_MASK) == PPC_INST_POPCNTB) {
Will Schmidtc3412dc2006-08-30 13:11:38 -0500782 return emulate_popcntb_inst(regs, instword);
783 }
784
Kumar Galac1469f12007-11-19 21:35:29 -0600785 /* Emulate isel (Integer Select) instruction */
Kumar Gala16c57b32009-02-10 20:10:44 +0000786 if ((instword & PPC_INST_ISEL_MASK) == PPC_INST_ISEL) {
Kumar Galac1469f12007-11-19 21:35:29 -0600787 return emulate_isel(regs, instword);
788 }
789
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000790 return -EINVAL;
791}
792
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -0800793int is_valid_bugaddr(unsigned long addr)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000794{
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -0800795 return is_kernel_addr(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000796}
797
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000798void __kprobes program_check_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000799{
800 unsigned int reason = get_reason(regs);
801 extern int do_mathemu(struct pt_regs *regs);
802
Kim Phillipsaa42c692006-12-08 02:43:30 -0600803 /* We can now get here via a FP Unavailable exception if the core
Kumar Gala04903a32007-02-07 01:13:32 -0600804 * has no FPU, in that case the reason flags will be 0 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000805
806 if (reason & REASON_FP) {
807 /* IEEE FP exception */
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000808 parse_fpe(regs);
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000809 return;
810 }
811 if (reason & REASON_TRAP) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000812 /* trap exception */
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000813 if (notify_die(DIE_BPT, "breakpoint", regs, 5, 5, SIGTRAP)
814 == NOTIFY_STOP)
815 return;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000816 if (debugger_bpt(regs))
817 return;
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -0800818
819 if (!(regs->msr & MSR_PR) && /* not user-mode */
Heiko Carstens608e2612007-07-15 23:41:39 -0700820 report_bug(regs->nip, regs) == BUG_TRAP_TYPE_WARN) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000821 regs->nip += 4;
822 return;
823 }
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000824 _exception(SIGTRAP, regs, TRAP_BRKPT, regs->nip);
825 return;
826 }
827
Paul Mackerrascd8a5672006-03-03 17:11:40 +1100828 local_irq_enable();
829
Kumar Gala04903a32007-02-07 01:13:32 -0600830#ifdef CONFIG_MATH_EMULATION
831 /* (reason & REASON_ILLEGAL) would be the obvious thing here,
832 * but there seems to be a hardware bug on the 405GP (RevD)
833 * that means ESR is sometimes set incorrectly - either to
834 * ESR_DST (!?) or 0. In the process of chasing this with the
835 * hardware people - not sure if it can happen on any illegal
836 * instruction or only on FP instructions, whether there is a
837 * pattern to occurences etc. -dgibson 31/Mar/2003 */
Kumar Gala5fad2932007-02-07 01:47:59 -0600838 switch (do_mathemu(regs)) {
839 case 0:
Kumar Gala04903a32007-02-07 01:13:32 -0600840 emulate_single_step(regs);
841 return;
Kumar Gala5fad2932007-02-07 01:47:59 -0600842 case 1: {
843 int code = 0;
844 code = __parse_fpscr(current->thread.fpscr.val);
845 _exception(SIGFPE, regs, code, regs->nip);
846 return;
847 }
848 case -EFAULT:
849 _exception(SIGSEGV, regs, SEGV_MAPERR, regs->nip);
850 return;
Kumar Gala04903a32007-02-07 01:13:32 -0600851 }
Kumar Gala5fad2932007-02-07 01:47:59 -0600852 /* fall through on any other errors */
Kumar Gala04903a32007-02-07 01:13:32 -0600853#endif /* CONFIG_MATH_EMULATION */
854
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000855 /* Try to emulate it if we should. */
856 if (reason & (REASON_ILLEGAL | REASON_PRIVILEGED)) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000857 switch (emulate_instruction(regs)) {
858 case 0:
859 regs->nip += 4;
860 emulate_single_step(regs);
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000861 return;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000862 case -EFAULT:
863 _exception(SIGSEGV, regs, SEGV_MAPERR, regs->nip);
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000864 return;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000865 }
866 }
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000867
868 if (reason & REASON_PRIVILEGED)
869 _exception(SIGILL, regs, ILL_PRVOPC, regs->nip);
870 else
871 _exception(SIGILL, regs, ILL_ILLOPC, regs->nip);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000872}
873
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000874void alignment_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000875{
Benjamin Herrenschmidt4393c4f2006-11-01 15:11:39 +1100876 int sig, code, fixed = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000877
Paul Mackerrase9370ae2006-06-07 16:15:39 +1000878 /* we don't implement logging of alignment exceptions */
879 if (!(current->thread.align_ctl & PR_UNALIGN_SIGBUS))
880 fixed = fix_alignment(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000881
882 if (fixed == 1) {
883 regs->nip += 4; /* skip over emulated instruction */
884 emulate_single_step(regs);
885 return;
886 }
887
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000888 /* Operand address was bad */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000889 if (fixed == -EFAULT) {
Benjamin Herrenschmidt4393c4f2006-11-01 15:11:39 +1100890 sig = SIGSEGV;
891 code = SEGV_ACCERR;
892 } else {
893 sig = SIGBUS;
894 code = BUS_ADRALN;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000895 }
Benjamin Herrenschmidt4393c4f2006-11-01 15:11:39 +1100896 if (user_mode(regs))
897 _exception(sig, regs, code, regs->dar);
898 else
899 bad_page_fault(regs, regs->dar, sig);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000900}
901
902void StackOverflow(struct pt_regs *regs)
903{
904 printk(KERN_CRIT "Kernel stack overflow in process %p, r1=%lx\n",
905 current, regs->gpr[1]);
906 debugger(regs);
907 show_regs(regs);
908 panic("kernel stack overflow");
909}
910
911void nonrecoverable_exception(struct pt_regs *regs)
912{
913 printk(KERN_ERR "Non-recoverable exception at PC=%lx MSR=%lx\n",
914 regs->nip, regs->msr);
915 debugger(regs);
916 die("nonrecoverable exception", regs, SIGKILL);
917}
918
919void trace_syscall(struct pt_regs *regs)
920{
921 printk("Task: %p(%d), PC: %08lX/%08lX, Syscall: %3ld, Result: %s%ld %s\n",
Alexey Dobriyan19c58702007-10-18 23:40:41 -0700922 current, task_pid_nr(current), regs->nip, regs->link, regs->gpr[0],
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000923 regs->ccr&0x10000000?"Error=":"", regs->gpr[3], print_tainted());
924}
925
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000926void kernel_fp_unavailable_exception(struct pt_regs *regs)
927{
928 printk(KERN_EMERG "Unrecoverable FP Unavailable Exception "
929 "%lx at %lx\n", regs->trap, regs->nip);
930 die("Unrecoverable FP Unavailable Exception", regs, SIGABRT);
931}
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000932
933void altivec_unavailable_exception(struct pt_regs *regs)
934{
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000935 if (user_mode(regs)) {
936 /* A user program has executed an altivec instruction,
937 but this kernel doesn't support altivec. */
938 _exception(SIGILL, regs, ILL_ILLOPC, regs->nip);
939 return;
940 }
Anton Blanchard6c4841c2006-10-13 11:41:00 +1000941
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000942 printk(KERN_EMERG "Unrecoverable VMX/Altivec Unavailable Exception "
943 "%lx at %lx\n", regs->trap, regs->nip);
944 die("Unrecoverable VMX/Altivec Unavailable Exception", regs, SIGABRT);
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000945}
946
Michael Neulingce48b212008-06-25 14:07:18 +1000947void vsx_unavailable_exception(struct pt_regs *regs)
948{
949 if (user_mode(regs)) {
950 /* A user program has executed an vsx instruction,
951 but this kernel doesn't support vsx. */
952 _exception(SIGILL, regs, ILL_ILLOPC, regs->nip);
953 return;
954 }
955
956 printk(KERN_EMERG "Unrecoverable VSX Unavailable Exception "
957 "%lx at %lx\n", regs->trap, regs->nip);
958 die("Unrecoverable VSX Unavailable Exception", regs, SIGABRT);
959}
960
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000961void performance_monitor_exception(struct pt_regs *regs)
962{
963 perf_irq(regs);
964}
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000965
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000966#ifdef CONFIG_8xx
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000967void SoftwareEmulation(struct pt_regs *regs)
968{
969 extern int do_mathemu(struct pt_regs *);
970 extern int Soft_emulate_8xx(struct pt_regs *);
Scott Wood5dd57a12007-09-18 15:29:35 -0500971#if defined(CONFIG_MATH_EMULATION) || defined(CONFIG_8XX_MINIMAL_FPEMU)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000972 int errcode;
Scott Wood5dd57a12007-09-18 15:29:35 -0500973#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000974
975 CHECK_FULL_REGS(regs);
976
977 if (!user_mode(regs)) {
978 debugger(regs);
979 die("Kernel Mode Software FPU Emulation", regs, SIGFPE);
980 }
981
982#ifdef CONFIG_MATH_EMULATION
983 errcode = do_mathemu(regs);
Kumar Gala5fad2932007-02-07 01:47:59 -0600984
985 switch (errcode) {
986 case 0:
987 emulate_single_step(regs);
988 return;
989 case 1: {
990 int code = 0;
991 code = __parse_fpscr(current->thread.fpscr.val);
992 _exception(SIGFPE, regs, code, regs->nip);
993 return;
994 }
995 case -EFAULT:
996 _exception(SIGSEGV, regs, SEGV_MAPERR, regs->nip);
997 return;
998 default:
999 _exception(SIGILL, regs, ILL_ILLOPC, regs->nip);
1000 return;
1001 }
1002
Scott Wood5dd57a12007-09-18 15:29:35 -05001003#elif defined(CONFIG_8XX_MINIMAL_FPEMU)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001004 errcode = Soft_emulate_8xx(regs);
Kumar Gala5fad2932007-02-07 01:47:59 -06001005 switch (errcode) {
1006 case 0:
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001007 emulate_single_step(regs);
Kumar Gala5fad2932007-02-07 01:47:59 -06001008 return;
1009 case 1:
1010 _exception(SIGILL, regs, ILL_ILLOPC, regs->nip);
1011 return;
1012 case -EFAULT:
1013 _exception(SIGSEGV, regs, SEGV_MAPERR, regs->nip);
1014 return;
1015 }
Scott Wood5dd57a12007-09-18 15:29:35 -05001016#else
1017 _exception(SIGILL, regs, ILL_ILLOPC, regs->nip);
Kumar Gala5fad2932007-02-07 01:47:59 -06001018#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001019}
Paul Mackerras8dad3f92005-10-06 13:27:05 +10001020#endif /* CONFIG_8xx */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001021
1022#if defined(CONFIG_40x) || defined(CONFIG_BOOKE)
1023
Kumar Galaf8279622008-06-26 02:01:37 -05001024void __kprobes DebugException(struct pt_regs *regs, unsigned long debug_status)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001025{
1026 if (debug_status & DBSR_IC) { /* instruction completion */
1027 regs->msr &= ~MSR_DE;
Kumar Galaf8279622008-06-26 02:01:37 -05001028
1029 /* Disable instruction completion */
1030 mtspr(SPRN_DBCR0, mfspr(SPRN_DBCR0) & ~DBCR0_IC);
1031 /* Clear the instruction completion event */
1032 mtspr(SPRN_DBSR, DBSR_IC);
1033
1034 if (notify_die(DIE_SSTEP, "single_step", regs, 5,
1035 5, SIGTRAP) == NOTIFY_STOP) {
1036 return;
1037 }
1038
1039 if (debugger_sstep(regs))
1040 return;
1041
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001042 if (user_mode(regs)) {
1043 current->thread.dbcr0 &= ~DBCR0_IC;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001044 }
Kumar Galaf8279622008-06-26 02:01:37 -05001045
1046 _exception(SIGTRAP, regs, TRAP_TRACE, regs->nip);
Luis Machadod6a61bf2008-07-24 02:10:41 +10001047 } else if (debug_status & (DBSR_DAC1R | DBSR_DAC1W)) {
1048 regs->msr &= ~MSR_DE;
1049
1050 if (user_mode(regs)) {
1051 current->thread.dbcr0 &= ~(DBSR_DAC1R | DBSR_DAC1W |
1052 DBCR0_IDM);
1053 } else {
1054 /* Disable DAC interupts */
1055 mtspr(SPRN_DBCR0, mfspr(SPRN_DBCR0) & ~(DBSR_DAC1R |
1056 DBSR_DAC1W | DBCR0_IDM));
1057
1058 /* Clear the DAC event */
1059 mtspr(SPRN_DBSR, (DBSR_DAC1R | DBSR_DAC1W));
1060 }
1061 /* Setup and send the trap to the handler */
1062 do_dabr(regs, mfspr(SPRN_DAC1), debug_status);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001063 }
1064}
1065#endif /* CONFIG_4xx || CONFIG_BOOKE */
1066
1067#if !defined(CONFIG_TAU_INT)
1068void TAUException(struct pt_regs *regs)
1069{
1070 printk("TAU trap at PC: %lx, MSR: %lx, vector=%lx %s\n",
1071 regs->nip, regs->msr, regs->trap, print_tainted());
1072}
1073#endif /* CONFIG_INT_TAU */
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001074
1075#ifdef CONFIG_ALTIVEC
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001076void altivec_assist_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001077{
1078 int err;
1079
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001080 if (!user_mode(regs)) {
1081 printk(KERN_EMERG "VMX/Altivec assist exception in kernel mode"
1082 " at %lx\n", regs->nip);
Paul Mackerras8dad3f92005-10-06 13:27:05 +10001083 die("Kernel VMX/Altivec assist exception", regs, SIGILL);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001084 }
1085
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001086 flush_altivec_to_thread(current);
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001087
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001088 err = emulate_altivec(regs);
1089 if (err == 0) {
1090 regs->nip += 4; /* skip emulated instruction */
1091 emulate_single_step(regs);
1092 return;
1093 }
1094
1095 if (err == -EFAULT) {
1096 /* got an error reading the instruction */
1097 _exception(SIGSEGV, regs, SEGV_ACCERR, regs->nip);
1098 } else {
1099 /* didn't recognize the instruction */
1100 /* XXX quick hack for now: set the non-Java bit in the VSCR */
1101 if (printk_ratelimit())
1102 printk(KERN_ERR "Unrecognized altivec instruction "
1103 "in %s at %lx\n", current->comm, regs->nip);
1104 current->thread.vscr.u[3] |= 0x10000;
1105 }
1106}
1107#endif /* CONFIG_ALTIVEC */
1108
Michael Neulingce48b212008-06-25 14:07:18 +10001109#ifdef CONFIG_VSX
1110void vsx_assist_exception(struct pt_regs *regs)
1111{
1112 if (!user_mode(regs)) {
1113 printk(KERN_EMERG "VSX assist exception in kernel mode"
1114 " at %lx\n", regs->nip);
1115 die("Kernel VSX assist exception", regs, SIGILL);
1116 }
1117
1118 flush_vsx_to_thread(current);
1119 printk(KERN_INFO "VSX assist not supported at %lx\n", regs->nip);
1120 _exception(SIGILL, regs, ILL_ILLOPC, regs->nip);
1121}
1122#endif /* CONFIG_VSX */
1123
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001124#ifdef CONFIG_FSL_BOOKE
1125void CacheLockingException(struct pt_regs *regs, unsigned long address,
1126 unsigned long error_code)
1127{
1128 /* We treat cache locking instructions from the user
1129 * as priv ops, in the future we could try to do
1130 * something smarter
1131 */
1132 if (error_code & (ESR_DLK|ESR_ILK))
1133 _exception(SIGILL, regs, ILL_PRVOPC, regs->nip);
1134 return;
1135}
1136#endif /* CONFIG_FSL_BOOKE */
1137
1138#ifdef CONFIG_SPE
1139void SPEFloatingPointException(struct pt_regs *regs)
1140{
Liu Yu6a800f32008-10-28 11:50:21 +08001141 extern int do_spe_mathemu(struct pt_regs *regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001142 unsigned long spefscr;
1143 int fpexc_mode;
1144 int code = 0;
Liu Yu6a800f32008-10-28 11:50:21 +08001145 int err;
1146
1147 preempt_disable();
1148 if (regs->msr & MSR_SPE)
1149 giveup_spe(current);
1150 preempt_enable();
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001151
1152 spefscr = current->thread.spefscr;
1153 fpexc_mode = current->thread.fpexc_mode;
1154
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001155 if ((spefscr & SPEFSCR_FOVF) && (fpexc_mode & PR_FP_EXC_OVF)) {
1156 code = FPE_FLTOVF;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001157 }
1158 else if ((spefscr & SPEFSCR_FUNF) && (fpexc_mode & PR_FP_EXC_UND)) {
1159 code = FPE_FLTUND;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001160 }
1161 else if ((spefscr & SPEFSCR_FDBZ) && (fpexc_mode & PR_FP_EXC_DIV))
1162 code = FPE_FLTDIV;
1163 else if ((spefscr & SPEFSCR_FINV) && (fpexc_mode & PR_FP_EXC_INV)) {
1164 code = FPE_FLTINV;
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001165 }
1166 else if ((spefscr & (SPEFSCR_FG | SPEFSCR_FX)) && (fpexc_mode & PR_FP_EXC_RES))
1167 code = FPE_FLTRES;
1168
Liu Yu6a800f32008-10-28 11:50:21 +08001169 err = do_spe_mathemu(regs);
1170 if (err == 0) {
1171 regs->nip += 4; /* skip emulated instruction */
1172 emulate_single_step(regs);
1173 return;
1174 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001175
Liu Yu6a800f32008-10-28 11:50:21 +08001176 if (err == -EFAULT) {
1177 /* got an error reading the instruction */
1178 _exception(SIGSEGV, regs, SEGV_ACCERR, regs->nip);
1179 } else if (err == -EINVAL) {
1180 /* didn't recognize the instruction */
1181 printk(KERN_ERR "unrecognized spe instruction "
1182 "in %s at %lx\n", current->comm, regs->nip);
1183 } else {
1184 _exception(SIGFPE, regs, code, regs->nip);
1185 }
1186
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001187 return;
1188}
Liu Yu6a800f32008-10-28 11:50:21 +08001189
1190void SPEFloatingPointRoundException(struct pt_regs *regs)
1191{
1192 extern int speround_handler(struct pt_regs *regs);
1193 int err;
1194
1195 preempt_disable();
1196 if (regs->msr & MSR_SPE)
1197 giveup_spe(current);
1198 preempt_enable();
1199
1200 regs->nip -= 4;
1201 err = speround_handler(regs);
1202 if (err == 0) {
1203 regs->nip += 4; /* skip emulated instruction */
1204 emulate_single_step(regs);
1205 return;
1206 }
1207
1208 if (err == -EFAULT) {
1209 /* got an error reading the instruction */
1210 _exception(SIGSEGV, regs, SEGV_ACCERR, regs->nip);
1211 } else if (err == -EINVAL) {
1212 /* didn't recognize the instruction */
1213 printk(KERN_ERR "unrecognized spe instruction "
1214 "in %s at %lx\n", current->comm, regs->nip);
1215 } else {
1216 _exception(SIGFPE, regs, 0, regs->nip);
1217 return;
1218 }
1219}
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001220#endif
1221
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001222/*
1223 * We enter here if we get an unrecoverable exception, that is, one
1224 * that happened at a point where the RI (recoverable interrupt) bit
1225 * in the MSR is 0. This indicates that SRR0/1 are live, and that
1226 * we therefore lost state by taking this exception.
1227 */
1228void unrecoverable_exception(struct pt_regs *regs)
1229{
1230 printk(KERN_EMERG "Unrecoverable exception %lx at %lx\n",
1231 regs->trap, regs->nip);
1232 die("Unrecoverable exception", regs, SIGABRT);
1233}
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001234
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001235#ifdef CONFIG_BOOKE_WDT
1236/*
1237 * Default handler for a Watchdog exception,
1238 * spins until a reboot occurs
1239 */
1240void __attribute__ ((weak)) WatchdogHandler(struct pt_regs *regs)
1241{
1242 /* Generic WatchdogHandler, implement your own */
1243 mtspr(SPRN_TCR, mfspr(SPRN_TCR)&(~TCR_WIE));
1244 return;
1245}
1246
1247void WatchdogException(struct pt_regs *regs)
1248{
1249 printk (KERN_EMERG "PowerPC Book-E Watchdog Exception\n");
1250 WatchdogHandler(regs);
1251}
1252#endif
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001253
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001254/*
1255 * We enter here if we discover during exception entry that we are
1256 * running in supervisor mode with a userspace value in the stack pointer.
1257 */
1258void kernel_bad_stack(struct pt_regs *regs)
1259{
1260 printk(KERN_EMERG "Bad kernel stack pointer %lx at %lx\n",
1261 regs->gpr[1], regs->nip);
1262 die("Bad kernel stack pointer", regs, SIGABRT);
1263}
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001264
1265void __init trap_init(void)
1266{
1267}