blob: dc6eaf4d93ea70354223f8fcd2f7551293e78b06 [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>
Leonid Yegoshinb0a668f2014-12-03 15:47:03 +000049#include <asm/mips-r2-to-r6-emul.h>
Ralf Baechle340ee4b2005-08-17 17:44:08 +000050#include <asm/mipsregs.h>
51#include <asm/mipsmtregs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/module.h>
Paul Burton1db1af82014-01-27 15:23:11 +000053#include <asm/msa.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#include <asm/pgtable.h>
55#include <asm/ptrace.h>
56#include <asm/sections.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#include <asm/tlbdebug.h>
58#include <asm/traps.h>
59#include <asm/uaccess.h>
David Daneyb67b2b72008-09-23 00:08:45 -070060#include <asm/watch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#include <asm/mmu_context.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070062#include <asm/types.h>
Atsushi Nemoto1df0f0f2006-09-26 23:44:01 +090063#include <asm/stacktrace.h>
Florian Fainelli92bbe1b2010-01-28 15:22:37 +010064#include <asm/uasm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Atsushi Nemotoc65a5482007-11-12 02:05:18 +090066extern void check_wait(void);
Atsushi Nemotoc65a5482007-11-12 02:05:18 +090067extern asmlinkage void rollback_handle_int(void);
Ralf Baechlee4ac58a2006-04-03 17:56:36 +010068extern asmlinkage void handle_int(void);
Ralf Baechle86a17082013-02-08 01:21:34 +010069extern u32 handle_tlbl[];
70extern u32 handle_tlbs[];
71extern u32 handle_tlbm[];
Linus Torvalds1da177e2005-04-16 15:20:36 -070072extern asmlinkage void handle_adel(void);
73extern asmlinkage void handle_ades(void);
74extern asmlinkage void handle_ibe(void);
75extern asmlinkage void handle_dbe(void);
76extern asmlinkage void handle_sys(void);
77extern asmlinkage void handle_bp(void);
78extern asmlinkage void handle_ri(void);
Atsushi Nemoto5b104962006-09-11 17:50:29 +090079extern asmlinkage void handle_ri_rdhwr_vivt(void);
80extern asmlinkage void handle_ri_rdhwr(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081extern asmlinkage void handle_cpu(void);
82extern asmlinkage void handle_ov(void);
83extern asmlinkage void handle_tr(void);
Paul Burton2bcb3fb2014-01-27 15:23:12 +000084extern asmlinkage void handle_msa_fpe(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085extern asmlinkage void handle_fpe(void);
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +000086extern asmlinkage void handle_ftlb(void);
Paul Burton1db1af82014-01-27 15:23:11 +000087extern asmlinkage void handle_msa(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088extern asmlinkage void handle_mdmx(void);
89extern asmlinkage void handle_watch(void);
Ralf Baechle340ee4b2005-08-17 17:44:08 +000090extern asmlinkage void handle_mt(void);
Ralf Baechlee50c0a82005-05-31 11:49:19 +000091extern asmlinkage void handle_dsp(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092extern asmlinkage void handle_mcheck(void);
93extern asmlinkage void handle_reserved(void);
Leonid Yegoshin5890f702014-07-15 14:09:56 +010094extern void tlb_do_page_fault_0(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Linus Torvalds1da177e2005-04-16 15:20:36 -070096void (*board_be_init)(void);
97int (*board_be_handler)(struct pt_regs *regs, int is_fixup);
Ralf Baechlee01402b2005-07-14 15:57:16 +000098void (*board_nmi_handler_setup)(void);
99void (*board_ejtag_handler_setup)(void);
100void (*board_bind_eic_interrupt)(int irq, int regset);
Kevin Cernekee6fb97ef2011-11-16 01:25:45 +0000101void (*board_ebase_setup)(void);
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000102void(*board_cache_error_setup)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200104static void show_raw_backtrace(unsigned long reg29)
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900105{
Ralf Baechle39b8d522008-04-28 17:14:26 +0100106 unsigned long *sp = (unsigned long *)(reg29 & ~3);
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900107 unsigned long addr;
108
109 printk("Call Trace:");
110#ifdef CONFIG_KALLSYMS
111 printk("\n");
112#endif
Thomas Bogendoerfer10220c82008-05-12 17:58:48 +0200113 while (!kstack_end(sp)) {
114 unsigned long __user *p =
115 (unsigned long __user *)(unsigned long)sp++;
116 if (__get_user(addr, p)) {
117 printk(" (Bad stack address)");
118 break;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100119 }
Thomas Bogendoerfer10220c82008-05-12 17:58:48 +0200120 if (__kernel_text_address(addr))
121 print_ip_sym(addr);
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900122 }
Thomas Bogendoerfer10220c82008-05-12 17:58:48 +0200123 printk("\n");
Atsushi Nemotoe889d782006-07-25 23:51:36 +0900124}
125
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900126#ifdef CONFIG_KALLSYMS
Atsushi Nemoto1df0f0f2006-09-26 23:44:01 +0900127int raw_show_trace;
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900128static int __init set_raw_show_trace(char *str)
129{
130 raw_show_trace = 1;
131 return 1;
132}
133__setup("raw_show_trace", set_raw_show_trace);
Atsushi Nemoto1df0f0f2006-09-26 23:44:01 +0900134#endif
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200135
Ralf Baechleeae23f22007-10-14 23:27:21 +0100136static void show_backtrace(struct task_struct *task, const struct pt_regs *regs)
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900137{
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200138 unsigned long sp = regs->regs[29];
139 unsigned long ra = regs->regs[31];
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900140 unsigned long pc = regs->cp0_epc;
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900141
Vincent Wene909be82012-07-19 09:11:16 +0200142 if (!task)
143 task = current;
144
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900145 if (raw_show_trace || !__kernel_text_address(pc)) {
Franck Bui-Huu87151ae2006-08-03 09:29:17 +0200146 show_raw_backtrace(sp);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900147 return;
148 }
149 printk("Call Trace:\n");
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200150 do {
Franck Bui-Huu87151ae2006-08-03 09:29:17 +0200151 print_ip_sym(pc);
Atsushi Nemoto19246002006-09-29 18:02:51 +0900152 pc = unwind_stack(task, &sp, pc, &ra);
Franck Bui-Huu4d157d52006-08-03 09:29:21 +0200153 } while (pc);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900154 printk("\n");
155}
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/*
158 * This routine abuses get_user()/put_user() to reference pointers
159 * with at least a bit of error checking ...
160 */
Ralf Baechleeae23f22007-10-14 23:27:21 +0100161static void show_stacktrace(struct task_struct *task,
162 const struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
164 const int field = 2 * sizeof(unsigned long);
165 long stackdata;
166 int i;
Atsushi Nemoto5e0373b2007-07-13 23:02:42 +0900167 unsigned long __user *sp = (unsigned long __user *)regs->regs[29];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 printk("Stack :");
170 i = 0;
171 while ((unsigned long) sp & (PAGE_SIZE - 1)) {
172 if (i && ((i % (64 / field)) == 0))
Ralf Baechle70342282013-01-22 12:59:30 +0100173 printk("\n ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 if (i > 39) {
175 printk(" ...");
176 break;
177 }
178
179 if (__get_user(stackdata, sp++)) {
180 printk(" (Bad stack address)");
181 break;
182 }
183
184 printk(" %0*lx", field, stackdata);
185 i++;
186 }
187 printk("\n");
Franck Bui-Huu87151ae2006-08-03 09:29:17 +0200188 show_backtrace(task, regs);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900189}
190
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900191void show_stack(struct task_struct *task, unsigned long *sp)
192{
193 struct pt_regs regs;
194 if (sp) {
195 regs.regs[29] = (unsigned long)sp;
196 regs.regs[31] = 0;
197 regs.cp0_epc = 0;
198 } else {
199 if (task && task != current) {
200 regs.regs[29] = task->thread.reg29;
201 regs.regs[31] = 0;
202 regs.cp0_epc = task->thread.reg31;
Jason Wessel5dd11d52010-05-20 21:04:26 -0500203#ifdef CONFIG_KGDB_KDB
204 } else if (atomic_read(&kgdb_active) != -1 &&
205 kdb_current_regs) {
206 memcpy(&regs, kdb_current_regs, sizeof(regs));
207#endif /* CONFIG_KGDB_KDB */
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900208 } else {
209 prepare_frametrace(&regs);
210 }
211 }
212 show_stacktrace(task, &regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
Atsushi Nemotoe1bb82892007-07-13 23:51:46 +0900215static void show_code(unsigned int __user *pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 long i;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100218 unsigned short __user *pc16 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
220 printk("\nCode:");
221
Ralf Baechle39b8d522008-04-28 17:14:26 +0100222 if ((unsigned long)pc & 1)
223 pc16 = (unsigned short __user *)((unsigned long)pc & ~1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 for(i = -3 ; i < 6 ; i++) {
225 unsigned int insn;
Ralf Baechle39b8d522008-04-28 17:14:26 +0100226 if (pc16 ? __get_user(insn, pc16 + i) : __get_user(insn, pc + i)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 printk(" (Bad address in epc)\n");
228 break;
229 }
Ralf Baechle39b8d522008-04-28 17:14:26 +0100230 printk("%c%0*x%c", (i?' ':'<'), pc16 ? 4 : 8, insn, (i?' ':'>'));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 }
232}
233
Ralf Baechleeae23f22007-10-14 23:27:21 +0100234static void __show_regs(const struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 const int field = 2 * sizeof(unsigned long);
237 unsigned int cause = regs->cp0_cause;
238 int i;
239
Tejun Heoa43cb952013-04-30 15:27:17 -0700240 show_regs_print_info(KERN_DEFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 /*
243 * Saved main processor registers
244 */
245 for (i = 0; i < 32; ) {
246 if ((i % 4) == 0)
247 printk("$%2d :", i);
248 if (i == 0)
249 printk(" %0*lx", field, 0UL);
250 else if (i == 26 || i == 27)
251 printk(" %*s", field, "");
252 else
253 printk(" %0*lx", field, regs->regs[i]);
254
255 i++;
256 if ((i % 4) == 0)
257 printk("\n");
258 }
259
Franck Bui-Huu9693a852007-02-02 17:41:47 +0100260#ifdef CONFIG_CPU_HAS_SMARTMIPS
261 printk("Acx : %0*lx\n", field, regs->acx);
262#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 printk("Hi : %0*lx\n", field, regs->hi);
264 printk("Lo : %0*lx\n", field, regs->lo);
265
266 /*
267 * Saved cp0 registers
268 */
Ralf Baechleb012cff2008-07-15 18:44:33 +0100269 printk("epc : %0*lx %pS\n", field, regs->cp0_epc,
270 (void *) regs->cp0_epc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 printk(" %s\n", print_tainted());
Ralf Baechleb012cff2008-07-15 18:44:33 +0100272 printk("ra : %0*lx %pS\n", field, regs->regs[31],
273 (void *) regs->regs[31]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Ralf Baechle70342282013-01-22 12:59:30 +0100275 printk("Status: %08x ", (uint32_t) regs->cp0_status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Ralf Baechle1990e542013-06-26 17:06:34 +0200277 if (cpu_has_3kex) {
Maciej W. Rozycki3b2396d2005-06-22 20:43:29 +0000278 if (regs->cp0_status & ST0_KUO)
279 printk("KUo ");
280 if (regs->cp0_status & ST0_IEO)
281 printk("IEo ");
282 if (regs->cp0_status & ST0_KUP)
283 printk("KUp ");
284 if (regs->cp0_status & ST0_IEP)
285 printk("IEp ");
286 if (regs->cp0_status & ST0_KUC)
287 printk("KUc ");
288 if (regs->cp0_status & ST0_IEC)
289 printk("IEc ");
Ralf Baechle1990e542013-06-26 17:06:34 +0200290 } else if (cpu_has_4kex) {
Maciej W. Rozycki3b2396d2005-06-22 20:43:29 +0000291 if (regs->cp0_status & ST0_KX)
292 printk("KX ");
293 if (regs->cp0_status & ST0_SX)
294 printk("SX ");
295 if (regs->cp0_status & ST0_UX)
296 printk("UX ");
297 switch (regs->cp0_status & ST0_KSU) {
298 case KSU_USER:
299 printk("USER ");
300 break;
301 case KSU_SUPERVISOR:
302 printk("SUPERVISOR ");
303 break;
304 case KSU_KERNEL:
305 printk("KERNEL ");
306 break;
307 default:
308 printk("BAD_MODE ");
309 break;
310 }
311 if (regs->cp0_status & ST0_ERL)
312 printk("ERL ");
313 if (regs->cp0_status & ST0_EXL)
314 printk("EXL ");
315 if (regs->cp0_status & ST0_IE)
316 printk("IE ");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 printk("\n");
319
320 printk("Cause : %08x\n", cause);
321
322 cause = (cause & CAUSEF_EXCCODE) >> CAUSEB_EXCCODE;
323 if (1 <= cause && cause <= 5)
324 printk("BadVA : %0*lx\n", field, regs->cp0_badvaddr);
325
Ralf Baechle9966db252007-10-11 23:46:17 +0100326 printk("PrId : %08x (%s)\n", read_c0_prid(),
327 cpu_name_string());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Ralf Baechleeae23f22007-10-14 23:27:21 +0100330/*
331 * FIXME: really the generic show_regs should take a const pointer argument.
332 */
333void show_regs(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334{
Ralf Baechleeae23f22007-10-14 23:27:21 +0100335 __show_regs((struct pt_regs *)regs);
336}
337
David Daneyc1bf2072010-08-03 11:22:20 -0700338void show_registers(struct pt_regs *regs)
Ralf Baechleeae23f22007-10-14 23:27:21 +0100339{
Ralf Baechle39b8d522008-04-28 17:14:26 +0100340 const int field = 2 * sizeof(unsigned long);
Leonid Yegoshin83e4da1e2013-10-08 12:39:31 +0100341 mm_segment_t old_fs = get_fs();
Ralf Baechle39b8d522008-04-28 17:14:26 +0100342
Ralf Baechleeae23f22007-10-14 23:27:21 +0100343 __show_regs(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 print_modules();
Ralf Baechle39b8d522008-04-28 17:14:26 +0100345 printk("Process %s (pid: %d, threadinfo=%p, task=%p, tls=%0*lx)\n",
346 current->comm, current->pid, current_thread_info(), current,
347 field, current_thread_info()->tp_value);
348 if (cpu_has_userlocal) {
349 unsigned long tls;
350
351 tls = read_c0_userlocal();
352 if (tls != current_thread_info()->tp_value)
353 printk("*HwTLS: %0*lx\n", field, tls);
354 }
355
Leonid Yegoshin83e4da1e2013-10-08 12:39:31 +0100356 if (!user_mode(regs))
357 /* Necessary for getting the correct stack content */
358 set_fs(KERNEL_DS);
Atsushi Nemotof66686f2006-07-29 23:27:20 +0900359 show_stacktrace(current, regs);
Atsushi Nemotoe1bb82892007-07-13 23:51:46 +0900360 show_code((unsigned int __user *) regs->cp0_epc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 printk("\n");
Leonid Yegoshin83e4da1e2013-10-08 12:39:31 +0100362 set_fs(old_fs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364
David Daney70dc6f02010-08-03 15:44:43 -0700365static int regs_to_trapnr(struct pt_regs *regs)
366{
367 return (regs->cp0_cause >> 2) & 0x1f;
368}
369
Wu Zhangjin4d85f6a2011-07-23 12:41:24 +0000370static DEFINE_RAW_SPINLOCK(die_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
David Daney70dc6f02010-08-03 15:44:43 -0700372void __noreturn die(const char *str, struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
374 static int die_counter;
Yury Polyanskiyce384d82010-04-26 00:53:10 -0400375 int sig = SIGSEGV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Nathan Lynch8742cd22011-09-30 13:49:35 -0500377 oops_enter();
378
Ralf Baechledc73e4c2013-10-09 08:54:15 +0200379 if (notify_die(DIE_OOPS, str, regs, 0, regs_to_trapnr(regs),
380 SIGSEGV) == NOTIFY_STOP)
Ralf Baechle10423c92011-05-13 10:33:28 +0100381 sig = 0;
Jason Wessel5dd11d52010-05-20 21:04:26 -0500382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 console_verbose();
Wu Zhangjin4d85f6a2011-07-23 12:41:24 +0000384 raw_spin_lock_irq(&die_lock);
Ralf Baechle41c594a2006-04-05 09:45:45 +0100385 bust_spinlocks(1);
Yury Polyanskiyce384d82010-04-26 00:53:10 -0400386
Ralf Baechle178086c2005-10-13 17:07:54 +0100387 printk("%s[#%d]:\n", str, ++die_counter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 show_registers(regs);
Rusty Russell373d4d02013-01-21 17:17:39 +1030389 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
Wu Zhangjin4d85f6a2011-07-23 12:41:24 +0000390 raw_spin_unlock_irq(&die_lock);
Maxime Bizond4fd1982006-07-20 18:52:02 +0200391
Nathan Lynch8742cd22011-09-30 13:49:35 -0500392 oops_exit();
393
Maxime Bizond4fd1982006-07-20 18:52:02 +0200394 if (in_interrupt())
395 panic("Fatal exception in interrupt");
396
397 if (panic_on_oops) {
Ralf Baechleab75dc02011-11-17 15:07:31 +0000398 printk(KERN_EMERG "Fatal exception: panic in 5 seconds");
Maxime Bizond4fd1982006-07-20 18:52:02 +0200399 ssleep(5);
400 panic("Fatal exception");
401 }
402
Ralf Baechle7aa1c8f2012-10-11 18:14:58 +0200403 if (regs && kexec_should_crash(current))
404 crash_kexec(regs);
405
Yury Polyanskiyce384d82010-04-26 00:53:10 -0400406 do_exit(sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
Thomas Bogendoerfer05106172008-08-04 19:44:34 +0200409extern struct exception_table_entry __start___dbe_table[];
410extern struct exception_table_entry __stop___dbe_table[];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Ralf Baechleb6dcec92007-02-18 15:57:09 +0000412__asm__(
413" .section __dbe_table, \"a\"\n"
414" .previous \n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416/* Given an address, look for it in the exception tables. */
417static const struct exception_table_entry *search_dbe_tables(unsigned long addr)
418{
419 const struct exception_table_entry *e;
420
421 e = search_extable(__start___dbe_table, __stop___dbe_table - 1, addr);
422 if (!e)
423 e = search_module_dbetables(addr);
424 return e;
425}
426
427asmlinkage void do_be(struct pt_regs *regs)
428{
429 const int field = 2 * sizeof(unsigned long);
430 const struct exception_table_entry *fixup = NULL;
431 int data = regs->cp0_cause & 4;
432 int action = MIPS_BE_FATAL;
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200433 enum ctx_state prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200435 prev_state = exception_enter();
Ralf Baechle70342282013-01-22 12:59:30 +0100436 /* XXX For now. Fixme, this searches the wrong table ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 if (data && !user_mode(regs))
438 fixup = search_dbe_tables(exception_epc(regs));
439
440 if (fixup)
441 action = MIPS_BE_FIXUP;
442
443 if (board_be_handler)
Atsushi Nemoto28fc5822007-07-13 01:49:49 +0900444 action = board_be_handler(regs, fixup != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 switch (action) {
447 case MIPS_BE_DISCARD:
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200448 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 case MIPS_BE_FIXUP:
450 if (fixup) {
451 regs->cp0_epc = fixup->nextinsn;
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200452 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
454 break;
455 default:
456 break;
457 }
458
459 /*
460 * Assume it would be too dangerous to continue ...
461 */
462 printk(KERN_ALERT "%s bus error, epc == %0*lx, ra == %0*lx\n",
463 data ? "Data" : "Instruction",
464 field, regs->cp0_epc, field, regs->regs[31]);
Ralf Baechledc73e4c2013-10-09 08:54:15 +0200465 if (notify_die(DIE_OOPS, "bus error", regs, 0, regs_to_trapnr(regs),
466 SIGBUS) == NOTIFY_STOP)
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200467 goto out;
Jason Wessel88547002008-07-29 15:58:53 -0500468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 die_if_kernel("Oops", regs);
470 force_sig(SIGBUS, current);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200471
472out:
473 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474}
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476/*
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100477 * ll/sc, rdhwr, sync emulation
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 */
479
480#define OPCODE 0xfc000000
481#define BASE 0x03e00000
482#define RT 0x001f0000
483#define OFFSET 0x0000ffff
484#define LL 0xc0000000
485#define SC 0xe0000000
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100486#define SPEC0 0x00000000
Ralf Baechle3c370262005-04-13 17:43:59 +0000487#define SPEC3 0x7c000000
488#define RD 0x0000f800
489#define FUNC 0x0000003f
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100490#define SYNC 0x0000000f
Ralf Baechle3c370262005-04-13 17:43:59 +0000491#define RDHWR 0x0000003b
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500493/* microMIPS definitions */
494#define MM_POOL32A_FUNC 0xfc00ffff
495#define MM_RDHWR 0x00006b3c
496#define MM_RS 0x001f0000
497#define MM_RT 0x03e00000
498
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499/*
500 * The ll_bit is cleared by r*_switch.S
501 */
502
Ralf Baechlef1e39a42009-09-17 02:25:05 +0200503unsigned int ll_bit;
504struct task_struct *ll_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100506static inline int simulate_ll(struct pt_regs *regs, unsigned int opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000508 unsigned long value, __user *vaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 /*
512 * analyse the ll instruction that just caused a ri exception
513 * and put the referenced address to addr.
514 */
515
516 /* sign extend offset */
517 offset = opcode & OFFSET;
518 offset <<= 16;
519 offset >>= 16;
520
Ralf Baechlefe00f942005-03-01 19:22:29 +0000521 vaddr = (unsigned long __user *)
Steven J. Hillb9688312013-01-12 23:29:27 +0000522 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100524 if ((unsigned long)vaddr & 3)
525 return SIGBUS;
526 if (get_user(value, vaddr))
527 return SIGSEGV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 preempt_disable();
530
531 if (ll_task == NULL || ll_task == current) {
532 ll_bit = 1;
533 } else {
534 ll_bit = 0;
535 }
536 ll_task = current;
537
538 preempt_enable();
539
540 regs->regs[(opcode & RT) >> 16] = value;
541
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100542 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100545static inline int simulate_sc(struct pt_regs *regs, unsigned int opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Ralf Baechlefe00f942005-03-01 19:22:29 +0000547 unsigned long __user *vaddr;
548 unsigned long reg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 /*
552 * analyse the sc instruction that just caused a ri exception
553 * and put the referenced address to addr.
554 */
555
556 /* sign extend offset */
557 offset = opcode & OFFSET;
558 offset <<= 16;
559 offset >>= 16;
560
Ralf Baechlefe00f942005-03-01 19:22:29 +0000561 vaddr = (unsigned long __user *)
Steven J. Hillb9688312013-01-12 23:29:27 +0000562 ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 reg = (opcode & RT) >> 16;
564
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100565 if ((unsigned long)vaddr & 3)
566 return SIGBUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 preempt_disable();
569
570 if (ll_bit == 0 || ll_task != current) {
571 regs->regs[reg] = 0;
572 preempt_enable();
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100573 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 }
575
576 preempt_enable();
577
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100578 if (put_user(regs->regs[reg], vaddr))
579 return SIGSEGV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 regs->regs[reg] = 1;
582
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100583 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584}
585
586/*
587 * ll uses the opcode of lwc0 and sc uses the opcode of swc0. That is both
588 * opcodes are supposed to result in coprocessor unusable exceptions if
589 * executed on ll/sc-less processors. That's the theory. In practice a
590 * few processors such as NEC's VR4100 throw reserved instruction exceptions
591 * instead, so we're doing the emulation thing in both exception handlers.
592 */
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100593static int simulate_llsc(struct pt_regs *regs, unsigned int opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594{
Deng-Cheng Zhu7f788d22010-10-12 19:37:21 +0800595 if ((opcode & OPCODE) == LL) {
596 perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200597 1, regs, 0);
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100598 return simulate_ll(regs, opcode);
Deng-Cheng Zhu7f788d22010-10-12 19:37:21 +0800599 }
600 if ((opcode & OPCODE) == SC) {
601 perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200602 1, regs, 0);
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100603 return simulate_sc(regs, opcode);
Deng-Cheng Zhu7f788d22010-10-12 19:37:21 +0800604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100606 return -1; /* Must be something else ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607}
608
Ralf Baechle3c370262005-04-13 17:43:59 +0000609/*
610 * Simulate trapping 'rdhwr' instructions to provide user accessible
Chris Dearman1f5826b2006-05-08 18:02:16 +0100611 * registers not implemented in hardware.
Ralf Baechle3c370262005-04-13 17:43:59 +0000612 */
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500613static int simulate_rdhwr(struct pt_regs *regs, int rd, int rt)
Ralf Baechle3c370262005-04-13 17:43:59 +0000614{
Al Virodc8f6022006-01-12 01:06:07 -0800615 struct thread_info *ti = task_thread_info(current);
Ralf Baechle3c370262005-04-13 17:43:59 +0000616
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500617 perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS,
618 1, regs, 0);
619 switch (rd) {
620 case 0: /* CPU number */
621 regs->regs[rt] = smp_processor_id();
622 return 0;
623 case 1: /* SYNCI length */
624 regs->regs[rt] = min(current_cpu_data.dcache.linesz,
625 current_cpu_data.icache.linesz);
626 return 0;
627 case 2: /* Read count register */
628 regs->regs[rt] = read_c0_count();
629 return 0;
630 case 3: /* Count register resolution */
Ralf Baechle69f24d12013-09-17 10:25:47 +0200631 switch (current_cpu_type()) {
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500632 case CPU_20KC:
633 case CPU_25KF:
634 regs->regs[rt] = 1;
635 break;
636 default:
637 regs->regs[rt] = 2;
638 }
639 return 0;
640 case 29:
641 regs->regs[rt] = ti->tp_value;
642 return 0;
643 default:
644 return -1;
645 }
646}
647
648static int simulate_rdhwr_normal(struct pt_regs *regs, unsigned int opcode)
649{
Ralf Baechle3c370262005-04-13 17:43:59 +0000650 if ((opcode & OPCODE) == SPEC3 && (opcode & FUNC) == RDHWR) {
651 int rd = (opcode & RD) >> 11;
652 int rt = (opcode & RT) >> 16;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500653
654 simulate_rdhwr(regs, rd, rt);
655 return 0;
656 }
657
658 /* Not ours. */
659 return -1;
660}
661
662static int simulate_rdhwr_mm(struct pt_regs *regs, unsigned short opcode)
663{
664 if ((opcode & MM_POOL32A_FUNC) == MM_RDHWR) {
665 int rd = (opcode & MM_RS) >> 16;
666 int rt = (opcode & MM_RT) >> 21;
667 simulate_rdhwr(regs, rd, rt);
668 return 0;
Ralf Baechle3c370262005-04-13 17:43:59 +0000669 }
670
Daniel Jacobowitz56ebd512005-11-26 22:34:41 -0500671 /* Not ours. */
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100672 return -1;
673}
Ralf Baechlee5679882006-11-30 01:14:47 +0000674
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100675static int simulate_sync(struct pt_regs *regs, unsigned int opcode)
676{
Deng-Cheng Zhu7f788d22010-10-12 19:37:21 +0800677 if ((opcode & OPCODE) == SPEC0 && (opcode & FUNC) == SYNC) {
678 perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS,
Peter Zijlstraa8b0ca12011-06-27 14:41:57 +0200679 1, regs, 0);
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100680 return 0;
Deng-Cheng Zhu7f788d22010-10-12 19:37:21 +0800681 }
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +0100682
683 return -1; /* Must be something else ... */
Ralf Baechle3c370262005-04-13 17:43:59 +0000684}
685
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686asmlinkage void do_ov(struct pt_regs *regs)
687{
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200688 enum ctx_state prev_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 siginfo_t info;
690
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200691 prev_state = exception_enter();
Ralf Baechle36ccf1c2006-02-14 21:04:54 +0000692 die_if_kernel("Integer overflow", regs);
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 info.si_code = FPE_INTOVF;
695 info.si_signo = SIGFPE;
696 info.si_errno = 0;
Ralf Baechlefe00f942005-03-01 19:22:29 +0000697 info.si_addr = (void __user *) regs->cp0_epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 force_sig_info(SIGFPE, &info, current);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200699 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700}
701
Leonid Yegoshin102cedc2013-03-25 12:09:02 -0500702int process_fpemu_return(int sig, void __user *fault_addr)
David Daney515b0292010-10-21 16:32:26 -0700703{
704 if (sig == SIGSEGV || sig == SIGBUS) {
705 struct siginfo si = {0};
706 si.si_addr = fault_addr;
707 si.si_signo = sig;
708 if (sig == SIGSEGV) {
Davidlohr Buesof7a89f12014-04-19 19:26:28 -0700709 down_read(&current->mm->mmap_sem);
David Daney515b0292010-10-21 16:32:26 -0700710 if (find_vma(current->mm, (unsigned long)fault_addr))
711 si.si_code = SEGV_ACCERR;
712 else
713 si.si_code = SEGV_MAPERR;
Davidlohr Buesof7a89f12014-04-19 19:26:28 -0700714 up_read(&current->mm->mmap_sem);
David Daney515b0292010-10-21 16:32:26 -0700715 } else {
716 si.si_code = BUS_ADRERR;
717 }
718 force_sig_info(sig, &si, current);
719 return 1;
720 } else if (sig) {
721 force_sig(sig, current);
722 return 1;
723 } else {
724 return 0;
725 }
726}
727
Paul Burton4227a2d2014-09-11 08:30:20 +0100728static int simulate_fp(struct pt_regs *regs, unsigned int opcode,
729 unsigned long old_epc, unsigned long old_ra)
730{
731 union mips_instruction inst = { .word = opcode };
732 void __user *fault_addr = NULL;
733 int sig;
734
735 /* If it's obviously not an FP instruction, skip it */
736 switch (inst.i_format.opcode) {
737 case cop1_op:
738 case cop1x_op:
739 case lwc1_op:
740 case ldc1_op:
741 case swc1_op:
742 case sdc1_op:
743 break;
744
745 default:
746 return -1;
747 }
748
749 /*
750 * do_ri skipped over the instruction via compute_return_epc, undo
751 * that for the FPU emulator.
752 */
753 regs->cp0_epc = old_epc;
754 regs->regs[31] = old_ra;
755
756 /* Save the FP context to struct thread_struct */
757 lose_fpu(1);
758
759 /* Run the emulator */
760 sig = fpu_emulator_cop1Handler(regs, &current->thread.fpu, 1,
761 &fault_addr);
762
763 /* If something went wrong, signal */
764 process_fpemu_return(sig, fault_addr);
765
766 /* Restore the hardware register state */
767 own_fpu(1);
768
769 return 0;
770}
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772/*
773 * XXX Delayed fp exceptions when doing a lazy ctx switch XXX
774 */
775asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31)
776{
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200777 enum ctx_state prev_state;
David Daney515b0292010-10-21 16:32:26 -0700778 siginfo_t info = {0};
Thiemo Seufer948a34c2007-08-22 01:42:04 +0100779
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200780 prev_state = exception_enter();
Ralf Baechledc73e4c2013-10-09 08:54:15 +0200781 if (notify_die(DIE_FP, "FP exception", regs, 0, regs_to_trapnr(regs),
782 SIGFPE) == NOTIFY_STOP)
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200783 goto out;
Chris Dearman57725f92006-06-30 23:35:28 +0100784 die_if_kernel("FP exception in kernel code", regs);
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 if (fcr31 & FPU_CSR_UNI_X) {
787 int sig;
David Daney515b0292010-10-21 16:32:26 -0700788 void __user *fault_addr = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /*
Ralf Baechlea3dddd52006-03-11 08:18:41 +0000791 * Unimplemented operation exception. If we've got the full
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 * software emulator on-board, let's use it...
793 *
794 * Force FPU to dump state into task/thread context. We're
795 * moving a lot of data here for what is probably a single
796 * instruction, but the alternative is to pre-decode the FP
797 * register operands before invoking the emulator, which seems
798 * a bit extreme for what should be an infrequent event.
799 */
Ralf Baechlecd21dfc2005-04-28 13:39:10 +0000800 /* Ensure 'resume' not overwrite saved fp context again. */
Atsushi Nemoto53dc8022007-03-10 01:07:45 +0900801 lose_fpu(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 /* Run the emulator */
David Daney515b0292010-10-21 16:32:26 -0700804 sig = fpu_emulator_cop1Handler(regs, &current->thread.fpu, 1,
805 &fault_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 /*
808 * We can't allow the emulated instruction to leave any of
809 * the cause bit set in $fcr31.
810 */
Atsushi Nemotoeae89072006-05-16 01:26:03 +0900811 current->thread.fpu.fcr31 &= ~FPU_CSR_ALL_X;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813 /* Restore the hardware register state */
Ralf Baechle70342282013-01-22 12:59:30 +0100814 own_fpu(1); /* Using the FPU again. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 /* If something went wrong, signal */
David Daney515b0292010-10-21 16:32:26 -0700817 process_fpemu_return(sig, fault_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200819 goto out;
Thiemo Seufer948a34c2007-08-22 01:42:04 +0100820 } else if (fcr31 & FPU_CSR_INV_X)
821 info.si_code = FPE_FLTINV;
822 else if (fcr31 & FPU_CSR_DIV_X)
823 info.si_code = FPE_FLTDIV;
824 else if (fcr31 & FPU_CSR_OVF_X)
825 info.si_code = FPE_FLTOVF;
826 else if (fcr31 & FPU_CSR_UDF_X)
827 info.si_code = FPE_FLTUND;
828 else if (fcr31 & FPU_CSR_INE_X)
829 info.si_code = FPE_FLTRES;
830 else
831 info.si_code = __SI_FAULT;
832 info.si_signo = SIGFPE;
833 info.si_errno = 0;
834 info.si_addr = (void __user *) regs->cp0_epc;
835 force_sig_info(SIGFPE, &info, current);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200836
837out:
838 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839}
840
Leonid Yegoshinb0a668f2014-12-03 15:47:03 +0000841void do_trap_or_bp(struct pt_regs *regs, unsigned int code,
Ralf Baechledf270052008-04-20 16:28:54 +0100842 const char *str)
843{
844 siginfo_t info;
845 char b[40];
846
Jason Wessel5dd11d52010-05-20 21:04:26 -0500847#ifdef CONFIG_KGDB_LOW_LEVEL_TRAP
David Daney70dc6f02010-08-03 15:44:43 -0700848 if (kgdb_ll_trap(DIE_TRAP, str, regs, code, regs_to_trapnr(regs), SIGTRAP) == NOTIFY_STOP)
Jason Wessel5dd11d52010-05-20 21:04:26 -0500849 return;
850#endif /* CONFIG_KGDB_LOW_LEVEL_TRAP */
851
Ralf Baechledc73e4c2013-10-09 08:54:15 +0200852 if (notify_die(DIE_TRAP, str, regs, code, regs_to_trapnr(regs),
853 SIGTRAP) == NOTIFY_STOP)
Jason Wessel88547002008-07-29 15:58:53 -0500854 return;
855
Ralf Baechledf270052008-04-20 16:28:54 +0100856 /*
857 * A short test says that IRIX 5.3 sends SIGTRAP for all trap
858 * insns, even for trap and break codes that indicate arithmetic
859 * failures. Weird ...
860 * But should we continue the brokenness??? --macro
861 */
862 switch (code) {
863 case BRK_OVERFLOW:
864 case BRK_DIVZERO:
865 scnprintf(b, sizeof(b), "%s instruction in kernel code", str);
866 die_if_kernel(b, regs);
867 if (code == BRK_DIVZERO)
868 info.si_code = FPE_INTDIV;
869 else
870 info.si_code = FPE_INTOVF;
871 info.si_signo = SIGFPE;
872 info.si_errno = 0;
873 info.si_addr = (void __user *) regs->cp0_epc;
874 force_sig_info(SIGFPE, &info, current);
875 break;
876 case BRK_BUG:
877 die_if_kernel("Kernel bug detected", regs);
878 force_sig(SIGTRAP, current);
879 break;
Ralf Baechleba3049e2008-10-28 17:38:42 +0000880 case BRK_MEMU:
881 /*
Maciej W. Rozycki1f443772015-04-03 23:24:14 +0100882 * This breakpoint code is used by the FPU emulator to retake
883 * control of the CPU after executing the instruction from the
884 * delay slot of an emulated branch.
Ralf Baechleba3049e2008-10-28 17:38:42 +0000885 *
886 * Terminate if exception was recognized as a delay slot return
887 * otherwise handle as normal.
888 */
889 if (do_dsemulret(regs))
890 return;
891
892 die_if_kernel("Math emu break/trap", regs);
893 force_sig(SIGTRAP, current);
894 break;
Ralf Baechledf270052008-04-20 16:28:54 +0100895 default:
896 scnprintf(b, sizeof(b), "%s instruction in kernel code", str);
897 die_if_kernel(b, regs);
898 force_sig(SIGTRAP, current);
899 }
900}
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902asmlinkage void do_bp(struct pt_regs *regs)
903{
Maciej W. Rozyckif6a31da2015-04-03 23:26:27 +0100904 unsigned long epc = msk_isa16_mode(exception_epc(regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 unsigned int opcode, bcode;
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200906 enum ctx_state prev_state;
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)) {
Maciej W. Rozyckif6a31da2015-04-03 23:26:27 +0100915 u16 instr[2];
916
917 if (__get_user(instr[0], (u16 __user *)epc))
918 goto out_sigsegv;
919
920 if (!cpu_has_mmips) {
921 /* MIPS16e mode */
922 bcode = (instr[0] >> 5) & 0x3f;
923 } else if (mm_insn_16bit(instr[0])) {
924 /* 16-bit microMIPS BREAK */
925 bcode = instr[0] & 0xf;
926 } else {
927 /* 32-bit microMIPS BREAK */
928 if (__get_user(instr[1], (u16 __user *)(epc + 2)))
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500929 goto out_sigsegv;
Markos Chandrasb08a9c92013-12-04 16:20:08 +0000930 opcode = (instr[0] << 16) | instr[1];
Maciej W. Rozyckif6a31da2015-04-03 23:26:27 +0100931 bcode = (opcode >> 6) & ((1 << 20) - 1);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500932 }
933 } else {
Maciej W. Rozyckif6a31da2015-04-03 23:26:27 +0100934 if (__get_user(opcode, (unsigned int __user *)epc))
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500935 goto out_sigsegv;
Maciej W. Rozyckif6a31da2015-04-03 23:26:27 +0100936 bcode = (opcode >> 6) & ((1 << 20) - 1);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938
939 /*
940 * There is the ancient bug in the MIPS assemblers that the break
941 * code starts left to bit 16 instead to bit 6 in the opcode.
942 * Gas is bug-compatible, but not always, grrr...
943 * We handle both cases with a simple heuristics. --macro
944 */
Ralf Baechledf270052008-04-20 16:28:54 +0100945 if (bcode >= (1 << 10))
Maciej W. Rozyckic9875032015-04-03 23:26:32 +0100946 bcode = ((bcode & ((1 << 10) - 1)) << 10) | (bcode >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947
David Daneyc1bf2072010-08-03 11:22:20 -0700948 /*
949 * notify the kprobe handlers, if instruction is likely to
950 * pertain to them.
951 */
952 switch (bcode) {
953 case BRK_KPROBE_BP:
Ralf Baechledc73e4c2013-10-09 08:54:15 +0200954 if (notify_die(DIE_BREAK, "debug", regs, bcode,
955 regs_to_trapnr(regs), SIGTRAP) == NOTIFY_STOP)
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200956 goto out;
David Daneyc1bf2072010-08-03 11:22:20 -0700957 else
958 break;
959 case BRK_KPROBE_SSTEPBP:
Ralf Baechledc73e4c2013-10-09 08:54:15 +0200960 if (notify_die(DIE_SSTEPBP, "single_step", regs, bcode,
961 regs_to_trapnr(regs), SIGTRAP) == NOTIFY_STOP)
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200962 goto out;
David Daneyc1bf2072010-08-03 11:22:20 -0700963 else
964 break;
965 default:
966 break;
967 }
968
Ralf Baechledf270052008-04-20 16:28:54 +0100969 do_trap_or_bp(regs, bcode, "Break");
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200970
971out:
Leonid Yegoshin078dde52013-12-04 16:39:34 +0000972 set_fs(seg);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200973 exception_exit(prev_state);
Atsushi Nemoto90fccb12007-02-06 16:02:21 +0900974 return;
Ralf Baechlee5679882006-11-30 01:14:47 +0000975
976out_sigsegv:
977 force_sig(SIGSEGV, current);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200978 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979}
980
981asmlinkage void do_tr(struct pt_regs *regs)
982{
Maciej W. Rozyckia9a6e7a2013-05-23 14:31:23 +0000983 u32 opcode, tcode = 0;
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200984 enum ctx_state prev_state;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500985 u16 instr[2];
Leonid Yegoshin078dde52013-12-04 16:39:34 +0000986 mm_segment_t seg;
Maciej W. Rozyckia9a6e7a2013-05-23 14:31:23 +0000987 unsigned long epc = msk_isa16_mode(exception_epc(regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Leonid Yegoshin078dde52013-12-04 16:39:34 +0000989 seg = get_fs();
990 if (!user_mode(regs))
991 set_fs(get_ds());
992
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +0200993 prev_state = exception_enter();
Maciej W. Rozyckia9a6e7a2013-05-23 14:31:23 +0000994 if (get_isa16_mode(regs->cp0_epc)) {
995 if (__get_user(instr[0], (u16 __user *)(epc + 0)) ||
996 __get_user(instr[1], (u16 __user *)(epc + 2)))
Steven J. Hill2a0b24f2013-03-25 12:15:55 -0500997 goto out_sigsegv;
Maciej W. Rozyckia9a6e7a2013-05-23 14:31:23 +0000998 opcode = (instr[0] << 16) | instr[1];
999 /* Immediate versions don't provide a code. */
1000 if (!(opcode & OPCODE))
1001 tcode = (opcode >> 12) & ((1 << 4) - 1);
1002 } else {
1003 if (__get_user(opcode, (u32 __user *)epc))
1004 goto out_sigsegv;
1005 /* Immediate versions don't provide a code. */
1006 if (!(opcode & OPCODE))
1007 tcode = (opcode >> 6) & ((1 << 10) - 1);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001008 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
Ralf Baechledf270052008-04-20 16:28:54 +01001010 do_trap_or_bp(regs, tcode, "Trap");
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001011
1012out:
Leonid Yegoshin078dde52013-12-04 16:39:34 +00001013 set_fs(seg);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001014 exception_exit(prev_state);
Atsushi Nemoto90fccb12007-02-06 16:02:21 +09001015 return;
Ralf Baechlee5679882006-11-30 01:14:47 +00001016
1017out_sigsegv:
1018 force_sig(SIGSEGV, current);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001019 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020}
1021
1022asmlinkage void do_ri(struct pt_regs *regs)
1023{
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001024 unsigned int __user *epc = (unsigned int __user *)exception_epc(regs);
1025 unsigned long old_epc = regs->cp0_epc;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001026 unsigned long old31 = regs->regs[31];
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001027 enum ctx_state prev_state;
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001028 unsigned int opcode = 0;
1029 int status = -1;
1030
Leonid Yegoshinb0a668f2014-12-03 15:47:03 +00001031 /*
1032 * Avoid any kernel code. Just emulate the R2 instruction
1033 * as quickly as possible.
1034 */
1035 if (mipsr2_emulation && cpu_has_mips_r6 &&
Maciej W. Rozycki4a7c2372015-04-03 23:24:51 +01001036 likely(user_mode(regs)) &&
1037 likely(get_user(opcode, epc) >= 0)) {
1038 status = mipsr2_decoder(regs, opcode);
1039 switch (status) {
1040 case 0:
1041 case SIGEMT:
1042 task_thread_info(current)->r2_emul_return = 1;
1043 return;
1044 case SIGILL:
1045 goto no_r2_instr;
1046 default:
1047 process_fpemu_return(status,
1048 &current->thread.cp0_baduaddr);
1049 task_thread_info(current)->r2_emul_return = 1;
1050 return;
Leonid Yegoshinb0a668f2014-12-03 15:47:03 +00001051 }
1052 }
1053
1054no_r2_instr:
1055
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001056 prev_state = exception_enter();
Leonid Yegoshinb0a668f2014-12-03 15:47:03 +00001057
Ralf Baechledc73e4c2013-10-09 08:54:15 +02001058 if (notify_die(DIE_RI, "RI Fault", regs, 0, regs_to_trapnr(regs),
1059 SIGILL) == NOTIFY_STOP)
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001060 goto out;
Jason Wessel88547002008-07-29 15:58:53 -05001061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 die_if_kernel("Reserved instruction in kernel code", regs);
1063
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001064 if (unlikely(compute_return_epc(regs) < 0))
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001065 goto out;
Ralf Baechle3c370262005-04-13 17:43:59 +00001066
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001067 if (get_isa16_mode(regs->cp0_epc)) {
1068 unsigned short mmop[2] = { 0 };
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001069
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001070 if (unlikely(get_user(mmop[0], epc) < 0))
1071 status = SIGSEGV;
1072 if (unlikely(get_user(mmop[1], epc) < 0))
1073 status = SIGSEGV;
1074 opcode = (mmop[0] << 16) | mmop[1];
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001075
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001076 if (status < 0)
1077 status = simulate_rdhwr_mm(regs, opcode);
1078 } else {
1079 if (unlikely(get_user(opcode, epc) < 0))
1080 status = SIGSEGV;
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001081
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001082 if (!cpu_has_llsc && status < 0)
1083 status = simulate_llsc(regs, opcode);
1084
1085 if (status < 0)
1086 status = simulate_rdhwr_normal(regs, opcode);
1087
1088 if (status < 0)
1089 status = simulate_sync(regs, opcode);
Paul Burton4227a2d2014-09-11 08:30:20 +01001090
1091 if (status < 0)
1092 status = simulate_fp(regs, opcode, old_epc, old31);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001093 }
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001094
1095 if (status < 0)
1096 status = SIGILL;
1097
1098 if (unlikely(status > 0)) {
1099 regs->cp0_epc = old_epc; /* Undo skip-over. */
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001100 regs->regs[31] = old31;
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001101 force_sig(status, current);
1102 }
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001103
1104out:
1105 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
1107
Ralf Baechled223a862007-07-10 17:33:02 +01001108/*
1109 * MIPS MT processors may have fewer FPU contexts than CPU threads. If we've
1110 * emulated more than some threshold number of instructions, force migration to
1111 * a "CPU" that has FP support.
1112 */
1113static void mt_ase_fp_affinity(void)
1114{
1115#ifdef CONFIG_MIPS_MT_FPAFF
1116 if (mt_fpemul_threshold > 0 &&
1117 ((current->thread.emulated_fp++ > mt_fpemul_threshold))) {
1118 /*
1119 * If there's no FPU present, or if the application has already
1120 * restricted the allowed set to exclude any CPUs with FPUs,
1121 * we'll skip the procedure.
1122 */
1123 if (cpus_intersects(current->cpus_allowed, mt_fpu_cpumask)) {
1124 cpumask_t tmask;
1125
Kevin D. Kissell9cc12362008-09-09 21:33:36 +02001126 current->thread.user_cpus_allowed
1127 = current->cpus_allowed;
1128 cpus_and(tmask, current->cpus_allowed,
1129 mt_fpu_cpumask);
Julia Lawalled1bbde2010-03-26 23:03:07 +01001130 set_cpus_allowed_ptr(current, &tmask);
Ralf Baechle293c5bd2007-07-25 16:19:33 +01001131 set_thread_flag(TIF_FPUBOUND);
Ralf Baechled223a862007-07-10 17:33:02 +01001132 }
1133 }
1134#endif /* CONFIG_MIPS_MT_FPAFF */
1135}
1136
Ralf Baechle69f3a7d2009-11-24 01:24:58 +00001137/*
1138 * No lock; only written during early bootup by CPU 0.
1139 */
1140static RAW_NOTIFIER_HEAD(cu2_chain);
1141
1142int __ref register_cu2_notifier(struct notifier_block *nb)
1143{
1144 return raw_notifier_chain_register(&cu2_chain, nb);
1145}
1146
1147int cu2_notifier_call_chain(unsigned long val, void *v)
1148{
1149 return raw_notifier_call_chain(&cu2_chain, val, v);
1150}
1151
1152static int default_cu2_call(struct notifier_block *nfb, unsigned long action,
Ralf Baechle70342282013-01-22 12:59:30 +01001153 void *data)
Ralf Baechle69f3a7d2009-11-24 01:24:58 +00001154{
1155 struct pt_regs *regs = data;
1156
Jayachandran C83bee792013-06-10 06:30:01 +00001157 die_if_kernel("COP2: Unhandled kernel unaligned access or invalid "
Ralf Baechle69f3a7d2009-11-24 01:24:58 +00001158 "instruction", regs);
Jayachandran C83bee792013-06-10 06:30:01 +00001159 force_sig(SIGILL, current);
Ralf Baechle69f3a7d2009-11-24 01:24:58 +00001160
1161 return NOTIFY_OK;
1162}
1163
Paul Burton97915542015-01-08 12:17:37 +00001164static int wait_on_fp_mode_switch(atomic_t *p)
1165{
1166 /*
1167 * The FP mode for this task is currently being switched. That may
1168 * involve modifications to the format of this tasks FP context which
1169 * make it unsafe to proceed with execution for the moment. Instead,
1170 * schedule some other task.
1171 */
1172 schedule();
1173 return 0;
1174}
1175
Paul Burton1db1af82014-01-27 15:23:11 +00001176static int enable_restore_fp_context(int msa)
1177{
Paul Burtonc9017752014-07-30 08:53:20 +01001178 int err, was_fpu_owner, prior_msa;
Paul Burton1db1af82014-01-27 15:23:11 +00001179
Paul Burton97915542015-01-08 12:17:37 +00001180 /*
1181 * If an FP mode switch is currently underway, wait for it to
1182 * complete before proceeding.
1183 */
1184 wait_on_atomic_t(&current->mm->context.fp_mode_switching,
1185 wait_on_fp_mode_switch, TASK_KILLABLE);
1186
Paul Burton1db1af82014-01-27 15:23:11 +00001187 if (!used_math()) {
1188 /* First time FP context user. */
Paul Burton762a1f42014-07-11 16:44:35 +01001189 preempt_disable();
Paul Burton1db1af82014-01-27 15:23:11 +00001190 err = init_fpu();
Paul Burtonc9017752014-07-30 08:53:20 +01001191 if (msa && !err) {
Paul Burton1db1af82014-01-27 15:23:11 +00001192 enable_msa();
Paul Burtonc9017752014-07-30 08:53:20 +01001193 _init_msa_upper();
Paul Burton732c0c32014-07-31 14:53:16 +01001194 set_thread_flag(TIF_USEDMSA);
1195 set_thread_flag(TIF_MSA_CTX_LIVE);
Paul Burtonc9017752014-07-30 08:53:20 +01001196 }
Paul Burton762a1f42014-07-11 16:44:35 +01001197 preempt_enable();
Paul Burton1db1af82014-01-27 15:23:11 +00001198 if (!err)
1199 set_used_math();
1200 return err;
1201 }
1202
1203 /*
1204 * This task has formerly used the FP context.
1205 *
1206 * If this thread has no live MSA vector context then we can simply
1207 * restore the scalar FP context. If it has live MSA vector context
1208 * (that is, it has or may have used MSA since last performing a
1209 * function call) then we'll need to restore the vector context. This
1210 * applies even if we're currently only executing a scalar FP
1211 * instruction. This is because if we were to later execute an MSA
1212 * instruction then we'd either have to:
1213 *
1214 * - Restore the vector context & clobber any registers modified by
1215 * scalar FP instructions between now & then.
1216 *
1217 * or
1218 *
1219 * - Not restore the vector context & lose the most significant bits
1220 * of all vector registers.
1221 *
1222 * Neither of those options is acceptable. We cannot restore the least
1223 * significant bits of the registers now & only restore the most
1224 * significant bits later because the most significant bits of any
1225 * vector registers whose aliased FP register is modified now will have
1226 * been zeroed. We'd have no way to know that when restoring the vector
1227 * context & thus may load an outdated value for the most significant
1228 * bits of a vector register.
1229 */
1230 if (!msa && !thread_msa_context_live())
1231 return own_fpu(1);
1232
1233 /*
1234 * This task is using or has previously used MSA. Thus we require
1235 * that Status.FR == 1.
1236 */
Paul Burton762a1f42014-07-11 16:44:35 +01001237 preempt_disable();
Paul Burton1db1af82014-01-27 15:23:11 +00001238 was_fpu_owner = is_fpu_owner();
Paul Burton762a1f42014-07-11 16:44:35 +01001239 err = own_fpu_inatomic(0);
Paul Burton1db1af82014-01-27 15:23:11 +00001240 if (err)
Paul Burton762a1f42014-07-11 16:44:35 +01001241 goto out;
Paul Burton1db1af82014-01-27 15:23:11 +00001242
1243 enable_msa();
1244 write_msa_csr(current->thread.fpu.msacsr);
1245 set_thread_flag(TIF_USEDMSA);
1246
1247 /*
1248 * If this is the first time that the task is using MSA and it has
1249 * previously used scalar FP in this time slice then we already nave
Paul Burtonc9017752014-07-30 08:53:20 +01001250 * FP context which we shouldn't clobber. We do however need to clear
1251 * the upper 64b of each vector register so that this task has no
1252 * opportunity to see data left behind by another.
Paul Burton1db1af82014-01-27 15:23:11 +00001253 */
Paul Burtonc9017752014-07-30 08:53:20 +01001254 prior_msa = test_and_set_thread_flag(TIF_MSA_CTX_LIVE);
1255 if (!prior_msa && was_fpu_owner) {
1256 _init_msa_upper();
Paul Burton762a1f42014-07-11 16:44:35 +01001257
1258 goto out;
Paul Burtonc9017752014-07-30 08:53:20 +01001259 }
Paul Burton1db1af82014-01-27 15:23:11 +00001260
Paul Burtonc9017752014-07-30 08:53:20 +01001261 if (!prior_msa) {
1262 /*
1263 * Restore the least significant 64b of each vector register
1264 * from the existing scalar FP context.
1265 */
1266 _restore_fp(current);
Paul Burtonb8340672014-07-11 16:44:29 +01001267
Paul Burtonc9017752014-07-30 08:53:20 +01001268 /*
1269 * The task has not formerly used MSA, so clear the upper 64b
1270 * of each vector register such that it cannot see data left
1271 * behind by another task.
1272 */
1273 _init_msa_upper();
1274 } else {
1275 /* We need to restore the vector context. */
1276 restore_msa(current);
Paul Burtonb8340672014-07-11 16:44:29 +01001277
Paul Burtonc9017752014-07-30 08:53:20 +01001278 /* Restore the scalar FP control & status register */
1279 if (!was_fpu_owner)
James Hogand76e9b92015-01-30 15:40:20 +00001280 write_32bit_cp1_register(CP1_STATUS,
1281 current->thread.fpu.fcr31);
Paul Burtonc9017752014-07-30 08:53:20 +01001282 }
Paul Burton762a1f42014-07-11 16:44:35 +01001283
1284out:
1285 preempt_enable();
1286
Paul Burton1db1af82014-01-27 15:23:11 +00001287 return 0;
1288}
1289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290asmlinkage void do_cpu(struct pt_regs *regs)
1291{
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001292 enum ctx_state prev_state;
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001293 unsigned int __user *epc;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001294 unsigned long old_epc, old31;
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001295 unsigned int opcode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 unsigned int cpid;
Paul Burton597ce172013-11-22 13:12:07 +00001297 int status, err;
David Daneyf9bb4cf2008-12-11 15:33:23 -08001298 unsigned long __maybe_unused flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001300 prev_state = exception_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 cpid = (regs->cp0_cause >> CAUSEB_CE) & 3;
1302
Jayachandran C83bee792013-06-10 06:30:01 +00001303 if (cpid != 2)
1304 die_if_kernel("do_cpu invoked from kernel context!", regs);
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 switch (cpid) {
1307 case 0:
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001308 epc = (unsigned int __user *)exception_epc(regs);
1309 old_epc = regs->cp0_epc;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001310 old31 = regs->regs[31];
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001311 opcode = 0;
1312 status = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001314 if (unlikely(compute_return_epc(regs) < 0))
Maciej W. Rozycki27e28e82015-04-03 23:25:08 +01001315 break;
Ralf Baechle3c370262005-04-13 17:43:59 +00001316
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001317 if (get_isa16_mode(regs->cp0_epc)) {
1318 unsigned short mmop[2] = { 0 };
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001319
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001320 if (unlikely(get_user(mmop[0], epc) < 0))
1321 status = SIGSEGV;
1322 if (unlikely(get_user(mmop[1], epc) < 0))
1323 status = SIGSEGV;
1324 opcode = (mmop[0] << 16) | mmop[1];
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001325
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001326 if (status < 0)
1327 status = simulate_rdhwr_mm(regs, opcode);
1328 } else {
1329 if (unlikely(get_user(opcode, epc) < 0))
1330 status = SIGSEGV;
1331
1332 if (!cpu_has_llsc && status < 0)
1333 status = simulate_llsc(regs, opcode);
1334
1335 if (status < 0)
1336 status = simulate_rdhwr_normal(regs, opcode);
1337 }
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001338
1339 if (status < 0)
1340 status = SIGILL;
1341
1342 if (unlikely(status > 0)) {
1343 regs->cp0_epc = old_epc; /* Undo skip-over. */
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001344 regs->regs[31] = old31;
Maciej W. Rozycki60b0d652007-10-16 18:43:26 +01001345 force_sig(status, current);
1346 }
1347
Maciej W. Rozycki27e28e82015-04-03 23:25:08 +01001348 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Maciej W. Rozycki051ff442012-03-06 20:28:54 +00001350 case 3:
1351 /*
1352 * Old (MIPS I and MIPS II) processors will set this code
1353 * for COP1X opcode instructions that replaced the original
Ralf Baechle70342282013-01-22 12:59:30 +01001354 * COP3 space. We don't limit COP1 space instructions in
Maciej W. Rozycki051ff442012-03-06 20:28:54 +00001355 * the emulator according to the CPU ISA, so we want to
1356 * treat COP1X instructions consistently regardless of which
Ralf Baechle70342282013-01-22 12:59:30 +01001357 * code the CPU chose. Therefore we redirect this trap to
Maciej W. Rozycki051ff442012-03-06 20:28:54 +00001358 * the FP emulator too.
1359 *
1360 * Then some newer FPU-less processors use this code
1361 * erroneously too, so they are covered by this choice
1362 * as well.
1363 */
Maciej W. Rozycki27e28e82015-04-03 23:25:08 +01001364 if (raw_cpu_has_fpu) {
1365 force_sig(SIGILL, current);
Maciej W. Rozycki051ff442012-03-06 20:28:54 +00001366 break;
Maciej W. Rozycki27e28e82015-04-03 23:25:08 +01001367 }
Maciej W. Rozycki051ff442012-03-06 20:28:54 +00001368 /* Fall through. */
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 case 1:
Paul Burton1db1af82014-01-27 15:23:11 +00001371 err = enable_restore_fp_context(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
Paul Burton597ce172013-11-22 13:12:07 +00001373 if (!raw_cpu_has_fpu || err) {
Atsushi Nemotoe04582b2006-10-09 00:10:01 +09001374 int sig;
David Daney515b0292010-10-21 16:32:26 -07001375 void __user *fault_addr = NULL;
Atsushi Nemotoe04582b2006-10-09 00:10:01 +09001376 sig = fpu_emulator_cop1Handler(regs,
David Daney515b0292010-10-21 16:32:26 -07001377 &current->thread.fpu,
1378 0, &fault_addr);
Paul Burton597ce172013-11-22 13:12:07 +00001379 if (!process_fpemu_return(sig, fault_addr) && !err)
Ralf Baechled223a862007-07-10 17:33:02 +01001380 mt_ase_fp_affinity();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
1382
Maciej W. Rozycki27e28e82015-04-03 23:25:08 +01001383 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 case 2:
Ralf Baechle69f3a7d2009-11-24 01:24:58 +00001386 raw_notifier_call_chain(&cu2_chain, CU2_EXCEPTION, regs);
Maciej W. Rozycki27e28e82015-04-03 23:25:08 +01001387 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 }
1389
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001390 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391}
1392
Paul Burton2bcb3fb2014-01-27 15:23:12 +00001393asmlinkage void do_msa_fpe(struct pt_regs *regs)
1394{
1395 enum ctx_state prev_state;
1396
1397 prev_state = exception_enter();
1398 die_if_kernel("do_msa_fpe invoked from kernel context!", regs);
1399 force_sig(SIGFPE, current);
1400 exception_exit(prev_state);
1401}
1402
Paul Burton1db1af82014-01-27 15:23:11 +00001403asmlinkage void do_msa(struct pt_regs *regs)
1404{
1405 enum ctx_state prev_state;
1406 int err;
1407
1408 prev_state = exception_enter();
1409
1410 if (!cpu_has_msa || test_thread_flag(TIF_32BIT_FPREGS)) {
1411 force_sig(SIGILL, current);
1412 goto out;
1413 }
1414
1415 die_if_kernel("do_msa invoked from kernel context!", regs);
1416
1417 err = enable_restore_fp_context(1);
1418 if (err)
1419 force_sig(SIGILL, current);
1420out:
1421 exception_exit(prev_state);
1422}
1423
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424asmlinkage void do_mdmx(struct pt_regs *regs)
1425{
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001426 enum ctx_state prev_state;
1427
1428 prev_state = exception_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 force_sig(SIGILL, current);
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001430 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
David Daney8bc6d052009-01-05 15:29:58 -08001433/*
1434 * Called with interrupts disabled.
1435 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436asmlinkage void do_watch(struct pt_regs *regs)
1437{
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001438 enum ctx_state prev_state;
David Daneyb67b2b72008-09-23 00:08:45 -07001439 u32 cause;
1440
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001441 prev_state = exception_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 /*
David Daneyb67b2b72008-09-23 00:08:45 -07001443 * Clear WP (bit 22) bit of cause register so we don't loop
1444 * forever.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 */
David Daneyb67b2b72008-09-23 00:08:45 -07001446 cause = read_c0_cause();
1447 cause &= ~(1 << 22);
1448 write_c0_cause(cause);
1449
1450 /*
1451 * If the current thread has the watch registers loaded, save
1452 * their values and send SIGTRAP. Otherwise another thread
1453 * left the registers set, clear them and continue.
1454 */
1455 if (test_tsk_thread_flag(current, TIF_LOAD_WATCH)) {
1456 mips_read_watch_registers();
David Daney8bc6d052009-01-05 15:29:58 -08001457 local_irq_enable();
David Daneyb67b2b72008-09-23 00:08:45 -07001458 force_sig(SIGTRAP, current);
David Daney8bc6d052009-01-05 15:29:58 -08001459 } else {
David Daneyb67b2b72008-09-23 00:08:45 -07001460 mips_clear_watch_registers();
David Daney8bc6d052009-01-05 15:29:58 -08001461 local_irq_enable();
1462 }
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001463 exception_exit(prev_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464}
1465
1466asmlinkage void do_mcheck(struct pt_regs *regs)
1467{
Ralf Baechlecac4bcb2006-05-24 16:51:02 +01001468 const int field = 2 * sizeof(unsigned long);
1469 int multi_match = regs->cp0_status & ST0_TS;
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001470 enum ctx_state prev_state;
Ralf Baechlecac4bcb2006-05-24 16:51:02 +01001471
Ralf Baechlec3fc5cd2013-05-29 01:07:19 +02001472 prev_state = exception_enter();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 show_regs(regs);
Ralf Baechlecac4bcb2006-05-24 16:51:02 +01001474
1475 if (multi_match) {
Markos Chandras314727f2014-11-12 09:22:15 +00001476 pr_err("Index : %0x\n", read_c0_index());
1477 pr_err("Pagemask: %0x\n", read_c0_pagemask());
1478 pr_err("EntryHi : %0*lx\n", field, read_c0_entryhi());
1479 pr_err("EntryLo0: %0*lx\n", field, read_c0_entrylo0());
1480 pr_err("EntryLo1: %0*lx\n", field, read_c0_entrylo1());
Markos Chandras26b40ef2014-11-12 09:23:11 +00001481 pr_err("Wired : %0x\n", read_c0_wired());
1482 pr_err("Pagegrain: %0x\n", read_c0_pagegrain());
Markos Chandras31ec86b2014-11-12 09:22:42 +00001483 if (cpu_has_htw) {
1484 pr_err("PWField : %0*lx\n", field, read_c0_pwfield());
1485 pr_err("PWSize : %0*lx\n", field, read_c0_pwsize());
1486 pr_err("PWCtl : %0x\n", read_c0_pwctl());
1487 }
Markos Chandras314727f2014-11-12 09:22:15 +00001488 pr_err("\n");
Ralf Baechlecac4bcb2006-05-24 16:51:02 +01001489 dump_tlb_all();
1490 }
1491
Atsushi Nemotoe1bb82892007-07-13 23:51:46 +09001492 show_code((unsigned int __user *) regs->cp0_epc);
Ralf Baechlecac4bcb2006-05-24 16:51:02 +01001493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 /*
1495 * Some chips may have other causes of machine check (e.g. SB1
1496 * graduation timer)
1497 */
1498 panic("Caught Machine Check exception - %scaused by multiple "
1499 "matching entries in the TLB.",
Ralf Baechlecac4bcb2006-05-24 16:51:02 +01001500 (multi_match) ? "" : "not ");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501}
1502
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001503asmlinkage void do_mt(struct pt_regs *regs)
1504{
Ralf Baechle41c594a2006-04-05 09:45:45 +01001505 int subcode;
1506
Ralf Baechle41c594a2006-04-05 09:45:45 +01001507 subcode = (read_vpe_c0_vpecontrol() & VPECONTROL_EXCPT)
1508 >> VPECONTROL_EXCPT_SHIFT;
1509 switch (subcode) {
1510 case 0:
Chris Dearmane35a5e32006-06-30 14:19:45 +01001511 printk(KERN_DEBUG "Thread Underflow\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001512 break;
1513 case 1:
Chris Dearmane35a5e32006-06-30 14:19:45 +01001514 printk(KERN_DEBUG "Thread Overflow\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001515 break;
1516 case 2:
Chris Dearmane35a5e32006-06-30 14:19:45 +01001517 printk(KERN_DEBUG "Invalid YIELD Qualifier\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001518 break;
1519 case 3:
Chris Dearmane35a5e32006-06-30 14:19:45 +01001520 printk(KERN_DEBUG "Gating Storage Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001521 break;
1522 case 4:
Chris Dearmane35a5e32006-06-30 14:19:45 +01001523 printk(KERN_DEBUG "YIELD Scheduler Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001524 break;
1525 case 5:
Masanari Iidaf232c7e2012-02-08 21:53:14 +09001526 printk(KERN_DEBUG "Gating Storage Scheduler Exception\n");
Ralf Baechle41c594a2006-04-05 09:45:45 +01001527 break;
1528 default:
Chris Dearmane35a5e32006-06-30 14:19:45 +01001529 printk(KERN_DEBUG "*** UNKNOWN THREAD EXCEPTION %d ***\n",
Ralf Baechle41c594a2006-04-05 09:45:45 +01001530 subcode);
1531 break;
1532 }
Ralf Baechle340ee4b2005-08-17 17:44:08 +00001533 die_if_kernel("MIPS MT Thread exception in kernel", regs);
1534
1535 force_sig(SIGILL, current);
1536}
1537
1538
Ralf Baechlee50c0a82005-05-31 11:49:19 +00001539asmlinkage void do_dsp(struct pt_regs *regs)
1540{
1541 if (cpu_has_dsp)
Ralf Baechleab75dc02011-11-17 15:07:31 +00001542 panic("Unexpected DSP exception");
Ralf Baechlee50c0a82005-05-31 11:49:19 +00001543
1544 force_sig(SIGILL, current);
1545}
1546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547asmlinkage void do_reserved(struct pt_regs *regs)
1548{
1549 /*
Ralf Baechle70342282013-01-22 12:59:30 +01001550 * Game over - no way to handle this if it ever occurs. Most probably
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 * caused by a new unknown cpu type or after another deadly
1552 * hard/software error.
1553 */
1554 show_regs(regs);
1555 panic("Caught reserved exception %ld - should not happen.",
1556 (regs->cp0_cause & 0x7f) >> 2);
1557}
1558
Ralf Baechle39b8d522008-04-28 17:14:26 +01001559static int __initdata l1parity = 1;
1560static int __init nol1parity(char *s)
1561{
1562 l1parity = 0;
1563 return 1;
1564}
1565__setup("nol1par", nol1parity);
1566static int __initdata l2parity = 1;
1567static int __init nol2parity(char *s)
1568{
1569 l2parity = 0;
1570 return 1;
1571}
1572__setup("nol2par", nol2parity);
1573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574/*
1575 * Some MIPS CPUs can enable/disable for cache parity detection, but do
1576 * it different ways.
1577 */
1578static inline void parity_protection_init(void)
1579{
Ralf Baechle10cc3522007-10-11 23:46:15 +01001580 switch (current_cpu_type()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 case CPU_24K:
Nigel Stephens98a41de2006-04-27 15:50:32 +01001582 case CPU_34K:
Ralf Baechle39b8d522008-04-28 17:14:26 +01001583 case CPU_74K:
1584 case CPU_1004K:
Steven J. Hill442e14a2014-01-17 15:03:50 -06001585 case CPU_1074K:
Leonid Yegoshin26ab96d2013-11-27 10:07:53 +00001586 case CPU_INTERAPTIV:
Leonid Yegoshin708ac4b2013-11-14 16:12:27 +00001587 case CPU_PROAPTIV:
James Hoganaced4cb2014-01-22 16:19:38 +00001588 case CPU_P5600:
Leonid Yegoshin46950892014-11-24 12:59:01 +00001589 case CPU_QEMU_GENERIC:
Ralf Baechle39b8d522008-04-28 17:14:26 +01001590 {
1591#define ERRCTL_PE 0x80000000
1592#define ERRCTL_L2P 0x00800000
1593 unsigned long errctl;
1594 unsigned int l1parity_present, l2parity_present;
1595
1596 errctl = read_c0_ecc();
1597 errctl &= ~(ERRCTL_PE|ERRCTL_L2P);
1598
1599 /* probe L1 parity support */
1600 write_c0_ecc(errctl | ERRCTL_PE);
1601 back_to_back_c0_hazard();
1602 l1parity_present = (read_c0_ecc() & ERRCTL_PE);
1603
1604 /* probe L2 parity support */
1605 write_c0_ecc(errctl|ERRCTL_L2P);
1606 back_to_back_c0_hazard();
1607 l2parity_present = (read_c0_ecc() & ERRCTL_L2P);
1608
1609 if (l1parity_present && l2parity_present) {
1610 if (l1parity)
1611 errctl |= ERRCTL_PE;
1612 if (l1parity ^ l2parity)
1613 errctl |= ERRCTL_L2P;
1614 } else if (l1parity_present) {
1615 if (l1parity)
1616 errctl |= ERRCTL_PE;
1617 } else if (l2parity_present) {
1618 if (l2parity)
1619 errctl |= ERRCTL_L2P;
1620 } else {
1621 /* No parity available */
1622 }
1623
1624 printk(KERN_INFO "Writing ErrCtl register=%08lx\n", errctl);
1625
1626 write_c0_ecc(errctl);
1627 back_to_back_c0_hazard();
1628 errctl = read_c0_ecc();
1629 printk(KERN_INFO "Readback ErrCtl register=%08lx\n", errctl);
1630
1631 if (l1parity_present)
1632 printk(KERN_INFO "Cache parity protection %sabled\n",
1633 (errctl & ERRCTL_PE) ? "en" : "dis");
1634
1635 if (l2parity_present) {
1636 if (l1parity_present && l1parity)
1637 errctl ^= ERRCTL_L2P;
1638 printk(KERN_INFO "L2 cache parity protection %sabled\n",
1639 (errctl & ERRCTL_L2P) ? "en" : "dis");
1640 }
1641 }
1642 break;
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 case CPU_5KC:
Leonid Yegoshin78d48032012-07-06 21:56:01 +02001645 case CPU_5KE:
Kelvin Cheung2fa36392012-06-20 20:05:32 +01001646 case CPU_LOONGSON1:
Ralf Baechle14f18b72005-03-01 18:15:08 +00001647 write_c0_ecc(0x80000000);
1648 back_to_back_c0_hazard();
1649 /* Set the PE bit (bit 31) in the c0_errctl register. */
1650 printk(KERN_INFO "Cache parity protection %sabled\n",
1651 (read_c0_ecc() & 0x80000000) ? "en" : "dis");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 break;
1653 case CPU_20KC:
1654 case CPU_25KF:
1655 /* Clear the DE bit (bit 16) in the c0_status register. */
1656 printk(KERN_INFO "Enable cache parity protection for "
1657 "MIPS 20KC/25KF CPUs.\n");
1658 clear_c0_status(ST0_DE);
1659 break;
1660 default:
1661 break;
1662 }
1663}
1664
1665asmlinkage void cache_parity_error(void)
1666{
1667 const int field = 2 * sizeof(unsigned long);
1668 unsigned int reg_val;
1669
1670 /* For the moment, report the problem and hang. */
1671 printk("Cache error exception:\n");
1672 printk("cp0_errorepc == %0*lx\n", field, read_c0_errorepc());
1673 reg_val = read_c0_cacheerr();
1674 printk("c0_cacheerr == %08x\n", reg_val);
1675
1676 printk("Decoded c0_cacheerr: %s cache fault in %s reference.\n",
1677 reg_val & (1<<30) ? "secondary" : "primary",
1678 reg_val & (1<<31) ? "data" : "insn");
Leonid Yegoshin9c7d5762014-11-14 11:25:30 +00001679 if ((cpu_has_mips_r2_r6) &&
Markos Chandras721a9202014-05-21 12:35:00 +01001680 ((current_cpu_data.processor_id & 0xff0000) == PRID_COMP_MIPS)) {
Leonid Yegoshin6de20452013-10-10 09:58:59 +01001681 pr_err("Error bits: %s%s%s%s%s%s%s%s\n",
1682 reg_val & (1<<29) ? "ED " : "",
1683 reg_val & (1<<28) ? "ET " : "",
1684 reg_val & (1<<27) ? "ES " : "",
1685 reg_val & (1<<26) ? "EE " : "",
1686 reg_val & (1<<25) ? "EB " : "",
1687 reg_val & (1<<24) ? "EI " : "",
1688 reg_val & (1<<23) ? "E1 " : "",
1689 reg_val & (1<<22) ? "E0 " : "");
1690 } else {
1691 pr_err("Error bits: %s%s%s%s%s%s%s\n",
1692 reg_val & (1<<29) ? "ED " : "",
1693 reg_val & (1<<28) ? "ET " : "",
1694 reg_val & (1<<26) ? "EE " : "",
1695 reg_val & (1<<25) ? "EB " : "",
1696 reg_val & (1<<24) ? "EI " : "",
1697 reg_val & (1<<23) ? "E1 " : "",
1698 reg_val & (1<<22) ? "E0 " : "");
1699 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 printk("IDX: 0x%08x\n", reg_val & ((1<<22)-1));
1701
Ralf Baechleec917c2c2005-10-07 16:58:15 +01001702#if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 if (reg_val & (1<<22))
1704 printk("DErrAddr0: 0x%0*lx\n", field, read_c0_derraddr0());
1705
1706 if (reg_val & (1<<23))
1707 printk("DErrAddr1: 0x%0*lx\n", field, read_c0_derraddr1());
1708#endif
1709
1710 panic("Can't handle the cache error!");
1711}
1712
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +00001713asmlinkage void do_ftlb(void)
1714{
1715 const int field = 2 * sizeof(unsigned long);
1716 unsigned int reg_val;
1717
1718 /* For the moment, report the problem and hang. */
Leonid Yegoshin9c7d5762014-11-14 11:25:30 +00001719 if ((cpu_has_mips_r2_r6) &&
Markos Chandras721a9202014-05-21 12:35:00 +01001720 ((current_cpu_data.processor_id & 0xff0000) == PRID_COMP_MIPS)) {
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +00001721 pr_err("FTLB error exception, cp0_ecc=0x%08x:\n",
1722 read_c0_ecc());
1723 pr_err("cp0_errorepc == %0*lx\n", field, read_c0_errorepc());
1724 reg_val = read_c0_cacheerr();
1725 pr_err("c0_cacheerr == %08x\n", reg_val);
1726
1727 if ((reg_val & 0xc0000000) == 0xc0000000) {
1728 pr_err("Decoded c0_cacheerr: FTLB parity error\n");
1729 } else {
1730 pr_err("Decoded c0_cacheerr: %s cache fault in %s reference.\n",
1731 reg_val & (1<<30) ? "secondary" : "primary",
1732 reg_val & (1<<31) ? "data" : "insn");
1733 }
1734 } else {
1735 pr_err("FTLB error exception\n");
1736 }
1737 /* Just print the cacheerr bits for now */
1738 cache_parity_error();
1739}
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741/*
1742 * SDBBP EJTAG debug exception handler.
1743 * We skip the instruction and return to the next instruction.
1744 */
1745void ejtag_exception_handler(struct pt_regs *regs)
1746{
1747 const int field = 2 * sizeof(unsigned long);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001748 unsigned long depc, old_epc, old_ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 unsigned int debug;
1750
Chris Dearman70ae6122006-06-30 12:32:37 +01001751 printk(KERN_DEBUG "SDBBP EJTAG debug exception - not handled yet, just ignored!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 depc = read_c0_depc();
1753 debug = read_c0_debug();
Chris Dearman70ae6122006-06-30 12:32:37 +01001754 printk(KERN_DEBUG "c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (debug & 0x80000000) {
1756 /*
1757 * In branch delay slot.
1758 * We cheat a little bit here and use EPC to calculate the
1759 * debug return address (DEPC). EPC is restored after the
1760 * calculation.
1761 */
1762 old_epc = regs->cp0_epc;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001763 old_ra = regs->regs[31];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 regs->cp0_epc = depc;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001765 compute_return_epc(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 depc = regs->cp0_epc;
1767 regs->cp0_epc = old_epc;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001768 regs->regs[31] = old_ra;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 } else
1770 depc += 4;
1771 write_c0_depc(depc);
1772
1773#if 0
Chris Dearman70ae6122006-06-30 12:32:37 +01001774 printk(KERN_DEBUG "\n\n----- Enable EJTAG single stepping ----\n\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 write_c0_debug(debug | 0x100);
1776#endif
1777}
1778
1779/*
1780 * NMI exception handler.
Kevin Cernekee34bd92e2011-11-16 01:25:44 +00001781 * No lock; only written during early bootup by CPU 0.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 */
Kevin Cernekee34bd92e2011-11-16 01:25:44 +00001783static RAW_NOTIFIER_HEAD(nmi_chain);
1784
1785int register_nmi_notifier(struct notifier_block *nb)
1786{
1787 return raw_notifier_chain_register(&nmi_chain, nb);
1788}
1789
Joe Perchesff2d8b12012-01-12 17:17:21 -08001790void __noreturn nmi_exception_handler(struct pt_regs *regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791{
Leonid Yegoshin83e4da1e2013-10-08 12:39:31 +01001792 char str[100];
1793
Kevin Cernekee34bd92e2011-11-16 01:25:44 +00001794 raw_notifier_call_chain(&nmi_chain, 0, regs);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001795 bust_spinlocks(1);
Leonid Yegoshin83e4da1e2013-10-08 12:39:31 +01001796 snprintf(str, 100, "CPU%d NMI taken, CP0_EPC=%lx\n",
1797 smp_processor_id(), regs->cp0_epc);
1798 regs->cp0_epc = read_c0_errorepc();
1799 die(str, regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800}
1801
Ralf Baechlee01402b2005-07-14 15:57:16 +00001802#define VECTORSPACING 0x100 /* for EI/VI mode */
1803
1804unsigned long ebase;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805unsigned long exception_handlers[32];
Ralf Baechlee01402b2005-07-14 15:57:16 +00001806unsigned long vi_handlers[64];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807
Florian Fainelli2d1b6e92010-01-28 15:21:42 +01001808void __init *set_except_vector(int n, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809{
1810 unsigned long handler = (unsigned long) addr;
Ralf Baechleb22d1b62013-05-09 17:57:30 +02001811 unsigned long old_handler;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001813#ifdef CONFIG_CPU_MICROMIPS
1814 /*
1815 * Only the TLB handlers are cache aligned with an even
1816 * address. All other handlers are on an odd address and
1817 * require no modification. Otherwise, MIPS32 mode will
1818 * be entered when handling any TLB exceptions. That
1819 * would be bad...since we must stay in microMIPS mode.
1820 */
1821 if (!(handler & 0x1))
1822 handler |= 1;
1823#endif
Ralf Baechleb22d1b62013-05-09 17:57:30 +02001824 old_handler = xchg(&exception_handlers[n], handler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 if (n == 0 && cpu_has_divec) {
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001827#ifdef CONFIG_CPU_MICROMIPS
1828 unsigned long jump_mask = ~((1 << 27) - 1);
1829#else
Florian Fainelli92bbe1b2010-01-28 15:22:37 +01001830 unsigned long jump_mask = ~((1 << 28) - 1);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001831#endif
Florian Fainelli92bbe1b2010-01-28 15:22:37 +01001832 u32 *buf = (u32 *)(ebase + 0x200);
1833 unsigned int k0 = 26;
1834 if ((handler & jump_mask) == ((ebase + 0x200) & jump_mask)) {
1835 uasm_i_j(&buf, handler & ~jump_mask);
1836 uasm_i_nop(&buf);
1837 } else {
1838 UASM_i_LA(&buf, k0, handler);
1839 uasm_i_jr(&buf, k0);
1840 uasm_i_nop(&buf);
1841 }
1842 local_flush_icache_range(ebase + 0x200, (unsigned long)buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 }
1844 return (void *)old_handler;
1845}
1846
Ralf Baechle86a17082013-02-08 01:21:34 +01001847static void do_default_vi(void)
Atsushi Nemoto6ba07e52007-05-21 23:45:38 +09001848{
1849 show_regs(get_irq_regs());
1850 panic("Caught unexpected vectored interrupt.");
1851}
1852
Ralf Baechleef300e42007-05-06 18:31:18 +01001853static void *set_vi_srs_handler(int n, vi_handler_t addr, int srs)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001854{
1855 unsigned long handler;
1856 unsigned long old_handler = vi_handlers[n];
Ralf Baechlef6771db2007-11-08 18:02:29 +00001857 int srssets = current_cpu_data.srsets;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001858 u16 *h;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001859 unsigned char *b;
1860
Ralf Baechleb72b7092009-03-30 14:49:44 +02001861 BUG_ON(!cpu_has_veic && !cpu_has_vint);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001862
1863 if (addr == NULL) {
1864 handler = (unsigned long) do_default_vi;
1865 srs = 0;
Ralf Baechle41c594a2006-04-05 09:45:45 +01001866 } else
Ralf Baechlee01402b2005-07-14 15:57:16 +00001867 handler = (unsigned long) addr;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001868 vi_handlers[n] = handler;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001869
1870 b = (unsigned char *)(ebase + 0x200 + n*VECTORSPACING);
1871
Ralf Baechlef6771db2007-11-08 18:02:29 +00001872 if (srs >= srssets)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001873 panic("Shadow register set %d not supported", srs);
1874
1875 if (cpu_has_veic) {
1876 if (board_bind_eic_interrupt)
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001877 board_bind_eic_interrupt(n, srs);
Ralf Baechle41c594a2006-04-05 09:45:45 +01001878 } else if (cpu_has_vint) {
Ralf Baechlee01402b2005-07-14 15:57:16 +00001879 /* SRSMap is only defined if shadow sets are implemented */
Ralf Baechlef6771db2007-11-08 18:02:29 +00001880 if (srssets > 1)
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001881 change_c0_srsmap(0xf << n*4, srs << n*4);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001882 }
1883
1884 if (srs == 0) {
1885 /*
1886 * If no shadow set is selected then use the default handler
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001887 * that does normal register saving and standard interrupt exit
Ralf Baechlee01402b2005-07-14 15:57:16 +00001888 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00001889 extern char except_vec_vi, except_vec_vi_lui;
1890 extern char except_vec_vi_ori, except_vec_vi_end;
Atsushi Nemotoc65a5482007-11-12 02:05:18 +09001891 extern char rollback_except_vec_vi;
Ralf Baechlef94d9a82013-05-21 17:30:36 +02001892 char *vec_start = using_rollback_handler() ?
Atsushi Nemotoc65a5482007-11-12 02:05:18 +09001893 &rollback_except_vec_vi : &except_vec_vi;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001894#if defined(CONFIG_CPU_MICROMIPS) || defined(CONFIG_CPU_BIG_ENDIAN)
1895 const int lui_offset = &except_vec_vi_lui - vec_start + 2;
1896 const int ori_offset = &except_vec_vi_ori - vec_start + 2;
1897#else
Atsushi Nemotoc65a5482007-11-12 02:05:18 +09001898 const int lui_offset = &except_vec_vi_lui - vec_start;
1899 const int ori_offset = &except_vec_vi_ori - vec_start;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001900#endif
1901 const int handler_len = &except_vec_vi_end - vec_start;
Ralf Baechlee01402b2005-07-14 15:57:16 +00001902
1903 if (handler_len > VECTORSPACING) {
1904 /*
1905 * Sigh... panicing won't help as the console
1906 * is probably not configured :(
1907 */
Ralf Baechle49a89ef2007-10-11 23:46:15 +01001908 panic("VECTORSPACING too small");
Ralf Baechlee01402b2005-07-14 15:57:16 +00001909 }
1910
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001911 set_handler(((unsigned long)b - ebase), vec_start,
1912#ifdef CONFIG_CPU_MICROMIPS
1913 (handler_len - 1));
1914#else
1915 handler_len);
1916#endif
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001917 h = (u16 *)(b + lui_offset);
1918 *h = (handler >> 16) & 0xffff;
1919 h = (u16 *)(b + ori_offset);
1920 *h = (handler & 0xffff);
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02001921 local_flush_icache_range((unsigned long)b,
1922 (unsigned long)(b+handler_len));
Ralf Baechlee01402b2005-07-14 15:57:16 +00001923 }
1924 else {
1925 /*
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001926 * In other cases jump directly to the interrupt handler. It
1927 * is the handler's responsibility to save registers if required
1928 * (eg hi/lo) and return from the exception using "eret".
Ralf Baechlee01402b2005-07-14 15:57:16 +00001929 */
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05001930 u32 insn;
1931
1932 h = (u16 *)b;
1933 /* j handler */
1934#ifdef CONFIG_CPU_MICROMIPS
1935 insn = 0xd4000000 | (((u32)handler & 0x07ffffff) >> 1);
1936#else
1937 insn = 0x08000000 | (((u32)handler & 0x0fffffff) >> 2);
1938#endif
1939 h[0] = (insn >> 16) & 0xffff;
1940 h[1] = insn & 0xffff;
1941 h[2] = 0;
1942 h[3] = 0;
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02001943 local_flush_icache_range((unsigned long)b,
1944 (unsigned long)(b+8));
Ralf Baechlee01402b2005-07-14 15:57:16 +00001945 }
1946
1947 return (void *)old_handler;
1948}
1949
Ralf Baechleef300e42007-05-06 18:31:18 +01001950void *set_vi_handler(int n, vi_handler_t addr)
Ralf Baechlee01402b2005-07-14 15:57:16 +00001951{
Ralf Baechleff3eab22006-03-29 14:12:58 +01001952 return set_vi_srs_handler(n, addr, 0);
Ralf Baechlee01402b2005-07-14 15:57:16 +00001953}
Ralf Baechlef41ae0b2006-06-05 17:24:46 +01001954
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955extern void tlb_init(void);
1956
Ralf Baechle42f77542007-10-18 17:48:11 +01001957/*
1958 * Timer interrupt
1959 */
1960int cp0_compare_irq;
Ralf Baechle68b63522012-07-19 09:13:52 +02001961EXPORT_SYMBOL_GPL(cp0_compare_irq);
David VomLehn010c1082009-12-21 17:49:22 -08001962int cp0_compare_irq_shift;
Ralf Baechle42f77542007-10-18 17:48:11 +01001963
1964/*
1965 * Performance counter IRQ or -1 if shared with timer
1966 */
1967int cp0_perfcount_irq;
1968EXPORT_SYMBOL_GPL(cp0_perfcount_irq);
1969
James Hogan8f7ff022015-01-29 11:14:07 +00001970/*
1971 * Fast debug channel IRQ or -1 if not present
1972 */
1973int cp0_fdc_irq;
1974EXPORT_SYMBOL_GPL(cp0_fdc_irq);
1975
Paul Gortmaker078a55f2013-06-18 13:38:59 +00001976static int noulri;
Chris Dearmanbdc94eb2007-10-03 10:43:56 +01001977
1978static int __init ulri_disable(char *s)
1979{
1980 pr_info("Disabling ulri\n");
1981 noulri = 1;
1982
1983 return 1;
1984}
1985__setup("noulri", ulri_disable);
1986
James Hoganae4ce452014-03-04 10:20:43 +00001987/* configure STATUS register */
1988static void configure_status(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 /*
1991 * Disable coprocessors and select 32-bit or 64-bit addressing
1992 * and the 16/32 or 32/32 FPR register model. Reset the BEV
1993 * flag that some firmware may have left set and the TS bit (for
1994 * IP27). Set XX for ISA IV code to work.
1995 */
James Hoganae4ce452014-03-04 10:20:43 +00001996 unsigned int status_set = ST0_CU0;
Ralf Baechle875d43e2005-09-03 15:56:16 -07001997#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 status_set |= ST0_FR|ST0_KX|ST0_SX|ST0_UX;
1999#endif
Deng-Cheng Zhuadb37892013-04-01 18:14:28 +00002000 if (current_cpu_data.isa_level & MIPS_CPU_ISA_IV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 status_set |= ST0_XX;
Chris Dearmanbbaf2382007-12-13 22:42:19 +00002002 if (cpu_has_dsp)
2003 status_set |= ST0_MX;
2004
Ralf Baechleb38c7392006-02-07 01:20:43 +00002005 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 -07002006 status_set);
James Hoganae4ce452014-03-04 10:20:43 +00002007}
2008
2009/* configure HWRENA register */
2010static void configure_hwrena(void)
2011{
2012 unsigned int hwrena = cpu_hwrena_impl_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Leonid Yegoshin9c7d5762014-11-14 11:25:30 +00002014 if (cpu_has_mips_r2_r6)
Kevin Cernekee18d693b2010-10-16 14:22:38 -07002015 hwrena |= 0x0000000f;
Ralf Baechlea3692022007-07-10 17:33:02 +01002016
Kevin Cernekee18d693b2010-10-16 14:22:38 -07002017 if (!noulri && cpu_has_userlocal)
2018 hwrena |= (1 << 29);
Ralf Baechlea3692022007-07-10 17:33:02 +01002019
Kevin Cernekee18d693b2010-10-16 14:22:38 -07002020 if (hwrena)
2021 write_c0_hwrena(hwrena);
James Hoganae4ce452014-03-04 10:20:43 +00002022}
Ralf Baechlee01402b2005-07-14 15:57:16 +00002023
James Hoganae4ce452014-03-04 10:20:43 +00002024static void configure_exception_vector(void)
2025{
Ralf Baechlee01402b2005-07-14 15:57:16 +00002026 if (cpu_has_veic || cpu_has_vint) {
Chris Dearman9fb4c2b92009-03-20 15:33:55 -07002027 unsigned long sr = set_c0_status(ST0_BEV);
Ralf Baechle49a89ef2007-10-11 23:46:15 +01002028 write_c0_ebase(ebase);
Chris Dearman9fb4c2b92009-03-20 15:33:55 -07002029 write_c0_status(sr);
Ralf Baechlee01402b2005-07-14 15:57:16 +00002030 /* Setting vector spacing enables EI/VI mode */
Ralf Baechle49a89ef2007-10-11 23:46:15 +01002031 change_c0_intctl(0x3e0, VECTORSPACING);
Ralf Baechlee01402b2005-07-14 15:57:16 +00002032 }
Ralf Baechled03d0a52005-08-17 13:44:26 +00002033 if (cpu_has_divec) {
2034 if (cpu_has_mipsmt) {
2035 unsigned int vpflags = dvpe();
2036 set_c0_cause(CAUSEF_IV);
2037 evpe(vpflags);
2038 } else
2039 set_c0_cause(CAUSEF_IV);
2040 }
James Hoganae4ce452014-03-04 10:20:43 +00002041}
2042
2043void per_cpu_trap_init(bool is_boot_cpu)
2044{
2045 unsigned int cpu = smp_processor_id();
James Hoganae4ce452014-03-04 10:20:43 +00002046
2047 configure_status();
2048 configure_hwrena();
2049
James Hoganae4ce452014-03-04 10:20:43 +00002050 configure_exception_vector();
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +01002051
2052 /*
2053 * Before R2 both interrupt numbers were fixed to 7, so on R2 only:
2054 *
2055 * o read IntCtl.IPTI to determine the timer interrupt
2056 * o read IntCtl.IPPCI to determine the performance counter interrupt
James Hogan8f7ff022015-01-29 11:14:07 +00002057 * o read IntCtl.IPFDC to determine the fast debug channel interrupt
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +01002058 */
Leonid Yegoshin9c7d5762014-11-14 11:25:30 +00002059 if (cpu_has_mips_r2_r6) {
David VomLehn010c1082009-12-21 17:49:22 -08002060 cp0_compare_irq_shift = CAUSEB_TI - CAUSEB_IP;
2061 cp0_compare_irq = (read_c0_intctl() >> INTCTLB_IPTI) & 7;
2062 cp0_perfcount_irq = (read_c0_intctl() >> INTCTLB_IPPCI) & 7;
James Hogan8f7ff022015-01-29 11:14:07 +00002063 cp0_fdc_irq = (read_c0_intctl() >> INTCTLB_IPFDC) & 7;
2064 if (!cp0_fdc_irq)
2065 cp0_fdc_irq = -1;
2066
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +01002067 } else {
2068 cp0_compare_irq = CP0_LEGACY_COMPARE_IRQ;
Ralf Baechlec6a4ebb2012-07-06 23:56:00 +02002069 cp0_compare_irq_shift = CP0_LEGACY_PERFCNT_IRQ;
Chris Dearmanc3e838a2007-06-21 12:59:57 +01002070 cp0_perfcount_irq = -1;
James Hogan8f7ff022015-01-29 11:14:07 +00002071 cp0_fdc_irq = -1;
Ralf Baechle3b1d4ed2007-06-20 22:27:10 +01002072 }
2073
David Daney48c4ac92013-05-13 13:56:44 -07002074 if (!cpu_data[cpu].asid_cache)
2075 cpu_data[cpu].asid_cache = ASID_FIRST_VERSION;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076
2077 atomic_inc(&init_mm.mm_count);
2078 current->active_mm = &init_mm;
2079 BUG_ON(current->mm);
2080 enter_lazy_tlb(&init_mm, current);
2081
David Daney6650df32012-05-15 00:04:50 -07002082 /* Boot CPU's cache setup in setup_arch(). */
2083 if (!is_boot_cpu)
2084 cpu_cache_init();
Ralf Baechle41c594a2006-04-05 09:45:45 +01002085 tlb_init();
David Daney3d8bfdd2010-12-21 14:19:11 -08002086 TLBMISS_HANDLER_SETUP();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087}
2088
Ralf Baechlee01402b2005-07-14 15:57:16 +00002089/* Install CPU exception handler */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002090void set_handler(unsigned long offset, void *addr, unsigned long size)
Ralf Baechlee01402b2005-07-14 15:57:16 +00002091{
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002092#ifdef CONFIG_CPU_MICROMIPS
2093 memcpy((void *)(ebase + offset), ((unsigned char *)addr - 1), size);
2094#else
Ralf Baechlee01402b2005-07-14 15:57:16 +00002095 memcpy((void *)(ebase + offset), addr, size);
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002096#endif
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02002097 local_flush_icache_range(ebase + offset, ebase + offset + size);
Ralf Baechlee01402b2005-07-14 15:57:16 +00002098}
2099
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002100static char panic_null_cerr[] =
Ralf Baechle641e97f2007-10-11 23:46:05 +01002101 "Trying to set NULL cache error exception handler";
2102
Ralf Baechle42fe7ee2009-01-28 18:48:23 +00002103/*
2104 * Install uncached CPU exception handler.
2105 * This is suitable only for the cache error exception which is the only
2106 * exception handler that is being run uncached.
2107 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +00002108void set_uncached_handler(unsigned long offset, void *addr,
Ralf Baechle234fcd12008-03-08 09:56:28 +00002109 unsigned long size)
Ralf Baechlee01402b2005-07-14 15:57:16 +00002110{
Sebastian Andrzej Siewior4f81b012010-04-27 22:53:30 +02002111 unsigned long uncached_ebase = CKSEG1ADDR(ebase);
Ralf Baechlee01402b2005-07-14 15:57:16 +00002112
Ralf Baechle641e97f2007-10-11 23:46:05 +01002113 if (!addr)
2114 panic(panic_null_cerr);
2115
Ralf Baechlee01402b2005-07-14 15:57:16 +00002116 memcpy((void *)(uncached_ebase + offset), addr, size);
2117}
2118
Atsushi Nemoto5b104962006-09-11 17:50:29 +09002119static int __initdata rdhwr_noopt;
2120static int __init set_rdhwr_noopt(char *str)
2121{
2122 rdhwr_noopt = 1;
2123 return 1;
2124}
2125
2126__setup("rdhwr_noopt", set_rdhwr_noopt);
2127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128void __init trap_init(void)
2129{
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002130 extern char except_vec3_generic;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 extern char except_vec4;
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002132 extern char except_vec3_r4000;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 unsigned long i;
Atsushi Nemotoc65a5482007-11-12 02:05:18 +09002134
2135 check_wait();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Jason Wessel88547002008-07-29 15:58:53 -05002137#if defined(CONFIG_KGDB)
2138 if (kgdb_early_setup)
Ralf Baechle70342282013-01-22 12:59:30 +01002139 return; /* Already done */
Jason Wessel88547002008-07-29 15:58:53 -05002140#endif
2141
Chris Dearman9fb4c2b92009-03-20 15:33:55 -07002142 if (cpu_has_veic || cpu_has_vint) {
2143 unsigned long size = 0x200 + VECTORSPACING*64;
2144 ebase = (unsigned long)
2145 __alloc_bootmem(size, 1 << fls(size), 0);
2146 } else {
Sanjay Lal9843b032012-11-21 18:34:03 -08002147#ifdef CONFIG_KVM_GUEST
2148#define KVM_GUEST_KSEG0 0x40000000
2149 ebase = KVM_GUEST_KSEG0;
2150#else
2151 ebase = CKSEG0;
2152#endif
Leonid Yegoshin9c7d5762014-11-14 11:25:30 +00002153 if (cpu_has_mips_r2_r6)
David Daney566f74f2008-10-23 17:56:35 -07002154 ebase += (read_c0_ebase() & 0x3ffff000);
2155 }
Ralf Baechlee01402b2005-07-14 15:57:16 +00002156
Steven J. Hillc6213c62013-06-05 21:25:17 +00002157 if (cpu_has_mmips) {
2158 unsigned int config3 = read_c0_config3();
2159
2160 if (IS_ENABLED(CONFIG_CPU_MICROMIPS))
2161 write_c0_config3(config3 | MIPS_CONF3_ISA_OE);
2162 else
2163 write_c0_config3(config3 & ~MIPS_CONF3_ISA_OE);
2164 }
2165
Kevin Cernekee6fb97ef2011-11-16 01:25:45 +00002166 if (board_ebase_setup)
2167 board_ebase_setup();
David Daney6650df32012-05-15 00:04:50 -07002168 per_cpu_trap_init(true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169
2170 /*
2171 * Copy the generic exception handlers to their final destination.
2172 * This will be overriden later as suitable for a particular
2173 * configuration.
2174 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00002175 set_handler(0x180, &except_vec3_generic, 0x80);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
2177 /*
2178 * Setup default vectors
2179 */
2180 for (i = 0; i <= 31; i++)
2181 set_except_vector(i, handle_reserved);
2182
2183 /*
2184 * Copy the EJTAG debug exception vector handler code to it's final
2185 * destination.
2186 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00002187 if (cpu_has_ejtag && board_ejtag_handler_setup)
Ralf Baechle49a89ef2007-10-11 23:46:15 +01002188 board_ejtag_handler_setup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189
2190 /*
2191 * Only some CPUs have the watch exceptions.
2192 */
2193 if (cpu_has_watch)
2194 set_except_vector(23, handle_watch);
2195
2196 /*
Ralf Baechlee01402b2005-07-14 15:57:16 +00002197 * Initialise interrupt handlers
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 */
Ralf Baechlee01402b2005-07-14 15:57:16 +00002199 if (cpu_has_veic || cpu_has_vint) {
2200 int nvec = cpu_has_veic ? 64 : 8;
2201 for (i = 0; i < nvec; i++)
Ralf Baechleff3eab22006-03-29 14:12:58 +01002202 set_vi_handler(i, NULL);
Ralf Baechlee01402b2005-07-14 15:57:16 +00002203 }
2204 else if (cpu_has_divec)
2205 set_handler(0x200, &except_vec4, 0x8);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206
2207 /*
2208 * Some CPUs can enable/disable for cache parity detection, but does
2209 * it different ways.
2210 */
2211 parity_protection_init();
2212
2213 /*
2214 * The Data Bus Errors / Instruction Bus Errors are signaled
2215 * by external hardware. Therefore these two exceptions
2216 * may have board specific handlers.
2217 */
2218 if (board_be_init)
2219 board_be_init();
2220
Ralf Baechlef94d9a82013-05-21 17:30:36 +02002221 set_except_vector(0, using_rollback_handler() ? rollback_handle_int
2222 : handle_int);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 set_except_vector(1, handle_tlbm);
2224 set_except_vector(2, handle_tlbl);
2225 set_except_vector(3, handle_tlbs);
2226
2227 set_except_vector(4, handle_adel);
2228 set_except_vector(5, handle_ades);
2229
2230 set_except_vector(6, handle_ibe);
2231 set_except_vector(7, handle_dbe);
2232
2233 set_except_vector(8, handle_sys);
2234 set_except_vector(9, handle_bp);
Atsushi Nemoto5b104962006-09-11 17:50:29 +09002235 set_except_vector(10, rdhwr_noopt ? handle_ri :
2236 (cpu_has_vtag_icache ?
2237 handle_ri_rdhwr_vivt : handle_ri_rdhwr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 set_except_vector(11, handle_cpu);
2239 set_except_vector(12, handle_ov);
2240 set_except_vector(13, handle_tr);
Paul Burton2bcb3fb2014-01-27 15:23:12 +00002241 set_except_vector(14, handle_msa_fpe);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
Ralf Baechle10cc3522007-10-11 23:46:15 +01002243 if (current_cpu_type() == CPU_R6000 ||
2244 current_cpu_type() == CPU_R6000A) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 /*
2246 * The R6000 is the only R-series CPU that features a machine
2247 * check exception (similar to the R4000 cache error) and
2248 * unaligned ldc1/sdc1 exception. The handlers have not been
Ralf Baechle70342282013-01-22 12:59:30 +01002249 * written yet. Well, anyway there is no R6000 machine on the
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 * current list of targets for Linux/MIPS.
2251 * (Duh, crap, there is someone with a triple R6k machine)
2252 */
2253 //set_except_vector(14, handle_mc);
2254 //set_except_vector(15, handle_ndc);
2255 }
2256
Ralf Baechlee01402b2005-07-14 15:57:16 +00002257
2258 if (board_nmi_handler_setup)
2259 board_nmi_handler_setup();
2260
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002261 if (cpu_has_fpu && !cpu_has_nofpuex)
2262 set_except_vector(15, handle_fpe);
2263
Leonid Yegoshin75b5b5e2013-11-14 16:12:31 +00002264 set_except_vector(16, handle_ftlb);
Leonid Yegoshin5890f702014-07-15 14:09:56 +01002265
2266 if (cpu_has_rixiex) {
2267 set_except_vector(19, tlb_do_page_fault_0);
2268 set_except_vector(20, tlb_do_page_fault_0);
2269 }
2270
Paul Burton1db1af82014-01-27 15:23:11 +00002271 set_except_vector(21, handle_msa);
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002272 set_except_vector(22, handle_mdmx);
2273
2274 if (cpu_has_mcheck)
2275 set_except_vector(24, handle_mcheck);
2276
Ralf Baechle340ee4b2005-08-17 17:44:08 +00002277 if (cpu_has_mipsmt)
2278 set_except_vector(25, handle_mt);
2279
Chris Dearmanacaec422007-05-24 22:30:18 +01002280 set_except_vector(26, handle_dsp);
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002281
David Daneyfcbf1df2012-05-15 00:04:46 -07002282 if (board_cache_error_setup)
2283 board_cache_error_setup();
2284
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002285 if (cpu_has_vce)
2286 /* Special exception: R4[04]00 uses also the divec space. */
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002287 set_handler(0x180, &except_vec3_r4000, 0x100);
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002288 else if (cpu_has_4kex)
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002289 set_handler(0x180, &except_vec3_generic, 0x80);
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002290 else
Steven J. Hill2a0b24f2013-03-25 12:15:55 -05002291 set_handler(0x080, &except_vec3_generic, 0x80);
Ralf Baechlee50c0a82005-05-31 11:49:19 +00002292
Thomas Bogendoerfere0cee3e2008-08-04 20:53:57 +02002293 local_flush_icache_range(ebase, ebase + 0x400);
Thomas Bogendoerfer05106172008-08-04 19:44:34 +02002294
2295 sort_extable(__start___dbe_table, __stop___dbe_table);
Ralf Baechle69f3a7d2009-11-24 01:24:58 +00002296
Ralf Baechle4483b152010-08-05 13:25:59 +01002297 cu2_notifier(default_cu2_call, 0x80000000); /* Run last */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298}
James Hoganae4ce452014-03-04 10:20:43 +00002299
2300static int trap_pm_notifier(struct notifier_block *self, unsigned long cmd,
2301 void *v)
2302{
2303 switch (cmd) {
2304 case CPU_PM_ENTER_FAILED:
2305 case CPU_PM_EXIT:
2306 configure_status();
2307 configure_hwrena();
2308 configure_exception_vector();
2309
2310 /* Restore register with CPU number for TLB handlers */
2311 TLBMISS_HANDLER_RESTORE();
2312
2313 break;
2314 }
2315
2316 return NOTIFY_OK;
2317}
2318
2319static struct notifier_block trap_pm_notifier_block = {
2320 .notifier_call = trap_pm_notifier,
2321};
2322
2323static int __init trap_pm_init(void)
2324{
2325 return cpu_pm_register_notifier(&trap_pm_notifier_block);
2326}
2327arch_initcall(trap_pm_init);