traps_32.c revision ab6e570ba33dbee18c2520d386e0f367a9b573c3
1/*
2 * 'traps.c' handles hardware traps and faults after we have saved some
3 * state in 'entry.S'.
4 *
5 *  SuperH version: Copyright (C) 1999 Niibe Yutaka
6 *                  Copyright (C) 2000 Philipp Rumpf
7 *                  Copyright (C) 2000 David Howells
8 *                  Copyright (C) 2002 - 2007 Paul Mundt
9 *
10 * This file is subject to the terms and conditions of the GNU General Public
11 * License.  See the file "COPYING" in the main directory of this archive
12 * for more details.
13 */
14#include <linux/kernel.h>
15#include <linux/ptrace.h>
16#include <linux/init.h>
17#include <linux/spinlock.h>
18#include <linux/module.h>
19#include <linux/kallsyms.h>
20#include <linux/io.h>
21#include <linux/bug.h>
22#include <linux/debug_locks.h>
23#include <linux/kdebug.h>
24#include <linux/kexec.h>
25#include <linux/limits.h>
26#include <asm/system.h>
27#include <asm/uaccess.h>
28#include <asm/fpu.h>
29#include <asm/kprobes.h>
30
31#ifdef CONFIG_CPU_SH2
32# define TRAP_RESERVED_INST	4
33# define TRAP_ILLEGAL_SLOT_INST	6
34# define TRAP_ADDRESS_ERROR	9
35# ifdef CONFIG_CPU_SH2A
36#  define TRAP_FPU_ERROR	13
37#  define TRAP_DIVZERO_ERROR	17
38#  define TRAP_DIVOVF_ERROR	18
39# endif
40#else
41#define TRAP_RESERVED_INST	12
42#define TRAP_ILLEGAL_SLOT_INST	13
43#endif
44
45static void dump_mem(const char *str, unsigned long bottom, unsigned long top)
46{
47	unsigned long p;
48	int i;
49
50	printk("%s(0x%08lx to 0x%08lx)\n", str, bottom, top);
51
52	for (p = bottom & ~31; p < top; ) {
53		printk("%04lx: ", p & 0xffff);
54
55		for (i = 0; i < 8; i++, p += 4) {
56			unsigned int val;
57
58			if (p < bottom || p >= top)
59				printk("         ");
60			else {
61				if (__get_user(val, (unsigned int __user *)p)) {
62					printk("\n");
63					return;
64				}
65				printk("%08x ", val);
66			}
67		}
68		printk("\n");
69	}
70}
71
72static DEFINE_SPINLOCK(die_lock);
73
74void die(const char * str, struct pt_regs * regs, long err)
75{
76	static int die_counter;
77
78	oops_enter();
79
80	console_verbose();
81	spin_lock_irq(&die_lock);
82	bust_spinlocks(1);
83
84	printk("%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter);
85
86	print_modules();
87	show_regs(regs);
88
89	printk("Process: %s (pid: %d, stack limit = %p)\n", current->comm,
90			task_pid_nr(current), task_stack_page(current) + 1);
91
92	if (!user_mode(regs) || in_interrupt())
93		dump_mem("Stack: ", regs->regs[15], THREAD_SIZE +
94			 (unsigned long)task_stack_page(current));
95
96	notify_die(DIE_OOPS, str, regs, err, 255, SIGSEGV);
97
98	bust_spinlocks(0);
99	add_taint(TAINT_DIE);
100	spin_unlock_irq(&die_lock);
101
102	if (kexec_should_crash(current))
103		crash_kexec(regs);
104
105	if (in_interrupt())
106		panic("Fatal exception in interrupt");
107
108	if (panic_on_oops)
109		panic("Fatal exception");
110
111	oops_exit();
112	do_exit(SIGSEGV);
113}
114
115static inline void die_if_kernel(const char *str, struct pt_regs *regs,
116				 long err)
117{
118	if (!user_mode(regs))
119		die(str, regs, err);
120}
121
122/*
123 * try and fix up kernelspace address errors
124 * - userspace errors just cause EFAULT to be returned, resulting in SEGV
125 * - kernel/userspace interfaces cause a jump to an appropriate handler
126 * - other kernel errors are bad
127 * - return 0 if fixed-up, -EFAULT if non-fatal (to the kernel) fault
128 */
129static int die_if_no_fixup(const char * str, struct pt_regs * regs, long err)
130{
131	if (!user_mode(regs)) {
132		const struct exception_table_entry *fixup;
133		fixup = search_exception_tables(regs->pc);
134		if (fixup) {
135			regs->pc = fixup->fixup;
136			return 0;
137		}
138		die(str, regs, err);
139	}
140	return -EFAULT;
141}
142
143static inline void sign_extend(unsigned int count, unsigned char *dst)
144{
145#ifdef __LITTLE_ENDIAN__
146	if ((count == 1) && dst[0] & 0x80) {
147		dst[1] = 0xff;
148		dst[2] = 0xff;
149		dst[3] = 0xff;
150	}
151	if ((count == 2) && dst[1] & 0x80) {
152		dst[2] = 0xff;
153		dst[3] = 0xff;
154	}
155#else
156	if ((count == 1) && dst[3] & 0x80) {
157		dst[2] = 0xff;
158		dst[1] = 0xff;
159		dst[0] = 0xff;
160	}
161	if ((count == 2) && dst[2] & 0x80) {
162		dst[1] = 0xff;
163		dst[0] = 0xff;
164	}
165#endif
166}
167
168static struct mem_access user_mem_access = {
169	copy_from_user,
170	copy_to_user,
171};
172
173/*
174 * handle an instruction that does an unaligned memory access by emulating the
175 * desired behaviour
176 * - note that PC _may not_ point to the faulting instruction
177 *   (if that instruction is in a branch delay slot)
178 * - return 0 if emulation okay, -EFAULT on existential error
179 */
180static int handle_unaligned_ins(opcode_t instruction, struct pt_regs *regs,
181				struct mem_access *ma)
182{
183	int ret, index, count;
184	unsigned long *rm, *rn;
185	unsigned char *src, *dst;
186	unsigned char __user *srcu, *dstu;
187
188	index = (instruction>>8)&15;	/* 0x0F00 */
189	rn = &regs->regs[index];
190
191	index = (instruction>>4)&15;	/* 0x00F0 */
192	rm = &regs->regs[index];
193
194	count = 1<<(instruction&3);
195
196	ret = -EFAULT;
197	switch (instruction>>12) {
198	case 0: /* mov.[bwl] to/from memory via r0+rn */
199		if (instruction & 8) {
200			/* from memory */
201			srcu = (unsigned char __user *)*rm;
202			srcu += regs->regs[0];
203			dst = (unsigned char *)rn;
204			*(unsigned long *)dst = 0;
205
206#if !defined(__LITTLE_ENDIAN__)
207			dst += 4-count;
208#endif
209			if (ma->from(dst, srcu, count))
210				goto fetch_fault;
211
212			sign_extend(count, dst);
213		} else {
214			/* to memory */
215			src = (unsigned char *)rm;
216#if !defined(__LITTLE_ENDIAN__)
217			src += 4-count;
218#endif
219			dstu = (unsigned char __user *)*rn;
220			dstu += regs->regs[0];
221
222			if (ma->to(dstu, src, count))
223				goto fetch_fault;
224		}
225		ret = 0;
226		break;
227
228	case 1: /* mov.l Rm,@(disp,Rn) */
229		src = (unsigned char*) rm;
230		dstu = (unsigned char __user *)*rn;
231		dstu += (instruction&0x000F)<<2;
232
233		if (ma->to(dstu, src, 4))
234			goto fetch_fault;
235		ret = 0;
236		break;
237
238	case 2: /* mov.[bwl] to memory, possibly with pre-decrement */
239		if (instruction & 4)
240			*rn -= count;
241		src = (unsigned char*) rm;
242		dstu = (unsigned char __user *)*rn;
243#if !defined(__LITTLE_ENDIAN__)
244		src += 4-count;
245#endif
246		if (ma->to(dstu, src, count))
247			goto fetch_fault;
248		ret = 0;
249		break;
250
251	case 5: /* mov.l @(disp,Rm),Rn */
252		srcu = (unsigned char __user *)*rm;
253		srcu += (instruction & 0x000F) << 2;
254		dst = (unsigned char *)rn;
255		*(unsigned long *)dst = 0;
256
257		if (ma->from(dst, srcu, 4))
258			goto fetch_fault;
259		ret = 0;
260		break;
261
262	case 6:	/* mov.[bwl] from memory, possibly with post-increment */
263		srcu = (unsigned char __user *)*rm;
264		if (instruction & 4)
265			*rm += count;
266		dst = (unsigned char*) rn;
267		*(unsigned long*)dst = 0;
268
269#if !defined(__LITTLE_ENDIAN__)
270		dst += 4-count;
271#endif
272		if (ma->from(dst, srcu, count))
273			goto fetch_fault;
274		sign_extend(count, dst);
275		ret = 0;
276		break;
277
278	case 8:
279		switch ((instruction&0xFF00)>>8) {
280		case 0x81: /* mov.w R0,@(disp,Rn) */
281			src = (unsigned char *) &regs->regs[0];
282#if !defined(__LITTLE_ENDIAN__)
283			src += 2;
284#endif
285			dstu = (unsigned char __user *)*rm; /* called Rn in the spec */
286			dstu += (instruction & 0x000F) << 1;
287
288			if (ma->to(dstu, src, 2))
289				goto fetch_fault;
290			ret = 0;
291			break;
292
293		case 0x85: /* mov.w @(disp,Rm),R0 */
294			srcu = (unsigned char __user *)*rm;
295			srcu += (instruction & 0x000F) << 1;
296			dst = (unsigned char *) &regs->regs[0];
297			*(unsigned long *)dst = 0;
298
299#if !defined(__LITTLE_ENDIAN__)
300			dst += 2;
301#endif
302			if (ma->from(dst, srcu, 2))
303				goto fetch_fault;
304			sign_extend(2, dst);
305			ret = 0;
306			break;
307		}
308		break;
309	}
310	return ret;
311
312 fetch_fault:
313	/* Argh. Address not only misaligned but also non-existent.
314	 * Raise an EFAULT and see if it's trapped
315	 */
316	return die_if_no_fixup("Fault in unaligned fixup", regs, 0);
317}
318
319/*
320 * emulate the instruction in the delay slot
321 * - fetches the instruction from PC+2
322 */
323static inline int handle_delayslot(struct pt_regs *regs,
324				   opcode_t old_instruction,
325				   struct mem_access *ma)
326{
327	opcode_t instruction;
328	void __user *addr = (void __user *)(regs->pc +
329		instruction_size(old_instruction));
330
331	if (copy_from_user(&instruction, addr, sizeof(instruction))) {
332		/* the instruction-fetch faulted */
333		if (user_mode(regs))
334			return -EFAULT;
335
336		/* kernel */
337		die("delay-slot-insn faulting in handle_unaligned_delayslot",
338		    regs, 0);
339	}
340
341	return handle_unaligned_ins(instruction, regs, ma);
342}
343
344/*
345 * handle an instruction that does an unaligned memory access
346 * - have to be careful of branch delay-slot instructions that fault
347 *  SH3:
348 *   - if the branch would be taken PC points to the branch
349 *   - if the branch would not be taken, PC points to delay-slot
350 *  SH4:
351 *   - PC always points to delayed branch
352 * - return 0 if handled, -EFAULT if failed (may not return if in kernel)
353 */
354
355/* Macros to determine offset from current PC for branch instructions */
356/* Explicit type coercion is used to force sign extension where needed */
357#define SH_PC_8BIT_OFFSET(instr) ((((signed char)(instr))*2) + 4)
358#define SH_PC_12BIT_OFFSET(instr) ((((signed short)(instr<<4))>>3) + 4)
359
360/*
361 * XXX: SH-2A needs this too, but it needs an overhaul thanks to mixed 32-bit
362 * opcodes..
363 */
364
365static int handle_unaligned_notify_count = 10;
366
367int handle_unaligned_access(opcode_t instruction, struct pt_regs *regs,
368			    struct mem_access *ma)
369{
370	u_int rm;
371	int ret, index;
372
373	index = (instruction>>8)&15;	/* 0x0F00 */
374	rm = regs->regs[index];
375
376	/* shout about the first ten userspace fixups */
377	if (user_mode(regs) && handle_unaligned_notify_count>0) {
378		handle_unaligned_notify_count--;
379
380		printk(KERN_NOTICE "Fixing up unaligned userspace access "
381		       "in \"%s\" pid=%d pc=0x%p ins=0x%04hx\n",
382		       current->comm, task_pid_nr(current),
383		       (void *)regs->pc, instruction);
384	}
385
386	ret = -EFAULT;
387	switch (instruction&0xF000) {
388	case 0x0000:
389		if (instruction==0x000B) {
390			/* rts */
391			ret = handle_delayslot(regs, instruction, ma);
392			if (ret==0)
393				regs->pc = regs->pr;
394		}
395		else if ((instruction&0x00FF)==0x0023) {
396			/* braf @Rm */
397			ret = handle_delayslot(regs, instruction, ma);
398			if (ret==0)
399				regs->pc += rm + 4;
400		}
401		else if ((instruction&0x00FF)==0x0003) {
402			/* bsrf @Rm */
403			ret = handle_delayslot(regs, instruction, ma);
404			if (ret==0) {
405				regs->pr = regs->pc + 4;
406				regs->pc += rm + 4;
407			}
408		}
409		else {
410			/* mov.[bwl] to/from memory via r0+rn */
411			goto simple;
412		}
413		break;
414
415	case 0x1000: /* mov.l Rm,@(disp,Rn) */
416		goto simple;
417
418	case 0x2000: /* mov.[bwl] to memory, possibly with pre-decrement */
419		goto simple;
420
421	case 0x4000:
422		if ((instruction&0x00FF)==0x002B) {
423			/* jmp @Rm */
424			ret = handle_delayslot(regs, instruction, ma);
425			if (ret==0)
426				regs->pc = rm;
427		}
428		else if ((instruction&0x00FF)==0x000B) {
429			/* jsr @Rm */
430			ret = handle_delayslot(regs, instruction, ma);
431			if (ret==0) {
432				regs->pr = regs->pc + 4;
433				regs->pc = rm;
434			}
435		}
436		else {
437			/* mov.[bwl] to/from memory via r0+rn */
438			goto simple;
439		}
440		break;
441
442	case 0x5000: /* mov.l @(disp,Rm),Rn */
443		goto simple;
444
445	case 0x6000: /* mov.[bwl] from memory, possibly with post-increment */
446		goto simple;
447
448	case 0x8000: /* bf lab, bf/s lab, bt lab, bt/s lab */
449		switch (instruction&0x0F00) {
450		case 0x0100: /* mov.w R0,@(disp,Rm) */
451			goto simple;
452		case 0x0500: /* mov.w @(disp,Rm),R0 */
453			goto simple;
454		case 0x0B00: /* bf   lab - no delayslot*/
455			break;
456		case 0x0F00: /* bf/s lab */
457			ret = handle_delayslot(regs, instruction, ma);
458			if (ret==0) {
459#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
460				if ((regs->sr & 0x00000001) != 0)
461					regs->pc += 4; /* next after slot */
462				else
463#endif
464					regs->pc += SH_PC_8BIT_OFFSET(instruction);
465			}
466			break;
467		case 0x0900: /* bt   lab - no delayslot */
468			break;
469		case 0x0D00: /* bt/s lab */
470			ret = handle_delayslot(regs, instruction, ma);
471			if (ret==0) {
472#if defined(CONFIG_CPU_SH4) || defined(CONFIG_SH7705_CACHE_32KB)
473				if ((regs->sr & 0x00000001) == 0)
474					regs->pc += 4; /* next after slot */
475				else
476#endif
477					regs->pc += SH_PC_8BIT_OFFSET(instruction);
478			}
479			break;
480		}
481		break;
482
483	case 0xA000: /* bra label */
484		ret = handle_delayslot(regs, instruction, ma);
485		if (ret==0)
486			regs->pc += SH_PC_12BIT_OFFSET(instruction);
487		break;
488
489	case 0xB000: /* bsr label */
490		ret = handle_delayslot(regs, instruction, ma);
491		if (ret==0) {
492			regs->pr = regs->pc + 4;
493			regs->pc += SH_PC_12BIT_OFFSET(instruction);
494		}
495		break;
496	}
497	return ret;
498
499	/* handle non-delay-slot instruction */
500 simple:
501	ret = handle_unaligned_ins(instruction, regs, ma);
502	if (ret==0)
503		regs->pc += instruction_size(instruction);
504	return ret;
505}
506
507/*
508 * Handle various address error exceptions:
509 *  - instruction address error:
510 *       misaligned PC
511 *       PC >= 0x80000000 in user mode
512 *  - data address error (read and write)
513 *       misaligned data access
514 *       access to >= 0x80000000 is user mode
515 * Unfortuntaly we can't distinguish between instruction address error
516 * and data address errors caused by read accesses.
517 */
518asmlinkage void do_address_error(struct pt_regs *regs,
519				 unsigned long writeaccess,
520				 unsigned long address)
521{
522	unsigned long error_code = 0;
523	mm_segment_t oldfs;
524	siginfo_t info;
525	opcode_t instruction;
526	int tmp;
527
528	/* Intentional ifdef */
529#ifdef CONFIG_CPU_HAS_SR_RB
530	error_code = lookup_exception_vector();
531#endif
532
533	oldfs = get_fs();
534
535	if (user_mode(regs)) {
536		int si_code = BUS_ADRERR;
537
538		local_irq_enable();
539
540		/* bad PC is not something we can fix */
541		if (regs->pc & 1) {
542			si_code = BUS_ADRALN;
543			goto uspace_segv;
544		}
545
546		set_fs(USER_DS);
547		if (copy_from_user(&instruction, (void __user *)(regs->pc),
548				   sizeof(instruction))) {
549			/* Argh. Fault on the instruction itself.
550			   This should never happen non-SMP
551			*/
552			set_fs(oldfs);
553			goto uspace_segv;
554		}
555
556		tmp = handle_unaligned_access(instruction, regs,
557					      &user_mem_access);
558		set_fs(oldfs);
559
560		if (tmp==0)
561			return; /* sorted */
562uspace_segv:
563		printk(KERN_NOTICE "Sending SIGBUS to \"%s\" due to unaligned "
564		       "access (PC %lx PR %lx)\n", current->comm, regs->pc,
565		       regs->pr);
566
567		info.si_signo = SIGBUS;
568		info.si_errno = 0;
569		info.si_code = si_code;
570		info.si_addr = (void __user *)address;
571		force_sig_info(SIGBUS, &info, current);
572	} else {
573		if (regs->pc & 1)
574			die("unaligned program counter", regs, error_code);
575
576		set_fs(KERNEL_DS);
577		if (copy_from_user(&instruction, (void __user *)(regs->pc),
578				   sizeof(instruction))) {
579			/* Argh. Fault on the instruction itself.
580			   This should never happen non-SMP
581			*/
582			set_fs(oldfs);
583			die("insn faulting in do_address_error", regs, 0);
584		}
585
586		handle_unaligned_access(instruction, regs, &user_mem_access);
587		set_fs(oldfs);
588	}
589}
590
591#ifdef CONFIG_SH_DSP
592/*
593 *	SH-DSP support gerg@snapgear.com.
594 */
595int is_dsp_inst(struct pt_regs *regs)
596{
597	unsigned short inst = 0;
598
599	/*
600	 * Safe guard if DSP mode is already enabled or we're lacking
601	 * the DSP altogether.
602	 */
603	if (!(current_cpu_data.flags & CPU_HAS_DSP) || (regs->sr & SR_DSP))
604		return 0;
605
606	get_user(inst, ((unsigned short *) regs->pc));
607
608	inst &= 0xf000;
609
610	/* Check for any type of DSP or support instruction */
611	if ((inst == 0xf000) || (inst == 0x4000))
612		return 1;
613
614	return 0;
615}
616#else
617#define is_dsp_inst(regs)	(0)
618#endif /* CONFIG_SH_DSP */
619
620#ifdef CONFIG_CPU_SH2A
621asmlinkage void do_divide_error(unsigned long r4, unsigned long r5,
622				unsigned long r6, unsigned long r7,
623				struct pt_regs __regs)
624{
625	siginfo_t info;
626
627	switch (r4) {
628	case TRAP_DIVZERO_ERROR:
629		info.si_code = FPE_INTDIV;
630		break;
631	case TRAP_DIVOVF_ERROR:
632		info.si_code = FPE_INTOVF;
633		break;
634	}
635
636	force_sig_info(SIGFPE, &info, current);
637}
638#endif
639
640asmlinkage void do_reserved_inst(unsigned long r4, unsigned long r5,
641				unsigned long r6, unsigned long r7,
642				struct pt_regs __regs)
643{
644	struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
645	unsigned long error_code;
646	struct task_struct *tsk = current;
647
648#ifdef CONFIG_SH_FPU_EMU
649	unsigned short inst = 0;
650	int err;
651
652	get_user(inst, (unsigned short*)regs->pc);
653
654	err = do_fpu_inst(inst, regs);
655	if (!err) {
656		regs->pc += instruction_size(inst);
657		return;
658	}
659	/* not a FPU inst. */
660#endif
661
662#ifdef CONFIG_SH_DSP
663	/* Check if it's a DSP instruction */
664	if (is_dsp_inst(regs)) {
665		/* Enable DSP mode, and restart instruction. */
666		regs->sr |= SR_DSP;
667		return;
668	}
669#endif
670
671	error_code = lookup_exception_vector();
672
673	local_irq_enable();
674	force_sig(SIGILL, tsk);
675	die_if_no_fixup("reserved instruction", regs, error_code);
676}
677
678#ifdef CONFIG_SH_FPU_EMU
679static int emulate_branch(unsigned short inst, struct pt_regs *regs)
680{
681	/*
682	 * bfs: 8fxx: PC+=d*2+4;
683	 * bts: 8dxx: PC+=d*2+4;
684	 * bra: axxx: PC+=D*2+4;
685	 * bsr: bxxx: PC+=D*2+4  after PR=PC+4;
686	 * braf:0x23: PC+=Rn*2+4;
687	 * bsrf:0x03: PC+=Rn*2+4 after PR=PC+4;
688	 * jmp: 4x2b: PC=Rn;
689	 * jsr: 4x0b: PC=Rn      after PR=PC+4;
690	 * rts: 000b: PC=PR;
691	 */
692	if (((inst & 0xf000) == 0xb000)  ||	/* bsr */
693	    ((inst & 0xf0ff) == 0x0003)  ||	/* bsrf */
694	    ((inst & 0xf0ff) == 0x400b))	/* jsr */
695		regs->pr = regs->pc + 4;
696
697	if ((inst & 0xfd00) == 0x8d00) {	/* bfs, bts */
698		regs->pc += SH_PC_8BIT_OFFSET(inst);
699		return 0;
700	}
701
702	if ((inst & 0xe000) == 0xa000) {	/* bra, bsr */
703		regs->pc += SH_PC_12BIT_OFFSET(inst);
704		return 0;
705	}
706
707	if ((inst & 0xf0df) == 0x0003) {	/* braf, bsrf */
708		regs->pc += regs->regs[(inst & 0x0f00) >> 8] + 4;
709		return 0;
710	}
711
712	if ((inst & 0xf0df) == 0x400b) {	/* jmp, jsr */
713		regs->pc = regs->regs[(inst & 0x0f00) >> 8];
714		return 0;
715	}
716
717	if ((inst & 0xffff) == 0x000b) {	/* rts */
718		regs->pc = regs->pr;
719		return 0;
720	}
721
722	return 1;
723}
724#endif
725
726asmlinkage void do_illegal_slot_inst(unsigned long r4, unsigned long r5,
727				unsigned long r6, unsigned long r7,
728				struct pt_regs __regs)
729{
730	struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
731	unsigned long inst;
732	struct task_struct *tsk = current;
733
734	if (kprobe_handle_illslot(regs->pc) == 0)
735		return;
736
737#ifdef CONFIG_SH_FPU_EMU
738	get_user(inst, (unsigned short *)regs->pc + 1);
739	if (!do_fpu_inst(inst, regs)) {
740		get_user(inst, (unsigned short *)regs->pc);
741		if (!emulate_branch(inst, regs))
742			return;
743		/* fault in branch.*/
744	}
745	/* not a FPU inst. */
746#endif
747
748	inst = lookup_exception_vector();
749
750	local_irq_enable();
751	force_sig(SIGILL, tsk);
752	die_if_no_fixup("illegal slot instruction", regs, inst);
753}
754
755asmlinkage void do_exception_error(unsigned long r4, unsigned long r5,
756				   unsigned long r6, unsigned long r7,
757				   struct pt_regs __regs)
758{
759	struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
760	long ex;
761
762	ex = lookup_exception_vector();
763	die_if_kernel("exception", regs, ex);
764}
765
766#if defined(CONFIG_SH_STANDARD_BIOS)
767void *gdb_vbr_vector;
768
769static inline void __init gdb_vbr_init(void)
770{
771	register unsigned long vbr;
772
773	/*
774	 * Read the old value of the VBR register to initialise
775	 * the vector through which debug and BIOS traps are
776	 * delegated by the Linux trap handler.
777	 */
778	asm volatile("stc vbr, %0" : "=r" (vbr));
779
780	gdb_vbr_vector = (void *)(vbr + 0x100);
781	printk("Setting GDB trap vector to 0x%08lx\n",
782	       (unsigned long)gdb_vbr_vector);
783}
784#endif
785
786void __cpuinit per_cpu_trap_init(void)
787{
788	extern void *vbr_base;
789
790#ifdef CONFIG_SH_STANDARD_BIOS
791	if (raw_smp_processor_id() == 0)
792		gdb_vbr_init();
793#endif
794
795	/* NOTE: The VBR value should be at P1
796	   (or P2, virtural "fixed" address space).
797	   It's definitely should not in physical address.  */
798
799	asm volatile("ldc	%0, vbr"
800		     : /* no output */
801		     : "r" (&vbr_base)
802		     : "memory");
803}
804
805void *set_exception_table_vec(unsigned int vec, void *handler)
806{
807	extern void *exception_handling_table[];
808	void *old_handler;
809
810	old_handler = exception_handling_table[vec];
811	exception_handling_table[vec] = handler;
812	return old_handler;
813}
814
815void __init trap_init(void)
816{
817	set_exception_table_vec(TRAP_RESERVED_INST, do_reserved_inst);
818	set_exception_table_vec(TRAP_ILLEGAL_SLOT_INST, do_illegal_slot_inst);
819
820#if defined(CONFIG_CPU_SH4) && !defined(CONFIG_SH_FPU) || \
821    defined(CONFIG_SH_FPU_EMU)
822	/*
823	 * For SH-4 lacking an FPU, treat floating point instructions as
824	 * reserved. They'll be handled in the math-emu case, or faulted on
825	 * otherwise.
826	 */
827	set_exception_table_evt(0x800, do_reserved_inst);
828	set_exception_table_evt(0x820, do_illegal_slot_inst);
829#elif defined(CONFIG_SH_FPU)
830#ifdef CONFIG_CPU_SUBTYPE_SHX3
831	set_exception_table_evt(0xd80, fpu_state_restore_trap_handler);
832	set_exception_table_evt(0xda0, fpu_state_restore_trap_handler);
833#else
834	set_exception_table_evt(0x800, fpu_state_restore_trap_handler);
835	set_exception_table_evt(0x820, fpu_state_restore_trap_handler);
836#endif
837#endif
838
839#ifdef CONFIG_CPU_SH2
840	set_exception_table_vec(TRAP_ADDRESS_ERROR, address_error_trap_handler);
841#endif
842#ifdef CONFIG_CPU_SH2A
843	set_exception_table_vec(TRAP_DIVZERO_ERROR, do_divide_error);
844	set_exception_table_vec(TRAP_DIVOVF_ERROR, do_divide_error);
845#ifdef CONFIG_SH_FPU
846	set_exception_table_vec(TRAP_FPU_ERROR, fpu_error_trap_handler);
847#endif
848#endif
849
850	/* Setup VBR for boot cpu */
851	per_cpu_trap_init();
852}
853
854void show_trace(struct task_struct *tsk, unsigned long *sp,
855		struct pt_regs *regs)
856{
857	unsigned long addr;
858
859	if (regs && user_mode(regs))
860		return;
861
862	printk("\nCall trace:\n");
863
864	while (!kstack_end(sp)) {
865		addr = *sp++;
866		if (kernel_text_address(addr))
867			print_ip_sym(addr);
868	}
869
870	printk("\n");
871
872	if (!tsk)
873		tsk = current;
874
875	debug_show_held_locks(tsk);
876}
877
878void show_stack(struct task_struct *tsk, unsigned long *sp)
879{
880	unsigned long stack;
881
882	if (!tsk)
883		tsk = current;
884	if (tsk == current)
885		sp = (unsigned long *)current_stack_pointer;
886	else
887		sp = (unsigned long *)tsk->thread.sp;
888
889	stack = (unsigned long)sp;
890	dump_mem("Stack: ", stack, THREAD_SIZE +
891		 (unsigned long)task_stack_page(tsk));
892	show_trace(tsk, sp, NULL);
893}
894
895void dump_stack(void)
896{
897	show_stack(NULL, NULL);
898}
899EXPORT_SYMBOL(dump_stack);
900