Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * OpenRISC traps.c
  4 *
  5 * Linux architectural port borrowing liberally from similar works of
  6 * others.  All original copyrights apply as per the original source
  7 * declaration.
  8 *
  9 * Modifications for the OpenRISC architecture:
 10 * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
 11 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
 12 *
 
 
 
 
 
 13 *  Here we handle the break vectors not used by the system call
 14 *  mechanism, as well as some general stack/register dumping
 15 *  things.
 
 16 */
 17
 18#include <linux/init.h>
 19#include <linux/sched.h>
 20#include <linux/sched/debug.h>
 21#include <linux/sched/task_stack.h>
 22#include <linux/kernel.h>
 23#include <linux/extable.h>
 24#include <linux/kmod.h>
 25#include <linux/string.h>
 26#include <linux/errno.h>
 27#include <linux/ptrace.h>
 28#include <linux/timer.h>
 29#include <linux/mm.h>
 30#include <linux/kallsyms.h>
 31#include <linux/uaccess.h>
 32
 
 33#include <asm/io.h>
 
 34#include <asm/unwinder.h>
 35#include <asm/sections.h>
 36
 37static int kstack_depth_to_print = 0x180;
 38int lwa_flag;
 39static unsigned long __user *lwa_addr;
 40
 41static void print_trace(void *data, unsigned long addr, int reliable)
 42{
 43	const char *loglvl = data;
 44
 45	printk("%s[<%p>] %s%pS\n", loglvl, (void *) addr, reliable ? "" : "? ",
 46	       (void *) addr);
 47}
 48
 49static void print_data(unsigned long base_addr, unsigned long word, int i)
 50{
 51	if (i == 0)
 52		printk("(%08lx:)\t%08lx", base_addr + (i * 4), word);
 53	else
 54		printk(" %08lx:\t%08lx", base_addr + (i * 4), word);
 55}
 56
 57/* displays a short stack trace */
 58void show_stack(struct task_struct *task, unsigned long *esp, const char *loglvl)
 59{
 60	if (esp == NULL)
 61		esp = (unsigned long *)&esp;
 62
 63	printk("%sCall trace:\n", loglvl);
 64	unwind_stack((void *)loglvl, esp, print_trace);
 
 
 
 
 
 
 
 65}
 66
 67void show_registers(struct pt_regs *regs)
 68{
 69	int i;
 70	int in_kernel = 1;
 71	unsigned long esp;
 72
 73	esp = (unsigned long)(regs->sp);
 74	if (user_mode(regs))
 75		in_kernel = 0;
 76
 77	printk("CPU #: %d\n"
 78	       "   PC: %08lx    SR: %08lx    SP: %08lx\n",
 79	       smp_processor_id(), regs->pc, regs->sr, regs->sp);
 80	printk("GPR00: %08lx GPR01: %08lx GPR02: %08lx GPR03: %08lx\n",
 81	       0L, regs->gpr[1], regs->gpr[2], regs->gpr[3]);
 82	printk("GPR04: %08lx GPR05: %08lx GPR06: %08lx GPR07: %08lx\n",
 83	       regs->gpr[4], regs->gpr[5], regs->gpr[6], regs->gpr[7]);
 84	printk("GPR08: %08lx GPR09: %08lx GPR10: %08lx GPR11: %08lx\n",
 85	       regs->gpr[8], regs->gpr[9], regs->gpr[10], regs->gpr[11]);
 86	printk("GPR12: %08lx GPR13: %08lx GPR14: %08lx GPR15: %08lx\n",
 87	       regs->gpr[12], regs->gpr[13], regs->gpr[14], regs->gpr[15]);
 88	printk("GPR16: %08lx GPR17: %08lx GPR18: %08lx GPR19: %08lx\n",
 89	       regs->gpr[16], regs->gpr[17], regs->gpr[18], regs->gpr[19]);
 90	printk("GPR20: %08lx GPR21: %08lx GPR22: %08lx GPR23: %08lx\n",
 91	       regs->gpr[20], regs->gpr[21], regs->gpr[22], regs->gpr[23]);
 92	printk("GPR24: %08lx GPR25: %08lx GPR26: %08lx GPR27: %08lx\n",
 93	       regs->gpr[24], regs->gpr[25], regs->gpr[26], regs->gpr[27]);
 94	printk("GPR28: %08lx GPR29: %08lx GPR30: %08lx GPR31: %08lx\n",
 95	       regs->gpr[28], regs->gpr[29], regs->gpr[30], regs->gpr[31]);
 96	printk("  RES: %08lx oGPR11: %08lx\n",
 97	       regs->gpr[11], regs->orig_gpr11);
 98
 99	printk("Process %s (pid: %d, stackpage=%08lx)\n",
100	       current->comm, current->pid, (unsigned long)current);
101	/*
102	 * When in-kernel, we also print out the stack and code at the
103	 * time of the fault..
104	 */
105	if (in_kernel) {
106
107		printk("\nStack: ");
108		show_stack(NULL, (unsigned long *)esp, KERN_EMERG);
109
110		if (esp < PAGE_OFFSET)
111			goto bad_stack;
112
113		printk("\n");
114		for (i = -8; i < 24; i += 1) {
115			unsigned long word;
116
117			if (__get_user(word, &((unsigned long *)esp)[i])) {
118bad_stack:
119				printk(" Bad Stack value.");
120				break;
121			}
122
123			print_data(esp, word, i);
124		}
125
126		printk("\nCode: ");
127		if (regs->pc < PAGE_OFFSET)
128			goto bad;
129
130		for (i = -6; i < 6; i += 1) {
131			unsigned long word;
132
133			if (__get_user(word, &((unsigned long *)regs->pc)[i])) {
134bad:
135				printk(" Bad PC value.");
136				break;
137			}
138
139			print_data(regs->pc, word, i);
 
 
 
140		}
141	}
142	printk("\n");
143}
144
145void nommu_dump_state(struct pt_regs *regs,
146		      unsigned long ea, unsigned long vector)
147{
148	int i;
149	unsigned long addr, stack = regs->sp;
150
151	printk("\n\r[nommu_dump_state] :: ea %lx, vector %lx\n\r", ea, vector);
152
153	printk("CPU #: %d\n"
154	       "   PC: %08lx    SR: %08lx    SP: %08lx\n",
155	       0, regs->pc, regs->sr, regs->sp);
156	printk("GPR00: %08lx GPR01: %08lx GPR02: %08lx GPR03: %08lx\n",
157	       0L, regs->gpr[1], regs->gpr[2], regs->gpr[3]);
158	printk("GPR04: %08lx GPR05: %08lx GPR06: %08lx GPR07: %08lx\n",
159	       regs->gpr[4], regs->gpr[5], regs->gpr[6], regs->gpr[7]);
160	printk("GPR08: %08lx GPR09: %08lx GPR10: %08lx GPR11: %08lx\n",
161	       regs->gpr[8], regs->gpr[9], regs->gpr[10], regs->gpr[11]);
162	printk("GPR12: %08lx GPR13: %08lx GPR14: %08lx GPR15: %08lx\n",
163	       regs->gpr[12], regs->gpr[13], regs->gpr[14], regs->gpr[15]);
164	printk("GPR16: %08lx GPR17: %08lx GPR18: %08lx GPR19: %08lx\n",
165	       regs->gpr[16], regs->gpr[17], regs->gpr[18], regs->gpr[19]);
166	printk("GPR20: %08lx GPR21: %08lx GPR22: %08lx GPR23: %08lx\n",
167	       regs->gpr[20], regs->gpr[21], regs->gpr[22], regs->gpr[23]);
168	printk("GPR24: %08lx GPR25: %08lx GPR26: %08lx GPR27: %08lx\n",
169	       regs->gpr[24], regs->gpr[25], regs->gpr[26], regs->gpr[27]);
170	printk("GPR28: %08lx GPR29: %08lx GPR30: %08lx GPR31: %08lx\n",
171	       regs->gpr[28], regs->gpr[29], regs->gpr[30], regs->gpr[31]);
172	printk("  RES: %08lx oGPR11: %08lx\n",
173	       regs->gpr[11], regs->orig_gpr11);
174
175	printk("Process %s (pid: %d, stackpage=%08lx)\n",
176	       ((struct task_struct *)(__pa(current)))->comm,
177	       ((struct task_struct *)(__pa(current)))->pid,
178	       (unsigned long)current);
179
180	printk("\nStack: ");
181	printk("Stack dump [0x%08lx]:\n", (unsigned long)stack);
182	for (i = 0; i < kstack_depth_to_print; i++) {
183		if (((long)stack & (THREAD_SIZE - 1)) == 0)
184			break;
185		stack++;
186
187		printk("%lx :: sp + %02d: 0x%08lx\n", stack, i * 4,
188		       *((unsigned long *)(__pa(stack))));
189	}
190	printk("\n");
191
192	printk("Call Trace:   ");
193	i = 1;
194	while (((long)stack & (THREAD_SIZE - 1)) != 0) {
195		addr = *((unsigned long *)__pa(stack));
196		stack++;
197
198		if (kernel_text_address(addr)) {
199			if (i && ((i % 6) == 0))
200				printk("\n ");
201			printk(" [<%08lx>]", addr);
202			i++;
203		}
204	}
205	printk("\n");
206
207	printk("\nCode: ");
208
209	for (i = -24; i < 24; i++) {
210		unsigned long word;
 
211
212		word = ((unsigned long *)(__pa(regs->pc)))[i];
213
214		print_data(regs->pc, word, i);
 
215	}
216	printk("\n");
217}
218
219/* This is normally the 'Oops' routine */
220void __noreturn die(const char *str, struct pt_regs *regs, long err)
221{
222
223	console_verbose();
224	printk("\n%s#: %04lx\n", str, err & 0xffff);
225	show_registers(regs);
226#ifdef CONFIG_JUMP_UPON_UNHANDLED_EXCEPTION
227	printk("\n\nUNHANDLED_EXCEPTION: entering infinite loop\n");
228
229	/* shut down interrupts */
230	local_irq_disable();
231
232	__asm__ __volatile__("l.nop   1");
233	do {} while (1);
234#endif
235	make_task_dead(SIGSEGV);
 
 
 
 
 
 
 
 
 
236}
237
238asmlinkage void unhandled_exception(struct pt_regs *regs, int ea, int vector)
239{
240	printk("Unable to handle exception at EA =0x%x, vector 0x%x",
241	       ea, vector);
242	die("Oops", regs, 9);
243}
244
 
 
 
 
 
