Loading...
1/*
2 * arch/sparc/kernel/traps.c
3 *
4 * Copyright 1995, 2008 David S. Miller (davem@davemloft.net)
5 * Copyright 2000 Jakub Jelinek (jakub@redhat.com)
6 */
7
8/*
9 * I hate traps on the sparc, grrr...
10 */
11
12#include <linux/sched.h> /* for jiffies */
13#include <linux/kernel.h>
14#include <linux/signal.h>
15#include <linux/smp.h>
16#include <linux/kdebug.h>
17#include <linux/export.h>
18
19#include <asm/delay.h>
20#include <asm/ptrace.h>
21#include <asm/oplib.h>
22#include <asm/page.h>
23#include <asm/pgtable.h>
24#include <asm/unistd.h>
25#include <asm/traps.h>
26
27#include "entry.h"
28#include "kernel.h"
29
30/* #define TRAP_DEBUG */
31
32static void instruction_dump(unsigned long *pc)
33{
34 int i;
35
36 if((((unsigned long) pc) & 3))
37 return;
38
39 for(i = -3; i < 6; i++)
40 printk("%c%08lx%c",i?' ':'<',pc[i],i?' ':'>');
41 printk("\n");
42}
43
44#define __SAVE __asm__ __volatile__("save %sp, -0x40, %sp\n\t")
45#define __RESTORE __asm__ __volatile__("restore %g0, %g0, %g0\n\t")
46
47void die_if_kernel(char *str, struct pt_regs *regs)
48{
49 static int die_counter;
50 int count = 0;
51
52 /* Amuse the user. */
53 printk(
54" \\|/ ____ \\|/\n"
55" \"@'/ ,. \\`@\"\n"
56" /_| \\__/ |_\\\n"
57" \\__U_/\n");
58
59 printk("%s(%d): %s [#%d]\n", current->comm, task_pid_nr(current), str, ++die_counter);
60 show_regs(regs);
61 add_taint(TAINT_DIE);
62
63 __SAVE; __SAVE; __SAVE; __SAVE;
64 __SAVE; __SAVE; __SAVE; __SAVE;
65 __RESTORE; __RESTORE; __RESTORE; __RESTORE;
66 __RESTORE; __RESTORE; __RESTORE; __RESTORE;
67
68 {
69 struct reg_window32 *rw = (struct reg_window32 *)regs->u_regs[UREG_FP];
70
71 /* Stop the back trace when we hit userland or we
72 * find some badly aligned kernel stack. Set an upper
73 * bound in case our stack is trashed and we loop.
74 */
75 while(rw &&
76 count++ < 30 &&
77 (((unsigned long) rw) >= PAGE_OFFSET) &&
78 !(((unsigned long) rw) & 0x7)) {
79 printk("Caller[%08lx]: %pS\n", rw->ins[7],
80 (void *) rw->ins[7]);
81 rw = (struct reg_window32 *)rw->ins[6];
82 }
83 }
84 printk("Instruction DUMP:");
85 instruction_dump ((unsigned long *) regs->pc);
86 if(regs->psr & PSR_PS)
87 do_exit(SIGKILL);
88 do_exit(SIGSEGV);
89}
90
91void do_hw_interrupt(struct pt_regs *regs, unsigned long type)
92{
93 siginfo_t info;
94
95 if(type < 0x80) {
96 /* Sun OS's puke from bad traps, Linux survives! */
97 printk("Unimplemented Sparc TRAP, type = %02lx\n", type);
98 die_if_kernel("Whee... Hello Mr. Penguin", regs);
99 }
100
101 if(regs->psr & PSR_PS)
102 die_if_kernel("Kernel bad trap", regs);
103
104 info.si_signo = SIGILL;
105 info.si_errno = 0;
106 info.si_code = ILL_ILLTRP;
107 info.si_addr = (void __user *)regs->pc;
108 info.si_trapno = type - 0x80;
109 force_sig_info(SIGILL, &info, current);
110}
111
112void do_illegal_instruction(struct pt_regs *regs, unsigned long pc, unsigned long npc,
113 unsigned long psr)
114{
115 siginfo_t info;
116
117 if(psr & PSR_PS)
118 die_if_kernel("Kernel illegal instruction", regs);
119#ifdef TRAP_DEBUG
120 printk("Ill instr. at pc=%08lx instruction is %08lx\n",
121 regs->pc, *(unsigned long *)regs->pc);
122#endif
123
124 info.si_signo = SIGILL;
125 info.si_errno = 0;
126 info.si_code = ILL_ILLOPC;
127 info.si_addr = (void __user *)pc;
128 info.si_trapno = 0;
129 send_sig_info(SIGILL, &info, current);
130}
131
132void do_priv_instruction(struct pt_regs *regs, unsigned long pc, unsigned long npc,
133 unsigned long psr)
134{
135 siginfo_t info;
136
137 if(psr & PSR_PS)
138 die_if_kernel("Penguin instruction from Penguin mode??!?!", regs);
139 info.si_signo = SIGILL;
140 info.si_errno = 0;
141 info.si_code = ILL_PRVOPC;
142 info.si_addr = (void __user *)pc;
143 info.si_trapno = 0;
144 send_sig_info(SIGILL, &info, current);
145}
146
147/* XXX User may want to be allowed to do this. XXX */
148
149void do_memaccess_unaligned(struct pt_regs *regs, unsigned long pc, unsigned long npc,
150 unsigned long psr)
151{
152 siginfo_t info;
153
154 if(regs->psr & PSR_PS) {
155 printk("KERNEL MNA at pc %08lx npc %08lx called by %08lx\n", pc, npc,
156 regs->u_regs[UREG_RETPC]);
157 die_if_kernel("BOGUS", regs);
158 /* die_if_kernel("Kernel MNA access", regs); */
159 }
160#if 0
161 show_regs (regs);
162 instruction_dump ((unsigned long *) regs->pc);
163 printk ("do_MNA!\n");
164#endif
165 info.si_signo = SIGBUS;
166 info.si_errno = 0;
167 info.si_code = BUS_ADRALN;
168 info.si_addr = /* FIXME: Should dig out mna address */ (void *)0;
169 info.si_trapno = 0;
170 send_sig_info(SIGBUS, &info, current);
171}
172
173static unsigned long init_fsr = 0x0UL;
174static unsigned long init_fregs[32] __attribute__ ((aligned (8))) =
175 { ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL,
176 ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL,
177 ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL,
178 ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL };
179
180void do_fpd_trap(struct pt_regs *regs, unsigned long pc, unsigned long npc,
181 unsigned long psr)
182{
183 /* Sanity check... */
184 if(psr & PSR_PS)
185 die_if_kernel("Kernel gets FloatingPenguinUnit disabled trap", regs);
186
187 put_psr(get_psr() | PSR_EF); /* Allow FPU ops. */
188 regs->psr |= PSR_EF;
189#ifndef CONFIG_SMP
190 if(last_task_used_math == current)
191 return;
192 if(last_task_used_math) {
193 /* Other processes fpu state, save away */
194 struct task_struct *fptask = last_task_used_math;
195 fpsave(&fptask->thread.float_regs[0], &fptask->thread.fsr,
196 &fptask->thread.fpqueue[0], &fptask->thread.fpqdepth);
197 }
198 last_task_used_math = current;
199 if(used_math()) {
200 fpload(¤t->thread.float_regs[0], ¤t->thread.fsr);
201 } else {
202 /* Set initial sane state. */
203 fpload(&init_fregs[0], &init_fsr);
204 set_used_math();
205 }
206#else
207 if(!used_math()) {
208 fpload(&init_fregs[0], &init_fsr);
209 set_used_math();
210 } else {
211 fpload(¤t->thread.float_regs[0], ¤t->thread.fsr);
212 }
213 set_thread_flag(TIF_USEDFPU);
214#endif
215}
216
217static unsigned long fake_regs[32] __attribute__ ((aligned (8)));
218static unsigned long fake_fsr;
219static unsigned long fake_queue[32] __attribute__ ((aligned (8)));
220static unsigned long fake_depth;
221
222extern int do_mathemu(struct pt_regs *, struct task_struct *);
223
224void do_fpe_trap(struct pt_regs *regs, unsigned long pc, unsigned long npc,
225 unsigned long psr)
226{
227 static int calls;
228 siginfo_t info;
229 unsigned long fsr;
230 int ret = 0;
231#ifndef CONFIG_SMP
232 struct task_struct *fpt = last_task_used_math;
233#else
234 struct task_struct *fpt = current;
235#endif
236 put_psr(get_psr() | PSR_EF);
237 /* If nobody owns the fpu right now, just clear the
238 * error into our fake static buffer and hope it don't
239 * happen again. Thank you crashme...
240 */
241#ifndef CONFIG_SMP
242 if(!fpt) {
243#else
244 if (!test_tsk_thread_flag(fpt, TIF_USEDFPU)) {
245#endif
246 fpsave(&fake_regs[0], &fake_fsr, &fake_queue[0], &fake_depth);
247 regs->psr &= ~PSR_EF;
248 return;
249 }
250 fpsave(&fpt->thread.float_regs[0], &fpt->thread.fsr,
251 &fpt->thread.fpqueue[0], &fpt->thread.fpqdepth);
252#ifdef DEBUG_FPU
253 printk("Hmm, FP exception, fsr was %016lx\n", fpt->thread.fsr);
254#endif
255
256 switch ((fpt->thread.fsr & 0x1c000)) {
257 /* switch on the contents of the ftt [floating point trap type] field */
258#ifdef DEBUG_FPU
259 case (1 << 14):
260 printk("IEEE_754_exception\n");
261 break;
262#endif
263 case (2 << 14): /* unfinished_FPop (underflow & co) */
264 case (3 << 14): /* unimplemented_FPop (quad stuff, maybe sqrt) */
265 ret = do_mathemu(regs, fpt);
266 break;
267#ifdef DEBUG_FPU
268 case (4 << 14):
269 printk("sequence_error (OS bug...)\n");
270 break;
271 case (5 << 14):
272 printk("hardware_error (uhoh!)\n");
273 break;
274 case (6 << 14):
275 printk("invalid_fp_register (user error)\n");
276 break;
277#endif /* DEBUG_FPU */
278 }
279 /* If we successfully emulated the FPop, we pretend the trap never happened :-> */
280 if (ret) {
281 fpload(¤t->thread.float_regs[0], ¤t->thread.fsr);
282 return;
283 }
284 /* nope, better SIGFPE the offending process... */
285
286#ifdef CONFIG_SMP
287 clear_tsk_thread_flag(fpt, TIF_USEDFPU);
288#endif
289 if(psr & PSR_PS) {
290 /* The first fsr store/load we tried trapped,
291 * the second one will not (we hope).
292 */
293 printk("WARNING: FPU exception from kernel mode. at pc=%08lx\n",
294 regs->pc);
295 regs->pc = regs->npc;
296 regs->npc += 4;
297 calls++;
298 if(calls > 2)
299 die_if_kernel("Too many Penguin-FPU traps from kernel mode",
300 regs);
301 return;
302 }
303
304 fsr = fpt->thread.fsr;
305 info.si_signo = SIGFPE;
306 info.si_errno = 0;
307 info.si_addr = (void __user *)pc;
308 info.si_trapno = 0;
309 info.si_code = __SI_FAULT;
310 if ((fsr & 0x1c000) == (1 << 14)) {
311 if (fsr & 0x10)
312 info.si_code = FPE_FLTINV;
313 else if (fsr & 0x08)
314 info.si_code = FPE_FLTOVF;
315 else if (fsr & 0x04)
316 info.si_code = FPE_FLTUND;
317 else if (fsr & 0x02)
318 info.si_code = FPE_FLTDIV;
319 else if (fsr & 0x01)
320 info.si_code = FPE_FLTRES;
321 }
322 send_sig_info(SIGFPE, &info, fpt);
323#ifndef CONFIG_SMP
324 last_task_used_math = NULL;
325#endif
326 regs->psr &= ~PSR_EF;
327 if(calls > 0)
328 calls=0;
329}
330
331void handle_tag_overflow(struct pt_regs *regs, unsigned long pc, unsigned long npc,
332 unsigned long psr)
333{
334 siginfo_t info;
335
336 if(psr & PSR_PS)
337 die_if_kernel("Penguin overflow trap from kernel mode", regs);
338 info.si_signo = SIGEMT;
339 info.si_errno = 0;
340 info.si_code = EMT_TAGOVF;
341 info.si_addr = (void __user *)pc;
342 info.si_trapno = 0;
343 send_sig_info(SIGEMT, &info, current);
344}
345
346void handle_watchpoint(struct pt_regs *regs, unsigned long pc, unsigned long npc,
347 unsigned long psr)
348{
349#ifdef TRAP_DEBUG
350 printk("Watchpoint detected at PC %08lx NPC %08lx PSR %08lx\n",
351 pc, npc, psr);
352#endif
353 if(psr & PSR_PS)
354 panic("Tell me what a watchpoint trap is, and I'll then deal "
355 "with such a beast...");
356}
357
358void handle_reg_access(struct pt_regs *regs, unsigned long pc, unsigned long npc,
359 unsigned long psr)
360{
361 siginfo_t info;
362
363#ifdef TRAP_DEBUG
364 printk("Register Access Exception at PC %08lx NPC %08lx PSR %08lx\n",
365 pc, npc, psr);
366#endif
367 info.si_signo = SIGBUS;
368 info.si_errno = 0;
369 info.si_code = BUS_OBJERR;
370 info.si_addr = (void __user *)pc;
371 info.si_trapno = 0;
372 force_sig_info(SIGBUS, &info, current);
373}
374
375void handle_cp_disabled(struct pt_regs *regs, unsigned long pc, unsigned long npc,
376 unsigned long psr)
377{
378 siginfo_t info;
379
380 info.si_signo = SIGILL;
381 info.si_errno = 0;
382 info.si_code = ILL_COPROC;
383 info.si_addr = (void __user *)pc;
384 info.si_trapno = 0;
385 send_sig_info(SIGILL, &info, current);
386}
387
388void handle_cp_exception(struct pt_regs *regs, unsigned long pc, unsigned long npc,
389 unsigned long psr)
390{
391 siginfo_t info;
392
393#ifdef TRAP_DEBUG
394 printk("Co-Processor Exception at PC %08lx NPC %08lx PSR %08lx\n",
395 pc, npc, psr);
396#endif
397 info.si_signo = SIGILL;
398 info.si_errno = 0;
399 info.si_code = ILL_COPROC;
400 info.si_addr = (void __user *)pc;
401 info.si_trapno = 0;
402 send_sig_info(SIGILL, &info, current);
403}
404
405void handle_hw_divzero(struct pt_regs *regs, unsigned long pc, unsigned long npc,
406 unsigned long psr)
407{
408 siginfo_t info;
409
410 info.si_signo = SIGFPE;
411 info.si_errno = 0;
412 info.si_code = FPE_INTDIV;
413 info.si_addr = (void __user *)pc;
414 info.si_trapno = 0;
415 send_sig_info(SIGFPE, &info, current);
416}
417
418#ifdef CONFIG_DEBUG_BUGVERBOSE
419void do_BUG(const char *file, int line)
420{
421 // bust_spinlocks(1); XXX Not in our original BUG()
422 printk("kernel BUG at %s:%d!\n", file, line);
423}
424EXPORT_SYMBOL(do_BUG);
425#endif
426
427/* Since we have our mappings set up, on multiprocessors we can spin them
428 * up here so that timer interrupts work during initialization.
429 */
430
431void trap_init(void)
432{
433 extern void thread_info_offsets_are_bolixed_pete(void);
434
435 /* Force linker to barf if mismatched */
436 if (TI_UWINMASK != offsetof(struct thread_info, uwinmask) ||
437 TI_TASK != offsetof(struct thread_info, task) ||
438 TI_EXECDOMAIN != offsetof(struct thread_info, exec_domain) ||
439 TI_FLAGS != offsetof(struct thread_info, flags) ||
440 TI_CPU != offsetof(struct thread_info, cpu) ||
441 TI_PREEMPT != offsetof(struct thread_info, preempt_count) ||
442 TI_SOFTIRQ != offsetof(struct thread_info, softirq_count) ||
443 TI_HARDIRQ != offsetof(struct thread_info, hardirq_count) ||
444 TI_KSP != offsetof(struct thread_info, ksp) ||
445 TI_KPC != offsetof(struct thread_info, kpc) ||
446 TI_KPSR != offsetof(struct thread_info, kpsr) ||
447 TI_KWIM != offsetof(struct thread_info, kwim) ||
448 TI_REG_WINDOW != offsetof(struct thread_info, reg_window) ||
449 TI_RWIN_SPTRS != offsetof(struct thread_info, rwbuf_stkptrs) ||
450 TI_W_SAVED != offsetof(struct thread_info, w_saved))
451 thread_info_offsets_are_bolixed_pete();
452
453 /* Attach to the address space of init_task. */
454 atomic_inc(&init_mm.mm_count);
455 current->active_mm = &init_mm;
456
457 /* NOTE: Other cpus have this done as they are started
458 * up on SMP.
459 */
460}
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * arch/sparc/kernel/traps.c
4 *
5 * Copyright 1995, 2008 David S. Miller (davem@davemloft.net)
6 * Copyright 2000 Jakub Jelinek (jakub@redhat.com)
7 */
8
9/*
10 * I hate traps on the sparc, grrr...
11 */
12
13#include <linux/sched/mm.h>
14#include <linux/sched/debug.h>
15#include <linux/mm_types.h>
16#include <linux/kernel.h>
17#include <linux/signal.h>
18#include <linux/smp.h>
19#include <linux/kdebug.h>
20#include <linux/export.h>
21#include <linux/pgtable.h>
22
23#include <asm/delay.h>
24#include <asm/ptrace.h>
25#include <asm/oplib.h>
26#include <asm/page.h>
27#include <asm/unistd.h>
28#include <asm/traps.h>
29
30#include "entry.h"
31#include "kernel.h"
32
33/* #define TRAP_DEBUG */
34
35static void instruction_dump(unsigned long *pc)
36{
37 int i;
38
39 if((((unsigned long) pc) & 3))
40 return;
41
42 for(i = -3; i < 6; i++)
43 printk("%c%08lx%c",i?' ':'<',pc[i],i?' ':'>');
44 printk("\n");
45}
46
47#define __SAVE __asm__ __volatile__("save %sp, -0x40, %sp\n\t")
48#define __RESTORE __asm__ __volatile__("restore %g0, %g0, %g0\n\t")
49
50void __noreturn die_if_kernel(char *str, struct pt_regs *regs)
51{
52 static int die_counter;
53 int count = 0;
54
55 /* Amuse the user. */
56 printk(
57" \\|/ ____ \\|/\n"
58" \"@'/ ,. \\`@\"\n"
59" /_| \\__/ |_\\\n"
60" \\__U_/\n");
61
62 printk("%s(%d): %s [#%d]\n", current->comm, task_pid_nr(current), str, ++die_counter);
63 show_regs(regs);
64 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
65
66 __SAVE; __SAVE; __SAVE; __SAVE;
67 __SAVE; __SAVE; __SAVE; __SAVE;
68 __RESTORE; __RESTORE; __RESTORE; __RESTORE;
69 __RESTORE; __RESTORE; __RESTORE; __RESTORE;
70
71 {
72 struct reg_window32 *rw = (struct reg_window32 *)regs->u_regs[UREG_FP];
73
74 /* Stop the back trace when we hit userland or we
75 * find some badly aligned kernel stack. Set an upper
76 * bound in case our stack is trashed and we loop.
77 */
78 while(rw &&
79 count++ < 30 &&
80 (((unsigned long) rw) >= PAGE_OFFSET) &&
81 !(((unsigned long) rw) & 0x7)) {
82 printk("Caller[%08lx]: %pS\n", rw->ins[7],
83 (void *) rw->ins[7]);
84 rw = (struct reg_window32 *)rw->ins[6];
85 }
86 }
87 printk("Instruction DUMP:");
88 instruction_dump ((unsigned long *) regs->pc);
89 if(regs->psr & PSR_PS)
90 do_exit(SIGKILL);
91 do_exit(SIGSEGV);
92}
93
94void do_hw_interrupt(struct pt_regs *regs, unsigned long type)
95{
96 if(type < 0x80) {
97 /* Sun OS's puke from bad traps, Linux survives! */
98 printk("Unimplemented Sparc TRAP, type = %02lx\n", type);
99 die_if_kernel("Whee... Hello Mr. Penguin", regs);
100 }
101
102 if(regs->psr & PSR_PS)
103 die_if_kernel("Kernel bad trap", regs);
104
105 force_sig_fault(SIGILL, ILL_ILLTRP,
106 (void __user *)regs->pc, type - 0x80);
107}
108
109void do_illegal_instruction(struct pt_regs *regs, unsigned long pc, unsigned long npc,
110 unsigned long psr)
111{
112 if(psr & PSR_PS)
113 die_if_kernel("Kernel illegal instruction", regs);
114#ifdef TRAP_DEBUG
115 printk("Ill instr. at pc=%08lx instruction is %08lx\n",
116 regs->pc, *(unsigned long *)regs->pc);
117#endif
118
119 send_sig_fault(SIGILL, ILL_ILLOPC, (void __user *)pc, 0, current);
120}
121
122void do_priv_instruction(struct pt_regs *regs, unsigned long pc, unsigned long npc,
123 unsigned long psr)
124{
125 if(psr & PSR_PS)
126 die_if_kernel("Penguin instruction from Penguin mode??!?!", regs);
127 send_sig_fault(SIGILL, ILL_PRVOPC, (void __user *)pc, 0, current);
128}
129
130/* XXX User may want to be allowed to do this. XXX */
131
132void do_memaccess_unaligned(struct pt_regs *regs, unsigned long pc, unsigned long npc,
133 unsigned long psr)
134{
135 if(regs->psr & PSR_PS) {
136 printk("KERNEL MNA at pc %08lx npc %08lx called by %08lx\n", pc, npc,
137 regs->u_regs[UREG_RETPC]);
138 die_if_kernel("BOGUS", regs);
139 /* die_if_kernel("Kernel MNA access", regs); */
140 }
141#if 0
142 show_regs (regs);
143 instruction_dump ((unsigned long *) regs->pc);
144 printk ("do_MNA!\n");
145#endif
146 send_sig_fault(SIGBUS, BUS_ADRALN,
147 /* FIXME: Should dig out mna address */ (void *)0,
148 0, current);
149}
150
151static unsigned long init_fsr = 0x0UL;
152static unsigned long init_fregs[32] __attribute__ ((aligned (8))) =
153 { ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL,
154 ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL,
155 ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL,
156 ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL, ~0UL };
157
158void do_fpd_trap(struct pt_regs *regs, unsigned long pc, unsigned long npc,
159 unsigned long psr)
160{
161 /* Sanity check... */
162 if(psr & PSR_PS)
163 die_if_kernel("Kernel gets FloatingPenguinUnit disabled trap", regs);
164
165 put_psr(get_psr() | PSR_EF); /* Allow FPU ops. */
166 regs->psr |= PSR_EF;
167#ifndef CONFIG_SMP
168 if(last_task_used_math == current)
169 return;
170 if(last_task_used_math) {
171 /* Other processes fpu state, save away */
172 struct task_struct *fptask = last_task_used_math;
173 fpsave(&fptask->thread.float_regs[0], &fptask->thread.fsr,
174 &fptask->thread.fpqueue[0], &fptask->thread.fpqdepth);
175 }
176 last_task_used_math = current;
177 if(used_math()) {
178 fpload(¤t->thread.float_regs[0], ¤t->thread.fsr);
179 } else {
180 /* Set initial sane state. */
181 fpload(&init_fregs[0], &init_fsr);
182 set_used_math();
183 }
184#else
185 if(!used_math()) {
186 fpload(&init_fregs[0], &init_fsr);
187 set_used_math();
188 } else {
189 fpload(¤t->thread.float_regs[0], ¤t->thread.fsr);
190 }
191 set_thread_flag(TIF_USEDFPU);
192#endif
193}
194
195static unsigned long fake_regs[32] __attribute__ ((aligned (8)));
196static unsigned long fake_fsr;
197static unsigned long fake_queue[32] __attribute__ ((aligned (8)));
198static unsigned long fake_depth;
199
200void do_fpe_trap(struct pt_regs *regs, unsigned long pc, unsigned long npc,
201 unsigned long psr)
202{
203 static int calls;
204 unsigned long fsr;
205 int ret = 0;
206 int code;
207#ifndef CONFIG_SMP
208 struct task_struct *fpt = last_task_used_math;
209#else
210 struct task_struct *fpt = current;
211#endif
212 put_psr(get_psr() | PSR_EF);
213 /* If nobody owns the fpu right now, just clear the
214 * error into our fake static buffer and hope it don't
215 * happen again. Thank you crashme...
216 */
217#ifndef CONFIG_SMP
218 if(!fpt) {
219#else
220 if (!test_tsk_thread_flag(fpt, TIF_USEDFPU)) {
221#endif
222 fpsave(&fake_regs[0], &fake_fsr, &fake_queue[0], &fake_depth);
223 regs->psr &= ~PSR_EF;
224 return;
225 }
226 fpsave(&fpt->thread.float_regs[0], &fpt->thread.fsr,
227 &fpt->thread.fpqueue[0], &fpt->thread.fpqdepth);
228#ifdef DEBUG_FPU
229 printk("Hmm, FP exception, fsr was %016lx\n", fpt->thread.fsr);
230#endif
231
232 switch ((fpt->thread.fsr & 0x1c000)) {
233 /* switch on the contents of the ftt [floating point trap type] field */
234#ifdef DEBUG_FPU
235 case (1 << 14):
236 printk("IEEE_754_exception\n");
237 break;
238#endif
239 case (2 << 14): /* unfinished_FPop (underflow & co) */
240 case (3 << 14): /* unimplemented_FPop (quad stuff, maybe sqrt) */
241 ret = do_mathemu(regs, fpt);
242 break;
243#ifdef DEBUG_FPU
244 case (4 << 14):
245 printk("sequence_error (OS bug...)\n");
246 break;
247 case (5 << 14):
248 printk("hardware_error (uhoh!)\n");
249 break;
250 case (6 << 14):
251 printk("invalid_fp_register (user error)\n");
252 break;
253#endif /* DEBUG_FPU */
254 }
255 /* If we successfully emulated the FPop, we pretend the trap never happened :-> */
256 if (ret) {
257 fpload(¤t->thread.float_regs[0], ¤t->thread.fsr);
258 return;
259 }
260 /* nope, better SIGFPE the offending process... */
261
262#ifdef CONFIG_SMP
263 clear_tsk_thread_flag(fpt, TIF_USEDFPU);
264#endif
265 if(psr & PSR_PS) {
266 /* The first fsr store/load we tried trapped,
267 * the second one will not (we hope).
268 */
269 printk("WARNING: FPU exception from kernel mode. at pc=%08lx\n",
270 regs->pc);
271 regs->pc = regs->npc;
272 regs->npc += 4;
273 calls++;
274 if(calls > 2)
275 die_if_kernel("Too many Penguin-FPU traps from kernel mode",
276 regs);
277 return;
278 }
279
280 fsr = fpt->thread.fsr;
281 code = FPE_FLTUNK;
282 if ((fsr & 0x1c000) == (1 << 14)) {
283 if (fsr & 0x10)
284 code = FPE_FLTINV;
285 else if (fsr & 0x08)
286 code = FPE_FLTOVF;
287 else if (fsr & 0x04)
288 code = FPE_FLTUND;
289 else if (fsr & 0x02)
290 code = FPE_FLTDIV;
291 else if (fsr & 0x01)
292 code = FPE_FLTRES;
293 }
294 send_sig_fault(SIGFPE, code, (void __user *)pc, 0, fpt);
295#ifndef CONFIG_SMP
296 last_task_used_math = NULL;
297#endif
298 regs->psr &= ~PSR_EF;
299 if(calls > 0)
300 calls=0;
301}
302
303void handle_tag_overflow(struct pt_regs *regs, unsigned long pc, unsigned long npc,
304 unsigned long psr)
305{
306 if(psr & PSR_PS)
307 die_if_kernel("Penguin overflow trap from kernel mode", regs);
308 send_sig_fault(SIGEMT, EMT_TAGOVF, (void __user *)pc, 0, current);
309}
310
311void handle_watchpoint(struct pt_regs *regs, unsigned long pc, unsigned long npc,
312 unsigned long psr)
313{
314#ifdef TRAP_DEBUG
315 printk("Watchpoint detected at PC %08lx NPC %08lx PSR %08lx\n",
316 pc, npc, psr);
317#endif
318 if(psr & PSR_PS)
319 panic("Tell me what a watchpoint trap is, and I'll then deal "
320 "with such a beast...");
321}
322
323void handle_reg_access(struct pt_regs *regs, unsigned long pc, unsigned long npc,
324 unsigned long psr)
325{
326#ifdef TRAP_DEBUG
327 printk("Register Access Exception at PC %08lx NPC %08lx PSR %08lx\n",
328 pc, npc, psr);
329#endif
330 force_sig_fault(SIGBUS, BUS_OBJERR, (void __user *)pc, 0);
331}
332
333void handle_cp_disabled(struct pt_regs *regs, unsigned long pc, unsigned long npc,
334 unsigned long psr)
335{
336 send_sig_fault(SIGILL, ILL_COPROC, (void __user *)pc, 0, current);
337}
338
339void handle_cp_exception(struct pt_regs *regs, unsigned long pc, unsigned long npc,
340 unsigned long psr)
341{
342#ifdef TRAP_DEBUG
343 printk("Co-Processor Exception at PC %08lx NPC %08lx PSR %08lx\n",
344 pc, npc, psr);
345#endif
346 send_sig_fault(SIGILL, ILL_COPROC, (void __user *)pc, 0, current);
347}
348
349void handle_hw_divzero(struct pt_regs *regs, unsigned long pc, unsigned long npc,
350 unsigned long psr)
351{
352 send_sig_fault(SIGFPE, FPE_INTDIV, (void __user *)pc, 0, current);
353}
354
355#ifdef CONFIG_DEBUG_BUGVERBOSE
356void do_BUG(const char *file, int line)
357{
358 // bust_spinlocks(1); XXX Not in our original BUG()
359 printk("kernel BUG at %s:%d!\n", file, line);
360}
361EXPORT_SYMBOL(do_BUG);
362#endif
363
364/* Since we have our mappings set up, on multiprocessors we can spin them
365 * up here so that timer interrupts work during initialization.
366 */
367
368void trap_init(void)
369{
370 extern void thread_info_offsets_are_bolixed_pete(void);
371
372 /* Force linker to barf if mismatched */
373 if (TI_UWINMASK != offsetof(struct thread_info, uwinmask) ||
374 TI_TASK != offsetof(struct thread_info, task) ||
375 TI_FLAGS != offsetof(struct thread_info, flags) ||
376 TI_CPU != offsetof(struct thread_info, cpu) ||
377 TI_PREEMPT != offsetof(struct thread_info, preempt_count) ||
378 TI_SOFTIRQ != offsetof(struct thread_info, softirq_count) ||
379 TI_HARDIRQ != offsetof(struct thread_info, hardirq_count) ||
380 TI_KSP != offsetof(struct thread_info, ksp) ||
381 TI_KPC != offsetof(struct thread_info, kpc) ||
382 TI_KPSR != offsetof(struct thread_info, kpsr) ||
383 TI_KWIM != offsetof(struct thread_info, kwim) ||
384 TI_REG_WINDOW != offsetof(struct thread_info, reg_window) ||
385 TI_RWIN_SPTRS != offsetof(struct thread_info, rwbuf_stkptrs) ||
386 TI_W_SAVED != offsetof(struct thread_info, w_saved))
387 thread_info_offsets_are_bolixed_pete();
388
389 /* Attach to the address space of init_task. */
390 mmgrab(&init_mm);
391 current->active_mm = &init_mm;
392
393 /* NOTE: Other cpus have this done as they are started
394 * up on SMP.
395 */
396}