blob: c3b41e24c05a47337509b9579d5b1302ba6f6e80 [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
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +010011 * Copyright (C) 2002, 2003, 2004, 2005, 2007 Maciej W. Rozycki
Steven J. Hill2a0b24f2013-03-25 12:15:55 -050012 * Copyright (C) 2000, 2001, 2012 MIPS Technologies, Inc. All rights reserved.
Markos Chandrasb08a9c92013-12-04 16:20:08 +000013 * Copyright (C) 2014, Imagination Technologies Ltd.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 */
Ralf Baechle8e8a52e2007-05-31 14:00:19 +010015#include <linux/bug.h>
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +010016#include <linux/compiler.h>
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +020017#include <linux/context_tracking.h>
James Hoganae4ce452014-03-04 10:20:43 +000018#include <linux/cpu_pm.h>
Ralf Baechle7aa1c8f2012-10-11 18:14:58 +020019#include <linux/kexec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/init.h>
Nathan Lynch8742cd22011-09-30 13:49:35 -050021#include <linux/kernel.h>
Paul Gortmakerf9ded562012-02-28 19:24:46 -050022#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/sched.h>
25#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/spinlock.h>
27#include <linux/kallsyms.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000028#include <linux/bootmem.h>
Maxime Bizond4fd1982006-07-20 18:52:02 +020029#include <linux/interrupt.h>
Ralf Baechle39b8d522008-04-28 17:14:26 +010030#include <linux/ptrace.h>
Jason Wessel88547002008-07-29 15:58:53 -050031#include <linux/kgdb.h>
32#include <linux/kdebug.h>
David Daneyc1bf2072010-08-03 11:22:20 -070033#include <linux/kprobes.h>
Ralf Baechle69f3a7d2009-11-24 01:24:58 +000034#include <linux/notifier.h>
Jason Wessel5dd11d52010-05-20 21:04:26 -050035#include <linux/kdb.h>
David Howellsca4d3e672010-10-07 14:08:54 +010036#include <linux/irq.h>
Deng-Cheng Zhu7f788d22010-10-12 19:37:21 +080037#include <linux/perf_event.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
39#include <asm/bootinfo.h>
40#include <asm/branch.h>
41#include <asm/break.h>
Ralf Baechle69f3a7d2009-11-24 01:24:58 +000042#include <asm/cop2.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include <asm/cpu.h>
Ralf Baechle69f24d12013-09-17 10:25:47 +020044#include <asm/cpu-type.h>
Ralf Baechlee50c0a82005-05-31 11:49:19 +000045#include <asm/dsp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <asm/fpu.h>
Ralf Baechleba3049e2008-10-28 17:38:42 +000047#include <asm/fpu_emulator.h>
Ralf Baechlebdc92d742013-05-21 16:59:19 +020048#include <asm/idle.h>
Ralf Baechle340ee4b2005-08-17 17:44:08 +000049#include <asm/mipsregs.h>
50#include <asm/mipsmtregs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/module.h>
Paul Burton1db1af82014-01-27 15:23:11 +000052#include <asm/msa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include <asm/pgtable.h>
54#include <asm/ptrace.h>
55#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#include <asm/tlbdebug.h>
57#include <asm/traps.h>
58#include <asm/uaccess.h>
David Daneyb67b2b72008-09-23 00:08:45 -070059#include <asm/watch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <asm/types.h>
Atsushi Nemoto1df0f0f2006-09-26 23:44:01 +090062#include <asm/stacktrace.h>
Florian Fainelli92bbe1b2010-01-28 15:22:37 +010063#include <asm/uasm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Atsushi Nemotoc65a5482007-11-12 02:05:18 +090065extern void check_wait(void);
Atsushi Nemotoc65a5482007-11-12 02:05:18 +090066extern asmlinkage void rollback_handle_int(void);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +010067extern asmlinkage void handle_int(void);
Ralf Baechle86a17082013-02-08 01:21:34 +010068extern u32 handle_tlbl[];
69extern u32 handle_tlbs[];
70extern u32 handle_tlbm[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070071extern asmlinkage void handle_adel(void);
72extern asmlinkage void handle_ades(void);
73extern asmlinkage void handle_ibe(void);
74extern asmlinkage void handle_dbe(void);
75extern asmlinkage void handle_sys(void);
76extern asmlinkage void handle_bp(void);
77extern asmlinkage void handle_ri(void);
Atsushi Nemoto5b104962006-09-11 17:50:29 +090078extern asmlinkage void handle_ri_rdhwr_vivt(void);
79extern asmlinkage void handle_ri_rdhwr(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080extern asmlinkage void handle_cpu(void);
81extern asmlinkage void handle_ov(void);
82extern asmlinkage void handle_tr(void);
Paul Burton2bcb3fb2014-01-27 15:23:12 +000083extern asmlinkage void handle_msa_fpe(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084extern asmlinkage void handle_fpe(void);
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +000085extern asmlinkage void handle_ftlb(void);
Paul Burton1db1af82014-01-27 15:23:11 +000086extern asmlinkage void handle_msa(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087extern asmlinkage void handle_mdmx(void);
88extern asmlinkage void handle_watch(void);
Ralf Baechle340ee4b2005-08-17 17:44:08 +000089extern asmlinkage void handle_mt(void);
Ralf Baechlee50c0a82005-05-31 11:49:19 +000090extern asmlinkage void handle_dsp(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091extern asmlinkage void handle_mcheck(void);
92extern asmlinkage void handle_reserved(void);
Leonid Yegoshin5890f702014-07-15 14:09:56 +010093extern void tlb_do_page_fault_0(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Linus Torvalds1da177e2005-04-16 15:20:36 -070095void (*board_be_init)(void);
96int (*board_be_handler)(struct pt_regs *regs, int is_fixup);
Ralf Baechlee01402b2005-07-14 15:57:16 +000097void (*board_nmi_handler_setup)(void);
98void (*board_ejtag_handler_setup)(void);
99void (*board_bind_eic_interrupt)(int irq, int regset);
Kevin Cernekee6fb97ef2011-11-16 01:25:45 +0000100void (*board_ebase_setup)(void);
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000101void(*board_cache_error_setup)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200103static void show_raw_backtrace(unsigned long reg29)
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900104{
Ralf Baechle39b8d522008-04-28 17:14:26 +0100105 unsigned long *sp = (unsigned long *)(reg29 & ~3);
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900106 unsigned long addr;
107
108 printk("Call Trace:");
109#ifdef CONFIG_KALLSYMS
110 printk("\n");
111#endif
Thomas Bogendoerfer10220c82008-05-12 17:58:48 +0200112 while (!kstack_end(sp)) {
113 unsigned long __user *p =
114 (unsigned long __user *)(unsigned long)sp++;
115 if (__get_user(addr, p)) {
116 printk(" (Bad stack address)");
117 break;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100118 }
Thomas Bogendoerfer10220c82008-05-12 17:58:48 +0200119 if (__kernel_text_address(addr))
120 print_ip_sym(addr);
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900121 }
Thomas Bogendoerfer10220c82008-05-12 17:58:48 +0200122 printk("\n");
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900123}
124
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900125#ifdef CONFIG_KALLSYMS
Atsushi Nemoto1df0f0f2006-09-26 23:44:01 +0900126int raw_show_trace;
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900127static int __init set_raw_show_trace(char *str)
128{
129 raw_show_trace = 1;
130 return 1;
131}
132__setup("raw_show_trace", set_raw_show_trace);
Atsushi Nemoto1df0f0f2006-09-26 23:44:01 +0900133#endif
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200134
Ralf Baechleeae23f22007-10-14 23:27:21 +0100135static void show_backtrace(struct task_struct *task, const struct pt_regs *regs)
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900136{
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200137 unsigned long sp = regs->regs[29];
138 unsigned long ra = regs->regs[31];
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900139 unsigned long pc = regs->cp0_epc;
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900140
Vincent Wene909be82012-07-19 09:11:16 +0200141 if (!task)
142 task = current;
143
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900144 if (raw_show_trace || !__kernel_text_address(pc)) {
Franck Bui-Huu87151ae2006-08-03 09:29:17 +0200145 show_raw_backtrace(sp);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900146 return;
147 }
148 printk("Call Trace:\n");
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200149 do {
Franck Bui-Huu87151ae2006-08-03 09:29:17 +0200150 print_ip_sym(pc);
Atsushi Nemoto19246002006-09-29 18:02:51 +0900151 pc = unwind_stack(task, &sp, pc, &ra);
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200152 } while (pc);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900153 printk("\n");
154}
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156/*
157 * This routine abuses get_user()/put_user() to reference pointers
158 * with at least a bit of error checking ...
159 */
Ralf Baechleeae23f22007-10-14 23:27:21 +0100160static void show_stacktrace(struct task_struct *task,
161 const struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
163 const int field = 2 * sizeof(unsigned long);
164 long stackdata;
165 int i;
Atsushi Nemoto5e0373b2007-07-13 23:02:42 +0900166 unsigned long __user *sp = (unsigned long __user *)regs->regs[29];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
168 printk("Stack :");
169 i = 0;
170 while ((unsigned long) sp & (PAGE_SIZE - 1)) {
171 if (i && ((i % (64 / field)) == 0))
Ralf Baechle70342282013-01-22 12:59:30 +0100172 printk("\n ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 if (i > 39) {
174 printk(" ...");
175 break;
176 }
177
178 if (__get_user(stackdata, sp++)) {
179 printk(" (Bad stack address)");
180 break;
181 }
182
183 printk(" %0*lx", field, stackdata);
184 i++;
185 }
186 printk("\n");
Franck Bui-Huu87151ae2006-08-03 09:29:17 +0200187 show_backtrace(task, regs);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900188}
189
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900190void show_stack(struct task_struct *task, unsigned long *sp)
191{
192 struct pt_regs regs;
193 if (sp) {
194 regs.regs[29] = (unsigned long)sp;
195 regs.regs[31] = 0;
196 regs.cp0_epc = 0;
197 } else {
198 if (task && task != current) {
199 regs.regs[29] = task->thread.reg29;
200 regs.regs[31] = 0;
201 regs.cp0_epc = task->thread.reg31;
Jason Wessel5dd11d52010-05-20 21:04:26 -0500202#ifdef CONFIG_KGDB_KDB
203 } else if (atomic_read(&kgdb_active) != -1 &&
204 kdb_current_regs) {
205 memcpy(&regs, kdb_current_regs, sizeof(regs));
206#endif /* CONFIG_KGDB_KDB */
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900207 } else {
208 prepare_frametrace(&regs);
209 }
210 }
211 show_stacktrace(task, &regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
Atsushi Nemotoe1bb82892007-07-13 23:51:46 +0900214static void show_code(unsigned int __user *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 long i;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100217 unsigned short __user *pc16 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 printk("\nCode:");
220
Ralf Baechle39b8d522008-04-28 17:14:26 +0100221 if ((unsigned long)pc & 1)
222 pc16 = (unsigned short __user *)((unsigned long)pc & ~1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 for(i = -3 ; i < 6 ; i++) {
224 unsigned int insn;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100225 if (pc16 ? __get_user(insn, pc16 + i) : __get_user(insn, pc + i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 printk(" (Bad address in epc)\n");
227 break;
228 }
Ralf Baechle39b8d522008-04-28 17:14:26 +0100229 printk("%c%0*x%c", (i?' ':'<'), pc16 ? 4 : 8, insn, (i?' ':'>'));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
231}
232
Ralf Baechleeae23f22007-10-14 23:27:21 +0100233static void __show_regs(const struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 const int field = 2 * sizeof(unsigned long);
236 unsigned int cause = regs->cp0_cause;
237 int i;
238
Tejun Heoa43cb952013-04-30 15:27:17 -0700239 show_regs_print_info(KERN_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 /*
242 * Saved main processor registers
243 */
244 for (i = 0; i < 32; ) {
245 if ((i % 4) == 0)
246 printk("$%2d :", i);
247 if (i == 0)
248 printk(" %0*lx", field, 0UL);
249 else if (i == 26 || i == 27)
250 printk(" %*s", field, "");
251 else
252 printk(" %0*lx", field, regs->regs[i]);
253
254 i++;
255 if ((i % 4) == 0)
256 printk("\n");
257 }
258
Franck Bui-Huu9693a852007-02-02 17:41:47 +0100259#ifdef CONFIG_CPU_HAS_SMARTMIPS
260 printk("Acx : %0*lx\n", field, regs->acx);
261#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 printk("Hi : %0*lx\n", field, regs->hi);
263 printk("Lo : %0*lx\n", field, regs->lo);
264
265 /*
266 * Saved cp0 registers
267 */
Ralf Baechleb012cff2008-07-15 18:44:33 +0100268 printk("epc : %0*lx %pS\n", field, regs->cp0_epc,
269 (void *) regs->cp0_epc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 printk(" %s\n", print_tainted());
Ralf Baechleb012cff2008-07-15 18:44:33 +0100271 printk("ra : %0*lx %pS\n", field, regs->regs[31],
272 (void *) regs->regs[31]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Ralf Baechle70342282013-01-22 12:59:30 +0100274 printk("Status: %08x ", (uint32_t) regs->cp0_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Ralf Baechle1990e542013-06-26 17:06:34 +0200276 if (cpu_has_3kex) {
Maciej W. Rozycki3b2396d2005-06-22 20:43:29 +0000277 if (regs->cp0_status & ST0_KUO)
278 printk("KUo ");
279 if (regs->cp0_status & ST0_IEO)
280 printk("IEo ");
281 if (regs->cp0_status & ST0_KUP)
282 printk("KUp ");
283 if (regs->cp0_status & ST0_IEP)
284 printk("IEp ");
285 if (regs->cp0_status & ST0_KUC)
286 printk("KUc ");
287 if (regs->cp0_status & ST0_IEC)
288 printk("IEc ");
Ralf Baechle1990e542013-06-26 17:06:34 +0200289 } else if (cpu_has_4kex) {
Maciej W. Rozycki3b2396d2005-06-22 20:43:29 +0000290 if (regs->cp0_status & ST0_KX)
291 printk("KX ");
292 if (regs->cp0_status & ST0_SX)
293 printk("SX ");
294 if (regs->cp0_status & ST0_UX)
295 printk("UX ");
296 switch (regs->cp0_status & ST0_KSU) {
297 case KSU_USER:
298 printk("USER ");
299 break;
300 case KSU_SUPERVISOR:
301 printk("SUPERVISOR ");
302 break;
303 case KSU_KERNEL:
304 printk("KERNEL ");
305 break;
306 default:
307 printk("BAD_MODE ");
308 break;
309 }
310 if (regs->cp0_status & ST0_ERL)
311 printk("ERL ");
312 if (regs->cp0_status & ST0_EXL)
313 printk("EXL ");
314 if (regs->cp0_status & ST0_IE)
315 printk("IE ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 printk("\n");
318
319 printk("Cause : %08x\n", cause);
320
321 cause = (cause & CAUSEF_EXCCODE) >> CAUSEB_EXCCODE;
322 if (1 <= cause && cause <= 5)
323 printk("BadVA : %0*lx\n", field, regs->cp0_badvaddr);
324
Ralf Baechle9966db252007-10-11 23:46:17 +0100325 printk("PrId : %08x (%s)\n", read_c0_prid(),
326 cpu_name_string());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327}
328
Ralf Baechleeae23f22007-10-14 23:27:21 +0100329/*
330 * FIXME: really the generic show_regs should take a const pointer argument.
331 */
332void show_regs(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Ralf Baechleeae23f22007-10-14 23:27:21 +0100334 __show_regs((struct pt_regs *)regs);
335}
336
David Daneyc1bf2072010-08-03 11:22:20 -0700337void show_registers(struct pt_regs *regs)
Ralf Baechleeae23f22007-10-14 23:27:21 +0100338{
Ralf Baechle39b8d522008-04-28 17:14:26 +0100339 const int field = 2 * sizeof(unsigned long);
Leonid Yegoshin83e4da1e2013-10-08 12:39:31 +0100340 mm_segment_t old_fs = get_fs();
Ralf Baechle39b8d522008-04-28 17:14:26 +0100341
Ralf Baechleeae23f22007-10-14 23:27:21 +0100342 __show_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 print_modules();
Ralf Baechle39b8d522008-04-28 17:14:26 +0100344 printk("Process %s (pid: %d, threadinfo=%p, task=%p, tls=%0*lx)\n",
345 current->comm, current->pid, current_thread_info(), current,
346 field, current_thread_info()->tp_value);
347 if (cpu_has_userlocal) {
348 unsigned long tls;
349
350 tls = read_c0_userlocal();
351 if (tls != current_thread_info()->tp_value)
352 printk("*HwTLS: %0*lx\n", field, tls);
353 }
354
Leonid Yegoshin83e4da1e2013-10-08 12:39:31 +0100355 if (!user_mode(regs))
356 /* Necessary for getting the correct stack content */
357 set_fs(KERNEL_DS);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900358 show_stacktrace(current, regs);
Atsushi Nemotoe1bb82892007-07-13 23:51:46 +0900359 show_code((unsigned int __user *) regs->cp0_epc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 printk("\n");
Leonid Yegoshin83e4da1e2013-10-08 12:39:31 +0100361 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
David Daney70dc6f02010-08-03 15:44:43 -0700364static int regs_to_trapnr(struct pt_regs *regs)
365{
366 return (regs->cp0_cause >> 2) & 0x1f;
367}
368
Wu Zhangjin4d85f6a2011-07-23 12:41:24 +0000369static DEFINE_RAW_SPINLOCK(die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
David Daney70dc6f02010-08-03 15:44:43 -0700371void __noreturn die(const char *str, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
373 static int die_counter;
Yury Polyanskiyce384d82010-04-26 00:53:10 -0400374 int sig = SIGSEGV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Nathan Lynch8742cd22011-09-30 13:49:35 -0500376 oops_enter();
377
Ralf Baechledc73e4c2013-10-09 08:54:15 +0200378 if (notify_die(DIE_OOPS, str, regs, 0, regs_to_trapnr(regs),
379 SIGSEGV) == NOTIFY_STOP)
Ralf Baechle10423c92011-05-13 10:33:28 +0100380 sig = 0;
Jason Wessel5dd11d52010-05-20 21:04:26 -0500381
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 console_verbose();
Wu Zhangjin4d85f6a2011-07-23 12:41:24 +0000383 raw_spin_lock_irq(&die_lock);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100384 bust_spinlocks(1);
Yury Polyanskiyce384d82010-04-26 00:53:10 -0400385
Ralf Baechle178086c2005-10-13 17:07:54 +0100386 printk("%s[#%d]:\n", str, ++die_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 show_registers(regs);
Rusty Russell373d4d02013-01-21 17:17:39 +1030388 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
Wu Zhangjin4d85f6a2011-07-23 12:41:24 +0000389 raw_spin_unlock_irq(&die_lock);
Maxime Bizond4fd1982006-07-20 18:52:02 +0200390
Nathan Lynch8742cd22011-09-30 13:49:35 -0500391 oops_exit();
392
Maxime Bizond4fd1982006-07-20 18:52:02 +0200393 if (in_interrupt())
394 panic("Fatal exception in interrupt");
395
396 if (panic_on_oops) {
Ralf Baechleab75dc02011-11-17 15:07:31 +0000397 printk(KERN_EMERG "Fatal exception: panic in 5 seconds");
Maxime Bizond4fd1982006-07-20 18:52:02 +0200398 ssleep(5);
399 panic("Fatal exception");
400 }
401
Ralf Baechle7aa1c8f2012-10-11 18:14:58 +0200402 if (regs && kexec_should_crash(current))
403 crash_kexec(regs);
404
Yury Polyanskiyce384d82010-04-26 00:53:10 -0400405 do_exit(sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406}
407
Thomas Bogendoerfer05106172008-08-04 19:44:34 +0200408extern struct exception_table_entry __start___dbe_table[];
409extern struct exception_table_entry __stop___dbe_table[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Ralf Baechleb6dcec92007-02-18 15:57:09 +0000411__asm__(
412" .section __dbe_table, \"a\"\n"
413" .previous \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415/* Given an address, look for it in the exception tables. */
416static const struct exception_table_entry *search_dbe_tables(unsigned long addr)
417{
418 const struct exception_table_entry *e;
419
420 e = search_extable(__start___dbe_table, __stop___dbe_table - 1, addr);
421 if (!e)
422 e = search_module_dbetables(addr);
423 return e;
424}
425
426asmlinkage void do_be(struct pt_regs *regs)
427{
428 const int field = 2 * sizeof(unsigned long);
429 const struct exception_table_entry *fixup = NULL;
430 int data = regs->cp0_cause & 4;
431 int action = MIPS_BE_FATAL;
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200432 enum ctx_state prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200434 prev_state = exception_enter();
Ralf Baechle70342282013-01-22 12:59:30 +0100435 /* XXX For now. Fixme, this searches the wrong table ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (data && !user_mode(regs))
437 fixup = search_dbe_tables(exception_epc(regs));
438
439 if (fixup)
440 action = MIPS_BE_FIXUP;
441
442 if (board_be_handler)
Atsushi Nemoto28fc5822007-07-13 01:49:49 +0900443 action = board_be_handler(regs, fixup != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445 switch (action) {
446 case MIPS_BE_DISCARD:
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200447 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 case MIPS_BE_FIXUP:
449 if (fixup) {
450 regs->cp0_epc = fixup->nextinsn;
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200451 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 }
453 break;
454 default:
455 break;
456 }
457
458 /*
459 * Assume it would be too dangerous to continue ...
460 */
461 printk(KERN_ALERT "%s bus error, epc == %0*lx, ra == %0*lx\n",
462 data ? "Data" : "Instruction",
463 field, regs->cp0_epc, field, regs->regs[31]);
Ralf Baechledc73e4c2013-10-09 08:54:15 +0200464 if (notify_die(DIE_OOPS, "bus error", regs, 0, regs_to_trapnr(regs),
465 SIGBUS) == NOTIFY_STOP)
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200466 goto out;
Jason Wessel88547002008-07-29 15:58:53 -0500467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 die_if_kernel("Oops", regs);
469 force_sig(SIGBUS, current);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200470
471out:
472 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475/*
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100476 * ll/sc, rdhwr, sync emulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 */
478
479#define OPCODE 0xfc000000
480#define BASE 0x03e00000
481#define RT 0x001f0000
482#define OFFSET 0x0000ffff
483#define LL 0xc0000000
484#define SC 0xe0000000
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100485#define SPEC0 0x00000000
Ralf Baechle3c370262005-04-13 17:43:59 +0000486#define SPEC3 0x7c000000
487#define RD 0x0000f800
488#define FUNC 0x0000003f
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100489#define SYNC 0x0000000f
Ralf Baechle3c370262005-04-13 17:43:59 +0000490#define RDHWR 0x0000003b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500492/* microMIPS definitions */
493#define MM_POOL32A_FUNC 0xfc00ffff
494#define MM_RDHWR 0x00006b3c
495#define MM_RS 0x001f0000
496#define MM_RT 0x03e00000
497
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498/*
499 * The ll_bit is cleared by r*_switch.S
500 */
501
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200502unsigned int ll_bit;
503struct task_struct *ll_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100505static inline int simulate_ll(struct pt_regs *regs, unsigned int opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000507 unsigned long value, __user *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
510 /*
511 * analyse the ll instruction that just caused a ri exception
512 * and put the referenced address to addr.
513 */
514
515 /* sign extend offset */
516 offset = opcode & OFFSET;
517 offset <<= 16;
518 offset >>= 16;
519
Ralf Baechlefe00f942005-03-01 19:22:29 +0000520 vaddr = (unsigned long __user *)
Steven J. Hillb9688312013-01-12 23:29:27 +0000521 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100523 if ((unsigned long)vaddr & 3)
524 return SIGBUS;
525 if (get_user(value, vaddr))
526 return SIGSEGV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 preempt_disable();
529
530 if (ll_task == NULL || ll_task == current) {
531 ll_bit = 1;
532 } else {
533 ll_bit = 0;
534 }
535 ll_task = current;
536
537 preempt_enable();
538
539 regs->regs[(opcode & RT) >> 16] = value;
540
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100541 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100544static inline int simulate_sc(struct pt_regs *regs, unsigned int opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000546 unsigned long __user *vaddr;
547 unsigned long reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 /*
551 * analyse the sc instruction that just caused a ri exception
552 * and put the referenced address to addr.
553 */
554
555 /* sign extend offset */
556 offset = opcode & OFFSET;
557 offset <<= 16;
558 offset >>= 16;
559
Ralf Baechlefe00f942005-03-01 19:22:29 +0000560 vaddr = (unsigned long __user *)
Steven J. Hillb9688312013-01-12 23:29:27 +0000561 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 reg = (opcode & RT) >> 16;
563
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100564 if ((unsigned long)vaddr & 3)
565 return SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 preempt_disable();
568
569 if (ll_bit == 0 || ll_task != current) {
570 regs->regs[reg] = 0;
571 preempt_enable();
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100572 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 }
574
575 preempt_enable();
576
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100577 if (put_user(regs->regs[reg], vaddr))
578 return SIGSEGV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 regs->regs[reg] = 1;
581
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100582 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
585/*
586 * ll uses the opcode of lwc0 and sc uses the opcode of swc0. That is both
587 * opcodes are supposed to result in coprocessor unusable exceptions if
588 * executed on ll/sc-less processors. That's the theory. In practice a
589 * few processors such as NEC's VR4100 throw reserved instruction exceptions
590 * instead, so we're doing the emulation thing in both exception handlers.
591 */
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100592static int simulate_llsc(struct pt_regs *regs, unsigned int opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Deng-Cheng Zhu7f788d22010-10-12 19:37:21 +0800594 if ((opcode & OPCODE) == LL) {
595 perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200596 1, regs, 0);
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100597 return simulate_ll(regs, opcode);
Deng-Cheng Zhu7f788d22010-10-12 19:37:21 +0800598 }
599 if ((opcode & OPCODE) == SC) {
600 perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200601 1, regs, 0);
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100602 return simulate_sc(regs, opcode);
Deng-Cheng Zhu7f788d22010-10-12 19:37:21 +0800603 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100605 return -1; /* Must be something else ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
Ralf Baechle3c370262005-04-13 17:43:59 +0000608/*
609 * Simulate trapping 'rdhwr' instructions to provide user accessible
Chris Dearman1f5826b2006-05-08 18:02:16 +0100610 * registers not implemented in hardware.
Ralf Baechle3c370262005-04-13 17:43:59 +0000611 */
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500612static int simulate_rdhwr(struct pt_regs *regs, int rd, int rt)
Ralf Baechle3c370262005-04-13 17:43:59 +0000613{
Al Virodc8f6022006-01-12 01:06:07 -0800614 struct thread_info *ti = task_thread_info(current);
Ralf Baechle3c370262005-04-13 17:43:59 +0000615
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500616 perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS,
617 1, regs, 0);
618 switch (rd) {
619 case 0: /* CPU number */
620 regs->regs[rt] = smp_processor_id();
621 return 0;
622 case 1: /* SYNCI length */
623 regs->regs[rt] = min(current_cpu_data.dcache.linesz,
624 current_cpu_data.icache.linesz);
625 return 0;
626 case 2: /* Read count register */
627 regs->regs[rt] = read_c0_count();
628 return 0;
629 case 3: /* Count register resolution */
Ralf Baechle69f24d12013-09-17 10:25:47 +0200630 switch (current_cpu_type()) {
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500631 case CPU_20KC:
632 case CPU_25KF:
633 regs->regs[rt] = 1;
634 break;
635 default:
636 regs->regs[rt] = 2;
637 }
638 return 0;
639 case 29:
640 regs->regs[rt] = ti->tp_value;
641 return 0;
642 default:
643 return -1;
644 }
645}
646
647static int simulate_rdhwr_normal(struct pt_regs *regs, unsigned int opcode)
648{
Ralf Baechle3c370262005-04-13 17:43:59 +0000649 if ((opcode & OPCODE) == SPEC3 && (opcode & FUNC) == RDHWR) {
650 int rd = (opcode & RD) >> 11;
651 int rt = (opcode & RT) >> 16;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500652
653 simulate_rdhwr(regs, rd, rt);
654 return 0;
655 }
656
657 /* Not ours. */
658 return -1;
659}
660
661static int simulate_rdhwr_mm(struct pt_regs *regs, unsigned short opcode)
662{
663 if ((opcode & MM_POOL32A_FUNC) == MM_RDHWR) {
664 int rd = (opcode & MM_RS) >> 16;
665 int rt = (opcode & MM_RT) >> 21;
666 simulate_rdhwr(regs, rd, rt);
667 return 0;
Ralf Baechle3c370262005-04-13 17:43:59 +0000668 }
669
Daniel Jacobowitz56ebd512005-11-26 22:34:41 -0500670 /* Not ours. */
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100671 return -1;
672}
Ralf Baechlee5679882006-11-30 01:14:47 +0000673
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100674static int simulate_sync(struct pt_regs *regs, unsigned int opcode)
675{
Deng-Cheng Zhu7f788d22010-10-12 19:37:21 +0800676 if ((opcode & OPCODE) == SPEC0 && (opcode & FUNC) == SYNC) {
677 perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200678 1, regs, 0);
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100679 return 0;
Deng-Cheng Zhu7f788d22010-10-12 19:37:21 +0800680 }
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100681
682 return -1; /* Must be something else ... */
Ralf Baechle3c370262005-04-13 17:43:59 +0000683}
684
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685asmlinkage void do_ov(struct pt_regs *regs)
686{
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200687 enum ctx_state prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 siginfo_t info;
689
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200690 prev_state = exception_enter();
Ralf Baechle36ccf1c2006-02-14 21:04:54 +0000691 die_if_kernel("Integer overflow", regs);
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 info.si_code = FPE_INTOVF;
694 info.si_signo = SIGFPE;
695 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000696 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 force_sig_info(SIGFPE, &info, current);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200698 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
Leonid Yegoshin102cedc2013-03-25 12:09:02 -0500701int process_fpemu_return(int sig, void __user *fault_addr)
David Daney515b0292010-10-21 16:32:26 -0700702{
703 if (sig == SIGSEGV || sig == SIGBUS) {
704 struct siginfo si = {0};
705 si.si_addr = fault_addr;
706 si.si_signo = sig;
707 if (sig == SIGSEGV) {
Davidlohr Buesof7a89f12014-04-19 19:26:28 -0700708 down_read(&current->mm->mmap_sem);
David Daney515b0292010-10-21 16:32:26 -0700709 if (find_vma(current->mm, (unsigned long)fault_addr))
710 si.si_code = SEGV_ACCERR;
711 else
712 si.si_code = SEGV_MAPERR;
Davidlohr Buesof7a89f12014-04-19 19:26:28 -0700713 up_read(&current->mm->mmap_sem);
David Daney515b0292010-10-21 16:32:26 -0700714 } else {
715 si.si_code = BUS_ADRERR;
716 }
717 force_sig_info(sig, &si, current);
718 return 1;
719 } else if (sig) {
720 force_sig(sig, current);
721 return 1;
722 } else {
723 return 0;
724 }
725}
726
Paul Burton4227a2d2014-09-11 08:30:20 +0100727static int simulate_fp(struct pt_regs *regs, unsigned int opcode,
728 unsigned long old_epc, unsigned long old_ra)
729{
730 union mips_instruction inst = { .word = opcode };
731 void __user *fault_addr = NULL;
732 int sig;
733
734 /* If it's obviously not an FP instruction, skip it */
735 switch (inst.i_format.opcode) {
736 case cop1_op:
737 case cop1x_op:
738 case lwc1_op:
739 case ldc1_op:
740 case swc1_op:
741 case sdc1_op:
742 break;
743
744 default:
745 return -1;
746 }
747
748 /*
749 * do_ri skipped over the instruction via compute_return_epc, undo
750 * that for the FPU emulator.
751 */
752 regs->cp0_epc = old_epc;
753 regs->regs[31] = old_ra;
754
755 /* Save the FP context to struct thread_struct */
756 lose_fpu(1);
757
758 /* Run the emulator */
759 sig = fpu_emulator_cop1Handler(regs, &current->thread.fpu, 1,
760 &fault_addr);
761
762 /* If something went wrong, signal */
763 process_fpemu_return(sig, fault_addr);
764
765 /* Restore the hardware register state */
766 own_fpu(1);
767
768 return 0;
769}
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771/*
772 * XXX Delayed fp exceptions when doing a lazy ctx switch XXX
773 */
774asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31)
775{
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200776 enum ctx_state prev_state;
David Daney515b0292010-10-21 16:32:26 -0700777 siginfo_t info = {0};
Thiemo Seufer948a34c2007-08-22 01:42:04 +0100778
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200779 prev_state = exception_enter();
Ralf Baechledc73e4c2013-10-09 08:54:15 +0200780 if (notify_die(DIE_FP, "FP exception", regs, 0, regs_to_trapnr(regs),
781 SIGFPE) == NOTIFY_STOP)
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200782 goto out;
Chris Dearman57725f92006-06-30 23:35:28 +0100783 die_if_kernel("FP exception in kernel code", regs);
784
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (fcr31 & FPU_CSR_UNI_X) {
786 int sig;
David Daney515b0292010-10-21 16:32:26 -0700787 void __user *fault_addr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 /*
Ralf Baechlea3dddd52006-03-11 08:18:41 +0000790 * Unimplemented operation exception. If we've got the full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 * software emulator on-board, let's use it...
792 *
793 * Force FPU to dump state into task/thread context. We're
794 * moving a lot of data here for what is probably a single
795 * instruction, but the alternative is to pre-decode the FP
796 * register operands before invoking the emulator, which seems
797 * a bit extreme for what should be an infrequent event.
798 */
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000799 /* Ensure 'resume' not overwrite saved fp context again. */
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900800 lose_fpu(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
802 /* Run the emulator */
David Daney515b0292010-10-21 16:32:26 -0700803 sig = fpu_emulator_cop1Handler(regs, &current->thread.fpu, 1,
804 &fault_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 /*
807 * We can't allow the emulated instruction to leave any of
808 * the cause bit set in $fcr31.
809 */
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900810 current->thread.fpu.fcr31 &= ~FPU_CSR_ALL_X;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812 /* Restore the hardware register state */
Ralf Baechle70342282013-01-22 12:59:30 +0100813 own_fpu(1); /* Using the FPU again. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
815 /* If something went wrong, signal */
David Daney515b0292010-10-21 16:32:26 -0700816 process_fpemu_return(sig, fault_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200818 goto out;
Thiemo Seufer948a34c2007-08-22 01:42:04 +0100819 } else if (fcr31 & FPU_CSR_INV_X)
820 info.si_code = FPE_FLTINV;
821 else if (fcr31 & FPU_CSR_DIV_X)
822 info.si_code = FPE_FLTDIV;
823 else if (fcr31 & FPU_CSR_OVF_X)
824 info.si_code = FPE_FLTOVF;
825 else if (fcr31 & FPU_CSR_UDF_X)
826 info.si_code = FPE_FLTUND;
827 else if (fcr31 & FPU_CSR_INE_X)
828 info.si_code = FPE_FLTRES;
829 else
830 info.si_code = __SI_FAULT;
831 info.si_signo = SIGFPE;
832 info.si_errno = 0;
833 info.si_addr = (void __user *) regs->cp0_epc;
834 force_sig_info(SIGFPE, &info, current);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200835
836out:
837 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838}
839
Ralf Baechledf270052008-04-20 16:28:54 +0100840static void do_trap_or_bp(struct pt_regs *regs, unsigned int code,
841 const char *str)
842{
843 siginfo_t info;
844 char b[40];
845
Jason Wessel5dd11d52010-05-20 21:04:26 -0500846#ifdef CONFIG_KGDB_LOW_LEVEL_TRAP
David Daney70dc6f02010-08-03 15:44:43 -0700847 if (kgdb_ll_trap(DIE_TRAP, str, regs, code, regs_to_trapnr(regs), SIGTRAP) == NOTIFY_STOP)
Jason Wessel5dd11d52010-05-20 21:04:26 -0500848 return;
849#endif /* CONFIG_KGDB_LOW_LEVEL_TRAP */
850
Ralf Baechledc73e4c2013-10-09 08:54:15 +0200851 if (notify_die(DIE_TRAP, str, regs, code, regs_to_trapnr(regs),
852 SIGTRAP) == NOTIFY_STOP)
Jason Wessel88547002008-07-29 15:58:53 -0500853 return;
854
Ralf Baechledf270052008-04-20 16:28:54 +0100855 /*
856 * A short test says that IRIX 5.3 sends SIGTRAP for all trap
857 * insns, even for trap and break codes that indicate arithmetic
858 * failures. Weird ...
859 * But should we continue the brokenness??? --macro
860 */
861 switch (code) {
862 case BRK_OVERFLOW:
863 case BRK_DIVZERO:
864 scnprintf(b, sizeof(b), "%s instruction in kernel code", str);
865 die_if_kernel(b, regs);
866 if (code == BRK_DIVZERO)
867 info.si_code = FPE_INTDIV;
868 else
869 info.si_code = FPE_INTOVF;
870 info.si_signo = SIGFPE;
871 info.si_errno = 0;
872 info.si_addr = (void __user *) regs->cp0_epc;
873 force_sig_info(SIGFPE, &info, current);
874 break;
875 case BRK_BUG:
876 die_if_kernel("Kernel bug detected", regs);
877 force_sig(SIGTRAP, current);
878 break;
Ralf Baechleba3049e2008-10-28 17:38:42 +0000879 case BRK_MEMU:
880 /*
881 * Address errors may be deliberately induced by the FPU
882 * emulator to retake control of the CPU after executing the
883 * instruction in the delay slot of an emulated branch.
884 *
885 * Terminate if exception was recognized as a delay slot return
886 * otherwise handle as normal.
887 */
888 if (do_dsemulret(regs))
889 return;
890
891 die_if_kernel("Math emu break/trap", regs);
892 force_sig(SIGTRAP, current);
893 break;
Ralf Baechledf270052008-04-20 16:28:54 +0100894 default:
895 scnprintf(b, sizeof(b), "%s instruction in kernel code", str);
896 die_if_kernel(b, regs);
897 force_sig(SIGTRAP, current);
898 }
899}
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901asmlinkage void do_bp(struct pt_regs *regs)
902{
903 unsigned int opcode, bcode;
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200904 enum ctx_state prev_state;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500905 unsigned long epc;
906 u16 instr[2];
Leonid Yegoshin078dde52013-12-04 16:39:34 +0000907 mm_segment_t seg;
908
909 seg = get_fs();
910 if (!user_mode(regs))
911 set_fs(KERNEL_DS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200913 prev_state = exception_enter();
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500914 if (get_isa16_mode(regs->cp0_epc)) {
915 /* Calculate EPC. */
916 epc = exception_epc(regs);
917 if (cpu_has_mmips) {
918 if ((__get_user(instr[0], (u16 __user *)msk_isa16_mode(epc)) ||
919 (__get_user(instr[1], (u16 __user *)msk_isa16_mode(epc + 2)))))
920 goto out_sigsegv;
Markos Chandrasb08a9c92013-12-04 16:20:08 +0000921 opcode = (instr[0] << 16) | instr[1];
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500922 } else {
Markos Chandrasb08a9c92013-12-04 16:20:08 +0000923 /* MIPS16e mode */
924 if (__get_user(instr[0],
925 (u16 __user *)msk_isa16_mode(epc)))
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500926 goto out_sigsegv;
Markos Chandrasb08a9c92013-12-04 16:20:08 +0000927 bcode = (instr[0] >> 6) & 0x3f;
928 do_trap_or_bp(regs, bcode, "Break");
929 goto out;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500930 }
931 } else {
Markos Chandrasb08a9c92013-12-04 16:20:08 +0000932 if (__get_user(opcode,
933 (unsigned int __user *) exception_epc(regs)))
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500934 goto out_sigsegv;
935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 /*
938 * There is the ancient bug in the MIPS assemblers that the break
939 * code starts left to bit 16 instead to bit 6 in the opcode.
940 * Gas is bug-compatible, but not always, grrr...
941 * We handle both cases with a simple heuristics. --macro
942 */
943 bcode = ((opcode >> 6) & ((1 << 20) - 1));
Ralf Baechledf270052008-04-20 16:28:54 +0100944 if (bcode >= (1 << 10))
945 bcode >>= 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
David Daneyc1bf2072010-08-03 11:22:20 -0700947 /*
948 * notify the kprobe handlers, if instruction is likely to
949 * pertain to them.
950 */
951 switch (bcode) {
952 case BRK_KPROBE_BP:
Ralf Baechledc73e4c2013-10-09 08:54:15 +0200953 if (notify_die(DIE_BREAK, "debug", regs, bcode,
954 regs_to_trapnr(regs), SIGTRAP) == NOTIFY_STOP)
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200955 goto out;
David Daneyc1bf2072010-08-03 11:22:20 -0700956 else
957 break;
958 case BRK_KPROBE_SSTEPBP:
Ralf Baechledc73e4c2013-10-09 08:54:15 +0200959 if (notify_die(DIE_SSTEPBP, "single_step", regs, bcode,
960 regs_to_trapnr(regs), SIGTRAP) == NOTIFY_STOP)
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200961 goto out;
David Daneyc1bf2072010-08-03 11:22:20 -0700962 else
963 break;
964 default:
965 break;
966 }
967
Ralf Baechledf270052008-04-20 16:28:54 +0100968 do_trap_or_bp(regs, bcode, "Break");
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200969
970out:
Leonid Yegoshin078dde52013-12-04 16:39:34 +0000971 set_fs(seg);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200972 exception_exit(prev_state);
Atsushi Nemoto90fccb12007-02-06 16:02:21 +0900973 return;
Ralf Baechlee5679882006-11-30 01:14:47 +0000974
975out_sigsegv:
976 force_sig(SIGSEGV, current);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200977 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979
980asmlinkage void do_tr(struct pt_regs *regs)
981{
Maciej W. Rozyckia9a6e7a2013-05-23 14:31:23 +0000982 u32 opcode, tcode = 0;
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200983 enum ctx_state prev_state;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500984 u16 instr[2];
Leonid Yegoshin078dde52013-12-04 16:39:34 +0000985 mm_segment_t seg;
Maciej W. Rozyckia9a6e7a2013-05-23 14:31:23 +0000986 unsigned long epc = msk_isa16_mode(exception_epc(regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987
Leonid Yegoshin078dde52013-12-04 16:39:34 +0000988 seg = get_fs();
989 if (!user_mode(regs))
990 set_fs(get_ds());
991
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200992 prev_state = exception_enter();
Maciej W. Rozyckia9a6e7a2013-05-23 14:31:23 +0000993 if (get_isa16_mode(regs->cp0_epc)) {
994 if (__get_user(instr[0], (u16 __user *)(epc + 0)) ||
995 __get_user(instr[1], (u16 __user *)(epc + 2)))
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500996 goto out_sigsegv;
Maciej W. Rozyckia9a6e7a2013-05-23 14:31:23 +0000997 opcode = (instr[0] << 16) | instr[1];
998 /* Immediate versions don't provide a code. */
999 if (!(opcode & OPCODE))
1000 tcode = (opcode >> 12) & ((1 << 4) - 1);
1001 } else {
1002 if (__get_user(opcode, (u32 __user *)epc))
1003 goto out_sigsegv;
1004 /* Immediate versions don't provide a code. */
1005 if (!(opcode & OPCODE))
1006 tcode = (opcode >> 6) & ((1 << 10) - 1);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Ralf Baechledf270052008-04-20 16:28:54 +01001009 do_trap_or_bp(regs, tcode, "Trap");
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001010
1011out:
Leonid Yegoshin078dde52013-12-04 16:39:34 +00001012 set_fs(seg);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001013 exception_exit(prev_state);
Atsushi Nemoto90fccb12007-02-06 16:02:21 +09001014 return;
Ralf Baechlee5679882006-11-30 01:14:47 +00001015
1016out_sigsegv:
1017 force_sig(SIGSEGV, current);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001018 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019}
1020
1021asmlinkage void do_ri(struct pt_regs *regs)
1022{
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001023 unsigned int __user *epc = (unsigned int __user *)exception_epc(regs);
1024 unsigned long old_epc = regs->cp0_epc;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001025 unsigned long old31 = regs->regs[31];
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001026 enum ctx_state prev_state;
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001027 unsigned int opcode = 0;
1028 int status = -1;
1029
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001030 prev_state = exception_enter();
Ralf Baechledc73e4c2013-10-09 08:54:15 +02001031 if (notify_die(DIE_RI, "RI Fault", regs, 0, regs_to_trapnr(regs),
1032 SIGILL) == NOTIFY_STOP)
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001033 goto out;
Jason Wessel88547002008-07-29 15:58:53 -05001034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 die_if_kernel("Reserved instruction in kernel code", regs);
1036
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001037 if (unlikely(compute_return_epc(regs) < 0))
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001038 goto out;
Ralf Baechle3c370262005-04-13 17:43:59 +00001039
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001040 if (get_isa16_mode(regs->cp0_epc)) {
1041 unsigned short mmop[2] = { 0 };
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001042
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001043 if (unlikely(get_user(mmop[0], epc) < 0))
1044 status = SIGSEGV;
1045 if (unlikely(get_user(mmop[1], epc) < 0))
1046 status = SIGSEGV;
1047 opcode = (mmop[0] << 16) | mmop[1];
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001048
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001049 if (status < 0)
1050 status = simulate_rdhwr_mm(regs, opcode);
1051 } else {
1052 if (unlikely(get_user(opcode, epc) < 0))
1053 status = SIGSEGV;
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001054
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001055 if (!cpu_has_llsc && status < 0)
1056 status = simulate_llsc(regs, opcode);
1057
1058 if (status < 0)
1059 status = simulate_rdhwr_normal(regs, opcode);
1060
1061 if (status < 0)
1062 status = simulate_sync(regs, opcode);
Paul Burton4227a2d2014-09-11 08:30:20 +01001063
1064 if (status < 0)
1065 status = simulate_fp(regs, opcode, old_epc, old31);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001066 }
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001067
1068 if (status < 0)
1069 status = SIGILL;
1070
1071 if (unlikely(status > 0)) {
1072 regs->cp0_epc = old_epc; /* Undo skip-over. */
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001073 regs->regs[31] = old31;
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001074 force_sig(status, current);
1075 }
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001076
1077out:
1078 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079}
1080
Ralf Baechled223a862007-07-10 17:33:02 +01001081/*
1082 * MIPS MT processors may have fewer FPU contexts than CPU threads. If we've
1083 * emulated more than some threshold number of instructions, force migration to
1084 * a "CPU" that has FP support.
1085 */
1086static void mt_ase_fp_affinity(void)
1087{
1088#ifdef CONFIG_MIPS_MT_FPAFF
1089 if (mt_fpemul_threshold > 0 &&
1090 ((current->thread.emulated_fp++ > mt_fpemul_threshold))) {
1091 /*
1092 * If there's no FPU present, or if the application has already
1093 * restricted the allowed set to exclude any CPUs with FPUs,
1094 * we'll skip the procedure.
1095 */
1096 if (cpus_intersects(current->cpus_allowed, mt_fpu_cpumask)) {
1097 cpumask_t tmask;
1098
Kevin D. Kissell9cc12362008-09-09 21:33:36 +02001099 current->thread.user_cpus_allowed
1100 = current->cpus_allowed;
1101 cpus_and(tmask, current->cpus_allowed,
1102 mt_fpu_cpumask);
Julia Lawalled1bbde2010-03-26 23:03:07 +01001103 set_cpus_allowed_ptr(current, &tmask);
Ralf Baechle293c5bd2007-07-25 16:19:33 +01001104 set_thread_flag(TIF_FPUBOUND);
Ralf Baechled223a862007-07-10 17:33:02 +01001105 }
1106 }
1107#endif /* CONFIG_MIPS_MT_FPAFF */
1108}
1109
Ralf Baechle69f3a7d2009-11-24 01:24:58 +00001110/*
1111 * No lock; only written during early bootup by CPU 0.
1112 */
1113static RAW_NOTIFIER_HEAD(cu2_chain);
1114
1115int __ref register_cu2_notifier(struct notifier_block *nb)
1116{
1117 return raw_notifier_chain_register(&cu2_chain, nb);
1118}
1119
1120int cu2_notifier_call_chain(unsigned long val, void *v)
1121{
1122 return raw_notifier_call_chain(&cu2_chain, val, v);
1123}
1124
1125static int default_cu2_call(struct notifier_block *nfb, unsigned long action,
Ralf Baechle70342282013-01-22 12:59:30 +01001126 void *data)
Ralf Baechle69f3a7d2009-11-24 01:24:58 +00001127{
1128 struct pt_regs *regs = data;
1129
Jayachandran C83bee792013-06-10 06:30:01 +00001130 die_if_kernel("COP2: Unhandled kernel unaligned access or invalid "
Ralf Baechle69f3a7d2009-11-24 01:24:58 +00001131 "instruction", regs);
Jayachandran C83bee792013-06-10 06:30:01 +00001132 force_sig(SIGILL, current);
Ralf Baechle69f3a7d2009-11-24 01:24:58 +00001133
1134 return NOTIFY_OK;
1135}
1136
Paul Burton1db1af82014-01-27 15:23:11 +00001137static int enable_restore_fp_context(int msa)
1138{
Paul Burtonc9017752014-07-30 08:53:20 +01001139 int err, was_fpu_owner, prior_msa;
Paul Burton1db1af82014-01-27 15:23:11 +00001140
1141 if (!used_math()) {
1142 /* First time FP context user. */
Paul Burton762a1f42014-07-11 16:44:35 +01001143 preempt_disable();
Paul Burton1db1af82014-01-27 15:23:11 +00001144 err = init_fpu();
Paul Burtonc9017752014-07-30 08:53:20 +01001145 if (msa && !err) {
Paul Burton1db1af82014-01-27 15:23:11 +00001146 enable_msa();
Paul Burtonc9017752014-07-30 08:53:20 +01001147 _init_msa_upper();
Paul Burton732c0c32014-07-31 14:53:16 +01001148 set_thread_flag(TIF_USEDMSA);
1149 set_thread_flag(TIF_MSA_CTX_LIVE);
Paul Burtonc9017752014-07-30 08:53:20 +01001150 }
Paul Burton762a1f42014-07-11 16:44:35 +01001151 preempt_enable();
Paul Burton1db1af82014-01-27 15:23:11 +00001152 if (!err)
1153 set_used_math();
1154 return err;
1155 }
1156
1157 /*
1158 * This task has formerly used the FP context.
1159 *
1160 * If this thread has no live MSA vector context then we can simply
1161 * restore the scalar FP context. If it has live MSA vector context
1162 * (that is, it has or may have used MSA since last performing a
1163 * function call) then we'll need to restore the vector context. This
1164 * applies even if we're currently only executing a scalar FP
1165 * instruction. This is because if we were to later execute an MSA
1166 * instruction then we'd either have to:
1167 *
1168 * - Restore the vector context & clobber any registers modified by
1169 * scalar FP instructions between now & then.
1170 *
1171 * or
1172 *
1173 * - Not restore the vector context & lose the most significant bits
1174 * of all vector registers.
1175 *
1176 * Neither of those options is acceptable. We cannot restore the least
1177 * significant bits of the registers now & only restore the most
1178 * significant bits later because the most significant bits of any
1179 * vector registers whose aliased FP register is modified now will have
1180 * been zeroed. We'd have no way to know that when restoring the vector
1181 * context & thus may load an outdated value for the most significant
1182 * bits of a vector register.
1183 */
1184 if (!msa && !thread_msa_context_live())
1185 return own_fpu(1);
1186
1187 /*
1188 * This task is using or has previously used MSA. Thus we require
1189 * that Status.FR == 1.
1190 */
Paul Burton762a1f42014-07-11 16:44:35 +01001191 preempt_disable();
Paul Burton1db1af82014-01-27 15:23:11 +00001192 was_fpu_owner = is_fpu_owner();
Paul Burton762a1f42014-07-11 16:44:35 +01001193 err = own_fpu_inatomic(0);
Paul Burton1db1af82014-01-27 15:23:11 +00001194 if (err)
Paul Burton762a1f42014-07-11 16:44:35 +01001195 goto out;
Paul Burton1db1af82014-01-27 15:23:11 +00001196
1197 enable_msa();
1198 write_msa_csr(current->thread.fpu.msacsr);
1199 set_thread_flag(TIF_USEDMSA);
1200
1201 /*
1202 * If this is the first time that the task is using MSA and it has
1203 * previously used scalar FP in this time slice then we already nave
Paul Burtonc9017752014-07-30 08:53:20 +01001204 * FP context which we shouldn't clobber. We do however need to clear
1205 * the upper 64b of each vector register so that this task has no
1206 * opportunity to see data left behind by another.
Paul Burton1db1af82014-01-27 15:23:11 +00001207 */
Paul Burtonc9017752014-07-30 08:53:20 +01001208 prior_msa = test_and_set_thread_flag(TIF_MSA_CTX_LIVE);
1209 if (!prior_msa && was_fpu_owner) {
1210 _init_msa_upper();
Paul Burton762a1f42014-07-11 16:44:35 +01001211
1212 goto out;
Paul Burtonc9017752014-07-30 08:53:20 +01001213 }
Paul Burton1db1af82014-01-27 15:23:11 +00001214
Paul Burtonc9017752014-07-30 08:53:20 +01001215 if (!prior_msa) {
1216 /*
1217 * Restore the least significant 64b of each vector register
1218 * from the existing scalar FP context.
1219 */
1220 _restore_fp(current);
Paul Burtonb8340672014-07-11 16:44:29 +01001221
Paul Burtonc9017752014-07-30 08:53:20 +01001222 /*
1223 * The task has not formerly used MSA, so clear the upper 64b
1224 * of each vector register such that it cannot see data left
1225 * behind by another task.
1226 */
1227 _init_msa_upper();
1228 } else {
1229 /* We need to restore the vector context. */
1230 restore_msa(current);
Paul Burtonb8340672014-07-11 16:44:29 +01001231
Paul Burtonc9017752014-07-30 08:53:20 +01001232 /* Restore the scalar FP control & status register */
1233 if (!was_fpu_owner)
James Hogand76e9b92015-01-30 15:40:20 +00001234 write_32bit_cp1_register(CP1_STATUS,
1235 current->thread.fpu.fcr31);
Paul Burtonc9017752014-07-30 08:53:20 +01001236 }
Paul Burton762a1f42014-07-11 16:44:35 +01001237
1238out:
1239 preempt_enable();
1240
Paul Burton1db1af82014-01-27 15:23:11 +00001241 return 0;
1242}
1243
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244asmlinkage void do_cpu(struct pt_regs *regs)
1245{
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001246 enum ctx_state prev_state;
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001247 unsigned int __user *epc;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001248 unsigned long old_epc, old31;
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001249 unsigned int opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 unsigned int cpid;
Paul Burton597ce172013-11-22 13:12:07 +00001251 int status, err;
David Daneyf9bb4cf2008-12-11 15:33:23 -08001252 unsigned long __maybe_unused flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001254 prev_state = exception_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 cpid = (regs->cp0_cause >> CAUSEB_CE) & 3;
1256
Jayachandran C83bee792013-06-10 06:30:01 +00001257 if (cpid != 2)
1258 die_if_kernel("do_cpu invoked from kernel context!", regs);
1259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 switch (cpid) {
1261 case 0:
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001262 epc = (unsigned int __user *)exception_epc(regs);
1263 old_epc = regs->cp0_epc;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001264 old31 = regs->regs[31];
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001265 opcode = 0;
1266 status = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001268 if (unlikely(compute_return_epc(regs) < 0))
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001269 goto out;
Ralf Baechle3c370262005-04-13 17:43:59 +00001270
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001271 if (get_isa16_mode(regs->cp0_epc)) {
1272 unsigned short mmop[2] = { 0 };
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001273
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001274 if (unlikely(get_user(mmop[0], epc) < 0))
1275 status = SIGSEGV;
1276 if (unlikely(get_user(mmop[1], epc) < 0))
1277 status = SIGSEGV;
1278 opcode = (mmop[0] << 16) | mmop[1];
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001279
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001280 if (status < 0)
1281 status = simulate_rdhwr_mm(regs, opcode);
1282 } else {
1283 if (unlikely(get_user(opcode, epc) < 0))
1284 status = SIGSEGV;
1285
1286 if (!cpu_has_llsc && status < 0)
1287 status = simulate_llsc(regs, opcode);
1288
1289 if (status < 0)
1290 status = simulate_rdhwr_normal(regs, opcode);
1291 }
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001292
1293 if (status < 0)
1294 status = SIGILL;
1295
1296 if (unlikely(status > 0)) {
1297 regs->cp0_epc = old_epc; /* Undo skip-over. */
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001298 regs->regs[31] = old31;
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001299 force_sig(status, current);
1300 }
1301
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001302 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
Maciej W. Rozycki051ff442012-03-06 20:28:54 +00001304 case 3:
1305 /*
1306 * Old (MIPS I and MIPS II) processors will set this code
1307 * for COP1X opcode instructions that replaced the original
Ralf Baechle70342282013-01-22 12:59:30 +01001308 * COP3 space. We don't limit COP1 space instructions in
Maciej W. Rozycki051ff442012-03-06 20:28:54 +00001309 * the emulator according to the CPU ISA, so we want to
1310 * treat COP1X instructions consistently regardless of which
Ralf Baechle70342282013-01-22 12:59:30 +01001311 * code the CPU chose. Therefore we redirect this trap to
Maciej W. Rozycki051ff442012-03-06 20:28:54 +00001312 * the FP emulator too.
1313 *
1314 * Then some newer FPU-less processors use this code
1315 * erroneously too, so they are covered by this choice
1316 * as well.
1317 */
1318 if (raw_cpu_has_fpu)
1319 break;
1320 /* Fall through. */
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 case 1:
Paul Burton1db1af82014-01-27 15:23:11 +00001323 err = enable_restore_fp_context(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Paul Burton597ce172013-11-22 13:12:07 +00001325 if (!raw_cpu_has_fpu || err) {
Atsushi Nemotoe04582b2006-10-09 00:10:01 +09001326 int sig;
David Daney515b0292010-10-21 16:32:26 -07001327 void __user *fault_addr = NULL;
Atsushi Nemotoe04582b2006-10-09 00:10:01 +09001328 sig = fpu_emulator_cop1Handler(regs,
David Daney515b0292010-10-21 16:32:26 -07001329 &current->thread.fpu,
1330 0, &fault_addr);
Paul Burton597ce172013-11-22 13:12:07 +00001331 if (!process_fpemu_return(sig, fault_addr) && !err)
Ralf Baechled223a862007-07-10 17:33:02 +01001332 mt_ase_fp_affinity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 }
1334
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001335 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336
1337 case 2:
Ralf Baechle69f3a7d2009-11-24 01:24:58 +00001338 raw_notifier_call_chain(&cu2_chain, CU2_EXCEPTION, regs);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001339 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 }
1341
1342 force_sig(SIGILL, current);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001343
1344out:
1345 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346}
1347
Paul Burton2bcb3fb2014-01-27 15:23:12 +00001348asmlinkage void do_msa_fpe(struct pt_regs *regs)
1349{
1350 enum ctx_state prev_state;
1351
1352 prev_state = exception_enter();
1353 die_if_kernel("do_msa_fpe invoked from kernel context!", regs);
1354 force_sig(SIGFPE, current);
1355 exception_exit(prev_state);
1356}
1357
Paul Burton1db1af82014-01-27 15:23:11 +00001358asmlinkage void do_msa(struct pt_regs *regs)
1359{
1360 enum ctx_state prev_state;
1361 int err;
1362
1363 prev_state = exception_enter();
1364
1365 if (!cpu_has_msa || test_thread_flag(TIF_32BIT_FPREGS)) {
1366 force_sig(SIGILL, current);
1367 goto out;
1368 }
1369
1370 die_if_kernel("do_msa invoked from kernel context!", regs);
1371
1372 err = enable_restore_fp_context(1);
1373 if (err)
1374 force_sig(SIGILL, current);
1375out:
1376 exception_exit(prev_state);
1377}
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379asmlinkage void do_mdmx(struct pt_regs *regs)
1380{
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001381 enum ctx_state prev_state;
1382
1383 prev_state = exception_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 force_sig(SIGILL, current);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001385 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386}
1387
David Daney8bc6d052009-01-05 15:29:58 -08001388/*
1389 * Called with interrupts disabled.
1390 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391asmlinkage void do_watch(struct pt_regs *regs)
1392{
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001393 enum ctx_state prev_state;
David Daneyb67b2b72008-09-23 00:08:45 -07001394 u32 cause;
1395
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001396 prev_state = exception_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 /*
David Daneyb67b2b72008-09-23 00:08:45 -07001398 * Clear WP (bit 22) bit of cause register so we don't loop
1399 * forever.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 */
David Daneyb67b2b72008-09-23 00:08:45 -07001401 cause = read_c0_cause();
1402 cause &= ~(1 << 22);
1403 write_c0_cause(cause);
1404
1405 /*
1406 * If the current thread has the watch registers loaded, save
1407 * their values and send SIGTRAP. Otherwise another thread
1408 * left the registers set, clear them and continue.
1409 */
1410 if (test_tsk_thread_flag(current, TIF_LOAD_WATCH)) {
1411 mips_read_watch_registers();
David Daney8bc6d052009-01-05 15:29:58 -08001412 local_irq_enable();
David Daneyb67b2b72008-09-23 00:08:45 -07001413 force_sig(SIGTRAP, current);
David Daney8bc6d052009-01-05 15:29:58 -08001414 } else {
David Daneyb67b2b72008-09-23 00:08:45 -07001415 mips_clear_watch_registers();
David Daney8bc6d052009-01-05 15:29:58 -08001416 local_irq_enable();
1417 }
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001418 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
1421asmlinkage void do_mcheck(struct pt_regs *regs)
1422{
Ralf Baechlecac4bcb2006-05-24 16:51:02 +01001423 const int field = 2 * sizeof(unsigned long);
1424 int multi_match = regs->cp0_status & ST0_TS;
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001425 enum ctx_state prev_state;
Ralf Baechlecac4bcb2006-05-24 16:51:02 +01001426
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001427 prev_state = exception_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 show_regs(regs);
Ralf Baechlecac4bcb2006-05-24 16:51:02 +01001429
1430 if (multi_match) {
Markos Chandras314727f2014-11-12 09:22:15 +00001431 pr_err("Index : %0x\n", read_c0_index());
1432 pr_err("Pagemask: %0x\n", read_c0_pagemask());
1433 pr_err("EntryHi : %0*lx\n", field, read_c0_entryhi());
1434 pr_err("EntryLo0: %0*lx\n", field, read_c0_entrylo0());
1435 pr_err("EntryLo1: %0*lx\n", field, read_c0_entrylo1());
Markos Chandras26b40ef2014-11-12 09:23:11 +00001436 pr_err("Wired : %0x\n", read_c0_wired());
1437 pr_err("Pagegrain: %0x\n", read_c0_pagegrain());
Markos Chandras31ec86b2014-11-12 09:22:42 +00001438 if (cpu_has_htw) {
1439 pr_err("PWField : %0*lx\n", field, read_c0_pwfield());
1440 pr_err("PWSize : %0*lx\n", field, read_c0_pwsize());
1441 pr_err("PWCtl : %0x\n", read_c0_pwctl());
1442 }
Markos Chandras314727f2014-11-12 09:22:15 +00001443 pr_err("\n");
Ralf Baechlecac4bcb2006-05-24 16:51:02 +01001444 dump_tlb_all();
1445 }
1446
Atsushi Nemotoe1bb82892007-07-13 23:51:46 +09001447 show_code((unsigned int __user *) regs->cp0_epc);
Ralf Baechlecac4bcb2006-05-24 16:51:02 +01001448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 /*
1450 * Some chips may have other causes of machine check (e.g. SB1
1451 * graduation timer)
1452 */
1453 panic("Caught Machine Check exception - %scaused by multiple "
1454 "matching entries in the TLB.",
Ralf Baechlecac4bcb2006-05-24 16:51:02 +01001455 (multi_match) ? "" : "not ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456}
1457
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001458asmlinkage void do_mt(struct pt_regs *regs)
1459{
Ralf Baechle41c594a2006-04-05 09:45:45 +01001460 int subcode;
1461
Ralf Baechle41c594a2006-04-05 09:45:45 +01001462 subcode = (read_vpe_c0_vpecontrol() & VPECONTROL_EXCPT)
1463 >> VPECONTROL_EXCPT_SHIFT;
1464 switch (subcode) {
1465 case 0:
Chris Dearmane35a5e32006-06-30 14:19:45 +01001466 printk(KERN_DEBUG "Thread Underflow\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001467 break;
1468 case 1:
Chris Dearmane35a5e32006-06-30 14:19:45 +01001469 printk(KERN_DEBUG "Thread Overflow\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001470 break;
1471 case 2:
Chris Dearmane35a5e32006-06-30 14:19:45 +01001472 printk(KERN_DEBUG "Invalid YIELD Qualifier\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001473 break;
1474 case 3:
Chris Dearmane35a5e32006-06-30 14:19:45 +01001475 printk(KERN_DEBUG "Gating Storage Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001476 break;
1477 case 4:
Chris Dearmane35a5e32006-06-30 14:19:45 +01001478 printk(KERN_DEBUG "YIELD Scheduler Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001479 break;
1480 case 5:
Masanari Iidaf232c7e2012-02-08 21:53:14 +09001481 printk(KERN_DEBUG "Gating Storage Scheduler Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001482 break;
1483 default:
Chris Dearmane35a5e32006-06-30 14:19:45 +01001484 printk(KERN_DEBUG "*** UNKNOWN THREAD EXCEPTION %d ***\n",
Ralf Baechle41c594a2006-04-05 09:45:45 +01001485 subcode);
1486 break;
1487 }
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001488 die_if_kernel("MIPS MT Thread exception in kernel", regs);
1489
1490 force_sig(SIGILL, current);
1491}
1492
1493
Ralf Baechlee50c0a82005-05-31 11:49:19 +00001494asmlinkage void do_dsp(struct pt_regs *regs)
1495{
1496 if (cpu_has_dsp)
Ralf Baechleab75dc02011-11-17 15:07:31 +00001497 panic("Unexpected DSP exception");
Ralf Baechlee50c0a82005-05-31 11:49:19 +00001498
1499 force_sig(SIGILL, current);
1500}
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502asmlinkage void do_reserved(struct pt_regs *regs)
1503{
1504 /*
Ralf Baechle70342282013-01-22 12:59:30 +01001505 * Game over - no way to handle this if it ever occurs. Most probably
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 * caused by a new unknown cpu type or after another deadly
1507 * hard/software error.
1508 */
1509 show_regs(regs);
1510 panic("Caught reserved exception %ld - should not happen.",
1511 (regs->cp0_cause & 0x7f) >> 2);
1512}
1513
Ralf Baechle39b8d522008-04-28 17:14:26 +01001514static int __initdata l1parity = 1;
1515static int __init nol1parity(char *s)
1516{
1517 l1parity = 0;
1518 return 1;
1519}
1520__setup("nol1par", nol1parity);
1521static int __initdata l2parity = 1;
1522static int __init nol2parity(char *s)
1523{
1524 l2parity = 0;
1525 return 1;
1526}
1527__setup("nol2par", nol2parity);
1528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529/*
1530 * Some MIPS CPUs can enable/disable for cache parity detection, but do
1531 * it different ways.
1532 */
1533static inline void parity_protection_init(void)
1534{
Ralf Baechle10cc3522007-10-11 23:46:15 +01001535 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 case CPU_24K:
Nigel Stephens98a41de2006-04-27 15:50:32 +01001537 case CPU_34K:
Ralf Baechle39b8d522008-04-28 17:14:26 +01001538 case CPU_74K:
1539 case CPU_1004K:
Steven J. Hill442e14a2014-01-17 15:03:50 -06001540 case CPU_1074K:
Leonid Yegoshin26ab96d2013-11-27 10:07:53 +00001541 case CPU_INTERAPTIV:
Leonid Yegoshin708ac4b2013-11-14 16:12:27 +00001542 case CPU_PROAPTIV:
James Hoganaced4cb2014-01-22 16:19:38 +00001543 case CPU_P5600:
Ralf Baechle39b8d522008-04-28 17:14:26 +01001544 {
1545#define ERRCTL_PE 0x80000000
1546#define ERRCTL_L2P 0x00800000
1547 unsigned long errctl;
1548 unsigned int l1parity_present, l2parity_present;
1549
1550 errctl = read_c0_ecc();
1551 errctl &= ~(ERRCTL_PE|ERRCTL_L2P);
1552
1553 /* probe L1 parity support */
1554 write_c0_ecc(errctl | ERRCTL_PE);
1555 back_to_back_c0_hazard();
1556 l1parity_present = (read_c0_ecc() & ERRCTL_PE);
1557
1558 /* probe L2 parity support */
1559 write_c0_ecc(errctl|ERRCTL_L2P);
1560 back_to_back_c0_hazard();
1561 l2parity_present = (read_c0_ecc() & ERRCTL_L2P);
1562
1563 if (l1parity_present && l2parity_present) {
1564 if (l1parity)
1565 errctl |= ERRCTL_PE;
1566 if (l1parity ^ l2parity)
1567 errctl |= ERRCTL_L2P;
1568 } else if (l1parity_present) {
1569 if (l1parity)
1570 errctl |= ERRCTL_PE;
1571 } else if (l2parity_present) {
1572 if (l2parity)
1573 errctl |= ERRCTL_L2P;
1574 } else {
1575 /* No parity available */
1576 }
1577
1578 printk(KERN_INFO "Writing ErrCtl register=%08lx\n", errctl);
1579
1580 write_c0_ecc(errctl);
1581 back_to_back_c0_hazard();
1582 errctl = read_c0_ecc();
1583 printk(KERN_INFO "Readback ErrCtl register=%08lx\n", errctl);
1584
1585 if (l1parity_present)
1586 printk(KERN_INFO "Cache parity protection %sabled\n",
1587 (errctl & ERRCTL_PE) ? "en" : "dis");
1588
1589 if (l2parity_present) {
1590 if (l1parity_present && l1parity)
1591 errctl ^= ERRCTL_L2P;
1592 printk(KERN_INFO "L2 cache parity protection %sabled\n",
1593 (errctl & ERRCTL_L2P) ? "en" : "dis");
1594 }
1595 }
1596 break;
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 case CPU_5KC:
Leonid Yegoshin78d48032012-07-06 21:56:01 +02001599 case CPU_5KE:
Kelvin Cheung2fa36392012-06-20 20:05:32 +01001600 case CPU_LOONGSON1:
Ralf Baechle14f18b72005-03-01 18:15:08 +00001601 write_c0_ecc(0x80000000);
1602 back_to_back_c0_hazard();
1603 /* Set the PE bit (bit 31) in the c0_errctl register. */
1604 printk(KERN_INFO "Cache parity protection %sabled\n",
1605 (read_c0_ecc() & 0x80000000) ? "en" : "dis");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 break;
1607 case CPU_20KC:
1608 case CPU_25KF:
1609 /* Clear the DE bit (bit 16) in the c0_status register. */
1610 printk(KERN_INFO "Enable cache parity protection for "
1611 "MIPS 20KC/25KF CPUs.\n");
1612 clear_c0_status(ST0_DE);
1613 break;
1614 default:
1615 break;
1616 }
1617}
1618
1619asmlinkage void cache_parity_error(void)
1620{
1621 const int field = 2 * sizeof(unsigned long);
1622 unsigned int reg_val;
1623
1624 /* For the moment, report the problem and hang. */
1625 printk("Cache error exception:\n");
1626 printk("cp0_errorepc == %0*lx\n", field, read_c0_errorepc());
1627 reg_val = read_c0_cacheerr();
1628 printk("c0_cacheerr == %08x\n", reg_val);
1629
1630 printk("Decoded c0_cacheerr: %s cache fault in %s reference.\n",
1631 reg_val & (1<<30) ? "secondary" : "primary",
1632 reg_val & (1<<31) ? "data" : "insn");
Leonid Yegoshin6de20452013-10-10 09:58:59 +01001633 if (cpu_has_mips_r2 &&
Markos Chandras721a9202014-05-21 12:35:00 +01001634 ((current_cpu_data.processor_id & 0xff0000) == PRID_COMP_MIPS)) {
Leonid Yegoshin6de20452013-10-10 09:58:59 +01001635 pr_err("Error bits: %s%s%s%s%s%s%s%s\n",
1636 reg_val & (1<<29) ? "ED " : "",
1637 reg_val & (1<<28) ? "ET " : "",
1638 reg_val & (1<<27) ? "ES " : "",
1639 reg_val & (1<<26) ? "EE " : "",
1640 reg_val & (1<<25) ? "EB " : "",
1641 reg_val & (1<<24) ? "EI " : "",
1642 reg_val & (1<<23) ? "E1 " : "",
1643 reg_val & (1<<22) ? "E0 " : "");
1644 } else {
1645 pr_err("Error bits: %s%s%s%s%s%s%s\n",
1646 reg_val & (1<<29) ? "ED " : "",
1647 reg_val & (1<<28) ? "ET " : "",
1648 reg_val & (1<<26) ? "EE " : "",
1649 reg_val & (1<<25) ? "EB " : "",
1650 reg_val & (1<<24) ? "EI " : "",
1651 reg_val & (1<<23) ? "E1 " : "",
1652 reg_val & (1<<22) ? "E0 " : "");
1653 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 printk("IDX: 0x%08x\n", reg_val & ((1<<22)-1));
1655
Ralf Baechleec917c2c2005-10-07 16:58:15 +01001656#if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (reg_val & (1<<22))
1658 printk("DErrAddr0: 0x%0*lx\n", field, read_c0_derraddr0());
1659
1660 if (reg_val & (1<<23))
1661 printk("DErrAddr1: 0x%0*lx\n", field, read_c0_derraddr1());
1662#endif
1663
1664 panic("Can't handle the cache error!");
1665}
1666
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +00001667asmlinkage void do_ftlb(void)
1668{
1669 const int field = 2 * sizeof(unsigned long);
1670 unsigned int reg_val;
1671
1672 /* For the moment, report the problem and hang. */
1673 if (cpu_has_mips_r2 &&
Markos Chandras721a9202014-05-21 12:35:00 +01001674 ((current_cpu_data.processor_id & 0xff0000) == PRID_COMP_MIPS)) {
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +00001675 pr_err("FTLB error exception, cp0_ecc=0x%08x:\n",
1676 read_c0_ecc());
1677 pr_err("cp0_errorepc == %0*lx\n", field, read_c0_errorepc());
1678 reg_val = read_c0_cacheerr();
1679 pr_err("c0_cacheerr == %08x\n", reg_val);
1680
1681 if ((reg_val & 0xc0000000) == 0xc0000000) {
1682 pr_err("Decoded c0_cacheerr: FTLB parity error\n");
1683 } else {
1684 pr_err("Decoded c0_cacheerr: %s cache fault in %s reference.\n",
1685 reg_val & (1<<30) ? "secondary" : "primary",
1686 reg_val & (1<<31) ? "data" : "insn");
1687 }
1688 } else {
1689 pr_err("FTLB error exception\n");
1690 }
1691 /* Just print the cacheerr bits for now */
1692 cache_parity_error();
1693}
1694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695/*
1696 * SDBBP EJTAG debug exception handler.
1697 * We skip the instruction and return to the next instruction.
1698 */
1699void ejtag_exception_handler(struct pt_regs *regs)
1700{
1701 const int field = 2 * sizeof(unsigned long);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001702 unsigned long depc, old_epc, old_ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 unsigned int debug;
1704
Chris Dearman70ae6122006-06-30 12:32:37 +01001705 printk(KERN_DEBUG "SDBBP EJTAG debug exception - not handled yet, just ignored!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 depc = read_c0_depc();
1707 debug = read_c0_debug();
Chris Dearman70ae6122006-06-30 12:32:37 +01001708 printk(KERN_DEBUG "c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 if (debug & 0x80000000) {
1710 /*
1711 * In branch delay slot.
1712 * We cheat a little bit here and use EPC to calculate the
1713 * debug return address (DEPC). EPC is restored after the
1714 * calculation.
1715 */
1716 old_epc = regs->cp0_epc;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001717 old_ra = regs->regs[31];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 regs->cp0_epc = depc;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001719 compute_return_epc(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 depc = regs->cp0_epc;
1721 regs->cp0_epc = old_epc;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001722 regs->regs[31] = old_ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 } else
1724 depc += 4;
1725 write_c0_depc(depc);
1726
1727#if 0
Chris Dearman70ae6122006-06-30 12:32:37 +01001728 printk(KERN_DEBUG "\n\n----- Enable EJTAG single stepping ----\n\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 write_c0_debug(debug | 0x100);
1730#endif
1731}
1732
1733/*
1734 * NMI exception handler.
Kevin Cernekee34bd92e2011-11-16 01:25:44 +00001735 * No lock; only written during early bootup by CPU 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 */
Kevin Cernekee34bd92e2011-11-16 01:25:44 +00001737static RAW_NOTIFIER_HEAD(nmi_chain);
1738
1739int register_nmi_notifier(struct notifier_block *nb)
1740{
1741 return raw_notifier_chain_register(&nmi_chain, nb);
1742}
1743
Joe Perchesff2d8b12012-01-12 17:17:21 -08001744void __noreturn nmi_exception_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
Leonid Yegoshin83e4da1e2013-10-08 12:39:31 +01001746 char str[100];
1747
Kevin Cernekee34bd92e2011-11-16 01:25:44 +00001748 raw_notifier_call_chain(&nmi_chain, 0, regs);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001749 bust_spinlocks(1);
Leonid Yegoshin83e4da1e2013-10-08 12:39:31 +01001750 snprintf(str, 100, "CPU%d NMI taken, CP0_EPC=%lx\n",
1751 smp_processor_id(), regs->cp0_epc);
1752 regs->cp0_epc = read_c0_errorepc();
1753 die(str, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754}
1755
Ralf Baechlee01402b2005-07-14 15:57:16 +00001756#define VECTORSPACING 0x100 /* for EI/VI mode */
1757
1758unsigned long ebase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759unsigned long exception_handlers[32];
Ralf Baechlee01402b2005-07-14 15:57:16 +00001760unsigned long vi_handlers[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Florian Fainelli2d1b6e92010-01-28 15:21:42 +01001762void __init *set_except_vector(int n, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763{
1764 unsigned long handler = (unsigned long) addr;
Ralf Baechleb22d1b62013-05-09 17:57:30 +02001765 unsigned long old_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001767#ifdef CONFIG_CPU_MICROMIPS
1768 /*
1769 * Only the TLB handlers are cache aligned with an even
1770 * address. All other handlers are on an odd address and
1771 * require no modification. Otherwise, MIPS32 mode will
1772 * be entered when handling any TLB exceptions. That
1773 * would be bad...since we must stay in microMIPS mode.
1774 */
1775 if (!(handler & 0x1))
1776 handler |= 1;
1777#endif
Ralf Baechleb22d1b62013-05-09 17:57:30 +02001778 old_handler = xchg(&exception_handlers[n], handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 if (n == 0 && cpu_has_divec) {
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001781#ifdef CONFIG_CPU_MICROMIPS
1782 unsigned long jump_mask = ~((1 << 27) - 1);
1783#else
Florian Fainelli92bbe1b2010-01-28 15:22:37 +01001784 unsigned long jump_mask = ~((1 << 28) - 1);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001785#endif
Florian Fainelli92bbe1b2010-01-28 15:22:37 +01001786 u32 *buf = (u32 *)(ebase + 0x200);
1787 unsigned int k0 = 26;
1788 if ((handler & jump_mask) == ((ebase + 0x200) & jump_mask)) {
1789 uasm_i_j(&buf, handler & ~jump_mask);
1790 uasm_i_nop(&buf);
1791 } else {
1792 UASM_i_LA(&buf, k0, handler);
1793 uasm_i_jr(&buf, k0);
1794 uasm_i_nop(&buf);
1795 }
1796 local_flush_icache_range(ebase + 0x200, (unsigned long)buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 }
1798 return (void *)old_handler;
1799}
1800
Ralf Baechle86a17082013-02-08 01:21:34 +01001801static void do_default_vi(void)
Atsushi Nemoto6ba07e52007-05-21 23:45:38 +09001802{
1803 show_regs(get_irq_regs());
1804 panic("Caught unexpected vectored interrupt.");
1805}
1806
Ralf Baechleef300e42007-05-06 18:31:18 +01001807static void *set_vi_srs_handler(int n, vi_handler_t addr, int srs)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001808{
1809 unsigned long handler;
1810 unsigned long old_handler = vi_handlers[n];
Ralf Baechlef6771db2007-11-08 18:02:29 +00001811 int srssets = current_cpu_data.srsets;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001812 u16 *h;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001813 unsigned char *b;
1814
Ralf Baechleb72b7092009-03-30 14:49:44 +02001815 BUG_ON(!cpu_has_veic && !cpu_has_vint);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001816
1817 if (addr == NULL) {
1818 handler = (unsigned long) do_default_vi;
1819 srs = 0;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001820 } else
Ralf Baechlee01402b2005-07-14 15:57:16 +00001821 handler = (unsigned long) addr;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001822 vi_handlers[n] = handler;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001823
1824 b = (unsigned char *)(ebase + 0x200 + n*VECTORSPACING);
1825
Ralf Baechlef6771db2007-11-08 18:02:29 +00001826 if (srs >= srssets)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001827 panic("Shadow register set %d not supported", srs);
1828
1829 if (cpu_has_veic) {
1830 if (board_bind_eic_interrupt)
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001831 board_bind_eic_interrupt(n, srs);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001832 } else if (cpu_has_vint) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001833 /* SRSMap is only defined if shadow sets are implemented */
Ralf Baechlef6771db2007-11-08 18:02:29 +00001834 if (srssets > 1)
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001835 change_c0_srsmap(0xf << n*4, srs << n*4);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001836 }
1837
1838 if (srs == 0) {
1839 /*
1840 * If no shadow set is selected then use the default handler
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001841 * that does normal register saving and standard interrupt exit
Ralf Baechlee01402b2005-07-14 15:57:16 +00001842 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001843 extern char except_vec_vi, except_vec_vi_lui;
1844 extern char except_vec_vi_ori, except_vec_vi_end;
Atsushi Nemotoc65a5482007-11-12 02:05:18 +09001845 extern char rollback_except_vec_vi;
Ralf Baechlef94d9a82013-05-21 17:30:36 +02001846 char *vec_start = using_rollback_handler() ?
Atsushi Nemotoc65a5482007-11-12 02:05:18 +09001847 &rollback_except_vec_vi : &except_vec_vi;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001848#if defined(CONFIG_CPU_MICROMIPS) || defined(CONFIG_CPU_BIG_ENDIAN)
1849 const int lui_offset = &except_vec_vi_lui - vec_start + 2;
1850 const int ori_offset = &except_vec_vi_ori - vec_start + 2;
1851#else
Atsushi Nemotoc65a5482007-11-12 02:05:18 +09001852 const int lui_offset = &except_vec_vi_lui - vec_start;
1853 const int ori_offset = &except_vec_vi_ori - vec_start;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001854#endif
1855 const int handler_len = &except_vec_vi_end - vec_start;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001856
1857 if (handler_len > VECTORSPACING) {
1858 /*
1859 * Sigh... panicing won't help as the console
1860 * is probably not configured :(
1861 */
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001862 panic("VECTORSPACING too small");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001863 }
1864
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001865 set_handler(((unsigned long)b - ebase), vec_start,
1866#ifdef CONFIG_CPU_MICROMIPS
1867 (handler_len - 1));
1868#else
1869 handler_len);
1870#endif
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001871 h = (u16 *)(b + lui_offset);
1872 *h = (handler >> 16) & 0xffff;
1873 h = (u16 *)(b + ori_offset);
1874 *h = (handler & 0xffff);
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02001875 local_flush_icache_range((unsigned long)b,
1876 (unsigned long)(b+handler_len));
Ralf Baechlee01402b2005-07-14 15:57:16 +00001877 }
1878 else {
1879 /*
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001880 * In other cases jump directly to the interrupt handler. It
1881 * is the handler's responsibility to save registers if required
1882 * (eg hi/lo) and return from the exception using "eret".
Ralf Baechlee01402b2005-07-14 15:57:16 +00001883 */
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001884 u32 insn;
1885
1886 h = (u16 *)b;
1887 /* j handler */
1888#ifdef CONFIG_CPU_MICROMIPS
1889 insn = 0xd4000000 | (((u32)handler & 0x07ffffff) >> 1);
1890#else
1891 insn = 0x08000000 | (((u32)handler & 0x0fffffff) >> 2);
1892#endif
1893 h[0] = (insn >> 16) & 0xffff;
1894 h[1] = insn & 0xffff;
1895 h[2] = 0;
1896 h[3] = 0;
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02001897 local_flush_icache_range((unsigned long)b,
1898 (unsigned long)(b+8));
Ralf Baechlee01402b2005-07-14 15:57:16 +00001899 }
1900
1901 return (void *)old_handler;
1902}
1903
Ralf Baechleef300e42007-05-06 18:31:18 +01001904void *set_vi_handler(int n, vi_handler_t addr)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001905{
Ralf Baechleff3eab22006-03-29 14:12:58 +01001906 return set_vi_srs_handler(n, addr, 0);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001907}
Ralf Baechlef41ae0b2006-06-05 17:24:46 +01001908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909extern void tlb_init(void);
1910
Ralf Baechle42f77542007-10-18 17:48:11 +01001911/*
1912 * Timer interrupt
1913 */
1914int cp0_compare_irq;
Ralf Baechle68b63522012-07-19 09:13:52 +02001915EXPORT_SYMBOL_GPL(cp0_compare_irq);
David VomLehn010c1082009-12-21 17:49:22 -08001916int cp0_compare_irq_shift;
Ralf Baechle42f77542007-10-18 17:48:11 +01001917
1918/*
1919 * Performance counter IRQ or -1 if shared with timer
1920 */
1921int cp0_perfcount_irq;
1922EXPORT_SYMBOL_GPL(cp0_perfcount_irq);
1923
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001924static int noulri;
Chris Dearmanbdc94eb2007-10-03 10:43:56 +01001925
1926static int __init ulri_disable(char *s)
1927{
1928 pr_info("Disabling ulri\n");
1929 noulri = 1;
1930
1931 return 1;
1932}
1933__setup("noulri", ulri_disable);
1934
James Hoganae4ce452014-03-04 10:20:43 +00001935/* configure STATUS register */
1936static void configure_status(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 /*
1939 * Disable coprocessors and select 32-bit or 64-bit addressing
1940 * and the 16/32 or 32/32 FPR register model. Reset the BEV
1941 * flag that some firmware may have left set and the TS bit (for
1942 * IP27). Set XX for ISA IV code to work.
1943 */
James Hoganae4ce452014-03-04 10:20:43 +00001944 unsigned int status_set = ST0_CU0;
Ralf Baechle875d43e2005-09-03 15:56:16 -07001945#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 status_set |= ST0_FR|ST0_KX|ST0_SX|ST0_UX;
1947#endif
Deng-Cheng Zhuadb37892013-04-01 18:14:28 +00001948 if (current_cpu_data.isa_level & MIPS_CPU_ISA_IV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 status_set |= ST0_XX;
Chris Dearmanbbaf2382007-12-13 22:42:19 +00001950 if (cpu_has_dsp)
1951 status_set |= ST0_MX;
1952
Ralf Baechleb38c7392006-02-07 01:20:43 +00001953 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 -07001954 status_set);
James Hoganae4ce452014-03-04 10:20:43 +00001955}
1956
1957/* configure HWRENA register */
1958static void configure_hwrena(void)
1959{
1960 unsigned int hwrena = cpu_hwrena_impl_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Kevin Cernekee18d693b2010-10-16 14:22:38 -07001962 if (cpu_has_mips_r2)
1963 hwrena |= 0x0000000f;
Ralf Baechlea3692022007-07-10 17:33:02 +01001964
Kevin Cernekee18d693b2010-10-16 14:22:38 -07001965 if (!noulri && cpu_has_userlocal)
1966 hwrena |= (1 << 29);
Ralf Baechlea3692022007-07-10 17:33:02 +01001967
Kevin Cernekee18d693b2010-10-16 14:22:38 -07001968 if (hwrena)
1969 write_c0_hwrena(hwrena);
James Hoganae4ce452014-03-04 10:20:43 +00001970}
Ralf Baechlee01402b2005-07-14 15:57:16 +00001971
James Hoganae4ce452014-03-04 10:20:43 +00001972static void configure_exception_vector(void)
1973{
Ralf Baechlee01402b2005-07-14 15:57:16 +00001974 if (cpu_has_veic || cpu_has_vint) {
Chris Dearman9fb4c2b92009-03-20 15:33:55 -07001975 unsigned long sr = set_c0_status(ST0_BEV);
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001976 write_c0_ebase(ebase);
Chris Dearman9fb4c2b92009-03-20 15:33:55 -07001977 write_c0_status(sr);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001978 /* Setting vector spacing enables EI/VI mode */
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001979 change_c0_intctl(0x3e0, VECTORSPACING);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001980 }
Ralf Baechled03d0a52005-08-17 13:44:26 +00001981 if (cpu_has_divec) {
1982 if (cpu_has_mipsmt) {
1983 unsigned int vpflags = dvpe();
1984 set_c0_cause(CAUSEF_IV);
1985 evpe(vpflags);
1986 } else
1987 set_c0_cause(CAUSEF_IV);
1988 }
James Hoganae4ce452014-03-04 10:20:43 +00001989}
1990
1991void per_cpu_trap_init(bool is_boot_cpu)
1992{
1993 unsigned int cpu = smp_processor_id();
James Hoganae4ce452014-03-04 10:20:43 +00001994
1995 configure_status();
1996 configure_hwrena();
1997
James Hoganae4ce452014-03-04 10:20:43 +00001998 configure_exception_vector();
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +01001999
2000 /*
2001 * Before R2 both interrupt numbers were fixed to 7, so on R2 only:
2002 *
2003 * o read IntCtl.IPTI to determine the timer interrupt
2004 * o read IntCtl.IPPCI to determine the performance counter interrupt
2005 */
2006 if (cpu_has_mips_r2) {
David VomLehn010c1082009-12-21 17:49:22 -08002007 cp0_compare_irq_shift = CAUSEB_TI - CAUSEB_IP;
2008 cp0_compare_irq = (read_c0_intctl() >> INTCTLB_IPTI) & 7;
2009 cp0_perfcount_irq = (read_c0_intctl() >> INTCTLB_IPPCI) & 7;
Chris Dearmanc3e838a2007-06-21 12:59:57 +01002010 if (cp0_perfcount_irq == cp0_compare_irq)
2011 cp0_perfcount_irq = -1;
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +01002012 } else {
2013 cp0_compare_irq = CP0_LEGACY_COMPARE_IRQ;
Ralf Baechlec6a4ebb2012-07-06 23:56:00 +02002014 cp0_compare_irq_shift = CP0_LEGACY_PERFCNT_IRQ;
Chris Dearmanc3e838a2007-06-21 12:59:57 +01002015 cp0_perfcount_irq = -1;
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +01002016 }
2017
David Daney48c4ac92013-05-13 13:56:44 -07002018 if (!cpu_data[cpu].asid_cache)
2019 cpu_data[cpu].asid_cache = ASID_FIRST_VERSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 atomic_inc(&init_mm.mm_count);
2022 current->active_mm = &init_mm;
2023 BUG_ON(current->mm);
2024 enter_lazy_tlb(&init_mm, current);
2025
David Daney6650df32012-05-15 00:04:50 -07002026 /* Boot CPU's cache setup in setup_arch(). */
2027 if (!is_boot_cpu)
2028 cpu_cache_init();
Ralf Baechle41c594a2006-04-05 09:45:45 +01002029 tlb_init();
David Daney3d8bfdd2010-12-21 14:19:11 -08002030 TLBMISS_HANDLER_SETUP();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031}
2032
Ralf Baechlee01402b2005-07-14 15:57:16 +00002033/* Install CPU exception handler */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002034void set_handler(unsigned long offset, void *addr, unsigned long size)
Ralf Baechlee01402b2005-07-14 15:57:16 +00002035{
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002036#ifdef CONFIG_CPU_MICROMIPS
2037 memcpy((void *)(ebase + offset), ((unsigned char *)addr - 1), size);
2038#else
Ralf Baechlee01402b2005-07-14 15:57:16 +00002039 memcpy((void *)(ebase + offset), addr, size);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002040#endif
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02002041 local_flush_icache_range(ebase + offset, ebase + offset + size);
Ralf Baechlee01402b2005-07-14 15:57:16 +00002042}
2043
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002044static char panic_null_cerr[] =
Ralf Baechle641e97f2007-10-11 23:46:05 +01002045 "Trying to set NULL cache error exception handler";
2046
Ralf Baechle42fe7ee2009-01-28 18:48:23 +00002047/*
2048 * Install uncached CPU exception handler.
2049 * This is suitable only for the cache error exception which is the only
2050 * exception handler that is being run uncached.
2051 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002052void set_uncached_handler(unsigned long offset, void *addr,
Ralf Baechle234fcd12008-03-08 09:56:28 +00002053 unsigned long size)
Ralf Baechlee01402b2005-07-14 15:57:16 +00002054{
Sebastian Andrzej Siewior4f81b012010-04-27 22:53:30 +02002055 unsigned long uncached_ebase = CKSEG1ADDR(ebase);
Ralf Baechlee01402b2005-07-14 15:57:16 +00002056
Ralf Baechle641e97f2007-10-11 23:46:05 +01002057 if (!addr)
2058 panic(panic_null_cerr);
2059
Ralf Baechlee01402b2005-07-14 15:57:16 +00002060 memcpy((void *)(uncached_ebase + offset), addr, size);
2061}
2062
Atsushi Nemoto5b104962006-09-11 17:50:29 +09002063static int __initdata rdhwr_noopt;
2064static int __init set_rdhwr_noopt(char *str)
2065{
2066 rdhwr_noopt = 1;
2067 return 1;
2068}
2069
2070__setup("rdhwr_noopt", set_rdhwr_noopt);
2071
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072void __init trap_init(void)
2073{
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002074 extern char except_vec3_generic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 extern char except_vec4;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002076 extern char except_vec3_r4000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 unsigned long i;
Atsushi Nemotoc65a5482007-11-12 02:05:18 +09002078
2079 check_wait();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
Jason Wessel88547002008-07-29 15:58:53 -05002081#if defined(CONFIG_KGDB)
2082 if (kgdb_early_setup)
Ralf Baechle70342282013-01-22 12:59:30 +01002083 return; /* Already done */
Jason Wessel88547002008-07-29 15:58:53 -05002084#endif
2085
Chris Dearman9fb4c2b92009-03-20 15:33:55 -07002086 if (cpu_has_veic || cpu_has_vint) {
2087 unsigned long size = 0x200 + VECTORSPACING*64;
2088 ebase = (unsigned long)
2089 __alloc_bootmem(size, 1 << fls(size), 0);
2090 } else {
Sanjay Lal9843b032012-11-21 18:34:03 -08002091#ifdef CONFIG_KVM_GUEST
2092#define KVM_GUEST_KSEG0 0x40000000
2093 ebase = KVM_GUEST_KSEG0;
2094#else
2095 ebase = CKSEG0;
2096#endif
David Daney566f74f2008-10-23 17:56:35 -07002097 if (cpu_has_mips_r2)
2098 ebase += (read_c0_ebase() & 0x3ffff000);
2099 }
Ralf Baechlee01402b2005-07-14 15:57:16 +00002100
Steven J. Hillc6213c62013-06-05 21:25:17 +00002101 if (cpu_has_mmips) {
2102 unsigned int config3 = read_c0_config3();
2103
2104 if (IS_ENABLED(CONFIG_CPU_MICROMIPS))
2105 write_c0_config3(config3 | MIPS_CONF3_ISA_OE);
2106 else
2107 write_c0_config3(config3 & ~MIPS_CONF3_ISA_OE);
2108 }
2109
Kevin Cernekee6fb97ef2011-11-16 01:25:45 +00002110 if (board_ebase_setup)
2111 board_ebase_setup();
David Daney6650df32012-05-15 00:04:50 -07002112 per_cpu_trap_init(true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
2114 /*
2115 * Copy the generic exception handlers to their final destination.
2116 * This will be overriden later as suitable for a particular
2117 * configuration.
2118 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00002119 set_handler(0x180, &except_vec3_generic, 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120
2121 /*
2122 * Setup default vectors
2123 */
2124 for (i = 0; i <= 31; i++)
2125 set_except_vector(i, handle_reserved);
2126
2127 /*
2128 * Copy the EJTAG debug exception vector handler code to it's final
2129 * destination.
2130 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00002131 if (cpu_has_ejtag && board_ejtag_handler_setup)
Ralf Baechle49a89ef2007-10-11 23:46:15 +01002132 board_ejtag_handler_setup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
2134 /*
2135 * Only some CPUs have the watch exceptions.
2136 */
2137 if (cpu_has_watch)
2138 set_except_vector(23, handle_watch);
2139
2140 /*
Ralf Baechlee01402b2005-07-14 15:57:16 +00002141 * Initialise interrupt handlers
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00002143 if (cpu_has_veic || cpu_has_vint) {
2144 int nvec = cpu_has_veic ? 64 : 8;
2145 for (i = 0; i < nvec; i++)
Ralf Baechleff3eab22006-03-29 14:12:58 +01002146 set_vi_handler(i, NULL);
Ralf Baechlee01402b2005-07-14 15:57:16 +00002147 }
2148 else if (cpu_has_divec)
2149 set_handler(0x200, &except_vec4, 0x8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150
2151 /*
2152 * Some CPUs can enable/disable for cache parity detection, but does
2153 * it different ways.
2154 */
2155 parity_protection_init();
2156
2157 /*
2158 * The Data Bus Errors / Instruction Bus Errors are signaled
2159 * by external hardware. Therefore these two exceptions
2160 * may have board specific handlers.
2161 */
2162 if (board_be_init)
2163 board_be_init();
2164
Ralf Baechlef94d9a82013-05-21 17:30:36 +02002165 set_except_vector(0, using_rollback_handler() ? rollback_handle_int
2166 : handle_int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 set_except_vector(1, handle_tlbm);
2168 set_except_vector(2, handle_tlbl);
2169 set_except_vector(3, handle_tlbs);
2170
2171 set_except_vector(4, handle_adel);
2172 set_except_vector(5, handle_ades);
2173
2174 set_except_vector(6, handle_ibe);
2175 set_except_vector(7, handle_dbe);
2176
2177 set_except_vector(8, handle_sys);
2178 set_except_vector(9, handle_bp);
Atsushi Nemoto5b104962006-09-11 17:50:29 +09002179 set_except_vector(10, rdhwr_noopt ? handle_ri :
2180 (cpu_has_vtag_icache ?
2181 handle_ri_rdhwr_vivt : handle_ri_rdhwr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 set_except_vector(11, handle_cpu);
2183 set_except_vector(12, handle_ov);
2184 set_except_vector(13, handle_tr);
Paul Burton2bcb3fb2014-01-27 15:23:12 +00002185 set_except_vector(14, handle_msa_fpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186
Ralf Baechle10cc3522007-10-11 23:46:15 +01002187 if (current_cpu_type() == CPU_R6000 ||
2188 current_cpu_type() == CPU_R6000A) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 /*
2190 * The R6000 is the only R-series CPU that features a machine
2191 * check exception (similar to the R4000 cache error) and
2192 * unaligned ldc1/sdc1 exception. The handlers have not been
Ralf Baechle70342282013-01-22 12:59:30 +01002193 * written yet. Well, anyway there is no R6000 machine on the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 * current list of targets for Linux/MIPS.
2195 * (Duh, crap, there is someone with a triple R6k machine)
2196 */
2197 //set_except_vector(14, handle_mc);
2198 //set_except_vector(15, handle_ndc);
2199 }
2200
Ralf Baechlee01402b2005-07-14 15:57:16 +00002201
2202 if (board_nmi_handler_setup)
2203 board_nmi_handler_setup();
2204
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002205 if (cpu_has_fpu && !cpu_has_nofpuex)
2206 set_except_vector(15, handle_fpe);
2207
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +00002208 set_except_vector(16, handle_ftlb);
Leonid Yegoshin5890f702014-07-15 14:09:56 +01002209
2210 if (cpu_has_rixiex) {
2211 set_except_vector(19, tlb_do_page_fault_0);
2212 set_except_vector(20, tlb_do_page_fault_0);
2213 }
2214
Paul Burton1db1af82014-01-27 15:23:11 +00002215 set_except_vector(21, handle_msa);
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002216 set_except_vector(22, handle_mdmx);
2217
2218 if (cpu_has_mcheck)
2219 set_except_vector(24, handle_mcheck);
2220
Ralf Baechle340ee4b2005-08-17 17:44:08 +00002221 if (cpu_has_mipsmt)
2222 set_except_vector(25, handle_mt);
2223
Chris Dearmanacaec422007-05-24 22:30:18 +01002224 set_except_vector(26, handle_dsp);
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002225
David Daneyfcbf1df2012-05-15 00:04:46 -07002226 if (board_cache_error_setup)
2227 board_cache_error_setup();
2228
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002229 if (cpu_has_vce)
2230 /* Special exception: R4[04]00 uses also the divec space. */
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002231 set_handler(0x180, &except_vec3_r4000, 0x100);
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002232 else if (cpu_has_4kex)
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002233 set_handler(0x180, &except_vec3_generic, 0x80);
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002234 else
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002235 set_handler(0x080, &except_vec3_generic, 0x80);
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002236
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02002237 local_flush_icache_range(ebase, ebase + 0x400);
Thomas Bogendoerfer05106172008-08-04 19:44:34 +02002238
2239 sort_extable(__start___dbe_table, __stop___dbe_table);
Ralf Baechle69f3a7d2009-11-24 01:24:58 +00002240
Ralf Baechle4483b152010-08-05 13:25:59 +01002241 cu2_notifier(default_cu2_call, 0x80000000); /* Run last */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242}
James Hoganae4ce452014-03-04 10:20:43 +00002243
2244static int trap_pm_notifier(struct notifier_block *self, unsigned long cmd,
2245 void *v)
2246{
2247 switch (cmd) {
2248 case CPU_PM_ENTER_FAILED:
2249 case CPU_PM_EXIT:
2250 configure_status();
2251 configure_hwrena();
2252 configure_exception_vector();
2253
2254 /* Restore register with CPU number for TLB handlers */
2255 TLBMISS_HANDLER_RESTORE();
2256
2257 break;
2258 }
2259
2260 return NOTIFY_OK;
2261}
2262
2263static struct notifier_block trap_pm_notifier_block = {
2264 .notifier_call = trap_pm_notifier,
2265};
2266
2267static int __init trap_pm_init(void)
2268{
2269 return cpu_pm_register_notifier(&trap_pm_notifier_block);
2270}
2271arch_initcall(trap_pm_init);