245asmlinkage void do_trap(struct pt_regs *regs, unsigned long address)
246{
247	force_sig_fault(SIGTRAP, TRAP_BRKPT, (void __user *)regs->pc);
 
 
 
 
 
 
 
248}
249
250asmlinkage void do_unaligned_access(struct pt_regs *regs, unsigned long address)
251{
 
 
252	if (user_mode(regs)) {
253		/* Send a SIGBUS */
254		force_sig_fault(SIGBUS, BUS_ADRALN, (void __user *)address);
 
 
 
 
255	} else {
256		printk("KERNEL: Unaligned Access 0x%.8lx\n", address);
257		show_registers(regs);
258		die("Die:", regs, address);
259	}
260
261}
262
263asmlinkage void do_bus_fault(struct pt_regs *regs, unsigned long address)
264{
 
 
265	if (user_mode(regs)) {
266		/* Send a SIGBUS */
267		force_sig_fault(SIGBUS, BUS_ADRERR, (void __user *)address);
 
 
 
 
268	} else {		/* Kernel mode */
269		printk("KERNEL: Bus error (SIGBUS) 0x%.8lx\n", address);
270		show_registers(regs);
271		die("Die:", regs, address);
272	}
273}
274
275static inline int in_delay_slot(struct pt_regs *regs)
276{
277#ifdef CONFIG_OPENRISC_NO_SPR_SR_DSX
278	/* No delay slot flag, do the old way */
279	unsigned int op, insn;
280
281	insn = *((unsigned int *)regs->pc);
282	op = insn >> 26;
283	switch (op) {
284	case 0x00: /* l.j */
285	case 0x01: /* l.jal */
286	case 0x03: /* l.bnf */
287	case 0x04: /* l.bf */
288	case 0x11: /* l.jr */
289	case 0x12: /* l.jalr */
290		return 1;
291	default:
292		return 0;
293	}
294#else
295	return mfspr(SPR_SR) & SPR_SR_DSX;
296#endif
297}
298
299static inline void adjust_pc(struct pt_regs *regs, unsigned long address)
300{
301	int displacement;
302	unsigned int rb, op, jmp;
303
304	if (unlikely(in_delay_slot(regs))) {
305		/* In delay slot, instruction at pc is a branch, simulate it */
306		jmp = *((unsigned int *)regs->pc);
307
308		displacement = sign_extend32(((jmp) & 0x3ffffff) << 2, 27);
309		rb = (jmp & 0x0000ffff) >> 11;
310		op = jmp >> 26;
311
312		switch (op) {
313		case 0x00: /* l.j */
314			regs->pc += displacement;
315			return;
316		case 0x01: /* l.jal */
317			regs->pc += displacement;
318			regs->gpr[9] = regs->pc + 8;
319			return;
320		case 0x03: /* l.bnf */
321			if (regs->sr & SPR_SR_F)
322				regs->pc += 8;
323			else
324				regs->pc += displacement;
325			return;
326		case 0x04: /* l.bf */
327			if (regs->sr & SPR_SR_F)
328				regs->pc += displacement;
329			else
330				regs->pc += 8;
331			return;
332		case 0x11: /* l.jr */
333			regs->pc = regs->gpr[rb];
334			return;
335		case 0x12: /* l.jalr */
336			regs->pc = regs->gpr[rb];
337			regs->gpr[9] = regs->pc + 8;
338			return;
339		default:
340			break;
341		}
342	} else {
343		regs->pc += 4;
344	}
345}
346
347static inline void simulate_lwa(struct pt_regs *regs, unsigned long address,
348				unsigned int insn)
349{
350	unsigned int ra, rd;
351	unsigned long value;
352	unsigned long orig_pc;
353	long imm;
354
355	const struct exception_table_entry *entry;
356
357	orig_pc = regs->pc;
358	adjust_pc(regs, address);
359
360	ra = (insn >> 16) & 0x1f;
361	rd = (insn >> 21) & 0x1f;
362	imm = (short)insn;
363	lwa_addr = (unsigned long __user *)(regs->gpr[ra] + imm);
364
365	if ((unsigned long)lwa_addr & 0x3) {
366		do_unaligned_access(regs, address);
367		return;
368	}
369
370	if (get_user(value, lwa_addr)) {
371		if (user_mode(regs)) {
372			force_sig(SIGSEGV);
373			return;
374		}
375
376		if ((entry = search_exception_tables(orig_pc))) {
377			regs->pc = entry->fixup;
378			return;
379		}
380
381		/* kernel access in kernel space, load it directly */
382		value = *((unsigned long *)lwa_addr);
383	}
384
385	lwa_flag = 1;
386	regs->gpr[rd] = value;
387}
388
389static inline void simulate_swa(struct pt_regs *regs, unsigned long address,
390				unsigned int insn)
391{
392	unsigned long __user *vaddr;
393	unsigned long orig_pc;
394	unsigned int ra, rb;
395	long imm;
396
397	const struct exception_table_entry *entry;
398
399	orig_pc = regs->pc;
400	adjust_pc(regs, address);
401
402	ra = (insn >> 16) & 0x1f;
403	rb = (insn >> 11) & 0x1f;
404	imm = (short)(((insn & 0x2200000) >> 10) | (insn & 0x7ff));
405	vaddr = (unsigned long __user *)(regs->gpr[ra] + imm);
406
407	if (!lwa_flag || vaddr != lwa_addr) {
408		regs->sr &= ~SPR_SR_F;
409		return;
410	}
411
412	if ((unsigned long)vaddr & 0x3) {
413		do_unaligned_access(regs, address);
414		return;
415	}
416
417	if (put_user(regs->gpr[rb], vaddr)) {
418		if (user_mode(regs)) {
419			force_sig(SIGSEGV);
420			return;
421		}
422
423		if ((entry = search_exception_tables(orig_pc))) {
424			regs->pc = entry->fixup;
425			return;
426		}
427
428		/* kernel access in kernel space, store it directly */
429		*((unsigned long *)vaddr) = regs->gpr[rb];
430	}
431
432	lwa_flag = 0;
433	regs->sr |= SPR_SR_F;
434}
435
436#define INSN_LWA	0x1b
437#define INSN_SWA	0x33
438
439asmlinkage void do_illegal_instruction(struct pt_regs *regs,
440				       unsigned long address)
441{
 
442	unsigned int op;
443	unsigned int insn = *((unsigned int *)address);
444
445	op = insn >> 26;
446
447	switch (op) {
448	case INSN_LWA:
449		simulate_lwa(regs, address, insn);
450		return;
451
452	case INSN_SWA:
453		simulate_swa(regs, address, insn);
454		return;
455
456	default:
457		break;
458	}
459
460	if (user_mode(regs)) {
461		/* Send a SIGILL */
462		force_sig_fault(SIGILL, ILL_ILLOPC, (void __user *)address);
 
 
 
 
463	} else {		/* Kernel mode */
464		printk("KERNEL: Illegal instruction (SIGILL) 0x%.8lx\n",
465		       address);
466		show_registers(regs);
467		die("Die:", regs, address);
468	}
469}
v4.17
 
  1/*
  2 * OpenRISC traps.c
  3 *
  4 * Linux architectural port borrowing liberally from similar works of
  5 * others.  All original copyrights apply as per the original source
  6 * declaration.
  7 *
  8 * Modifications for the OpenRISC architecture:
  9 * Copyright (C) 2003 Matjaz Breskvar <phoenix@bsemi.com>
 10 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
 11 *
 12 *      This program is free software; you can redistribute it and/or
 13 *      modify it under the terms of the GNU General Public License
 14 *      as published by the Free Software Foundation; either version
 15 *      2 of the License, or (at your option) any later version.
 16 *
 17 *  Here we handle the break vectors not used by the system call
 18 *  mechanism, as well as some general stack/register dumping
 19 *  things.
 20 *
 21 */
 22
 23#include <linux/init.h>
 24#include <linux/sched.h>
 25#include <linux/sched/debug.h>
 26#include <linux/sched/task_stack.h>
 27#include <linux/kernel.h>
 28#include <linux/extable.h>
 29#include <linux/kmod.h>
 30#include <linux/string.h>
 31#include <linux/errno.h>
 32#include <linux/ptrace.h>
 33#include <linux/timer.h>
 34#include <linux/mm.h>
 35#include <linux/kallsyms.h>
 36#include <linux/uaccess.h>
 37
 38#include <asm/segment.h>
 39#include <asm/io.h>
 40#include <asm/pgtable.h>
 41#include <asm/unwinder.h>
 42#include <asm/sections.h>
 43
 44int kstack_depth_to_print = 0x180;
 45int lwa_flag;
 46unsigned long __user *lwa_addr;
 47
 48void print_trace(void *data, unsigned long addr, int reliable)
 49{
 50	pr_emerg("[<%p>] %s%pS\n", (void *) addr, reliable ? "" : "? ",
 
 
 51	       (void *) addr);
 52}
 53
 
 
 
 
 
 
 
 
 54/* displays a short stack trace */
 55void show_stack(struct task_struct *task, unsigned long *esp)
 56{
 57	if (esp == NULL)
 58		esp = (unsigned long *)&esp;
 59
 60	pr_emerg("Call trace:\n");
 61	unwind_stack(NULL, esp, print_trace);
 62}
 63
 64void show_trace_task(struct task_struct *tsk)
 65{
 66	/*
 67	 * TODO: SysRq-T trace dump...
 68	 */
 69}
 70
 71void show_registers(struct pt_regs *regs)
 72{
 73	int i;
 74	int in_kernel = 1;
 75	unsigned long esp;
 76
 77	esp = (unsigned long)(regs->sp);
 78	if (user_mode(regs))
 79		in_kernel = 0;
 80
 81	printk("CPU #: %d\n"
 82	       "   PC: %08lx    SR: %08lx    SP: %08lx\n",
 83	       smp_processor_id(), regs->pc, regs->sr, regs->sp);
 84	printk("GPR00: %08lx GPR01: %08lx GPR02: %08lx GPR03: %08lx\n",
 85	       0L, regs->gpr[1], regs->gpr[2], regs->gpr[3]);
 86	printk("GPR04: %08lx GPR05: %08lx GPR06: %08lx GPR07: %08lx\n",
 87	       regs->gpr[4], regs->gpr[5], regs->gpr[6], regs->gpr[7]);
 88	printk("GPR08: %08lx GPR09: %08lx GPR10: %08lx GPR11: %08lx\n",
 89	       regs->gpr[8], regs->gpr[9], regs->gpr[10], regs->gpr[11]);
 90	printk("GPR12: %08lx GPR13: %08lx GPR14: %08lx GPR15: %08lx\n",
 91	       regs->gpr[12], regs->gpr[13], regs->gpr[14], regs->gpr[15]);
 92	printk("GPR16: %08lx GPR17: %08lx GPR18: %08lx GPR19: %08lx\n",
 93	       regs->gpr[16], regs->gpr[17], regs->gpr[18], regs->gpr[19]);
 94	printk("GPR20: %08lx GPR21: %08lx GPR22: %08lx GPR23: %08lx\n",
 95	       regs->gpr[20], regs->gpr[21], regs->gpr[22], regs->gpr[23]);
 96	printk("GPR24: %08lx GPR25: %08lx GPR26: %08lx GPR27: %08lx\n",
 97	       regs->gpr[24], regs->gpr[25], regs->gpr[26], regs->gpr[27]);
 98	printk("GPR28: %08lx GPR29: %08lx GPR30: %08lx GPR31: %08lx\n",
 99	       regs->gpr[28], regs->gpr[29], regs->gpr[30], regs->gpr[31]);
100	printk("  RES: %08lx oGPR11: %08lx\n",
101	       regs->gpr[11], regs->orig_gpr11);
102
103	printk("Process %s (pid: %d, stackpage=%08lx)\n",
104	       current->comm, current->pid, (unsigned long)current);
105	/*
106	 * When in-kernel, we also print out the stack and code at the
107	 * time of the fault..
108	 */
109	if (in_kernel) {
110
111		printk("\nStack: ");
112		show_stack(NULL, (unsigned long *)esp);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
113
114		printk("\nCode: ");
115		if (regs->pc < PAGE_OFFSET)
116			goto bad;
117
118		for (i = -24; i < 24; i++) {
119			unsigned char c;
120			if (__get_user(c, &((unsigned char *)regs->pc)[i])) {
 
121bad:
122				printk(" Bad PC value.");
123				break;
124			}
125
126			if (i == 0)
127				printk("(%02x) ", c);
128			else
129				printk("%02x ", c);
130		}
131	}
132	printk("\n");
133}
134
135void nommu_dump_state(struct pt_regs *regs,
136		      unsigned long ea, unsigned long vector)
137{
138	int i;
139	unsigned long addr, stack = regs->sp;
140
141	printk("\n\r[nommu_dump_state] :: ea %lx, vector %lx\n\r", ea, vector);
142
143	printk("CPU #: %d\n"
144	       "   PC: %08lx    SR: %08lx    SP: %08lx\n",
145	       0, regs->pc, regs->sr, regs->sp);
146	printk("GPR00: %08lx GPR01: %08lx GPR02: %08lx GPR03: %08lx\n",
147	       0L, regs->gpr[1], regs->gpr[2], regs->gpr[3]);
148	printk("GPR04: %08lx GPR05: %08lx GPR06: %08lx GPR07: %08lx\n",
149	       regs->gpr[4], regs->gpr[5], regs->gpr[6], regs->gpr[7]);
150	printk("GPR08: %08lx GPR09: %08lx GPR10: %08lx GPR11: %08lx\n",
151	       regs->gpr[8], regs->gpr[9], regs->gpr[10], regs->gpr[11]);
152	printk("GPR12: %08lx GPR13: %08lx GPR14: %08lx GPR15: %08lx\n",
153	       regs->gpr[12], regs->gpr[13], regs->gpr[14], regs->gpr[15]);
154	printk("GPR16: %08lx GPR17: %08lx GPR18: %08lx GPR19: %08lx\n",
155	       regs->gpr[16], regs->gpr[17], regs->gpr[18], regs->gpr[19]);
156	printk("GPR20: %08lx GPR21: %08lx GPR22: %08lx GPR23: %08lx\n",
157	       regs->gpr[20], regs->gpr[21], regs->gpr[22], regs->gpr[23]);
158	printk("GPR24: %08lx GPR25: %08lx GPR26: %08lx GPR27: %08lx\n",
159	       regs->gpr[24], regs->gpr[25], regs->gpr[26], regs->gpr[27]);
160	printk("GPR28: %08lx GPR29: %08lx GPR30: %08lx GPR31: %08lx\n",
161	       regs->gpr[28], regs->gpr[29], regs->gpr[30], regs->gpr[31]);
162	printk("  RES: %08lx oGPR11: %08lx\n",
163	       regs->gpr[11], regs->orig_gpr11);
164
165	printk("Process %s (pid: %d, stackpage=%08lx)\n",
166	       ((struct task_struct *)(__pa(current)))->comm,
167	       ((struct task_struct *)(__pa(current)))->pid,
168	       (unsigned long)current);
169
170	printk("\nStack: ");
171	printk("Stack dump [0x%08lx]:\n", (unsigned long)stack);
172	for (i = 0; i < kstack_depth_to_print; i++) {
173		if (((long)stack & (THREAD_SIZE - 1)) == 0)
174			break;
175		stack++;
176
177		printk("%lx :: sp + %02d: 0x%08lx\n", stack, i * 4,
178		       *((unsigned long *)(__pa(stack))));
179	}
180	printk("\n");
181
182	printk("Call Trace:   ");
183	i = 1;
184	while (((long)stack & (THREAD_SIZE - 1)) != 0) {
185		addr = *((unsigned long *)__pa(stack));
186		stack++;
187
188		if (kernel_text_address(addr)) {
189			if (i && ((i % 6) == 0))
190				printk("\n ");
191			printk(" [<%08lx>]", addr);
192			i++;
193		}
194	}
195	printk("\n");
196
197	printk("\nCode: ");
198
199	for (i = -24; i < 24; i++) {
200		unsigned char c;
201		c = ((unsigned char *)(__pa(regs->pc)))[i];
202
203		if (i == 0)
204			printk("(%02x) ", c);
205		else
206			printk("%02x ", c);
207	}
208	printk("\n");
209}
210
211/* This is normally the 'Oops' routine */
212void die(const char *str, struct pt_regs *regs, long err)
213{
214
215	console_verbose();
216	printk("\n%s#: %04lx\n", str, err & 0xffff);
217	show_registers(regs);
218#ifdef CONFIG_JUMP_UPON_UNHANDLED_EXCEPTION
219	printk("\n\nUNHANDLED_EXCEPTION: entering infinite loop\n");
220
221	/* shut down interrupts */
222	local_irq_disable();
223
224	__asm__ __volatile__("l.nop   1");
225	do {} while (1);
226#endif
227	do_exit(SIGSEGV);
228}
229
230/* This is normally the 'Oops' routine */
231void die_if_kernel(const char *str, struct pt_regs *regs, long err)
232{
233	if (user_mode(regs))
234		return;
235
236	die(str, regs, err);
237}
238
239void unhandled_exception(struct pt_regs *regs, int ea, int vector)
240{
241	printk("Unable to handle exception at EA =0x%x, vector 0x%x",
242	       ea, vector);
243	die("Oops", regs, 9);
244}
245
246void __init trap_init(void)
247{
248	/* Nothing needs to be done */
249}
250
251asmlinkage void do_trap(struct pt_regs *regs, unsigned long address)
252{
253	siginfo_t info;
254	memset(&info, 0, sizeof(info));
255	info.si_signo = SIGTRAP;
256	info.si_code = TRAP_TRACE;
257	info.si_addr = (void *)address;
258	force_sig_info(SIGTRAP, &info, current);
259
260	regs->pc += 4;
261}
262
263asmlinkage void do_unaligned_access(struct pt_regs *regs, unsigned long address)
264{
265	siginfo_t info;
266
267	if (user_mode(regs)) {
268		/* Send a SIGBUS */
269		info.si_signo = SIGBUS;
270		info.si_errno = 0;
271		info.si_code = BUS_ADRALN;
272		info.si_addr = (void __user *)address;
273		force_sig_info(SIGBUS, &info, current);
274	} else {
275		printk("KERNEL: Unaligned Access 0x%.8lx\n", address);
276		show_registers(regs);
277		die("Die:", regs, address);
278	}
279
280}
281
282asmlinkage void do_bus_fault(struct pt_regs *regs, unsigned long address)
283{
284	siginfo_t info;
285
286	if (user_mode(regs)) {
287		/* Send a SIGBUS */
288		info.si_signo = SIGBUS;
289		info.si_errno = 0;
290		info.si_code = BUS_ADRERR;
291		info.si_addr = (void *)address;
292		force_sig_info(SIGBUS, &info, current);
293	} else {		/* Kernel mode */
294		printk("KERNEL: Bus error (SIGBUS) 0x%.8lx\n", address);
295		show_registers(regs);
296		die("Die:", regs, address);
297	}
298}
299
300static inline int in_delay_slot(struct pt_regs *regs)
301{
302#ifdef CONFIG_OPENRISC_NO_SPR_SR_DSX
303	/* No delay slot flag, do the old way */
304	unsigned int op, insn;
305
306	insn = *((unsigned int *)regs->pc);
307	op = insn >> 26;
308	switch (op) {
309	case 0x00: /* l.j */
310	case 0x01: /* l.jal */
311	case 0x03: /* l.bnf */
312	case 0x04: /* l.bf */
313	case 0x11: /* l.jr */
314	case 0x12: /* l.jalr */
315		return 1;
316	default:
317		return 0;
318	}
319#else
320	return regs->sr & SPR_SR_DSX;
321#endif
322}
323
324static inline void adjust_pc(struct pt_regs *regs, unsigned long address)
325{
326	int displacement;
327	unsigned int rb, op, jmp;
328
329	if (unlikely(in_delay_slot(regs))) {
330		/* In delay slot, instruction at pc is a branch, simulate it */
331		jmp = *((unsigned int *)regs->pc);
332
333		displacement = sign_extend32(((jmp) & 0x3ffffff) << 2, 27);
334		rb = (jmp & 0x0000ffff) >> 11;
335		op = jmp >> 26;
336
337		switch (op) {
338		case 0x00: /* l.j */
339			regs->pc += displacement;
340			return;
341		case 0x01: /* l.jal */
342			regs->pc += displacement;
343			regs->gpr[9] = regs->pc + 8;
344			return;
345		case 0x03: /* l.bnf */
346			if (regs->sr & SPR_SR_F)
347				regs->pc += 8;
348			else
349				regs->pc += displacement;
350			return;
351		case 0x04: /* l.bf */
352			if (regs->sr & SPR_SR_F)
353				regs->pc += displacement;
354			else
355				regs->pc += 8;
356			return;
357		case 0x11: /* l.jr */
358			regs->pc = regs->gpr[rb];
359			return;
360		case 0x12: /* l.jalr */
361			regs->pc = regs->gpr[rb];
362			regs->gpr[9] = regs->pc + 8;
363			return;
364		default:
365			break;
366		}
367	} else {
368		regs->pc += 4;
369	}
370}
371
372static inline void simulate_lwa(struct pt_regs *regs, unsigned long address,
373				unsigned int insn)
374{
375	unsigned int ra, rd;
376	unsigned long value;
377	unsigned long orig_pc;
378	long imm;
379
380	const struct exception_table_entry *entry;
381
382	orig_pc = regs->pc;
383	adjust_pc(regs, address);
384
385	ra = (insn >> 16) & 0x1f;
386	rd = (insn >> 21) & 0x1f;
387	imm = (short)insn;
388	lwa_addr = (unsigned long __user *)(regs->gpr[ra] + imm);
389
390	if ((unsigned long)lwa_addr & 0x3) {
391		do_unaligned_access(regs, address);
392		return;
393	}
394
395	if (get_user(value, lwa_addr)) {
396		if (user_mode(regs)) {
397			force_sig(SIGSEGV, current);
398			return;
399		}
400
401		if ((entry = search_exception_tables(orig_pc))) {
402			regs->pc = entry->fixup;
403			return;
404		}
405
406		/* kernel access in kernel space, load it directly */
407		value = *((unsigned long *)lwa_addr);
408	}
409
410	lwa_flag = 1;
411	regs->gpr[rd] = value;
412}
413
414static inline void simulate_swa(struct pt_regs *regs, unsigned long address,
415				unsigned int insn)
416{
417	unsigned long __user *vaddr;
418	unsigned long orig_pc;
419	unsigned int ra, rb;
420	long imm;
421
422	const struct exception_table_entry *entry;
423
424	orig_pc = regs->pc;
425	adjust_pc(regs, address);
426
427	ra = (insn >> 16) & 0x1f;
428	rb = (insn >> 11) & 0x1f;
429	imm = (short)(((insn & 0x2200000) >> 10) | (insn & 0x7ff));
430	vaddr = (unsigned long __user *)(regs->gpr[ra] + imm);
431
432	if (!lwa_flag || vaddr != lwa_addr) {
433		regs->sr &= ~SPR_SR_F;
434		return;
435	}
436
437	if ((unsigned long)vaddr & 0x3) {
438		do_unaligned_access(regs, address);
439		return;
440	}
441
442	if (put_user(regs->gpr[rb], vaddr)) {
443		if (user_mode(regs)) {
444			force_sig(SIGSEGV, current);
445			return;
446		}
447
448		if ((entry = search_exception_tables(orig_pc))) {
449			regs->pc = entry->fixup;
450			return;
451		}
452
453		/* kernel access in kernel space, store it directly */
454		*((unsigned long *)vaddr) = regs->gpr[rb];
455	}
456
457	lwa_flag = 0;
458	regs->sr |= SPR_SR_F;
459}
460
461#define INSN_LWA	0x1b
462#define INSN_SWA	0x33
463
464asmlinkage void do_illegal_instruction(struct pt_regs *regs,
465				       unsigned long address)
466{
467	siginfo_t info;
468	unsigned int op;
469	unsigned int insn = *((unsigned int *)address);
470
471	op = insn >> 26;
472
473	switch (op) {
474	case INSN_LWA:
475		simulate_lwa(regs, address, insn);
476		return;
477
478	case INSN_SWA:
479		simulate_swa(regs, address, insn);
480		return;
481
482	default:
483		break;
484	}
485
486	if (user_mode(regs)) {
487		/* Send a SIGILL */
488		info.si_signo = SIGILL;
489		info.si_errno = 0;
490		info.si_code = ILL_ILLOPC;
491		info.si_addr = (void *)address;
492		force_sig_info(SIGBUS, &info, current);
493	} else {		/* Kernel mode */
494		printk("KERNEL: Illegal instruction (SIGILL) 0x%.8lx\n",
495		       address);
496		show_registers(regs);
497		die("Die:", regs, address);
498	}
499}