Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * This file is subject to the terms and conditions of the GNU General Public |
| 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. |
| 5 | * |
Ralf Baechle | 36ccf1c | 2006-02-14 21:04:54 +0000 | [diff] [blame] | 6 | * Copyright (C) 1994 - 1999, 2000, 01, 06 Ralf Baechle |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * Copyright (C) 1995, 1996 Paul M. Antoine |
| 8 | * Copyright (C) 1998 Ulf Carlsson |
| 9 | * Copyright (C) 1999 Silicon Graphics, Inc. |
| 10 | * Kevin D. Kissell, kevink@mips.com and Carsten Langgaard, carstenl@mips.com |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 11 | * Copyright (C) 2002, 2003, 2004, 2005, 2007 Maciej W. Rozycki |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 12 | * Copyright (C) 2000, 2001, 2012 MIPS Technologies, Inc. All rights reserved. |
Markos Chandras | b08a9c9 | 2013-12-04 16:20:08 +0000 | [diff] [blame] | 13 | * Copyright (C) 2014, Imagination Technologies Ltd. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | */ |
Ralf Baechle | 8e8a52e | 2007-05-31 14:00:19 +0100 | [diff] [blame] | 15 | #include <linux/bug.h> |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 16 | #include <linux/compiler.h> |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 17 | #include <linux/context_tracking.h> |
James Hogan | ae4ce45 | 2014-03-04 10:20:43 +0000 | [diff] [blame] | 18 | #include <linux/cpu_pm.h> |
Ralf Baechle | 7aa1c8f | 2012-10-11 18:14:58 +0200 | [diff] [blame] | 19 | #include <linux/kexec.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #include <linux/init.h> |
Nathan Lynch | 8742cd2 | 2011-09-30 13:49:35 -0500 | [diff] [blame] | 21 | #include <linux/kernel.h> |
Paul Gortmaker | f9ded56 | 2012-02-28 19:24:46 -0500 | [diff] [blame] | 22 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include <linux/mm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/sched.h> |
| 25 | #include <linux/smp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/spinlock.h> |
| 27 | #include <linux/kallsyms.h> |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 28 | #include <linux/bootmem.h> |
Maxime Bizon | d4fd198 | 2006-07-20 18:52:02 +0200 | [diff] [blame] | 29 | #include <linux/interrupt.h> |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 30 | #include <linux/ptrace.h> |
Jason Wessel | 8854700 | 2008-07-29 15:58:53 -0500 | [diff] [blame] | 31 | #include <linux/kgdb.h> |
| 32 | #include <linux/kdebug.h> |
David Daney | c1bf207 | 2010-08-03 11:22:20 -0700 | [diff] [blame] | 33 | #include <linux/kprobes.h> |
Ralf Baechle | 69f3a7d | 2009-11-24 01:24:58 +0000 | [diff] [blame] | 34 | #include <linux/notifier.h> |
Jason Wessel | 5dd11d5 | 2010-05-20 21:04:26 -0500 | [diff] [blame] | 35 | #include <linux/kdb.h> |
David Howells | ca4d3e67 | 2010-10-07 14:08:54 +0100 | [diff] [blame] | 36 | #include <linux/irq.h> |
Deng-Cheng Zhu | 7f788d2 | 2010-10-12 19:37:21 +0800 | [diff] [blame] | 37 | #include <linux/perf_event.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | |
| 39 | #include <asm/bootinfo.h> |
| 40 | #include <asm/branch.h> |
| 41 | #include <asm/break.h> |
Ralf Baechle | 69f3a7d | 2009-11-24 01:24:58 +0000 | [diff] [blame] | 42 | #include <asm/cop2.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <asm/cpu.h> |
Ralf Baechle | 69f24d1 | 2013-09-17 10:25:47 +0200 | [diff] [blame] | 44 | #include <asm/cpu-type.h> |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 45 | #include <asm/dsp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <asm/fpu.h> |
Ralf Baechle | ba3049e | 2008-10-28 17:38:42 +0000 | [diff] [blame] | 47 | #include <asm/fpu_emulator.h> |
Ralf Baechle | bdc92d74 | 2013-05-21 16:59:19 +0200 | [diff] [blame] | 48 | #include <asm/idle.h> |
Leonid Yegoshin | b0a668f | 2014-12-03 15:47:03 +0000 | [diff] [blame] | 49 | #include <asm/mips-r2-to-r6-emul.h> |
Ralf Baechle | 340ee4b | 2005-08-17 17:44:08 +0000 | [diff] [blame] | 50 | #include <asm/mipsregs.h> |
| 51 | #include <asm/mipsmtregs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | #include <asm/module.h> |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 53 | #include <asm/msa.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #include <asm/pgtable.h> |
| 55 | #include <asm/ptrace.h> |
| 56 | #include <asm/sections.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #include <asm/tlbdebug.h> |
| 58 | #include <asm/traps.h> |
| 59 | #include <asm/uaccess.h> |
David Daney | b67b2b7 | 2008-09-23 00:08:45 -0700 | [diff] [blame] | 60 | #include <asm/watch.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | #include <asm/mmu_context.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | #include <asm/types.h> |
Atsushi Nemoto | 1df0f0f | 2006-09-26 23:44:01 +0900 | [diff] [blame] | 63 | #include <asm/stacktrace.h> |
Florian Fainelli | 92bbe1b | 2010-01-28 15:22:37 +0100 | [diff] [blame] | 64 | #include <asm/uasm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Atsushi Nemoto | c65a548 | 2007-11-12 02:05:18 +0900 | [diff] [blame] | 66 | extern void check_wait(void); |
Atsushi Nemoto | c65a548 | 2007-11-12 02:05:18 +0900 | [diff] [blame] | 67 | extern asmlinkage void rollback_handle_int(void); |
Ralf Baechle | e4ac58a | 2006-04-03 17:56:36 +0100 | [diff] [blame] | 68 | extern asmlinkage void handle_int(void); |
Ralf Baechle | 86a1708 | 2013-02-08 01:21:34 +0100 | [diff] [blame] | 69 | extern u32 handle_tlbl[]; |
| 70 | extern u32 handle_tlbs[]; |
| 71 | extern u32 handle_tlbm[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | extern asmlinkage void handle_adel(void); |
| 73 | extern asmlinkage void handle_ades(void); |
| 74 | extern asmlinkage void handle_ibe(void); |
| 75 | extern asmlinkage void handle_dbe(void); |
| 76 | extern asmlinkage void handle_sys(void); |
| 77 | extern asmlinkage void handle_bp(void); |
| 78 | extern asmlinkage void handle_ri(void); |
Atsushi Nemoto | 5b10496 | 2006-09-11 17:50:29 +0900 | [diff] [blame] | 79 | extern asmlinkage void handle_ri_rdhwr_vivt(void); |
| 80 | extern asmlinkage void handle_ri_rdhwr(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | extern asmlinkage void handle_cpu(void); |
| 82 | extern asmlinkage void handle_ov(void); |
| 83 | extern asmlinkage void handle_tr(void); |
Paul Burton | 2bcb3fb | 2014-01-27 15:23:12 +0000 | [diff] [blame] | 84 | extern asmlinkage void handle_msa_fpe(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | extern asmlinkage void handle_fpe(void); |
Leonid Yegoshin | 75b5b5e | 2013-11-14 16:12:31 +0000 | [diff] [blame] | 86 | extern asmlinkage void handle_ftlb(void); |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 87 | extern asmlinkage void handle_msa(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | extern asmlinkage void handle_mdmx(void); |
| 89 | extern asmlinkage void handle_watch(void); |
Ralf Baechle | 340ee4b | 2005-08-17 17:44:08 +0000 | [diff] [blame] | 90 | extern asmlinkage void handle_mt(void); |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 91 | extern asmlinkage void handle_dsp(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | extern asmlinkage void handle_mcheck(void); |
| 93 | extern asmlinkage void handle_reserved(void); |
Leonid Yegoshin | 5890f70 | 2014-07-15 14:09:56 +0100 | [diff] [blame] | 94 | extern void tlb_do_page_fault_0(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | void (*board_be_init)(void); |
| 97 | int (*board_be_handler)(struct pt_regs *regs, int is_fixup); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 98 | void (*board_nmi_handler_setup)(void); |
| 99 | void (*board_ejtag_handler_setup)(void); |
| 100 | void (*board_bind_eic_interrupt)(int irq, int regset); |
Kevin Cernekee | 6fb97ef | 2011-11-16 01:25:45 +0000 | [diff] [blame] | 101 | void (*board_ebase_setup)(void); |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 102 | void(*board_cache_error_setup)(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
Franck Bui-Huu | 4d157d5 | 2006-08-03 09:29:21 +0200 | [diff] [blame] | 104 | static void show_raw_backtrace(unsigned long reg29) |
Atsushi Nemoto | e889d78 | 2006-07-25 23:51:36 +0900 | [diff] [blame] | 105 | { |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 106 | unsigned long *sp = (unsigned long *)(reg29 & ~3); |
Atsushi Nemoto | e889d78 | 2006-07-25 23:51:36 +0900 | [diff] [blame] | 107 | unsigned long addr; |
| 108 | |
| 109 | printk("Call Trace:"); |
| 110 | #ifdef CONFIG_KALLSYMS |
| 111 | printk("\n"); |
| 112 | #endif |
Thomas Bogendoerfer | 10220c8 | 2008-05-12 17:58:48 +0200 | [diff] [blame] | 113 | 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 Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 119 | } |
Thomas Bogendoerfer | 10220c8 | 2008-05-12 17:58:48 +0200 | [diff] [blame] | 120 | if (__kernel_text_address(addr)) |
| 121 | print_ip_sym(addr); |
Atsushi Nemoto | e889d78 | 2006-07-25 23:51:36 +0900 | [diff] [blame] | 122 | } |
Thomas Bogendoerfer | 10220c8 | 2008-05-12 17:58:48 +0200 | [diff] [blame] | 123 | printk("\n"); |
Atsushi Nemoto | e889d78 | 2006-07-25 23:51:36 +0900 | [diff] [blame] | 124 | } |
| 125 | |
Atsushi Nemoto | f66686f | 2006-07-29 23:27:20 +0900 | [diff] [blame] | 126 | #ifdef CONFIG_KALLSYMS |
Atsushi Nemoto | 1df0f0f | 2006-09-26 23:44:01 +0900 | [diff] [blame] | 127 | int raw_show_trace; |
Atsushi Nemoto | f66686f | 2006-07-29 23:27:20 +0900 | [diff] [blame] | 128 | static 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 Nemoto | 1df0f0f | 2006-09-26 23:44:01 +0900 | [diff] [blame] | 134 | #endif |
Franck Bui-Huu | 4d157d5 | 2006-08-03 09:29:21 +0200 | [diff] [blame] | 135 | |
Ralf Baechle | eae23f2 | 2007-10-14 23:27:21 +0100 | [diff] [blame] | 136 | static void show_backtrace(struct task_struct *task, const struct pt_regs *regs) |
Atsushi Nemoto | f66686f | 2006-07-29 23:27:20 +0900 | [diff] [blame] | 137 | { |
Franck Bui-Huu | 4d157d5 | 2006-08-03 09:29:21 +0200 | [diff] [blame] | 138 | unsigned long sp = regs->regs[29]; |
| 139 | unsigned long ra = regs->regs[31]; |
Atsushi Nemoto | f66686f | 2006-07-29 23:27:20 +0900 | [diff] [blame] | 140 | unsigned long pc = regs->cp0_epc; |
Atsushi Nemoto | f66686f | 2006-07-29 23:27:20 +0900 | [diff] [blame] | 141 | |
Vincent Wen | e909be8 | 2012-07-19 09:11:16 +0200 | [diff] [blame] | 142 | if (!task) |
| 143 | task = current; |
| 144 | |
Atsushi Nemoto | f66686f | 2006-07-29 23:27:20 +0900 | [diff] [blame] | 145 | if (raw_show_trace || !__kernel_text_address(pc)) { |
Franck Bui-Huu | 87151ae | 2006-08-03 09:29:17 +0200 | [diff] [blame] | 146 | show_raw_backtrace(sp); |
Atsushi Nemoto | f66686f | 2006-07-29 23:27:20 +0900 | [diff] [blame] | 147 | return; |
| 148 | } |
| 149 | printk("Call Trace:\n"); |
Franck Bui-Huu | 4d157d5 | 2006-08-03 09:29:21 +0200 | [diff] [blame] | 150 | do { |
Franck Bui-Huu | 87151ae | 2006-08-03 09:29:17 +0200 | [diff] [blame] | 151 | print_ip_sym(pc); |
Atsushi Nemoto | 1924600 | 2006-09-29 18:02:51 +0900 | [diff] [blame] | 152 | pc = unwind_stack(task, &sp, pc, &ra); |
Franck Bui-Huu | 4d157d5 | 2006-08-03 09:29:21 +0200 | [diff] [blame] | 153 | } while (pc); |
Atsushi Nemoto | f66686f | 2006-07-29 23:27:20 +0900 | [diff] [blame] | 154 | printk("\n"); |
| 155 | } |
Atsushi Nemoto | f66686f | 2006-07-29 23:27:20 +0900 | [diff] [blame] | 156 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | /* |
| 158 | * This routine abuses get_user()/put_user() to reference pointers |
| 159 | * with at least a bit of error checking ... |
| 160 | */ |
Ralf Baechle | eae23f2 | 2007-10-14 23:27:21 +0100 | [diff] [blame] | 161 | static void show_stacktrace(struct task_struct *task, |
| 162 | const struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | { |
| 164 | const int field = 2 * sizeof(unsigned long); |
| 165 | long stackdata; |
| 166 | int i; |
Atsushi Nemoto | 5e0373b | 2007-07-13 23:02:42 +0900 | [diff] [blame] | 167 | unsigned long __user *sp = (unsigned long __user *)regs->regs[29]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
| 169 | printk("Stack :"); |
| 170 | i = 0; |
| 171 | while ((unsigned long) sp & (PAGE_SIZE - 1)) { |
| 172 | if (i && ((i % (64 / field)) == 0)) |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 173 | printk("\n "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | 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-Huu | 87151ae | 2006-08-03 09:29:17 +0200 | [diff] [blame] | 188 | show_backtrace(task, regs); |
Atsushi Nemoto | f66686f | 2006-07-29 23:27:20 +0900 | [diff] [blame] | 189 | } |
| 190 | |
Atsushi Nemoto | f66686f | 2006-07-29 23:27:20 +0900 | [diff] [blame] | 191 | void 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 Wessel | 5dd11d5 | 2010-05-20 21:04:26 -0500 | [diff] [blame] | 203 | #ifdef CONFIG_KGDB_KDB |
| 204 | } else if (atomic_read(&kgdb_active) != -1 && |
| 205 | kdb_current_regs) { |
| 206 | memcpy(®s, kdb_current_regs, sizeof(regs)); |
| 207 | #endif /* CONFIG_KGDB_KDB */ |
Atsushi Nemoto | f66686f | 2006-07-29 23:27:20 +0900 | [diff] [blame] | 208 | } else { |
| 209 | prepare_frametrace(®s); |
| 210 | } |
| 211 | } |
| 212 | show_stacktrace(task, ®s); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 213 | } |
| 214 | |
Atsushi Nemoto | e1bb8289 | 2007-07-13 23:51:46 +0900 | [diff] [blame] | 215 | static void show_code(unsigned int __user *pc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | { |
| 217 | long i; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 218 | unsigned short __user *pc16 = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
| 220 | printk("\nCode:"); |
| 221 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 222 | if ((unsigned long)pc & 1) |
| 223 | pc16 = (unsigned short __user *)((unsigned long)pc & ~1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | for(i = -3 ; i < 6 ; i++) { |
| 225 | unsigned int insn; |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 226 | if (pc16 ? __get_user(insn, pc16 + i) : __get_user(insn, pc + i)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | printk(" (Bad address in epc)\n"); |
| 228 | break; |
| 229 | } |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 230 | printk("%c%0*x%c", (i?' ':'<'), pc16 ? 4 : 8, insn, (i?' ':'>')); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | } |
| 232 | } |
| 233 | |
Ralf Baechle | eae23f2 | 2007-10-14 23:27:21 +0100 | [diff] [blame] | 234 | static void __show_regs(const struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | { |
| 236 | const int field = 2 * sizeof(unsigned long); |
| 237 | unsigned int cause = regs->cp0_cause; |
| 238 | int i; |
| 239 | |
Tejun Heo | a43cb95 | 2013-04-30 15:27:17 -0700 | [diff] [blame] | 240 | show_regs_print_info(KERN_DEFAULT); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | |
| 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-Huu | 9693a85 | 2007-02-02 17:41:47 +0100 | [diff] [blame] | 260 | #ifdef CONFIG_CPU_HAS_SMARTMIPS |
| 261 | printk("Acx : %0*lx\n", field, regs->acx); |
| 262 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | 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 Baechle | b012cff | 2008-07-15 18:44:33 +0100 | [diff] [blame] | 269 | printk("epc : %0*lx %pS\n", field, regs->cp0_epc, |
| 270 | (void *) regs->cp0_epc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | printk(" %s\n", print_tainted()); |
Ralf Baechle | b012cff | 2008-07-15 18:44:33 +0100 | [diff] [blame] | 272 | printk("ra : %0*lx %pS\n", field, regs->regs[31], |
| 273 | (void *) regs->regs[31]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 275 | printk("Status: %08x ", (uint32_t) regs->cp0_status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
Ralf Baechle | 1990e54 | 2013-06-26 17:06:34 +0200 | [diff] [blame] | 277 | if (cpu_has_3kex) { |
Maciej W. Rozycki | 3b2396d | 2005-06-22 20:43:29 +0000 | [diff] [blame] | 278 | 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 Baechle | 1990e54 | 2013-06-26 17:06:34 +0200 | [diff] [blame] | 290 | } else if (cpu_has_4kex) { |
Maciej W. Rozycki | 3b2396d | 2005-06-22 20:43:29 +0000 | [diff] [blame] | 291 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | 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 Baechle | 9966db25 | 2007-10-11 23:46:17 +0100 | [diff] [blame] | 326 | printk("PrId : %08x (%s)\n", read_c0_prid(), |
| 327 | cpu_name_string()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | } |
| 329 | |
Ralf Baechle | eae23f2 | 2007-10-14 23:27:21 +0100 | [diff] [blame] | 330 | /* |
| 331 | * FIXME: really the generic show_regs should take a const pointer argument. |
| 332 | */ |
| 333 | void show_regs(struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | { |
Ralf Baechle | eae23f2 | 2007-10-14 23:27:21 +0100 | [diff] [blame] | 335 | __show_regs((struct pt_regs *)regs); |
| 336 | } |
| 337 | |
David Daney | c1bf207 | 2010-08-03 11:22:20 -0700 | [diff] [blame] | 338 | void show_registers(struct pt_regs *regs) |
Ralf Baechle | eae23f2 | 2007-10-14 23:27:21 +0100 | [diff] [blame] | 339 | { |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 340 | const int field = 2 * sizeof(unsigned long); |
Leonid Yegoshin | 83e4da1e | 2013-10-08 12:39:31 +0100 | [diff] [blame] | 341 | mm_segment_t old_fs = get_fs(); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 342 | |
Ralf Baechle | eae23f2 | 2007-10-14 23:27:21 +0100 | [diff] [blame] | 343 | __show_regs(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | print_modules(); |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 345 | 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 Yegoshin | 83e4da1e | 2013-10-08 12:39:31 +0100 | [diff] [blame] | 356 | if (!user_mode(regs)) |
| 357 | /* Necessary for getting the correct stack content */ |
| 358 | set_fs(KERNEL_DS); |
Atsushi Nemoto | f66686f | 2006-07-29 23:27:20 +0900 | [diff] [blame] | 359 | show_stacktrace(current, regs); |
Atsushi Nemoto | e1bb8289 | 2007-07-13 23:51:46 +0900 | [diff] [blame] | 360 | show_code((unsigned int __user *) regs->cp0_epc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 361 | printk("\n"); |
Leonid Yegoshin | 83e4da1e | 2013-10-08 12:39:31 +0100 | [diff] [blame] | 362 | set_fs(old_fs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | } |
| 364 | |
David Daney | 70dc6f0 | 2010-08-03 15:44:43 -0700 | [diff] [blame] | 365 | static int regs_to_trapnr(struct pt_regs *regs) |
| 366 | { |
| 367 | return (regs->cp0_cause >> 2) & 0x1f; |
| 368 | } |
| 369 | |
Wu Zhangjin | 4d85f6a | 2011-07-23 12:41:24 +0000 | [diff] [blame] | 370 | static DEFINE_RAW_SPINLOCK(die_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | |
David Daney | 70dc6f0 | 2010-08-03 15:44:43 -0700 | [diff] [blame] | 372 | void __noreturn die(const char *str, struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | { |
| 374 | static int die_counter; |
Yury Polyanskiy | ce384d8 | 2010-04-26 00:53:10 -0400 | [diff] [blame] | 375 | int sig = SIGSEGV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | |
Nathan Lynch | 8742cd2 | 2011-09-30 13:49:35 -0500 | [diff] [blame] | 377 | oops_enter(); |
| 378 | |
Ralf Baechle | dc73e4c | 2013-10-09 08:54:15 +0200 | [diff] [blame] | 379 | if (notify_die(DIE_OOPS, str, regs, 0, regs_to_trapnr(regs), |
| 380 | SIGSEGV) == NOTIFY_STOP) |
Ralf Baechle | 10423c9 | 2011-05-13 10:33:28 +0100 | [diff] [blame] | 381 | sig = 0; |
Jason Wessel | 5dd11d5 | 2010-05-20 21:04:26 -0500 | [diff] [blame] | 382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | console_verbose(); |
Wu Zhangjin | 4d85f6a | 2011-07-23 12:41:24 +0000 | [diff] [blame] | 384 | raw_spin_lock_irq(&die_lock); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 385 | bust_spinlocks(1); |
Yury Polyanskiy | ce384d8 | 2010-04-26 00:53:10 -0400 | [diff] [blame] | 386 | |
Ralf Baechle | 178086c | 2005-10-13 17:07:54 +0100 | [diff] [blame] | 387 | printk("%s[#%d]:\n", str, ++die_counter); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | show_registers(regs); |
Rusty Russell | 373d4d0 | 2013-01-21 17:17:39 +1030 | [diff] [blame] | 389 | add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE); |
Wu Zhangjin | 4d85f6a | 2011-07-23 12:41:24 +0000 | [diff] [blame] | 390 | raw_spin_unlock_irq(&die_lock); |
Maxime Bizon | d4fd198 | 2006-07-20 18:52:02 +0200 | [diff] [blame] | 391 | |
Nathan Lynch | 8742cd2 | 2011-09-30 13:49:35 -0500 | [diff] [blame] | 392 | oops_exit(); |
| 393 | |
Maxime Bizon | d4fd198 | 2006-07-20 18:52:02 +0200 | [diff] [blame] | 394 | if (in_interrupt()) |
| 395 | panic("Fatal exception in interrupt"); |
| 396 | |
| 397 | if (panic_on_oops) { |
Ralf Baechle | ab75dc0 | 2011-11-17 15:07:31 +0000 | [diff] [blame] | 398 | printk(KERN_EMERG "Fatal exception: panic in 5 seconds"); |
Maxime Bizon | d4fd198 | 2006-07-20 18:52:02 +0200 | [diff] [blame] | 399 | ssleep(5); |
| 400 | panic("Fatal exception"); |
| 401 | } |
| 402 | |
Ralf Baechle | 7aa1c8f | 2012-10-11 18:14:58 +0200 | [diff] [blame] | 403 | if (regs && kexec_should_crash(current)) |
| 404 | crash_kexec(regs); |
| 405 | |
Yury Polyanskiy | ce384d8 | 2010-04-26 00:53:10 -0400 | [diff] [blame] | 406 | do_exit(sig); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | } |
| 408 | |
Thomas Bogendoerfer | 0510617 | 2008-08-04 19:44:34 +0200 | [diff] [blame] | 409 | extern struct exception_table_entry __start___dbe_table[]; |
| 410 | extern struct exception_table_entry __stop___dbe_table[]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
Ralf Baechle | b6dcec9 | 2007-02-18 15:57:09 +0000 | [diff] [blame] | 412 | __asm__( |
| 413 | " .section __dbe_table, \"a\"\n" |
| 414 | " .previous \n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
| 416 | /* Given an address, look for it in the exception tables. */ |
| 417 | static 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 | |
| 427 | asmlinkage 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 Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 433 | enum ctx_state prev_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 435 | prev_state = exception_enter(); |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 436 | /* XXX For now. Fixme, this searches the wrong table ... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | 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 Nemoto | 28fc582 | 2007-07-13 01:49:49 +0900 | [diff] [blame] | 444 | action = board_be_handler(regs, fixup != NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | |
| 446 | switch (action) { |
| 447 | case MIPS_BE_DISCARD: |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 448 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 449 | case MIPS_BE_FIXUP: |
| 450 | if (fixup) { |
| 451 | regs->cp0_epc = fixup->nextinsn; |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 452 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 453 | } |
| 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 Baechle | dc73e4c | 2013-10-09 08:54:15 +0200 | [diff] [blame] | 465 | if (notify_die(DIE_OOPS, "bus error", regs, 0, regs_to_trapnr(regs), |
| 466 | SIGBUS) == NOTIFY_STOP) |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 467 | goto out; |
Jason Wessel | 8854700 | 2008-07-29 15:58:53 -0500 | [diff] [blame] | 468 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 469 | die_if_kernel("Oops", regs); |
| 470 | force_sig(SIGBUS, current); |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 471 | |
| 472 | out: |
| 473 | exception_exit(prev_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | } |
| 475 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | /* |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 477 | * ll/sc, rdhwr, sync emulation |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | */ |
| 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. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 486 | #define SPEC0 0x00000000 |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 487 | #define SPEC3 0x7c000000 |
| 488 | #define RD 0x0000f800 |
| 489 | #define FUNC 0x0000003f |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 490 | #define SYNC 0x0000000f |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 491 | #define RDHWR 0x0000003b |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 493 | /* 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 499 | /* |
| 500 | * The ll_bit is cleared by r*_switch.S |
| 501 | */ |
| 502 | |
Ralf Baechle | f1e39a4 | 2009-09-17 02:25:05 +0200 | [diff] [blame] | 503 | unsigned int ll_bit; |
| 504 | struct task_struct *ll_task; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 506 | static inline int simulate_ll(struct pt_regs *regs, unsigned int opcode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 507 | { |
Ralf Baechle | fe00f94 | 2005-03-01 19:22:29 +0000 | [diff] [blame] | 508 | unsigned long value, __user *vaddr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 509 | long offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 510 | |
| 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 Baechle | fe00f94 | 2005-03-01 19:22:29 +0000 | [diff] [blame] | 521 | vaddr = (unsigned long __user *) |
Steven J. Hill | b968831 | 2013-01-12 23:29:27 +0000 | [diff] [blame] | 522 | ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 524 | if ((unsigned long)vaddr & 3) |
| 525 | return SIGBUS; |
| 526 | if (get_user(value, vaddr)) |
| 527 | return SIGSEGV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | |
| 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. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 542 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | } |
| 544 | |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 545 | static inline int simulate_sc(struct pt_regs *regs, unsigned int opcode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | { |
Ralf Baechle | fe00f94 | 2005-03-01 19:22:29 +0000 | [diff] [blame] | 547 | unsigned long __user *vaddr; |
| 548 | unsigned long reg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | long offset; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | |
| 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 Baechle | fe00f94 | 2005-03-01 19:22:29 +0000 | [diff] [blame] | 561 | vaddr = (unsigned long __user *) |
Steven J. Hill | b968831 | 2013-01-12 23:29:27 +0000 | [diff] [blame] | 562 | ((unsigned long)(regs->regs[(opcode & BASE) >> 21]) + offset); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | reg = (opcode & RT) >> 16; |
| 564 | |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 565 | if ((unsigned long)vaddr & 3) |
| 566 | return SIGBUS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | |
| 568 | preempt_disable(); |
| 569 | |
| 570 | if (ll_bit == 0 || ll_task != current) { |
| 571 | regs->regs[reg] = 0; |
| 572 | preempt_enable(); |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 573 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | preempt_enable(); |
| 577 | |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 578 | if (put_user(regs->regs[reg], vaddr)) |
| 579 | return SIGSEGV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | |
| 581 | regs->regs[reg] = 1; |
| 582 | |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 583 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 584 | } |
| 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. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 593 | static int simulate_llsc(struct pt_regs *regs, unsigned int opcode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | { |
Deng-Cheng Zhu | 7f788d2 | 2010-10-12 19:37:21 +0800 | [diff] [blame] | 595 | if ((opcode & OPCODE) == LL) { |
| 596 | perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS, |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 597 | 1, regs, 0); |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 598 | return simulate_ll(regs, opcode); |
Deng-Cheng Zhu | 7f788d2 | 2010-10-12 19:37:21 +0800 | [diff] [blame] | 599 | } |
| 600 | if ((opcode & OPCODE) == SC) { |
| 601 | perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS, |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 602 | 1, regs, 0); |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 603 | return simulate_sc(regs, opcode); |
Deng-Cheng Zhu | 7f788d2 | 2010-10-12 19:37:21 +0800 | [diff] [blame] | 604 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 606 | return -1; /* Must be something else ... */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | } |
| 608 | |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 609 | /* |
| 610 | * Simulate trapping 'rdhwr' instructions to provide user accessible |
Chris Dearman | 1f5826b | 2006-05-08 18:02:16 +0100 | [diff] [blame] | 611 | * registers not implemented in hardware. |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 612 | */ |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 613 | static int simulate_rdhwr(struct pt_regs *regs, int rd, int rt) |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 614 | { |
Al Viro | dc8f602 | 2006-01-12 01:06:07 -0800 | [diff] [blame] | 615 | struct thread_info *ti = task_thread_info(current); |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 616 | |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 617 | 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 Baechle | 69f24d1 | 2013-09-17 10:25:47 +0200 | [diff] [blame] | 631 | switch (current_cpu_type()) { |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 632 | 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 | |
| 648 | static int simulate_rdhwr_normal(struct pt_regs *regs, unsigned int opcode) |
| 649 | { |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 650 | if ((opcode & OPCODE) == SPEC3 && (opcode & FUNC) == RDHWR) { |
| 651 | int rd = (opcode & RD) >> 11; |
| 652 | int rt = (opcode & RT) >> 16; |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 653 | |
| 654 | simulate_rdhwr(regs, rd, rt); |
| 655 | return 0; |
| 656 | } |
| 657 | |
| 658 | /* Not ours. */ |
| 659 | return -1; |
| 660 | } |
| 661 | |
| 662 | static 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 Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 669 | } |
| 670 | |
Daniel Jacobowitz | 56ebd51 | 2005-11-26 22:34:41 -0500 | [diff] [blame] | 671 | /* Not ours. */ |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 672 | return -1; |
| 673 | } |
Ralf Baechle | e567988 | 2006-11-30 01:14:47 +0000 | [diff] [blame] | 674 | |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 675 | static int simulate_sync(struct pt_regs *regs, unsigned int opcode) |
| 676 | { |
Deng-Cheng Zhu | 7f788d2 | 2010-10-12 19:37:21 +0800 | [diff] [blame] | 677 | if ((opcode & OPCODE) == SPEC0 && (opcode & FUNC) == SYNC) { |
| 678 | perf_sw_event(PERF_COUNT_SW_EMULATION_FAULTS, |
Peter Zijlstra | a8b0ca1 | 2011-06-27 14:41:57 +0200 | [diff] [blame] | 679 | 1, regs, 0); |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 680 | return 0; |
Deng-Cheng Zhu | 7f788d2 | 2010-10-12 19:37:21 +0800 | [diff] [blame] | 681 | } |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 682 | |
| 683 | return -1; /* Must be something else ... */ |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 684 | } |
| 685 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | asmlinkage void do_ov(struct pt_regs *regs) |
| 687 | { |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 688 | enum ctx_state prev_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 689 | siginfo_t info; |
| 690 | |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 691 | prev_state = exception_enter(); |
Ralf Baechle | 36ccf1c | 2006-02-14 21:04:54 +0000 | [diff] [blame] | 692 | die_if_kernel("Integer overflow", regs); |
| 693 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | info.si_code = FPE_INTOVF; |
| 695 | info.si_signo = SIGFPE; |
| 696 | info.si_errno = 0; |
Ralf Baechle | fe00f94 | 2005-03-01 19:22:29 +0000 | [diff] [blame] | 697 | info.si_addr = (void __user *) regs->cp0_epc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 698 | force_sig_info(SIGFPE, &info, current); |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 699 | exception_exit(prev_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | } |
| 701 | |
Leonid Yegoshin | 102cedc | 2013-03-25 12:09:02 -0500 | [diff] [blame] | 702 | int process_fpemu_return(int sig, void __user *fault_addr) |
David Daney | 515b029 | 2010-10-21 16:32:26 -0700 | [diff] [blame] | 703 | { |
| 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 Bueso | f7a89f1 | 2014-04-19 19:26:28 -0700 | [diff] [blame] | 709 | down_read(¤t->mm->mmap_sem); |
David Daney | 515b029 | 2010-10-21 16:32:26 -0700 | [diff] [blame] | 710 | if (find_vma(current->mm, (unsigned long)fault_addr)) |
| 711 | si.si_code = SEGV_ACCERR; |
| 712 | else |
| 713 | si.si_code = SEGV_MAPERR; |
Davidlohr Bueso | f7a89f1 | 2014-04-19 19:26:28 -0700 | [diff] [blame] | 714 | up_read(¤t->mm->mmap_sem); |
David Daney | 515b029 | 2010-10-21 16:32:26 -0700 | [diff] [blame] | 715 | } 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 Burton | 4227a2d | 2014-09-11 08:30:20 +0100 | [diff] [blame] | 728 | static 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, ¤t->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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | /* |
| 773 | * XXX Delayed fp exceptions when doing a lazy ctx switch XXX |
| 774 | */ |
| 775 | asmlinkage void do_fpe(struct pt_regs *regs, unsigned long fcr31) |
| 776 | { |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 777 | enum ctx_state prev_state; |
David Daney | 515b029 | 2010-10-21 16:32:26 -0700 | [diff] [blame] | 778 | siginfo_t info = {0}; |
Thiemo Seufer | 948a34c | 2007-08-22 01:42:04 +0100 | [diff] [blame] | 779 | |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 780 | prev_state = exception_enter(); |
Ralf Baechle | dc73e4c | 2013-10-09 08:54:15 +0200 | [diff] [blame] | 781 | if (notify_die(DIE_FP, "FP exception", regs, 0, regs_to_trapnr(regs), |
| 782 | SIGFPE) == NOTIFY_STOP) |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 783 | goto out; |
Chris Dearman | 57725f9 | 2006-06-30 23:35:28 +0100 | [diff] [blame] | 784 | die_if_kernel("FP exception in kernel code", regs); |
| 785 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | if (fcr31 & FPU_CSR_UNI_X) { |
| 787 | int sig; |
David Daney | 515b029 | 2010-10-21 16:32:26 -0700 | [diff] [blame] | 788 | void __user *fault_addr = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 790 | /* |
Ralf Baechle | a3dddd5 | 2006-03-11 08:18:41 +0000 | [diff] [blame] | 791 | * Unimplemented operation exception. If we've got the full |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | * 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 Baechle | cd21dfc | 2005-04-28 13:39:10 +0000 | [diff] [blame] | 800 | /* Ensure 'resume' not overwrite saved fp context again. */ |
Atsushi Nemoto | 53dc802 | 2007-03-10 01:07:45 +0900 | [diff] [blame] | 801 | lose_fpu(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | |
| 803 | /* Run the emulator */ |
David Daney | 515b029 | 2010-10-21 16:32:26 -0700 | [diff] [blame] | 804 | sig = fpu_emulator_cop1Handler(regs, ¤t->thread.fpu, 1, |
| 805 | &fault_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | |
| 807 | /* |
| 808 | * We can't allow the emulated instruction to leave any of |
| 809 | * the cause bit set in $fcr31. |
| 810 | */ |
Atsushi Nemoto | eae8907 | 2006-05-16 01:26:03 +0900 | [diff] [blame] | 811 | current->thread.fpu.fcr31 &= ~FPU_CSR_ALL_X; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | |
| 813 | /* Restore the hardware register state */ |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 814 | own_fpu(1); /* Using the FPU again. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | |
| 816 | /* If something went wrong, signal */ |
David Daney | 515b029 | 2010-10-21 16:32:26 -0700 | [diff] [blame] | 817 | process_fpemu_return(sig, fault_addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 819 | goto out; |
Thiemo Seufer | 948a34c | 2007-08-22 01:42:04 +0100 | [diff] [blame] | 820 | } 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 Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 836 | |
| 837 | out: |
| 838 | exception_exit(prev_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 839 | } |
| 840 | |
Leonid Yegoshin | b0a668f | 2014-12-03 15:47:03 +0000 | [diff] [blame] | 841 | void do_trap_or_bp(struct pt_regs *regs, unsigned int code, |
Ralf Baechle | df27005 | 2008-04-20 16:28:54 +0100 | [diff] [blame] | 842 | const char *str) |
| 843 | { |
| 844 | siginfo_t info; |
| 845 | char b[40]; |
| 846 | |
Jason Wessel | 5dd11d5 | 2010-05-20 21:04:26 -0500 | [diff] [blame] | 847 | #ifdef CONFIG_KGDB_LOW_LEVEL_TRAP |
David Daney | 70dc6f0 | 2010-08-03 15:44:43 -0700 | [diff] [blame] | 848 | if (kgdb_ll_trap(DIE_TRAP, str, regs, code, regs_to_trapnr(regs), SIGTRAP) == NOTIFY_STOP) |
Jason Wessel | 5dd11d5 | 2010-05-20 21:04:26 -0500 | [diff] [blame] | 849 | return; |
| 850 | #endif /* CONFIG_KGDB_LOW_LEVEL_TRAP */ |
| 851 | |
Ralf Baechle | dc73e4c | 2013-10-09 08:54:15 +0200 | [diff] [blame] | 852 | if (notify_die(DIE_TRAP, str, regs, code, regs_to_trapnr(regs), |
| 853 | SIGTRAP) == NOTIFY_STOP) |
Jason Wessel | 8854700 | 2008-07-29 15:58:53 -0500 | [diff] [blame] | 854 | return; |
| 855 | |
Ralf Baechle | df27005 | 2008-04-20 16:28:54 +0100 | [diff] [blame] | 856 | /* |
| 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 Baechle | ba3049e | 2008-10-28 17:38:42 +0000 | [diff] [blame] | 880 | case BRK_MEMU: |
| 881 | /* |
Maciej W. Rozycki | 1f44377 | 2015-04-03 23:24:14 +0100 | [diff] [blame] | 882 | * 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 Baechle | ba3049e | 2008-10-28 17:38:42 +0000 | [diff] [blame] | 885 | * |
| 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 Baechle | df27005 | 2008-04-20 16:28:54 +0100 | [diff] [blame] | 895 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 902 | asmlinkage void do_bp(struct pt_regs *regs) |
| 903 | { |
Maciej W. Rozycki | f6a31da | 2015-04-03 23:26:27 +0100 | [diff] [blame] | 904 | unsigned long epc = msk_isa16_mode(exception_epc(regs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | unsigned int opcode, bcode; |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 906 | enum ctx_state prev_state; |
Leonid Yegoshin | 078dde5 | 2013-12-04 16:39:34 +0000 | [diff] [blame] | 907 | mm_segment_t seg; |
| 908 | |
| 909 | seg = get_fs(); |
| 910 | if (!user_mode(regs)) |
| 911 | set_fs(KERNEL_DS); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 913 | prev_state = exception_enter(); |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 914 | if (get_isa16_mode(regs->cp0_epc)) { |
Maciej W. Rozycki | f6a31da | 2015-04-03 23:26:27 +0100 | [diff] [blame] | 915 | 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. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 929 | goto out_sigsegv; |
Markos Chandras | b08a9c9 | 2013-12-04 16:20:08 +0000 | [diff] [blame] | 930 | opcode = (instr[0] << 16) | instr[1]; |
Maciej W. Rozycki | f6a31da | 2015-04-03 23:26:27 +0100 | [diff] [blame] | 931 | bcode = (opcode >> 6) & ((1 << 20) - 1); |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 932 | } |
| 933 | } else { |
Maciej W. Rozycki | f6a31da | 2015-04-03 23:26:27 +0100 | [diff] [blame] | 934 | if (__get_user(opcode, (unsigned int __user *)epc)) |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 935 | goto out_sigsegv; |
Maciej W. Rozycki | f6a31da | 2015-04-03 23:26:27 +0100 | [diff] [blame] | 936 | bcode = (opcode >> 6) & ((1 << 20) - 1); |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 937 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | |
| 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 Baechle | df27005 | 2008-04-20 16:28:54 +0100 | [diff] [blame] | 945 | if (bcode >= (1 << 10)) |
Maciej W. Rozycki | c987503 | 2015-04-03 23:26:32 +0100 | [diff] [blame] | 946 | bcode = ((bcode & ((1 << 10) - 1)) << 10) | (bcode >> 10); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 947 | |
David Daney | c1bf207 | 2010-08-03 11:22:20 -0700 | [diff] [blame] | 948 | /* |
| 949 | * notify the kprobe handlers, if instruction is likely to |
| 950 | * pertain to them. |
| 951 | */ |
| 952 | switch (bcode) { |
| 953 | case BRK_KPROBE_BP: |
Ralf Baechle | dc73e4c | 2013-10-09 08:54:15 +0200 | [diff] [blame] | 954 | if (notify_die(DIE_BREAK, "debug", regs, bcode, |
| 955 | regs_to_trapnr(regs), SIGTRAP) == NOTIFY_STOP) |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 956 | goto out; |
David Daney | c1bf207 | 2010-08-03 11:22:20 -0700 | [diff] [blame] | 957 | else |
| 958 | break; |
| 959 | case BRK_KPROBE_SSTEPBP: |
Ralf Baechle | dc73e4c | 2013-10-09 08:54:15 +0200 | [diff] [blame] | 960 | if (notify_die(DIE_SSTEPBP, "single_step", regs, bcode, |
| 961 | regs_to_trapnr(regs), SIGTRAP) == NOTIFY_STOP) |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 962 | goto out; |
David Daney | c1bf207 | 2010-08-03 11:22:20 -0700 | [diff] [blame] | 963 | else |
| 964 | break; |
| 965 | default: |
| 966 | break; |
| 967 | } |
| 968 | |
Ralf Baechle | df27005 | 2008-04-20 16:28:54 +0100 | [diff] [blame] | 969 | do_trap_or_bp(regs, bcode, "Break"); |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 970 | |
| 971 | out: |
Leonid Yegoshin | 078dde5 | 2013-12-04 16:39:34 +0000 | [diff] [blame] | 972 | set_fs(seg); |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 973 | exception_exit(prev_state); |
Atsushi Nemoto | 90fccb1 | 2007-02-06 16:02:21 +0900 | [diff] [blame] | 974 | return; |
Ralf Baechle | e567988 | 2006-11-30 01:14:47 +0000 | [diff] [blame] | 975 | |
| 976 | out_sigsegv: |
| 977 | force_sig(SIGSEGV, current); |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 978 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | } |
| 980 | |
| 981 | asmlinkage void do_tr(struct pt_regs *regs) |
| 982 | { |
Maciej W. Rozycki | a9a6e7a | 2013-05-23 14:31:23 +0000 | [diff] [blame] | 983 | u32 opcode, tcode = 0; |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 984 | enum ctx_state prev_state; |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 985 | u16 instr[2]; |
Leonid Yegoshin | 078dde5 | 2013-12-04 16:39:34 +0000 | [diff] [blame] | 986 | mm_segment_t seg; |
Maciej W. Rozycki | a9a6e7a | 2013-05-23 14:31:23 +0000 | [diff] [blame] | 987 | unsigned long epc = msk_isa16_mode(exception_epc(regs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | |
Leonid Yegoshin | 078dde5 | 2013-12-04 16:39:34 +0000 | [diff] [blame] | 989 | seg = get_fs(); |
| 990 | if (!user_mode(regs)) |
| 991 | set_fs(get_ds()); |
| 992 | |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 993 | prev_state = exception_enter(); |
Maciej W. Rozycki | a9a6e7a | 2013-05-23 14:31:23 +0000 | [diff] [blame] | 994 | 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. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 997 | goto out_sigsegv; |
Maciej W. Rozycki | a9a6e7a | 2013-05-23 14:31:23 +0000 | [diff] [blame] | 998 | 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. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1008 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1009 | |
Ralf Baechle | df27005 | 2008-04-20 16:28:54 +0100 | [diff] [blame] | 1010 | do_trap_or_bp(regs, tcode, "Trap"); |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1011 | |
| 1012 | out: |
Leonid Yegoshin | 078dde5 | 2013-12-04 16:39:34 +0000 | [diff] [blame] | 1013 | set_fs(seg); |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1014 | exception_exit(prev_state); |
Atsushi Nemoto | 90fccb1 | 2007-02-06 16:02:21 +0900 | [diff] [blame] | 1015 | return; |
Ralf Baechle | e567988 | 2006-11-30 01:14:47 +0000 | [diff] [blame] | 1016 | |
| 1017 | out_sigsegv: |
| 1018 | force_sig(SIGSEGV, current); |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1019 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1020 | } |
| 1021 | |
| 1022 | asmlinkage void do_ri(struct pt_regs *regs) |
| 1023 | { |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1024 | unsigned int __user *epc = (unsigned int __user *)exception_epc(regs); |
| 1025 | unsigned long old_epc = regs->cp0_epc; |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1026 | unsigned long old31 = regs->regs[31]; |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1027 | enum ctx_state prev_state; |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1028 | unsigned int opcode = 0; |
| 1029 | int status = -1; |
| 1030 | |
Leonid Yegoshin | b0a668f | 2014-12-03 15:47:03 +0000 | [diff] [blame] | 1031 | /* |
| 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. Rozycki | 4a7c237 | 2015-04-03 23:24:51 +0100 | [diff] [blame] | 1036 | 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 | ¤t->thread.cp0_baduaddr); |
| 1049 | task_thread_info(current)->r2_emul_return = 1; |
| 1050 | return; |
Leonid Yegoshin | b0a668f | 2014-12-03 15:47:03 +0000 | [diff] [blame] | 1051 | } |
| 1052 | } |
| 1053 | |
| 1054 | no_r2_instr: |
| 1055 | |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1056 | prev_state = exception_enter(); |
Leonid Yegoshin | b0a668f | 2014-12-03 15:47:03 +0000 | [diff] [blame] | 1057 | |
Ralf Baechle | dc73e4c | 2013-10-09 08:54:15 +0200 | [diff] [blame] | 1058 | if (notify_die(DIE_RI, "RI Fault", regs, 0, regs_to_trapnr(regs), |
| 1059 | SIGILL) == NOTIFY_STOP) |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1060 | goto out; |
Jason Wessel | 8854700 | 2008-07-29 15:58:53 -0500 | [diff] [blame] | 1061 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1062 | die_if_kernel("Reserved instruction in kernel code", regs); |
| 1063 | |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1064 | if (unlikely(compute_return_epc(regs) < 0)) |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1065 | goto out; |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 1066 | |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1067 | if (get_isa16_mode(regs->cp0_epc)) { |
| 1068 | unsigned short mmop[2] = { 0 }; |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1069 | |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1070 | 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. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1075 | |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1076 | 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. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1081 | |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1082 | 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 Burton | 4227a2d | 2014-09-11 08:30:20 +0100 | [diff] [blame] | 1090 | |
| 1091 | if (status < 0) |
| 1092 | status = simulate_fp(regs, opcode, old_epc, old31); |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1093 | } |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1094 | |
| 1095 | if (status < 0) |
| 1096 | status = SIGILL; |
| 1097 | |
| 1098 | if (unlikely(status > 0)) { |
| 1099 | regs->cp0_epc = old_epc; /* Undo skip-over. */ |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1100 | regs->regs[31] = old31; |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1101 | force_sig(status, current); |
| 1102 | } |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1103 | |
| 1104 | out: |
| 1105 | exception_exit(prev_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1106 | } |
| 1107 | |
Ralf Baechle | d223a86 | 2007-07-10 17:33:02 +0100 | [diff] [blame] | 1108 | /* |
| 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 | */ |
| 1113 | static 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. Kissell | 9cc1236 | 2008-09-09 21:33:36 +0200 | [diff] [blame] | 1126 | current->thread.user_cpus_allowed |
| 1127 | = current->cpus_allowed; |
| 1128 | cpus_and(tmask, current->cpus_allowed, |
| 1129 | mt_fpu_cpumask); |
Julia Lawall | ed1bbde | 2010-03-26 23:03:07 +0100 | [diff] [blame] | 1130 | set_cpus_allowed_ptr(current, &tmask); |
Ralf Baechle | 293c5bd | 2007-07-25 16:19:33 +0100 | [diff] [blame] | 1131 | set_thread_flag(TIF_FPUBOUND); |
Ralf Baechle | d223a86 | 2007-07-10 17:33:02 +0100 | [diff] [blame] | 1132 | } |
| 1133 | } |
| 1134 | #endif /* CONFIG_MIPS_MT_FPAFF */ |
| 1135 | } |
| 1136 | |
Ralf Baechle | 69f3a7d | 2009-11-24 01:24:58 +0000 | [diff] [blame] | 1137 | /* |
| 1138 | * No lock; only written during early bootup by CPU 0. |
| 1139 | */ |
| 1140 | static RAW_NOTIFIER_HEAD(cu2_chain); |
| 1141 | |
| 1142 | int __ref register_cu2_notifier(struct notifier_block *nb) |
| 1143 | { |
| 1144 | return raw_notifier_chain_register(&cu2_chain, nb); |
| 1145 | } |
| 1146 | |
| 1147 | int cu2_notifier_call_chain(unsigned long val, void *v) |
| 1148 | { |
| 1149 | return raw_notifier_call_chain(&cu2_chain, val, v); |
| 1150 | } |
| 1151 | |
| 1152 | static int default_cu2_call(struct notifier_block *nfb, unsigned long action, |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 1153 | void *data) |
Ralf Baechle | 69f3a7d | 2009-11-24 01:24:58 +0000 | [diff] [blame] | 1154 | { |
| 1155 | struct pt_regs *regs = data; |
| 1156 | |
Jayachandran C | 83bee79 | 2013-06-10 06:30:01 +0000 | [diff] [blame] | 1157 | die_if_kernel("COP2: Unhandled kernel unaligned access or invalid " |
Ralf Baechle | 69f3a7d | 2009-11-24 01:24:58 +0000 | [diff] [blame] | 1158 | "instruction", regs); |
Jayachandran C | 83bee79 | 2013-06-10 06:30:01 +0000 | [diff] [blame] | 1159 | force_sig(SIGILL, current); |
Ralf Baechle | 69f3a7d | 2009-11-24 01:24:58 +0000 | [diff] [blame] | 1160 | |
| 1161 | return NOTIFY_OK; |
| 1162 | } |
| 1163 | |
Paul Burton | 9791554 | 2015-01-08 12:17:37 +0000 | [diff] [blame] | 1164 | static 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 Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1176 | static int enable_restore_fp_context(int msa) |
| 1177 | { |
Paul Burton | c901775 | 2014-07-30 08:53:20 +0100 | [diff] [blame] | 1178 | int err, was_fpu_owner, prior_msa; |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1179 | |
Paul Burton | 9791554 | 2015-01-08 12:17:37 +0000 | [diff] [blame] | 1180 | /* |
| 1181 | * If an FP mode switch is currently underway, wait for it to |
| 1182 | * complete before proceeding. |
| 1183 | */ |
| 1184 | wait_on_atomic_t(¤t->mm->context.fp_mode_switching, |
| 1185 | wait_on_fp_mode_switch, TASK_KILLABLE); |
| 1186 | |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1187 | if (!used_math()) { |
| 1188 | /* First time FP context user. */ |
Paul Burton | 762a1f4 | 2014-07-11 16:44:35 +0100 | [diff] [blame] | 1189 | preempt_disable(); |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1190 | err = init_fpu(); |
Paul Burton | c901775 | 2014-07-30 08:53:20 +0100 | [diff] [blame] | 1191 | if (msa && !err) { |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1192 | enable_msa(); |
Paul Burton | c901775 | 2014-07-30 08:53:20 +0100 | [diff] [blame] | 1193 | _init_msa_upper(); |
Paul Burton | 732c0c3 | 2014-07-31 14:53:16 +0100 | [diff] [blame] | 1194 | set_thread_flag(TIF_USEDMSA); |
| 1195 | set_thread_flag(TIF_MSA_CTX_LIVE); |
Paul Burton | c901775 | 2014-07-30 08:53:20 +0100 | [diff] [blame] | 1196 | } |
Paul Burton | 762a1f4 | 2014-07-11 16:44:35 +0100 | [diff] [blame] | 1197 | preempt_enable(); |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1198 | 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 Burton | 762a1f4 | 2014-07-11 16:44:35 +0100 | [diff] [blame] | 1237 | preempt_disable(); |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1238 | was_fpu_owner = is_fpu_owner(); |
Paul Burton | 762a1f4 | 2014-07-11 16:44:35 +0100 | [diff] [blame] | 1239 | err = own_fpu_inatomic(0); |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1240 | if (err) |
Paul Burton | 762a1f4 | 2014-07-11 16:44:35 +0100 | [diff] [blame] | 1241 | goto out; |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1242 | |
| 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 Burton | c901775 | 2014-07-30 08:53:20 +0100 | [diff] [blame] | 1250 | * 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 Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1253 | */ |
Paul Burton | c901775 | 2014-07-30 08:53:20 +0100 | [diff] [blame] | 1254 | prior_msa = test_and_set_thread_flag(TIF_MSA_CTX_LIVE); |
| 1255 | if (!prior_msa && was_fpu_owner) { |
| 1256 | _init_msa_upper(); |
Paul Burton | 762a1f4 | 2014-07-11 16:44:35 +0100 | [diff] [blame] | 1257 | |
| 1258 | goto out; |
Paul Burton | c901775 | 2014-07-30 08:53:20 +0100 | [diff] [blame] | 1259 | } |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1260 | |
Paul Burton | c901775 | 2014-07-30 08:53:20 +0100 | [diff] [blame] | 1261 | 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 Burton | b834067 | 2014-07-11 16:44:29 +0100 | [diff] [blame] | 1267 | |
Paul Burton | c901775 | 2014-07-30 08:53:20 +0100 | [diff] [blame] | 1268 | /* |
| 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 Burton | b834067 | 2014-07-11 16:44:29 +0100 | [diff] [blame] | 1277 | |
Paul Burton | c901775 | 2014-07-30 08:53:20 +0100 | [diff] [blame] | 1278 | /* Restore the scalar FP control & status register */ |
| 1279 | if (!was_fpu_owner) |
James Hogan | d76e9b9 | 2015-01-30 15:40:20 +0000 | [diff] [blame] | 1280 | write_32bit_cp1_register(CP1_STATUS, |
| 1281 | current->thread.fpu.fcr31); |
Paul Burton | c901775 | 2014-07-30 08:53:20 +0100 | [diff] [blame] | 1282 | } |
Paul Burton | 762a1f4 | 2014-07-11 16:44:35 +0100 | [diff] [blame] | 1283 | |
| 1284 | out: |
| 1285 | preempt_enable(); |
| 1286 | |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1287 | return 0; |
| 1288 | } |
| 1289 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | asmlinkage void do_cpu(struct pt_regs *regs) |
| 1291 | { |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1292 | enum ctx_state prev_state; |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1293 | unsigned int __user *epc; |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1294 | unsigned long old_epc, old31; |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1295 | unsigned int opcode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1296 | unsigned int cpid; |
Paul Burton | 597ce17 | 2013-11-22 13:12:07 +0000 | [diff] [blame] | 1297 | int status, err; |
David Daney | f9bb4cf | 2008-12-11 15:33:23 -0800 | [diff] [blame] | 1298 | unsigned long __maybe_unused flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1300 | prev_state = exception_enter(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1301 | cpid = (regs->cp0_cause >> CAUSEB_CE) & 3; |
| 1302 | |
Jayachandran C | 83bee79 | 2013-06-10 06:30:01 +0000 | [diff] [blame] | 1303 | if (cpid != 2) |
| 1304 | die_if_kernel("do_cpu invoked from kernel context!", regs); |
| 1305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1306 | switch (cpid) { |
| 1307 | case 0: |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1308 | epc = (unsigned int __user *)exception_epc(regs); |
| 1309 | old_epc = regs->cp0_epc; |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1310 | old31 = regs->regs[31]; |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1311 | opcode = 0; |
| 1312 | status = -1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1314 | if (unlikely(compute_return_epc(regs) < 0)) |
Maciej W. Rozycki | 27e28e8 | 2015-04-03 23:25:08 +0100 | [diff] [blame] | 1315 | break; |
Ralf Baechle | 3c37026 | 2005-04-13 17:43:59 +0000 | [diff] [blame] | 1316 | |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1317 | if (get_isa16_mode(regs->cp0_epc)) { |
| 1318 | unsigned short mmop[2] = { 0 }; |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1319 | |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1320 | 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. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1325 | |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1326 | 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. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1338 | |
| 1339 | if (status < 0) |
| 1340 | status = SIGILL; |
| 1341 | |
| 1342 | if (unlikely(status > 0)) { |
| 1343 | regs->cp0_epc = old_epc; /* Undo skip-over. */ |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1344 | regs->regs[31] = old31; |
Maciej W. Rozycki | 60b0d65 | 2007-10-16 18:43:26 +0100 | [diff] [blame] | 1345 | force_sig(status, current); |
| 1346 | } |
| 1347 | |
Maciej W. Rozycki | 27e28e8 | 2015-04-03 23:25:08 +0100 | [diff] [blame] | 1348 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1349 | |
Maciej W. Rozycki | 051ff44 | 2012-03-06 20:28:54 +0000 | [diff] [blame] | 1350 | case 3: |
| 1351 | /* |
Maciej W. Rozycki | 2d83fea | 2015-04-03 23:26:49 +0100 | [diff] [blame^] | 1352 | * The COP3 opcode space and consequently the CP0.Status.CU3 |
| 1353 | * bit and the CP0.Cause.CE=3 encoding have been removed as |
| 1354 | * of the MIPS III ISA. From the MIPS IV and MIPS32r2 ISAs |
| 1355 | * up the space has been reused for COP1X instructions, that |
| 1356 | * are enabled by the CP0.Status.CU1 bit and consequently |
| 1357 | * use the CP0.Cause.CE=1 encoding for Coprocessor Unusable |
| 1358 | * exceptions. Some FPU-less processors that implement one |
| 1359 | * of these ISAs however use this code erroneously for COP1X |
| 1360 | * instructions. Therefore we redirect this trap to the FP |
| 1361 | * emulator too. |
Maciej W. Rozycki | 051ff44 | 2012-03-06 20:28:54 +0000 | [diff] [blame] | 1362 | */ |
Maciej W. Rozycki | 2d83fea | 2015-04-03 23:26:49 +0100 | [diff] [blame^] | 1363 | if (raw_cpu_has_fpu || !cpu_has_mips_4_5_64_r2_r6) { |
Maciej W. Rozycki | 27e28e8 | 2015-04-03 23:25:08 +0100 | [diff] [blame] | 1364 | force_sig(SIGILL, current); |
Maciej W. Rozycki | 051ff44 | 2012-03-06 20:28:54 +0000 | [diff] [blame] | 1365 | break; |
Maciej W. Rozycki | 27e28e8 | 2015-04-03 23:25:08 +0100 | [diff] [blame] | 1366 | } |
Maciej W. Rozycki | 051ff44 | 2012-03-06 20:28:54 +0000 | [diff] [blame] | 1367 | /* Fall through. */ |
| 1368 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1369 | case 1: |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1370 | err = enable_restore_fp_context(0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | |
Paul Burton | 597ce17 | 2013-11-22 13:12:07 +0000 | [diff] [blame] | 1372 | if (!raw_cpu_has_fpu || err) { |
Atsushi Nemoto | e04582b | 2006-10-09 00:10:01 +0900 | [diff] [blame] | 1373 | int sig; |
David Daney | 515b029 | 2010-10-21 16:32:26 -0700 | [diff] [blame] | 1374 | void __user *fault_addr = NULL; |
Atsushi Nemoto | e04582b | 2006-10-09 00:10:01 +0900 | [diff] [blame] | 1375 | sig = fpu_emulator_cop1Handler(regs, |
David Daney | 515b029 | 2010-10-21 16:32:26 -0700 | [diff] [blame] | 1376 | ¤t->thread.fpu, |
| 1377 | 0, &fault_addr); |
Paul Burton | 597ce17 | 2013-11-22 13:12:07 +0000 | [diff] [blame] | 1378 | if (!process_fpemu_return(sig, fault_addr) && !err) |
Ralf Baechle | d223a86 | 2007-07-10 17:33:02 +0100 | [diff] [blame] | 1379 | mt_ase_fp_affinity(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1380 | } |
| 1381 | |
Maciej W. Rozycki | 27e28e8 | 2015-04-03 23:25:08 +0100 | [diff] [blame] | 1382 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | |
| 1384 | case 2: |
Ralf Baechle | 69f3a7d | 2009-11-24 01:24:58 +0000 | [diff] [blame] | 1385 | raw_notifier_call_chain(&cu2_chain, CU2_EXCEPTION, regs); |
Maciej W. Rozycki | 27e28e8 | 2015-04-03 23:25:08 +0100 | [diff] [blame] | 1386 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1387 | } |
| 1388 | |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1389 | exception_exit(prev_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1390 | } |
| 1391 | |
Paul Burton | 2bcb3fb | 2014-01-27 15:23:12 +0000 | [diff] [blame] | 1392 | asmlinkage void do_msa_fpe(struct pt_regs *regs) |
| 1393 | { |
| 1394 | enum ctx_state prev_state; |
| 1395 | |
| 1396 | prev_state = exception_enter(); |
| 1397 | die_if_kernel("do_msa_fpe invoked from kernel context!", regs); |
| 1398 | force_sig(SIGFPE, current); |
| 1399 | exception_exit(prev_state); |
| 1400 | } |
| 1401 | |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 1402 | asmlinkage void do_msa(struct pt_regs *regs) |
| 1403 | { |
| 1404 | enum ctx_state prev_state; |
| 1405 | int err; |
| 1406 | |
| 1407 | prev_state = exception_enter(); |
| 1408 | |
| 1409 | if (!cpu_has_msa || test_thread_flag(TIF_32BIT_FPREGS)) { |
| 1410 | force_sig(SIGILL, current); |
| 1411 | goto out; |
| 1412 | } |
| 1413 | |
| 1414 | die_if_kernel("do_msa invoked from kernel context!", regs); |
| 1415 | |
| 1416 | err = enable_restore_fp_context(1); |
| 1417 | if (err) |
| 1418 | force_sig(SIGILL, current); |
| 1419 | out: |
| 1420 | exception_exit(prev_state); |
| 1421 | } |
| 1422 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1423 | asmlinkage void do_mdmx(struct pt_regs *regs) |
| 1424 | { |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1425 | enum ctx_state prev_state; |
| 1426 | |
| 1427 | prev_state = exception_enter(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | force_sig(SIGILL, current); |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1429 | exception_exit(prev_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1430 | } |
| 1431 | |
David Daney | 8bc6d05 | 2009-01-05 15:29:58 -0800 | [diff] [blame] | 1432 | /* |
| 1433 | * Called with interrupts disabled. |
| 1434 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1435 | asmlinkage void do_watch(struct pt_regs *regs) |
| 1436 | { |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1437 | enum ctx_state prev_state; |
David Daney | b67b2b7 | 2008-09-23 00:08:45 -0700 | [diff] [blame] | 1438 | u32 cause; |
| 1439 | |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1440 | prev_state = exception_enter(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1441 | /* |
David Daney | b67b2b7 | 2008-09-23 00:08:45 -0700 | [diff] [blame] | 1442 | * Clear WP (bit 22) bit of cause register so we don't loop |
| 1443 | * forever. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1444 | */ |
David Daney | b67b2b7 | 2008-09-23 00:08:45 -0700 | [diff] [blame] | 1445 | cause = read_c0_cause(); |
| 1446 | cause &= ~(1 << 22); |
| 1447 | write_c0_cause(cause); |
| 1448 | |
| 1449 | /* |
| 1450 | * If the current thread has the watch registers loaded, save |
| 1451 | * their values and send SIGTRAP. Otherwise another thread |
| 1452 | * left the registers set, clear them and continue. |
| 1453 | */ |
| 1454 | if (test_tsk_thread_flag(current, TIF_LOAD_WATCH)) { |
| 1455 | mips_read_watch_registers(); |
David Daney | 8bc6d05 | 2009-01-05 15:29:58 -0800 | [diff] [blame] | 1456 | local_irq_enable(); |
David Daney | b67b2b7 | 2008-09-23 00:08:45 -0700 | [diff] [blame] | 1457 | force_sig(SIGTRAP, current); |
David Daney | 8bc6d05 | 2009-01-05 15:29:58 -0800 | [diff] [blame] | 1458 | } else { |
David Daney | b67b2b7 | 2008-09-23 00:08:45 -0700 | [diff] [blame] | 1459 | mips_clear_watch_registers(); |
David Daney | 8bc6d05 | 2009-01-05 15:29:58 -0800 | [diff] [blame] | 1460 | local_irq_enable(); |
| 1461 | } |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1462 | exception_exit(prev_state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1463 | } |
| 1464 | |
| 1465 | asmlinkage void do_mcheck(struct pt_regs *regs) |
| 1466 | { |
Ralf Baechle | cac4bcb | 2006-05-24 16:51:02 +0100 | [diff] [blame] | 1467 | const int field = 2 * sizeof(unsigned long); |
| 1468 | int multi_match = regs->cp0_status & ST0_TS; |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1469 | enum ctx_state prev_state; |
Ralf Baechle | cac4bcb | 2006-05-24 16:51:02 +0100 | [diff] [blame] | 1470 | |
Ralf Baechle | c3fc5cd | 2013-05-29 01:07:19 +0200 | [diff] [blame] | 1471 | prev_state = exception_enter(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1472 | show_regs(regs); |
Ralf Baechle | cac4bcb | 2006-05-24 16:51:02 +0100 | [diff] [blame] | 1473 | |
| 1474 | if (multi_match) { |
Markos Chandras | 314727f | 2014-11-12 09:22:15 +0000 | [diff] [blame] | 1475 | pr_err("Index : %0x\n", read_c0_index()); |
| 1476 | pr_err("Pagemask: %0x\n", read_c0_pagemask()); |
| 1477 | pr_err("EntryHi : %0*lx\n", field, read_c0_entryhi()); |
| 1478 | pr_err("EntryLo0: %0*lx\n", field, read_c0_entrylo0()); |
| 1479 | pr_err("EntryLo1: %0*lx\n", field, read_c0_entrylo1()); |
Markos Chandras | 26b40ef | 2014-11-12 09:23:11 +0000 | [diff] [blame] | 1480 | pr_err("Wired : %0x\n", read_c0_wired()); |
| 1481 | pr_err("Pagegrain: %0x\n", read_c0_pagegrain()); |
Markos Chandras | 31ec86b | 2014-11-12 09:22:42 +0000 | [diff] [blame] | 1482 | if (cpu_has_htw) { |
| 1483 | pr_err("PWField : %0*lx\n", field, read_c0_pwfield()); |
| 1484 | pr_err("PWSize : %0*lx\n", field, read_c0_pwsize()); |
| 1485 | pr_err("PWCtl : %0x\n", read_c0_pwctl()); |
| 1486 | } |
Markos Chandras | 314727f | 2014-11-12 09:22:15 +0000 | [diff] [blame] | 1487 | pr_err("\n"); |
Ralf Baechle | cac4bcb | 2006-05-24 16:51:02 +0100 | [diff] [blame] | 1488 | dump_tlb_all(); |
| 1489 | } |
| 1490 | |
Atsushi Nemoto | e1bb8289 | 2007-07-13 23:51:46 +0900 | [diff] [blame] | 1491 | show_code((unsigned int __user *) regs->cp0_epc); |
Ralf Baechle | cac4bcb | 2006-05-24 16:51:02 +0100 | [diff] [blame] | 1492 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | /* |
| 1494 | * Some chips may have other causes of machine check (e.g. SB1 |
| 1495 | * graduation timer) |
| 1496 | */ |
| 1497 | panic("Caught Machine Check exception - %scaused by multiple " |
| 1498 | "matching entries in the TLB.", |
Ralf Baechle | cac4bcb | 2006-05-24 16:51:02 +0100 | [diff] [blame] | 1499 | (multi_match) ? "" : "not "); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1500 | } |
| 1501 | |
Ralf Baechle | 340ee4b | 2005-08-17 17:44:08 +0000 | [diff] [blame] | 1502 | asmlinkage void do_mt(struct pt_regs *regs) |
| 1503 | { |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1504 | int subcode; |
| 1505 | |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1506 | subcode = (read_vpe_c0_vpecontrol() & VPECONTROL_EXCPT) |
| 1507 | >> VPECONTROL_EXCPT_SHIFT; |
| 1508 | switch (subcode) { |
| 1509 | case 0: |
Chris Dearman | e35a5e3 | 2006-06-30 14:19:45 +0100 | [diff] [blame] | 1510 | printk(KERN_DEBUG "Thread Underflow\n"); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1511 | break; |
| 1512 | case 1: |
Chris Dearman | e35a5e3 | 2006-06-30 14:19:45 +0100 | [diff] [blame] | 1513 | printk(KERN_DEBUG "Thread Overflow\n"); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1514 | break; |
| 1515 | case 2: |
Chris Dearman | e35a5e3 | 2006-06-30 14:19:45 +0100 | [diff] [blame] | 1516 | printk(KERN_DEBUG "Invalid YIELD Qualifier\n"); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1517 | break; |
| 1518 | case 3: |
Chris Dearman | e35a5e3 | 2006-06-30 14:19:45 +0100 | [diff] [blame] | 1519 | printk(KERN_DEBUG "Gating Storage Exception\n"); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1520 | break; |
| 1521 | case 4: |
Chris Dearman | e35a5e3 | 2006-06-30 14:19:45 +0100 | [diff] [blame] | 1522 | printk(KERN_DEBUG "YIELD Scheduler Exception\n"); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1523 | break; |
| 1524 | case 5: |
Masanari Iida | f232c7e | 2012-02-08 21:53:14 +0900 | [diff] [blame] | 1525 | printk(KERN_DEBUG "Gating Storage Scheduler Exception\n"); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1526 | break; |
| 1527 | default: |
Chris Dearman | e35a5e3 | 2006-06-30 14:19:45 +0100 | [diff] [blame] | 1528 | printk(KERN_DEBUG "*** UNKNOWN THREAD EXCEPTION %d ***\n", |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1529 | subcode); |
| 1530 | break; |
| 1531 | } |
Ralf Baechle | 340ee4b | 2005-08-17 17:44:08 +0000 | [diff] [blame] | 1532 | die_if_kernel("MIPS MT Thread exception in kernel", regs); |
| 1533 | |
| 1534 | force_sig(SIGILL, current); |
| 1535 | } |
| 1536 | |
| 1537 | |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 1538 | asmlinkage void do_dsp(struct pt_regs *regs) |
| 1539 | { |
| 1540 | if (cpu_has_dsp) |
Ralf Baechle | ab75dc0 | 2011-11-17 15:07:31 +0000 | [diff] [blame] | 1541 | panic("Unexpected DSP exception"); |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 1542 | |
| 1543 | force_sig(SIGILL, current); |
| 1544 | } |
| 1545 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1546 | asmlinkage void do_reserved(struct pt_regs *regs) |
| 1547 | { |
| 1548 | /* |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 1549 | * Game over - no way to handle this if it ever occurs. Most probably |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1550 | * caused by a new unknown cpu type or after another deadly |
| 1551 | * hard/software error. |
| 1552 | */ |
| 1553 | show_regs(regs); |
| 1554 | panic("Caught reserved exception %ld - should not happen.", |
| 1555 | (regs->cp0_cause & 0x7f) >> 2); |
| 1556 | } |
| 1557 | |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 1558 | static int __initdata l1parity = 1; |
| 1559 | static int __init nol1parity(char *s) |
| 1560 | { |
| 1561 | l1parity = 0; |
| 1562 | return 1; |
| 1563 | } |
| 1564 | __setup("nol1par", nol1parity); |
| 1565 | static int __initdata l2parity = 1; |
| 1566 | static int __init nol2parity(char *s) |
| 1567 | { |
| 1568 | l2parity = 0; |
| 1569 | return 1; |
| 1570 | } |
| 1571 | __setup("nol2par", nol2parity); |
| 1572 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1573 | /* |
| 1574 | * Some MIPS CPUs can enable/disable for cache parity detection, but do |
| 1575 | * it different ways. |
| 1576 | */ |
| 1577 | static inline void parity_protection_init(void) |
| 1578 | { |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 1579 | switch (current_cpu_type()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | case CPU_24K: |
Nigel Stephens | 98a41de | 2006-04-27 15:50:32 +0100 | [diff] [blame] | 1581 | case CPU_34K: |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 1582 | case CPU_74K: |
| 1583 | case CPU_1004K: |
Steven J. Hill | 442e14a | 2014-01-17 15:03:50 -0600 | [diff] [blame] | 1584 | case CPU_1074K: |
Leonid Yegoshin | 26ab96d | 2013-11-27 10:07:53 +0000 | [diff] [blame] | 1585 | case CPU_INTERAPTIV: |
Leonid Yegoshin | 708ac4b | 2013-11-14 16:12:27 +0000 | [diff] [blame] | 1586 | case CPU_PROAPTIV: |
James Hogan | aced4cb | 2014-01-22 16:19:38 +0000 | [diff] [blame] | 1587 | case CPU_P5600: |
Leonid Yegoshin | 4695089 | 2014-11-24 12:59:01 +0000 | [diff] [blame] | 1588 | case CPU_QEMU_GENERIC: |
Ralf Baechle | 39b8d52 | 2008-04-28 17:14:26 +0100 | [diff] [blame] | 1589 | { |
| 1590 | #define ERRCTL_PE 0x80000000 |
| 1591 | #define ERRCTL_L2P 0x00800000 |
| 1592 | unsigned long errctl; |
| 1593 | unsigned int l1parity_present, l2parity_present; |
| 1594 | |
| 1595 | errctl = read_c0_ecc(); |
| 1596 | errctl &= ~(ERRCTL_PE|ERRCTL_L2P); |
| 1597 | |
| 1598 | /* probe L1 parity support */ |
| 1599 | write_c0_ecc(errctl | ERRCTL_PE); |
| 1600 | back_to_back_c0_hazard(); |
| 1601 | l1parity_present = (read_c0_ecc() & ERRCTL_PE); |
| 1602 | |
| 1603 | /* probe L2 parity support */ |
| 1604 | write_c0_ecc(errctl|ERRCTL_L2P); |
| 1605 | back_to_back_c0_hazard(); |
| 1606 | l2parity_present = (read_c0_ecc() & ERRCTL_L2P); |
| 1607 | |
| 1608 | if (l1parity_present && l2parity_present) { |
| 1609 | if (l1parity) |
| 1610 | errctl |= ERRCTL_PE; |
| 1611 | if (l1parity ^ l2parity) |
| 1612 | errctl |= ERRCTL_L2P; |
| 1613 | } else if (l1parity_present) { |
| 1614 | if (l1parity) |
| 1615 | errctl |= ERRCTL_PE; |
| 1616 | } else if (l2parity_present) { |
| 1617 | if (l2parity) |
| 1618 | errctl |= ERRCTL_L2P; |
| 1619 | } else { |
| 1620 | /* No parity available */ |
| 1621 | } |
| 1622 | |
| 1623 | printk(KERN_INFO "Writing ErrCtl register=%08lx\n", errctl); |
| 1624 | |
| 1625 | write_c0_ecc(errctl); |
| 1626 | back_to_back_c0_hazard(); |
| 1627 | errctl = read_c0_ecc(); |
| 1628 | printk(KERN_INFO "Readback ErrCtl register=%08lx\n", errctl); |
| 1629 | |
| 1630 | if (l1parity_present) |
| 1631 | printk(KERN_INFO "Cache parity protection %sabled\n", |
| 1632 | (errctl & ERRCTL_PE) ? "en" : "dis"); |
| 1633 | |
| 1634 | if (l2parity_present) { |
| 1635 | if (l1parity_present && l1parity) |
| 1636 | errctl ^= ERRCTL_L2P; |
| 1637 | printk(KERN_INFO "L2 cache parity protection %sabled\n", |
| 1638 | (errctl & ERRCTL_L2P) ? "en" : "dis"); |
| 1639 | } |
| 1640 | } |
| 1641 | break; |
| 1642 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1643 | case CPU_5KC: |
Leonid Yegoshin | 78d4803 | 2012-07-06 21:56:01 +0200 | [diff] [blame] | 1644 | case CPU_5KE: |
Kelvin Cheung | 2fa3639 | 2012-06-20 20:05:32 +0100 | [diff] [blame] | 1645 | case CPU_LOONGSON1: |
Ralf Baechle | 14f18b7 | 2005-03-01 18:15:08 +0000 | [diff] [blame] | 1646 | write_c0_ecc(0x80000000); |
| 1647 | back_to_back_c0_hazard(); |
| 1648 | /* Set the PE bit (bit 31) in the c0_errctl register. */ |
| 1649 | printk(KERN_INFO "Cache parity protection %sabled\n", |
| 1650 | (read_c0_ecc() & 0x80000000) ? "en" : "dis"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1651 | break; |
| 1652 | case CPU_20KC: |
| 1653 | case CPU_25KF: |
| 1654 | /* Clear the DE bit (bit 16) in the c0_status register. */ |
| 1655 | printk(KERN_INFO "Enable cache parity protection for " |
| 1656 | "MIPS 20KC/25KF CPUs.\n"); |
| 1657 | clear_c0_status(ST0_DE); |
| 1658 | break; |
| 1659 | default: |
| 1660 | break; |
| 1661 | } |
| 1662 | } |
| 1663 | |
| 1664 | asmlinkage void cache_parity_error(void) |
| 1665 | { |
| 1666 | const int field = 2 * sizeof(unsigned long); |
| 1667 | unsigned int reg_val; |
| 1668 | |
| 1669 | /* For the moment, report the problem and hang. */ |
| 1670 | printk("Cache error exception:\n"); |
| 1671 | printk("cp0_errorepc == %0*lx\n", field, read_c0_errorepc()); |
| 1672 | reg_val = read_c0_cacheerr(); |
| 1673 | printk("c0_cacheerr == %08x\n", reg_val); |
| 1674 | |
| 1675 | printk("Decoded c0_cacheerr: %s cache fault in %s reference.\n", |
| 1676 | reg_val & (1<<30) ? "secondary" : "primary", |
| 1677 | reg_val & (1<<31) ? "data" : "insn"); |
Leonid Yegoshin | 9c7d576 | 2014-11-14 11:25:30 +0000 | [diff] [blame] | 1678 | if ((cpu_has_mips_r2_r6) && |
Markos Chandras | 721a920 | 2014-05-21 12:35:00 +0100 | [diff] [blame] | 1679 | ((current_cpu_data.processor_id & 0xff0000) == PRID_COMP_MIPS)) { |
Leonid Yegoshin | 6de2045 | 2013-10-10 09:58:59 +0100 | [diff] [blame] | 1680 | pr_err("Error bits: %s%s%s%s%s%s%s%s\n", |
| 1681 | reg_val & (1<<29) ? "ED " : "", |
| 1682 | reg_val & (1<<28) ? "ET " : "", |
| 1683 | reg_val & (1<<27) ? "ES " : "", |
| 1684 | reg_val & (1<<26) ? "EE " : "", |
| 1685 | reg_val & (1<<25) ? "EB " : "", |
| 1686 | reg_val & (1<<24) ? "EI " : "", |
| 1687 | reg_val & (1<<23) ? "E1 " : "", |
| 1688 | reg_val & (1<<22) ? "E0 " : ""); |
| 1689 | } else { |
| 1690 | pr_err("Error bits: %s%s%s%s%s%s%s\n", |
| 1691 | reg_val & (1<<29) ? "ED " : "", |
| 1692 | reg_val & (1<<28) ? "ET " : "", |
| 1693 | reg_val & (1<<26) ? "EE " : "", |
| 1694 | reg_val & (1<<25) ? "EB " : "", |
| 1695 | reg_val & (1<<24) ? "EI " : "", |
| 1696 | reg_val & (1<<23) ? "E1 " : "", |
| 1697 | reg_val & (1<<22) ? "E0 " : ""); |
| 1698 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1699 | printk("IDX: 0x%08x\n", reg_val & ((1<<22)-1)); |
| 1700 | |
Ralf Baechle | ec917c2c | 2005-10-07 16:58:15 +0100 | [diff] [blame] | 1701 | #if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1702 | if (reg_val & (1<<22)) |
| 1703 | printk("DErrAddr0: 0x%0*lx\n", field, read_c0_derraddr0()); |
| 1704 | |
| 1705 | if (reg_val & (1<<23)) |
| 1706 | printk("DErrAddr1: 0x%0*lx\n", field, read_c0_derraddr1()); |
| 1707 | #endif |
| 1708 | |
| 1709 | panic("Can't handle the cache error!"); |
| 1710 | } |
| 1711 | |
Leonid Yegoshin | 75b5b5e | 2013-11-14 16:12:31 +0000 | [diff] [blame] | 1712 | asmlinkage void do_ftlb(void) |
| 1713 | { |
| 1714 | const int field = 2 * sizeof(unsigned long); |
| 1715 | unsigned int reg_val; |
| 1716 | |
| 1717 | /* For the moment, report the problem and hang. */ |
Leonid Yegoshin | 9c7d576 | 2014-11-14 11:25:30 +0000 | [diff] [blame] | 1718 | if ((cpu_has_mips_r2_r6) && |
Markos Chandras | 721a920 | 2014-05-21 12:35:00 +0100 | [diff] [blame] | 1719 | ((current_cpu_data.processor_id & 0xff0000) == PRID_COMP_MIPS)) { |
Leonid Yegoshin | 75b5b5e | 2013-11-14 16:12:31 +0000 | [diff] [blame] | 1720 | pr_err("FTLB error exception, cp0_ecc=0x%08x:\n", |
| 1721 | read_c0_ecc()); |
| 1722 | pr_err("cp0_errorepc == %0*lx\n", field, read_c0_errorepc()); |
| 1723 | reg_val = read_c0_cacheerr(); |
| 1724 | pr_err("c0_cacheerr == %08x\n", reg_val); |
| 1725 | |
| 1726 | if ((reg_val & 0xc0000000) == 0xc0000000) { |
| 1727 | pr_err("Decoded c0_cacheerr: FTLB parity error\n"); |
| 1728 | } else { |
| 1729 | pr_err("Decoded c0_cacheerr: %s cache fault in %s reference.\n", |
| 1730 | reg_val & (1<<30) ? "secondary" : "primary", |
| 1731 | reg_val & (1<<31) ? "data" : "insn"); |
| 1732 | } |
| 1733 | } else { |
| 1734 | pr_err("FTLB error exception\n"); |
| 1735 | } |
| 1736 | /* Just print the cacheerr bits for now */ |
| 1737 | cache_parity_error(); |
| 1738 | } |
| 1739 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1740 | /* |
| 1741 | * SDBBP EJTAG debug exception handler. |
| 1742 | * We skip the instruction and return to the next instruction. |
| 1743 | */ |
| 1744 | void ejtag_exception_handler(struct pt_regs *regs) |
| 1745 | { |
| 1746 | const int field = 2 * sizeof(unsigned long); |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1747 | unsigned long depc, old_epc, old_ra; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | unsigned int debug; |
| 1749 | |
Chris Dearman | 70ae612 | 2006-06-30 12:32:37 +0100 | [diff] [blame] | 1750 | printk(KERN_DEBUG "SDBBP EJTAG debug exception - not handled yet, just ignored!\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1751 | depc = read_c0_depc(); |
| 1752 | debug = read_c0_debug(); |
Chris Dearman | 70ae612 | 2006-06-30 12:32:37 +0100 | [diff] [blame] | 1753 | printk(KERN_DEBUG "c0_depc = %0*lx, DEBUG = %08x\n", field, depc, debug); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1754 | if (debug & 0x80000000) { |
| 1755 | /* |
| 1756 | * In branch delay slot. |
| 1757 | * We cheat a little bit here and use EPC to calculate the |
| 1758 | * debug return address (DEPC). EPC is restored after the |
| 1759 | * calculation. |
| 1760 | */ |
| 1761 | old_epc = regs->cp0_epc; |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1762 | old_ra = regs->regs[31]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1763 | regs->cp0_epc = depc; |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1764 | compute_return_epc(regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1765 | depc = regs->cp0_epc; |
| 1766 | regs->cp0_epc = old_epc; |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1767 | regs->regs[31] = old_ra; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1768 | } else |
| 1769 | depc += 4; |
| 1770 | write_c0_depc(depc); |
| 1771 | |
| 1772 | #if 0 |
Chris Dearman | 70ae612 | 2006-06-30 12:32:37 +0100 | [diff] [blame] | 1773 | printk(KERN_DEBUG "\n\n----- Enable EJTAG single stepping ----\n\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1774 | write_c0_debug(debug | 0x100); |
| 1775 | #endif |
| 1776 | } |
| 1777 | |
| 1778 | /* |
| 1779 | * NMI exception handler. |
Kevin Cernekee | 34bd92e | 2011-11-16 01:25:44 +0000 | [diff] [blame] | 1780 | * No lock; only written during early bootup by CPU 0. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1781 | */ |
Kevin Cernekee | 34bd92e | 2011-11-16 01:25:44 +0000 | [diff] [blame] | 1782 | static RAW_NOTIFIER_HEAD(nmi_chain); |
| 1783 | |
| 1784 | int register_nmi_notifier(struct notifier_block *nb) |
| 1785 | { |
| 1786 | return raw_notifier_chain_register(&nmi_chain, nb); |
| 1787 | } |
| 1788 | |
Joe Perches | ff2d8b1 | 2012-01-12 17:17:21 -0800 | [diff] [blame] | 1789 | void __noreturn nmi_exception_handler(struct pt_regs *regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1790 | { |
Leonid Yegoshin | 83e4da1e | 2013-10-08 12:39:31 +0100 | [diff] [blame] | 1791 | char str[100]; |
| 1792 | |
Kevin Cernekee | 34bd92e | 2011-11-16 01:25:44 +0000 | [diff] [blame] | 1793 | raw_notifier_call_chain(&nmi_chain, 0, regs); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1794 | bust_spinlocks(1); |
Leonid Yegoshin | 83e4da1e | 2013-10-08 12:39:31 +0100 | [diff] [blame] | 1795 | snprintf(str, 100, "CPU%d NMI taken, CP0_EPC=%lx\n", |
| 1796 | smp_processor_id(), regs->cp0_epc); |
| 1797 | regs->cp0_epc = read_c0_errorepc(); |
| 1798 | die(str, regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1799 | } |
| 1800 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1801 | #define VECTORSPACING 0x100 /* for EI/VI mode */ |
| 1802 | |
| 1803 | unsigned long ebase; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1804 | unsigned long exception_handlers[32]; |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1805 | unsigned long vi_handlers[64]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | |
Florian Fainelli | 2d1b6e9 | 2010-01-28 15:21:42 +0100 | [diff] [blame] | 1807 | void __init *set_except_vector(int n, void *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1808 | { |
| 1809 | unsigned long handler = (unsigned long) addr; |
Ralf Baechle | b22d1b6 | 2013-05-09 17:57:30 +0200 | [diff] [blame] | 1810 | unsigned long old_handler; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1812 | #ifdef CONFIG_CPU_MICROMIPS |
| 1813 | /* |
| 1814 | * Only the TLB handlers are cache aligned with an even |
| 1815 | * address. All other handlers are on an odd address and |
| 1816 | * require no modification. Otherwise, MIPS32 mode will |
| 1817 | * be entered when handling any TLB exceptions. That |
| 1818 | * would be bad...since we must stay in microMIPS mode. |
| 1819 | */ |
| 1820 | if (!(handler & 0x1)) |
| 1821 | handler |= 1; |
| 1822 | #endif |
Ralf Baechle | b22d1b6 | 2013-05-09 17:57:30 +0200 | [diff] [blame] | 1823 | old_handler = xchg(&exception_handlers[n], handler); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | if (n == 0 && cpu_has_divec) { |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1826 | #ifdef CONFIG_CPU_MICROMIPS |
| 1827 | unsigned long jump_mask = ~((1 << 27) - 1); |
| 1828 | #else |
Florian Fainelli | 92bbe1b | 2010-01-28 15:22:37 +0100 | [diff] [blame] | 1829 | unsigned long jump_mask = ~((1 << 28) - 1); |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1830 | #endif |
Florian Fainelli | 92bbe1b | 2010-01-28 15:22:37 +0100 | [diff] [blame] | 1831 | u32 *buf = (u32 *)(ebase + 0x200); |
| 1832 | unsigned int k0 = 26; |
| 1833 | if ((handler & jump_mask) == ((ebase + 0x200) & jump_mask)) { |
| 1834 | uasm_i_j(&buf, handler & ~jump_mask); |
| 1835 | uasm_i_nop(&buf); |
| 1836 | } else { |
| 1837 | UASM_i_LA(&buf, k0, handler); |
| 1838 | uasm_i_jr(&buf, k0); |
| 1839 | uasm_i_nop(&buf); |
| 1840 | } |
| 1841 | local_flush_icache_range(ebase + 0x200, (unsigned long)buf); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | } |
| 1843 | return (void *)old_handler; |
| 1844 | } |
| 1845 | |
Ralf Baechle | 86a1708 | 2013-02-08 01:21:34 +0100 | [diff] [blame] | 1846 | static void do_default_vi(void) |
Atsushi Nemoto | 6ba07e5 | 2007-05-21 23:45:38 +0900 | [diff] [blame] | 1847 | { |
| 1848 | show_regs(get_irq_regs()); |
| 1849 | panic("Caught unexpected vectored interrupt."); |
| 1850 | } |
| 1851 | |
Ralf Baechle | ef300e4 | 2007-05-06 18:31:18 +0100 | [diff] [blame] | 1852 | static void *set_vi_srs_handler(int n, vi_handler_t addr, int srs) |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1853 | { |
| 1854 | unsigned long handler; |
| 1855 | unsigned long old_handler = vi_handlers[n]; |
Ralf Baechle | f6771db | 2007-11-08 18:02:29 +0000 | [diff] [blame] | 1856 | int srssets = current_cpu_data.srsets; |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1857 | u16 *h; |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1858 | unsigned char *b; |
| 1859 | |
Ralf Baechle | b72b709 | 2009-03-30 14:49:44 +0200 | [diff] [blame] | 1860 | BUG_ON(!cpu_has_veic && !cpu_has_vint); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1861 | |
| 1862 | if (addr == NULL) { |
| 1863 | handler = (unsigned long) do_default_vi; |
| 1864 | srs = 0; |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1865 | } else |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1866 | handler = (unsigned long) addr; |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1867 | vi_handlers[n] = handler; |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1868 | |
| 1869 | b = (unsigned char *)(ebase + 0x200 + n*VECTORSPACING); |
| 1870 | |
Ralf Baechle | f6771db | 2007-11-08 18:02:29 +0000 | [diff] [blame] | 1871 | if (srs >= srssets) |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1872 | panic("Shadow register set %d not supported", srs); |
| 1873 | |
| 1874 | if (cpu_has_veic) { |
| 1875 | if (board_bind_eic_interrupt) |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 1876 | board_bind_eic_interrupt(n, srs); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 1877 | } else if (cpu_has_vint) { |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1878 | /* SRSMap is only defined if shadow sets are implemented */ |
Ralf Baechle | f6771db | 2007-11-08 18:02:29 +0000 | [diff] [blame] | 1879 | if (srssets > 1) |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 1880 | change_c0_srsmap(0xf << n*4, srs << n*4); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1881 | } |
| 1882 | |
| 1883 | if (srs == 0) { |
| 1884 | /* |
| 1885 | * If no shadow set is selected then use the default handler |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1886 | * that does normal register saving and standard interrupt exit |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1887 | */ |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1888 | extern char except_vec_vi, except_vec_vi_lui; |
| 1889 | extern char except_vec_vi_ori, except_vec_vi_end; |
Atsushi Nemoto | c65a548 | 2007-11-12 02:05:18 +0900 | [diff] [blame] | 1890 | extern char rollback_except_vec_vi; |
Ralf Baechle | f94d9a8 | 2013-05-21 17:30:36 +0200 | [diff] [blame] | 1891 | char *vec_start = using_rollback_handler() ? |
Atsushi Nemoto | c65a548 | 2007-11-12 02:05:18 +0900 | [diff] [blame] | 1892 | &rollback_except_vec_vi : &except_vec_vi; |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1893 | #if defined(CONFIG_CPU_MICROMIPS) || defined(CONFIG_CPU_BIG_ENDIAN) |
| 1894 | const int lui_offset = &except_vec_vi_lui - vec_start + 2; |
| 1895 | const int ori_offset = &except_vec_vi_ori - vec_start + 2; |
| 1896 | #else |
Atsushi Nemoto | c65a548 | 2007-11-12 02:05:18 +0900 | [diff] [blame] | 1897 | const int lui_offset = &except_vec_vi_lui - vec_start; |
| 1898 | const int ori_offset = &except_vec_vi_ori - vec_start; |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1899 | #endif |
| 1900 | const int handler_len = &except_vec_vi_end - vec_start; |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1901 | |
| 1902 | if (handler_len > VECTORSPACING) { |
| 1903 | /* |
| 1904 | * Sigh... panicing won't help as the console |
| 1905 | * is probably not configured :( |
| 1906 | */ |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 1907 | panic("VECTORSPACING too small"); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1908 | } |
| 1909 | |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1910 | set_handler(((unsigned long)b - ebase), vec_start, |
| 1911 | #ifdef CONFIG_CPU_MICROMIPS |
| 1912 | (handler_len - 1)); |
| 1913 | #else |
| 1914 | handler_len); |
| 1915 | #endif |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1916 | h = (u16 *)(b + lui_offset); |
| 1917 | *h = (handler >> 16) & 0xffff; |
| 1918 | h = (u16 *)(b + ori_offset); |
| 1919 | *h = (handler & 0xffff); |
Thomas Bogendoerfer | e0cee3e | 2008-08-04 20:53:57 +0200 | [diff] [blame] | 1920 | local_flush_icache_range((unsigned long)b, |
| 1921 | (unsigned long)(b+handler_len)); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1922 | } |
| 1923 | else { |
| 1924 | /* |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1925 | * In other cases jump directly to the interrupt handler. It |
| 1926 | * is the handler's responsibility to save registers if required |
| 1927 | * (eg hi/lo) and return from the exception using "eret". |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1928 | */ |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 1929 | u32 insn; |
| 1930 | |
| 1931 | h = (u16 *)b; |
| 1932 | /* j handler */ |
| 1933 | #ifdef CONFIG_CPU_MICROMIPS |
| 1934 | insn = 0xd4000000 | (((u32)handler & 0x07ffffff) >> 1); |
| 1935 | #else |
| 1936 | insn = 0x08000000 | (((u32)handler & 0x0fffffff) >> 2); |
| 1937 | #endif |
| 1938 | h[0] = (insn >> 16) & 0xffff; |
| 1939 | h[1] = insn & 0xffff; |
| 1940 | h[2] = 0; |
| 1941 | h[3] = 0; |
Thomas Bogendoerfer | e0cee3e | 2008-08-04 20:53:57 +0200 | [diff] [blame] | 1942 | local_flush_icache_range((unsigned long)b, |
| 1943 | (unsigned long)(b+8)); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1944 | } |
| 1945 | |
| 1946 | return (void *)old_handler; |
| 1947 | } |
| 1948 | |
Ralf Baechle | ef300e4 | 2007-05-06 18:31:18 +0100 | [diff] [blame] | 1949 | void *set_vi_handler(int n, vi_handler_t addr) |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1950 | { |
Ralf Baechle | ff3eab2 | 2006-03-29 14:12:58 +0100 | [diff] [blame] | 1951 | return set_vi_srs_handler(n, addr, 0); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 1952 | } |
Ralf Baechle | f41ae0b | 2006-06-05 17:24:46 +0100 | [diff] [blame] | 1953 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1954 | extern void tlb_init(void); |
| 1955 | |
Ralf Baechle | 42f7754 | 2007-10-18 17:48:11 +0100 | [diff] [blame] | 1956 | /* |
| 1957 | * Timer interrupt |
| 1958 | */ |
| 1959 | int cp0_compare_irq; |
Ralf Baechle | 68b6352 | 2012-07-19 09:13:52 +0200 | [diff] [blame] | 1960 | EXPORT_SYMBOL_GPL(cp0_compare_irq); |
David VomLehn | 010c108 | 2009-12-21 17:49:22 -0800 | [diff] [blame] | 1961 | int cp0_compare_irq_shift; |
Ralf Baechle | 42f7754 | 2007-10-18 17:48:11 +0100 | [diff] [blame] | 1962 | |
| 1963 | /* |
| 1964 | * Performance counter IRQ or -1 if shared with timer |
| 1965 | */ |
| 1966 | int cp0_perfcount_irq; |
| 1967 | EXPORT_SYMBOL_GPL(cp0_perfcount_irq); |
| 1968 | |
James Hogan | 8f7ff02 | 2015-01-29 11:14:07 +0000 | [diff] [blame] | 1969 | /* |
| 1970 | * Fast debug channel IRQ or -1 if not present |
| 1971 | */ |
| 1972 | int cp0_fdc_irq; |
| 1973 | EXPORT_SYMBOL_GPL(cp0_fdc_irq); |
| 1974 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 1975 | static int noulri; |
Chris Dearman | bdc94eb | 2007-10-03 10:43:56 +0100 | [diff] [blame] | 1976 | |
| 1977 | static int __init ulri_disable(char *s) |
| 1978 | { |
| 1979 | pr_info("Disabling ulri\n"); |
| 1980 | noulri = 1; |
| 1981 | |
| 1982 | return 1; |
| 1983 | } |
| 1984 | __setup("noulri", ulri_disable); |
| 1985 | |
James Hogan | ae4ce45 | 2014-03-04 10:20:43 +0000 | [diff] [blame] | 1986 | /* configure STATUS register */ |
| 1987 | static void configure_status(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1988 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | /* |
| 1990 | * Disable coprocessors and select 32-bit or 64-bit addressing |
| 1991 | * and the 16/32 or 32/32 FPR register model. Reset the BEV |
| 1992 | * flag that some firmware may have left set and the TS bit (for |
| 1993 | * IP27). Set XX for ISA IV code to work. |
| 1994 | */ |
James Hogan | ae4ce45 | 2014-03-04 10:20:43 +0000 | [diff] [blame] | 1995 | unsigned int status_set = ST0_CU0; |
Ralf Baechle | 875d43e | 2005-09-03 15:56:16 -0700 | [diff] [blame] | 1996 | #ifdef CONFIG_64BIT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | status_set |= ST0_FR|ST0_KX|ST0_SX|ST0_UX; |
| 1998 | #endif |
Deng-Cheng Zhu | adb3789 | 2013-04-01 18:14:28 +0000 | [diff] [blame] | 1999 | if (current_cpu_data.isa_level & MIPS_CPU_ISA_IV) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2000 | status_set |= ST0_XX; |
Chris Dearman | bbaf238 | 2007-12-13 22:42:19 +0000 | [diff] [blame] | 2001 | if (cpu_has_dsp) |
| 2002 | status_set |= ST0_MX; |
| 2003 | |
Ralf Baechle | b38c739 | 2006-02-07 01:20:43 +0000 | [diff] [blame] | 2004 | change_c0_status(ST0_CU|ST0_MX|ST0_RE|ST0_FR|ST0_BEV|ST0_TS|ST0_KX|ST0_SX|ST0_UX, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | status_set); |
James Hogan | ae4ce45 | 2014-03-04 10:20:43 +0000 | [diff] [blame] | 2006 | } |
| 2007 | |
| 2008 | /* configure HWRENA register */ |
| 2009 | static void configure_hwrena(void) |
| 2010 | { |
| 2011 | unsigned int hwrena = cpu_hwrena_impl_bits; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2012 | |
Leonid Yegoshin | 9c7d576 | 2014-11-14 11:25:30 +0000 | [diff] [blame] | 2013 | if (cpu_has_mips_r2_r6) |
Kevin Cernekee | 18d693b | 2010-10-16 14:22:38 -0700 | [diff] [blame] | 2014 | hwrena |= 0x0000000f; |
Ralf Baechle | a369202 | 2007-07-10 17:33:02 +0100 | [diff] [blame] | 2015 | |
Kevin Cernekee | 18d693b | 2010-10-16 14:22:38 -0700 | [diff] [blame] | 2016 | if (!noulri && cpu_has_userlocal) |
| 2017 | hwrena |= (1 << 29); |
Ralf Baechle | a369202 | 2007-07-10 17:33:02 +0100 | [diff] [blame] | 2018 | |
Kevin Cernekee | 18d693b | 2010-10-16 14:22:38 -0700 | [diff] [blame] | 2019 | if (hwrena) |
| 2020 | write_c0_hwrena(hwrena); |
James Hogan | ae4ce45 | 2014-03-04 10:20:43 +0000 | [diff] [blame] | 2021 | } |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2022 | |
James Hogan | ae4ce45 | 2014-03-04 10:20:43 +0000 | [diff] [blame] | 2023 | static void configure_exception_vector(void) |
| 2024 | { |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2025 | if (cpu_has_veic || cpu_has_vint) { |
Chris Dearman | 9fb4c2b9 | 2009-03-20 15:33:55 -0700 | [diff] [blame] | 2026 | unsigned long sr = set_c0_status(ST0_BEV); |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 2027 | write_c0_ebase(ebase); |
Chris Dearman | 9fb4c2b9 | 2009-03-20 15:33:55 -0700 | [diff] [blame] | 2028 | write_c0_status(sr); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2029 | /* Setting vector spacing enables EI/VI mode */ |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 2030 | change_c0_intctl(0x3e0, VECTORSPACING); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2031 | } |
Ralf Baechle | d03d0a5 | 2005-08-17 13:44:26 +0000 | [diff] [blame] | 2032 | if (cpu_has_divec) { |
| 2033 | if (cpu_has_mipsmt) { |
| 2034 | unsigned int vpflags = dvpe(); |
| 2035 | set_c0_cause(CAUSEF_IV); |
| 2036 | evpe(vpflags); |
| 2037 | } else |
| 2038 | set_c0_cause(CAUSEF_IV); |
| 2039 | } |
James Hogan | ae4ce45 | 2014-03-04 10:20:43 +0000 | [diff] [blame] | 2040 | } |
| 2041 | |
| 2042 | void per_cpu_trap_init(bool is_boot_cpu) |
| 2043 | { |
| 2044 | unsigned int cpu = smp_processor_id(); |
James Hogan | ae4ce45 | 2014-03-04 10:20:43 +0000 | [diff] [blame] | 2045 | |
| 2046 | configure_status(); |
| 2047 | configure_hwrena(); |
| 2048 | |
James Hogan | ae4ce45 | 2014-03-04 10:20:43 +0000 | [diff] [blame] | 2049 | configure_exception_vector(); |
Ralf Baechle | 3b1d4ed | 2007-06-20 22:27:10 +0100 | [diff] [blame] | 2050 | |
| 2051 | /* |
| 2052 | * Before R2 both interrupt numbers were fixed to 7, so on R2 only: |
| 2053 | * |
| 2054 | * o read IntCtl.IPTI to determine the timer interrupt |
| 2055 | * o read IntCtl.IPPCI to determine the performance counter interrupt |
James Hogan | 8f7ff02 | 2015-01-29 11:14:07 +0000 | [diff] [blame] | 2056 | * o read IntCtl.IPFDC to determine the fast debug channel interrupt |
Ralf Baechle | 3b1d4ed | 2007-06-20 22:27:10 +0100 | [diff] [blame] | 2057 | */ |
Leonid Yegoshin | 9c7d576 | 2014-11-14 11:25:30 +0000 | [diff] [blame] | 2058 | if (cpu_has_mips_r2_r6) { |
David VomLehn | 010c108 | 2009-12-21 17:49:22 -0800 | [diff] [blame] | 2059 | cp0_compare_irq_shift = CAUSEB_TI - CAUSEB_IP; |
| 2060 | cp0_compare_irq = (read_c0_intctl() >> INTCTLB_IPTI) & 7; |
| 2061 | cp0_perfcount_irq = (read_c0_intctl() >> INTCTLB_IPPCI) & 7; |
James Hogan | 8f7ff02 | 2015-01-29 11:14:07 +0000 | [diff] [blame] | 2062 | cp0_fdc_irq = (read_c0_intctl() >> INTCTLB_IPFDC) & 7; |
| 2063 | if (!cp0_fdc_irq) |
| 2064 | cp0_fdc_irq = -1; |
| 2065 | |
Ralf Baechle | 3b1d4ed | 2007-06-20 22:27:10 +0100 | [diff] [blame] | 2066 | } else { |
| 2067 | cp0_compare_irq = CP0_LEGACY_COMPARE_IRQ; |
Ralf Baechle | c6a4ebb | 2012-07-06 23:56:00 +0200 | [diff] [blame] | 2068 | cp0_compare_irq_shift = CP0_LEGACY_PERFCNT_IRQ; |
Chris Dearman | c3e838a | 2007-06-21 12:59:57 +0100 | [diff] [blame] | 2069 | cp0_perfcount_irq = -1; |
James Hogan | 8f7ff02 | 2015-01-29 11:14:07 +0000 | [diff] [blame] | 2070 | cp0_fdc_irq = -1; |
Ralf Baechle | 3b1d4ed | 2007-06-20 22:27:10 +0100 | [diff] [blame] | 2071 | } |
| 2072 | |
David Daney | 48c4ac9 | 2013-05-13 13:56:44 -0700 | [diff] [blame] | 2073 | if (!cpu_data[cpu].asid_cache) |
| 2074 | cpu_data[cpu].asid_cache = ASID_FIRST_VERSION; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | |
| 2076 | atomic_inc(&init_mm.mm_count); |
| 2077 | current->active_mm = &init_mm; |
| 2078 | BUG_ON(current->mm); |
| 2079 | enter_lazy_tlb(&init_mm, current); |
| 2080 | |
David Daney | 6650df3 | 2012-05-15 00:04:50 -0700 | [diff] [blame] | 2081 | /* Boot CPU's cache setup in setup_arch(). */ |
| 2082 | if (!is_boot_cpu) |
| 2083 | cpu_cache_init(); |
Ralf Baechle | 41c594a | 2006-04-05 09:45:45 +0100 | [diff] [blame] | 2084 | tlb_init(); |
David Daney | 3d8bfdd | 2010-12-21 14:19:11 -0800 | [diff] [blame] | 2085 | TLBMISS_HANDLER_SETUP(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2086 | } |
| 2087 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2088 | /* Install CPU exception handler */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 2089 | void set_handler(unsigned long offset, void *addr, unsigned long size) |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2090 | { |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 2091 | #ifdef CONFIG_CPU_MICROMIPS |
| 2092 | memcpy((void *)(ebase + offset), ((unsigned char *)addr - 1), size); |
| 2093 | #else |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2094 | memcpy((void *)(ebase + offset), addr, size); |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 2095 | #endif |
Thomas Bogendoerfer | e0cee3e | 2008-08-04 20:53:57 +0200 | [diff] [blame] | 2096 | local_flush_icache_range(ebase + offset, ebase + offset + size); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2097 | } |
| 2098 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 2099 | static char panic_null_cerr[] = |
Ralf Baechle | 641e97f | 2007-10-11 23:46:05 +0100 | [diff] [blame] | 2100 | "Trying to set NULL cache error exception handler"; |
| 2101 | |
Ralf Baechle | 42fe7ee | 2009-01-28 18:48:23 +0000 | [diff] [blame] | 2102 | /* |
| 2103 | * Install uncached CPU exception handler. |
| 2104 | * This is suitable only for the cache error exception which is the only |
| 2105 | * exception handler that is being run uncached. |
| 2106 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 2107 | void set_uncached_handler(unsigned long offset, void *addr, |
Ralf Baechle | 234fcd1 | 2008-03-08 09:56:28 +0000 | [diff] [blame] | 2108 | unsigned long size) |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2109 | { |
Sebastian Andrzej Siewior | 4f81b01 | 2010-04-27 22:53:30 +0200 | [diff] [blame] | 2110 | unsigned long uncached_ebase = CKSEG1ADDR(ebase); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2111 | |
Ralf Baechle | 641e97f | 2007-10-11 23:46:05 +0100 | [diff] [blame] | 2112 | if (!addr) |
| 2113 | panic(panic_null_cerr); |
| 2114 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2115 | memcpy((void *)(uncached_ebase + offset), addr, size); |
| 2116 | } |
| 2117 | |
Atsushi Nemoto | 5b10496 | 2006-09-11 17:50:29 +0900 | [diff] [blame] | 2118 | static int __initdata rdhwr_noopt; |
| 2119 | static int __init set_rdhwr_noopt(char *str) |
| 2120 | { |
| 2121 | rdhwr_noopt = 1; |
| 2122 | return 1; |
| 2123 | } |
| 2124 | |
| 2125 | __setup("rdhwr_noopt", set_rdhwr_noopt); |
| 2126 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2127 | void __init trap_init(void) |
| 2128 | { |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 2129 | extern char except_vec3_generic; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | extern char except_vec4; |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 2131 | extern char except_vec3_r4000; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2132 | unsigned long i; |
Atsushi Nemoto | c65a548 | 2007-11-12 02:05:18 +0900 | [diff] [blame] | 2133 | |
| 2134 | check_wait(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2135 | |
Jason Wessel | 8854700 | 2008-07-29 15:58:53 -0500 | [diff] [blame] | 2136 | #if defined(CONFIG_KGDB) |
| 2137 | if (kgdb_early_setup) |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 2138 | return; /* Already done */ |
Jason Wessel | 8854700 | 2008-07-29 15:58:53 -0500 | [diff] [blame] | 2139 | #endif |
| 2140 | |
Chris Dearman | 9fb4c2b9 | 2009-03-20 15:33:55 -0700 | [diff] [blame] | 2141 | if (cpu_has_veic || cpu_has_vint) { |
| 2142 | unsigned long size = 0x200 + VECTORSPACING*64; |
| 2143 | ebase = (unsigned long) |
| 2144 | __alloc_bootmem(size, 1 << fls(size), 0); |
| 2145 | } else { |
Sanjay Lal | 9843b03 | 2012-11-21 18:34:03 -0800 | [diff] [blame] | 2146 | #ifdef CONFIG_KVM_GUEST |
| 2147 | #define KVM_GUEST_KSEG0 0x40000000 |
| 2148 | ebase = KVM_GUEST_KSEG0; |
| 2149 | #else |
| 2150 | ebase = CKSEG0; |
| 2151 | #endif |
Leonid Yegoshin | 9c7d576 | 2014-11-14 11:25:30 +0000 | [diff] [blame] | 2152 | if (cpu_has_mips_r2_r6) |
David Daney | 566f74f | 2008-10-23 17:56:35 -0700 | [diff] [blame] | 2153 | ebase += (read_c0_ebase() & 0x3ffff000); |
| 2154 | } |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2155 | |
Steven J. Hill | c6213c6 | 2013-06-05 21:25:17 +0000 | [diff] [blame] | 2156 | if (cpu_has_mmips) { |
| 2157 | unsigned int config3 = read_c0_config3(); |
| 2158 | |
| 2159 | if (IS_ENABLED(CONFIG_CPU_MICROMIPS)) |
| 2160 | write_c0_config3(config3 | MIPS_CONF3_ISA_OE); |
| 2161 | else |
| 2162 | write_c0_config3(config3 & ~MIPS_CONF3_ISA_OE); |
| 2163 | } |
| 2164 | |
Kevin Cernekee | 6fb97ef | 2011-11-16 01:25:45 +0000 | [diff] [blame] | 2165 | if (board_ebase_setup) |
| 2166 | board_ebase_setup(); |
David Daney | 6650df3 | 2012-05-15 00:04:50 -0700 | [diff] [blame] | 2167 | per_cpu_trap_init(true); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2168 | |
| 2169 | /* |
| 2170 | * Copy the generic exception handlers to their final destination. |
| 2171 | * This will be overriden later as suitable for a particular |
| 2172 | * configuration. |
| 2173 | */ |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2174 | set_handler(0x180, &except_vec3_generic, 0x80); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | |
| 2176 | /* |
| 2177 | * Setup default vectors |
| 2178 | */ |
| 2179 | for (i = 0; i <= 31; i++) |
| 2180 | set_except_vector(i, handle_reserved); |
| 2181 | |
| 2182 | /* |
| 2183 | * Copy the EJTAG debug exception vector handler code to it's final |
| 2184 | * destination. |
| 2185 | */ |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2186 | if (cpu_has_ejtag && board_ejtag_handler_setup) |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 2187 | board_ejtag_handler_setup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2188 | |
| 2189 | /* |
| 2190 | * Only some CPUs have the watch exceptions. |
| 2191 | */ |
| 2192 | if (cpu_has_watch) |
| 2193 | set_except_vector(23, handle_watch); |
| 2194 | |
| 2195 | /* |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2196 | * Initialise interrupt handlers |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2197 | */ |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2198 | if (cpu_has_veic || cpu_has_vint) { |
| 2199 | int nvec = cpu_has_veic ? 64 : 8; |
| 2200 | for (i = 0; i < nvec; i++) |
Ralf Baechle | ff3eab2 | 2006-03-29 14:12:58 +0100 | [diff] [blame] | 2201 | set_vi_handler(i, NULL); |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2202 | } |
| 2203 | else if (cpu_has_divec) |
| 2204 | set_handler(0x200, &except_vec4, 0x8); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2205 | |
| 2206 | /* |
| 2207 | * Some CPUs can enable/disable for cache parity detection, but does |
| 2208 | * it different ways. |
| 2209 | */ |
| 2210 | parity_protection_init(); |
| 2211 | |
| 2212 | /* |
| 2213 | * The Data Bus Errors / Instruction Bus Errors are signaled |
| 2214 | * by external hardware. Therefore these two exceptions |
| 2215 | * may have board specific handlers. |
| 2216 | */ |
| 2217 | if (board_be_init) |
| 2218 | board_be_init(); |
| 2219 | |
Ralf Baechle | f94d9a8 | 2013-05-21 17:30:36 +0200 | [diff] [blame] | 2220 | set_except_vector(0, using_rollback_handler() ? rollback_handle_int |
| 2221 | : handle_int); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2222 | set_except_vector(1, handle_tlbm); |
| 2223 | set_except_vector(2, handle_tlbl); |
| 2224 | set_except_vector(3, handle_tlbs); |
| 2225 | |
| 2226 | set_except_vector(4, handle_adel); |
| 2227 | set_except_vector(5, handle_ades); |
| 2228 | |
| 2229 | set_except_vector(6, handle_ibe); |
| 2230 | set_except_vector(7, handle_dbe); |
| 2231 | |
| 2232 | set_except_vector(8, handle_sys); |
| 2233 | set_except_vector(9, handle_bp); |
Atsushi Nemoto | 5b10496 | 2006-09-11 17:50:29 +0900 | [diff] [blame] | 2234 | set_except_vector(10, rdhwr_noopt ? handle_ri : |
| 2235 | (cpu_has_vtag_icache ? |
| 2236 | handle_ri_rdhwr_vivt : handle_ri_rdhwr)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2237 | set_except_vector(11, handle_cpu); |
| 2238 | set_except_vector(12, handle_ov); |
| 2239 | set_except_vector(13, handle_tr); |
Paul Burton | 2bcb3fb | 2014-01-27 15:23:12 +0000 | [diff] [blame] | 2240 | set_except_vector(14, handle_msa_fpe); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2241 | |
Ralf Baechle | 10cc352 | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 2242 | if (current_cpu_type() == CPU_R6000 || |
| 2243 | current_cpu_type() == CPU_R6000A) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2244 | /* |
| 2245 | * The R6000 is the only R-series CPU that features a machine |
| 2246 | * check exception (similar to the R4000 cache error) and |
| 2247 | * unaligned ldc1/sdc1 exception. The handlers have not been |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 2248 | * written yet. Well, anyway there is no R6000 machine on the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2249 | * current list of targets for Linux/MIPS. |
| 2250 | * (Duh, crap, there is someone with a triple R6k machine) |
| 2251 | */ |
| 2252 | //set_except_vector(14, handle_mc); |
| 2253 | //set_except_vector(15, handle_ndc); |
| 2254 | } |
| 2255 | |
Ralf Baechle | e01402b | 2005-07-14 15:57:16 +0000 | [diff] [blame] | 2256 | |
| 2257 | if (board_nmi_handler_setup) |
| 2258 | board_nmi_handler_setup(); |
| 2259 | |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 2260 | if (cpu_has_fpu && !cpu_has_nofpuex) |
| 2261 | set_except_vector(15, handle_fpe); |
| 2262 | |
Leonid Yegoshin | 75b5b5e | 2013-11-14 16:12:31 +0000 | [diff] [blame] | 2263 | set_except_vector(16, handle_ftlb); |
Leonid Yegoshin | 5890f70 | 2014-07-15 14:09:56 +0100 | [diff] [blame] | 2264 | |
| 2265 | if (cpu_has_rixiex) { |
| 2266 | set_except_vector(19, tlb_do_page_fault_0); |
| 2267 | set_except_vector(20, tlb_do_page_fault_0); |
| 2268 | } |
| 2269 | |
Paul Burton | 1db1af8 | 2014-01-27 15:23:11 +0000 | [diff] [blame] | 2270 | set_except_vector(21, handle_msa); |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 2271 | set_except_vector(22, handle_mdmx); |
| 2272 | |
| 2273 | if (cpu_has_mcheck) |
| 2274 | set_except_vector(24, handle_mcheck); |
| 2275 | |
Ralf Baechle | 340ee4b | 2005-08-17 17:44:08 +0000 | [diff] [blame] | 2276 | if (cpu_has_mipsmt) |
| 2277 | set_except_vector(25, handle_mt); |
| 2278 | |
Chris Dearman | acaec42 | 2007-05-24 22:30:18 +0100 | [diff] [blame] | 2279 | set_except_vector(26, handle_dsp); |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 2280 | |
David Daney | fcbf1df | 2012-05-15 00:04:46 -0700 | [diff] [blame] | 2281 | if (board_cache_error_setup) |
| 2282 | board_cache_error_setup(); |
| 2283 | |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 2284 | if (cpu_has_vce) |
| 2285 | /* Special exception: R4[04]00 uses also the divec space. */ |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 2286 | set_handler(0x180, &except_vec3_r4000, 0x100); |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 2287 | else if (cpu_has_4kex) |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 2288 | set_handler(0x180, &except_vec3_generic, 0x80); |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 2289 | else |
Steven J. Hill | 2a0b24f | 2013-03-25 12:15:55 -0500 | [diff] [blame] | 2290 | set_handler(0x080, &except_vec3_generic, 0x80); |
Ralf Baechle | e50c0a8 | 2005-05-31 11:49:19 +0000 | [diff] [blame] | 2291 | |
Thomas Bogendoerfer | e0cee3e | 2008-08-04 20:53:57 +0200 | [diff] [blame] | 2292 | local_flush_icache_range(ebase, ebase + 0x400); |
Thomas Bogendoerfer | 0510617 | 2008-08-04 19:44:34 +0200 | [diff] [blame] | 2293 | |
| 2294 | sort_extable(__start___dbe_table, __stop___dbe_table); |
Ralf Baechle | 69f3a7d | 2009-11-24 01:24:58 +0000 | [diff] [blame] | 2295 | |
Ralf Baechle | 4483b15 | 2010-08-05 13:25:59 +0100 | [diff] [blame] | 2296 | cu2_notifier(default_cu2_call, 0x80000000); /* Run last */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2297 | } |
James Hogan | ae4ce45 | 2014-03-04 10:20:43 +0000 | [diff] [blame] | 2298 | |
| 2299 | static int trap_pm_notifier(struct notifier_block *self, unsigned long cmd, |
| 2300 | void *v) |
| 2301 | { |
| 2302 | switch (cmd) { |
| 2303 | case CPU_PM_ENTER_FAILED: |
| 2304 | case CPU_PM_EXIT: |
| 2305 | configure_status(); |
| 2306 | configure_hwrena(); |
| 2307 | configure_exception_vector(); |
| 2308 | |
| 2309 | /* Restore register with CPU number for TLB handlers */ |
| 2310 | TLBMISS_HANDLER_RESTORE(); |
| 2311 | |
| 2312 | break; |
| 2313 | } |
| 2314 | |
| 2315 | return NOTIFY_OK; |
| 2316 | } |
| 2317 | |
| 2318 | static struct notifier_block trap_pm_notifier_block = { |
| 2319 | .notifier_call = trap_pm_notifier, |
| 2320 | }; |
| 2321 | |
| 2322 | static int __init trap_pm_init(void) |
| 2323 | { |
| 2324 | return cpu_pm_register_notifier(&trap_pm_notifier_block); |
| 2325 | } |
| 2326 | arch_initcall(trap_pm_init); |