]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/mips/kernel/traps.c
MIPS: For Cavium OCTEON handle hazards as per the R10000 handling.
[mirror_ubuntu-zesty-kernel.git] / arch / mips / kernel / traps.c
CommitLineData
1da177e4
LT
1/*
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 *
36ccf1c0 6 * Copyright (C) 1994 - 1999, 2000, 01, 06 Ralf Baechle
1da177e4
LT
7 * 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.
60b0d655 12 * Copyright (C) 2002, 2003, 2004, 2005, 2007 Maciej W. Rozycki
1da177e4 13 */
8e8a52ed 14#include <linux/bug.h>
60b0d655 15#include <linux/compiler.h>
1da177e4
LT
16#include <linux/init.h>
17#include <linux/mm.h>
18#include <linux/module.h>
19#include <linux/sched.h>
20#include <linux/smp.h>
1da177e4
LT
21#include <linux/spinlock.h>
22#include <linux/kallsyms.h>
e01402b1 23#include <linux/bootmem.h>
d4fd1989 24#include <linux/interrupt.h>
39b8d525 25#include <linux/ptrace.h>
88547001
JW
26#include <linux/kgdb.h>
27#include <linux/kdebug.h>
1da177e4
LT
28
29#include <asm/bootinfo.h>
30#include <asm/branch.h>
31#include <asm/break.h>
32#include <asm/cpu.h>
e50c0a8f 33#include <asm/dsp.h>
1da177e4 34#include <asm/fpu.h>
ba3049ed 35#include <asm/fpu_emulator.h>
340ee4b9
RB
36#include <asm/mipsregs.h>
37#include <asm/mipsmtregs.h>
1da177e4
LT
38#include <asm/module.h>
39#include <asm/pgtable.h>
40#include <asm/ptrace.h>
41#include <asm/sections.h>
42#include <asm/system.h>
43#include <asm/tlbdebug.h>
44#include <asm/traps.h>
45#include <asm/uaccess.h>
b67b2b70 46#include <asm/watch.h>
1da177e4 47#include <asm/mmu_context.h>
1da177e4 48#include <asm/types.h>
1df0f0ff 49#include <asm/stacktrace.h>
1da177e4 50
c65a5480
AN
51extern void check_wait(void);
52extern asmlinkage void r4k_wait(void);
53extern asmlinkage void rollback_handle_int(void);
e4ac58af 54extern asmlinkage void handle_int(void);
1da177e4
LT
55extern asmlinkage void handle_tlbm(void);
56extern asmlinkage void handle_tlbl(void);
57extern asmlinkage void handle_tlbs(void);
58extern asmlinkage void handle_adel(void);
59extern asmlinkage void handle_ades(void);
60extern asmlinkage void handle_ibe(void);
61extern asmlinkage void handle_dbe(void);
62extern asmlinkage void handle_sys(void);
63extern asmlinkage void handle_bp(void);
64extern asmlinkage void handle_ri(void);
5b10496b
AN
65extern asmlinkage void handle_ri_rdhwr_vivt(void);
66extern asmlinkage void handle_ri_rdhwr(void);
1da177e4
LT
67extern asmlinkage void handle_cpu(void);
68extern asmlinkage void handle_ov(void);
69extern asmlinkage void handle_tr(void);
70extern asmlinkage void handle_fpe(void);
71extern asmlinkage void handle_mdmx(void);
72extern asmlinkage void handle_watch(void);
340ee4b9 73extern asmlinkage void handle_mt(void);
e50c0a8f 74extern asmlinkage void handle_dsp(void);
1da177e4
LT
75extern asmlinkage void handle_mcheck(void);
76extern asmlinkage void handle_reserved(void);
77
12616ed2 78extern int fpu_emulator_cop1Handler(struct pt_regs *xcp,
e04582b7 79 struct mips_fpu_struct *ctx, int has_fpu);
1da177e4
LT
80
81void (*board_be_init)(void);
82int (*board_be_handler)(struct pt_regs *regs, int is_fixup);
e01402b1
RB
83void (*board_nmi_handler_setup)(void);
84void (*board_ejtag_handler_setup)(void);
85void (*board_bind_eic_interrupt)(int irq, int regset);
1da177e4 86
1da177e4 87
4d157d5e 88static void show_raw_backtrace(unsigned long reg29)
e889d78f 89{
39b8d525 90 unsigned long *sp = (unsigned long *)(reg29 & ~3);
e889d78f
AN
91 unsigned long addr;
92
93 printk("Call Trace:");
94#ifdef CONFIG_KALLSYMS
95 printk("\n");
96#endif
10220c88
TB
97 while (!kstack_end(sp)) {
98 unsigned long __user *p =
99 (unsigned long __user *)(unsigned long)sp++;
100 if (__get_user(addr, p)) {
101 printk(" (Bad stack address)");
102 break;
39b8d525 103 }
10220c88
TB
104 if (__kernel_text_address(addr))
105 print_ip_sym(addr);
e889d78f 106 }
10220c88 107 printk("\n");
e889d78f
AN
108}
109
f66686f7 110#ifdef CONFIG_KALLSYMS
1df0f0ff 111int raw_show_trace;
f66686f7
AN
112static int __init set_raw_show_trace(char *str)
113{
114 raw_show_trace = 1;
115 return 1;
116}
117__setup("raw_show_trace", set_raw_show_trace);
1df0f0ff 118#endif
4d157d5e 119
eae23f2c 120static void show_backtrace(struct task_struct *task, const struct pt_regs *regs)
f66686f7 121{
4d157d5e
FBH
122 unsigned long sp = regs->regs[29];
123 unsigned long ra = regs->regs[31];
f66686f7 124 unsigned long pc = regs->cp0_epc;
f66686f7
AN
125
126 if (raw_show_trace || !__kernel_text_address(pc)) {
87151ae3 127 show_raw_backtrace(sp);
f66686f7
AN
128 return;
129 }
130 printk("Call Trace:\n");
4d157d5e 131 do {
87151ae3 132 print_ip_sym(pc);
1924600c 133 pc = unwind_stack(task, &sp, pc, &ra);
4d157d5e 134 } while (pc);
f66686f7
AN
135 printk("\n");
136}
f66686f7 137
1da177e4
LT
138/*
139 * This routine abuses get_user()/put_user() to reference pointers
140 * with at least a bit of error checking ...
141 */
eae23f2c
RB
142static void show_stacktrace(struct task_struct *task,
143 const struct pt_regs *regs)
1da177e4
LT
144{
145 const int field = 2 * sizeof(unsigned long);
146 long stackdata;
147 int i;
5e0373b8 148 unsigned long __user *sp = (unsigned long __user *)regs->regs[29];
1da177e4
LT
149
150 printk("Stack :");
151 i = 0;
152 while ((unsigned long) sp & (PAGE_SIZE - 1)) {
153 if (i && ((i % (64 / field)) == 0))
154 printk("\n ");
155 if (i > 39) {
156 printk(" ...");
157 break;
158 }
159
160 if (__get_user(stackdata, sp++)) {
161 printk(" (Bad stack address)");
162 break;
163 }
164
165 printk(" %0*lx", field, stackdata);
166 i++;
167 }
168 printk("\n");
87151ae3 169 show_backtrace(task, regs);
f66686f7
AN
170}
171
f66686f7
AN
172void show_stack(struct task_struct *task, unsigned long *sp)
173{
174 struct pt_regs regs;
175 if (sp) {
176 regs.regs[29] = (unsigned long)sp;
177 regs.regs[31] = 0;
178 regs.cp0_epc = 0;
179 } else {
180 if (task && task != current) {
181 regs.regs[29] = task->thread.reg29;
182 regs.regs[31] = 0;
183 regs.cp0_epc = task->thread.reg31;
184 } else {
185 prepare_frametrace(&regs);
186 }
187 }
188 show_stacktrace(task, &regs);
1da177e4
LT
189}
190
191/*
192 * The architecture-independent dump_stack generator
193 */
194void dump_stack(void)
195{
1666a6fc 196 struct pt_regs regs;
1da177e4 197
1666a6fc
FBH
198 prepare_frametrace(&regs);
199 show_backtrace(current, &regs);
1da177e4
LT
200}
201
202EXPORT_SYMBOL(dump_stack);
203
e1bb8289 204static void show_code(unsigned int __user *pc)
1da177e4
LT
205{
206 long i;
39b8d525 207 unsigned short __user *pc16 = NULL;
1da177e4
LT
208
209 printk("\nCode:");
210
39b8d525
RB
211 if ((unsigned long)pc & 1)
212 pc16 = (unsigned short __user *)((unsigned long)pc & ~1);
1da177e4
LT
213 for(i = -3 ; i < 6 ; i++) {
214 unsigned int insn;
39b8d525 215 if (pc16 ? __get_user(insn, pc16 + i) : __get_user(insn, pc + i)) {
1da177e4
LT
216 printk(" (Bad address in epc)\n");
217 break;
218 }
39b8d525 219 printk("%c%0*x%c", (i?' ':'<'), pc16 ? 4 : 8, insn, (i?' ':'>'));
1da177e4
LT
220 }
221}
222
eae23f2c 223static void __show_regs(const struct pt_regs *regs)
1da177e4
LT
224{
225 const int field = 2 * sizeof(unsigned long);
226 unsigned int cause = regs->cp0_cause;
227 int i;
228
229 printk("Cpu %d\n", smp_processor_id());
230
231 /*
232 * Saved main processor registers
233 */
234 for (i = 0; i < 32; ) {
235 if ((i % 4) == 0)
236 printk("$%2d :", i);
237 if (i == 0)
238 printk(" %0*lx", field, 0UL);
239 else if (i == 26 || i == 27)
240 printk(" %*s", field, "");
241 else
242 printk(" %0*lx", field, regs->regs[i]);
243
244 i++;
245 if ((i % 4) == 0)
246 printk("\n");
247 }
248
9693a853
FBH
249#ifdef CONFIG_CPU_HAS_SMARTMIPS
250 printk("Acx : %0*lx\n", field, regs->acx);
251#endif
1da177e4
LT
252 printk("Hi : %0*lx\n", field, regs->hi);
253 printk("Lo : %0*lx\n", field, regs->lo);
254
255 /*
256 * Saved cp0 registers
257 */
b012cffe
RB
258 printk("epc : %0*lx %pS\n", field, regs->cp0_epc,
259 (void *) regs->cp0_epc);
1da177e4 260 printk(" %s\n", print_tainted());
b012cffe
RB
261 printk("ra : %0*lx %pS\n", field, regs->regs[31],
262 (void *) regs->regs[31]);
1da177e4
LT
263
264 printk("Status: %08x ", (uint32_t) regs->cp0_status);
265
3b2396d9
MR
266 if (current_cpu_data.isa_level == MIPS_CPU_ISA_I) {
267 if (regs->cp0_status & ST0_KUO)
268 printk("KUo ");
269 if (regs->cp0_status & ST0_IEO)
270 printk("IEo ");
271 if (regs->cp0_status & ST0_KUP)
272 printk("KUp ");
273 if (regs->cp0_status & ST0_IEP)
274 printk("IEp ");
275 if (regs->cp0_status & ST0_KUC)
276 printk("KUc ");
277 if (regs->cp0_status & ST0_IEC)
278 printk("IEc ");
279 } else {
280 if (regs->cp0_status & ST0_KX)
281 printk("KX ");
282 if (regs->cp0_status & ST0_SX)
283 printk("SX ");
284 if (regs->cp0_status & ST0_UX)
285 printk("UX ");
286 switch (regs->cp0_status & ST0_KSU) {
287 case KSU_USER:
288 printk("USER ");
289 break;
290 case KSU_SUPERVISOR:
291 printk("SUPERVISOR ");
292 break;
293 case KSU_KERNEL:
294 printk("KERNEL ");
295 break;
296 default:
297 printk("BAD_MODE ");
298 break;
299 }
300 if (regs->cp0_status & ST0_ERL)
301 printk("ERL ");
302 if (regs->cp0_status & ST0_EXL)
303 printk("EXL ");
304 if (regs->cp0_status & ST0_IE)
305 printk("IE ");
1da177e4 306 }
1da177e4
LT
307 printk("\n");
308
309 printk("Cause : %08x\n", cause);
310
311 cause = (cause & CAUSEF_EXCCODE) >> CAUSEB_EXCCODE;
312 if (1 <= cause && cause <= 5)
313 printk("BadVA : %0*lx\n", field, regs->cp0_badvaddr);
314
9966db25
RB
315 printk("PrId : %08x (%s)\n", read_c0_prid(),
316 cpu_name_string());
1da177e4
LT
317}
318
eae23f2c
RB
319/*
320 * FIXME: really the generic show_regs should take a const pointer argument.
321 */
322void show_regs(struct pt_regs *regs)
323{
324 __show_regs((struct pt_regs *)regs);
325}
326
327void show_registers(const struct pt_regs *regs)
1da177e4 328{
39b8d525
RB
329 const int field = 2 * sizeof(unsigned long);
330
eae23f2c 331 __show_regs(regs);
1da177e4 332 print_modules();
39b8d525
RB
333 printk("Process %s (pid: %d, threadinfo=%p, task=%p, tls=%0*lx)\n",
334 current->comm, current->pid, current_thread_info(), current,
335 field, current_thread_info()->tp_value);
336 if (cpu_has_userlocal) {
337 unsigned long tls;
338
339 tls = read_c0_userlocal();
340 if (tls != current_thread_info()->tp_value)
341 printk("*HwTLS: %0*lx\n", field, tls);
342 }
343
f66686f7 344 show_stacktrace(current, regs);
e1bb8289 345 show_code((unsigned int __user *) regs->cp0_epc);
1da177e4
LT
346 printk("\n");
347}
348
349static DEFINE_SPINLOCK(die_lock);
350
eae23f2c 351void __noreturn die(const char * str, const struct pt_regs * regs)
1da177e4
LT
352{
353 static int die_counter;
41c594ab
RB
354#ifdef CONFIG_MIPS_MT_SMTC
355 unsigned long dvpret = dvpe();
356#endif /* CONFIG_MIPS_MT_SMTC */
1da177e4
LT
357
358 console_verbose();
359 spin_lock_irq(&die_lock);
41c594ab
RB
360 bust_spinlocks(1);
361#ifdef CONFIG_MIPS_MT_SMTC
362 mips_mt_regdump(dvpret);
363#endif /* CONFIG_MIPS_MT_SMTC */
178086c8 364 printk("%s[#%d]:\n", str, ++die_counter);
1da177e4 365 show_registers(regs);
bcdcd8e7 366 add_taint(TAINT_DIE);
1da177e4 367 spin_unlock_irq(&die_lock);
d4fd1989
MB
368
369 if (in_interrupt())
370 panic("Fatal exception in interrupt");
371
372 if (panic_on_oops) {
373 printk(KERN_EMERG "Fatal exception: panic in 5 seconds\n");
374 ssleep(5);
375 panic("Fatal exception");
376 }
377
1da177e4
LT
378 do_exit(SIGSEGV);
379}
380
0510617b
TB
381extern struct exception_table_entry __start___dbe_table[];
382extern struct exception_table_entry __stop___dbe_table[];
1da177e4 383
b6dcec9b
RB
384__asm__(
385" .section __dbe_table, \"a\"\n"
386" .previous \n");
1da177e4
LT
387
388/* Given an address, look for it in the exception tables. */
389static const struct exception_table_entry *search_dbe_tables(unsigned long addr)
390{
391 const struct exception_table_entry *e;
392
393 e = search_extable(__start___dbe_table, __stop___dbe_table - 1, addr);
394 if (!e)
395 e = search_module_dbetables(addr);
396 return e;
397}
398
399asmlinkage void do_be(struct pt_regs *regs)
400{
401 const int field = 2 * sizeof(unsigned long);
402 const struct exception_table_entry *fixup = NULL;
403 int data = regs->cp0_cause & 4;
404 int action = MIPS_BE_FATAL;
405
406 /* XXX For now. Fixme, this searches the wrong table ... */
407 if (data && !user_mode(regs))
408 fixup = search_dbe_tables(exception_epc(regs));
409
410 if (fixup)
411 action = MIPS_BE_FIXUP;
412
413 if (board_be_handler)
28fc582c 414 action = board_be_handler(regs, fixup != NULL);
1da177e4
LT
415
416 switch (action) {
417 case MIPS_BE_DISCARD:
418 return;
419 case MIPS_BE_FIXUP:
420 if (fixup) {
421 regs->cp0_epc = fixup->nextinsn;
422 return;
423 }
424 break;
425 default:
426 break;
427 }
428
429 /*
430 * Assume it would be too dangerous to continue ...
431 */
432 printk(KERN_ALERT "%s bus error, epc == %0*lx, ra == %0*lx\n",
433 data ? "Data" : "Instruction",
434 field, regs->cp0_epc, field, regs->regs[31]);
88547001
JW
435 if (notify_die(DIE_OOPS, "bus error", regs, SIGBUS, 0, 0)
436 == NOTIFY_STOP)
437 return;
438
1da177e4
LT
439 die_if_kernel("Oops", regs);
440 force_sig(SIGBUS, current);
441}
442
1da177e4 443/*
60b0d655 444 * ll/sc, rdhwr, sync emulation
1da177e4
LT
445 */
446
447#define OPCODE 0xfc000000
448#define BASE 0x03e00000
449#define RT 0x001f0000
450#define OFFSET 0x0000ffff
451#define LL 0xc0000000
452#define SC 0xe0000000
60b0d655 453#define SPEC0 0x00000000
3c37026d
RB
454#define SPEC3 0x7c000000
455#define RD 0x0000f800
456#define FUNC 0x0000003f
60b0d655 457#define SYNC 0x0000000f
3c37026d 458#define RDHWR 0x0000003b
1da177e4
LT
459
460/*
461 * The ll_bit is cleared by r*_switch.S
462 */
463
464unsigned long ll_bit;
465
466static struct task_struct *ll_task = NULL;
467
60b0d655 468static inline int simulate_ll(struct pt_regs *regs, unsigned int opcode)
1da177e4 469{
fe00f943 470 unsigned long value, __user *vaddr;
1da177e4 471 long offset;
1da177e4
LT
472
473 /*
474 * analyse the ll instruction that just caused a ri exception
475 * and put the referenced address to addr.
476 */
477
478 /* sign extend offset */
479 offset = opcode & OFFSET;
480 offset <<= 16;
481 offset >>= 16;
482
fe00f943
RB
483 vaddr = (unsigned long __user *)
484 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
1da177e4 485
60b0d655
MR
486 if ((unsigned long)vaddr & 3)
487 return SIGBUS;
488 if (get_user(value, vaddr))
489 return SIGSEGV;
1da177e4
LT
490
491 preempt_disable();
492
493 if (ll_task == NULL || ll_task == current) {
494 ll_bit = 1;
495 } else {
496 ll_bit = 0;
497 }
498 ll_task = current;
499
500 preempt_enable();
501
502 regs->regs[(opcode & RT) >> 16] = value;
503
60b0d655 504 return 0;
1da177e4
LT
505}
506
60b0d655 507static inline int simulate_sc(struct pt_regs *regs, unsigned int opcode)
1da177e4 508{
fe00f943
RB
509 unsigned long __user *vaddr;
510 unsigned long reg;
1da177e4 511 long offset;
1da177e4
LT
512
513 /*
514 * analyse the sc instruction that just caused a ri exception
515 * and put the referenced address to addr.
516 */
517
518 /* sign extend offset */
519 offset = opcode & OFFSET;
520 offset <<= 16;
521 offset >>= 16;
522
fe00f943
RB
523 vaddr = (unsigned long __user *)
524 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
1da177e4
LT
525 reg = (opcode & RT) >> 16;
526
60b0d655
MR
527 if ((unsigned long)vaddr & 3)
528 return SIGBUS;
1da177e4
LT
529
530 preempt_disable();
531
532 if (ll_bit == 0 || ll_task != current) {
533 regs->regs[reg] = 0;
534 preempt_enable();
60b0d655 535 return 0;
1da177e4
LT
536 }
537
538 preempt_enable();
539
60b0d655
MR
540 if (put_user(regs->regs[reg], vaddr))
541 return SIGSEGV;
1da177e4
LT
542
543 regs->regs[reg] = 1;
544
60b0d655 545 return 0;
1da177e4
LT
546}
547
548/*
549 * ll uses the opcode of lwc0 and sc uses the opcode of swc0. That is both
550 * opcodes are supposed to result in coprocessor unusable exceptions if
551 * executed on ll/sc-less processors. That's the theory. In practice a
552 * few processors such as NEC's VR4100 throw reserved instruction exceptions
553 * instead, so we're doing the emulation thing in both exception handlers.
554 */
60b0d655 555static int simulate_llsc(struct pt_regs *regs, unsigned int opcode)
1da177e4 556{
60b0d655
MR
557 if ((opcode & OPCODE) == LL)
558 return simulate_ll(regs, opcode);
559 if ((opcode & OPCODE) == SC)
560 return simulate_sc(regs, opcode);
1da177e4 561
60b0d655 562 return -1; /* Must be something else ... */
1da177e4
LT
563}
564
3c37026d
RB
565/*
566 * Simulate trapping 'rdhwr' instructions to provide user accessible
1f5826bd 567 * registers not implemented in hardware.
3c37026d 568 */
60b0d655 569static int simulate_rdhwr(struct pt_regs *regs, unsigned int opcode)
3c37026d 570{
dc8f6029 571 struct thread_info *ti = task_thread_info(current);
3c37026d
RB
572
573 if ((opcode & OPCODE) == SPEC3 && (opcode & FUNC) == RDHWR) {
574 int rd = (opcode & RD) >> 11;
575 int rt = (opcode & RT) >> 16;
576 switch (rd) {
1f5826bd
CD
577 case 0: /* CPU number */
578 regs->regs[rt] = smp_processor_id();
579 return 0;
580 case 1: /* SYNCI length */
581 regs->regs[rt] = min(current_cpu_data.dcache.linesz,
582 current_cpu_data.icache.linesz);
583 return 0;
584 case 2: /* Read count register */
585 regs->regs[rt] = read_c0_count();
586 return 0;
587 case 3: /* Count register resolution */
588 switch (current_cpu_data.cputype) {
589 case CPU_20KC:
590 case CPU_25KF:
591 regs->regs[rt] = 1;
592 break;
3c37026d 593 default:
1f5826bd
CD
594 regs->regs[rt] = 2;
595 }
596 return 0;
597 case 29:
598 regs->regs[rt] = ti->tp_value;
599 return 0;
600 default:
601 return -1;
3c37026d
RB
602 }
603 }
604
56ebd51b 605 /* Not ours. */
60b0d655
MR
606 return -1;
607}
e5679882 608
60b0d655
MR
609static int simulate_sync(struct pt_regs *regs, unsigned int opcode)
610{
611 if ((opcode & OPCODE) == SPEC0 && (opcode & FUNC) == SYNC)
612 return 0;
613
614 return -1; /* Must be something else ... */
3c37026d
RB
615}
616
1da177e4
LT
617asmlinkage void do_ov(struct pt_regs *regs)
618{
619 siginfo_t info;
620
36ccf1c0
RB
621 die_if_kernel("Integer overflow", regs);
622
1da177e4
LT
623 info.si_code = FPE_INTOVF;
624 info.si_signo = SIGFPE;
625 info.si_errno = 0;
fe00f943 626 info.si_addr = (void __user *) regs->cp0_epc;
1da177e4
LT
627 force_sig_info(SIGFPE, &info, current);
628}
629
630/*
631 * XXX Delayed fp exceptions when doing a lazy ctx switch XXX
632 */
633asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31)
634{
948a34cf
TS
635 siginfo_t info;
636
88547001
JW
637 if (notify_die(DIE_FP, "FP exception", regs, SIGFPE, 0, 0)
638 == NOTIFY_STOP)
639 return;
57725f9e
CD
640 die_if_kernel("FP exception in kernel code", regs);
641
1da177e4
LT
642 if (fcr31 & FPU_CSR_UNI_X) {
643 int sig;
644
1da177e4 645 /*
a3dddd56 646 * Unimplemented operation exception. If we've got the full
1da177e4
LT
647 * software emulator on-board, let's use it...
648 *
649 * Force FPU to dump state into task/thread context. We're
650 * moving a lot of data here for what is probably a single
651 * instruction, but the alternative is to pre-decode the FP
652 * register operands before invoking the emulator, which seems
653 * a bit extreme for what should be an infrequent event.
654 */
cd21dfcf 655 /* Ensure 'resume' not overwrite saved fp context again. */
53dc8028 656 lose_fpu(1);
1da177e4
LT
657
658 /* Run the emulator */
49a89efb 659 sig = fpu_emulator_cop1Handler(regs, &current->thread.fpu, 1);
1da177e4
LT
660
661 /*
662 * We can't allow the emulated instruction to leave any of
663 * the cause bit set in $fcr31.
664 */
eae89076 665 current->thread.fpu.fcr31 &= ~FPU_CSR_ALL_X;
1da177e4
LT
666
667 /* Restore the hardware register state */
53dc8028 668 own_fpu(1); /* Using the FPU again. */
1da177e4
LT
669
670 /* If something went wrong, signal */
671 if (sig)
672 force_sig(sig, current);
673
674 return;
948a34cf
TS
675 } else if (fcr31 & FPU_CSR_INV_X)
676 info.si_code = FPE_FLTINV;
677 else if (fcr31 & FPU_CSR_DIV_X)
678 info.si_code = FPE_FLTDIV;
679 else if (fcr31 & FPU_CSR_OVF_X)
680 info.si_code = FPE_FLTOVF;
681 else if (fcr31 & FPU_CSR_UDF_X)
682 info.si_code = FPE_FLTUND;
683 else if (fcr31 & FPU_CSR_INE_X)
684 info.si_code = FPE_FLTRES;
685 else
686 info.si_code = __SI_FAULT;
687 info.si_signo = SIGFPE;
688 info.si_errno = 0;
689 info.si_addr = (void __user *) regs->cp0_epc;
690 force_sig_info(SIGFPE, &info, current);
1da177e4
LT
691}
692
df270051
RB
693static void do_trap_or_bp(struct pt_regs *regs, unsigned int code,
694 const char *str)
1da177e4 695{
1da177e4 696 siginfo_t info;
df270051 697 char b[40];
1da177e4 698
88547001
JW
699 if (notify_die(DIE_TRAP, str, regs, code, 0, 0) == NOTIFY_STOP)
700 return;
701
1da177e4 702 /*
df270051
RB
703 * A short test says that IRIX 5.3 sends SIGTRAP for all trap
704 * insns, even for trap and break codes that indicate arithmetic
705 * failures. Weird ...
1da177e4
LT
706 * But should we continue the brokenness??? --macro
707 */
df270051
RB
708 switch (code) {
709 case BRK_OVERFLOW:
710 case BRK_DIVZERO:
711 scnprintf(b, sizeof(b), "%s instruction in kernel code", str);
712 die_if_kernel(b, regs);
713 if (code == BRK_DIVZERO)
1da177e4
LT
714 info.si_code = FPE_INTDIV;
715 else
716 info.si_code = FPE_INTOVF;
717 info.si_signo = SIGFPE;
718 info.si_errno = 0;
fe00f943 719 info.si_addr = (void __user *) regs->cp0_epc;
1da177e4
LT
720 force_sig_info(SIGFPE, &info, current);
721 break;
63dc68a8 722 case BRK_BUG:
df270051
RB
723 die_if_kernel("Kernel bug detected", regs);
724 force_sig(SIGTRAP, current);
63dc68a8 725 break;
ba3049ed
RB
726 case BRK_MEMU:
727 /*
728 * Address errors may be deliberately induced by the FPU
729 * emulator to retake control of the CPU after executing the
730 * instruction in the delay slot of an emulated branch.
731 *
732 * Terminate if exception was recognized as a delay slot return
733 * otherwise handle as normal.
734 */
735 if (do_dsemulret(regs))
736 return;
737
738 die_if_kernel("Math emu break/trap", regs);
739 force_sig(SIGTRAP, current);
740 break;
1da177e4 741 default:
df270051
RB
742 scnprintf(b, sizeof(b), "%s instruction in kernel code", str);
743 die_if_kernel(b, regs);
1da177e4
LT
744 force_sig(SIGTRAP, current);
745 }
df270051
RB
746}
747
748asmlinkage void do_bp(struct pt_regs *regs)
749{
750 unsigned int opcode, bcode;
751
752 if (__get_user(opcode, (unsigned int __user *) exception_epc(regs)))
753 goto out_sigsegv;
754
755 /*
756 * There is the ancient bug in the MIPS assemblers that the break
757 * code starts left to bit 16 instead to bit 6 in the opcode.
758 * Gas is bug-compatible, but not always, grrr...
759 * We handle both cases with a simple heuristics. --macro
760 */
761 bcode = ((opcode >> 6) & ((1 << 20) - 1));
762 if (bcode >= (1 << 10))
763 bcode >>= 10;
764
765 do_trap_or_bp(regs, bcode, "Break");
90fccb13 766 return;
e5679882
RB
767
768out_sigsegv:
769 force_sig(SIGSEGV, current);
1da177e4
LT
770}
771
772asmlinkage void do_tr(struct pt_regs *regs)
773{
774 unsigned int opcode, tcode = 0;
1da177e4 775
ba755f8e 776 if (__get_user(opcode, (unsigned int __user *) exception_epc(regs)))
e5679882 777 goto out_sigsegv;
1da177e4
LT
778
779 /* Immediate versions don't provide a code. */
780 if (!(opcode & OPCODE))
781 tcode = ((opcode >> 6) & ((1 << 10) - 1));
782
df270051 783 do_trap_or_bp(regs, tcode, "Trap");
90fccb13 784 return;
e5679882
RB
785
786out_sigsegv:
787 force_sig(SIGSEGV, current);
1da177e4
LT
788}
789
790asmlinkage void do_ri(struct pt_regs *regs)
791{
60b0d655
MR
792 unsigned int __user *epc = (unsigned int __user *)exception_epc(regs);
793 unsigned long old_epc = regs->cp0_epc;
794 unsigned int opcode = 0;
795 int status = -1;
1da177e4 796
88547001
JW
797 if (notify_die(DIE_RI, "RI Fault", regs, SIGSEGV, 0, 0)
798 == NOTIFY_STOP)
799 return;
800
60b0d655 801 die_if_kernel("Reserved instruction in kernel code", regs);
1da177e4 802
60b0d655 803 if (unlikely(compute_return_epc(regs) < 0))
3c37026d
RB
804 return;
805
60b0d655
MR
806 if (unlikely(get_user(opcode, epc) < 0))
807 status = SIGSEGV;
808
809 if (!cpu_has_llsc && status < 0)
810 status = simulate_llsc(regs, opcode);
811
812 if (status < 0)
813 status = simulate_rdhwr(regs, opcode);
814
815 if (status < 0)
816 status = simulate_sync(regs, opcode);
817
818 if (status < 0)
819 status = SIGILL;
820
821 if (unlikely(status > 0)) {
822 regs->cp0_epc = old_epc; /* Undo skip-over. */
823 force_sig(status, current);
824 }
1da177e4
LT
825}
826
d223a861
RB
827/*
828 * MIPS MT processors may have fewer FPU contexts than CPU threads. If we've
829 * emulated more than some threshold number of instructions, force migration to
830 * a "CPU" that has FP support.
831 */
832static void mt_ase_fp_affinity(void)
833{
834#ifdef CONFIG_MIPS_MT_FPAFF
835 if (mt_fpemul_threshold > 0 &&
836 ((current->thread.emulated_fp++ > mt_fpemul_threshold))) {
837 /*
838 * If there's no FPU present, or if the application has already
839 * restricted the allowed set to exclude any CPUs with FPUs,
840 * we'll skip the procedure.
841 */
842 if (cpus_intersects(current->cpus_allowed, mt_fpu_cpumask)) {
843 cpumask_t tmask;
844
9cc12363
KK
845 current->thread.user_cpus_allowed
846 = current->cpus_allowed;
847 cpus_and(tmask, current->cpus_allowed,
848 mt_fpu_cpumask);
d223a861 849 set_cpus_allowed(current, tmask);
293c5bd1 850 set_thread_flag(TIF_FPUBOUND);
d223a861
RB
851 }
852 }
853#endif /* CONFIG_MIPS_MT_FPAFF */
854}
855
1da177e4
LT
856asmlinkage void do_cpu(struct pt_regs *regs)
857{
60b0d655
MR
858 unsigned int __user *epc;
859 unsigned long old_epc;
860 unsigned int opcode;
1da177e4 861 unsigned int cpid;
60b0d655 862 int status;
1da177e4 863
5323180d
AN
864 die_if_kernel("do_cpu invoked from kernel context!", regs);
865
1da177e4
LT
866 cpid = (regs->cp0_cause >> CAUSEB_CE) & 3;
867
868 switch (cpid) {
869 case 0:
60b0d655
MR
870 epc = (unsigned int __user *)exception_epc(regs);
871 old_epc = regs->cp0_epc;
872 opcode = 0;
873 status = -1;
1da177e4 874
60b0d655 875 if (unlikely(compute_return_epc(regs) < 0))
1da177e4 876 return;
3c37026d 877
60b0d655
MR
878 if (unlikely(get_user(opcode, epc) < 0))
879 status = SIGSEGV;
880
881 if (!cpu_has_llsc && status < 0)
882 status = simulate_llsc(regs, opcode);
883
884 if (status < 0)
885 status = simulate_rdhwr(regs, opcode);
886
887 if (status < 0)
888 status = SIGILL;
889
890 if (unlikely(status > 0)) {
891 regs->cp0_epc = old_epc; /* Undo skip-over. */
892 force_sig(status, current);
893 }
894
895 return;
1da177e4
LT
896
897 case 1:
53dc8028
AN
898 if (used_math()) /* Using the FPU again. */
899 own_fpu(1);
900 else { /* First time FPU user. */
1da177e4
LT
901 init_fpu();
902 set_used_math();
903 }
904
5323180d 905 if (!raw_cpu_has_fpu) {
e04582b7 906 int sig;
e04582b7
AN
907 sig = fpu_emulator_cop1Handler(regs,
908 &current->thread.fpu, 0);
1da177e4
LT
909 if (sig)
910 force_sig(sig, current);
d223a861
RB
911 else
912 mt_ase_fp_affinity();
1da177e4
LT
913 }
914
1da177e4
LT
915 return;
916
917 case 2:
918 case 3:
919 break;
920 }
921
922 force_sig(SIGILL, current);
923}
924
925asmlinkage void do_mdmx(struct pt_regs *regs)
926{
927 force_sig(SIGILL, current);
928}
929
930asmlinkage void do_watch(struct pt_regs *regs)
931{
b67b2b70
DD
932 u32 cause;
933
1da177e4 934 /*
b67b2b70
DD
935 * Clear WP (bit 22) bit of cause register so we don't loop
936 * forever.
1da177e4 937 */
b67b2b70
DD
938 cause = read_c0_cause();
939 cause &= ~(1 << 22);
940 write_c0_cause(cause);
941
942 /*
943 * If the current thread has the watch registers loaded, save
944 * their values and send SIGTRAP. Otherwise another thread
945 * left the registers set, clear them and continue.
946 */
947 if (test_tsk_thread_flag(current, TIF_LOAD_WATCH)) {
948 mips_read_watch_registers();
949 force_sig(SIGTRAP, current);
950 } else
951 mips_clear_watch_registers();
1da177e4
LT
952}
953
954asmlinkage void do_mcheck(struct pt_regs *regs)
955{
cac4bcbc
RB
956 const int field = 2 * sizeof(unsigned long);
957 int multi_match = regs->cp0_status & ST0_TS;
958
1da177e4 959 show_regs(regs);
cac4bcbc
RB
960
961 if (multi_match) {
962 printk("Index : %0x\n", read_c0_index());
963 printk("Pagemask: %0x\n", read_c0_pagemask());
964 printk("EntryHi : %0*lx\n", field, read_c0_entryhi());
965 printk("EntryLo0: %0*lx\n", field, read_c0_entrylo0());
966 printk("EntryLo1: %0*lx\n", field, read_c0_entrylo1());
967 printk("\n");
968 dump_tlb_all();
969 }
970
e1bb8289 971 show_code((unsigned int __user *) regs->cp0_epc);
cac4bcbc 972
1da177e4
LT
973 /*
974 * Some chips may have other causes of machine check (e.g. SB1
975 * graduation timer)
976 */
977 panic("Caught Machine Check exception - %scaused by multiple "
978 "matching entries in the TLB.",
cac4bcbc 979 (multi_match) ? "" : "not ");
1da177e4
LT
980}
981
340ee4b9
RB
982asmlinkage void do_mt(struct pt_regs *regs)
983{
41c594ab
RB
984 int subcode;
985
41c594ab
RB
986 subcode = (read_vpe_c0_vpecontrol() & VPECONTROL_EXCPT)
987 >> VPECONTROL_EXCPT_SHIFT;
988 switch (subcode) {
989 case 0:
e35a5e35 990 printk(KERN_DEBUG "Thread Underflow\n");
41c594ab
RB
991 break;
992 case 1:
e35a5e35 993 printk(KERN_DEBUG "Thread Overflow\n");
41c594ab
RB
994 break;
995 case 2:
e35a5e35 996 printk(KERN_DEBUG "Invalid YIELD Qualifier\n");
41c594ab
RB
997 break;
998 case 3:
e35a5e35 999 printk(KERN_DEBUG "Gating Storage Exception\n");
41c594ab
RB
1000 break;
1001 case 4:
e35a5e35 1002 printk(KERN_DEBUG "YIELD Scheduler Exception\n");
41c594ab
RB
1003 break;
1004 case 5:
e35a5e35 1005 printk(KERN_DEBUG "Gating Storage Schedulier Exception\n");
41c594ab
RB
1006 break;
1007 default:
e35a5e35 1008 printk(KERN_DEBUG "*** UNKNOWN THREAD EXCEPTION %d ***\n",
41c594ab
RB
1009 subcode);
1010 break;
1011 }
340ee4b9
RB
1012 die_if_kernel("MIPS MT Thread exception in kernel", regs);
1013
1014 force_sig(SIGILL, current);
1015}
1016
1017
e50c0a8f
RB
1018asmlinkage void do_dsp(struct pt_regs *regs)
1019{
1020 if (cpu_has_dsp)
1021 panic("Unexpected DSP exception\n");
1022
1023 force_sig(SIGILL, current);
1024}
1025
1da177e4
LT
1026asmlinkage void do_reserved(struct pt_regs *regs)
1027{
1028 /*
1029 * Game over - no way to handle this if it ever occurs. Most probably
1030 * caused by a new unknown cpu type or after another deadly
1031 * hard/software error.
1032 */
1033 show_regs(regs);
1034 panic("Caught reserved exception %ld - should not happen.",
1035 (regs->cp0_cause & 0x7f) >> 2);
1036}
1037
39b8d525
RB
1038static int __initdata l1parity = 1;
1039static int __init nol1parity(char *s)
1040{
1041 l1parity = 0;
1042 return 1;
1043}
1044__setup("nol1par", nol1parity);
1045static int __initdata l2parity = 1;
1046static int __init nol2parity(char *s)
1047{
1048 l2parity = 0;
1049 return 1;
1050}
1051__setup("nol2par", nol2parity);
1052
1da177e4
LT
1053/*
1054 * Some MIPS CPUs can enable/disable for cache parity detection, but do
1055 * it different ways.
1056 */
1057static inline void parity_protection_init(void)
1058{
10cc3529 1059 switch (current_cpu_type()) {
1da177e4 1060 case CPU_24K:
98a41de9 1061 case CPU_34K:
39b8d525
RB
1062 case CPU_74K:
1063 case CPU_1004K:
1064 {
1065#define ERRCTL_PE 0x80000000
1066#define ERRCTL_L2P 0x00800000
1067 unsigned long errctl;
1068 unsigned int l1parity_present, l2parity_present;
1069
1070 errctl = read_c0_ecc();
1071 errctl &= ~(ERRCTL_PE|ERRCTL_L2P);
1072
1073 /* probe L1 parity support */
1074 write_c0_ecc(errctl | ERRCTL_PE);
1075 back_to_back_c0_hazard();
1076 l1parity_present = (read_c0_ecc() & ERRCTL_PE);
1077
1078 /* probe L2 parity support */
1079 write_c0_ecc(errctl|ERRCTL_L2P);
1080 back_to_back_c0_hazard();
1081 l2parity_present = (read_c0_ecc() & ERRCTL_L2P);
1082
1083 if (l1parity_present && l2parity_present) {
1084 if (l1parity)
1085 errctl |= ERRCTL_PE;
1086 if (l1parity ^ l2parity)
1087 errctl |= ERRCTL_L2P;
1088 } else if (l1parity_present) {
1089 if (l1parity)
1090 errctl |= ERRCTL_PE;
1091 } else if (l2parity_present) {
1092 if (l2parity)
1093 errctl |= ERRCTL_L2P;
1094 } else {
1095 /* No parity available */
1096 }
1097
1098 printk(KERN_INFO "Writing ErrCtl register=%08lx\n", errctl);
1099
1100 write_c0_ecc(errctl);
1101 back_to_back_c0_hazard();
1102 errctl = read_c0_ecc();
1103 printk(KERN_INFO "Readback ErrCtl register=%08lx\n", errctl);
1104
1105 if (l1parity_present)
1106 printk(KERN_INFO "Cache parity protection %sabled\n",
1107 (errctl & ERRCTL_PE) ? "en" : "dis");
1108
1109 if (l2parity_present) {
1110 if (l1parity_present && l1parity)
1111 errctl ^= ERRCTL_L2P;
1112 printk(KERN_INFO "L2 cache parity protection %sabled\n",
1113 (errctl & ERRCTL_L2P) ? "en" : "dis");
1114 }
1115 }
1116 break;
1117
1da177e4 1118 case CPU_5KC:
14f18b7f
RB
1119 write_c0_ecc(0x80000000);
1120 back_to_back_c0_hazard();
1121 /* Set the PE bit (bit 31) in the c0_errctl register. */
1122 printk(KERN_INFO "Cache parity protection %sabled\n",
1123 (read_c0_ecc() & 0x80000000) ? "en" : "dis");
1da177e4
LT
1124 break;
1125 case CPU_20KC:
1126 case CPU_25KF:
1127 /* Clear the DE bit (bit 16) in the c0_status register. */
1128 printk(KERN_INFO "Enable cache parity protection for "
1129 "MIPS 20KC/25KF CPUs.\n");
1130 clear_c0_status(ST0_DE);
1131 break;
1132 default:
1133 break;
1134 }
1135}
1136
1137asmlinkage void cache_parity_error(void)
1138{
1139 const int field = 2 * sizeof(unsigned long);
1140 unsigned int reg_val;
1141
1142 /* For the moment, report the problem and hang. */
1143 printk("Cache error exception:\n");
1144 printk("cp0_errorepc == %0*lx\n", field, read_c0_errorepc());
1145 reg_val = read_c0_cacheerr();
1146 printk("c0_cacheerr == %08x\n", reg_val);
1147
1148 printk("Decoded c0_cacheerr: %s cache fault in %s reference.\n",
1149 reg_val & (1<<30) ? "secondary" : "primary",
1150 reg_val & (1<<31) ? "data" : "insn");
1151 printk("Error bits: %s%s%s%s%s%s%s\n",
1152 reg_val & (1<<29) ? "ED " : "",
1153 reg_val & (1<<28) ? "ET " : "",
1154 reg_val & (1<<26) ? "EE " : "",
1155 reg_val & (1<<25) ? "EB " : "",
1156 reg_val & (1<<24) ? "EI " : "",
1157 reg_val & (1<<23) ? "E1 " : "",
1158 reg_val & (1<<22) ? "E0 " : "");
1159 printk("IDX: 0x%08x\n", reg_val & ((1<<22)-1));
1160
ec917c2c 1161#if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)
1da177e4
LT
1162 if (reg_val & (1<<22))
1163 printk("DErrAddr0: 0x%0*lx\n", field, read_c0_derraddr0());
1164
1165 if (reg_val & (1<<23))
1166 printk("DErrAddr1: 0x%0*lx\n", field, read_c0_derraddr1());
1167#endif
1168
1169 panic("Can't handle the cache error!");
1170}
1171
1172/*
1173 * SDBBP EJTAG debug exception handler.
1174 * We skip the instruction and return to the next instruction.
1175 */
1176void ejtag_exception_handler(struct pt_regs *regs)
1177{
1178 const int field = 2 * sizeof(unsigned long);
1179 unsigned long depc, old_epc;
1180 unsigned int debug;
1181
70ae6126 1182 printk(KERN_DEBUG "SDBBP EJTAG debug exception - not handled yet, just ignored!\n");
1da177e4
LT
1183 depc = read_c0_depc();
1184 debug = read_c0_debug();
70ae6126 1185 printk(KERN_DEBUG "c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug);
1da177e4
LT
1186 if (debug & 0x80000000) {
1187 /*
1188 * In branch delay slot.
1189 * We cheat a little bit here and use EPC to calculate the
1190 * debug return address (DEPC). EPC is restored after the
1191 * calculation.
1192 */
1193 old_epc = regs->cp0_epc;
1194 regs->cp0_epc = depc;
1195 __compute_return_epc(regs);
1196 depc = regs->cp0_epc;
1197 regs->cp0_epc = old_epc;
1198 } else
1199 depc += 4;
1200 write_c0_depc(depc);
1201
1202#if 0
70ae6126 1203 printk(KERN_DEBUG "\n\n----- Enable EJTAG single stepping ----\n\n");
1da177e4
LT
1204 write_c0_debug(debug | 0x100);
1205#endif
1206}
1207
1208/*
1209 * NMI exception handler.
1210 */
34412c72 1211NORET_TYPE void ATTRIB_NORET nmi_exception_handler(struct pt_regs *regs)
1da177e4 1212{
41c594ab 1213 bust_spinlocks(1);
1da177e4
LT
1214 printk("NMI taken!!!!\n");
1215 die("NMI", regs);
1da177e4
LT
1216}
1217
e01402b1
RB
1218#define VECTORSPACING 0x100 /* for EI/VI mode */
1219
1220unsigned long ebase;
1da177e4 1221unsigned long exception_handlers[32];
e01402b1 1222unsigned long vi_handlers[64];
1da177e4
LT
1223
1224/*
1225 * As a side effect of the way this is implemented we're limited
1226 * to interrupt handlers in the address range from
1227 * KSEG0 <= x < KSEG0 + 256mb on the Nevada. Oh well ...
1228 */
1229void *set_except_vector(int n, void *addr)
1230{
1231 unsigned long handler = (unsigned long) addr;
1232 unsigned long old_handler = exception_handlers[n];
1233
1234 exception_handlers[n] = handler;
1235 if (n == 0 && cpu_has_divec) {
ec70f65e
RB
1236 *(u32 *)(ebase + 0x200) = 0x08000000 |
1237 (0x03ffffff & (handler >> 2));
e0cee3ee 1238 local_flush_icache_range(ebase + 0x200, ebase + 0x204);
e01402b1
RB
1239 }
1240 return (void *)old_handler;
1241}
1242
6ba07e59
AN
1243static asmlinkage void do_default_vi(void)
1244{
1245 show_regs(get_irq_regs());
1246 panic("Caught unexpected vectored interrupt.");
1247}
1248
ef300e42 1249static void *set_vi_srs_handler(int n, vi_handler_t addr, int srs)
e01402b1
RB
1250{
1251 unsigned long handler;
1252 unsigned long old_handler = vi_handlers[n];
f6771dbb 1253 int srssets = current_cpu_data.srsets;
e01402b1
RB
1254 u32 *w;
1255 unsigned char *b;
1256
1257 if (!cpu_has_veic && !cpu_has_vint)
1258 BUG();
1259
1260 if (addr == NULL) {
1261 handler = (unsigned long) do_default_vi;
1262 srs = 0;
41c594ab 1263 } else
e01402b1
RB
1264 handler = (unsigned long) addr;
1265 vi_handlers[n] = (unsigned long) addr;
1266
1267 b = (unsigned char *)(ebase + 0x200 + n*VECTORSPACING);
1268
f6771dbb 1269 if (srs >= srssets)
e01402b1
RB
1270 panic("Shadow register set %d not supported", srs);
1271
1272 if (cpu_has_veic) {
1273 if (board_bind_eic_interrupt)
49a89efb 1274 board_bind_eic_interrupt(n, srs);
41c594ab 1275 } else if (cpu_has_vint) {
e01402b1 1276 /* SRSMap is only defined if shadow sets are implemented */
f6771dbb 1277 if (srssets > 1)
49a89efb 1278 change_c0_srsmap(0xf << n*4, srs << n*4);
e01402b1
RB
1279 }
1280
1281 if (srs == 0) {
1282 /*
1283 * If no shadow set is selected then use the default handler
1284 * that does normal register saving and a standard interrupt exit
1285 */
1286
1287 extern char except_vec_vi, except_vec_vi_lui;
1288 extern char except_vec_vi_ori, except_vec_vi_end;
c65a5480
AN
1289 extern char rollback_except_vec_vi;
1290 char *vec_start = (cpu_wait == r4k_wait) ?
1291 &rollback_except_vec_vi : &except_vec_vi;
41c594ab
RB
1292#ifdef CONFIG_MIPS_MT_SMTC
1293 /*
1294 * We need to provide the SMTC vectored interrupt handler
1295 * not only with the address of the handler, but with the
1296 * Status.IM bit to be masked before going there.
1297 */
1298 extern char except_vec_vi_mori;
c65a5480 1299 const int mori_offset = &except_vec_vi_mori - vec_start;
41c594ab 1300#endif /* CONFIG_MIPS_MT_SMTC */
c65a5480
AN
1301 const int handler_len = &except_vec_vi_end - vec_start;
1302 const int lui_offset = &except_vec_vi_lui - vec_start;
1303 const int ori_offset = &except_vec_vi_ori - vec_start;
e01402b1
RB
1304
1305 if (handler_len > VECTORSPACING) {
1306 /*
1307 * Sigh... panicing won't help as the console
1308 * is probably not configured :(
1309 */
49a89efb 1310 panic("VECTORSPACING too small");
e01402b1
RB
1311 }
1312
c65a5480 1313 memcpy(b, vec_start, handler_len);
41c594ab 1314#ifdef CONFIG_MIPS_MT_SMTC
8e8a52ed
RB
1315 BUG_ON(n > 7); /* Vector index %d exceeds SMTC maximum. */
1316
41c594ab
RB
1317 w = (u32 *)(b + mori_offset);
1318 *w = (*w & 0xffff0000) | (0x100 << n);
1319#endif /* CONFIG_MIPS_MT_SMTC */
e01402b1
RB
1320 w = (u32 *)(b + lui_offset);
1321 *w = (*w & 0xffff0000) | (((u32)handler >> 16) & 0xffff);
1322 w = (u32 *)(b + ori_offset);
1323 *w = (*w & 0xffff0000) | ((u32)handler & 0xffff);
e0cee3ee
TB
1324 local_flush_icache_range((unsigned long)b,
1325 (unsigned long)(b+handler_len));
e01402b1
RB
1326 }
1327 else {
1328 /*
1329 * In other cases jump directly to the interrupt handler
1330 *
1331 * It is the handlers responsibility to save registers if required
1332 * (eg hi/lo) and return from the exception using "eret"
1333 */
1334 w = (u32 *)b;
1335 *w++ = 0x08000000 | (((u32)handler >> 2) & 0x03fffff); /* j handler */
1336 *w = 0;
e0cee3ee
TB
1337 local_flush_icache_range((unsigned long)b,
1338 (unsigned long)(b+8));
1da177e4 1339 }
e01402b1 1340
1da177e4
LT
1341 return (void *)old_handler;
1342}
1343
ef300e42 1344void *set_vi_handler(int n, vi_handler_t addr)
e01402b1 1345{
ff3eab2a 1346 return set_vi_srs_handler(n, addr, 0);
e01402b1 1347}
f41ae0b2 1348
1da177e4
LT
1349/*
1350 * This is used by native signal handling
1351 */
53dc8028
AN
1352asmlinkage int (*save_fp_context)(struct sigcontext __user *sc);
1353asmlinkage int (*restore_fp_context)(struct sigcontext __user *sc);
1da177e4 1354
53dc8028
AN
1355extern asmlinkage int _save_fp_context(struct sigcontext __user *sc);
1356extern asmlinkage int _restore_fp_context(struct sigcontext __user *sc);
1da177e4 1357
53dc8028
AN
1358extern asmlinkage int fpu_emulator_save_context(struct sigcontext __user *sc);
1359extern asmlinkage int fpu_emulator_restore_context(struct sigcontext __user *sc);
1da177e4 1360
41c594ab 1361#ifdef CONFIG_SMP
53dc8028 1362static int smp_save_fp_context(struct sigcontext __user *sc)
41c594ab 1363{
53dc8028 1364 return raw_cpu_has_fpu
41c594ab
RB
1365 ? _save_fp_context(sc)
1366 : fpu_emulator_save_context(sc);
1367}
1368
53dc8028 1369static int smp_restore_fp_context(struct sigcontext __user *sc)
41c594ab 1370{
53dc8028 1371 return raw_cpu_has_fpu
41c594ab
RB
1372 ? _restore_fp_context(sc)
1373 : fpu_emulator_restore_context(sc);
1374}
1375#endif
1376
1da177e4
LT
1377static inline void signal_init(void)
1378{
41c594ab
RB
1379#ifdef CONFIG_SMP
1380 /* For now just do the cpu_has_fpu check when the functions are invoked */
1381 save_fp_context = smp_save_fp_context;
1382 restore_fp_context = smp_restore_fp_context;
1383#else
1da177e4
LT
1384 if (cpu_has_fpu) {
1385 save_fp_context = _save_fp_context;
1386 restore_fp_context = _restore_fp_context;
1387 } else {
1388 save_fp_context = fpu_emulator_save_context;
1389 restore_fp_context = fpu_emulator_restore_context;
1390 }
41c594ab 1391#endif
1da177e4
LT
1392}
1393
1394#ifdef CONFIG_MIPS32_COMPAT
1395
1396/*
1397 * This is used by 32-bit signal stuff on the 64-bit kernel
1398 */
53dc8028
AN
1399asmlinkage int (*save_fp_context32)(struct sigcontext32 __user *sc);
1400asmlinkage int (*restore_fp_context32)(struct sigcontext32 __user *sc);
1da177e4 1401
53dc8028
AN
1402extern asmlinkage int _save_fp_context32(struct sigcontext32 __user *sc);
1403extern asmlinkage int _restore_fp_context32(struct sigcontext32 __user *sc);
1da177e4 1404
53dc8028
AN
1405extern asmlinkage int fpu_emulator_save_context32(struct sigcontext32 __user *sc);
1406extern asmlinkage int fpu_emulator_restore_context32(struct sigcontext32 __user *sc);
1da177e4
LT
1407
1408static inline void signal32_init(void)
1409{
1410 if (cpu_has_fpu) {
1411 save_fp_context32 = _save_fp_context32;
1412 restore_fp_context32 = _restore_fp_context32;
1413 } else {
1414 save_fp_context32 = fpu_emulator_save_context32;
1415 restore_fp_context32 = fpu_emulator_restore_context32;
1416 }
1417}
1418#endif
1419
1420extern void cpu_cache_init(void);
1421extern void tlb_init(void);
1d40cfcd 1422extern void flush_tlb_handlers(void);
1da177e4 1423
42f77542
RB
1424/*
1425 * Timer interrupt
1426 */
1427int cp0_compare_irq;
1428
1429/*
1430 * Performance counter IRQ or -1 if shared with timer
1431 */
1432int cp0_perfcount_irq;
1433EXPORT_SYMBOL_GPL(cp0_perfcount_irq);
1434
bdc94eb4
CD
1435static int __cpuinitdata noulri;
1436
1437static int __init ulri_disable(char *s)
1438{
1439 pr_info("Disabling ulri\n");
1440 noulri = 1;
1441
1442 return 1;
1443}
1444__setup("noulri", ulri_disable);
1445
234fcd14 1446void __cpuinit per_cpu_trap_init(void)
1da177e4
LT
1447{
1448 unsigned int cpu = smp_processor_id();
1449 unsigned int status_set = ST0_CU0;
41c594ab
RB
1450#ifdef CONFIG_MIPS_MT_SMTC
1451 int secondaryTC = 0;
1452 int bootTC = (cpu == 0);
1453
1454 /*
1455 * Only do per_cpu_trap_init() for first TC of Each VPE.
1456 * Note that this hack assumes that the SMTC init code
1457 * assigns TCs consecutively and in ascending order.
1458 */
1459
1460 if (((read_c0_tcbind() & TCBIND_CURTC) != 0) &&
1461 ((read_c0_tcbind() & TCBIND_CURVPE) == cpu_data[cpu - 1].vpe_id))
1462 secondaryTC = 1;
1463#endif /* CONFIG_MIPS_MT_SMTC */
1da177e4
LT
1464
1465 /*
1466 * Disable coprocessors and select 32-bit or 64-bit addressing
1467 * and the 16/32 or 32/32 FPR register model. Reset the BEV
1468 * flag that some firmware may have left set and the TS bit (for
1469 * IP27). Set XX for ISA IV code to work.
1470 */
875d43e7 1471#ifdef CONFIG_64BIT
1da177e4
LT
1472 status_set |= ST0_FR|ST0_KX|ST0_SX|ST0_UX;
1473#endif
1474 if (current_cpu_data.isa_level == MIPS_CPU_ISA_IV)
1475 status_set |= ST0_XX;
bbaf238b
CD
1476 if (cpu_has_dsp)
1477 status_set |= ST0_MX;
1478
b38c7399 1479 change_c0_status(ST0_CU|ST0_MX|ST0_RE|ST0_FR|ST0_BEV|ST0_TS|ST0_KX|ST0_SX|ST0_UX,
1da177e4
LT
1480 status_set);
1481
a3692020
RB
1482 if (cpu_has_mips_r2) {
1483 unsigned int enable = 0x0000000f;
1484
bdc94eb4 1485 if (!noulri && cpu_has_userlocal)
a3692020
RB
1486 enable |= (1 << 29);
1487
1488 write_c0_hwrena(enable);
1489 }
e01402b1 1490
41c594ab
RB
1491#ifdef CONFIG_MIPS_MT_SMTC
1492 if (!secondaryTC) {
1493#endif /* CONFIG_MIPS_MT_SMTC */
1494
e01402b1 1495 if (cpu_has_veic || cpu_has_vint) {
49a89efb 1496 write_c0_ebase(ebase);
e01402b1 1497 /* Setting vector spacing enables EI/VI mode */
49a89efb 1498 change_c0_intctl(0x3e0, VECTORSPACING);
e01402b1 1499 }
d03d0a57
RB
1500 if (cpu_has_divec) {
1501 if (cpu_has_mipsmt) {
1502 unsigned int vpflags = dvpe();
1503 set_c0_cause(CAUSEF_IV);
1504 evpe(vpflags);
1505 } else
1506 set_c0_cause(CAUSEF_IV);
1507 }
3b1d4ed5
RB
1508
1509 /*
1510 * Before R2 both interrupt numbers were fixed to 7, so on R2 only:
1511 *
1512 * o read IntCtl.IPTI to determine the timer interrupt
1513 * o read IntCtl.IPPCI to determine the performance counter interrupt
1514 */
1515 if (cpu_has_mips_r2) {
49a89efb
RB
1516 cp0_compare_irq = (read_c0_intctl() >> 29) & 7;
1517 cp0_perfcount_irq = (read_c0_intctl() >> 26) & 7;
c3e838a2 1518 if (cp0_perfcount_irq == cp0_compare_irq)
3b1d4ed5 1519 cp0_perfcount_irq = -1;
c3e838a2
CD
1520 } else {
1521 cp0_compare_irq = CP0_LEGACY_COMPARE_IRQ;
1522 cp0_perfcount_irq = -1;
3b1d4ed5
RB
1523 }
1524
41c594ab
RB
1525#ifdef CONFIG_MIPS_MT_SMTC
1526 }
1527#endif /* CONFIG_MIPS_MT_SMTC */
1da177e4
LT
1528
1529 cpu_data[cpu].asid_cache = ASID_FIRST_VERSION;
1530 TLBMISS_HANDLER_SETUP();
1531
1532 atomic_inc(&init_mm.mm_count);
1533 current->active_mm = &init_mm;
1534 BUG_ON(current->mm);
1535 enter_lazy_tlb(&init_mm, current);
1536
41c594ab
RB
1537#ifdef CONFIG_MIPS_MT_SMTC
1538 if (bootTC) {
1539#endif /* CONFIG_MIPS_MT_SMTC */
1540 cpu_cache_init();
1541 tlb_init();
1542#ifdef CONFIG_MIPS_MT_SMTC
6a05888d
RB
1543 } else if (!secondaryTC) {
1544 /*
1545 * First TC in non-boot VPE must do subset of tlb_init()
1546 * for MMU countrol registers.
1547 */
1548 write_c0_pagemask(PM_DEFAULT_MASK);
1549 write_c0_wired(0);
41c594ab
RB
1550 }
1551#endif /* CONFIG_MIPS_MT_SMTC */
1da177e4
LT
1552}
1553
e01402b1 1554/* Install CPU exception handler */
49a89efb 1555void __init set_handler(unsigned long offset, void *addr, unsigned long size)
e01402b1
RB
1556{
1557 memcpy((void *)(ebase + offset), addr, size);
e0cee3ee 1558 local_flush_icache_range(ebase + offset, ebase + offset + size);
e01402b1
RB
1559}
1560
234fcd14 1561static char panic_null_cerr[] __cpuinitdata =
641e97f3
RB
1562 "Trying to set NULL cache error exception handler";
1563
e01402b1 1564/* Install uncached CPU exception handler */
234fcd14
RB
1565void __cpuinit set_uncached_handler(unsigned long offset, void *addr,
1566 unsigned long size)
e01402b1
RB
1567{
1568#ifdef CONFIG_32BIT
1569 unsigned long uncached_ebase = KSEG1ADDR(ebase);
1570#endif
1571#ifdef CONFIG_64BIT
1572 unsigned long uncached_ebase = TO_UNCAC(ebase);
1573#endif
566f74f6
DD
1574 if (cpu_has_mips_r2)
1575 ebase += (read_c0_ebase() & 0x3ffff000);
e01402b1 1576
641e97f3
RB
1577 if (!addr)
1578 panic(panic_null_cerr);
1579
e01402b1
RB
1580 memcpy((void *)(uncached_ebase + offset), addr, size);
1581}
1582
5b10496b
AN
1583static int __initdata rdhwr_noopt;
1584static int __init set_rdhwr_noopt(char *str)
1585{
1586 rdhwr_noopt = 1;
1587 return 1;
1588}
1589
1590__setup("rdhwr_noopt", set_rdhwr_noopt);
1591
1da177e4
LT
1592void __init trap_init(void)
1593{
1594 extern char except_vec3_generic, except_vec3_r4000;
1da177e4
LT
1595 extern char except_vec4;
1596 unsigned long i;
c65a5480
AN
1597 int rollback;
1598
1599 check_wait();
1600 rollback = (cpu_wait == r4k_wait);
1da177e4 1601
88547001
JW
1602#if defined(CONFIG_KGDB)
1603 if (kgdb_early_setup)
1604 return; /* Already done */
1605#endif
1606
e01402b1 1607 if (cpu_has_veic || cpu_has_vint)
49a89efb 1608 ebase = (unsigned long) alloc_bootmem_low_pages(0x200 + VECTORSPACING*64);
566f74f6 1609 else {
e01402b1 1610 ebase = CAC_BASE;
566f74f6
DD
1611 if (cpu_has_mips_r2)
1612 ebase += (read_c0_ebase() & 0x3ffff000);
1613 }
e01402b1 1614
1da177e4
LT
1615 per_cpu_trap_init();
1616
1617 /*
1618 * Copy the generic exception handlers to their final destination.
1619 * This will be overriden later as suitable for a particular
1620 * configuration.
1621 */
e01402b1 1622 set_handler(0x180, &except_vec3_generic, 0x80);
1da177e4
LT
1623
1624 /*
1625 * Setup default vectors
1626 */
1627 for (i = 0; i <= 31; i++)
1628 set_except_vector(i, handle_reserved);
1629
1630 /*
1631 * Copy the EJTAG debug exception vector handler code to it's final
1632 * destination.
1633 */
e01402b1 1634 if (cpu_has_ejtag && board_ejtag_handler_setup)
49a89efb 1635 board_ejtag_handler_setup();
1da177e4
LT
1636
1637 /*
1638 * Only some CPUs have the watch exceptions.
1639 */
1640 if (cpu_has_watch)
1641 set_except_vector(23, handle_watch);
1642
1643 /*
e01402b1 1644 * Initialise interrupt handlers
1da177e4 1645 */
e01402b1
RB
1646 if (cpu_has_veic || cpu_has_vint) {
1647 int nvec = cpu_has_veic ? 64 : 8;
1648 for (i = 0; i < nvec; i++)
ff3eab2a 1649 set_vi_handler(i, NULL);
e01402b1
RB
1650 }
1651 else if (cpu_has_divec)
1652 set_handler(0x200, &except_vec4, 0x8);
1da177e4
LT
1653
1654 /*
1655 * Some CPUs can enable/disable for cache parity detection, but does
1656 * it different ways.
1657 */
1658 parity_protection_init();
1659
1660 /*
1661 * The Data Bus Errors / Instruction Bus Errors are signaled
1662 * by external hardware. Therefore these two exceptions
1663 * may have board specific handlers.
1664 */
1665 if (board_be_init)
1666 board_be_init();
1667
c65a5480 1668 set_except_vector(0, rollback ? rollback_handle_int : handle_int);
1da177e4
LT
1669 set_except_vector(1, handle_tlbm);
1670 set_except_vector(2, handle_tlbl);
1671 set_except_vector(3, handle_tlbs);
1672
1673 set_except_vector(4, handle_adel);
1674 set_except_vector(5, handle_ades);
1675
1676 set_except_vector(6, handle_ibe);
1677 set_except_vector(7, handle_dbe);
1678
1679 set_except_vector(8, handle_sys);
1680 set_except_vector(9, handle_bp);
5b10496b
AN
1681 set_except_vector(10, rdhwr_noopt ? handle_ri :
1682 (cpu_has_vtag_icache ?
1683 handle_ri_rdhwr_vivt : handle_ri_rdhwr));
1da177e4
LT
1684 set_except_vector(11, handle_cpu);
1685 set_except_vector(12, handle_ov);
1686 set_except_vector(13, handle_tr);
1da177e4 1687
10cc3529
RB
1688 if (current_cpu_type() == CPU_R6000 ||
1689 current_cpu_type() == CPU_R6000A) {
1da177e4
LT
1690 /*
1691 * The R6000 is the only R-series CPU that features a machine
1692 * check exception (similar to the R4000 cache error) and
1693 * unaligned ldc1/sdc1 exception. The handlers have not been
1694 * written yet. Well, anyway there is no R6000 machine on the
1695 * current list of targets for Linux/MIPS.
1696 * (Duh, crap, there is someone with a triple R6k machine)
1697 */
1698 //set_except_vector(14, handle_mc);
1699 //set_except_vector(15, handle_ndc);
1700 }
1701
e01402b1
RB
1702
1703 if (board_nmi_handler_setup)
1704 board_nmi_handler_setup();
1705
e50c0a8f
RB
1706 if (cpu_has_fpu && !cpu_has_nofpuex)
1707 set_except_vector(15, handle_fpe);
1708
1709 set_except_vector(22, handle_mdmx);
1710
1711 if (cpu_has_mcheck)
1712 set_except_vector(24, handle_mcheck);
1713
340ee4b9
RB
1714 if (cpu_has_mipsmt)
1715 set_except_vector(25, handle_mt);
1716
acaec427 1717 set_except_vector(26, handle_dsp);
e50c0a8f
RB
1718
1719 if (cpu_has_vce)
1720 /* Special exception: R4[04]00 uses also the divec space. */
566f74f6 1721 memcpy((void *)(ebase + 0x180), &except_vec3_r4000, 0x100);
e50c0a8f 1722 else if (cpu_has_4kex)
566f74f6 1723 memcpy((void *)(ebase + 0x180), &except_vec3_generic, 0x80);
e50c0a8f 1724 else
566f74f6 1725 memcpy((void *)(ebase + 0x080), &except_vec3_generic, 0x80);
e50c0a8f 1726
1da177e4
LT
1727 signal_init();
1728#ifdef CONFIG_MIPS32_COMPAT
1729 signal32_init();
1730#endif
1731
e0cee3ee 1732 local_flush_icache_range(ebase, ebase + 0x400);
1d40cfcd 1733 flush_tlb_handlers();
0510617b
TB
1734
1735 sort_extable(__start___dbe_table, __stop___dbe_table);
1da177e4 1736}