blob: f038caa3c2b92255cc4061e648ceaa855f37f115 [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>
26#include <linux/a.out.h>
27#include <linux/interrupt.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100028#include <linux/init.h>
29#include <linux/module.h>
Paul Mackerras8dad3f92005-10-06 13:27:05 +100030#include <linux/prctl.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100031#include <linux/delay.h>
32#include <linux/kprobes.h>
Michael Ellermancc532912005-12-04 18:39:43 +110033#include <linux/kexec.h>
Michael Hanselmann5474c122006-06-25 05:47:08 -070034#include <linux/backlight.h>
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -080035#include <linux/bug.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100036
Paul Mackerras86417782005-10-10 22:37:57 +100037#include <asm/kdebug.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100038#include <asm/pgtable.h>
39#include <asm/uaccess.h>
40#include <asm/system.h>
41#include <asm/io.h>
Paul Mackerras86417782005-10-10 22:37:57 +100042#include <asm/machdep.h>
43#include <asm/rtas.h>
David Gibsonf7f6f4f2005-10-19 14:53:32 +100044#include <asm/pmc.h>
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +100045#ifdef CONFIG_PPC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +100046#include <asm/reg.h>
Paul Mackerras86417782005-10-10 22:37:57 +100047#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +100048#ifdef CONFIG_PMAC_BACKLIGHT
49#include <asm/backlight.h>
50#endif
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +100051#ifdef CONFIG_PPC64
Paul Mackerras86417782005-10-10 22:37:57 +100052#include <asm/firmware.h>
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +100053#include <asm/processor.h>
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +100054#endif
David Wilderc0ce7d02006-06-23 15:29:34 -070055#include <asm/kexec.h>
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +100056
Paul Mackerras14cf11a2005-09-26 16:04:21 +100057#ifdef CONFIG_DEBUGGER
58int (*__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
Alan Sterne041c682006-03-27 01:16:30 -080075ATOMIC_NOTIFIER_HEAD(powerpc_die_chain);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100076
77int register_die_notifier(struct notifier_block *nb)
78{
Alan Sterne041c682006-03-27 01:16:30 -080079 return atomic_notifier_chain_register(&powerpc_die_chain, nb);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100080}
Alan Sterne041c682006-03-27 01:16:30 -080081EXPORT_SYMBOL(register_die_notifier);
82
83int unregister_die_notifier(struct notifier_block *nb)
84{
85 return atomic_notifier_chain_unregister(&powerpc_die_chain, nb);
86}
87EXPORT_SYMBOL(unregister_die_notifier);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100088
89/*
90 * Trap & Exception support
91 */
92
93static DEFINE_SPINLOCK(die_lock);
94
95int die(const char *str, struct pt_regs *regs, long err)
96{
David Wilderc0ce7d02006-06-23 15:29:34 -070097 static int die_counter;
Paul Mackerras14cf11a2005-09-26 16:04:21 +100098
99 if (debugger(regs))
100 return 1;
101
102 console_verbose();
103 spin_lock_irq(&die_lock);
104 bust_spinlocks(1);
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000105#ifdef CONFIG_PMAC_BACKLIGHT
Michael Hanselmann5474c122006-06-25 05:47:08 -0700106 mutex_lock(&pmac_backlight_mutex);
107 if (machine_is(powermac) && pmac_backlight) {
108 struct backlight_properties *props;
109
110 down(&pmac_backlight->sem);
111 props = pmac_backlight->props;
112 props->brightness = props->max_brightness;
113 props->power = FB_BLANK_UNBLANK;
114 props->update_status(pmac_backlight);
115 up(&pmac_backlight->sem);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000116 }
Michael Hanselmann5474c122006-06-25 05:47:08 -0700117 mutex_unlock(&pmac_backlight_mutex);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000118#endif
119 printk("Oops: %s, sig: %ld [#%d]\n", str, err, ++die_counter);
120#ifdef CONFIG_PREEMPT
121 printk("PREEMPT ");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000122#endif
123#ifdef CONFIG_SMP
124 printk("SMP NR_CPUS=%d ", NR_CPUS);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000125#endif
126#ifdef CONFIG_DEBUG_PAGEALLOC
127 printk("DEBUG_PAGEALLOC ");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000128#endif
129#ifdef CONFIG_NUMA
130 printk("NUMA ");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000131#endif
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100132 printk("%s\n", ppc_md.name ? "" : ppc_md.name);
133
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000134 print_modules();
135 show_regs(regs);
136 bust_spinlocks(0);
137 spin_unlock_irq(&die_lock);
David Wilderc0ce7d02006-06-23 15:29:34 -0700138
139 if (kexec_should_crash(current) ||
140 kexec_sr_activated(smp_processor_id()))
141 crash_kexec(regs);
142 crash_kexec_secondary(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000143
144 if (in_interrupt())
145 panic("Fatal exception in interrupt");
146
Hormscea6a4b2006-07-30 03:03:34 -0700147 if (panic_on_oops)
Horms012c4372006-08-13 23:24:22 -0700148 panic("Fatal exception");
Hormscea6a4b2006-07-30 03:03:34 -0700149
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000150 do_exit(err);
151
152 return 0;
153}
154
155void _exception(int signr, struct pt_regs *regs, int code, unsigned long addr)
156{
157 siginfo_t info;
158
159 if (!user_mode(regs)) {
160 if (die("Exception in kernel mode", regs, signr))
161 return;
162 }
163
164 memset(&info, 0, sizeof(info));
165 info.si_signo = signr;
166 info.si_code = code;
167 info.si_addr = (void __user *) addr;
168 force_sig_info(signr, &info, current);
169
170 /*
171 * Init gets no signals that it doesn't have a handler for.
172 * That's all very well, but if it has caused a synchronous
173 * exception and we ignore the resulting signal, it will just
174 * generate the same exception over and over again and we get
175 * nowhere. Better to kill it and let the kernel panic.
176 */
Akinobu Mita60bccbe2006-12-19 17:35:49 +0900177 if (is_init(current)) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000178 __sighandler_t handler;
179
180 spin_lock_irq(&current->sighand->siglock);
181 handler = current->sighand->action[signr-1].sa.sa_handler;
182 spin_unlock_irq(&current->sighand->siglock);
183 if (handler == SIG_DFL) {
184 /* init has generated a synchronous exception
185 and it doesn't have a handler for the signal */
186 printk(KERN_CRIT "init has generated signal %d "
187 "but has no handler for it\n", signr);
188 do_exit(signr);
189 }
190 }
191}
192
193#ifdef CONFIG_PPC64
194void system_reset_exception(struct pt_regs *regs)
195{
196 /* See if any machine dependent calls */
Arnd Bergmannc902be72006-01-04 19:55:53 +0000197 if (ppc_md.system_reset_exception) {
198 if (ppc_md.system_reset_exception(regs))
199 return;
200 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000201
David Wilderc0ce7d02006-06-23 15:29:34 -0700202#ifdef CONFIG_KEXEC
203 cpu_set(smp_processor_id(), cpus_in_sr);
204#endif
205
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000206 die("System Reset", regs, SIGABRT);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000207
David Wildereac83922006-06-29 15:17:30 -0700208 /*
209 * Some CPUs when released from the debugger will execute this path.
210 * These CPUs entered the debugger via a soft-reset. If the CPU was
211 * hung before entering the debugger it will return to the hung
212 * state when exiting this function. This causes a problem in
213 * kdump since the hung CPU(s) will not respond to the IPI sent
214 * from kdump. To prevent the problem we call crash_kexec_secondary()
215 * here. If a kdump had not been initiated or we exit the debugger
216 * with the "exit and recover" command (x) crash_kexec_secondary()
217 * will return after 5ms and the CPU returns to its previous state.
218 */
219 crash_kexec_secondary(regs);
220
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000221 /* Must die if the interrupt is not recoverable */
222 if (!(regs->msr & MSR_RI))
223 panic("Unrecoverable System Reset");
224
225 /* What should we do here? We could issue a shutdown or hard reset. */
226}
227#endif
228
229/*
230 * I/O accesses can cause machine checks on powermacs.
231 * Check if the NIP corresponds to the address of a sync
232 * instruction for which there is an entry in the exception
233 * table.
234 * Note that the 601 only takes a machine check on TEA
235 * (transfer error ack) signal assertion, and does not
236 * set any of the top 16 bits of SRR1.
237 * -- paulus.
238 */
239static inline int check_io_access(struct pt_regs *regs)
240{
Benjamin Herrenschmidt68a64352006-11-13 09:27:39 +1100241#ifdef CONFIG_PPC32
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000242 unsigned long msr = regs->msr;
243 const struct exception_table_entry *entry;
244 unsigned int *nip = (unsigned int *)regs->nip;
245
246 if (((msr & 0xffff0000) == 0 || (msr & (0x80000 | 0x40000)))
247 && (entry = search_exception_tables(regs->nip)) != NULL) {
248 /*
249 * Check that it's a sync instruction, or somewhere
250 * in the twi; isync; nop sequence that inb/inw/inl uses.
251 * As the address is in the exception table
252 * we should be able to read the instr there.
253 * For the debug message, we look at the preceding
254 * load or store.
255 */
256 if (*nip == 0x60000000) /* nop */
257 nip -= 2;
258 else if (*nip == 0x4c00012c) /* isync */
259 --nip;
260 if (*nip == 0x7c0004ac || (*nip >> 26) == 3) {
261 /* sync or twi */
262 unsigned int rb;
263
264 --nip;
265 rb = (*nip >> 11) & 0x1f;
266 printk(KERN_DEBUG "%s bad port %lx at %p\n",
267 (*nip & 0x100)? "OUT to": "IN from",
268 regs->gpr[rb] - _IO_BASE, nip);
269 regs->msr |= MSR_RI;
270 regs->nip = entry->fixup;
271 return 1;
272 }
273 }
Benjamin Herrenschmidt68a64352006-11-13 09:27:39 +1100274#endif /* CONFIG_PPC32 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000275 return 0;
276}
277
278#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
279/* On 4xx, the reason for the machine check or program exception
280 is in the ESR. */
281#define get_reason(regs) ((regs)->dsisr)
282#ifndef CONFIG_FSL_BOOKE
283#define get_mc_reason(regs) ((regs)->dsisr)
284#else
285#define get_mc_reason(regs) (mfspr(SPRN_MCSR))
286#endif
287#define REASON_FP ESR_FP
288#define REASON_ILLEGAL (ESR_PIL | ESR_PUO)
289#define REASON_PRIVILEGED ESR_PPR
290#define REASON_TRAP ESR_PTR
291
292/* single-step stuff */
293#define single_stepping(regs) (current->thread.dbcr0 & DBCR0_IC)
294#define clear_single_step(regs) (current->thread.dbcr0 &= ~DBCR0_IC)
295
296#else
297/* On non-4xx, the reason for the machine check or program
298 exception is in the MSR. */
299#define get_reason(regs) ((regs)->msr)
300#define get_mc_reason(regs) ((regs)->msr)
301#define REASON_FP 0x100000
302#define REASON_ILLEGAL 0x80000
303#define REASON_PRIVILEGED 0x40000
304#define REASON_TRAP 0x20000
305
306#define single_stepping(regs) ((regs)->msr & MSR_SE)
307#define clear_single_step(regs) ((regs)->msr &= ~MSR_SE)
308#endif
309
310/*
311 * This is "fall-back" implementation for configurations
312 * which don't provide platform-specific machine check info
313 */
314void __attribute__ ((weak))
315platform_machine_check(struct pt_regs *regs)
316{
317}
318
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000319void machine_check_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000320{
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000321 int recover = 0;
Kumar Gala1a6a4ff2006-03-30 21:11:15 -0600322 unsigned long reason = get_mc_reason(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000323
324 /* See if any machine dependent calls */
325 if (ppc_md.machine_check_exception)
326 recover = ppc_md.machine_check_exception(regs);
327
328 if (recover)
329 return;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000330
331 if (user_mode(regs)) {
332 regs->msr |= MSR_RI;
333 _exception(SIGBUS, regs, BUS_ADRERR, regs->nip);
334 return;
335 }
336
337#if defined(CONFIG_8xx) && defined(CONFIG_PCI)
338 /* the qspan pci read routines can cause machine checks -- Cort */
339 bad_page_fault(regs, regs->dar, SIGBUS);
340 return;
341#endif
342
343 if (debugger_fault_handler(regs)) {
344 regs->msr |= MSR_RI;
345 return;
346 }
347
348 if (check_io_access(regs))
349 return;
350
351#if defined(CONFIG_4xx) && !defined(CONFIG_440A)
352 if (reason & ESR_IMCP) {
353 printk("Instruction");
354 mtspr(SPRN_ESR, reason & ~ESR_IMCP);
355 } else
356 printk("Data");
357 printk(" machine check in kernel mode.\n");
358#elif defined(CONFIG_440A)
359 printk("Machine check in kernel mode.\n");
360 if (reason & ESR_IMCP){
361 printk("Instruction Synchronous Machine Check exception\n");
362 mtspr(SPRN_ESR, reason & ~ESR_IMCP);
363 }
364 else {
365 u32 mcsr = mfspr(SPRN_MCSR);
366 if (mcsr & MCSR_IB)
367 printk("Instruction Read PLB Error\n");
368 if (mcsr & MCSR_DRB)
369 printk("Data Read PLB Error\n");
370 if (mcsr & MCSR_DWB)
371 printk("Data Write PLB Error\n");
372 if (mcsr & MCSR_TLBP)
373 printk("TLB Parity Error\n");
374 if (mcsr & MCSR_ICP){
375 flush_instruction_cache();
376 printk("I-Cache Parity Error\n");
377 }
378 if (mcsr & MCSR_DCSP)
379 printk("D-Cache Search Parity Error\n");
380 if (mcsr & MCSR_DCFP)
381 printk("D-Cache Flush Parity Error\n");
382 if (mcsr & MCSR_IMPE)
383 printk("Machine Check exception is imprecise\n");
384
385 /* Clear MCSR */
386 mtspr(SPRN_MCSR, mcsr);
387 }
388#elif defined (CONFIG_E500)
389 printk("Machine check in kernel mode.\n");
390 printk("Caused by (from MCSR=%lx): ", reason);
391
392 if (reason & MCSR_MCP)
393 printk("Machine Check Signal\n");
394 if (reason & MCSR_ICPERR)
395 printk("Instruction Cache Parity Error\n");
396 if (reason & MCSR_DCP_PERR)
397 printk("Data Cache Push Parity Error\n");
398 if (reason & MCSR_DCPERR)
399 printk("Data Cache Parity Error\n");
400 if (reason & MCSR_GL_CI)
401 printk("Guarded Load or Cache-Inhibited stwcx.\n");
402 if (reason & MCSR_BUS_IAERR)
403 printk("Bus - Instruction Address Error\n");
404 if (reason & MCSR_BUS_RAERR)
405 printk("Bus - Read Address Error\n");
406 if (reason & MCSR_BUS_WAERR)
407 printk("Bus - Write Address Error\n");
408 if (reason & MCSR_BUS_IBERR)
409 printk("Bus - Instruction Data Error\n");
410 if (reason & MCSR_BUS_RBERR)
411 printk("Bus - Read Data Bus Error\n");
412 if (reason & MCSR_BUS_WBERR)
413 printk("Bus - Read Data Bus Error\n");
414 if (reason & MCSR_BUS_IPERR)
415 printk("Bus - Instruction Parity Error\n");
416 if (reason & MCSR_BUS_RPERR)
417 printk("Bus - Read Parity Error\n");
418#elif defined (CONFIG_E200)
419 printk("Machine check in kernel mode.\n");
420 printk("Caused by (from MCSR=%lx): ", reason);
421
422 if (reason & MCSR_MCP)
423 printk("Machine Check Signal\n");
424 if (reason & MCSR_CP_PERR)
425 printk("Cache Push Parity Error\n");
426 if (reason & MCSR_CPERR)
427 printk("Cache Parity Error\n");
428 if (reason & MCSR_EXCP_ERR)
429 printk("ISI, ITLB, or Bus Error on first instruction fetch for an exception handler\n");
430 if (reason & MCSR_BUS_IRERR)
431 printk("Bus - Read Bus Error on instruction fetch\n");
432 if (reason & MCSR_BUS_DRERR)
433 printk("Bus - Read Bus Error on data load\n");
434 if (reason & MCSR_BUS_WRERR)
435 printk("Bus - Write Bus Error on buffered store or cache line push\n");
436#else /* !CONFIG_4xx && !CONFIG_E500 && !CONFIG_E200 */
437 printk("Machine check in kernel mode.\n");
438 printk("Caused by (from SRR1=%lx): ", reason);
439 switch (reason & 0x601F0000) {
440 case 0x80000:
441 printk("Machine check signal\n");
442 break;
443 case 0: /* for 601 */
444 case 0x40000:
445 case 0x140000: /* 7450 MSS error and TEA */
446 printk("Transfer error ack signal\n");
447 break;
448 case 0x20000:
449 printk("Data parity error signal\n");
450 break;
451 case 0x10000:
452 printk("Address parity error signal\n");
453 break;
454 case 0x20000000:
455 printk("L1 Data Cache error\n");
456 break;
457 case 0x40000000:
458 printk("L1 Instruction Cache error\n");
459 break;
460 case 0x00100000:
461 printk("L2 data cache parity error\n");
462 break;
463 default:
464 printk("Unknown values in msr\n");
465 }
466#endif /* CONFIG_4xx */
467
468 /*
469 * Optional platform-provided routine to print out
470 * additional info, e.g. bus error registers.
471 */
472 platform_machine_check(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000473
474 if (debugger_fault_handler(regs))
475 return;
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000476 die("Machine check", regs, SIGBUS);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000477
478 /* Must die if the interrupt is not recoverable */
479 if (!(regs->msr & MSR_RI))
480 panic("Unrecoverable Machine check");
481}
482
483void SMIException(struct pt_regs *regs)
484{
485 die("System Management Interrupt", regs, SIGABRT);
486}
487
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000488void unknown_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000489{
490 printk("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
491 regs->nip, regs->msr, regs->trap);
492
493 _exception(SIGTRAP, regs, 0, 0);
494}
495
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000496void instruction_breakpoint_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000497{
498 if (notify_die(DIE_IABR_MATCH, "iabr_match", regs, 5,
499 5, SIGTRAP) == NOTIFY_STOP)
500 return;
501 if (debugger_iabr_match(regs))
502 return;
503 _exception(SIGTRAP, regs, TRAP_BRKPT, regs->nip);
504}
505
506void RunModeException(struct pt_regs *regs)
507{
508 _exception(SIGTRAP, regs, 0, 0);
509}
510
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000511void __kprobes single_step_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000512{
513 regs->msr &= ~(MSR_SE | MSR_BE); /* Turn off 'trace' bits */
514
515 if (notify_die(DIE_SSTEP, "single_step", regs, 5,
516 5, SIGTRAP) == NOTIFY_STOP)
517 return;
518 if (debugger_sstep(regs))
519 return;
520
521 _exception(SIGTRAP, regs, TRAP_TRACE, regs->nip);
522}
523
524/*
525 * After we have successfully emulated an instruction, we have to
526 * check if the instruction was being single-stepped, and if so,
527 * pretend we got a single-step exception. This was pointed out
528 * by Kumar Gala. -- paulus
529 */
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000530static void emulate_single_step(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000531{
532 if (single_stepping(regs)) {
533 clear_single_step(regs);
534 _exception(SIGTRAP, regs, TRAP_TRACE, 0);
535 }
536}
537
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000538static void parse_fpe(struct pt_regs *regs)
539{
540 int code = 0;
541 unsigned long fpscr;
542
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000543 flush_fp_to_thread(current);
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000544
David Gibson25c8a782005-10-27 16:27:25 +1000545 fpscr = current->thread.fpscr.val;
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000546
547 /* Invalid operation */
548 if ((fpscr & FPSCR_VE) && (fpscr & FPSCR_VX))
549 code = FPE_FLTINV;
550
551 /* Overflow */
552 else if ((fpscr & FPSCR_OE) && (fpscr & FPSCR_OX))
553 code = FPE_FLTOVF;
554
555 /* Underflow */
556 else if ((fpscr & FPSCR_UE) && (fpscr & FPSCR_UX))
557 code = FPE_FLTUND;
558
559 /* Divide by zero */
560 else if ((fpscr & FPSCR_ZE) && (fpscr & FPSCR_ZX))
561 code = FPE_FLTDIV;
562
563 /* Inexact result */
564 else if ((fpscr & FPSCR_XE) && (fpscr & FPSCR_XX))
565 code = FPE_FLTRES;
566
567 _exception(SIGFPE, regs, code, regs->nip);
568}
569
570/*
571 * Illegal instruction emulation support. Originally written to
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000572 * provide the PVR to user applications using the mfspr rd, PVR.
573 * Return non-zero if we can't emulate, or -EFAULT if the associated
574 * memory access caused an access fault. Return zero on success.
575 *
576 * There are a couple of ways to do this, either "decode" the instruction
577 * or directly match lots of bits. In this case, matching lots of
578 * bits is faster and easier.
Paul Mackerras86417782005-10-10 22:37:57 +1000579 *
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000580 */
581#define INST_MFSPR_PVR 0x7c1f42a6
582#define INST_MFSPR_PVR_MASK 0xfc1fffff
583
584#define INST_DCBA 0x7c0005ec
Paul Mackerras87589f02006-08-23 16:58:39 +1000585#define INST_DCBA_MASK 0xfc0007fe
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000586
587#define INST_MCRXR 0x7c000400
Paul Mackerras87589f02006-08-23 16:58:39 +1000588#define INST_MCRXR_MASK 0xfc0007fe
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000589
590#define INST_STRING 0x7c00042a
Paul Mackerras87589f02006-08-23 16:58:39 +1000591#define INST_STRING_MASK 0xfc0007fe
592#define INST_STRING_GEN_MASK 0xfc00067e
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000593#define INST_LSWI 0x7c0004aa
594#define INST_LSWX 0x7c00042a
595#define INST_STSWI 0x7c0005aa
596#define INST_STSWX 0x7c00052a
597
Will Schmidtc3412dc2006-08-30 13:11:38 -0500598#define INST_POPCNTB 0x7c0000f4
599#define INST_POPCNTB_MASK 0xfc0007fe
600
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000601static int emulate_string_inst(struct pt_regs *regs, u32 instword)
602{
603 u8 rT = (instword >> 21) & 0x1f;
604 u8 rA = (instword >> 16) & 0x1f;
605 u8 NB_RB = (instword >> 11) & 0x1f;
606 u32 num_bytes;
607 unsigned long EA;
608 int pos = 0;
609
610 /* Early out if we are an invalid form of lswx */
611 if ((instword & INST_STRING_MASK) == INST_LSWX)
612 if ((rT == rA) || (rT == NB_RB))
613 return -EINVAL;
614
615 EA = (rA == 0) ? 0 : regs->gpr[rA];
616
617 switch (instword & INST_STRING_MASK) {
618 case INST_LSWX:
619 case INST_STSWX:
620 EA += NB_RB;
621 num_bytes = regs->xer & 0x7f;
622 break;
623 case INST_LSWI:
624 case INST_STSWI:
625 num_bytes = (NB_RB == 0) ? 32 : NB_RB;
626 break;
627 default:
628 return -EINVAL;
629 }
630
631 while (num_bytes != 0)
632 {
633 u8 val;
634 u32 shift = 8 * (3 - (pos & 0x3));
635
636 switch ((instword & INST_STRING_MASK)) {
637 case INST_LSWX:
638 case INST_LSWI:
639 if (get_user(val, (u8 __user *)EA))
640 return -EFAULT;
641 /* first time updating this reg,
642 * zero it out */
643 if (pos == 0)
644 regs->gpr[rT] = 0;
645 regs->gpr[rT] |= val << shift;
646 break;
647 case INST_STSWI:
648 case INST_STSWX:
649 val = regs->gpr[rT] >> shift;
650 if (put_user(val, (u8 __user *)EA))
651 return -EFAULT;
652 break;
653 }
654 /* move EA to next address */
655 EA += 1;
656 num_bytes--;
657
658 /* manage our position within the register */
659 if (++pos == 4) {
660 pos = 0;
661 if (++rT == 32)
662 rT = 0;
663 }
664 }
665
666 return 0;
667}
668
Will Schmidtc3412dc2006-08-30 13:11:38 -0500669static int emulate_popcntb_inst(struct pt_regs *regs, u32 instword)
670{
671 u32 ra,rs;
672 unsigned long tmp;
673
674 ra = (instword >> 16) & 0x1f;
675 rs = (instword >> 21) & 0x1f;
676
677 tmp = regs->gpr[rs];
678 tmp = tmp - ((tmp >> 1) & 0x5555555555555555ULL);
679 tmp = (tmp & 0x3333333333333333ULL) + ((tmp >> 2) & 0x3333333333333333ULL);
680 tmp = (tmp + (tmp >> 4)) & 0x0f0f0f0f0f0f0f0fULL;
681 regs->gpr[ra] = tmp;
682
683 return 0;
684}
685
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000686static int emulate_instruction(struct pt_regs *regs)
687{
688 u32 instword;
689 u32 rd;
690
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000691 if (!user_mode(regs) || (regs->msr & MSR_LE))
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000692 return -EINVAL;
693 CHECK_FULL_REGS(regs);
694
695 if (get_user(instword, (u32 __user *)(regs->nip)))
696 return -EFAULT;
697
698 /* Emulate the mfspr rD, PVR. */
699 if ((instword & INST_MFSPR_PVR_MASK) == INST_MFSPR_PVR) {
700 rd = (instword >> 21) & 0x1f;
701 regs->gpr[rd] = mfspr(SPRN_PVR);
702 return 0;
703 }
704
705 /* Emulating the dcba insn is just a no-op. */
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000706 if ((instword & INST_DCBA_MASK) == INST_DCBA)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000707 return 0;
708
709 /* Emulate the mcrxr insn. */
710 if ((instword & INST_MCRXR_MASK) == INST_MCRXR) {
Paul Mackerras86417782005-10-10 22:37:57 +1000711 int shift = (instword >> 21) & 0x1c;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000712 unsigned long msk = 0xf0000000UL >> shift;
713
714 regs->ccr = (regs->ccr & ~msk) | ((regs->xer >> shift) & msk);
715 regs->xer &= ~0xf0000000UL;
716 return 0;
717 }
718
719 /* Emulate load/store string insn. */
720 if ((instword & INST_STRING_GEN_MASK) == INST_STRING)
721 return emulate_string_inst(regs, instword);
722
Will Schmidtc3412dc2006-08-30 13:11:38 -0500723 /* Emulate the popcntb (Population Count Bytes) instruction. */
724 if ((instword & INST_POPCNTB_MASK) == INST_POPCNTB) {
725 return emulate_popcntb_inst(regs, instword);
726 }
727
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000728 return -EINVAL;
729}
730
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -0800731int is_valid_bugaddr(unsigned long addr)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000732{
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -0800733 return is_kernel_addr(addr);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000734}
735
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000736void __kprobes program_check_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000737{
738 unsigned int reason = get_reason(regs);
739 extern int do_mathemu(struct pt_regs *regs);
740
Kim Phillipsaa42c692006-12-08 02:43:30 -0600741 /* We can now get here via a FP Unavailable exception if the core
Kumar Gala04903a32007-02-07 01:13:32 -0600742 * has no FPU, in that case the reason flags will be 0 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000743
744 if (reason & REASON_FP) {
745 /* IEEE FP exception */
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000746 parse_fpe(regs);
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000747 return;
748 }
749 if (reason & REASON_TRAP) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000750 /* trap exception */
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000751 if (notify_die(DIE_BPT, "breakpoint", regs, 5, 5, SIGTRAP)
752 == NOTIFY_STOP)
753 return;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000754 if (debugger_bpt(regs))
755 return;
Jeremy Fitzhardinge73c9cea2006-12-08 03:30:41 -0800756
757 if (!(regs->msr & MSR_PR) && /* not user-mode */
758 report_bug(regs->nip) == BUG_TRAP_TYPE_WARN) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000759 regs->nip += 4;
760 return;
761 }
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000762 _exception(SIGTRAP, regs, TRAP_BRKPT, regs->nip);
763 return;
764 }
765
Paul Mackerrascd8a5672006-03-03 17:11:40 +1100766 local_irq_enable();
767
Kumar Gala04903a32007-02-07 01:13:32 -0600768#ifdef CONFIG_MATH_EMULATION
769 /* (reason & REASON_ILLEGAL) would be the obvious thing here,
770 * but there seems to be a hardware bug on the 405GP (RevD)
771 * that means ESR is sometimes set incorrectly - either to
772 * ESR_DST (!?) or 0. In the process of chasing this with the
773 * hardware people - not sure if it can happen on any illegal
774 * instruction or only on FP instructions, whether there is a
775 * pattern to occurences etc. -dgibson 31/Mar/2003 */
776 if (do_mathemu(regs) == 0) {
777 emulate_single_step(regs);
778 return;
779 }
780#endif /* CONFIG_MATH_EMULATION */
781
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000782 /* Try to emulate it if we should. */
783 if (reason & (REASON_ILLEGAL | REASON_PRIVILEGED)) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000784 switch (emulate_instruction(regs)) {
785 case 0:
786 regs->nip += 4;
787 emulate_single_step(regs);
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000788 return;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000789 case -EFAULT:
790 _exception(SIGSEGV, regs, SEGV_MAPERR, regs->nip);
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000791 return;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000792 }
793 }
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000794
795 if (reason & REASON_PRIVILEGED)
796 _exception(SIGILL, regs, ILL_PRVOPC, regs->nip);
797 else
798 _exception(SIGILL, regs, ILL_ILLOPC, regs->nip);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000799}
800
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000801void alignment_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000802{
Benjamin Herrenschmidt4393c4f2006-11-01 15:11:39 +1100803 int sig, code, fixed = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000804
Paul Mackerrase9370ae2006-06-07 16:15:39 +1000805 /* we don't implement logging of alignment exceptions */
806 if (!(current->thread.align_ctl & PR_UNALIGN_SIGBUS))
807 fixed = fix_alignment(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000808
809 if (fixed == 1) {
810 regs->nip += 4; /* skip over emulated instruction */
811 emulate_single_step(regs);
812 return;
813 }
814
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000815 /* Operand address was bad */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000816 if (fixed == -EFAULT) {
Benjamin Herrenschmidt4393c4f2006-11-01 15:11:39 +1100817 sig = SIGSEGV;
818 code = SEGV_ACCERR;
819 } else {
820 sig = SIGBUS;
821 code = BUS_ADRALN;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000822 }
Benjamin Herrenschmidt4393c4f2006-11-01 15:11:39 +1100823 if (user_mode(regs))
824 _exception(sig, regs, code, regs->dar);
825 else
826 bad_page_fault(regs, regs->dar, sig);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000827}
828
829void StackOverflow(struct pt_regs *regs)
830{
831 printk(KERN_CRIT "Kernel stack overflow in process %p, r1=%lx\n",
832 current, regs->gpr[1]);
833 debugger(regs);
834 show_regs(regs);
835 panic("kernel stack overflow");
836}
837
838void nonrecoverable_exception(struct pt_regs *regs)
839{
840 printk(KERN_ERR "Non-recoverable exception at PC=%lx MSR=%lx\n",
841 regs->nip, regs->msr);
842 debugger(regs);
843 die("nonrecoverable exception", regs, SIGKILL);
844}
845
846void trace_syscall(struct pt_regs *regs)
847{
848 printk("Task: %p(%d), PC: %08lX/%08lX, Syscall: %3ld, Result: %s%ld %s\n",
849 current, current->pid, regs->nip, regs->link, regs->gpr[0],
850 regs->ccr&0x10000000?"Error=":"", regs->gpr[3], print_tainted());
851}
852
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000853void kernel_fp_unavailable_exception(struct pt_regs *regs)
854{
855 printk(KERN_EMERG "Unrecoverable FP Unavailable Exception "
856 "%lx at %lx\n", regs->trap, regs->nip);
857 die("Unrecoverable FP Unavailable Exception", regs, SIGABRT);
858}
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000859
860void altivec_unavailable_exception(struct pt_regs *regs)
861{
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000862 if (user_mode(regs)) {
863 /* A user program has executed an altivec instruction,
864 but this kernel doesn't support altivec. */
865 _exception(SIGILL, regs, ILL_ILLOPC, regs->nip);
866 return;
867 }
Anton Blanchard6c4841c2006-10-13 11:41:00 +1000868
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000869 printk(KERN_EMERG "Unrecoverable VMX/Altivec Unavailable Exception "
870 "%lx at %lx\n", regs->trap, regs->nip);
871 die("Unrecoverable VMX/Altivec Unavailable Exception", regs, SIGABRT);
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000872}
873
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000874void performance_monitor_exception(struct pt_regs *regs)
875{
876 perf_irq(regs);
877}
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000878
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000879#ifdef CONFIG_8xx
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000880void SoftwareEmulation(struct pt_regs *regs)
881{
882 extern int do_mathemu(struct pt_regs *);
883 extern int Soft_emulate_8xx(struct pt_regs *);
884 int errcode;
885
886 CHECK_FULL_REGS(regs);
887
888 if (!user_mode(regs)) {
889 debugger(regs);
890 die("Kernel Mode Software FPU Emulation", regs, SIGFPE);
891 }
892
893#ifdef CONFIG_MATH_EMULATION
894 errcode = do_mathemu(regs);
895#else
896 errcode = Soft_emulate_8xx(regs);
897#endif
898 if (errcode) {
899 if (errcode > 0)
900 _exception(SIGFPE, regs, 0, 0);
901 else if (errcode == -EFAULT)
902 _exception(SIGSEGV, regs, 0, 0);
903 else
904 _exception(SIGILL, regs, ILL_ILLOPC, regs->nip);
905 } else
906 emulate_single_step(regs);
907}
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000908#endif /* CONFIG_8xx */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000909
910#if defined(CONFIG_40x) || defined(CONFIG_BOOKE)
911
912void DebugException(struct pt_regs *regs, unsigned long debug_status)
913{
914 if (debug_status & DBSR_IC) { /* instruction completion */
915 regs->msr &= ~MSR_DE;
916 if (user_mode(regs)) {
917 current->thread.dbcr0 &= ~DBCR0_IC;
918 } else {
919 /* Disable instruction completion */
920 mtspr(SPRN_DBCR0, mfspr(SPRN_DBCR0) & ~DBCR0_IC);
921 /* Clear the instruction completion event */
922 mtspr(SPRN_DBSR, DBSR_IC);
923 if (debugger_sstep(regs))
924 return;
925 }
926 _exception(SIGTRAP, regs, TRAP_TRACE, 0);
927 }
928}
929#endif /* CONFIG_4xx || CONFIG_BOOKE */
930
931#if !defined(CONFIG_TAU_INT)
932void TAUException(struct pt_regs *regs)
933{
934 printk("TAU trap at PC: %lx, MSR: %lx, vector=%lx %s\n",
935 regs->nip, regs->msr, regs->trap, print_tainted());
936}
937#endif /* CONFIG_INT_TAU */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000938
939#ifdef CONFIG_ALTIVEC
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000940void altivec_assist_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000941{
942 int err;
943
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000944 if (!user_mode(regs)) {
945 printk(KERN_EMERG "VMX/Altivec assist exception in kernel mode"
946 " at %lx\n", regs->nip);
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000947 die("Kernel VMX/Altivec assist exception", regs, SIGILL);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000948 }
949
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000950 flush_altivec_to_thread(current);
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000951
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000952 err = emulate_altivec(regs);
953 if (err == 0) {
954 regs->nip += 4; /* skip emulated instruction */
955 emulate_single_step(regs);
956 return;
957 }
958
959 if (err == -EFAULT) {
960 /* got an error reading the instruction */
961 _exception(SIGSEGV, regs, SEGV_ACCERR, regs->nip);
962 } else {
963 /* didn't recognize the instruction */
964 /* XXX quick hack for now: set the non-Java bit in the VSCR */
965 if (printk_ratelimit())
966 printk(KERN_ERR "Unrecognized altivec instruction "
967 "in %s at %lx\n", current->comm, regs->nip);
968 current->thread.vscr.u[3] |= 0x10000;
969 }
970}
971#endif /* CONFIG_ALTIVEC */
972
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000973#ifdef CONFIG_FSL_BOOKE
974void CacheLockingException(struct pt_regs *regs, unsigned long address,
975 unsigned long error_code)
976{
977 /* We treat cache locking instructions from the user
978 * as priv ops, in the future we could try to do
979 * something smarter
980 */
981 if (error_code & (ESR_DLK|ESR_ILK))
982 _exception(SIGILL, regs, ILL_PRVOPC, regs->nip);
983 return;
984}
985#endif /* CONFIG_FSL_BOOKE */
986
987#ifdef CONFIG_SPE
988void SPEFloatingPointException(struct pt_regs *regs)
989{
990 unsigned long spefscr;
991 int fpexc_mode;
992 int code = 0;
993
994 spefscr = current->thread.spefscr;
995 fpexc_mode = current->thread.fpexc_mode;
996
997 /* Hardware does not neccessarily set sticky
998 * underflow/overflow/invalid flags */
999 if ((spefscr & SPEFSCR_FOVF) && (fpexc_mode & PR_FP_EXC_OVF)) {
1000 code = FPE_FLTOVF;
1001 spefscr |= SPEFSCR_FOVFS;
1002 }
1003 else if ((spefscr & SPEFSCR_FUNF) && (fpexc_mode & PR_FP_EXC_UND)) {
1004 code = FPE_FLTUND;
1005 spefscr |= SPEFSCR_FUNFS;
1006 }
1007 else if ((spefscr & SPEFSCR_FDBZ) && (fpexc_mode & PR_FP_EXC_DIV))
1008 code = FPE_FLTDIV;
1009 else if ((spefscr & SPEFSCR_FINV) && (fpexc_mode & PR_FP_EXC_INV)) {
1010 code = FPE_FLTINV;
1011 spefscr |= SPEFSCR_FINVS;
1012 }
1013 else if ((spefscr & (SPEFSCR_FG | SPEFSCR_FX)) && (fpexc_mode & PR_FP_EXC_RES))
1014 code = FPE_FLTRES;
1015
1016 current->thread.spefscr = spefscr;
1017
1018 _exception(SIGFPE, regs, code, regs->nip);
1019 return;
1020}
1021#endif
1022
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001023/*
1024 * We enter here if we get an unrecoverable exception, that is, one
1025 * that happened at a point where the RI (recoverable interrupt) bit
1026 * in the MSR is 0. This indicates that SRR0/1 are live, and that
1027 * we therefore lost state by taking this exception.
1028 */
1029void unrecoverable_exception(struct pt_regs *regs)
1030{
1031 printk(KERN_EMERG "Unrecoverable exception %lx at %lx\n",
1032 regs->trap, regs->nip);
1033 die("Unrecoverable exception", regs, SIGABRT);
1034}
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001035
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001036#ifdef CONFIG_BOOKE_WDT
1037/*
1038 * Default handler for a Watchdog exception,
1039 * spins until a reboot occurs
1040 */
1041void __attribute__ ((weak)) WatchdogHandler(struct pt_regs *regs)
1042{
1043 /* Generic WatchdogHandler, implement your own */
1044 mtspr(SPRN_TCR, mfspr(SPRN_TCR)&(~TCR_WIE));
1045 return;
1046}
1047
1048void WatchdogException(struct pt_regs *regs)
1049{
1050 printk (KERN_EMERG "PowerPC Book-E Watchdog Exception\n");
1051 WatchdogHandler(regs);
1052}
1053#endif
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001054
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001055/*
1056 * We enter here if we discover during exception entry that we are
1057 * running in supervisor mode with a userspace value in the stack pointer.
1058 */
1059void kernel_bad_stack(struct pt_regs *regs)
1060{
1061 printk(KERN_EMERG "Bad kernel stack pointer %lx at %lx\n",
1062 regs->gpr[1], regs->nip);
1063 die("Bad kernel stack pointer", regs, SIGABRT);
1064}
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001065
1066void __init trap_init(void)
1067{
1068}