blob: 3aea39d99c37992fa04e16fa2808155461a584c9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#include <asm/branch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#include <asm/cacheflush.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07003#include <asm/fpu_emulator.h>
Ralf Baechlecd8ee342014-04-16 02:09:53 +02004#include <asm/inst.h>
5#include <asm/mipsregs.h>
6#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8#include "ieee754.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10/* Strap kernel emulator for full MIPS IV emulation */
11
12#ifdef __mips
13#undef __mips
14#endif
15#define __mips 4
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017/*
18 * Emulate the arbritrary instruction ir at xcp->cp0_epc. Required when
19 * we have to emulate the instruction in a COP1 branch delay slot. Do
20 * not change cp0_epc due to the instruction
21 *
22 * According to the spec:
Lucas De Marchi25985ed2011-03-30 22:57:33 -030023 * 1) it shouldn't be a branch :-)
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 * 2) it can be a COP instruction :-(
25 * 3) if we are tring to run a protected memory space we must take
26 * special care on memory access instructions :-(
27 */
28
29/*
30 * "Trampoline" return routine to catch exception following
31 * execution of delay-slot instruction execution.
32 */
33
34struct emuframe {
35 mips_instruction emul;
36 mips_instruction badinst;
37 mips_instruction cookie;
Ralf Baechle333d1f62005-02-28 17:55:57 +000038 unsigned long epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
Ralf Baechle333d1f62005-02-28 17:55:57 +000041int mips_dsemul(struct pt_regs *regs, mips_instruction ir, unsigned long cpc)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 extern asmlinkage void handle_dsemulret(void);
Atsushi Nemoto5e0373b2007-07-13 23:02:42 +090044 struct emuframe __user *fr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 int err;
46
Leonid Yegoshin102cedc2013-03-25 12:09:02 -050047 if ((get_isa16_mode(regs->cp0_epc) && ((ir >> 16) == MM_NOP16)) ||
48 (ir == 0)) {
49 /* NOP is easy */
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 regs->cp0_epc = cpc;
Ralf Baechlee7e9cae2014-04-16 01:59:03 +020051 clear_delay_slot(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 return 0;
53 }
54#ifdef DSEMUL_TRACE
55 printk("dsemul %lx %lx\n", regs->cp0_epc, cpc);
56
57#endif
58
59 /*
60 * The strategy is to push the instruction onto the user stack
61 * and put a trap after it which we can catch and jump to
62 * the required address any alternative apart from full
63 * instruction emulation!!.
64 *
65 * Algorithmics used a system call instruction, and
66 * borrowed that vector. MIPS/Linux version is a bit
67 * more heavyweight in the interests of portability and
68 * multiprocessor support. For Linux we generate a
69 * an unaligned access and force an address error exception.
70 *
71 * For embedded systems (stand-alone) we prefer to use a
72 * non-existing CP1 instruction. This prevents us from emulating
73 * branches, but gives us a cleaner interface to the exception
74 * handler (single entry point).
75 */
76
77 /* Ensure that the two instructions are in the same cache line */
Atsushi Nemoto5e0373b2007-07-13 23:02:42 +090078 fr = (struct emuframe __user *)
79 ((regs->regs[29] - sizeof(struct emuframe)) & ~0x7);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81 /* Verify that the stack pointer is not competely insane */
82 if (unlikely(!access_ok(VERIFY_WRITE, fr, sizeof(struct emuframe))))
83 return SIGBUS;
84
Leonid Yegoshin102cedc2013-03-25 12:09:02 -050085 if (get_isa16_mode(regs->cp0_epc)) {
86 err = __put_user(ir >> 16, (u16 __user *)(&fr->emul));
87 err |= __put_user(ir & 0xffff, (u16 __user *)((long)(&fr->emul) + 2));
88 err |= __put_user(BREAK_MATH >> 16, (u16 __user *)(&fr->badinst));
89 err |= __put_user(BREAK_MATH & 0xffff, (u16 __user *)((long)(&fr->badinst) + 2));
90 } else {
91 err = __put_user(ir, &fr->emul);
92 err |= __put_user((mips_instruction)BREAK_MATH, &fr->badinst);
93 }
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 err |= __put_user((mips_instruction)BD_COOKIE, &fr->cookie);
96 err |= __put_user(cpc, &fr->epc);
97
98 if (unlikely(err)) {
David Daneyb6ee75e2009-11-05 11:34:26 -080099 MIPS_FPU_EMU_INC_STATS(errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return SIGBUS;
101 }
102
Leonid Yegoshin102cedc2013-03-25 12:09:02 -0500103 regs->cp0_epc = ((unsigned long) &fr->emul) |
104 get_isa16_mode(regs->cp0_epc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 flush_cache_sigtramp((unsigned long)&fr->badinst);
107
108 return SIGILL; /* force out of emulation loop */
109}
110
111int do_dsemulret(struct pt_regs *xcp)
112{
Atsushi Nemoto5e0373b2007-07-13 23:02:42 +0900113 struct emuframe __user *fr;
Ralf Baechle333d1f62005-02-28 17:55:57 +0000114 unsigned long epc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 u32 insn, cookie;
116 int err = 0;
Leonid Yegoshin102cedc2013-03-25 12:09:02 -0500117 u16 instr[2];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Atsushi Nemoto5e0373b2007-07-13 23:02:42 +0900119 fr = (struct emuframe __user *)
Leonid Yegoshin102cedc2013-03-25 12:09:02 -0500120 (msk_isa16_mode(xcp->cp0_epc) - sizeof(mips_instruction));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 /*
123 * If we can't even access the area, something is very wrong, but we'll
124 * leave that to the default handling
125 */
126 if (!access_ok(VERIFY_READ, fr, sizeof(struct emuframe)))
127 return 0;
128
129 /*
130 * Do some sanity checking on the stackframe:
131 *
Ralf Baechleba3049e2008-10-28 17:38:42 +0000132 * - Is the instruction pointed to by the EPC an BREAK_MATH?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * - Is the following memory word the BD_COOKIE?
134 */
Leonid Yegoshin102cedc2013-03-25 12:09:02 -0500135 if (get_isa16_mode(xcp->cp0_epc)) {
136 err = __get_user(instr[0], (u16 __user *)(&fr->badinst));
137 err |= __get_user(instr[1], (u16 __user *)((long)(&fr->badinst) + 2));
138 insn = (instr[0] << 16) | instr[1];
139 } else {
140 err = __get_user(insn, &fr->badinst);
141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 err |= __get_user(cookie, &fr->cookie);
143
Ralf Baechleba3049e2008-10-28 17:38:42 +0000144 if (unlikely(err || (insn != BREAK_MATH) || (cookie != BD_COOKIE))) {
David Daneyb6ee75e2009-11-05 11:34:26 -0800145 MIPS_FPU_EMU_INC_STATS(errors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 return 0;
147 }
148
149 /*
150 * At this point, we are satisfied that it's a BD emulation trap. Yes,
151 * a user might have deliberately put two malformed and useless
152 * instructions in a row in his program, in which case he's in for a
153 * nasty surprise - the next instruction will be treated as a
154 * continuation address! Alas, this seems to be the only way that we
155 * can handle signals, recursion, and longjmps() in the context of
156 * emulating the branch delay instruction.
157 */
158
159#ifdef DSEMUL_TRACE
160 printk("dsemulret\n");
161#endif
162 if (__get_user(epc, &fr->epc)) { /* Saved EPC */
163 /* This is not a good situation to be in */
164 force_sig(SIGBUS, current);
165
166 return 0;
167 }
168
169 /* Set EPC to return to post-branch instruction */
170 xcp->cp0_epc = epc;
171
172 return 1;
173}