blob: 52f5659534f48042da4f68ddaad02806f70a3a0c [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
17#include <linux/config.h>
18#include <linux/errno.h>
19#include <linux/sched.h>
20#include <linux/kernel.h>
21#include <linux/mm.h>
22#include <linux/stddef.h>
23#include <linux/unistd.h>
Paul Mackerras8dad3f92005-10-06 13:27:05 +100024#include <linux/ptrace.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100025#include <linux/slab.h>
26#include <linux/user.h>
27#include <linux/a.out.h>
28#include <linux/interrupt.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100029#include <linux/init.h>
30#include <linux/module.h>
Paul Mackerras8dad3f92005-10-06 13:27:05 +100031#include <linux/prctl.h>
Paul Mackerras14cf11a2005-09-26 16:04:21 +100032#include <linux/delay.h>
33#include <linux/kprobes.h>
Michael Ellermancc532912005-12-04 18:39:43 +110034#include <linux/kexec.h>
Michael Hanselmann5474c122006-06-25 05:47:08 -070035#include <linux/backlight.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
55
Paul Mackerras86417782005-10-10 22:37:57 +100056#ifdef CONFIG_PPC64 /* XXX */
57#define _IO_BASE pci_io_base
58#endif
59
Paul Mackerras14cf11a2005-09-26 16:04:21 +100060#ifdef CONFIG_DEBUGGER
61int (*__debugger)(struct pt_regs *regs);
62int (*__debugger_ipi)(struct pt_regs *regs);
63int (*__debugger_bpt)(struct pt_regs *regs);
64int (*__debugger_sstep)(struct pt_regs *regs);
65int (*__debugger_iabr_match)(struct pt_regs *regs);
66int (*__debugger_dabr_match)(struct pt_regs *regs);
67int (*__debugger_fault_handler)(struct pt_regs *regs);
68
69EXPORT_SYMBOL(__debugger);
70EXPORT_SYMBOL(__debugger_ipi);
71EXPORT_SYMBOL(__debugger_bpt);
72EXPORT_SYMBOL(__debugger_sstep);
73EXPORT_SYMBOL(__debugger_iabr_match);
74EXPORT_SYMBOL(__debugger_dabr_match);
75EXPORT_SYMBOL(__debugger_fault_handler);
76#endif
77
Alan Sterne041c682006-03-27 01:16:30 -080078ATOMIC_NOTIFIER_HEAD(powerpc_die_chain);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100079
80int register_die_notifier(struct notifier_block *nb)
81{
Alan Sterne041c682006-03-27 01:16:30 -080082 return atomic_notifier_chain_register(&powerpc_die_chain, nb);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100083}
Alan Sterne041c682006-03-27 01:16:30 -080084EXPORT_SYMBOL(register_die_notifier);
85
86int unregister_die_notifier(struct notifier_block *nb)
87{
88 return atomic_notifier_chain_unregister(&powerpc_die_chain, nb);
89}
90EXPORT_SYMBOL(unregister_die_notifier);
Paul Mackerras14cf11a2005-09-26 16:04:21 +100091
92/*
93 * Trap & Exception support
94 */
95
96static DEFINE_SPINLOCK(die_lock);
97
98int die(const char *str, struct pt_regs *regs, long err)
99{
Michael Ellermancc532912005-12-04 18:39:43 +1100100 static int die_counter, crash_dump_start = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000101
102 if (debugger(regs))
103 return 1;
104
105 console_verbose();
106 spin_lock_irq(&die_lock);
107 bust_spinlocks(1);
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000108#ifdef CONFIG_PMAC_BACKLIGHT
Michael Hanselmann5474c122006-06-25 05:47:08 -0700109 mutex_lock(&pmac_backlight_mutex);
110 if (machine_is(powermac) && pmac_backlight) {
111 struct backlight_properties *props;
112
113 down(&pmac_backlight->sem);
114 props = pmac_backlight->props;
115 props->brightness = props->max_brightness;
116 props->power = FB_BLANK_UNBLANK;
117 props->update_status(pmac_backlight);
118 up(&pmac_backlight->sem);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000119 }
Michael Hanselmann5474c122006-06-25 05:47:08 -0700120 mutex_unlock(&pmac_backlight_mutex);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000121#endif
122 printk("Oops: %s, sig: %ld [#%d]\n", str, err, ++die_counter);
123#ifdef CONFIG_PREEMPT
124 printk("PREEMPT ");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000125#endif
126#ifdef CONFIG_SMP
127 printk("SMP NR_CPUS=%d ", NR_CPUS);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000128#endif
129#ifdef CONFIG_DEBUG_PAGEALLOC
130 printk("DEBUG_PAGEALLOC ");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000131#endif
132#ifdef CONFIG_NUMA
133 printk("NUMA ");
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000134#endif
Benjamin Herrenschmidte8222502006-03-28 23:15:54 +1100135 printk("%s\n", ppc_md.name ? "" : ppc_md.name);
136
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000137 print_modules();
138 show_regs(regs);
139 bust_spinlocks(0);
Michael Ellermancc532912005-12-04 18:39:43 +1100140
141 if (!crash_dump_start && kexec_should_crash(current)) {
142 crash_dump_start = 1;
143 spin_unlock_irq(&die_lock);
144 crash_kexec(regs);
145 /* NOTREACHED */
146 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000147 spin_unlock_irq(&die_lock);
Michael Ellermancc532912005-12-04 18:39:43 +1100148 if (crash_dump_start)
149 /*
150 * Only for soft-reset: Other CPUs will be responded to an IPI
151 * sent by first kexec CPU.
152 */
153 for(;;)
154 ;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000155
156 if (in_interrupt())
157 panic("Fatal exception in interrupt");
158
159 if (panic_on_oops) {
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000160#ifdef CONFIG_PPC64
161 printk(KERN_EMERG "Fatal exception: panic in 5 seconds\n");
162 ssleep(5);
163#endif
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000164 panic("Fatal exception");
165 }
166 do_exit(err);
167
168 return 0;
169}
170
171void _exception(int signr, struct pt_regs *regs, int code, unsigned long addr)
172{
173 siginfo_t info;
174
175 if (!user_mode(regs)) {
176 if (die("Exception in kernel mode", regs, signr))
177 return;
178 }
179
180 memset(&info, 0, sizeof(info));
181 info.si_signo = signr;
182 info.si_code = code;
183 info.si_addr = (void __user *) addr;
184 force_sig_info(signr, &info, current);
185
186 /*
187 * Init gets no signals that it doesn't have a handler for.
188 * That's all very well, but if it has caused a synchronous
189 * exception and we ignore the resulting signal, it will just
190 * generate the same exception over and over again and we get
191 * nowhere. Better to kill it and let the kernel panic.
192 */
193 if (current->pid == 1) {
194 __sighandler_t handler;
195
196 spin_lock_irq(&current->sighand->siglock);
197 handler = current->sighand->action[signr-1].sa.sa_handler;
198 spin_unlock_irq(&current->sighand->siglock);
199 if (handler == SIG_DFL) {
200 /* init has generated a synchronous exception
201 and it doesn't have a handler for the signal */
202 printk(KERN_CRIT "init has generated signal %d "
203 "but has no handler for it\n", signr);
204 do_exit(signr);
205 }
206 }
207}
208
209#ifdef CONFIG_PPC64
210void system_reset_exception(struct pt_regs *regs)
211{
212 /* See if any machine dependent calls */
Arnd Bergmannc902be72006-01-04 19:55:53 +0000213 if (ppc_md.system_reset_exception) {
214 if (ppc_md.system_reset_exception(regs))
215 return;
216 }
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000217
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000218 die("System Reset", regs, SIGABRT);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000219
220 /* Must die if the interrupt is not recoverable */
221 if (!(regs->msr & MSR_RI))
222 panic("Unrecoverable System Reset");
223
224 /* What should we do here? We could issue a shutdown or hard reset. */
225}
226#endif
227
228/*
229 * I/O accesses can cause machine checks on powermacs.
230 * Check if the NIP corresponds to the address of a sync
231 * instruction for which there is an entry in the exception
232 * table.
233 * Note that the 601 only takes a machine check on TEA
234 * (transfer error ack) signal assertion, and does not
235 * set any of the top 16 bits of SRR1.
236 * -- paulus.
237 */
238static inline int check_io_access(struct pt_regs *regs)
239{
Kumar Gala1a6a4ff2006-03-30 21:11:15 -0600240#if defined(CONFIG_PPC_PMAC) && defined(CONFIG_PPC32)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000241 unsigned long msr = regs->msr;
242 const struct exception_table_entry *entry;
243 unsigned int *nip = (unsigned int *)regs->nip;
244
245 if (((msr & 0xffff0000) == 0 || (msr & (0x80000 | 0x40000)))
246 && (entry = search_exception_tables(regs->nip)) != NULL) {
247 /*
248 * Check that it's a sync instruction, or somewhere
249 * in the twi; isync; nop sequence that inb/inw/inl uses.
250 * As the address is in the exception table
251 * we should be able to read the instr there.
252 * For the debug message, we look at the preceding
253 * load or store.
254 */
255 if (*nip == 0x60000000) /* nop */
256 nip -= 2;
257 else if (*nip == 0x4c00012c) /* isync */
258 --nip;
259 if (*nip == 0x7c0004ac || (*nip >> 26) == 3) {
260 /* sync or twi */
261 unsigned int rb;
262
263 --nip;
264 rb = (*nip >> 11) & 0x1f;
265 printk(KERN_DEBUG "%s bad port %lx at %p\n",
266 (*nip & 0x100)? "OUT to": "IN from",
267 regs->gpr[rb] - _IO_BASE, nip);
268 regs->msr |= MSR_RI;
269 regs->nip = entry->fixup;
270 return 1;
271 }
272 }
Kumar Gala1a6a4ff2006-03-30 21:11:15 -0600273#endif /* CONFIG_PPC_PMAC && CONFIG_PPC32 */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000274 return 0;
275}
276
277#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
278/* On 4xx, the reason for the machine check or program exception
279 is in the ESR. */
280#define get_reason(regs) ((regs)->dsisr)
281#ifndef CONFIG_FSL_BOOKE
282#define get_mc_reason(regs) ((regs)->dsisr)
283#else
284#define get_mc_reason(regs) (mfspr(SPRN_MCSR))
285#endif
286#define REASON_FP ESR_FP
287#define REASON_ILLEGAL (ESR_PIL | ESR_PUO)
288#define REASON_PRIVILEGED ESR_PPR
289#define REASON_TRAP ESR_PTR
290
291/* single-step stuff */
292#define single_stepping(regs) (current->thread.dbcr0 & DBCR0_IC)
293#define clear_single_step(regs) (current->thread.dbcr0 &= ~DBCR0_IC)
294
295#else
296/* On non-4xx, the reason for the machine check or program
297 exception is in the MSR. */
298#define get_reason(regs) ((regs)->msr)
299#define get_mc_reason(regs) ((regs)->msr)
300#define REASON_FP 0x100000
301#define REASON_ILLEGAL 0x80000
302#define REASON_PRIVILEGED 0x40000
303#define REASON_TRAP 0x20000
304
305#define single_stepping(regs) ((regs)->msr & MSR_SE)
306#define clear_single_step(regs) ((regs)->msr &= ~MSR_SE)
307#endif
308
309/*
310 * This is "fall-back" implementation for configurations
311 * which don't provide platform-specific machine check info
312 */
313void __attribute__ ((weak))
314platform_machine_check(struct pt_regs *regs)
315{
316}
317
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000318void machine_check_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000319{
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000320 int recover = 0;
Kumar Gala1a6a4ff2006-03-30 21:11:15 -0600321 unsigned long reason = get_mc_reason(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000322
323 /* See if any machine dependent calls */
324 if (ppc_md.machine_check_exception)
325 recover = ppc_md.machine_check_exception(regs);
326
327 if (recover)
328 return;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000329
330 if (user_mode(regs)) {
331 regs->msr |= MSR_RI;
332 _exception(SIGBUS, regs, BUS_ADRERR, regs->nip);
333 return;
334 }
335
336#if defined(CONFIG_8xx) && defined(CONFIG_PCI)
337 /* the qspan pci read routines can cause machine checks -- Cort */
338 bad_page_fault(regs, regs->dar, SIGBUS);
339 return;
340#endif
341
342 if (debugger_fault_handler(regs)) {
343 regs->msr |= MSR_RI;
344 return;
345 }
346
347 if (check_io_access(regs))
348 return;
349
350#if defined(CONFIG_4xx) && !defined(CONFIG_440A)
351 if (reason & ESR_IMCP) {
352 printk("Instruction");
353 mtspr(SPRN_ESR, reason & ~ESR_IMCP);
354 } else
355 printk("Data");
356 printk(" machine check in kernel mode.\n");
357#elif defined(CONFIG_440A)
358 printk("Machine check in kernel mode.\n");
359 if (reason & ESR_IMCP){
360 printk("Instruction Synchronous Machine Check exception\n");
361 mtspr(SPRN_ESR, reason & ~ESR_IMCP);
362 }
363 else {
364 u32 mcsr = mfspr(SPRN_MCSR);
365 if (mcsr & MCSR_IB)
366 printk("Instruction Read PLB Error\n");
367 if (mcsr & MCSR_DRB)
368 printk("Data Read PLB Error\n");
369 if (mcsr & MCSR_DWB)
370 printk("Data Write PLB Error\n");
371 if (mcsr & MCSR_TLBP)
372 printk("TLB Parity Error\n");
373 if (mcsr & MCSR_ICP){
374 flush_instruction_cache();
375 printk("I-Cache Parity Error\n");
376 }
377 if (mcsr & MCSR_DCSP)
378 printk("D-Cache Search Parity Error\n");
379 if (mcsr & MCSR_DCFP)
380 printk("D-Cache Flush Parity Error\n");
381 if (mcsr & MCSR_IMPE)
382 printk("Machine Check exception is imprecise\n");
383
384 /* Clear MCSR */
385 mtspr(SPRN_MCSR, mcsr);
386 }
387#elif defined (CONFIG_E500)
388 printk("Machine check in kernel mode.\n");
389 printk("Caused by (from MCSR=%lx): ", reason);
390
391 if (reason & MCSR_MCP)
392 printk("Machine Check Signal\n");
393 if (reason & MCSR_ICPERR)
394 printk("Instruction Cache Parity Error\n");
395 if (reason & MCSR_DCP_PERR)
396 printk("Data Cache Push Parity Error\n");
397 if (reason & MCSR_DCPERR)
398 printk("Data Cache Parity Error\n");
399 if (reason & MCSR_GL_CI)
400 printk("Guarded Load or Cache-Inhibited stwcx.\n");
401 if (reason & MCSR_BUS_IAERR)
402 printk("Bus - Instruction Address Error\n");
403 if (reason & MCSR_BUS_RAERR)
404 printk("Bus - Read Address Error\n");
405 if (reason & MCSR_BUS_WAERR)
406 printk("Bus - Write Address Error\n");
407 if (reason & MCSR_BUS_IBERR)
408 printk("Bus - Instruction Data Error\n");
409 if (reason & MCSR_BUS_RBERR)
410 printk("Bus - Read Data Bus Error\n");
411 if (reason & MCSR_BUS_WBERR)
412 printk("Bus - Read Data Bus Error\n");
413 if (reason & MCSR_BUS_IPERR)
414 printk("Bus - Instruction Parity Error\n");
415 if (reason & MCSR_BUS_RPERR)
416 printk("Bus - Read Parity Error\n");
417#elif defined (CONFIG_E200)
418 printk("Machine check in kernel mode.\n");
419 printk("Caused by (from MCSR=%lx): ", reason);
420
421 if (reason & MCSR_MCP)
422 printk("Machine Check Signal\n");
423 if (reason & MCSR_CP_PERR)
424 printk("Cache Push Parity Error\n");
425 if (reason & MCSR_CPERR)
426 printk("Cache Parity Error\n");
427 if (reason & MCSR_EXCP_ERR)
428 printk("ISI, ITLB, or Bus Error on first instruction fetch for an exception handler\n");
429 if (reason & MCSR_BUS_IRERR)
430 printk("Bus - Read Bus Error on instruction fetch\n");
431 if (reason & MCSR_BUS_DRERR)
432 printk("Bus - Read Bus Error on data load\n");
433 if (reason & MCSR_BUS_WRERR)
434 printk("Bus - Write Bus Error on buffered store or cache line push\n");
435#else /* !CONFIG_4xx && !CONFIG_E500 && !CONFIG_E200 */
436 printk("Machine check in kernel mode.\n");
437 printk("Caused by (from SRR1=%lx): ", reason);
438 switch (reason & 0x601F0000) {
439 case 0x80000:
440 printk("Machine check signal\n");
441 break;
442 case 0: /* for 601 */
443 case 0x40000:
444 case 0x140000: /* 7450 MSS error and TEA */
445 printk("Transfer error ack signal\n");
446 break;
447 case 0x20000:
448 printk("Data parity error signal\n");
449 break;
450 case 0x10000:
451 printk("Address parity error signal\n");
452 break;
453 case 0x20000000:
454 printk("L1 Data Cache error\n");
455 break;
456 case 0x40000000:
457 printk("L1 Instruction Cache error\n");
458 break;
459 case 0x00100000:
460 printk("L2 data cache parity error\n");
461 break;
462 default:
463 printk("Unknown values in msr\n");
464 }
465#endif /* CONFIG_4xx */
466
467 /*
468 * Optional platform-provided routine to print out
469 * additional info, e.g. bus error registers.
470 */
471 platform_machine_check(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000472
473 if (debugger_fault_handler(regs))
474 return;
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000475 die("Machine check", regs, SIGBUS);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000476
477 /* Must die if the interrupt is not recoverable */
478 if (!(regs->msr & MSR_RI))
479 panic("Unrecoverable Machine check");
480}
481
482void SMIException(struct pt_regs *regs)
483{
484 die("System Management Interrupt", regs, SIGABRT);
485}
486
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000487void unknown_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000488{
489 printk("Bad trap at PC: %lx, SR: %lx, vector=%lx\n",
490 regs->nip, regs->msr, regs->trap);
491
492 _exception(SIGTRAP, regs, 0, 0);
493}
494
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000495void instruction_breakpoint_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000496{
497 if (notify_die(DIE_IABR_MATCH, "iabr_match", regs, 5,
498 5, SIGTRAP) == NOTIFY_STOP)
499 return;
500 if (debugger_iabr_match(regs))
501 return;
502 _exception(SIGTRAP, regs, TRAP_BRKPT, regs->nip);
503}
504
505void RunModeException(struct pt_regs *regs)
506{
507 _exception(SIGTRAP, regs, 0, 0);
508}
509
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000510void __kprobes single_step_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000511{
512 regs->msr &= ~(MSR_SE | MSR_BE); /* Turn off 'trace' bits */
513
514 if (notify_die(DIE_SSTEP, "single_step", regs, 5,
515 5, SIGTRAP) == NOTIFY_STOP)
516 return;
517 if (debugger_sstep(regs))
518 return;
519
520 _exception(SIGTRAP, regs, TRAP_TRACE, regs->nip);
521}
522
523/*
524 * After we have successfully emulated an instruction, we have to
525 * check if the instruction was being single-stepped, and if so,
526 * pretend we got a single-step exception. This was pointed out
527 * by Kumar Gala. -- paulus
528 */
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000529static void emulate_single_step(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000530{
531 if (single_stepping(regs)) {
532 clear_single_step(regs);
533 _exception(SIGTRAP, regs, TRAP_TRACE, 0);
534 }
535}
536
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000537static void parse_fpe(struct pt_regs *regs)
538{
539 int code = 0;
540 unsigned long fpscr;
541
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000542 flush_fp_to_thread(current);
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000543
David Gibson25c8a782005-10-27 16:27:25 +1000544 fpscr = current->thread.fpscr.val;
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000545
546 /* Invalid operation */
547 if ((fpscr & FPSCR_VE) && (fpscr & FPSCR_VX))
548 code = FPE_FLTINV;
549
550 /* Overflow */
551 else if ((fpscr & FPSCR_OE) && (fpscr & FPSCR_OX))
552 code = FPE_FLTOVF;
553
554 /* Underflow */
555 else if ((fpscr & FPSCR_UE) && (fpscr & FPSCR_UX))
556 code = FPE_FLTUND;
557
558 /* Divide by zero */
559 else if ((fpscr & FPSCR_ZE) && (fpscr & FPSCR_ZX))
560 code = FPE_FLTDIV;
561
562 /* Inexact result */
563 else if ((fpscr & FPSCR_XE) && (fpscr & FPSCR_XX))
564 code = FPE_FLTRES;
565
566 _exception(SIGFPE, regs, code, regs->nip);
567}
568
569/*
570 * Illegal instruction emulation support. Originally written to
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000571 * provide the PVR to user applications using the mfspr rd, PVR.
572 * Return non-zero if we can't emulate, or -EFAULT if the associated
573 * memory access caused an access fault. Return zero on success.
574 *
575 * There are a couple of ways to do this, either "decode" the instruction
576 * or directly match lots of bits. In this case, matching lots of
577 * bits is faster and easier.
Paul Mackerras86417782005-10-10 22:37:57 +1000578 *
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000579 */
580#define INST_MFSPR_PVR 0x7c1f42a6
581#define INST_MFSPR_PVR_MASK 0xfc1fffff
582
583#define INST_DCBA 0x7c0005ec
584#define INST_DCBA_MASK 0x7c0007fe
585
586#define INST_MCRXR 0x7c000400
587#define INST_MCRXR_MASK 0x7c0007fe
588
589#define INST_STRING 0x7c00042a
590#define INST_STRING_MASK 0x7c0007fe
591#define INST_STRING_GEN_MASK 0x7c00067e
592#define INST_LSWI 0x7c0004aa
593#define INST_LSWX 0x7c00042a
594#define INST_STSWI 0x7c0005aa
595#define INST_STSWX 0x7c00052a
596
597static int emulate_string_inst(struct pt_regs *regs, u32 instword)
598{
599 u8 rT = (instword >> 21) & 0x1f;
600 u8 rA = (instword >> 16) & 0x1f;
601 u8 NB_RB = (instword >> 11) & 0x1f;
602 u32 num_bytes;
603 unsigned long EA;
604 int pos = 0;
605
606 /* Early out if we are an invalid form of lswx */
607 if ((instword & INST_STRING_MASK) == INST_LSWX)
608 if ((rT == rA) || (rT == NB_RB))
609 return -EINVAL;
610
611 EA = (rA == 0) ? 0 : regs->gpr[rA];
612
613 switch (instword & INST_STRING_MASK) {
614 case INST_LSWX:
615 case INST_STSWX:
616 EA += NB_RB;
617 num_bytes = regs->xer & 0x7f;
618 break;
619 case INST_LSWI:
620 case INST_STSWI:
621 num_bytes = (NB_RB == 0) ? 32 : NB_RB;
622 break;
623 default:
624 return -EINVAL;
625 }
626
627 while (num_bytes != 0)
628 {
629 u8 val;
630 u32 shift = 8 * (3 - (pos & 0x3));
631
632 switch ((instword & INST_STRING_MASK)) {
633 case INST_LSWX:
634 case INST_LSWI:
635 if (get_user(val, (u8 __user *)EA))
636 return -EFAULT;
637 /* first time updating this reg,
638 * zero it out */
639 if (pos == 0)
640 regs->gpr[rT] = 0;
641 regs->gpr[rT] |= val << shift;
642 break;
643 case INST_STSWI:
644 case INST_STSWX:
645 val = regs->gpr[rT] >> shift;
646 if (put_user(val, (u8 __user *)EA))
647 return -EFAULT;
648 break;
649 }
650 /* move EA to next address */
651 EA += 1;
652 num_bytes--;
653
654 /* manage our position within the register */
655 if (++pos == 4) {
656 pos = 0;
657 if (++rT == 32)
658 rT = 0;
659 }
660 }
661
662 return 0;
663}
664
665static int emulate_instruction(struct pt_regs *regs)
666{
667 u32 instword;
668 u32 rd;
669
Paul Mackerrasfab5db92006-06-07 16:14:40 +1000670 if (!user_mode(regs) || (regs->msr & MSR_LE))
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000671 return -EINVAL;
672 CHECK_FULL_REGS(regs);
673
674 if (get_user(instword, (u32 __user *)(regs->nip)))
675 return -EFAULT;
676
677 /* Emulate the mfspr rD, PVR. */
678 if ((instword & INST_MFSPR_PVR_MASK) == INST_MFSPR_PVR) {
679 rd = (instword >> 21) & 0x1f;
680 regs->gpr[rd] = mfspr(SPRN_PVR);
681 return 0;
682 }
683
684 /* Emulating the dcba insn is just a no-op. */
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000685 if ((instword & INST_DCBA_MASK) == INST_DCBA)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000686 return 0;
687
688 /* Emulate the mcrxr insn. */
689 if ((instword & INST_MCRXR_MASK) == INST_MCRXR) {
Paul Mackerras86417782005-10-10 22:37:57 +1000690 int shift = (instword >> 21) & 0x1c;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000691 unsigned long msk = 0xf0000000UL >> shift;
692
693 regs->ccr = (regs->ccr & ~msk) | ((regs->xer >> shift) & msk);
694 regs->xer &= ~0xf0000000UL;
695 return 0;
696 }
697
698 /* Emulate load/store string insn. */
699 if ((instword & INST_STRING_GEN_MASK) == INST_STRING)
700 return emulate_string_inst(regs, instword);
701
702 return -EINVAL;
703}
704
705/*
706 * Look through the list of trap instructions that are used for BUG(),
707 * BUG_ON() and WARN_ON() and see if we hit one. At this point we know
708 * that the exception was caused by a trap instruction of some kind.
709 * Returns 1 if we should continue (i.e. it was a WARN_ON) or 0
710 * otherwise.
711 */
712extern struct bug_entry __start___bug_table[], __stop___bug_table[];
713
714#ifndef CONFIG_MODULES
715#define module_find_bug(x) NULL
716#endif
717
718struct bug_entry *find_bug(unsigned long bugaddr)
719{
720 struct bug_entry *bug;
721
722 for (bug = __start___bug_table; bug < __stop___bug_table; ++bug)
723 if (bugaddr == bug->bug_addr)
724 return bug;
725 return module_find_bug(bugaddr);
726}
727
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000728static int check_bug_trap(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000729{
730 struct bug_entry *bug;
731 unsigned long addr;
732
733 if (regs->msr & MSR_PR)
734 return 0; /* not in kernel */
735 addr = regs->nip; /* address of trap instruction */
736 if (addr < PAGE_OFFSET)
737 return 0;
738 bug = find_bug(regs->nip);
739 if (bug == NULL)
740 return 0;
741 if (bug->line & BUG_WARNING_TRAP) {
742 /* this is a WARN_ON rather than BUG/BUG_ON */
Paul Mackerras104dd652005-11-02 15:19:47 +1100743 printk(KERN_ERR "Badness in %s at %s:%ld\n",
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000744 bug->function, bug->file,
745 bug->line & ~BUG_WARNING_TRAP);
746 dump_stack();
747 return 1;
748 }
Paul Mackerras104dd652005-11-02 15:19:47 +1100749 printk(KERN_CRIT "kernel BUG in %s at %s:%ld!\n",
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000750 bug->function, bug->file, bug->line);
751
752 return 0;
753}
754
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000755void __kprobes program_check_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000756{
757 unsigned int reason = get_reason(regs);
758 extern int do_mathemu(struct pt_regs *regs);
759
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000760#ifdef CONFIG_MATH_EMULATION
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000761 /* (reason & REASON_ILLEGAL) would be the obvious thing here,
762 * but there seems to be a hardware bug on the 405GP (RevD)
763 * that means ESR is sometimes set incorrectly - either to
764 * ESR_DST (!?) or 0. In the process of chasing this with the
765 * hardware people - not sure if it can happen on any illegal
766 * instruction or only on FP instructions, whether there is a
767 * pattern to occurences etc. -dgibson 31/Mar/2003 */
768 if (!(reason & REASON_TRAP) && do_mathemu(regs) == 0) {
769 emulate_single_step(regs);
770 return;
771 }
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000772#endif /* CONFIG_MATH_EMULATION */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000773
774 if (reason & REASON_FP) {
775 /* IEEE FP exception */
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000776 parse_fpe(regs);
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000777 return;
778 }
779 if (reason & REASON_TRAP) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000780 /* trap exception */
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000781 if (notify_die(DIE_BPT, "breakpoint", regs, 5, 5, SIGTRAP)
782 == NOTIFY_STOP)
783 return;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000784 if (debugger_bpt(regs))
785 return;
786 if (check_bug_trap(regs)) {
787 regs->nip += 4;
788 return;
789 }
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000790 _exception(SIGTRAP, regs, TRAP_BRKPT, regs->nip);
791 return;
792 }
793
Paul Mackerrascd8a5672006-03-03 17:11:40 +1100794 local_irq_enable();
795
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000796 /* Try to emulate it if we should. */
797 if (reason & (REASON_ILLEGAL | REASON_PRIVILEGED)) {
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000798 switch (emulate_instruction(regs)) {
799 case 0:
800 regs->nip += 4;
801 emulate_single_step(regs);
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000802 return;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000803 case -EFAULT:
804 _exception(SIGSEGV, regs, SEGV_MAPERR, regs->nip);
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000805 return;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000806 }
807 }
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000808
809 if (reason & REASON_PRIVILEGED)
810 _exception(SIGILL, regs, ILL_PRVOPC, regs->nip);
811 else
812 _exception(SIGILL, regs, ILL_ILLOPC, regs->nip);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000813}
814
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000815void alignment_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000816{
Paul Mackerrase9370ae2006-06-07 16:15:39 +1000817 int fixed = 0;
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000818
Paul Mackerrase9370ae2006-06-07 16:15:39 +1000819 /* we don't implement logging of alignment exceptions */
820 if (!(current->thread.align_ctl & PR_UNALIGN_SIGBUS))
821 fixed = fix_alignment(regs);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000822
823 if (fixed == 1) {
824 regs->nip += 4; /* skip over emulated instruction */
825 emulate_single_step(regs);
826 return;
827 }
828
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000829 /* Operand address was bad */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000830 if (fixed == -EFAULT) {
831 if (user_mode(regs))
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000832 _exception(SIGSEGV, regs, SEGV_ACCERR, regs->dar);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000833 else
834 /* Search exception table */
835 bad_page_fault(regs, regs->dar, SIGSEGV);
836 return;
837 }
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000838 _exception(SIGBUS, regs, BUS_ADRALN, regs->dar);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000839}
840
841void StackOverflow(struct pt_regs *regs)
842{
843 printk(KERN_CRIT "Kernel stack overflow in process %p, r1=%lx\n",
844 current, regs->gpr[1]);
845 debugger(regs);
846 show_regs(regs);
847 panic("kernel stack overflow");
848}
849
850void nonrecoverable_exception(struct pt_regs *regs)
851{
852 printk(KERN_ERR "Non-recoverable exception at PC=%lx MSR=%lx\n",
853 regs->nip, regs->msr);
854 debugger(regs);
855 die("nonrecoverable exception", regs, SIGKILL);
856}
857
858void trace_syscall(struct pt_regs *regs)
859{
860 printk("Task: %p(%d), PC: %08lX/%08lX, Syscall: %3ld, Result: %s%ld %s\n",
861 current, current->pid, regs->nip, regs->link, regs->gpr[0],
862 regs->ccr&0x10000000?"Error=":"", regs->gpr[3], print_tainted());
863}
864
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000865void kernel_fp_unavailable_exception(struct pt_regs *regs)
866{
867 printk(KERN_EMERG "Unrecoverable FP Unavailable Exception "
868 "%lx at %lx\n", regs->trap, regs->nip);
869 die("Unrecoverable FP Unavailable Exception", regs, SIGABRT);
870}
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000871
872void altivec_unavailable_exception(struct pt_regs *regs)
873{
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000874#if !defined(CONFIG_ALTIVEC)
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000875 if (user_mode(regs)) {
876 /* A user program has executed an altivec instruction,
877 but this kernel doesn't support altivec. */
878 _exception(SIGILL, regs, ILL_ILLOPC, regs->nip);
879 return;
880 }
881#endif
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000882 printk(KERN_EMERG "Unrecoverable VMX/Altivec Unavailable Exception "
883 "%lx at %lx\n", regs->trap, regs->nip);
884 die("Unrecoverable VMX/Altivec Unavailable Exception", regs, SIGABRT);
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000885}
886
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000887void performance_monitor_exception(struct pt_regs *regs)
888{
889 perf_irq(regs);
890}
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000891
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000892#ifdef CONFIG_8xx
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000893void SoftwareEmulation(struct pt_regs *regs)
894{
895 extern int do_mathemu(struct pt_regs *);
896 extern int Soft_emulate_8xx(struct pt_regs *);
897 int errcode;
898
899 CHECK_FULL_REGS(regs);
900
901 if (!user_mode(regs)) {
902 debugger(regs);
903 die("Kernel Mode Software FPU Emulation", regs, SIGFPE);
904 }
905
906#ifdef CONFIG_MATH_EMULATION
907 errcode = do_mathemu(regs);
908#else
909 errcode = Soft_emulate_8xx(regs);
910#endif
911 if (errcode) {
912 if (errcode > 0)
913 _exception(SIGFPE, regs, 0, 0);
914 else if (errcode == -EFAULT)
915 _exception(SIGSEGV, regs, 0, 0);
916 else
917 _exception(SIGILL, regs, ILL_ILLOPC, regs->nip);
918 } else
919 emulate_single_step(regs);
920}
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000921#endif /* CONFIG_8xx */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000922
923#if defined(CONFIG_40x) || defined(CONFIG_BOOKE)
924
925void DebugException(struct pt_regs *regs, unsigned long debug_status)
926{
927 if (debug_status & DBSR_IC) { /* instruction completion */
928 regs->msr &= ~MSR_DE;
929 if (user_mode(regs)) {
930 current->thread.dbcr0 &= ~DBCR0_IC;
931 } else {
932 /* Disable instruction completion */
933 mtspr(SPRN_DBCR0, mfspr(SPRN_DBCR0) & ~DBCR0_IC);
934 /* Clear the instruction completion event */
935 mtspr(SPRN_DBSR, DBSR_IC);
936 if (debugger_sstep(regs))
937 return;
938 }
939 _exception(SIGTRAP, regs, TRAP_TRACE, 0);
940 }
941}
942#endif /* CONFIG_4xx || CONFIG_BOOKE */
943
944#if !defined(CONFIG_TAU_INT)
945void TAUException(struct pt_regs *regs)
946{
947 printk("TAU trap at PC: %lx, MSR: %lx, vector=%lx %s\n",
948 regs->nip, regs->msr, regs->trap, print_tainted());
949}
950#endif /* CONFIG_INT_TAU */
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000951
952#ifdef CONFIG_ALTIVEC
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000953void altivec_assist_exception(struct pt_regs *regs)
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000954{
955 int err;
956
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000957 if (!user_mode(regs)) {
958 printk(KERN_EMERG "VMX/Altivec assist exception in kernel mode"
959 " at %lx\n", regs->nip);
Paul Mackerras8dad3f92005-10-06 13:27:05 +1000960 die("Kernel VMX/Altivec assist exception", regs, SIGILL);
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000961 }
962
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000963 flush_altivec_to_thread(current);
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +1000964
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000965 err = emulate_altivec(regs);
966 if (err == 0) {
967 regs->nip += 4; /* skip emulated instruction */
968 emulate_single_step(regs);
969 return;
970 }
971
972 if (err == -EFAULT) {
973 /* got an error reading the instruction */
974 _exception(SIGSEGV, regs, SEGV_ACCERR, regs->nip);
975 } else {
976 /* didn't recognize the instruction */
977 /* XXX quick hack for now: set the non-Java bit in the VSCR */
978 if (printk_ratelimit())
979 printk(KERN_ERR "Unrecognized altivec instruction "
980 "in %s at %lx\n", current->comm, regs->nip);
981 current->thread.vscr.u[3] |= 0x10000;
982 }
983}
984#endif /* CONFIG_ALTIVEC */
985
Paul Mackerras14cf11a2005-09-26 16:04:21 +1000986#ifdef CONFIG_FSL_BOOKE
987void CacheLockingException(struct pt_regs *regs, unsigned long address,
988 unsigned long error_code)
989{
990 /* We treat cache locking instructions from the user
991 * as priv ops, in the future we could try to do
992 * something smarter
993 */
994 if (error_code & (ESR_DLK|ESR_ILK))
995 _exception(SIGILL, regs, ILL_PRVOPC, regs->nip);
996 return;
997}
998#endif /* CONFIG_FSL_BOOKE */
999
1000#ifdef CONFIG_SPE
1001void SPEFloatingPointException(struct pt_regs *regs)
1002{
1003 unsigned long spefscr;
1004 int fpexc_mode;
1005 int code = 0;
1006
1007 spefscr = current->thread.spefscr;
1008 fpexc_mode = current->thread.fpexc_mode;
1009
1010 /* Hardware does not neccessarily set sticky
1011 * underflow/overflow/invalid flags */
1012 if ((spefscr & SPEFSCR_FOVF) && (fpexc_mode & PR_FP_EXC_OVF)) {
1013 code = FPE_FLTOVF;
1014 spefscr |= SPEFSCR_FOVFS;
1015 }
1016 else if ((spefscr & SPEFSCR_FUNF) && (fpexc_mode & PR_FP_EXC_UND)) {
1017 code = FPE_FLTUND;
1018 spefscr |= SPEFSCR_FUNFS;
1019 }
1020 else if ((spefscr & SPEFSCR_FDBZ) && (fpexc_mode & PR_FP_EXC_DIV))
1021 code = FPE_FLTDIV;
1022 else if ((spefscr & SPEFSCR_FINV) && (fpexc_mode & PR_FP_EXC_INV)) {
1023 code = FPE_FLTINV;
1024 spefscr |= SPEFSCR_FINVS;
1025 }
1026 else if ((spefscr & (SPEFSCR_FG | SPEFSCR_FX)) && (fpexc_mode & PR_FP_EXC_RES))
1027 code = FPE_FLTRES;
1028
1029 current->thread.spefscr = spefscr;
1030
1031 _exception(SIGFPE, regs, code, regs->nip);
1032 return;
1033}
1034#endif
1035
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001036/*
1037 * We enter here if we get an unrecoverable exception, that is, one
1038 * that happened at a point where the RI (recoverable interrupt) bit
1039 * in the MSR is 0. This indicates that SRR0/1 are live, and that
1040 * we therefore lost state by taking this exception.
1041 */
1042void unrecoverable_exception(struct pt_regs *regs)
1043{
1044 printk(KERN_EMERG "Unrecoverable exception %lx at %lx\n",
1045 regs->trap, regs->nip);
1046 die("Unrecoverable exception", regs, SIGABRT);
1047}
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001048
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001049#ifdef CONFIG_BOOKE_WDT
1050/*
1051 * Default handler for a Watchdog exception,
1052 * spins until a reboot occurs
1053 */
1054void __attribute__ ((weak)) WatchdogHandler(struct pt_regs *regs)
1055{
1056 /* Generic WatchdogHandler, implement your own */
1057 mtspr(SPRN_TCR, mfspr(SPRN_TCR)&(~TCR_WIE));
1058 return;
1059}
1060
1061void WatchdogException(struct pt_regs *regs)
1062{
1063 printk (KERN_EMERG "PowerPC Book-E Watchdog Exception\n");
1064 WatchdogHandler(regs);
1065}
1066#endif
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001067
Stephen Rothwelldc1c1ca2005-10-01 18:43:42 +10001068/*
1069 * We enter here if we discover during exception entry that we are
1070 * running in supervisor mode with a userspace value in the stack pointer.
1071 */
1072void kernel_bad_stack(struct pt_regs *regs)
1073{
1074 printk(KERN_EMERG "Bad kernel stack pointer %lx at %lx\n",
1075 regs->gpr[1], regs->nip);
1076 die("Bad kernel stack pointer", regs, SIGABRT);
1077}
Paul Mackerras14cf11a2005-09-26 16:04:21 +10001078
1079void __init trap_init(void)
1080{
1081}