1#include <linux/compiler.h>
2#include <linux/mm.h>
3#include <linux/signal.h>
4#include <linux/smp.h>
5
6#include <asm/asm.h>
7#include <asm/bootinfo.h>
8#include <asm/byteorder.h>
9#include <asm/cpu.h>
10#include <asm/inst.h>
11#include <asm/processor.h>
12#include <asm/uaccess.h>
13#include <asm/branch.h>
14#include <asm/mipsregs.h>
15#include <asm/cacheflush.h>
16
17#include <asm/fpu_emulator.h>
18
19#include "ieee754.h"
20
21
22
23#ifdef __mips
24#undef __mips
25#endif
26#define __mips 4
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45struct emuframe {
46 mips_instruction emul;
47 mips_instruction badinst;
48 mips_instruction cookie;
49 unsigned long epc;
50};
51
52int mips_dsemul(struct pt_regs *regs, mips_instruction ir, unsigned long cpc)
53{
54 extern asmlinkage void handle_dsemulret(void);
55 struct emuframe __user *fr;
56 int err;
57
58 if ((get_isa16_mode(regs->cp0_epc) && ((ir >> 16) == MM_NOP16)) ||
59 (ir == 0)) {
60
61 regs->cp0_epc = cpc;
62 regs->cp0_cause &= ~CAUSEF_BD;
63 return 0;
64 }
65#ifdef DSEMUL_TRACE
66 printk("dsemul %lx %lx\n", regs->cp0_epc, cpc);
67
68#endif
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89 fr = (struct emuframe __user *)
90 ((regs->regs[29] - sizeof(struct emuframe)) & ~0x7);
91
92
93 if (unlikely(!access_ok(VERIFY_WRITE, fr, sizeof(struct emuframe))))
94 return SIGBUS;
95
96 if (get_isa16_mode(regs->cp0_epc)) {
97 err = __put_user(ir >> 16, (u16 __user *)(&fr->emul));
98 err |= __put_user(ir & 0xffff, (u16 __user *)((long)(&fr->emul) + 2));
99 err |= __put_user(BREAK_MATH >> 16, (u16 __user *)(&fr->badinst));
100 err |= __put_user(BREAK_MATH & 0xffff, (u16 __user *)((long)(&fr->badinst) + 2));
101 } else {
102 err = __put_user(ir, &fr->emul);
103 err |= __put_user((mips_instruction)BREAK_MATH, &fr->badinst);
104 }
105
106 err |= __put_user((mips_instruction)BD_COOKIE, &fr->cookie);
107 err |= __put_user(cpc, &fr->epc);
108
109 if (unlikely(err)) {
110 MIPS_FPU_EMU_INC_STATS(errors);
111 return SIGBUS;
112 }
113
114 regs->cp0_epc = ((unsigned long) &fr->emul) |
115 get_isa16_mode(regs->cp0_epc);
116
117 flush_cache_sigtramp((unsigned long)&fr->badinst);
118
119 return SIGILL;
120}
121
122int do_dsemulret(struct pt_regs *xcp)
123{
124 struct emuframe __user *fr;
125 unsigned long epc;
126 u32 insn, cookie;
127 int err = 0;
128 u16 instr[2];
129
130 fr = (struct emuframe __user *)
131 (msk_isa16_mode(xcp->cp0_epc) - sizeof(mips_instruction));
132
133
134
135
136
137 if (!access_ok(VERIFY_READ, fr, sizeof(struct emuframe)))
138 return 0;
139
140
141
142
143
144
145
146 if (get_isa16_mode(xcp->cp0_epc)) {
147 err = __get_user(instr[0], (u16 __user *)(&fr->badinst));
148 err |= __get_user(instr[1], (u16 __user *)((long)(&fr->badinst) + 2));
149 insn = (instr[0] << 16) | instr[1];
150 } else {
151 err = __get_user(insn, &fr->badinst);
152 }
153 err |= __get_user(cookie, &fr->cookie);
154
155 if (unlikely(err || (insn != BREAK_MATH) || (cookie != BD_COOKIE))) {
156 MIPS_FPU_EMU_INC_STATS(errors);
157 return 0;
158 }
159
160
161
162
163
164
165
166
167
168
169
170#ifdef DSEMUL_TRACE
171 printk("dsemulret\n");
172#endif
173 if (__get_user(epc, &fr->epc)) {
174
175 force_sig(SIGBUS, current);
176
177 return 0;
178 }
179
180
181 xcp->cp0_epc = epc;
182
183 return 1;
184}
185