blob: c6f70467e7506e81bdc90c2f169a80877d3fbf35 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Ralf Baechle36ccf1c2006-02-14 21:04:54 +00006 * Copyright (C) 1994 - 1999, 2000, 01, 06 Ralf Baechle
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * Copyright (C) 1995, 1996 Paul M. Antoine
8 * Copyright (C) 1998 Ulf Carlsson
9 * Copyright (C) 1999 Silicon Graphics, Inc.
10 * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com
11 * Copyright (C) 2000, 01 MIPS Technologies, Inc.
Maciej W. Rozycki3b2396d2005-06-22 20:43:29 +000012 * Copyright (C) 2002, 2003, 2004, 2005 Maciej W. Rozycki
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/init.h>
15#include <linux/mm.h>
16#include <linux/module.h>
17#include <linux/sched.h>
18#include <linux/smp.h>
19#include <linux/smp_lock.h>
20#include <linux/spinlock.h>
21#include <linux/kallsyms.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000022#include <linux/bootmem.h>
Maxime Bizond4fd1982006-07-20 18:52:02 +020023#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/bootinfo.h>
26#include <asm/branch.h>
27#include <asm/break.h>
28#include <asm/cpu.h>
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +000029#include <asm/dsp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/fpu.h>
Ralf Baechle340ee4b2005-08-17 17:44:08 +000031#include <asm/mipsregs.h>
32#include <asm/mipsmtregs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/module.h>
34#include <asm/pgtable.h>
35#include <asm/ptrace.h>
36#include <asm/sections.h>
37#include <asm/system.h>
38#include <asm/tlbdebug.h>
39#include <asm/traps.h>
40#include <asm/uaccess.h>
41#include <asm/mmu_context.h>
42#include <asm/watch.h>
43#include <asm/types.h>
44
Ralf Baechlee4ac58a2006-04-03 17:56:36 +010045extern asmlinkage void handle_int(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046extern asmlinkage void handle_tlbm(void);
47extern asmlinkage void handle_tlbl(void);
48extern asmlinkage void handle_tlbs(void);
49extern asmlinkage void handle_adel(void);
50extern asmlinkage void handle_ades(void);
51extern asmlinkage void handle_ibe(void);
52extern asmlinkage void handle_dbe(void);
53extern asmlinkage void handle_sys(void);
54extern asmlinkage void handle_bp(void);
55extern asmlinkage void handle_ri(void);
56extern asmlinkage void handle_cpu(void);
57extern asmlinkage void handle_ov(void);
58extern asmlinkage void handle_tr(void);
59extern asmlinkage void handle_fpe(void);
60extern asmlinkage void handle_mdmx(void);
61extern asmlinkage void handle_watch(void);
Ralf Baechle340ee4b2005-08-17 17:44:08 +000062extern asmlinkage void handle_mt(void);
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +000063extern asmlinkage void handle_dsp(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064extern asmlinkage void handle_mcheck(void);
65extern asmlinkage void handle_reserved(void);
66
Ralf Baechle12616ed2005-10-18 10:26:46 +010067extern int fpu_emulator_cop1Handler(struct pt_regs *xcp,
Atsushi Nemotoeae89072006-05-16 01:26:03 +090068 struct mips_fpu_struct *ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70void (*board_be_init)(void);
71int (*board_be_handler)(struct pt_regs *regs, int is_fixup);
Ralf Baechlee01402b2005-07-14 15:57:16 +000072void (*board_nmi_handler_setup)(void);
73void (*board_ejtag_handler_setup)(void);
74void (*board_bind_eic_interrupt)(int irq, int regset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/*
77 * These constant is for searching for possible module text segments.
78 * MODULE_RANGE is a guess of how much space is likely to be vmalloced.
79 */
80#define MODULE_RANGE (8*1024*1024)
81
Atsushi Nemotoe889d782006-07-25 23:51:36 +090082static void show_trace(unsigned long *stack)
83{
84 const int field = 2 * sizeof(unsigned long);
85 unsigned long addr;
86
87 printk("Call Trace:");
88#ifdef CONFIG_KALLSYMS
89 printk("\n");
90#endif
91 while (!kstack_end(stack)) {
92 addr = *stack++;
93 if (__kernel_text_address(addr)) {
94 printk(" [<%0*lx>] ", field, addr);
95 print_symbol("%s\n", addr);
96 }
97 }
98 printk("\n");
99}
100
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101/*
102 * This routine abuses get_user()/put_user() to reference pointers
103 * with at least a bit of error checking ...
104 */
105void show_stack(struct task_struct *task, unsigned long *sp)
106{
107 const int field = 2 * sizeof(unsigned long);
108 long stackdata;
109 int i;
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900110 unsigned long *stack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112 if (!sp) {
113 if (task && task != current)
114 sp = (unsigned long *) task->thread.reg29;
115 else
116 sp = (unsigned long *) &sp;
117 }
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900118 stack = sp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
120 printk("Stack :");
121 i = 0;
122 while ((unsigned long) sp & (PAGE_SIZE - 1)) {
123 if (i && ((i % (64 / field)) == 0))
124 printk("\n ");
125 if (i > 39) {
126 printk(" ...");
127 break;
128 }
129
130 if (__get_user(stackdata, sp++)) {
131 printk(" (Bad stack address)");
132 break;
133 }
134
135 printk(" %0*lx", field, stackdata);
136 i++;
137 }
138 printk("\n");
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900139 show_trace(stack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140}
141
142/*
143 * The architecture-independent dump_stack generator
144 */
145void dump_stack(void)
146{
147 unsigned long stack;
148
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900149 show_trace(&stack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
152EXPORT_SYMBOL(dump_stack);
153
154void show_code(unsigned int *pc)
155{
156 long i;
157
158 printk("\nCode:");
159
160 for(i = -3 ; i < 6 ; i++) {
161 unsigned int insn;
162 if (__get_user(insn, pc + i)) {
163 printk(" (Bad address in epc)\n");
164 break;
165 }
166 printk("%c%08x%c", (i?' ':'<'), insn, (i?' ':'>'));
167 }
168}
169
170void show_regs(struct pt_regs *regs)
171{
172 const int field = 2 * sizeof(unsigned long);
173 unsigned int cause = regs->cp0_cause;
174 int i;
175
176 printk("Cpu %d\n", smp_processor_id());
177
178 /*
179 * Saved main processor registers
180 */
181 for (i = 0; i < 32; ) {
182 if ((i % 4) == 0)
183 printk("$%2d :", i);
184 if (i == 0)
185 printk(" %0*lx", field, 0UL);
186 else if (i == 26 || i == 27)
187 printk(" %*s", field, "");
188 else
189 printk(" %0*lx", field, regs->regs[i]);
190
191 i++;
192 if ((i % 4) == 0)
193 printk("\n");
194 }
195
196 printk("Hi : %0*lx\n", field, regs->hi);
197 printk("Lo : %0*lx\n", field, regs->lo);
198
199 /*
200 * Saved cp0 registers
201 */
202 printk("epc : %0*lx ", field, regs->cp0_epc);
203 print_symbol("%s ", regs->cp0_epc);
204 printk(" %s\n", print_tainted());
205 printk("ra : %0*lx ", field, regs->regs[31]);
206 print_symbol("%s\n", regs->regs[31]);
207
208 printk("Status: %08x ", (uint32_t) regs->cp0_status);
209
Maciej W. Rozycki3b2396d2005-06-22 20:43:29 +0000210 if (current_cpu_data.isa_level == MIPS_CPU_ISA_I) {
211 if (regs->cp0_status & ST0_KUO)
212 printk("KUo ");
213 if (regs->cp0_status & ST0_IEO)
214 printk("IEo ");
215 if (regs->cp0_status & ST0_KUP)
216 printk("KUp ");
217 if (regs->cp0_status & ST0_IEP)
218 printk("IEp ");
219 if (regs->cp0_status & ST0_KUC)
220 printk("KUc ");
221 if (regs->cp0_status & ST0_IEC)
222 printk("IEc ");
223 } else {
224 if (regs->cp0_status & ST0_KX)
225 printk("KX ");
226 if (regs->cp0_status & ST0_SX)
227 printk("SX ");
228 if (regs->cp0_status & ST0_UX)
229 printk("UX ");
230 switch (regs->cp0_status & ST0_KSU) {
231 case KSU_USER:
232 printk("USER ");
233 break;
234 case KSU_SUPERVISOR:
235 printk("SUPERVISOR ");
236 break;
237 case KSU_KERNEL:
238 printk("KERNEL ");
239 break;
240 default:
241 printk("BAD_MODE ");
242 break;
243 }
244 if (regs->cp0_status & ST0_ERL)
245 printk("ERL ");
246 if (regs->cp0_status & ST0_EXL)
247 printk("EXL ");
248 if (regs->cp0_status & ST0_IE)
249 printk("IE ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 printk("\n");
252
253 printk("Cause : %08x\n", cause);
254
255 cause = (cause & CAUSEF_EXCCODE) >> CAUSEB_EXCCODE;
256 if (1 <= cause && cause <= 5)
257 printk("BadVA : %0*lx\n", field, regs->cp0_badvaddr);
258
259 printk("PrId : %08x\n", read_c0_prid());
260}
261
262void show_registers(struct pt_regs *regs)
263{
264 show_regs(regs);
265 print_modules();
266 printk("Process %s (pid: %d, threadinfo=%p, task=%p)\n",
267 current->comm, current->pid, current_thread_info(), current);
268 show_stack(current, (long *) regs->regs[29]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 show_code((unsigned int *) regs->cp0_epc);
270 printk("\n");
271}
272
273static DEFINE_SPINLOCK(die_lock);
274
Ralf Baechle178086c2005-10-13 17:07:54 +0100275NORET_TYPE void ATTRIB_NORET die(const char * str, struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 static int die_counter;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100278#ifdef CONFIG_MIPS_MT_SMTC
279 unsigned long dvpret = dvpe();
280#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 console_verbose();
283 spin_lock_irq(&die_lock);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100284 bust_spinlocks(1);
285#ifdef CONFIG_MIPS_MT_SMTC
286 mips_mt_regdump(dvpret);
287#endif /* CONFIG_MIPS_MT_SMTC */
Ralf Baechle178086c2005-10-13 17:07:54 +0100288 printk("%s[#%d]:\n", str, ++die_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 show_registers(regs);
290 spin_unlock_irq(&die_lock);
Maxime Bizond4fd1982006-07-20 18:52:02 +0200291
292 if (in_interrupt())
293 panic("Fatal exception in interrupt");
294
295 if (panic_on_oops) {
296 printk(KERN_EMERG "Fatal exception: panic in 5 seconds\n");
297 ssleep(5);
298 panic("Fatal exception");
299 }
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 do_exit(SIGSEGV);
302}
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304extern const struct exception_table_entry __start___dbe_table[];
305extern const struct exception_table_entry __stop___dbe_table[];
306
307void __declare_dbe_table(void)
308{
309 __asm__ __volatile__(
310 ".section\t__dbe_table,\"a\"\n\t"
311 ".previous"
312 );
313}
314
315/* Given an address, look for it in the exception tables. */
316static const struct exception_table_entry *search_dbe_tables(unsigned long addr)
317{
318 const struct exception_table_entry *e;
319
320 e = search_extable(__start___dbe_table, __stop___dbe_table - 1, addr);
321 if (!e)
322 e = search_module_dbetables(addr);
323 return e;
324}
325
326asmlinkage void do_be(struct pt_regs *regs)
327{
328 const int field = 2 * sizeof(unsigned long);
329 const struct exception_table_entry *fixup = NULL;
330 int data = regs->cp0_cause & 4;
331 int action = MIPS_BE_FATAL;
332
333 /* XXX For now. Fixme, this searches the wrong table ... */
334 if (data && !user_mode(regs))
335 fixup = search_dbe_tables(exception_epc(regs));
336
337 if (fixup)
338 action = MIPS_BE_FIXUP;
339
340 if (board_be_handler)
341 action = board_be_handler(regs, fixup != 0);
342
343 switch (action) {
344 case MIPS_BE_DISCARD:
345 return;
346 case MIPS_BE_FIXUP:
347 if (fixup) {
348 regs->cp0_epc = fixup->nextinsn;
349 return;
350 }
351 break;
352 default:
353 break;
354 }
355
356 /*
357 * Assume it would be too dangerous to continue ...
358 */
359 printk(KERN_ALERT "%s bus error, epc == %0*lx, ra == %0*lx\n",
360 data ? "Data" : "Instruction",
361 field, regs->cp0_epc, field, regs->regs[31]);
362 die_if_kernel("Oops", regs);
363 force_sig(SIGBUS, current);
364}
365
366static inline int get_insn_opcode(struct pt_regs *regs, unsigned int *opcode)
367{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000368 unsigned int __user *epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Ralf Baechlefe00f942005-03-01 19:22:29 +0000370 epc = (unsigned int __user *) regs->cp0_epc +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 ((regs->cp0_cause & CAUSEF_BD) != 0);
372 if (!get_user(*opcode, epc))
373 return 0;
374
375 force_sig(SIGSEGV, current);
376 return 1;
377}
378
379/*
380 * ll/sc emulation
381 */
382
383#define OPCODE 0xfc000000
384#define BASE 0x03e00000
385#define RT 0x001f0000
386#define OFFSET 0x0000ffff
387#define LL 0xc0000000
388#define SC 0xe0000000
Ralf Baechle3c370262005-04-13 17:43:59 +0000389#define SPEC3 0x7c000000
390#define RD 0x0000f800
391#define FUNC 0x0000003f
392#define RDHWR 0x0000003b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394/*
395 * The ll_bit is cleared by r*_switch.S
396 */
397
398unsigned long ll_bit;
399
400static struct task_struct *ll_task = NULL;
401
402static inline void simulate_ll(struct pt_regs *regs, unsigned int opcode)
403{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000404 unsigned long value, __user *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 long offset;
406 int signal = 0;
407
408 /*
409 * analyse the ll instruction that just caused a ri exception
410 * and put the referenced address to addr.
411 */
412
413 /* sign extend offset */
414 offset = opcode & OFFSET;
415 offset <<= 16;
416 offset >>= 16;
417
Ralf Baechlefe00f942005-03-01 19:22:29 +0000418 vaddr = (unsigned long __user *)
419 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 if ((unsigned long)vaddr & 3) {
422 signal = SIGBUS;
423 goto sig;
424 }
425 if (get_user(value, vaddr)) {
426 signal = SIGSEGV;
427 goto sig;
428 }
429
430 preempt_disable();
431
432 if (ll_task == NULL || ll_task == current) {
433 ll_bit = 1;
434 } else {
435 ll_bit = 0;
436 }
437 ll_task = current;
438
439 preempt_enable();
440
Ralf Baechle6dd04682005-04-12 11:04:15 +0000441 compute_return_epc(regs);
442
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 regs->regs[(opcode & RT) >> 16] = value;
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 return;
446
447sig:
448 force_sig(signal, current);
449}
450
451static inline void simulate_sc(struct pt_regs *regs, unsigned int opcode)
452{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000453 unsigned long __user *vaddr;
454 unsigned long reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 long offset;
456 int signal = 0;
457
458 /*
459 * analyse the sc instruction that just caused a ri exception
460 * and put the referenced address to addr.
461 */
462
463 /* sign extend offset */
464 offset = opcode & OFFSET;
465 offset <<= 16;
466 offset >>= 16;
467
Ralf Baechlefe00f942005-03-01 19:22:29 +0000468 vaddr = (unsigned long __user *)
469 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 reg = (opcode & RT) >> 16;
471
472 if ((unsigned long)vaddr & 3) {
473 signal = SIGBUS;
474 goto sig;
475 }
476
477 preempt_disable();
478
479 if (ll_bit == 0 || ll_task != current) {
Ralf Baechle05b80422005-04-12 20:26:05 +0000480 compute_return_epc(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 regs->regs[reg] = 0;
482 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return;
484 }
485
486 preempt_enable();
487
488 if (put_user(regs->regs[reg], vaddr)) {
489 signal = SIGSEGV;
490 goto sig;
491 }
492
Ralf Baechle6dd04682005-04-12 11:04:15 +0000493 compute_return_epc(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 regs->regs[reg] = 1;
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return;
497
498sig:
499 force_sig(signal, current);
500}
501
502/*
503 * ll uses the opcode of lwc0 and sc uses the opcode of swc0. That is both
504 * opcodes are supposed to result in coprocessor unusable exceptions if
505 * executed on ll/sc-less processors. That's the theory. In practice a
506 * few processors such as NEC's VR4100 throw reserved instruction exceptions
507 * instead, so we're doing the emulation thing in both exception handlers.
508 */
509static inline int simulate_llsc(struct pt_regs *regs)
510{
511 unsigned int opcode;
512
513 if (unlikely(get_insn_opcode(regs, &opcode)))
514 return -EFAULT;
515
516 if ((opcode & OPCODE) == LL) {
517 simulate_ll(regs, opcode);
518 return 0;
519 }
520 if ((opcode & OPCODE) == SC) {
521 simulate_sc(regs, opcode);
522 return 0;
523 }
524
525 return -EFAULT; /* Strange things going on ... */
526}
527
Ralf Baechle3c370262005-04-13 17:43:59 +0000528/*
529 * Simulate trapping 'rdhwr' instructions to provide user accessible
530 * registers not implemented in hardware. The only current use of this
531 * is the thread area pointer.
532 */
533static inline int simulate_rdhwr(struct pt_regs *regs)
534{
Al Virodc8f6022006-01-12 01:06:07 -0800535 struct thread_info *ti = task_thread_info(current);
Ralf Baechle3c370262005-04-13 17:43:59 +0000536 unsigned int opcode;
537
538 if (unlikely(get_insn_opcode(regs, &opcode)))
539 return -EFAULT;
540
541 if (unlikely(compute_return_epc(regs)))
542 return -EFAULT;
543
544 if ((opcode & OPCODE) == SPEC3 && (opcode & FUNC) == RDHWR) {
545 int rd = (opcode & RD) >> 11;
546 int rt = (opcode & RT) >> 16;
547 switch (rd) {
548 case 29:
549 regs->regs[rt] = ti->tp_value;
Daniel Jacobowitz56ebd512005-11-26 22:34:41 -0500550 return 0;
Ralf Baechle3c370262005-04-13 17:43:59 +0000551 default:
552 return -EFAULT;
553 }
554 }
555
Daniel Jacobowitz56ebd512005-11-26 22:34:41 -0500556 /* Not ours. */
557 return -EFAULT;
Ralf Baechle3c370262005-04-13 17:43:59 +0000558}
559
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560asmlinkage void do_ov(struct pt_regs *regs)
561{
562 siginfo_t info;
563
Ralf Baechle36ccf1c2006-02-14 21:04:54 +0000564 die_if_kernel("Integer overflow", regs);
565
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 info.si_code = FPE_INTOVF;
567 info.si_signo = SIGFPE;
568 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000569 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 force_sig_info(SIGFPE, &info, current);
571}
572
573/*
574 * XXX Delayed fp exceptions when doing a lazy ctx switch XXX
575 */
576asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31)
577{
Chris Dearman57725f92006-06-30 23:35:28 +0100578 die_if_kernel("FP exception in kernel code", regs);
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 if (fcr31 & FPU_CSR_UNI_X) {
581 int sig;
582
583 preempt_disable();
584
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000585#ifdef CONFIG_PREEMPT
586 if (!is_fpu_owner()) {
587 /* We might lose fpu before disabling preempt... */
588 own_fpu();
589 BUG_ON(!used_math());
590 restore_fp(current);
591 }
592#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 /*
Ralf Baechlea3dddd52006-03-11 08:18:41 +0000594 * Unimplemented operation exception. If we've got the full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 * software emulator on-board, let's use it...
596 *
597 * Force FPU to dump state into task/thread context. We're
598 * moving a lot of data here for what is probably a single
599 * instruction, but the alternative is to pre-decode the FP
600 * register operands before invoking the emulator, which seems
601 * a bit extreme for what should be an infrequent event.
602 */
603 save_fp(current);
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000604 /* Ensure 'resume' not overwrite saved fp context again. */
605 lose_fpu();
606
607 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609 /* Run the emulator */
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900610 sig = fpu_emulator_cop1Handler (regs, &current->thread.fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000612 preempt_disable();
613
614 own_fpu(); /* Using the FPU again. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 /*
616 * We can't allow the emulated instruction to leave any of
617 * the cause bit set in $fcr31.
618 */
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900619 current->thread.fpu.fcr31 &= ~FPU_CSR_ALL_X;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 /* Restore the hardware register state */
622 restore_fp(current);
623
624 preempt_enable();
625
626 /* If something went wrong, signal */
627 if (sig)
628 force_sig(sig, current);
629
630 return;
631 }
632
633 force_sig(SIGFPE, current);
634}
635
636asmlinkage void do_bp(struct pt_regs *regs)
637{
638 unsigned int opcode, bcode;
639 siginfo_t info;
640
641 die_if_kernel("Break instruction in kernel code", regs);
642
643 if (get_insn_opcode(regs, &opcode))
644 return;
645
646 /*
647 * There is the ancient bug in the MIPS assemblers that the break
648 * code starts left to bit 16 instead to bit 6 in the opcode.
649 * Gas is bug-compatible, but not always, grrr...
650 * We handle both cases with a simple heuristics. --macro
651 */
652 bcode = ((opcode >> 6) & ((1 << 20) - 1));
653 if (bcode < (1 << 10))
654 bcode <<= 10;
655
656 /*
657 * (A short test says that IRIX 5.3 sends SIGTRAP for all break
658 * insns, even for break codes that indicate arithmetic failures.
659 * Weird ...)
660 * But should we continue the brokenness??? --macro
661 */
662 switch (bcode) {
663 case BRK_OVERFLOW << 10:
664 case BRK_DIVZERO << 10:
665 if (bcode == (BRK_DIVZERO << 10))
666 info.si_code = FPE_INTDIV;
667 else
668 info.si_code = FPE_INTOVF;
669 info.si_signo = SIGFPE;
670 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000671 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 force_sig_info(SIGFPE, &info, current);
673 break;
674 default:
675 force_sig(SIGTRAP, current);
676 }
677}
678
679asmlinkage void do_tr(struct pt_regs *regs)
680{
681 unsigned int opcode, tcode = 0;
682 siginfo_t info;
683
684 die_if_kernel("Trap instruction in kernel code", regs);
685
686 if (get_insn_opcode(regs, &opcode))
687 return;
688
689 /* Immediate versions don't provide a code. */
690 if (!(opcode & OPCODE))
691 tcode = ((opcode >> 6) & ((1 << 10) - 1));
692
693 /*
694 * (A short test says that IRIX 5.3 sends SIGTRAP for all trap
695 * insns, even for trap codes that indicate arithmetic failures.
696 * Weird ...)
697 * But should we continue the brokenness??? --macro
698 */
699 switch (tcode) {
700 case BRK_OVERFLOW:
701 case BRK_DIVZERO:
702 if (tcode == BRK_DIVZERO)
703 info.si_code = FPE_INTDIV;
704 else
705 info.si_code = FPE_INTOVF;
706 info.si_signo = SIGFPE;
707 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000708 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 force_sig_info(SIGFPE, &info, current);
710 break;
711 default:
712 force_sig(SIGTRAP, current);
713 }
714}
715
716asmlinkage void do_ri(struct pt_regs *regs)
717{
718 die_if_kernel("Reserved instruction in kernel code", regs);
719
720 if (!cpu_has_llsc)
721 if (!simulate_llsc(regs))
722 return;
723
Ralf Baechle3c370262005-04-13 17:43:59 +0000724 if (!simulate_rdhwr(regs))
725 return;
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 force_sig(SIGILL, current);
728}
729
730asmlinkage void do_cpu(struct pt_regs *regs)
731{
732 unsigned int cpid;
733
734 die_if_kernel("do_cpu invoked from kernel context!", regs);
735
736 cpid = (regs->cp0_cause >> CAUSEB_CE) & 3;
737
738 switch (cpid) {
739 case 0:
Ralf Baechle3c370262005-04-13 17:43:59 +0000740 if (!cpu_has_llsc)
741 if (!simulate_llsc(regs))
742 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Ralf Baechle3c370262005-04-13 17:43:59 +0000744 if (!simulate_rdhwr(regs))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return;
Ralf Baechle3c370262005-04-13 17:43:59 +0000746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 break;
748
749 case 1:
750 preempt_disable();
751
752 own_fpu();
753 if (used_math()) { /* Using the FPU again. */
754 restore_fp(current);
755 } else { /* First time FPU user. */
756 init_fpu();
757 set_used_math();
758 }
759
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000760 preempt_enable();
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (!cpu_has_fpu) {
Ralf Baechle12616ed2005-10-18 10:26:46 +0100763 int sig = fpu_emulator_cop1Handler(regs,
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900764 &current->thread.fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (sig)
766 force_sig(sig, current);
Ralf Baechlef088fc82006-04-05 09:45:47 +0100767#ifdef CONFIG_MIPS_MT_FPAFF
768 else {
769 /*
770 * MIPS MT processors may have fewer FPU contexts
771 * than CPU threads. If we've emulated more than
772 * some threshold number of instructions, force
773 * migration to a "CPU" that has FP support.
774 */
775 if(mt_fpemul_threshold > 0
776 && ((current->thread.emulated_fp++
777 > mt_fpemul_threshold))) {
778 /*
779 * If there's no FPU present, or if the
780 * application has already restricted
781 * the allowed set to exclude any CPUs
782 * with FPUs, we'll skip the procedure.
783 */
784 if (cpus_intersects(current->cpus_allowed,
785 mt_fpu_cpumask)) {
786 cpumask_t tmask;
787
788 cpus_and(tmask,
789 current->thread.user_cpus_allowed,
790 mt_fpu_cpumask);
791 set_cpus_allowed(current, tmask);
792 current->thread.mflags |= MF_FPUBOUND;
793 }
794 }
795 }
796#endif /* CONFIG_MIPS_MT_FPAFF */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
798
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 return;
800
801 case 2:
802 case 3:
Ralf Baechle41c594a2006-04-05 09:45:45 +0100803 die_if_kernel("do_cpu invoked from kernel context!", regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 break;
805 }
806
807 force_sig(SIGILL, current);
808}
809
810asmlinkage void do_mdmx(struct pt_regs *regs)
811{
812 force_sig(SIGILL, current);
813}
814
815asmlinkage void do_watch(struct pt_regs *regs)
816{
817 /*
818 * We use the watch exception where available to detect stack
819 * overflows.
820 */
821 dump_tlb_all();
822 show_regs(regs);
823 panic("Caught WATCH exception - probably caused by stack overflow.");
824}
825
826asmlinkage void do_mcheck(struct pt_regs *regs)
827{
Ralf Baechlecac4bcb2006-05-24 16:51:02 +0100828 const int field = 2 * sizeof(unsigned long);
829 int multi_match = regs->cp0_status & ST0_TS;
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 show_regs(regs);
Ralf Baechlecac4bcb2006-05-24 16:51:02 +0100832
833 if (multi_match) {
834 printk("Index : %0x\n", read_c0_index());
835 printk("Pagemask: %0x\n", read_c0_pagemask());
836 printk("EntryHi : %0*lx\n", field, read_c0_entryhi());
837 printk("EntryLo0: %0*lx\n", field, read_c0_entrylo0());
838 printk("EntryLo1: %0*lx\n", field, read_c0_entrylo1());
839 printk("\n");
840 dump_tlb_all();
841 }
842
843 show_code((unsigned int *) regs->cp0_epc);
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 /*
846 * Some chips may have other causes of machine check (e.g. SB1
847 * graduation timer)
848 */
849 panic("Caught Machine Check exception - %scaused by multiple "
850 "matching entries in the TLB.",
Ralf Baechlecac4bcb2006-05-24 16:51:02 +0100851 (multi_match) ? "" : "not ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
Ralf Baechle340ee4b2005-08-17 17:44:08 +0000854asmlinkage void do_mt(struct pt_regs *regs)
855{
Ralf Baechle41c594a2006-04-05 09:45:45 +0100856 int subcode;
857
Ralf Baechle41c594a2006-04-05 09:45:45 +0100858 subcode = (read_vpe_c0_vpecontrol() & VPECONTROL_EXCPT)
859 >> VPECONTROL_EXCPT_SHIFT;
860 switch (subcode) {
861 case 0:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100862 printk(KERN_DEBUG "Thread Underflow\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100863 break;
864 case 1:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100865 printk(KERN_DEBUG "Thread Overflow\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100866 break;
867 case 2:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100868 printk(KERN_DEBUG "Invalid YIELD Qualifier\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100869 break;
870 case 3:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100871 printk(KERN_DEBUG "Gating Storage Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100872 break;
873 case 4:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100874 printk(KERN_DEBUG "YIELD Scheduler Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100875 break;
876 case 5:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100877 printk(KERN_DEBUG "Gating Storage Schedulier Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100878 break;
879 default:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100880 printk(KERN_DEBUG "*** UNKNOWN THREAD EXCEPTION %d ***\n",
Ralf Baechle41c594a2006-04-05 09:45:45 +0100881 subcode);
882 break;
883 }
Ralf Baechle340ee4b2005-08-17 17:44:08 +0000884 die_if_kernel("MIPS MT Thread exception in kernel", regs);
885
886 force_sig(SIGILL, current);
887}
888
889
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +0000890asmlinkage void do_dsp(struct pt_regs *regs)
891{
892 if (cpu_has_dsp)
893 panic("Unexpected DSP exception\n");
894
895 force_sig(SIGILL, current);
896}
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898asmlinkage void do_reserved(struct pt_regs *regs)
899{
900 /*
901 * Game over - no way to handle this if it ever occurs. Most probably
902 * caused by a new unknown cpu type or after another deadly
903 * hard/software error.
904 */
905 show_regs(regs);
906 panic("Caught reserved exception %ld - should not happen.",
907 (regs->cp0_cause & 0x7f) >> 2);
908}
909
Ralf Baechlee01402b2005-07-14 15:57:16 +0000910asmlinkage void do_default_vi(struct pt_regs *regs)
911{
912 show_regs(regs);
913 panic("Caught unexpected vectored interrupt.");
914}
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916/*
917 * Some MIPS CPUs can enable/disable for cache parity detection, but do
918 * it different ways.
919 */
920static inline void parity_protection_init(void)
921{
922 switch (current_cpu_data.cputype) {
923 case CPU_24K:
Nigel Stephens98a41de2006-04-27 15:50:32 +0100924 case CPU_34K:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 case CPU_5KC:
Ralf Baechle14f18b72005-03-01 18:15:08 +0000926 write_c0_ecc(0x80000000);
927 back_to_back_c0_hazard();
928 /* Set the PE bit (bit 31) in the c0_errctl register. */
929 printk(KERN_INFO "Cache parity protection %sabled\n",
930 (read_c0_ecc() & 0x80000000) ? "en" : "dis");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 break;
932 case CPU_20KC:
933 case CPU_25KF:
934 /* Clear the DE bit (bit 16) in the c0_status register. */
935 printk(KERN_INFO "Enable cache parity protection for "
936 "MIPS 20KC/25KF CPUs.\n");
937 clear_c0_status(ST0_DE);
938 break;
939 default:
940 break;
941 }
942}
943
944asmlinkage void cache_parity_error(void)
945{
946 const int field = 2 * sizeof(unsigned long);
947 unsigned int reg_val;
948
949 /* For the moment, report the problem and hang. */
950 printk("Cache error exception:\n");
951 printk("cp0_errorepc == %0*lx\n", field, read_c0_errorepc());
952 reg_val = read_c0_cacheerr();
953 printk("c0_cacheerr == %08x\n", reg_val);
954
955 printk("Decoded c0_cacheerr: %s cache fault in %s reference.\n",
956 reg_val & (1<<30) ? "secondary" : "primary",
957 reg_val & (1<<31) ? "data" : "insn");
958 printk("Error bits: %s%s%s%s%s%s%s\n",
959 reg_val & (1<<29) ? "ED " : "",
960 reg_val & (1<<28) ? "ET " : "",
961 reg_val & (1<<26) ? "EE " : "",
962 reg_val & (1<<25) ? "EB " : "",
963 reg_val & (1<<24) ? "EI " : "",
964 reg_val & (1<<23) ? "E1 " : "",
965 reg_val & (1<<22) ? "E0 " : "");
966 printk("IDX: 0x%08x\n", reg_val & ((1<<22)-1));
967
Ralf Baechleec917c2c2005-10-07 16:58:15 +0100968#if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 if (reg_val & (1<<22))
970 printk("DErrAddr0: 0x%0*lx\n", field, read_c0_derraddr0());
971
972 if (reg_val & (1<<23))
973 printk("DErrAddr1: 0x%0*lx\n", field, read_c0_derraddr1());
974#endif
975
976 panic("Can't handle the cache error!");
977}
978
979/*
980 * SDBBP EJTAG debug exception handler.
981 * We skip the instruction and return to the next instruction.
982 */
983void ejtag_exception_handler(struct pt_regs *regs)
984{
985 const int field = 2 * sizeof(unsigned long);
986 unsigned long depc, old_epc;
987 unsigned int debug;
988
Chris Dearman70ae6122006-06-30 12:32:37 +0100989 printk(KERN_DEBUG "SDBBP EJTAG debug exception - not handled yet, just ignored!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 depc = read_c0_depc();
991 debug = read_c0_debug();
Chris Dearman70ae6122006-06-30 12:32:37 +0100992 printk(KERN_DEBUG "c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (debug & 0x80000000) {
994 /*
995 * In branch delay slot.
996 * We cheat a little bit here and use EPC to calculate the
997 * debug return address (DEPC). EPC is restored after the
998 * calculation.
999 */
1000 old_epc = regs->cp0_epc;
1001 regs->cp0_epc = depc;
1002 __compute_return_epc(regs);
1003 depc = regs->cp0_epc;
1004 regs->cp0_epc = old_epc;
1005 } else
1006 depc += 4;
1007 write_c0_depc(depc);
1008
1009#if 0
Chris Dearman70ae6122006-06-30 12:32:37 +01001010 printk(KERN_DEBUG "\n\n----- Enable EJTAG single stepping ----\n\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 write_c0_debug(debug | 0x100);
1012#endif
1013}
1014
1015/*
1016 * NMI exception handler.
1017 */
1018void nmi_exception_handler(struct pt_regs *regs)
1019{
Ralf Baechle41c594a2006-04-05 09:45:45 +01001020#ifdef CONFIG_MIPS_MT_SMTC
1021 unsigned long dvpret = dvpe();
1022 bust_spinlocks(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 printk("NMI taken!!!!\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001024 mips_mt_regdump(dvpret);
1025#else
1026 bust_spinlocks(1);
1027 printk("NMI taken!!!!\n");
1028#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 die("NMI", regs);
1030 while(1) ;
1031}
1032
Ralf Baechlee01402b2005-07-14 15:57:16 +00001033#define VECTORSPACING 0x100 /* for EI/VI mode */
1034
1035unsigned long ebase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036unsigned long exception_handlers[32];
Ralf Baechlee01402b2005-07-14 15:57:16 +00001037unsigned long vi_handlers[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038
1039/*
1040 * As a side effect of the way this is implemented we're limited
1041 * to interrupt handlers in the address range from
1042 * KSEG0 <= x < KSEG0 + 256mb on the Nevada. Oh well ...
1043 */
1044void *set_except_vector(int n, void *addr)
1045{
1046 unsigned long handler = (unsigned long) addr;
1047 unsigned long old_handler = exception_handlers[n];
1048
1049 exception_handlers[n] = handler;
1050 if (n == 0 && cpu_has_divec) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001051 *(volatile u32 *)(ebase + 0x200) = 0x08000000 |
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 (0x03ffffff & (handler >> 2));
Ralf Baechlee01402b2005-07-14 15:57:16 +00001053 flush_icache_range(ebase + 0x200, ebase + 0x204);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
1055 return (void *)old_handler;
1056}
1057
Ralf Baechlef41ae0b2006-06-05 17:24:46 +01001058#ifdef CONFIG_CPU_MIPSR2_SRS
Ralf Baechlee01402b2005-07-14 15:57:16 +00001059/*
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001060 * MIPSR2 shadow register set allocation
Ralf Baechlee01402b2005-07-14 15:57:16 +00001061 * FIXME: SMP...
1062 */
1063
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001064static struct shadow_registers {
1065 /*
1066 * Number of shadow register sets supported
1067 */
1068 unsigned long sr_supported;
1069 /*
1070 * Bitmap of allocated shadow registers
1071 */
1072 unsigned long sr_allocated;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001073} shadow_registers;
1074
Ralf Baechlebb12d612006-04-05 09:45:49 +01001075static void mips_srs_init(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001076{
Ralf Baechlee01402b2005-07-14 15:57:16 +00001077 shadow_registers.sr_supported = ((read_c0_srsctl() >> 26) & 0x0f) + 1;
Ralf Baechle7acb7832006-03-29 14:11:22 +01001078 printk(KERN_INFO "%d MIPSR2 register sets available\n",
1079 shadow_registers.sr_supported);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001080 shadow_registers.sr_allocated = 1; /* Set 0 used by kernel */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001081}
1082
1083int mips_srs_max(void)
1084{
1085 return shadow_registers.sr_supported;
1086}
1087
Ralf Baechleff3eab22006-03-29 14:12:58 +01001088int mips_srs_alloc(void)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001089{
1090 struct shadow_registers *sr = &shadow_registers;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001091 int set;
1092
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001093again:
1094 set = find_first_zero_bit(&sr->sr_allocated, sr->sr_supported);
1095 if (set >= sr->sr_supported)
1096 return -1;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001097
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001098 if (test_and_set_bit(set, &sr->sr_allocated))
1099 goto again;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001100
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001101 return set;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001102}
1103
Ralf Baechle41c594a2006-04-05 09:45:45 +01001104void mips_srs_free(int set)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001105{
1106 struct shadow_registers *sr = &shadow_registers;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001107
Ralf Baechle193dd2c2006-04-04 15:09:06 +01001108 clear_bit(set, &sr->sr_allocated);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001109}
1110
Ralf Baechleb4d05cb2006-03-29 14:09:14 +01001111static void *set_vi_srs_handler(int n, void *addr, int srs)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001112{
1113 unsigned long handler;
1114 unsigned long old_handler = vi_handlers[n];
1115 u32 *w;
1116 unsigned char *b;
1117
1118 if (!cpu_has_veic && !cpu_has_vint)
1119 BUG();
1120
1121 if (addr == NULL) {
1122 handler = (unsigned long) do_default_vi;
1123 srs = 0;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001124 } else
Ralf Baechlee01402b2005-07-14 15:57:16 +00001125 handler = (unsigned long) addr;
1126 vi_handlers[n] = (unsigned long) addr;
1127
1128 b = (unsigned char *)(ebase + 0x200 + n*VECTORSPACING);
1129
1130 if (srs >= mips_srs_max())
1131 panic("Shadow register set %d not supported", srs);
1132
1133 if (cpu_has_veic) {
1134 if (board_bind_eic_interrupt)
1135 board_bind_eic_interrupt (n, srs);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001136 } else if (cpu_has_vint) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001137 /* SRSMap is only defined if shadow sets are implemented */
1138 if (mips_srs_max() > 1)
1139 change_c0_srsmap (0xf << n*4, srs << n*4);
1140 }
1141
1142 if (srs == 0) {
1143 /*
1144 * If no shadow set is selected then use the default handler
1145 * that does normal register saving and a standard interrupt exit
1146 */
1147
1148 extern char except_vec_vi, except_vec_vi_lui;
1149 extern char except_vec_vi_ori, except_vec_vi_end;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001150#ifdef CONFIG_MIPS_MT_SMTC
1151 /*
1152 * We need to provide the SMTC vectored interrupt handler
1153 * not only with the address of the handler, but with the
1154 * Status.IM bit to be masked before going there.
1155 */
1156 extern char except_vec_vi_mori;
1157 const int mori_offset = &except_vec_vi_mori - &except_vec_vi;
1158#endif /* CONFIG_MIPS_MT_SMTC */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001159 const int handler_len = &except_vec_vi_end - &except_vec_vi;
1160 const int lui_offset = &except_vec_vi_lui - &except_vec_vi;
1161 const int ori_offset = &except_vec_vi_ori - &except_vec_vi;
1162
1163 if (handler_len > VECTORSPACING) {
1164 /*
1165 * Sigh... panicing won't help as the console
1166 * is probably not configured :(
1167 */
1168 panic ("VECTORSPACING too small");
1169 }
1170
1171 memcpy (b, &except_vec_vi, handler_len);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001172#ifdef CONFIG_MIPS_MT_SMTC
1173 if (n > 7)
1174 printk("Vector index %d exceeds SMTC maximum\n", n);
1175 w = (u32 *)(b + mori_offset);
1176 *w = (*w & 0xffff0000) | (0x100 << n);
1177#endif /* CONFIG_MIPS_MT_SMTC */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001178 w = (u32 *)(b + lui_offset);
1179 *w = (*w & 0xffff0000) | (((u32)handler >> 16) & 0xffff);
1180 w = (u32 *)(b + ori_offset);
1181 *w = (*w & 0xffff0000) | ((u32)handler & 0xffff);
1182 flush_icache_range((unsigned long)b, (unsigned long)(b+handler_len));
1183 }
1184 else {
1185 /*
1186 * In other cases jump directly to the interrupt handler
1187 *
1188 * It is the handlers responsibility to save registers if required
1189 * (eg hi/lo) and return from the exception using "eret"
1190 */
1191 w = (u32 *)b;
1192 *w++ = 0x08000000 | (((u32)handler >> 2) & 0x03fffff); /* j handler */
1193 *w = 0;
1194 flush_icache_range((unsigned long)b, (unsigned long)(b+8));
1195 }
1196
1197 return (void *)old_handler;
1198}
1199
Ralf Baechle41c594a2006-04-05 09:45:45 +01001200void *set_vi_handler(int n, void *addr)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001201{
Ralf Baechleff3eab22006-03-29 14:12:58 +01001202 return set_vi_srs_handler(n, addr, 0);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001203}
Ralf Baechlef41ae0b2006-06-05 17:24:46 +01001204
1205#else
1206
1207static inline void mips_srs_init(void)
1208{
1209}
1210
1211#endif /* CONFIG_CPU_MIPSR2_SRS */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213/*
1214 * This is used by native signal handling
1215 */
1216asmlinkage int (*save_fp_context)(struct sigcontext *sc);
1217asmlinkage int (*restore_fp_context)(struct sigcontext *sc);
1218
1219extern asmlinkage int _save_fp_context(struct sigcontext *sc);
1220extern asmlinkage int _restore_fp_context(struct sigcontext *sc);
1221
1222extern asmlinkage int fpu_emulator_save_context(struct sigcontext *sc);
1223extern asmlinkage int fpu_emulator_restore_context(struct sigcontext *sc);
1224
Ralf Baechle41c594a2006-04-05 09:45:45 +01001225#ifdef CONFIG_SMP
1226static int smp_save_fp_context(struct sigcontext *sc)
1227{
1228 return cpu_has_fpu
1229 ? _save_fp_context(sc)
1230 : fpu_emulator_save_context(sc);
1231}
1232
1233static int smp_restore_fp_context(struct sigcontext *sc)
1234{
1235 return cpu_has_fpu
1236 ? _restore_fp_context(sc)
1237 : fpu_emulator_restore_context(sc);
1238}
1239#endif
1240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241static inline void signal_init(void)
1242{
Ralf Baechle41c594a2006-04-05 09:45:45 +01001243#ifdef CONFIG_SMP
1244 /* For now just do the cpu_has_fpu check when the functions are invoked */
1245 save_fp_context = smp_save_fp_context;
1246 restore_fp_context = smp_restore_fp_context;
1247#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (cpu_has_fpu) {
1249 save_fp_context = _save_fp_context;
1250 restore_fp_context = _restore_fp_context;
1251 } else {
1252 save_fp_context = fpu_emulator_save_context;
1253 restore_fp_context = fpu_emulator_restore_context;
1254 }
Ralf Baechle41c594a2006-04-05 09:45:45 +01001255#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256}
1257
1258#ifdef CONFIG_MIPS32_COMPAT
1259
1260/*
1261 * This is used by 32-bit signal stuff on the 64-bit kernel
1262 */
1263asmlinkage int (*save_fp_context32)(struct sigcontext32 *sc);
1264asmlinkage int (*restore_fp_context32)(struct sigcontext32 *sc);
1265
1266extern asmlinkage int _save_fp_context32(struct sigcontext32 *sc);
1267extern asmlinkage int _restore_fp_context32(struct sigcontext32 *sc);
1268
1269extern asmlinkage int fpu_emulator_save_context32(struct sigcontext32 *sc);
1270extern asmlinkage int fpu_emulator_restore_context32(struct sigcontext32 *sc);
1271
1272static inline void signal32_init(void)
1273{
1274 if (cpu_has_fpu) {
1275 save_fp_context32 = _save_fp_context32;
1276 restore_fp_context32 = _restore_fp_context32;
1277 } else {
1278 save_fp_context32 = fpu_emulator_save_context32;
1279 restore_fp_context32 = fpu_emulator_restore_context32;
1280 }
1281}
1282#endif
1283
1284extern void cpu_cache_init(void);
1285extern void tlb_init(void);
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00001286extern void flush_tlb_handlers(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
1288void __init per_cpu_trap_init(void)
1289{
1290 unsigned int cpu = smp_processor_id();
1291 unsigned int status_set = ST0_CU0;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001292#ifdef CONFIG_MIPS_MT_SMTC
1293 int secondaryTC = 0;
1294 int bootTC = (cpu == 0);
1295
1296 /*
1297 * Only do per_cpu_trap_init() for first TC of Each VPE.
1298 * Note that this hack assumes that the SMTC init code
1299 * assigns TCs consecutively and in ascending order.
1300 */
1301
1302 if (((read_c0_tcbind() & TCBIND_CURTC) != 0) &&
1303 ((read_c0_tcbind() & TCBIND_CURVPE) == cpu_data[cpu - 1].vpe_id))
1304 secondaryTC = 1;
1305#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
1307 /*
1308 * Disable coprocessors and select 32-bit or 64-bit addressing
1309 * and the 16/32 or 32/32 FPR register model. Reset the BEV
1310 * flag that some firmware may have left set and the TS bit (for
1311 * IP27). Set XX for ISA IV code to work.
1312 */
Ralf Baechle875d43e2005-09-03 15:56:16 -07001313#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 status_set |= ST0_FR|ST0_KX|ST0_SX|ST0_UX;
1315#endif
1316 if (current_cpu_data.isa_level == MIPS_CPU_ISA_IV)
1317 status_set |= ST0_XX;
Ralf Baechleb38c7392006-02-07 01:20:43 +00001318 change_c0_status(ST0_CU|ST0_MX|ST0_RE|ST0_FR|ST0_BEV|ST0_TS|ST0_KX|ST0_SX|ST0_UX,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 status_set);
1320
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +00001321 if (cpu_has_dsp)
1322 set_c0_status(ST0_MX);
1323
Ralf Baechlee01402b2005-07-14 15:57:16 +00001324#ifdef CONFIG_CPU_MIPSR2
1325 write_c0_hwrena (0x0000000f); /* Allow rdhwr to all registers */
1326#endif
1327
Ralf Baechle41c594a2006-04-05 09:45:45 +01001328#ifdef CONFIG_MIPS_MT_SMTC
1329 if (!secondaryTC) {
1330#endif /* CONFIG_MIPS_MT_SMTC */
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 /*
Ralf Baechlee01402b2005-07-14 15:57:16 +00001333 * Interrupt handling.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001335 if (cpu_has_veic || cpu_has_vint) {
1336 write_c0_ebase (ebase);
1337 /* Setting vector spacing enables EI/VI mode */
1338 change_c0_intctl (0x3e0, VECTORSPACING);
1339 }
Ralf Baechled03d0a52005-08-17 13:44:26 +00001340 if (cpu_has_divec) {
1341 if (cpu_has_mipsmt) {
1342 unsigned int vpflags = dvpe();
1343 set_c0_cause(CAUSEF_IV);
1344 evpe(vpflags);
1345 } else
1346 set_c0_cause(CAUSEF_IV);
1347 }
Ralf Baechle41c594a2006-04-05 09:45:45 +01001348#ifdef CONFIG_MIPS_MT_SMTC
1349 }
1350#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
1352 cpu_data[cpu].asid_cache = ASID_FIRST_VERSION;
1353 TLBMISS_HANDLER_SETUP();
1354
1355 atomic_inc(&init_mm.mm_count);
1356 current->active_mm = &init_mm;
1357 BUG_ON(current->mm);
1358 enter_lazy_tlb(&init_mm, current);
1359
Ralf Baechle41c594a2006-04-05 09:45:45 +01001360#ifdef CONFIG_MIPS_MT_SMTC
1361 if (bootTC) {
1362#endif /* CONFIG_MIPS_MT_SMTC */
1363 cpu_cache_init();
1364 tlb_init();
1365#ifdef CONFIG_MIPS_MT_SMTC
1366 }
1367#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
Ralf Baechlee01402b2005-07-14 15:57:16 +00001370/* Install CPU exception handler */
1371void __init set_handler (unsigned long offset, void *addr, unsigned long size)
1372{
1373 memcpy((void *)(ebase + offset), addr, size);
1374 flush_icache_range(ebase + offset, ebase + offset + size);
1375}
1376
1377/* Install uncached CPU exception handler */
1378void __init set_uncached_handler (unsigned long offset, void *addr, unsigned long size)
1379{
1380#ifdef CONFIG_32BIT
1381 unsigned long uncached_ebase = KSEG1ADDR(ebase);
1382#endif
1383#ifdef CONFIG_64BIT
1384 unsigned long uncached_ebase = TO_UNCAC(ebase);
1385#endif
1386
1387 memcpy((void *)(uncached_ebase + offset), addr, size);
1388}
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390void __init trap_init(void)
1391{
1392 extern char except_vec3_generic, except_vec3_r4000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 extern char except_vec4;
1394 unsigned long i;
1395
Ralf Baechlee01402b2005-07-14 15:57:16 +00001396 if (cpu_has_veic || cpu_has_vint)
1397 ebase = (unsigned long) alloc_bootmem_low_pages (0x200 + VECTORSPACING*64);
1398 else
1399 ebase = CAC_BASE;
1400
Ralf Baechlee01402b2005-07-14 15:57:16 +00001401 mips_srs_init();
Ralf Baechlee01402b2005-07-14 15:57:16 +00001402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 per_cpu_trap_init();
1404
1405 /*
1406 * Copy the generic exception handlers to their final destination.
1407 * This will be overriden later as suitable for a particular
1408 * configuration.
1409 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001410 set_handler(0x180, &except_vec3_generic, 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 /*
1413 * Setup default vectors
1414 */
1415 for (i = 0; i <= 31; i++)
1416 set_except_vector(i, handle_reserved);
1417
1418 /*
1419 * Copy the EJTAG debug exception vector handler code to it's final
1420 * destination.
1421 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001422 if (cpu_has_ejtag && board_ejtag_handler_setup)
1423 board_ejtag_handler_setup ();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
1425 /*
1426 * Only some CPUs have the watch exceptions.
1427 */
1428 if (cpu_has_watch)
1429 set_except_vector(23, handle_watch);
1430
1431 /*
Ralf Baechlee01402b2005-07-14 15:57:16 +00001432 * Initialise interrupt handlers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001434 if (cpu_has_veic || cpu_has_vint) {
1435 int nvec = cpu_has_veic ? 64 : 8;
1436 for (i = 0; i < nvec; i++)
Ralf Baechleff3eab22006-03-29 14:12:58 +01001437 set_vi_handler(i, NULL);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001438 }
1439 else if (cpu_has_divec)
1440 set_handler(0x200, &except_vec4, 0x8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441
1442 /*
1443 * Some CPUs can enable/disable for cache parity detection, but does
1444 * it different ways.
1445 */
1446 parity_protection_init();
1447
1448 /*
1449 * The Data Bus Errors / Instruction Bus Errors are signaled
1450 * by external hardware. Therefore these two exceptions
1451 * may have board specific handlers.
1452 */
1453 if (board_be_init)
1454 board_be_init();
1455
Ralf Baechlee4ac58a2006-04-03 17:56:36 +01001456 set_except_vector(0, handle_int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 set_except_vector(1, handle_tlbm);
1458 set_except_vector(2, handle_tlbl);
1459 set_except_vector(3, handle_tlbs);
1460
1461 set_except_vector(4, handle_adel);
1462 set_except_vector(5, handle_ades);
1463
1464 set_except_vector(6, handle_ibe);
1465 set_except_vector(7, handle_dbe);
1466
1467 set_except_vector(8, handle_sys);
1468 set_except_vector(9, handle_bp);
1469 set_except_vector(10, handle_ri);
1470 set_except_vector(11, handle_cpu);
1471 set_except_vector(12, handle_ov);
1472 set_except_vector(13, handle_tr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
1474 if (current_cpu_data.cputype == CPU_R6000 ||
1475 current_cpu_data.cputype == CPU_R6000A) {
1476 /*
1477 * The R6000 is the only R-series CPU that features a machine
1478 * check exception (similar to the R4000 cache error) and
1479 * unaligned ldc1/sdc1 exception. The handlers have not been
1480 * written yet. Well, anyway there is no R6000 machine on the
1481 * current list of targets for Linux/MIPS.
1482 * (Duh, crap, there is someone with a triple R6k machine)
1483 */
1484 //set_except_vector(14, handle_mc);
1485 //set_except_vector(15, handle_ndc);
1486 }
1487
Ralf Baechlee01402b2005-07-14 15:57:16 +00001488
1489 if (board_nmi_handler_setup)
1490 board_nmi_handler_setup();
1491
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +00001492 if (cpu_has_fpu && !cpu_has_nofpuex)
1493 set_except_vector(15, handle_fpe);
1494
1495 set_except_vector(22, handle_mdmx);
1496
1497 if (cpu_has_mcheck)
1498 set_except_vector(24, handle_mcheck);
1499
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001500 if (cpu_has_mipsmt)
1501 set_except_vector(25, handle_mt);
1502
Ralf Baechlee50c0a8f2005-05-31 11:49:19 +00001503 if (cpu_has_dsp)
1504 set_except_vector(26, handle_dsp);
1505
1506 if (cpu_has_vce)
1507 /* Special exception: R4[04]00 uses also the divec space. */
1508 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_r4000, 0x100);
1509 else if (cpu_has_4kex)
1510 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_generic, 0x80);
1511 else
1512 memcpy((void *)(CAC_BASE + 0x080), &except_vec3_generic, 0x80);
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 signal_init();
1515#ifdef CONFIG_MIPS32_COMPAT
1516 signal32_init();
1517#endif
1518
Ralf Baechlee01402b2005-07-14 15:57:16 +00001519 flush_icache_range(ebase, ebase + 0x400);
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00001520 flush_tlb_handlers();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}