blob: 6bee29097a565e71459f80ee75c3affd3d0ed25b [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. Rozycki60b0d652007-10-16 18:43:26 +010012 * Copyright (C) 2002, 2003, 2004, 2005, 2007 Maciej W. Rozycki
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
Ralf Baechle8e8a52e2007-05-31 14:00:19 +010014#include <linux/bug.h>
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +010015#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/init.h>
17#include <linux/mm.h>
18#include <linux/module.h>
19#include <linux/sched.h>
20#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/spinlock.h>
22#include <linux/kallsyms.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000023#include <linux/bootmem.h>
Maxime Bizond4fd1982006-07-20 18:52:02 +020024#include <linux/interrupt.h>
Ralf Baechle39b8d522008-04-28 17:14:26 +010025#include <linux/ptrace.h>
Jason Wessel88547002008-07-29 15:58:53 -050026#include <linux/kgdb.h>
27#include <linux/kdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29#include <asm/bootinfo.h>
30#include <asm/branch.h>
31#include <asm/break.h>
32#include <asm/cpu.h>
Ralf Baechlee50c0a82005-05-31 11:49:19 +000033#include <asm/dsp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/fpu.h>
Ralf Baechle340ee4b2005-08-17 17:44:08 +000035#include <asm/mipsregs.h>
36#include <asm/mipsmtregs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/module.h>
38#include <asm/pgtable.h>
39#include <asm/ptrace.h>
40#include <asm/sections.h>
41#include <asm/system.h>
42#include <asm/tlbdebug.h>
43#include <asm/traps.h>
44#include <asm/uaccess.h>
45#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/types.h>
Atsushi Nemoto1df0f0f2006-09-26 23:44:01 +090047#include <asm/stacktrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Ralf Baechlee4ac58a2006-04-03 17:56:36 +010049extern asmlinkage void handle_int(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050extern asmlinkage void handle_tlbm(void);
51extern asmlinkage void handle_tlbl(void);
52extern asmlinkage void handle_tlbs(void);
53extern asmlinkage void handle_adel(void);
54extern asmlinkage void handle_ades(void);
55extern asmlinkage void handle_ibe(void);
56extern asmlinkage void handle_dbe(void);
57extern asmlinkage void handle_sys(void);
58extern asmlinkage void handle_bp(void);
59extern asmlinkage void handle_ri(void);
Atsushi Nemoto5b104962006-09-11 17:50:29 +090060extern asmlinkage void handle_ri_rdhwr_vivt(void);
61extern asmlinkage void handle_ri_rdhwr(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062extern asmlinkage void handle_cpu(void);
63extern asmlinkage void handle_ov(void);
64extern asmlinkage void handle_tr(void);
65extern asmlinkage void handle_fpe(void);
66extern asmlinkage void handle_mdmx(void);
67extern asmlinkage void handle_watch(void);
Ralf Baechle340ee4b2005-08-17 17:44:08 +000068extern asmlinkage void handle_mt(void);
Ralf Baechlee50c0a82005-05-31 11:49:19 +000069extern asmlinkage void handle_dsp(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070extern asmlinkage void handle_mcheck(void);
71extern asmlinkage void handle_reserved(void);
72
Ralf Baechle12616ed2005-10-18 10:26:46 +010073extern int fpu_emulator_cop1Handler(struct pt_regs *xcp,
Atsushi Nemotoe04582b2006-10-09 00:10:01 +090074 struct mips_fpu_struct *ctx, int has_fpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76void (*board_be_init)(void);
77int (*board_be_handler)(struct pt_regs *regs, int is_fixup);
Ralf Baechlee01402b2005-07-14 15:57:16 +000078void (*board_nmi_handler_setup)(void);
79void (*board_ejtag_handler_setup)(void);
80void (*board_bind_eic_interrupt)(int irq, int regset);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Franck Bui-Huu4d157d52006-08-03 09:29:21 +020083static void show_raw_backtrace(unsigned long reg29)
Atsushi Nemotoe889d782006-07-25 23:51:36 +090084{
Ralf Baechle39b8d522008-04-28 17:14:26 +010085 unsigned long *sp = (unsigned long *)(reg29 & ~3);
Atsushi Nemotoe889d782006-07-25 23:51:36 +090086 unsigned long addr;
87
88 printk("Call Trace:");
89#ifdef CONFIG_KALLSYMS
90 printk("\n");
91#endif
Thomas Bogendoerfer10220c82008-05-12 17:58:48 +020092 while (!kstack_end(sp)) {
93 unsigned long __user *p =
94 (unsigned long __user *)(unsigned long)sp++;
95 if (__get_user(addr, p)) {
96 printk(" (Bad stack address)");
97 break;
Ralf Baechle39b8d522008-04-28 17:14:26 +010098 }
Thomas Bogendoerfer10220c82008-05-12 17:58:48 +020099 if (__kernel_text_address(addr))
100 print_ip_sym(addr);
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900101 }
Thomas Bogendoerfer10220c82008-05-12 17:58:48 +0200102 printk("\n");
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900103}
104
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900105#ifdef CONFIG_KALLSYMS
Atsushi Nemoto1df0f0f2006-09-26 23:44:01 +0900106int raw_show_trace;
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900107static int __init set_raw_show_trace(char *str)
108{
109 raw_show_trace = 1;
110 return 1;
111}
112__setup("raw_show_trace", set_raw_show_trace);
Atsushi Nemoto1df0f0f2006-09-26 23:44:01 +0900113#endif
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200114
Ralf Baechleeae23f22007-10-14 23:27:21 +0100115static void show_backtrace(struct task_struct *task, const struct pt_regs *regs)
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900116{
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200117 unsigned long sp = regs->regs[29];
118 unsigned long ra = regs->regs[31];
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900119 unsigned long pc = regs->cp0_epc;
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900120
121 if (raw_show_trace || !__kernel_text_address(pc)) {
Franck Bui-Huu87151ae2006-08-03 09:29:17 +0200122 show_raw_backtrace(sp);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900123 return;
124 }
125 printk("Call Trace:\n");
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200126 do {
Franck Bui-Huu87151ae2006-08-03 09:29:17 +0200127 print_ip_sym(pc);
Atsushi Nemoto19246002006-09-29 18:02:51 +0900128 pc = unwind_stack(task, &sp, pc, &ra);
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200129 } while (pc);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900130 printk("\n");
131}
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133/*
134 * This routine abuses get_user()/put_user() to reference pointers
135 * with at least a bit of error checking ...
136 */
Ralf Baechleeae23f22007-10-14 23:27:21 +0100137static void show_stacktrace(struct task_struct *task,
138 const struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139{
140 const int field = 2 * sizeof(unsigned long);
141 long stackdata;
142 int i;
Atsushi Nemoto5e0373b2007-07-13 23:02:42 +0900143 unsigned long __user *sp = (unsigned long __user *)regs->regs[29];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 printk("Stack :");
146 i = 0;
147 while ((unsigned long) sp & (PAGE_SIZE - 1)) {
148 if (i && ((i % (64 / field)) == 0))
149 printk("\n ");
150 if (i > 39) {
151 printk(" ...");
152 break;
153 }
154
155 if (__get_user(stackdata, sp++)) {
156 printk(" (Bad stack address)");
157 break;
158 }
159
160 printk(" %0*lx", field, stackdata);
161 i++;
162 }
163 printk("\n");
Franck Bui-Huu87151ae2006-08-03 09:29:17 +0200164 show_backtrace(task, regs);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900165}
166
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900167void show_stack(struct task_struct *task, unsigned long *sp)
168{
169 struct pt_regs regs;
170 if (sp) {
171 regs.regs[29] = (unsigned long)sp;
172 regs.regs[31] = 0;
173 regs.cp0_epc = 0;
174 } else {
175 if (task && task != current) {
176 regs.regs[29] = task->thread.reg29;
177 regs.regs[31] = 0;
178 regs.cp0_epc = task->thread.reg31;
179 } else {
180 prepare_frametrace(&regs);
181 }
182 }
183 show_stacktrace(task, &regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186/*
187 * The architecture-independent dump_stack generator
188 */
189void dump_stack(void)
190{
Franck Bui-Huu1666a6f2006-08-03 09:29:19 +0200191 struct pt_regs regs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Franck Bui-Huu1666a6f2006-08-03 09:29:19 +0200193 prepare_frametrace(&regs);
194 show_backtrace(current, &regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197EXPORT_SYMBOL(dump_stack);
198
Atsushi Nemotoe1bb82892007-07-13 23:51:46 +0900199static void show_code(unsigned int __user *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{
201 long i;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100202 unsigned short __user *pc16 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 printk("\nCode:");
205
Ralf Baechle39b8d522008-04-28 17:14:26 +0100206 if ((unsigned long)pc & 1)
207 pc16 = (unsigned short __user *)((unsigned long)pc & ~1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 for(i = -3 ; i < 6 ; i++) {
209 unsigned int insn;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100210 if (pc16 ? __get_user(insn, pc16 + i) : __get_user(insn, pc + i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 printk(" (Bad address in epc)\n");
212 break;
213 }
Ralf Baechle39b8d522008-04-28 17:14:26 +0100214 printk("%c%0*x%c", (i?' ':'<'), pc16 ? 4 : 8, insn, (i?' ':'>'));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216}
217
Ralf Baechleeae23f22007-10-14 23:27:21 +0100218static void __show_regs(const struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219{
220 const int field = 2 * sizeof(unsigned long);
221 unsigned int cause = regs->cp0_cause;
222 int i;
223
224 printk("Cpu %d\n", smp_processor_id());
225
226 /*
227 * Saved main processor registers
228 */
229 for (i = 0; i < 32; ) {
230 if ((i % 4) == 0)
231 printk("$%2d :", i);
232 if (i == 0)
233 printk(" %0*lx", field, 0UL);
234 else if (i == 26 || i == 27)
235 printk(" %*s", field, "");
236 else
237 printk(" %0*lx", field, regs->regs[i]);
238
239 i++;
240 if ((i % 4) == 0)
241 printk("\n");
242 }
243
Franck Bui-Huu9693a852007-02-02 17:41:47 +0100244#ifdef CONFIG_CPU_HAS_SMARTMIPS
245 printk("Acx : %0*lx\n", field, regs->acx);
246#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 printk("Hi : %0*lx\n", field, regs->hi);
248 printk("Lo : %0*lx\n", field, regs->lo);
249
250 /*
251 * Saved cp0 registers
252 */
Ralf Baechleb012cff2008-07-15 18:44:33 +0100253 printk("epc : %0*lx %pS\n", field, regs->cp0_epc,
254 (void *) regs->cp0_epc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 printk(" %s\n", print_tainted());
Ralf Baechleb012cff2008-07-15 18:44:33 +0100256 printk("ra : %0*lx %pS\n", field, regs->regs[31],
257 (void *) regs->regs[31]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 printk("Status: %08x ", (uint32_t) regs->cp0_status);
260
Maciej W. Rozycki3b2396d2005-06-22 20:43:29 +0000261 if (current_cpu_data.isa_level == MIPS_CPU_ISA_I) {
262 if (regs->cp0_status & ST0_KUO)
263 printk("KUo ");
264 if (regs->cp0_status & ST0_IEO)
265 printk("IEo ");
266 if (regs->cp0_status & ST0_KUP)
267 printk("KUp ");
268 if (regs->cp0_status & ST0_IEP)
269 printk("IEp ");
270 if (regs->cp0_status & ST0_KUC)
271 printk("KUc ");
272 if (regs->cp0_status & ST0_IEC)
273 printk("IEc ");
274 } else {
275 if (regs->cp0_status & ST0_KX)
276 printk("KX ");
277 if (regs->cp0_status & ST0_SX)
278 printk("SX ");
279 if (regs->cp0_status & ST0_UX)
280 printk("UX ");
281 switch (regs->cp0_status & ST0_KSU) {
282 case KSU_USER:
283 printk("USER ");
284 break;
285 case KSU_SUPERVISOR:
286 printk("SUPERVISOR ");
287 break;
288 case KSU_KERNEL:
289 printk("KERNEL ");
290 break;
291 default:
292 printk("BAD_MODE ");
293 break;
294 }
295 if (regs->cp0_status & ST0_ERL)
296 printk("ERL ");
297 if (regs->cp0_status & ST0_EXL)
298 printk("EXL ");
299 if (regs->cp0_status & ST0_IE)
300 printk("IE ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 printk("\n");
303
304 printk("Cause : %08x\n", cause);
305
306 cause = (cause & CAUSEF_EXCCODE) >> CAUSEB_EXCCODE;
307 if (1 <= cause && cause <= 5)
308 printk("BadVA : %0*lx\n", field, regs->cp0_badvaddr);
309
Ralf Baechle9966db252007-10-11 23:46:17 +0100310 printk("PrId : %08x (%s)\n", read_c0_prid(),
311 cpu_name_string());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
Ralf Baechleeae23f22007-10-14 23:27:21 +0100314/*
315 * FIXME: really the generic show_regs should take a const pointer argument.
316 */
317void show_regs(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318{
Ralf Baechleeae23f22007-10-14 23:27:21 +0100319 __show_regs((struct pt_regs *)regs);
320}
321
322void show_registers(const struct pt_regs *regs)
323{
Ralf Baechle39b8d522008-04-28 17:14:26 +0100324 const int field = 2 * sizeof(unsigned long);
325
Ralf Baechleeae23f22007-10-14 23:27:21 +0100326 __show_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 print_modules();
Ralf Baechle39b8d522008-04-28 17:14:26 +0100328 printk("Process %s (pid: %d, threadinfo=%p, task=%p, tls=%0*lx)\n",
329 current->comm, current->pid, current_thread_info(), current,
330 field, current_thread_info()->tp_value);
331 if (cpu_has_userlocal) {
332 unsigned long tls;
333
334 tls = read_c0_userlocal();
335 if (tls != current_thread_info()->tp_value)
336 printk("*HwTLS: %0*lx\n", field, tls);
337 }
338
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900339 show_stacktrace(current, regs);
Atsushi Nemotoe1bb82892007-07-13 23:51:46 +0900340 show_code((unsigned int __user *) regs->cp0_epc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 printk("\n");
342}
343
344static DEFINE_SPINLOCK(die_lock);
345
Ralf Baechleeae23f22007-10-14 23:27:21 +0100346void __noreturn die(const char * str, const struct pt_regs * regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
348 static int die_counter;
Ralf Baechle41c594a2006-04-05 09:45:45 +0100349#ifdef CONFIG_MIPS_MT_SMTC
350 unsigned long dvpret = dvpe();
351#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 console_verbose();
354 spin_lock_irq(&die_lock);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100355 bust_spinlocks(1);
356#ifdef CONFIG_MIPS_MT_SMTC
357 mips_mt_regdump(dvpret);
358#endif /* CONFIG_MIPS_MT_SMTC */
Ralf Baechle178086c2005-10-13 17:07:54 +0100359 printk("%s[#%d]:\n", str, ++die_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 show_registers(regs);
Pavel Emelianovbcdcd8e2007-07-17 04:03:42 -0700361 add_taint(TAINT_DIE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 spin_unlock_irq(&die_lock);
Maxime Bizond4fd1982006-07-20 18:52:02 +0200363
364 if (in_interrupt())
365 panic("Fatal exception in interrupt");
366
367 if (panic_on_oops) {
368 printk(KERN_EMERG "Fatal exception: panic in 5 seconds\n");
369 ssleep(5);
370 panic("Fatal exception");
371 }
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 do_exit(SIGSEGV);
374}
375
Thomas Bogendoerfer05106172008-08-04 19:44:34 +0200376extern struct exception_table_entry __start___dbe_table[];
377extern struct exception_table_entry __stop___dbe_table[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Ralf Baechleb6dcec92007-02-18 15:57:09 +0000379__asm__(
380" .section __dbe_table, \"a\"\n"
381" .previous \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383/* Given an address, look for it in the exception tables. */
384static const struct exception_table_entry *search_dbe_tables(unsigned long addr)
385{
386 const struct exception_table_entry *e;
387
388 e = search_extable(__start___dbe_table, __stop___dbe_table - 1, addr);
389 if (!e)
390 e = search_module_dbetables(addr);
391 return e;
392}
393
394asmlinkage void do_be(struct pt_regs *regs)
395{
396 const int field = 2 * sizeof(unsigned long);
397 const struct exception_table_entry *fixup = NULL;
398 int data = regs->cp0_cause & 4;
399 int action = MIPS_BE_FATAL;
400
401 /* XXX For now. Fixme, this searches the wrong table ... */
402 if (data && !user_mode(regs))
403 fixup = search_dbe_tables(exception_epc(regs));
404
405 if (fixup)
406 action = MIPS_BE_FIXUP;
407
408 if (board_be_handler)
Atsushi Nemoto28fc5822007-07-13 01:49:49 +0900409 action = board_be_handler(regs, fixup != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 switch (action) {
412 case MIPS_BE_DISCARD:
413 return;
414 case MIPS_BE_FIXUP:
415 if (fixup) {
416 regs->cp0_epc = fixup->nextinsn;
417 return;
418 }
419 break;
420 default:
421 break;
422 }
423
424 /*
425 * Assume it would be too dangerous to continue ...
426 */
427 printk(KERN_ALERT "%s bus error, epc == %0*lx, ra == %0*lx\n",
428 data ? "Data" : "Instruction",
429 field, regs->cp0_epc, field, regs->regs[31]);
Jason Wessel88547002008-07-29 15:58:53 -0500430 if (notify_die(DIE_OOPS, "bus error", regs, SIGBUS, 0, 0)
431 == NOTIFY_STOP)
432 return;
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 die_if_kernel("Oops", regs);
435 force_sig(SIGBUS, current);
436}
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438/*
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100439 * ll/sc, rdhwr, sync emulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 */
441
442#define OPCODE 0xfc000000
443#define BASE 0x03e00000
444#define RT 0x001f0000
445#define OFFSET 0x0000ffff
446#define LL 0xc0000000
447#define SC 0xe0000000
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100448#define SPEC0 0x00000000
Ralf Baechle3c370262005-04-13 17:43:59 +0000449#define SPEC3 0x7c000000
450#define RD 0x0000f800
451#define FUNC 0x0000003f
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100452#define SYNC 0x0000000f
Ralf Baechle3c370262005-04-13 17:43:59 +0000453#define RDHWR 0x0000003b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455/*
456 * The ll_bit is cleared by r*_switch.S
457 */
458
459unsigned long ll_bit;
460
461static struct task_struct *ll_task = NULL;
462
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100463static inline int simulate_ll(struct pt_regs *regs, unsigned int opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000465 unsigned long value, __user *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 /*
469 * analyse the ll instruction that just caused a ri exception
470 * and put the referenced address to addr.
471 */
472
473 /* sign extend offset */
474 offset = opcode & OFFSET;
475 offset <<= 16;
476 offset >>= 16;
477
Ralf Baechlefe00f942005-03-01 19:22:29 +0000478 vaddr = (unsigned long __user *)
479 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100481 if ((unsigned long)vaddr & 3)
482 return SIGBUS;
483 if (get_user(value, vaddr))
484 return SIGSEGV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 preempt_disable();
487
488 if (ll_task == NULL || ll_task == current) {
489 ll_bit = 1;
490 } else {
491 ll_bit = 0;
492 }
493 ll_task = current;
494
495 preempt_enable();
496
497 regs->regs[(opcode & RT) >> 16] = value;
498
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100499 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100502static inline int simulate_sc(struct pt_regs *regs, unsigned int opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000504 unsigned long __user *vaddr;
505 unsigned long reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 /*
509 * analyse the sc instruction that just caused a ri exception
510 * and put the referenced address to addr.
511 */
512
513 /* sign extend offset */
514 offset = opcode & OFFSET;
515 offset <<= 16;
516 offset >>= 16;
517
Ralf Baechlefe00f942005-03-01 19:22:29 +0000518 vaddr = (unsigned long __user *)
519 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 reg = (opcode & RT) >> 16;
521
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100522 if ((unsigned long)vaddr & 3)
523 return SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 preempt_disable();
526
527 if (ll_bit == 0 || ll_task != current) {
528 regs->regs[reg] = 0;
529 preempt_enable();
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100530 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 }
532
533 preempt_enable();
534
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100535 if (put_user(regs->regs[reg], vaddr))
536 return SIGSEGV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
538 regs->regs[reg] = 1;
539
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
543/*
544 * ll uses the opcode of lwc0 and sc uses the opcode of swc0. That is both
545 * opcodes are supposed to result in coprocessor unusable exceptions if
546 * executed on ll/sc-less processors. That's the theory. In practice a
547 * few processors such as NEC's VR4100 throw reserved instruction exceptions
548 * instead, so we're doing the emulation thing in both exception handlers.
549 */
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100550static int simulate_llsc(struct pt_regs *regs, unsigned int opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551{
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100552 if ((opcode & OPCODE) == LL)
553 return simulate_ll(regs, opcode);
554 if ((opcode & OPCODE) == SC)
555 return simulate_sc(regs, opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100557 return -1; /* Must be something else ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558}
559
Ralf Baechle3c370262005-04-13 17:43:59 +0000560/*
561 * Simulate trapping 'rdhwr' instructions to provide user accessible
Chris Dearman1f5826b2006-05-08 18:02:16 +0100562 * registers not implemented in hardware.
Ralf Baechle3c370262005-04-13 17:43:59 +0000563 */
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100564static int simulate_rdhwr(struct pt_regs *regs, unsigned int opcode)
Ralf Baechle3c370262005-04-13 17:43:59 +0000565{
Al Virodc8f6022006-01-12 01:06:07 -0800566 struct thread_info *ti = task_thread_info(current);
Ralf Baechle3c370262005-04-13 17:43:59 +0000567
568 if ((opcode & OPCODE) == SPEC3 && (opcode & FUNC) == RDHWR) {
569 int rd = (opcode & RD) >> 11;
570 int rt = (opcode & RT) >> 16;
571 switch (rd) {
Chris Dearman1f5826b2006-05-08 18:02:16 +0100572 case 0: /* CPU number */
573 regs->regs[rt] = smp_processor_id();
574 return 0;
575 case 1: /* SYNCI length */
576 regs->regs[rt] = min(current_cpu_data.dcache.linesz,
577 current_cpu_data.icache.linesz);
578 return 0;
579 case 2: /* Read count register */
580 regs->regs[rt] = read_c0_count();
581 return 0;
582 case 3: /* Count register resolution */
583 switch (current_cpu_data.cputype) {
584 case CPU_20KC:
585 case CPU_25KF:
586 regs->regs[rt] = 1;
587 break;
Ralf Baechle3c370262005-04-13 17:43:59 +0000588 default:
Chris Dearman1f5826b2006-05-08 18:02:16 +0100589 regs->regs[rt] = 2;
590 }
591 return 0;
592 case 29:
593 regs->regs[rt] = ti->tp_value;
594 return 0;
595 default:
596 return -1;
Ralf Baechle3c370262005-04-13 17:43:59 +0000597 }
598 }
599
Daniel Jacobowitz56ebd512005-11-26 22:34:41 -0500600 /* Not ours. */
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100601 return -1;
602}
Ralf Baechlee5679882006-11-30 01:14:47 +0000603
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100604static int simulate_sync(struct pt_regs *regs, unsigned int opcode)
605{
606 if ((opcode & OPCODE) == SPEC0 && (opcode & FUNC) == SYNC)
607 return 0;
608
609 return -1; /* Must be something else ... */
Ralf Baechle3c370262005-04-13 17:43:59 +0000610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612asmlinkage void do_ov(struct pt_regs *regs)
613{
614 siginfo_t info;
615
Ralf Baechle36ccf1c2006-02-14 21:04:54 +0000616 die_if_kernel("Integer overflow", regs);
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 info.si_code = FPE_INTOVF;
619 info.si_signo = SIGFPE;
620 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000621 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622 force_sig_info(SIGFPE, &info, current);
623}
624
625/*
626 * XXX Delayed fp exceptions when doing a lazy ctx switch XXX
627 */
628asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31)
629{
Thiemo Seufer948a34c2007-08-22 01:42:04 +0100630 siginfo_t info;
631
Jason Wessel88547002008-07-29 15:58:53 -0500632 if (notify_die(DIE_FP, "FP exception", regs, SIGFPE, 0, 0)
633 == NOTIFY_STOP)
634 return;
Chris Dearman57725f92006-06-30 23:35:28 +0100635 die_if_kernel("FP exception in kernel code", regs);
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (fcr31 & FPU_CSR_UNI_X) {
638 int sig;
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 /*
Ralf Baechlea3dddd52006-03-11 08:18:41 +0000641 * Unimplemented operation exception. If we've got the full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 * software emulator on-board, let's use it...
643 *
644 * Force FPU to dump state into task/thread context. We're
645 * moving a lot of data here for what is probably a single
646 * instruction, but the alternative is to pre-decode the FP
647 * register operands before invoking the emulator, which seems
648 * a bit extreme for what should be an infrequent event.
649 */
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000650 /* Ensure 'resume' not overwrite saved fp context again. */
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900651 lose_fpu(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652
653 /* Run the emulator */
Ralf Baechle49a89ef2007-10-11 23:46:15 +0100654 sig = fpu_emulator_cop1Handler(regs, &current->thread.fpu, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 /*
657 * We can't allow the emulated instruction to leave any of
658 * the cause bit set in $fcr31.
659 */
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900660 current->thread.fpu.fcr31 &= ~FPU_CSR_ALL_X;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662 /* Restore the hardware register state */
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900663 own_fpu(1); /* Using the FPU again. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665 /* If something went wrong, signal */
666 if (sig)
667 force_sig(sig, current);
668
669 return;
Thiemo Seufer948a34c2007-08-22 01:42:04 +0100670 } else if (fcr31 & FPU_CSR_INV_X)
671 info.si_code = FPE_FLTINV;
672 else if (fcr31 & FPU_CSR_DIV_X)
673 info.si_code = FPE_FLTDIV;
674 else if (fcr31 & FPU_CSR_OVF_X)
675 info.si_code = FPE_FLTOVF;
676 else if (fcr31 & FPU_CSR_UDF_X)
677 info.si_code = FPE_FLTUND;
678 else if (fcr31 & FPU_CSR_INE_X)
679 info.si_code = FPE_FLTRES;
680 else
681 info.si_code = __SI_FAULT;
682 info.si_signo = SIGFPE;
683 info.si_errno = 0;
684 info.si_addr = (void __user *) regs->cp0_epc;
685 force_sig_info(SIGFPE, &info, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
Ralf Baechledf270052008-04-20 16:28:54 +0100688static void do_trap_or_bp(struct pt_regs *regs, unsigned int code,
689 const char *str)
690{
691 siginfo_t info;
692 char b[40];
693
Jason Wessel88547002008-07-29 15:58:53 -0500694 if (notify_die(DIE_TRAP, str, regs, code, 0, 0) == NOTIFY_STOP)
695 return;
696
Ralf Baechledf270052008-04-20 16:28:54 +0100697 /*
698 * A short test says that IRIX 5.3 sends SIGTRAP for all trap
699 * insns, even for trap and break codes that indicate arithmetic
700 * failures. Weird ...
701 * But should we continue the brokenness??? --macro
702 */
703 switch (code) {
704 case BRK_OVERFLOW:
705 case BRK_DIVZERO:
706 scnprintf(b, sizeof(b), "%s instruction in kernel code", str);
707 die_if_kernel(b, regs);
708 if (code == BRK_DIVZERO)
709 info.si_code = FPE_INTDIV;
710 else
711 info.si_code = FPE_INTOVF;
712 info.si_signo = SIGFPE;
713 info.si_errno = 0;
714 info.si_addr = (void __user *) regs->cp0_epc;
715 force_sig_info(SIGFPE, &info, current);
716 break;
717 case BRK_BUG:
718 die_if_kernel("Kernel bug detected", regs);
719 force_sig(SIGTRAP, current);
720 break;
721 default:
722 scnprintf(b, sizeof(b), "%s instruction in kernel code", str);
723 die_if_kernel(b, regs);
724 force_sig(SIGTRAP, current);
725 }
726}
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728asmlinkage void do_bp(struct pt_regs *regs)
729{
730 unsigned int opcode, bcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Atsushi Nemotoba755f82007-04-12 20:02:54 +0900732 if (__get_user(opcode, (unsigned int __user *) exception_epc(regs)))
Ralf Baechlee5679882006-11-30 01:14:47 +0000733 goto out_sigsegv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
735 /*
736 * There is the ancient bug in the MIPS assemblers that the break
737 * code starts left to bit 16 instead to bit 6 in the opcode.
738 * Gas is bug-compatible, but not always, grrr...
739 * We handle both cases with a simple heuristics. --macro
740 */
741 bcode = ((opcode >> 6) & ((1 << 20) - 1));
Ralf Baechledf270052008-04-20 16:28:54 +0100742 if (bcode >= (1 << 10))
743 bcode >>= 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Ralf Baechledf270052008-04-20 16:28:54 +0100745 do_trap_or_bp(regs, bcode, "Break");
Atsushi Nemoto90fccb12007-02-06 16:02:21 +0900746 return;
Ralf Baechlee5679882006-11-30 01:14:47 +0000747
748out_sigsegv:
749 force_sig(SIGSEGV, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
752asmlinkage void do_tr(struct pt_regs *regs)
753{
754 unsigned int opcode, tcode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Atsushi Nemotoba755f82007-04-12 20:02:54 +0900756 if (__get_user(opcode, (unsigned int __user *) exception_epc(regs)))
Ralf Baechlee5679882006-11-30 01:14:47 +0000757 goto out_sigsegv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759 /* Immediate versions don't provide a code. */
760 if (!(opcode & OPCODE))
761 tcode = ((opcode >> 6) & ((1 << 10) - 1));
762
Ralf Baechledf270052008-04-20 16:28:54 +0100763 do_trap_or_bp(regs, tcode, "Trap");
Atsushi Nemoto90fccb12007-02-06 16:02:21 +0900764 return;
Ralf Baechlee5679882006-11-30 01:14:47 +0000765
766out_sigsegv:
767 force_sig(SIGSEGV, current);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
770asmlinkage void do_ri(struct pt_regs *regs)
771{
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100772 unsigned int __user *epc = (unsigned int __user *)exception_epc(regs);
773 unsigned long old_epc = regs->cp0_epc;
774 unsigned int opcode = 0;
775 int status = -1;
776
Jason Wessel88547002008-07-29 15:58:53 -0500777 if (notify_die(DIE_RI, "RI Fault", regs, SIGSEGV, 0, 0)
778 == NOTIFY_STOP)
779 return;
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 die_if_kernel("Reserved instruction in kernel code", regs);
782
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100783 if (unlikely(compute_return_epc(regs) < 0))
Ralf Baechle3c370262005-04-13 17:43:59 +0000784 return;
785
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100786 if (unlikely(get_user(opcode, epc) < 0))
787 status = SIGSEGV;
788
789 if (!cpu_has_llsc && status < 0)
790 status = simulate_llsc(regs, opcode);
791
792 if (status < 0)
793 status = simulate_rdhwr(regs, opcode);
794
795 if (status < 0)
796 status = simulate_sync(regs, opcode);
797
798 if (status < 0)
799 status = SIGILL;
800
801 if (unlikely(status > 0)) {
802 regs->cp0_epc = old_epc; /* Undo skip-over. */
803 force_sig(status, current);
804 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Ralf Baechled223a8612007-07-10 17:33:02 +0100807/*
808 * MIPS MT processors may have fewer FPU contexts than CPU threads. If we've
809 * emulated more than some threshold number of instructions, force migration to
810 * a "CPU" that has FP support.
811 */
812static void mt_ase_fp_affinity(void)
813{
814#ifdef CONFIG_MIPS_MT_FPAFF
815 if (mt_fpemul_threshold > 0 &&
816 ((current->thread.emulated_fp++ > mt_fpemul_threshold))) {
817 /*
818 * If there's no FPU present, or if the application has already
819 * restricted the allowed set to exclude any CPUs with FPUs,
820 * we'll skip the procedure.
821 */
822 if (cpus_intersects(current->cpus_allowed, mt_fpu_cpumask)) {
823 cpumask_t tmask;
824
825 cpus_and(tmask, current->thread.user_cpus_allowed,
826 mt_fpu_cpumask);
827 set_cpus_allowed(current, tmask);
Ralf Baechle293c5bd2007-07-25 16:19:33 +0100828 set_thread_flag(TIF_FPUBOUND);
Ralf Baechled223a8612007-07-10 17:33:02 +0100829 }
830 }
831#endif /* CONFIG_MIPS_MT_FPAFF */
832}
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834asmlinkage void do_cpu(struct pt_regs *regs)
835{
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100836 unsigned int __user *epc;
837 unsigned long old_epc;
838 unsigned int opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 unsigned int cpid;
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100840 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
Atsushi Nemoto53231802007-04-14 02:37:26 +0900842 die_if_kernel("do_cpu invoked from kernel context!", regs);
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 cpid = (regs->cp0_cause >> CAUSEB_CE) & 3;
845
846 switch (cpid) {
847 case 0:
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100848 epc = (unsigned int __user *)exception_epc(regs);
849 old_epc = regs->cp0_epc;
850 opcode = 0;
851 status = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100853 if (unlikely(compute_return_epc(regs) < 0))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return;
Ralf Baechle3c370262005-04-13 17:43:59 +0000855
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100856 if (unlikely(get_user(opcode, epc) < 0))
857 status = SIGSEGV;
858
859 if (!cpu_has_llsc && status < 0)
860 status = simulate_llsc(regs, opcode);
861
862 if (status < 0)
863 status = simulate_rdhwr(regs, opcode);
864
865 if (status < 0)
866 status = SIGILL;
867
868 if (unlikely(status > 0)) {
869 regs->cp0_epc = old_epc; /* Undo skip-over. */
870 force_sig(status, current);
871 }
872
873 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 case 1:
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900876 if (used_math()) /* Using the FPU again. */
877 own_fpu(1);
878 else { /* First time FPU user. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 init_fpu();
880 set_used_math();
881 }
882
Atsushi Nemoto53231802007-04-14 02:37:26 +0900883 if (!raw_cpu_has_fpu) {
Atsushi Nemotoe04582b2006-10-09 00:10:01 +0900884 int sig;
Atsushi Nemotoe04582b2006-10-09 00:10:01 +0900885 sig = fpu_emulator_cop1Handler(regs,
886 &current->thread.fpu, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (sig)
888 force_sig(sig, current);
Ralf Baechled223a8612007-07-10 17:33:02 +0100889 else
890 mt_ase_fp_affinity();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
892
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return;
894
895 case 2:
896 case 3:
897 break;
898 }
899
900 force_sig(SIGILL, current);
901}
902
903asmlinkage void do_mdmx(struct pt_regs *regs)
904{
905 force_sig(SIGILL, current);
906}
907
908asmlinkage void do_watch(struct pt_regs *regs)
909{
910 /*
911 * We use the watch exception where available to detect stack
912 * overflows.
913 */
914 dump_tlb_all();
915 show_regs(regs);
916 panic("Caught WATCH exception - probably caused by stack overflow.");
917}
918
919asmlinkage void do_mcheck(struct pt_regs *regs)
920{
Ralf Baechlecac4bcb2006-05-24 16:51:02 +0100921 const int field = 2 * sizeof(unsigned long);
922 int multi_match = regs->cp0_status & ST0_TS;
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 show_regs(regs);
Ralf Baechlecac4bcb2006-05-24 16:51:02 +0100925
926 if (multi_match) {
927 printk("Index : %0x\n", read_c0_index());
928 printk("Pagemask: %0x\n", read_c0_pagemask());
929 printk("EntryHi : %0*lx\n", field, read_c0_entryhi());
930 printk("EntryLo0: %0*lx\n", field, read_c0_entrylo0());
931 printk("EntryLo1: %0*lx\n", field, read_c0_entrylo1());
932 printk("\n");
933 dump_tlb_all();
934 }
935
Atsushi Nemotoe1bb82892007-07-13 23:51:46 +0900936 show_code((unsigned int __user *) regs->cp0_epc);
Ralf Baechlecac4bcb2006-05-24 16:51:02 +0100937
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 /*
939 * Some chips may have other causes of machine check (e.g. SB1
940 * graduation timer)
941 */
942 panic("Caught Machine Check exception - %scaused by multiple "
943 "matching entries in the TLB.",
Ralf Baechlecac4bcb2006-05-24 16:51:02 +0100944 (multi_match) ? "" : "not ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
Ralf Baechle340ee4b2005-08-17 17:44:08 +0000947asmlinkage void do_mt(struct pt_regs *regs)
948{
Ralf Baechle41c594a2006-04-05 09:45:45 +0100949 int subcode;
950
Ralf Baechle41c594a2006-04-05 09:45:45 +0100951 subcode = (read_vpe_c0_vpecontrol() & VPECONTROL_EXCPT)
952 >> VPECONTROL_EXCPT_SHIFT;
953 switch (subcode) {
954 case 0:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100955 printk(KERN_DEBUG "Thread Underflow\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100956 break;
957 case 1:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100958 printk(KERN_DEBUG "Thread Overflow\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100959 break;
960 case 2:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100961 printk(KERN_DEBUG "Invalid YIELD Qualifier\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100962 break;
963 case 3:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100964 printk(KERN_DEBUG "Gating Storage Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100965 break;
966 case 4:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100967 printk(KERN_DEBUG "YIELD Scheduler Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100968 break;
969 case 5:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100970 printk(KERN_DEBUG "Gating Storage Schedulier Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +0100971 break;
972 default:
Chris Dearmane35a5e32006-06-30 14:19:45 +0100973 printk(KERN_DEBUG "*** UNKNOWN THREAD EXCEPTION %d ***\n",
Ralf Baechle41c594a2006-04-05 09:45:45 +0100974 subcode);
975 break;
976 }
Ralf Baechle340ee4b2005-08-17 17:44:08 +0000977 die_if_kernel("MIPS MT Thread exception in kernel", regs);
978
979 force_sig(SIGILL, current);
980}
981
982
Ralf Baechlee50c0a82005-05-31 11:49:19 +0000983asmlinkage void do_dsp(struct pt_regs *regs)
984{
985 if (cpu_has_dsp)
986 panic("Unexpected DSP exception\n");
987
988 force_sig(SIGILL, current);
989}
990
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991asmlinkage void do_reserved(struct pt_regs *regs)
992{
993 /*
994 * Game over - no way to handle this if it ever occurs. Most probably
995 * caused by a new unknown cpu type or after another deadly
996 * hard/software error.
997 */
998 show_regs(regs);
999 panic("Caught reserved exception %ld - should not happen.",
1000 (regs->cp0_cause & 0x7f) >> 2);
1001}
1002
Ralf Baechle39b8d522008-04-28 17:14:26 +01001003static int __initdata l1parity = 1;
1004static int __init nol1parity(char *s)
1005{
1006 l1parity = 0;
1007 return 1;
1008}
1009__setup("nol1par", nol1parity);
1010static int __initdata l2parity = 1;
1011static int __init nol2parity(char *s)
1012{
1013 l2parity = 0;
1014 return 1;
1015}
1016__setup("nol2par", nol2parity);
1017
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018/*
1019 * Some MIPS CPUs can enable/disable for cache parity detection, but do
1020 * it different ways.
1021 */
1022static inline void parity_protection_init(void)
1023{
Ralf Baechle10cc3522007-10-11 23:46:15 +01001024 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 case CPU_24K:
Nigel Stephens98a41de2006-04-27 15:50:32 +01001026 case CPU_34K:
Ralf Baechle39b8d522008-04-28 17:14:26 +01001027 case CPU_74K:
1028 case CPU_1004K:
1029 {
1030#define ERRCTL_PE 0x80000000
1031#define ERRCTL_L2P 0x00800000
1032 unsigned long errctl;
1033 unsigned int l1parity_present, l2parity_present;
1034
1035 errctl = read_c0_ecc();
1036 errctl &= ~(ERRCTL_PE|ERRCTL_L2P);
1037
1038 /* probe L1 parity support */
1039 write_c0_ecc(errctl | ERRCTL_PE);
1040 back_to_back_c0_hazard();
1041 l1parity_present = (read_c0_ecc() & ERRCTL_PE);
1042
1043 /* probe L2 parity support */
1044 write_c0_ecc(errctl|ERRCTL_L2P);
1045 back_to_back_c0_hazard();
1046 l2parity_present = (read_c0_ecc() & ERRCTL_L2P);
1047
1048 if (l1parity_present && l2parity_present) {
1049 if (l1parity)
1050 errctl |= ERRCTL_PE;
1051 if (l1parity ^ l2parity)
1052 errctl |= ERRCTL_L2P;
1053 } else if (l1parity_present) {
1054 if (l1parity)
1055 errctl |= ERRCTL_PE;
1056 } else if (l2parity_present) {
1057 if (l2parity)
1058 errctl |= ERRCTL_L2P;
1059 } else {
1060 /* No parity available */
1061 }
1062
1063 printk(KERN_INFO "Writing ErrCtl register=%08lx\n", errctl);
1064
1065 write_c0_ecc(errctl);
1066 back_to_back_c0_hazard();
1067 errctl = read_c0_ecc();
1068 printk(KERN_INFO "Readback ErrCtl register=%08lx\n", errctl);
1069
1070 if (l1parity_present)
1071 printk(KERN_INFO "Cache parity protection %sabled\n",
1072 (errctl & ERRCTL_PE) ? "en" : "dis");
1073
1074 if (l2parity_present) {
1075 if (l1parity_present && l1parity)
1076 errctl ^= ERRCTL_L2P;
1077 printk(KERN_INFO "L2 cache parity protection %sabled\n",
1078 (errctl & ERRCTL_L2P) ? "en" : "dis");
1079 }
1080 }
1081 break;
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 case CPU_5KC:
Ralf Baechle14f18b72005-03-01 18:15:08 +00001084 write_c0_ecc(0x80000000);
1085 back_to_back_c0_hazard();
1086 /* Set the PE bit (bit 31) in the c0_errctl register. */
1087 printk(KERN_INFO "Cache parity protection %sabled\n",
1088 (read_c0_ecc() & 0x80000000) ? "en" : "dis");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 break;
1090 case CPU_20KC:
1091 case CPU_25KF:
1092 /* Clear the DE bit (bit 16) in the c0_status register. */
1093 printk(KERN_INFO "Enable cache parity protection for "
1094 "MIPS 20KC/25KF CPUs.\n");
1095 clear_c0_status(ST0_DE);
1096 break;
1097 default:
1098 break;
1099 }
1100}
1101
1102asmlinkage void cache_parity_error(void)
1103{
1104 const int field = 2 * sizeof(unsigned long);
1105 unsigned int reg_val;
1106
1107 /* For the moment, report the problem and hang. */
1108 printk("Cache error exception:\n");
1109 printk("cp0_errorepc == %0*lx\n", field, read_c0_errorepc());
1110 reg_val = read_c0_cacheerr();
1111 printk("c0_cacheerr == %08x\n", reg_val);
1112
1113 printk("Decoded c0_cacheerr: %s cache fault in %s reference.\n",
1114 reg_val & (1<<30) ? "secondary" : "primary",
1115 reg_val & (1<<31) ? "data" : "insn");
1116 printk("Error bits: %s%s%s%s%s%s%s\n",
1117 reg_val & (1<<29) ? "ED " : "",
1118 reg_val & (1<<28) ? "ET " : "",
1119 reg_val & (1<<26) ? "EE " : "",
1120 reg_val & (1<<25) ? "EB " : "",
1121 reg_val & (1<<24) ? "EI " : "",
1122 reg_val & (1<<23) ? "E1 " : "",
1123 reg_val & (1<<22) ? "E0 " : "");
1124 printk("IDX: 0x%08x\n", reg_val & ((1<<22)-1));
1125
Ralf Baechleec917c2c2005-10-07 16:58:15 +01001126#if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (reg_val & (1<<22))
1128 printk("DErrAddr0: 0x%0*lx\n", field, read_c0_derraddr0());
1129
1130 if (reg_val & (1<<23))
1131 printk("DErrAddr1: 0x%0*lx\n", field, read_c0_derraddr1());
1132#endif
1133
1134 panic("Can't handle the cache error!");
1135}
1136
1137/*
1138 * SDBBP EJTAG debug exception handler.
1139 * We skip the instruction and return to the next instruction.
1140 */
1141void ejtag_exception_handler(struct pt_regs *regs)
1142{
1143 const int field = 2 * sizeof(unsigned long);
1144 unsigned long depc, old_epc;
1145 unsigned int debug;
1146
Chris Dearman70ae6122006-06-30 12:32:37 +01001147 printk(KERN_DEBUG "SDBBP EJTAG debug exception - not handled yet, just ignored!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 depc = read_c0_depc();
1149 debug = read_c0_debug();
Chris Dearman70ae6122006-06-30 12:32:37 +01001150 printk(KERN_DEBUG "c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (debug & 0x80000000) {
1152 /*
1153 * In branch delay slot.
1154 * We cheat a little bit here and use EPC to calculate the
1155 * debug return address (DEPC). EPC is restored after the
1156 * calculation.
1157 */
1158 old_epc = regs->cp0_epc;
1159 regs->cp0_epc = depc;
1160 __compute_return_epc(regs);
1161 depc = regs->cp0_epc;
1162 regs->cp0_epc = old_epc;
1163 } else
1164 depc += 4;
1165 write_c0_depc(depc);
1166
1167#if 0
Chris Dearman70ae6122006-06-30 12:32:37 +01001168 printk(KERN_DEBUG "\n\n----- Enable EJTAG single stepping ----\n\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 write_c0_debug(debug | 0x100);
1170#endif
1171}
1172
1173/*
1174 * NMI exception handler.
1175 */
Thiemo Seufer34412c72007-08-20 23:43:49 +01001176NORET_TYPE void ATTRIB_NORET nmi_exception_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
Ralf Baechle41c594a2006-04-05 09:45:45 +01001178 bust_spinlocks(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 printk("NMI taken!!!!\n");
1180 die("NMI", regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181}
1182
Ralf Baechlee01402b2005-07-14 15:57:16 +00001183#define VECTORSPACING 0x100 /* for EI/VI mode */
1184
1185unsigned long ebase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186unsigned long exception_handlers[32];
Ralf Baechlee01402b2005-07-14 15:57:16 +00001187unsigned long vi_handlers[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188
1189/*
1190 * As a side effect of the way this is implemented we're limited
1191 * to interrupt handlers in the address range from
1192 * KSEG0 <= x < KSEG0 + 256mb on the Nevada. Oh well ...
1193 */
1194void *set_except_vector(int n, void *addr)
1195{
1196 unsigned long handler = (unsigned long) addr;
1197 unsigned long old_handler = exception_handlers[n];
1198
1199 exception_handlers[n] = handler;
1200 if (n == 0 && cpu_has_divec) {
Ralf Baechleec70f652007-10-11 23:46:03 +01001201 *(u32 *)(ebase + 0x200) = 0x08000000 |
1202 (0x03ffffff & (handler >> 2));
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02001203 local_flush_icache_range(ebase + 0x200, ebase + 0x204);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 }
1205 return (void *)old_handler;
1206}
1207
Atsushi Nemoto6ba07e52007-05-21 23:45:38 +09001208static asmlinkage void do_default_vi(void)
1209{
1210 show_regs(get_irq_regs());
1211 panic("Caught unexpected vectored interrupt.");
1212}
1213
Ralf Baechleef300e42007-05-06 18:31:18 +01001214static void *set_vi_srs_handler(int n, vi_handler_t addr, int srs)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001215{
1216 unsigned long handler;
1217 unsigned long old_handler = vi_handlers[n];
Ralf Baechlef6771db2007-11-08 18:02:29 +00001218 int srssets = current_cpu_data.srsets;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001219 u32 *w;
1220 unsigned char *b;
1221
1222 if (!cpu_has_veic && !cpu_has_vint)
1223 BUG();
1224
1225 if (addr == NULL) {
1226 handler = (unsigned long) do_default_vi;
1227 srs = 0;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001228 } else
Ralf Baechlee01402b2005-07-14 15:57:16 +00001229 handler = (unsigned long) addr;
1230 vi_handlers[n] = (unsigned long) addr;
1231
1232 b = (unsigned char *)(ebase + 0x200 + n*VECTORSPACING);
1233
Ralf Baechlef6771db2007-11-08 18:02:29 +00001234 if (srs >= srssets)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001235 panic("Shadow register set %d not supported", srs);
1236
1237 if (cpu_has_veic) {
1238 if (board_bind_eic_interrupt)
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001239 board_bind_eic_interrupt(n, srs);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001240 } else if (cpu_has_vint) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001241 /* SRSMap is only defined if shadow sets are implemented */
Ralf Baechlef6771db2007-11-08 18:02:29 +00001242 if (srssets > 1)
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001243 change_c0_srsmap(0xf << n*4, srs << n*4);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001244 }
1245
1246 if (srs == 0) {
1247 /*
1248 * If no shadow set is selected then use the default handler
1249 * that does normal register saving and a standard interrupt exit
1250 */
1251
1252 extern char except_vec_vi, except_vec_vi_lui;
1253 extern char except_vec_vi_ori, except_vec_vi_end;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001254#ifdef CONFIG_MIPS_MT_SMTC
1255 /*
1256 * We need to provide the SMTC vectored interrupt handler
1257 * not only with the address of the handler, but with the
1258 * Status.IM bit to be masked before going there.
1259 */
1260 extern char except_vec_vi_mori;
1261 const int mori_offset = &except_vec_vi_mori - &except_vec_vi;
1262#endif /* CONFIG_MIPS_MT_SMTC */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001263 const int handler_len = &except_vec_vi_end - &except_vec_vi;
1264 const int lui_offset = &except_vec_vi_lui - &except_vec_vi;
1265 const int ori_offset = &except_vec_vi_ori - &except_vec_vi;
1266
1267 if (handler_len > VECTORSPACING) {
1268 /*
1269 * Sigh... panicing won't help as the console
1270 * is probably not configured :(
1271 */
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001272 panic("VECTORSPACING too small");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001273 }
1274
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001275 memcpy(b, &except_vec_vi, handler_len);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001276#ifdef CONFIG_MIPS_MT_SMTC
Ralf Baechle8e8a52e2007-05-31 14:00:19 +01001277 BUG_ON(n > 7); /* Vector index %d exceeds SMTC maximum. */
1278
Ralf Baechle41c594a2006-04-05 09:45:45 +01001279 w = (u32 *)(b + mori_offset);
1280 *w = (*w & 0xffff0000) | (0x100 << n);
1281#endif /* CONFIG_MIPS_MT_SMTC */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001282 w = (u32 *)(b + lui_offset);
1283 *w = (*w & 0xffff0000) | (((u32)handler >> 16) & 0xffff);
1284 w = (u32 *)(b + ori_offset);
1285 *w = (*w & 0xffff0000) | ((u32)handler & 0xffff);
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02001286 local_flush_icache_range((unsigned long)b,
1287 (unsigned long)(b+handler_len));
Ralf Baechlee01402b2005-07-14 15:57:16 +00001288 }
1289 else {
1290 /*
1291 * In other cases jump directly to the interrupt handler
1292 *
1293 * It is the handlers responsibility to save registers if required
1294 * (eg hi/lo) and return from the exception using "eret"
1295 */
1296 w = (u32 *)b;
1297 *w++ = 0x08000000 | (((u32)handler >> 2) & 0x03fffff); /* j handler */
1298 *w = 0;
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02001299 local_flush_icache_range((unsigned long)b,
1300 (unsigned long)(b+8));
Ralf Baechlee01402b2005-07-14 15:57:16 +00001301 }
1302
1303 return (void *)old_handler;
1304}
1305
Ralf Baechleef300e42007-05-06 18:31:18 +01001306void *set_vi_handler(int n, vi_handler_t addr)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001307{
Ralf Baechleff3eab22006-03-29 14:12:58 +01001308 return set_vi_srs_handler(n, addr, 0);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001309}
Ralf Baechlef41ae0b2006-06-05 17:24:46 +01001310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311/*
1312 * This is used by native signal handling
1313 */
Atsushi Nemoto53dc8022007-03-10 01:07:45 +09001314asmlinkage int (*save_fp_context)(struct sigcontext __user *sc);
1315asmlinkage int (*restore_fp_context)(struct sigcontext __user *sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
Atsushi Nemoto53dc8022007-03-10 01:07:45 +09001317extern asmlinkage int _save_fp_context(struct sigcontext __user *sc);
1318extern asmlinkage int _restore_fp_context(struct sigcontext __user *sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Atsushi Nemoto53dc8022007-03-10 01:07:45 +09001320extern asmlinkage int fpu_emulator_save_context(struct sigcontext __user *sc);
1321extern asmlinkage int fpu_emulator_restore_context(struct sigcontext __user *sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Ralf Baechle41c594a2006-04-05 09:45:45 +01001323#ifdef CONFIG_SMP
Atsushi Nemoto53dc8022007-03-10 01:07:45 +09001324static int smp_save_fp_context(struct sigcontext __user *sc)
Ralf Baechle41c594a2006-04-05 09:45:45 +01001325{
Atsushi Nemoto53dc8022007-03-10 01:07:45 +09001326 return raw_cpu_has_fpu
Ralf Baechle41c594a2006-04-05 09:45:45 +01001327 ? _save_fp_context(sc)
1328 : fpu_emulator_save_context(sc);
1329}
1330
Atsushi Nemoto53dc8022007-03-10 01:07:45 +09001331static int smp_restore_fp_context(struct sigcontext __user *sc)
Ralf Baechle41c594a2006-04-05 09:45:45 +01001332{
Atsushi Nemoto53dc8022007-03-10 01:07:45 +09001333 return raw_cpu_has_fpu
Ralf Baechle41c594a2006-04-05 09:45:45 +01001334 ? _restore_fp_context(sc)
1335 : fpu_emulator_restore_context(sc);
1336}
1337#endif
1338
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339static inline void signal_init(void)
1340{
Ralf Baechle41c594a2006-04-05 09:45:45 +01001341#ifdef CONFIG_SMP
1342 /* For now just do the cpu_has_fpu check when the functions are invoked */
1343 save_fp_context = smp_save_fp_context;
1344 restore_fp_context = smp_restore_fp_context;
1345#else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 if (cpu_has_fpu) {
1347 save_fp_context = _save_fp_context;
1348 restore_fp_context = _restore_fp_context;
1349 } else {
1350 save_fp_context = fpu_emulator_save_context;
1351 restore_fp_context = fpu_emulator_restore_context;
1352 }
Ralf Baechle41c594a2006-04-05 09:45:45 +01001353#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354}
1355
1356#ifdef CONFIG_MIPS32_COMPAT
1357
1358/*
1359 * This is used by 32-bit signal stuff on the 64-bit kernel
1360 */
Atsushi Nemoto53dc8022007-03-10 01:07:45 +09001361asmlinkage int (*save_fp_context32)(struct sigcontext32 __user *sc);
1362asmlinkage int (*restore_fp_context32)(struct sigcontext32 __user *sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363
Atsushi Nemoto53dc8022007-03-10 01:07:45 +09001364extern asmlinkage int _save_fp_context32(struct sigcontext32 __user *sc);
1365extern asmlinkage int _restore_fp_context32(struct sigcontext32 __user *sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
Atsushi Nemoto53dc8022007-03-10 01:07:45 +09001367extern asmlinkage int fpu_emulator_save_context32(struct sigcontext32 __user *sc);
1368extern asmlinkage int fpu_emulator_restore_context32(struct sigcontext32 __user *sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369
1370static inline void signal32_init(void)
1371{
1372 if (cpu_has_fpu) {
1373 save_fp_context32 = _save_fp_context32;
1374 restore_fp_context32 = _restore_fp_context32;
1375 } else {
1376 save_fp_context32 = fpu_emulator_save_context32;
1377 restore_fp_context32 = fpu_emulator_restore_context32;
1378 }
1379}
1380#endif
1381
1382extern void cpu_cache_init(void);
1383extern void tlb_init(void);
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00001384extern void flush_tlb_handlers(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Ralf Baechle42f77542007-10-18 17:48:11 +01001386/*
1387 * Timer interrupt
1388 */
1389int cp0_compare_irq;
1390
1391/*
1392 * Performance counter IRQ or -1 if shared with timer
1393 */
1394int cp0_perfcount_irq;
1395EXPORT_SYMBOL_GPL(cp0_perfcount_irq);
1396
Chris Dearmanbdc94eb2007-10-03 10:43:56 +01001397static int __cpuinitdata noulri;
1398
1399static int __init ulri_disable(char *s)
1400{
1401 pr_info("Disabling ulri\n");
1402 noulri = 1;
1403
1404 return 1;
1405}
1406__setup("noulri", ulri_disable);
1407
Ralf Baechle234fcd12008-03-08 09:56:28 +00001408void __cpuinit per_cpu_trap_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409{
1410 unsigned int cpu = smp_processor_id();
1411 unsigned int status_set = ST0_CU0;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001412#ifdef CONFIG_MIPS_MT_SMTC
1413 int secondaryTC = 0;
1414 int bootTC = (cpu == 0);
1415
1416 /*
1417 * Only do per_cpu_trap_init() for first TC of Each VPE.
1418 * Note that this hack assumes that the SMTC init code
1419 * assigns TCs consecutively and in ascending order.
1420 */
1421
1422 if (((read_c0_tcbind() & TCBIND_CURTC) != 0) &&
1423 ((read_c0_tcbind() & TCBIND_CURVPE) == cpu_data[cpu - 1].vpe_id))
1424 secondaryTC = 1;
1425#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
1427 /*
1428 * Disable coprocessors and select 32-bit or 64-bit addressing
1429 * and the 16/32 or 32/32 FPR register model. Reset the BEV
1430 * flag that some firmware may have left set and the TS bit (for
1431 * IP27). Set XX for ISA IV code to work.
1432 */
Ralf Baechle875d43e2005-09-03 15:56:16 -07001433#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 status_set |= ST0_FR|ST0_KX|ST0_SX|ST0_UX;
1435#endif
1436 if (current_cpu_data.isa_level == MIPS_CPU_ISA_IV)
1437 status_set |= ST0_XX;
Chris Dearmanbbaf2382007-12-13 22:42:19 +00001438 if (cpu_has_dsp)
1439 status_set |= ST0_MX;
1440
Ralf Baechleb38c7392006-02-07 01:20:43 +00001441 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 -07001442 status_set);
1443
Ralf Baechlea3692022007-07-10 17:33:02 +01001444 if (cpu_has_mips_r2) {
1445 unsigned int enable = 0x0000000f;
1446
Chris Dearmanbdc94eb2007-10-03 10:43:56 +01001447 if (!noulri && cpu_has_userlocal)
Ralf Baechlea3692022007-07-10 17:33:02 +01001448 enable |= (1 << 29);
1449
1450 write_c0_hwrena(enable);
1451 }
Ralf Baechlee01402b2005-07-14 15:57:16 +00001452
Ralf Baechle41c594a2006-04-05 09:45:45 +01001453#ifdef CONFIG_MIPS_MT_SMTC
1454 if (!secondaryTC) {
1455#endif /* CONFIG_MIPS_MT_SMTC */
1456
Ralf Baechlee01402b2005-07-14 15:57:16 +00001457 if (cpu_has_veic || cpu_has_vint) {
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001458 write_c0_ebase(ebase);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001459 /* Setting vector spacing enables EI/VI mode */
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001460 change_c0_intctl(0x3e0, VECTORSPACING);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001461 }
Ralf Baechled03d0a52005-08-17 13:44:26 +00001462 if (cpu_has_divec) {
1463 if (cpu_has_mipsmt) {
1464 unsigned int vpflags = dvpe();
1465 set_c0_cause(CAUSEF_IV);
1466 evpe(vpflags);
1467 } else
1468 set_c0_cause(CAUSEF_IV);
1469 }
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +01001470
1471 /*
1472 * Before R2 both interrupt numbers were fixed to 7, so on R2 only:
1473 *
1474 * o read IntCtl.IPTI to determine the timer interrupt
1475 * o read IntCtl.IPPCI to determine the performance counter interrupt
1476 */
1477 if (cpu_has_mips_r2) {
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001478 cp0_compare_irq = (read_c0_intctl() >> 29) & 7;
1479 cp0_perfcount_irq = (read_c0_intctl() >> 26) & 7;
Chris Dearmanc3e838a2007-06-21 12:59:57 +01001480 if (cp0_perfcount_irq == cp0_compare_irq)
1481 cp0_perfcount_irq = -1;
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +01001482 } else {
1483 cp0_compare_irq = CP0_LEGACY_COMPARE_IRQ;
Chris Dearmanc3e838a2007-06-21 12:59:57 +01001484 cp0_perfcount_irq = -1;
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +01001485 }
1486
Ralf Baechle41c594a2006-04-05 09:45:45 +01001487#ifdef CONFIG_MIPS_MT_SMTC
1488 }
1489#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 cpu_data[cpu].asid_cache = ASID_FIRST_VERSION;
1492 TLBMISS_HANDLER_SETUP();
1493
1494 atomic_inc(&init_mm.mm_count);
1495 current->active_mm = &init_mm;
1496 BUG_ON(current->mm);
1497 enter_lazy_tlb(&init_mm, current);
1498
Ralf Baechle41c594a2006-04-05 09:45:45 +01001499#ifdef CONFIG_MIPS_MT_SMTC
1500 if (bootTC) {
1501#endif /* CONFIG_MIPS_MT_SMTC */
1502 cpu_cache_init();
1503 tlb_init();
1504#ifdef CONFIG_MIPS_MT_SMTC
Ralf Baechle6a058882007-05-31 14:03:45 +01001505 } else if (!secondaryTC) {
1506 /*
1507 * First TC in non-boot VPE must do subset of tlb_init()
1508 * for MMU countrol registers.
1509 */
1510 write_c0_pagemask(PM_DEFAULT_MASK);
1511 write_c0_wired(0);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001512 }
1513#endif /* CONFIG_MIPS_MT_SMTC */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
Ralf Baechlee01402b2005-07-14 15:57:16 +00001516/* Install CPU exception handler */
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001517void __init set_handler(unsigned long offset, void *addr, unsigned long size)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001518{
1519 memcpy((void *)(ebase + offset), addr, size);
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02001520 local_flush_icache_range(ebase + offset, ebase + offset + size);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001521}
1522
Ralf Baechle234fcd12008-03-08 09:56:28 +00001523static char panic_null_cerr[] __cpuinitdata =
Ralf Baechle641e97f2007-10-11 23:46:05 +01001524 "Trying to set NULL cache error exception handler";
1525
Ralf Baechlee01402b2005-07-14 15:57:16 +00001526/* Install uncached CPU exception handler */
Ralf Baechle234fcd12008-03-08 09:56:28 +00001527void __cpuinit set_uncached_handler(unsigned long offset, void *addr,
1528 unsigned long size)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001529{
1530#ifdef CONFIG_32BIT
1531 unsigned long uncached_ebase = KSEG1ADDR(ebase);
1532#endif
1533#ifdef CONFIG_64BIT
1534 unsigned long uncached_ebase = TO_UNCAC(ebase);
1535#endif
1536
Ralf Baechle641e97f2007-10-11 23:46:05 +01001537 if (!addr)
1538 panic(panic_null_cerr);
1539
Ralf Baechlee01402b2005-07-14 15:57:16 +00001540 memcpy((void *)(uncached_ebase + offset), addr, size);
1541}
1542
Atsushi Nemoto5b104962006-09-11 17:50:29 +09001543static int __initdata rdhwr_noopt;
1544static int __init set_rdhwr_noopt(char *str)
1545{
1546 rdhwr_noopt = 1;
1547 return 1;
1548}
1549
1550__setup("rdhwr_noopt", set_rdhwr_noopt);
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552void __init trap_init(void)
1553{
1554 extern char except_vec3_generic, except_vec3_r4000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 extern char except_vec4;
1556 unsigned long i;
1557
Jason Wessel88547002008-07-29 15:58:53 -05001558#if defined(CONFIG_KGDB)
1559 if (kgdb_early_setup)
1560 return; /* Already done */
1561#endif
1562
Ralf Baechlee01402b2005-07-14 15:57:16 +00001563 if (cpu_has_veic || cpu_has_vint)
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001564 ebase = (unsigned long) alloc_bootmem_low_pages(0x200 + VECTORSPACING*64);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001565 else
1566 ebase = CAC_BASE;
1567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 per_cpu_trap_init();
1569
1570 /*
1571 * Copy the generic exception handlers to their final destination.
1572 * This will be overriden later as suitable for a particular
1573 * configuration.
1574 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001575 set_handler(0x180, &except_vec3_generic, 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576
1577 /*
1578 * Setup default vectors
1579 */
1580 for (i = 0; i <= 31; i++)
1581 set_except_vector(i, handle_reserved);
1582
1583 /*
1584 * Copy the EJTAG debug exception vector handler code to it's final
1585 * destination.
1586 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001587 if (cpu_has_ejtag && board_ejtag_handler_setup)
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001588 board_ejtag_handler_setup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590 /*
1591 * Only some CPUs have the watch exceptions.
1592 */
1593 if (cpu_has_watch)
1594 set_except_vector(23, handle_watch);
1595
1596 /*
Ralf Baechlee01402b2005-07-14 15:57:16 +00001597 * Initialise interrupt handlers
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001599 if (cpu_has_veic || cpu_has_vint) {
1600 int nvec = cpu_has_veic ? 64 : 8;
1601 for (i = 0; i < nvec; i++)
Ralf Baechleff3eab22006-03-29 14:12:58 +01001602 set_vi_handler(i, NULL);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001603 }
1604 else if (cpu_has_divec)
1605 set_handler(0x200, &except_vec4, 0x8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
1607 /*
1608 * Some CPUs can enable/disable for cache parity detection, but does
1609 * it different ways.
1610 */
1611 parity_protection_init();
1612
1613 /*
1614 * The Data Bus Errors / Instruction Bus Errors are signaled
1615 * by external hardware. Therefore these two exceptions
1616 * may have board specific handlers.
1617 */
1618 if (board_be_init)
1619 board_be_init();
1620
Ralf Baechlee4ac58a2006-04-03 17:56:36 +01001621 set_except_vector(0, handle_int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 set_except_vector(1, handle_tlbm);
1623 set_except_vector(2, handle_tlbl);
1624 set_except_vector(3, handle_tlbs);
1625
1626 set_except_vector(4, handle_adel);
1627 set_except_vector(5, handle_ades);
1628
1629 set_except_vector(6, handle_ibe);
1630 set_except_vector(7, handle_dbe);
1631
1632 set_except_vector(8, handle_sys);
1633 set_except_vector(9, handle_bp);
Atsushi Nemoto5b104962006-09-11 17:50:29 +09001634 set_except_vector(10, rdhwr_noopt ? handle_ri :
1635 (cpu_has_vtag_icache ?
1636 handle_ri_rdhwr_vivt : handle_ri_rdhwr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 set_except_vector(11, handle_cpu);
1638 set_except_vector(12, handle_ov);
1639 set_except_vector(13, handle_tr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Ralf Baechle10cc3522007-10-11 23:46:15 +01001641 if (current_cpu_type() == CPU_R6000 ||
1642 current_cpu_type() == CPU_R6000A) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 /*
1644 * The R6000 is the only R-series CPU that features a machine
1645 * check exception (similar to the R4000 cache error) and
1646 * unaligned ldc1/sdc1 exception. The handlers have not been
1647 * written yet. Well, anyway there is no R6000 machine on the
1648 * current list of targets for Linux/MIPS.
1649 * (Duh, crap, there is someone with a triple R6k machine)
1650 */
1651 //set_except_vector(14, handle_mc);
1652 //set_except_vector(15, handle_ndc);
1653 }
1654
Ralf Baechlee01402b2005-07-14 15:57:16 +00001655
1656 if (board_nmi_handler_setup)
1657 board_nmi_handler_setup();
1658
Ralf Baechlee50c0a82005-05-31 11:49:19 +00001659 if (cpu_has_fpu && !cpu_has_nofpuex)
1660 set_except_vector(15, handle_fpe);
1661
1662 set_except_vector(22, handle_mdmx);
1663
1664 if (cpu_has_mcheck)
1665 set_except_vector(24, handle_mcheck);
1666
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001667 if (cpu_has_mipsmt)
1668 set_except_vector(25, handle_mt);
1669
Chris Dearmanacaec422007-05-24 22:30:18 +01001670 set_except_vector(26, handle_dsp);
Ralf Baechlee50c0a82005-05-31 11:49:19 +00001671
1672 if (cpu_has_vce)
1673 /* Special exception: R4[04]00 uses also the divec space. */
1674 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_r4000, 0x100);
1675 else if (cpu_has_4kex)
1676 memcpy((void *)(CAC_BASE + 0x180), &except_vec3_generic, 0x80);
1677 else
1678 memcpy((void *)(CAC_BASE + 0x080), &except_vec3_generic, 0x80);
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 signal_init();
1681#ifdef CONFIG_MIPS32_COMPAT
1682 signal32_init();
1683#endif
1684
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02001685 local_flush_icache_range(ebase, ebase + 0x400);
Ralf Baechle1d40cfc2005-07-15 15:23:23 +00001686 flush_tlb_handlers();
Thomas Bogendoerfer05106172008-08-04 19:44:34 +02001687
1688 sort_extable(__start___dbe_table, __stop___dbe_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689}