Loading...
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/kernel.h>
26#include <linux/module.h>
27#include <linux/kmod.h>
28#include <linux/string.h>
29#include <linux/errno.h>
30#include <linux/ptrace.h>
31#include <linux/timer.h>
32#include <linux/mm.h>
33#include <linux/kallsyms.h>
34#include <asm/uaccess.h>
35
36#include <asm/system.h>
37#include <asm/segment.h>
38#include <asm/io.h>
39#include <asm/pgtable.h>
40
41extern char _etext, _stext;
42
43int kstack_depth_to_print = 0x180;
44
45static inline int valid_stack_ptr(struct thread_info *tinfo, void *p)
46{
47 return p > (void *)tinfo && p < (void *)tinfo + THREAD_SIZE - 3;
48}
49
50void show_trace(struct task_struct *task, unsigned long *stack)
51{
52 struct thread_info *context;
53 unsigned long addr;
54
55 context = (struct thread_info *)
56 ((unsigned long)stack & (~(THREAD_SIZE - 1)));
57
58 while (valid_stack_ptr(context, stack)) {
59 addr = *stack++;
60 if (__kernel_text_address(addr)) {
61 printk(" [<%08lx>]", addr);
62 print_symbol(" %s", addr);
63 printk("\n");
64 }
65 }
66 printk(" =======================\n");
67}
68
69/* displays a short stack trace */
70void show_stack(struct task_struct *task, unsigned long *esp)
71{
72 unsigned long addr, *stack;
73 int i;
74
75 if (esp == NULL)
76 esp = (unsigned long *)&esp;
77
78 stack = esp;
79
80 printk("Stack dump [0x%08lx]:\n", (unsigned long)esp);
81 for (i = 0; i < kstack_depth_to_print; i++) {
82 if (kstack_end(stack))
83 break;
84 if (__get_user(addr, stack)) {
85 /* This message matches "failing address" marked
86 s390 in ksymoops, so lines containing it will
87 not be filtered out by ksymoops. */
88 printk("Failing address 0x%lx\n", (unsigned long)stack);
89 break;
90 }
91 stack++;
92
93 printk("sp + %02d: 0x%08lx\n", i * 4, addr);
94 }
95 printk("\n");
96
97 show_trace(task, esp);
98
99 return;
100}
101
102void show_trace_task(struct task_struct *tsk)
103{
104 /*
105 * TODO: SysRq-T trace dump...
106 */
107}
108
109/*
110 * The architecture-independent backtrace generator
111 */
112void dump_stack(void)
113{
114 unsigned long stack;
115
116 show_stack(current, &stack);
117}
118
119void show_registers(struct pt_regs *regs)
120{
121 int i;
122 int in_kernel = 1;
123 unsigned long esp;
124
125 esp = (unsigned long)(®s->sp);
126 if (user_mode(regs))
127 in_kernel = 0;
128
129 printk("CPU #: %d\n"
130 " PC: %08lx SR: %08lx SP: %08lx\n",
131 smp_processor_id(), regs->pc, regs->sr, regs->sp);
132 printk("GPR00: %08lx GPR01: %08lx GPR02: %08lx GPR03: %08lx\n",
133 0L, regs->gpr[1], regs->gpr[2], regs->gpr[3]);
134 printk("GPR04: %08lx GPR05: %08lx GPR06: %08lx GPR07: %08lx\n",
135 regs->gpr[4], regs->gpr[5], regs->gpr[6], regs->gpr[7]);
136 printk("GPR08: %08lx GPR09: %08lx GPR10: %08lx GPR11: %08lx\n",
137 regs->gpr[8], regs->gpr[9], regs->gpr[10], regs->gpr[11]);
138 printk("GPR12: %08lx GPR13: %08lx GPR14: %08lx GPR15: %08lx\n",
139 regs->gpr[12], regs->gpr[13], regs->gpr[14], regs->gpr[15]);
140 printk("GPR16: %08lx GPR17: %08lx GPR18: %08lx GPR19: %08lx\n",
141 regs->gpr[16], regs->gpr[17], regs->gpr[18], regs->gpr[19]);
142 printk("GPR20: %08lx GPR21: %08lx GPR22: %08lx GPR23: %08lx\n",
143 regs->gpr[20], regs->gpr[21], regs->gpr[22], regs->gpr[23]);
144 printk("GPR24: %08lx GPR25: %08lx GPR26: %08lx GPR27: %08lx\n",
145 regs->gpr[24], regs->gpr[25], regs->gpr[26], regs->gpr[27]);
146 printk("GPR28: %08lx GPR29: %08lx GPR30: %08lx GPR31: %08lx\n",
147 regs->gpr[28], regs->gpr[29], regs->gpr[30], regs->gpr[31]);
148 printk(" RES: %08lx oGPR11: %08lx syscallno: %08lx\n",
149 regs->gpr[11], regs->orig_gpr11, regs->syscallno);
150
151 printk("Process %s (pid: %d, stackpage=%08lx)\n",
152 current->comm, current->pid, (unsigned long)current);
153 /*
154 * When in-kernel, we also print out the stack and code at the
155 * time of the fault..
156 */
157 if (in_kernel) {
158
159 printk("\nStack: ");
160 show_stack(NULL, (unsigned long *)esp);
161
162 printk("\nCode: ");
163 if (regs->pc < PAGE_OFFSET)
164 goto bad;
165
166 for (i = -24; i < 24; i++) {
167 unsigned char c;
168 if (__get_user(c, &((unsigned char *)regs->pc)[i])) {
169bad:
170 printk(" Bad PC value.");
171 break;
172 }
173
174 if (i == 0)
175 printk("(%02x) ", c);
176 else
177 printk("%02x ", c);
178 }
179 }
180 printk("\n");
181}
182
183void nommu_dump_state(struct pt_regs *regs,
184 unsigned long ea, unsigned long vector)
185{
186 int i;
187 unsigned long addr, stack = regs->sp;
188
189 printk("\n\r[nommu_dump_state] :: ea %lx, vector %lx\n\r", ea, vector);
190
191 printk("CPU #: %d\n"
192 " PC: %08lx SR: %08lx SP: %08lx\n",
193 0, regs->pc, regs->sr, regs->sp);
194 printk("GPR00: %08lx GPR01: %08lx GPR02: %08lx GPR03: %08lx\n",
195 0L, regs->gpr[1], regs->gpr[2], regs->gpr[3]);
196 printk("GPR04: %08lx GPR05: %08lx GPR06: %08lx GPR07: %08lx\n",
197 regs->gpr[4], regs->gpr[5], regs->gpr[6], regs->gpr[7]);
198 printk("GPR08: %08lx GPR09: %08lx GPR10: %08lx GPR11: %08lx\n",
199 regs->gpr[8], regs->gpr[9], regs->gpr[10], regs->gpr[11]);
200 printk("GPR12: %08lx GPR13: %08lx GPR14: %08lx GPR15: %08lx\n",
201 regs->gpr[12], regs->gpr[13], regs->gpr[14], regs->gpr[15]);
202 printk("GPR16: %08lx GPR17: %08lx GPR18: %08lx GPR19: %08lx\n",
203 regs->gpr[16], regs->gpr[17], regs->gpr[18], regs->gpr[19]);
204 printk("GPR20: %08lx GPR21: %08lx GPR22: %08lx GPR23: %08lx\n",
205 regs->gpr[20], regs->gpr[21], regs->gpr[22], regs->gpr[23]);
206 printk("GPR24: %08lx GPR25: %08lx GPR26: %08lx GPR27: %08lx\n",
207 regs->gpr[24], regs->gpr[25], regs->gpr[26], regs->gpr[27]);
208 printk("GPR28: %08lx GPR29: %08lx GPR30: %08lx GPR31: %08lx\n",
209 regs->gpr[28], regs->gpr[29], regs->gpr[30], regs->gpr[31]);
210 printk(" RES: %08lx oGPR11: %08lx syscallno: %08lx\n",
211 regs->gpr[11], regs->orig_gpr11, regs->syscallno);
212
213 printk("Process %s (pid: %d, stackpage=%08lx)\n",
214 ((struct task_struct *)(__pa(current)))->comm,
215 ((struct task_struct *)(__pa(current)))->pid,
216 (unsigned long)current);
217
218 printk("\nStack: ");
219 printk("Stack dump [0x%08lx]:\n", (unsigned long)stack);
220 for (i = 0; i < kstack_depth_to_print; i++) {
221 if (((long)stack & (THREAD_SIZE - 1)) == 0)
222 break;
223 stack++;
224
225 printk("%lx :: sp + %02d: 0x%08lx\n", stack, i * 4,
226 *((unsigned long *)(__pa(stack))));
227 }
228 printk("\n");
229
230 printk("Call Trace: ");
231 i = 1;
232 while (((long)stack & (THREAD_SIZE - 1)) != 0) {
233 addr = *((unsigned long *)__pa(stack));
234 stack++;
235
236 if (kernel_text_address(addr)) {
237 if (i && ((i % 6) == 0))
238 printk("\n ");
239 printk(" [<%08lx>]", addr);
240 i++;
241 }
242 }
243 printk("\n");
244
245 printk("\nCode: ");
246
247 for (i = -24; i < 24; i++) {
248 unsigned char c;
249 c = ((unsigned char *)(__pa(regs->pc)))[i];
250
251 if (i == 0)
252 printk("(%02x) ", c);
253 else
254 printk("%02x ", c);
255 }
256 printk("\n");
257}
258
259/* This is normally the 'Oops' routine */
260void die(const char *str, struct pt_regs *regs, long err)
261{
262
263 console_verbose();
264 printk("\n%s#: %04lx\n", str, err & 0xffff);
265 show_registers(regs);
266#ifdef CONFIG_JUMP_UPON_UNHANDLED_EXCEPTION
267 printk("\n\nUNHANDLED_EXCEPTION: entering infinite loop\n");
268
269 /* shut down interrupts */
270 local_irq_disable();
271
272 __asm__ __volatile__("l.nop 1");
273 do {} while (1);
274#endif
275 do_exit(SIGSEGV);
276}
277
278/* This is normally the 'Oops' routine */
279void die_if_kernel(const char *str, struct pt_regs *regs, long err)
280{
281 if (user_mode(regs))
282 return;
283
284 die(str, regs, err);
285}
286
287void unhandled_exception(struct pt_regs *regs, int ea, int vector)
288{
289 printk("Unable to handle exception at EA =0x%x, vector 0x%x",
290 ea, vector);
291 die("Oops", regs, 9);
292}
293
294void __init trap_init(void)
295{
296 /* Nothing needs to be done */
297}
298
299asmlinkage void do_trap(struct pt_regs *regs, unsigned long address)
300{
301 siginfo_t info;
302 memset(&info, 0, sizeof(info));
303 info.si_signo = SIGTRAP;
304 info.si_code = TRAP_TRACE;
305 info.si_addr = (void *)address;
306 force_sig_info(SIGTRAP, &info, current);
307
308 regs->pc += 4;
309}
310
311asmlinkage void do_unaligned_access(struct pt_regs *regs, unsigned long address)
312{
313 siginfo_t info;
314
315 if (user_mode(regs)) {
316 /* Send a SIGSEGV */
317 info.si_signo = SIGSEGV;
318 info.si_errno = 0;
319 /* info.si_code has been set above */
320 info.si_addr = (void *)address;
321 force_sig_info(SIGSEGV, &info, current);
322 } else {
323 printk("KERNEL: Unaligned Access 0x%.8lx\n", address);
324 show_registers(regs);
325 die("Die:", regs, address);
326 }
327
328}
329
330asmlinkage void do_bus_fault(struct pt_regs *regs, unsigned long address)
331{
332 siginfo_t info;
333
334 if (user_mode(regs)) {
335 /* Send a SIGBUS */
336 info.si_signo = SIGBUS;
337 info.si_errno = 0;
338 info.si_code = BUS_ADRERR;
339 info.si_addr = (void *)address;
340 force_sig_info(SIGBUS, &info, current);
341 } else { /* Kernel mode */
342 printk("KERNEL: Bus error (SIGBUS) 0x%.8lx\n", address);
343 show_registers(regs);
344 die("Die:", regs, address);
345 }
346}
347
348asmlinkage void do_illegal_instruction(struct pt_regs *regs,
349 unsigned long address)
350{
351 siginfo_t info;
352
353 if (user_mode(regs)) {
354 /* Send a SIGILL */
355 info.si_signo = SIGILL;
356 info.si_errno = 0;
357 info.si_code = ILL_ILLOPC;
358 info.si_addr = (void *)address;
359 force_sig_info(SIGBUS, &info, current);
360 } else { /* Kernel mode */
361 printk("KERNEL: Illegal instruction (SIGILL) 0x%.8lx\n",
362 address);
363 show_registers(regs);
364 die("Die:", regs, address);
365 }
366}
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/bug.h>
34#include <asm/fpu.h>
35#include <asm/io.h>
36#include <asm/processor.h>
37#include <asm/unwinder.h>
38#include <asm/sections.h>
39
40int lwa_flag;
41static unsigned long __user *lwa_addr;
42
43asmlinkage void unhandled_exception(struct pt_regs *regs, int ea, int vector);
44asmlinkage void do_trap(struct pt_regs *regs, unsigned long address);
45asmlinkage void do_fpe_trap(struct pt_regs *regs, unsigned long address);
46asmlinkage void do_unaligned_access(struct pt_regs *regs, unsigned long address);
47asmlinkage void do_bus_fault(struct pt_regs *regs, unsigned long address);
48asmlinkage void do_illegal_instruction(struct pt_regs *regs,
49 unsigned long address);
50
51static void print_trace(void *data, unsigned long addr, int reliable)
52{
53 const char *loglvl = data;
54
55 pr_info("%s[<%p>] %s%pS\n", loglvl, (void *) addr, reliable ? "" : "? ",
56 (void *) addr);
57}
58
59static void print_data(unsigned long base_addr, unsigned long word, int i)
60{
61 if (i == 0)
62 pr_info("(%08lx:)\t%08lx", base_addr + (i * 4), word);
63 else
64 pr_info(" %08lx:\t%08lx", base_addr + (i * 4), word);
65}
66
67/* displays a short stack trace */
68void show_stack(struct task_struct *task, unsigned long *esp, const char *loglvl)
69{
70 if (esp == NULL)
71 esp = (unsigned long *)&esp;
72
73 pr_info("%sCall trace:\n", loglvl);
74 unwind_stack((void *)loglvl, esp, print_trace);
75}
76
77void show_registers(struct pt_regs *regs)
78{
79 int i;
80 int in_kernel = 1;
81 unsigned long esp;
82
83 esp = (unsigned long)(regs->sp);
84 if (user_mode(regs))
85 in_kernel = 0;
86
87 pr_info("CPU #: %d\n"
88 " PC: %08lx SR: %08lx SP: %08lx\n",
89 smp_processor_id(), regs->pc, regs->sr, regs->sp);
90 pr_info("GPR00: %08lx GPR01: %08lx GPR02: %08lx GPR03: %08lx\n",
91 0L, regs->gpr[1], regs->gpr[2], regs->gpr[3]);
92 pr_info("GPR04: %08lx GPR05: %08lx GPR06: %08lx GPR07: %08lx\n",
93 regs->gpr[4], regs->gpr[5], regs->gpr[6], regs->gpr[7]);
94 pr_info("GPR08: %08lx GPR09: %08lx GPR10: %08lx GPR11: %08lx\n",
95 regs->gpr[8], regs->gpr[9], regs->gpr[10], regs->gpr[11]);
96 pr_info("GPR12: %08lx GPR13: %08lx GPR14: %08lx GPR15: %08lx\n",
97 regs->gpr[12], regs->gpr[13], regs->gpr[14], regs->gpr[15]);
98 pr_info("GPR16: %08lx GPR17: %08lx GPR18: %08lx GPR19: %08lx\n",
99 regs->gpr[16], regs->gpr[17], regs->gpr[18], regs->gpr[19]);
100 pr_info("GPR20: %08lx GPR21: %08lx GPR22: %08lx GPR23: %08lx\n",
101 regs->gpr[20], regs->gpr[21], regs->gpr[22], regs->gpr[23]);
102 pr_info("GPR24: %08lx GPR25: %08lx GPR26: %08lx GPR27: %08lx\n",
103 regs->gpr[24], regs->gpr[25], regs->gpr[26], regs->gpr[27]);
104 pr_info("GPR28: %08lx GPR29: %08lx GPR30: %08lx GPR31: %08lx\n",
105 regs->gpr[28], regs->gpr[29], regs->gpr[30], regs->gpr[31]);
106 pr_info(" RES: %08lx oGPR11: %08lx\n",
107 regs->gpr[11], regs->orig_gpr11);
108
109 pr_info("Process %s (pid: %d, stackpage=%08lx)\n",
110 current->comm, current->pid, (unsigned long)current);
111 /*
112 * When in-kernel, we also print out the stack and code at the
113 * time of the fault..
114 */
115 if (in_kernel) {
116
117 pr_info("\nStack: ");
118 show_stack(NULL, (unsigned long *)esp, KERN_EMERG);
119
120 if (esp < PAGE_OFFSET)
121 goto bad_stack;
122
123 pr_info("\n");
124 for (i = -8; i < 24; i += 1) {
125 unsigned long word;
126
127 if (__get_user(word, &((unsigned long *)esp)[i])) {
128bad_stack:
129 pr_info(" Bad Stack value.");
130 break;
131 }
132
133 print_data(esp, word, i);
134 }
135
136 pr_info("\nCode: ");
137 if (regs->pc < PAGE_OFFSET)
138 goto bad;
139
140 for (i = -6; i < 6; i += 1) {
141 unsigned long word;
142
143 if (__get_user(word, &((unsigned long *)regs->pc)[i])) {
144bad:
145 pr_info(" Bad PC value.");
146 break;
147 }
148
149 print_data(regs->pc, word, i);
150 }
151 }
152 pr_info("\n");
153}
154
155/* This is normally the 'Oops' routine */
156void __noreturn die(const char *str, struct pt_regs *regs, long err)
157{
158
159 console_verbose();
160 pr_emerg("\n%s#: %04lx\n", str, err & 0xffff);
161 show_registers(regs);
162#ifdef CONFIG_JUMP_UPON_UNHANDLED_EXCEPTION
163 pr_emerg("\n\nUNHANDLED_EXCEPTION: entering infinite loop\n");
164
165 /* shut down interrupts */
166 local_irq_disable();
167
168 __asm__ __volatile__("l.nop 1");
169 do {} while (1);
170#endif
171 make_task_dead(SIGSEGV);
172}
173
174asmlinkage void unhandled_exception(struct pt_regs *regs, int ea, int vector)
175{
176 pr_emerg("Unable to handle exception at EA =0x%x, vector 0x%x",
177 ea, vector);
178 die("Oops", regs, 9);
179}
180
181asmlinkage void do_fpe_trap(struct pt_regs *regs, unsigned long address)
182{
183 if (user_mode(regs)) {
184 int code = FPE_FLTUNK;
185#ifdef CONFIG_FPU
186 unsigned long fpcsr;
187
188 save_fpu(current);
189 fpcsr = current->thread.fpcsr;
190
191 if (fpcsr & SPR_FPCSR_IVF)
192 code = FPE_FLTINV;
193 else if (fpcsr & SPR_FPCSR_OVF)
194 code = FPE_FLTOVF;
195 else if (fpcsr & SPR_FPCSR_UNF)
196 code = FPE_FLTUND;
197 else if (fpcsr & SPR_FPCSR_DZF)
198 code = FPE_FLTDIV;
199 else if (fpcsr & SPR_FPCSR_IXF)
200 code = FPE_FLTRES;
201
202 /* Clear all flags */
203 current->thread.fpcsr &= ~SPR_FPCSR_ALLF;
204 restore_fpu(current);
205#endif
206 force_sig_fault(SIGFPE, code, (void __user *)regs->pc);
207 } else {
208 pr_emerg("KERNEL: Illegal fpe exception 0x%.8lx\n", regs->pc);
209 die("Die:", regs, SIGFPE);
210 }
211}
212
213asmlinkage void do_trap(struct pt_regs *regs, unsigned long address)
214{
215 if (user_mode(regs)) {
216 force_sig_fault(SIGTRAP, TRAP_BRKPT, (void __user *)regs->pc);
217 } else {
218 pr_emerg("KERNEL: Illegal trap exception 0x%.8lx\n", regs->pc);
219 die("Die:", regs, SIGILL);
220 }
221}
222
223asmlinkage void do_unaligned_access(struct pt_regs *regs, unsigned long address)
224{
225 if (user_mode(regs)) {
226 /* Send a SIGBUS */
227 force_sig_fault(SIGBUS, BUS_ADRALN, (void __user *)address);
228 } else {
229 pr_emerg("KERNEL: Unaligned Access 0x%.8lx\n", address);
230 die("Die:", regs, address);
231 }
232
233}
234
235asmlinkage void do_bus_fault(struct pt_regs *regs, unsigned long address)
236{
237 if (user_mode(regs)) {
238 /* Send a SIGBUS */
239 force_sig_fault(SIGBUS, BUS_ADRERR, (void __user *)address);
240 } else { /* Kernel mode */
241 pr_emerg("KERNEL: Bus error (SIGBUS) 0x%.8lx\n", address);
242 die("Die:", regs, address);
243 }
244}
245
246static inline int in_delay_slot(struct pt_regs *regs)
247{
248#ifdef CONFIG_OPENRISC_NO_SPR_SR_DSX
249 /* No delay slot flag, do the old way */
250 unsigned int op, insn;
251
252 insn = *((unsigned int *)regs->pc);
253 op = insn >> 26;
254 switch (op) {
255 case 0x00: /* l.j */
256 case 0x01: /* l.jal */
257 case 0x03: /* l.bnf */
258 case 0x04: /* l.bf */
259 case 0x11: /* l.jr */
260 case 0x12: /* l.jalr */
261 return 1;
262 default:
263 return 0;
264 }
265#else
266 return mfspr(SPR_SR) & SPR_SR_DSX;
267#endif
268}
269
270static inline void adjust_pc(struct pt_regs *regs, unsigned long address)
271{
272 int displacement;
273 unsigned int rb, op, jmp;
274
275 if (unlikely(in_delay_slot(regs))) {
276 /* In delay slot, instruction at pc is a branch, simulate it */
277 jmp = *((unsigned int *)regs->pc);
278
279 displacement = sign_extend32(((jmp) & 0x3ffffff) << 2, 27);
280 rb = (jmp & 0x0000ffff) >> 11;
281 op = jmp >> 26;
282
283 switch (op) {
284 case 0x00: /* l.j */
285 regs->pc += displacement;
286 return;
287 case 0x01: /* l.jal */
288 regs->pc += displacement;
289 regs->gpr[9] = regs->pc + 8;
290 return;
291 case 0x03: /* l.bnf */
292 if (regs->sr & SPR_SR_F)
293 regs->pc += 8;
294 else
295 regs->pc += displacement;
296 return;
297 case 0x04: /* l.bf */
298 if (regs->sr & SPR_SR_F)
299 regs->pc += displacement;
300 else
301 regs->pc += 8;
302 return;
303 case 0x11: /* l.jr */
304 regs->pc = regs->gpr[rb];
305 return;
306 case 0x12: /* l.jalr */
307 regs->pc = regs->gpr[rb];
308 regs->gpr[9] = regs->pc + 8;
309 return;
310 default:
311 break;
312 }
313 } else {
314 regs->pc += 4;
315 }
316}
317
318static inline void simulate_lwa(struct pt_regs *regs, unsigned long address,
319 unsigned int insn)
320{
321 unsigned int ra, rd;
322 unsigned long value;
323 unsigned long orig_pc;
324 long imm;
325
326 const struct exception_table_entry *entry;
327
328 orig_pc = regs->pc;
329 adjust_pc(regs, address);
330
331 ra = (insn >> 16) & 0x1f;
332 rd = (insn >> 21) & 0x1f;
333 imm = (short)insn;
334 lwa_addr = (unsigned long __user *)(regs->gpr[ra] + imm);
335
336 if ((unsigned long)lwa_addr & 0x3) {
337 do_unaligned_access(regs, address);
338 return;
339 }
340
341 if (get_user(value, lwa_addr)) {
342 if (user_mode(regs)) {
343 force_sig(SIGSEGV);
344 return;
345 }
346
347 if ((entry = search_exception_tables(orig_pc))) {
348 regs->pc = entry->fixup;
349 return;
350 }
351
352 /* kernel access in kernel space, load it directly */
353 value = *((unsigned long *)lwa_addr);
354 }
355
356 lwa_flag = 1;
357 regs->gpr[rd] = value;
358}
359
360static inline void simulate_swa(struct pt_regs *regs, unsigned long address,
361 unsigned int insn)
362{
363 unsigned long __user *vaddr;
364 unsigned long orig_pc;
365 unsigned int ra, rb;
366 long imm;
367
368 const struct exception_table_entry *entry;
369
370 orig_pc = regs->pc;
371 adjust_pc(regs, address);
372
373 ra = (insn >> 16) & 0x1f;
374 rb = (insn >> 11) & 0x1f;
375 imm = (short)(((insn & 0x2200000) >> 10) | (insn & 0x7ff));
376 vaddr = (unsigned long __user *)(regs->gpr[ra] + imm);
377
378 if (!lwa_flag || vaddr != lwa_addr) {
379 regs->sr &= ~SPR_SR_F;
380 return;
381 }
382
383 if ((unsigned long)vaddr & 0x3) {
384 do_unaligned_access(regs, address);
385 return;
386 }
387
388 if (put_user(regs->gpr[rb], vaddr)) {
389 if (user_mode(regs)) {
390 force_sig(SIGSEGV);
391 return;
392 }
393
394 if ((entry = search_exception_tables(orig_pc))) {
395 regs->pc = entry->fixup;
396 return;
397 }
398
399 /* kernel access in kernel space, store it directly */
400 *((unsigned long *)vaddr) = regs->gpr[rb];
401 }
402
403 lwa_flag = 0;
404 regs->sr |= SPR_SR_F;
405}
406
407#define INSN_LWA 0x1b
408#define INSN_SWA 0x33
409
410asmlinkage void do_illegal_instruction(struct pt_regs *regs,
411 unsigned long address)
412{
413 unsigned int op;
414 unsigned int insn = *((unsigned int *)address);
415
416 op = insn >> 26;
417
418 switch (op) {
419 case INSN_LWA:
420 simulate_lwa(regs, address, insn);
421 return;
422
423 case INSN_SWA:
424 simulate_swa(regs, address, insn);
425 return;
426
427 default:
428 break;
429 }
430
431 if (user_mode(regs)) {
432 /* Send a SIGILL */
433 force_sig_fault(SIGILL, ILL_ILLOPC, (void __user *)address);
434 } else { /* Kernel mode */
435 pr_emerg("KERNEL: Illegal instruction (SIGILL) 0x%.8lx\n",
436 address);
437 die("Die:", regs, address);
438 }
439}