Merge tag 'v3.10.55' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / arm / kernel / traps.c
CommitLineData
1da177e4
LT
1/*
2 * linux/arch/arm/kernel/traps.c
3 *
ab72b007 4 * Copyright (C) 1995-2009 Russell King
1da177e4
LT
5 * Fragments that appear the same as linux/arch/i386/kernel/traps.c (C) Linus Torvalds
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * 'traps.c' handles hardware exceptions after we have saved some state in
12 * 'linux/arch/arm/lib/traps.S'. Mostly a debugging aid, but will probably
13 * kill the offending process.
14 */
1da177e4 15#include <linux/signal.h>
1da177e4 16#include <linux/personality.h>
1da177e4 17#include <linux/kallsyms.h>
a9221de6
RK
18#include <linux/spinlock.h>
19#include <linux/uaccess.h>
67306da6 20#include <linux/hardirq.h>
a9221de6
RK
21#include <linux/kdebug.h>
22#include <linux/module.h>
23#include <linux/kexec.h>
87e040b6 24#include <linux/bug.h>
a9221de6 25#include <linux/delay.h>
1da177e4 26#include <linux/init.h>
425fc47a 27#include <linux/sched.h>
1da177e4 28
60063497 29#include <linux/atomic.h>
1da177e4 30#include <asm/cacheflush.h>
5a567d78 31#include <asm/exception.h>
1da177e4
LT
32#include <asm/unistd.h>
33#include <asm/traps.h>
bff595c1 34#include <asm/unwind.h>
f159f4ed 35#include <asm/tls.h>
9f97da78 36#include <asm/system_misc.h>
6fa3eb70 37#include <linux/aee.h>
167ce5e7
RK
38static const char *handler[]= {
39 "prefetch abort",
40 "data abort",
41 "address exception",
42 "interrupt",
43 "undefined instruction",
44};
1da177e4 45
247055aa
CM
46void *vectors_page;
47
1da177e4
LT
48#ifdef CONFIG_DEBUG_USER
49unsigned int user_debug;
50
51static int __init user_debug_setup(char *str)
52{
53 get_option(&str, &user_debug);
54 return 1;
55}
56__setup("user_debug=", user_debug_setup);
57#endif
58
e40c2ec6 59static void dump_mem(const char *, const char *, unsigned long, unsigned long);
7ab3f8d5 60
7ab3f8d5 61void dump_backtrace_entry(unsigned long where, unsigned long from, unsigned long frame)
1da177e4
LT
62{
63#ifdef CONFIG_KALLSYMS
69448c2a 64 printk("[<%08lx>] (%pS) from [<%08lx>] (%pS)\n", where, (void *)where, from, (void *)from);
1da177e4
LT
65#else
66 printk("Function entered at [<%08lx>] from [<%08lx>]\n", where, from);
67#endif
7ab3f8d5
RK
68
69 if (in_exception_text(where))
e40c2ec6 70 dump_mem("", "Exception stack", frame + 4, frame + 4 + sizeof(struct pt_regs));
1da177e4
LT
71}
72
bff595c1 73#ifndef CONFIG_ARM_UNWIND
1da177e4
LT
74/*
75 * Stack pointers should always be within the kernels view of
76 * physical memory. If it is not there, then we can't dump
77 * out any information relating to the stack.
78 */
79static int verify_stack(unsigned long sp)
80{
09d9bae0
RK
81 if (sp < PAGE_OFFSET ||
82 (sp > (unsigned long)high_memory && high_memory != NULL))
1da177e4
LT
83 return -EFAULT;
84
85 return 0;
86}
bff595c1 87#endif
1da177e4
LT
88
89/*
90 * Dump out the contents of some memory nicely...
91 */
e40c2ec6
RK
92static void dump_mem(const char *lvl, const char *str, unsigned long bottom,
93 unsigned long top)
1da177e4 94{
d191fe09 95 unsigned long first;
1da177e4
LT
96 mm_segment_t fs;
97 int i;
98
99 /*
100 * We need to switch to kernel mode so that we can use __get_user
101 * to safely read from kernel space. Note that we now dump the
102 * code first, just in case the backtrace kills us.
103 */
104 fs = get_fs();
105 set_fs(KERNEL_DS);
106
e40c2ec6 107 printk("%s%s(0x%08lx to 0x%08lx)\n", lvl, str, bottom, top);
1da177e4 108
d191fe09
RK
109 for (first = bottom & ~31; first < top; first += 32) {
110 unsigned long p;
111 char str[sizeof(" 12345678") * 8 + 1];
1da177e4 112
d191fe09
RK
113 memset(str, ' ', sizeof(str));
114 str[sizeof(str) - 1] = '\0';
1da177e4 115
d191fe09
RK
116 for (p = first, i = 0; i < 8 && p < top; i++, p += 4) {
117 if (p >= bottom && p < top) {
118 unsigned long val;
119 if (__get_user(val, (unsigned long *)p) == 0)
120 sprintf(str + i * 9, " %08lx", val);
121 else
122 sprintf(str + i * 9, " ????????");
1da177e4
LT
123 }
124 }
e40c2ec6 125 printk("%s%04lx:%s\n", lvl, first & 0xffff, str);
1da177e4
LT
126 }
127
128 set_fs(fs);
129}
130
e40c2ec6 131static void dump_instr(const char *lvl, struct pt_regs *regs)
1da177e4
LT
132{
133 unsigned long addr = instruction_pointer(regs);
134 const int thumb = thumb_mode(regs);
135 const int width = thumb ? 4 : 8;
136 mm_segment_t fs;
d191fe09 137 char str[sizeof("00000000 ") * 5 + 2 + 1], *p = str;
1da177e4
LT
138 int i;
139
140 /*
141 * We need to switch to kernel mode so that we can use __get_user
142 * to safely read from kernel space. Note that we now dump the
143 * code first, just in case the backtrace kills us.
144 */
145 fs = get_fs();
146 set_fs(KERNEL_DS);
147
a9011580 148 for (i = -4; i < 1 + !!thumb; i++) {
1da177e4
LT
149 unsigned int val, bad;
150
151 if (thumb)
152 bad = __get_user(val, &((u16 *)addr)[i]);
153 else
154 bad = __get_user(val, &((u32 *)addr)[i]);
155
156 if (!bad)
d191fe09
RK
157 p += sprintf(p, i == 0 ? "(%0*x) " : "%0*x ",
158 width, val);
1da177e4 159 else {
d191fe09 160 p += sprintf(p, "bad PC value");
1da177e4
LT
161 break;
162 }
163 }
e40c2ec6 164 printk("%sCode: %s\n", lvl, str);
1da177e4
LT
165
166 set_fs(fs);
167}
168
bff595c1
CM
169#ifdef CONFIG_ARM_UNWIND
170static inline void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
171{
172 unwind_backtrace(regs, tsk);
173}
174#else
1da177e4
LT
175static void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk)
176{
67a94c23 177 unsigned int fp, mode;
1da177e4
LT
178 int ok = 1;
179
180 printk("Backtrace: ");
67a94c23
CM
181
182 if (!tsk)
183 tsk = current;
184
185 if (regs) {
186 fp = regs->ARM_fp;
187 mode = processor_mode(regs);
188 } else if (tsk != current) {
189 fp = thread_saved_fp(tsk);
190 mode = 0x10;
191 } else {
192 asm("mov %0, fp" : "=r" (fp) : : "cc");
193 mode = 0x10;
194 }
195
1da177e4
LT
196 if (!fp) {
197 printk("no frame pointer");
198 ok = 0;
199 } else if (verify_stack(fp)) {
200 printk("invalid frame pointer 0x%08x", fp);
201 ok = 0;
55205823 202 } else if (fp < (unsigned long)end_of_stack(tsk))
1da177e4
LT
203 printk("frame pointer underflow");
204 printk("\n");
205
206 if (ok)
67a94c23 207 c_backtrace(fp, mode);
1da177e4 208}
bff595c1 209#endif
1da177e4 210
6fa3eb70
S
211void dump_stack(void)
212{
213 dump_backtrace(NULL, NULL);
214}
215
216EXPORT_SYMBOL(dump_stack);
217
1da177e4
LT
218void show_stack(struct task_struct *tsk, unsigned long *sp)
219{
67a94c23 220 dump_backtrace(NULL, tsk);
1da177e4
LT
221 barrier();
222}
223
d9202429
RK
224#ifdef CONFIG_PREEMPT
225#define S_PREEMPT " PREEMPT"
226#else
227#define S_PREEMPT ""
228#endif
229#ifdef CONFIG_SMP
230#define S_SMP " SMP"
231#else
232#define S_SMP ""
233#endif
8211ca65
RK
234#ifdef CONFIG_THUMB2_KERNEL
235#define S_ISA " THUMB2"
236#else
237#define S_ISA " ARM"
238#endif
d9202429 239
02df19b4 240static int __die(const char *str, int err, struct pt_regs *regs)
1da177e4 241{
02df19b4 242 struct task_struct *tsk = current;
6fa3eb70 243 unsigned long sp, stack;
1da177e4 244 static int die_counter;
a9221de6 245 int ret;
1da177e4 246
8211ca65
RK
247 printk(KERN_EMERG "Internal error: %s: %x [#%d]" S_PREEMPT S_SMP
248 S_ISA "\n", str, err, ++die_counter);
a9221de6
RK
249
250 /* trap and error numbers are mostly meaningless on ARM */
251 ret = notify_die(DIE_OOPS, str, regs, err, tsk->thread.trap_no, SIGSEGV);
252 if (ret == NOTIFY_STOP)
6fa3eb70 253 return ret;
a9221de6 254
1da177e4 255 print_modules();
652a12ef 256 __show_regs(regs);
e40c2ec6 257 printk(KERN_EMERG "Process %.*s (pid: %d, stack limit = 0x%p)\n",
02df19b4 258 TASK_COMM_LEN, tsk->comm, task_pid_nr(tsk), end_of_stack(tsk));
1da177e4
LT
259
260 if (!user_mode(regs) || in_interrupt()) {
6fa3eb70
S
261 sp = regs->ARM_sp;
262 stack = (unsigned long)task_stack_page(tsk);
263 dump_mem(KERN_EMERG, "Stack: ", sp, ALIGN(sp, THREAD_SIZE));
264 if (sp < stack || (sp - stack) > THREAD_SIZE) {
265 printk(KERN_EMERG "Invalid sp[%lx] or stack address[%lx]\n", sp, stack);
266 dump_mem(KERN_EMERG, "Stack(backup) ", stack, THREAD_SIZE + stack);
267 }
1da177e4 268 dump_backtrace(regs, tsk);
e40c2ec6 269 dump_instr(KERN_EMERG, regs);
1da177e4 270 }
a9221de6 271
02df19b4 272 return 0;
d362979a 273}
1da177e4 274
02df19b4
RV
275static arch_spinlock_t die_lock = __ARCH_SPIN_LOCK_UNLOCKED;
276static int die_owner = -1;
277static unsigned int die_nest_count;
d362979a 278
02df19b4 279static unsigned long oops_begin(void)
d362979a 280{
02df19b4
RV
281 int cpu;
282 unsigned long flags;
d362979a 283
d9202429
RK
284 oops_enter();
285
02df19b4
RV
286 /* racy, but better than risking deadlock. */
287 raw_local_irq_save(flags);
288 cpu = smp_processor_id();
289 if (!arch_spin_trylock(&die_lock)) {
290 if (cpu == die_owner)
291 /* nested oops. should stop eventually */;
292 else
293 arch_spin_lock(&die_lock);
294 }
295 die_nest_count++;
296 die_owner = cpu;
03a6e5bd 297 console_verbose();
d362979a 298 bust_spinlocks(1);
02df19b4
RV
299 return flags;
300}
a9221de6 301
02df19b4
RV
302static void oops_end(unsigned long flags, struct pt_regs *regs, int signr)
303{
304 if (regs && kexec_should_crash(current))
a9221de6
RK
305 crash_kexec(regs);
306
1da177e4 307 bust_spinlocks(0);
02df19b4 308 die_owner = -1;
373d4d09 309 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
02df19b4
RV
310 die_nest_count--;
311 if (!die_nest_count)
312 /* Nest count reaches zero, release the lock. */
313 arch_spin_unlock(&die_lock);
6fa3eb70
S
314 /* not enable irq incase softirq many turn off msdc clock */
315 //raw_local_irq_restore(flags);
03a6e5bd 316 oops_exit();
31867499 317
d9202429
RK
318 if (in_interrupt())
319 panic("Fatal exception in interrupt");
cea6a4ba 320 if (panic_on_oops)
012c437d 321 panic("Fatal exception");
02df19b4
RV
322 if (signr)
323 do_exit(signr);
324}
325
326/*
327 * This function is protected against re-entrancy.
328 */
329void die(const char *str, struct pt_regs *regs, int err)
330{
331 enum bug_trap_type bug_type = BUG_TRAP_TYPE_NONE;
332 unsigned long flags = oops_begin();
333 int sig = SIGSEGV;
334
335 if (!user_mode(regs))
336 bug_type = report_bug(regs->ARM_pc, regs);
337 if (bug_type != BUG_TRAP_TYPE_NONE)
338 str = "Oops - BUG";
339
340 if (__die(str, err, regs))
341 sig = 0;
342
343 oops_end(flags, regs, sig);
1da177e4
LT
344}
345
1eeb66a1
CH
346void arm_notify_die(const char *str, struct pt_regs *regs,
347 struct siginfo *info, unsigned long err, unsigned long trap)
1da177e4
LT
348{
349 if (user_mode(regs)) {
350 current->thread.error_code = err;
351 current->thread.trap_no = trap;
352
353 force_sig_info(info->si_signo, info, current);
354 } else {
355 die(str, regs, err);
356 }
357}
358
87e040b6
SG
359#ifdef CONFIG_GENERIC_BUG
360
361int is_valid_bugaddr(unsigned long pc)
362{
363#ifdef CONFIG_THUMB2_KERNEL
364 unsigned short bkpt;
365#else
366 unsigned long bkpt;
367#endif
368
369 if (probe_kernel_address((unsigned *)pc, bkpt))
370 return 0;
371
372 return bkpt == BUG_INSTR_VALUE;
373}
374
375#endif
376
1da177e4 377static LIST_HEAD(undef_hook);
bd31b859 378static DEFINE_RAW_SPINLOCK(undef_lock);
1da177e4
LT
379
380void register_undef_hook(struct undef_hook *hook)
381{
109d89ca
RK
382 unsigned long flags;
383
bd31b859 384 raw_spin_lock_irqsave(&undef_lock, flags);
1da177e4 385 list_add(&hook->node, &undef_hook);
bd31b859 386 raw_spin_unlock_irqrestore(&undef_lock, flags);
1da177e4
LT
387}
388
389void unregister_undef_hook(struct undef_hook *hook)
390{
109d89ca
RK
391 unsigned long flags;
392
bd31b859 393 raw_spin_lock_irqsave(&undef_lock, flags);
1da177e4 394 list_del(&hook->node);
bd31b859 395 raw_spin_unlock_irqrestore(&undef_lock, flags);
1da177e4
LT
396}
397
b03a5b75
RK
398static int call_undef_hook(struct pt_regs *regs, unsigned int instr)
399{
400 struct undef_hook *hook;
401 unsigned long flags;
402 int (*fn)(struct pt_regs *regs, unsigned int instr) = NULL;
403
bd31b859 404 raw_spin_lock_irqsave(&undef_lock, flags);
b03a5b75
RK
405 list_for_each_entry(hook, &undef_hook, node)
406 if ((instr & hook->instr_mask) == hook->instr_val &&
407 (regs->ARM_cpsr & hook->cpsr_mask) == hook->cpsr_val)
408 fn = hook->fn;
bd31b859 409 raw_spin_unlock_irqrestore(&undef_lock, flags);
b03a5b75
RK
410
411 return fn ? fn(regs, instr) : 1;
412}
413
6fa3eb70
S
414volatile static void __user *prev_undefinstr_pc=0;
415volatile static int prev_undefinstr_counter=0;
416volatile static unsigned long prev_undefinstr_curr=0;
417
7ab3f8d5 418asmlinkage void __exception do_undefinstr(struct pt_regs *regs)
1da177e4 419{
6fa3eb70
S
420 struct thread_info *thread = current_thread_info();
421 int ret;
1da177e4 422 unsigned int instr;
1da177e4
LT
423 siginfo_t info;
424 void __user *pc;
425
6fa3eb70
S
426 if (!user_mode(regs)) {
427 thread->cpu_excp++;
428 if (thread->cpu_excp == 1) {
429 thread->regs_on_excp = (void *)regs;
430 aee_excp_regs = (void*)regs;
431 }
432 if (thread->cpu_excp >= 2) {
433 aee_stop_nested_panic(regs);
434 }
435 }
436
1da177e4 437 pc = (void __user *)instruction_pointer(regs);
dfc544c7
DW
438
439 if (processor_mode(regs) == SVC_MODE) {
592201a9
JM
440#ifdef CONFIG_THUMB2_KERNEL
441 if (thumb_mode(regs)) {
442 instr = ((u16 *)pc)[0];
443 if (is_wide_instruction(instr)) {
444 instr <<= 16;
445 instr |= ((u16 *)pc)[1];
446 }
447 } else
448#endif
449 instr = *(u32 *) pc;
dfc544c7 450 } else if (thumb_mode(regs)) {
2b2040af
WD
451 if (get_user(instr, (u16 __user *)pc))
452 goto die_sig;
592201a9
JM
453 if (is_wide_instruction(instr)) {
454 unsigned int instr2;
2b2040af
WD
455 if (get_user(instr2, (u16 __user *)pc+1))
456 goto die_sig;
592201a9
JM
457 instr <<= 16;
458 instr |= instr2;
459 }
2b2040af
WD
460 } else if (get_user(instr, (u32 __user *)pc)) {
461 goto die_sig;
1da177e4
LT
462 }
463
6fa3eb70
S
464 ret = call_undef_hook(regs, instr);
465 if (ret == 0) {
466 if (!user_mode(regs)) {
467 thread->cpu_excp--;
468 }
b03a5b75 469 return;
6fa3eb70 470 }
1da177e4 471
2b2040af 472die_sig:
1da177e4
LT
473#ifdef CONFIG_DEBUG_USER
474 if (user_debug & UDBG_UNDEFINED) {
475 printk(KERN_INFO "%s (%d): undefined instruction: pc=%p\n",
19c5870c 476 current->comm, task_pid_nr(current), pc);
e40c2ec6 477 dump_instr(KERN_INFO, regs);
1da177e4
LT
478 }
479#endif
480
6fa3eb70
S
481 /* Place the SIGILL ICache Invalidate after the Debugger Undefined-Instruction Solution. */
482 if ((processor_mode(regs) == USR_MODE) || (processor_mode(regs) == SVC_MODE)) {
483 /* Only do it for User-Space Application. */
484 printk("USR_MODE/SVC_MODE Undefined Instruction Address curr:%p pc=%p:%p\n",
485 (void *)current, (void *)pc, (void *)prev_undefinstr_pc);
486 if ((prev_undefinstr_pc != pc) || (prev_undefinstr_curr != (unsigned long)current)) {
487 /* If the current process or program counter is changed......renew the counter. */
488 printk("First Time Recovery curr:%p pc=%p:%p\n",
489 (void *)current, (void *)pc, (void *)prev_undefinstr_pc);
490 prev_undefinstr_pc = pc;
491 prev_undefinstr_curr = (unsigned long)current;
492 prev_undefinstr_counter = 0;
493 __cpuc_flush_icache_all();
494 flush_cache_all();
495 if (!user_mode(regs)) {
496 thread->cpu_excp--;
497 }
498 return;
499 }
500 else if(prev_undefinstr_counter < 1) {
501 printk("2nd Time Recovery curr:%p pc=%p:%p\n",
502 (void *)current, (void *)pc, (void *)prev_undefinstr_pc);
503 prev_undefinstr_counter++;
504 __cpuc_flush_icache_all();
505 flush_cache_all();
506 if (!user_mode(regs)) {
507 thread->cpu_excp--;
508 }
509 return;
510 }
511 prev_undefinstr_counter++;
512 if(prev_undefinstr_counter >= 4) {
513 /* 2=first time SigILL,3=2nd time NE-SigILL,4=3rd time CoreDump-SigILL */
514 prev_undefinstr_pc = 0;
515 prev_undefinstr_curr = 0;
516 prev_undefinstr_counter = 0;
517 }
518 printk("Go to ARM Notify Die curr:%p pc=%p:%p\n",
519 (void *)current, (void *)pc, (void *)prev_undefinstr_pc);
520 }
521
1da177e4
LT
522 info.si_signo = SIGILL;
523 info.si_errno = 0;
524 info.si_code = ILL_ILLOPC;
525 info.si_addr = pc;
526
1eeb66a1 527 arm_notify_die("Oops - undefined instruction", regs, &info, 0, 6);
6fa3eb70 528 }
1da177e4
LT
529
530asmlinkage void do_unexp_fiq (struct pt_regs *regs)
531{
1da177e4
LT
532 printk("Hmm. Unexpected FIQ received, but trying to continue\n");
533 printk("You may have a hardware problem...\n");
1da177e4
LT
534}
535
536/*
537 * bad_mode handles the impossible case in the vectors. If you see one of
538 * these, then it's extremely serious, and could mean you have buggy hardware.
539 * It never returns, and never tries to sync. We hope that we can at least
540 * dump out some state information...
541 */
ae0a846e 542asmlinkage void bad_mode(struct pt_regs *regs, int reason)
1da177e4
LT
543{
544 console_verbose();
545
ae0a846e 546 printk(KERN_CRIT "Bad mode in %s handler detected\n", handler[reason]);
1da177e4
LT
547
548 die("Oops - bad mode", regs, 0);
549 local_irq_disable();
550 panic("bad mode");
551}
552
553static int bad_syscall(int n, struct pt_regs *regs)
554{
555 struct thread_info *thread = current_thread_info();
556 siginfo_t info;
557
88b9ef45 558 if ((current->personality & PER_MASK) != PER_LINUX &&
a999cb04 559 thread->exec_domain->handler) {
1da177e4
LT
560 thread->exec_domain->handler(n, regs);
561 return regs->ARM_r0;
562 }
563
564#ifdef CONFIG_DEBUG_USER
565 if (user_debug & UDBG_SYSCALL) {
566 printk(KERN_ERR "[%d] %s: obsolete system call %08x.\n",
19c5870c 567 task_pid_nr(current), current->comm, n);
e40c2ec6 568 dump_instr(KERN_ERR, regs);
1da177e4
LT
569 }
570#endif
571
572 info.si_signo = SIGILL;
573 info.si_errno = 0;
574 info.si_code = ILL_ILLTRP;
575 info.si_addr = (void __user *)instruction_pointer(regs) -
576 (thumb_mode(regs) ? 2 : 4);
577
1eeb66a1 578 arm_notify_die("Oops - bad syscall", regs, &info, n, 0);
1da177e4
LT
579
580 return regs->ARM_r0;
581}
582
c5102f59 583static inline int
1da177e4
LT
584do_cache_op(unsigned long start, unsigned long end, int flags)
585{
aa45ee8f 586 struct mm_struct *mm = current->active_mm;
1da177e4
LT
587 struct vm_area_struct *vma;
588
589 if (end < start || flags)
c5102f59 590 return -EINVAL;
1da177e4 591
aa45ee8f
RK
592 down_read(&mm->mmap_sem);
593 vma = find_vma(mm, start);
1da177e4
LT
594 if (vma && vma->vm_start < end) {
595 if (start < vma->vm_start)
596 start = vma->vm_start;
597 if (end > vma->vm_end)
598 end = vma->vm_end;
599
435a7ef5 600 up_read(&mm->mmap_sem);
c5102f59 601 return flush_cache_user_range(start, end);
1da177e4 602 }
aa45ee8f 603 up_read(&mm->mmap_sem);
c5102f59 604 return -EINVAL;
1da177e4
LT
605}
606
607/*
608 * Handle all unrecognised system calls.
609 * 0x9f0000 - 0x9fffff are some more esoteric system calls
610 */
611#define NR(x) ((__ARM_NR_##x) - __ARM_NR_BASE)
612asmlinkage int arm_syscall(int no, struct pt_regs *regs)
613{
614 struct thread_info *thread = current_thread_info();
615 siginfo_t info;
616
3f2829a3 617 if ((no >> 16) != (__ARM_NR_BASE>> 16))
1da177e4
LT
618 return bad_syscall(no, regs);
619
620 switch (no & 0xffff) {
621 case 0: /* branch through 0 */
622 info.si_signo = SIGSEGV;
623 info.si_errno = 0;
624 info.si_code = SEGV_MAPERR;
625 info.si_addr = NULL;
626
1eeb66a1 627 arm_notify_die("branch through zero", regs, &info, 0, 0);
1da177e4
LT
628 return 0;
629
630 case NR(breakpoint): /* SWI BREAK_POINT */
631 regs->ARM_pc -= thumb_mode(regs) ? 2 : 4;
632 ptrace_break(current, regs);
633 return regs->ARM_r0;
634
635 /*
636 * Flush a region from virtual address 'r0' to virtual address 'r1'
637 * _exclusive_. There is no alignment requirement on either address;
638 * user space does not need to know the hardware cache layout.
639 *
640 * r2 contains flags. It should ALWAYS be passed as ZERO until it
641 * is defined to be something else. For now we ignore it, but may
642 * the fires of hell burn in your belly if you break this rule. ;)
643 *
644 * (at a later date, we may want to allow this call to not flush
645 * various aspects of the cache. Passing '0' will guarantee that
646 * everything necessary gets flushed to maintain consistency in
647 * the specified region).
648 */
649 case NR(cacheflush):
c5102f59 650 return do_cache_op(regs->ARM_r0, regs->ARM_r1, regs->ARM_r2);
1da177e4
LT
651
652 case NR(usr26):
653 if (!(elf_hwcap & HWCAP_26BIT))
654 break;
655 regs->ARM_cpsr &= ~MODE32_BIT;
656 return regs->ARM_r0;
657
658 case NR(usr32):
659 if (!(elf_hwcap & HWCAP_26BIT))
660 break;
661 regs->ARM_cpsr |= MODE32_BIT;
662 return regs->ARM_r0;
663
664 case NR(set_tls):
4b9e9796 665 thread->tp_value[0] = regs->ARM_r0;
f159f4ed
TL
666 if (tls_emu)
667 return 0;
668 if (has_tls_reg) {
669 asm ("mcr p15, 0, %0, c13, c0, 3"
670 : : "r" (regs->ARM_r0));
671 } else {
672 /*
673 * User space must never try to access this directly.
674 * Expect your app to break eventually if you do so.
675 * The user helper at 0xffff0fe0 must be used instead.
676 * (see entry-armv.S for details)
677 */
678 *((unsigned int *)0xffff0ff0) = regs->ARM_r0;
679 }
1da177e4
LT
680 return 0;
681
dcef1f63
NP
682#ifdef CONFIG_NEEDS_SYSCALL_FOR_CMPXCHG
683 /*
684 * Atomically store r1 in *r2 if *r2 is equal to r0 for user space.
685 * Return zero in r0 if *MEM was changed or non-zero if no exchange
686 * happened. Also set the user C flag accordingly.
687 * If access permissions have to be fixed up then non-zero is
688 * returned and the operation has to be re-attempted.
689 *
690 * *NOTE*: This is a ghost syscall private to the kernel. Only the
691 * __kuser_cmpxchg code in entry-armv.S should be aware of its
692 * existence. Don't ever use this from user code.
693 */
cc20d429 694 case NR(cmpxchg):
b49c0f24 695 for (;;) {
dcef1f63
NP
696 extern void do_DataAbort(unsigned long addr, unsigned int fsr,
697 struct pt_regs *regs);
698 unsigned long val;
699 unsigned long addr = regs->ARM_r2;
700 struct mm_struct *mm = current->mm;
701 pgd_t *pgd; pmd_t *pmd; pte_t *pte;
69b04754 702 spinlock_t *ptl;
dcef1f63
NP
703
704 regs->ARM_cpsr &= ~PSR_C_BIT;
69b04754 705 down_read(&mm->mmap_sem);
dcef1f63
NP
706 pgd = pgd_offset(mm, addr);
707 if (!pgd_present(*pgd))
708 goto bad_access;
709 pmd = pmd_offset(pgd, addr);
710 if (!pmd_present(*pmd))
711 goto bad_access;
69b04754 712 pte = pte_offset_map_lock(mm, pmd, addr, &ptl);
373ce302 713 if (!pte_present(*pte) || !pte_write(*pte) || !pte_dirty(*pte)) {
69b04754 714 pte_unmap_unlock(pte, ptl);
dcef1f63 715 goto bad_access;
69b04754 716 }
dcef1f63
NP
717 val = *(unsigned long *)addr;
718 val -= regs->ARM_r0;
719 if (val == 0) {
720 *(unsigned long *)addr = regs->ARM_r1;
721 regs->ARM_cpsr |= PSR_C_BIT;
722 }
69b04754
HD
723 pte_unmap_unlock(pte, ptl);
724 up_read(&mm->mmap_sem);
dcef1f63
NP
725 return val;
726
727 bad_access:
69b04754 728 up_read(&mm->mmap_sem);
74f88494 729 /* simulate a write access fault */
dcef1f63 730 do_DataAbort(addr, 15 + (1 << 11), regs);
dcef1f63
NP
731 }
732#endif
733
1da177e4
LT
734 default:
735 /* Calls 9f00xx..9f07ff are defined to return -ENOSYS
736 if not implemented, rather than raising SIGILL. This
737 way the calling program can gracefully determine whether
738 a feature is supported. */
bfd2e29f 739 if ((no & 0xffff) <= 0x7ff)
1da177e4
LT
740 return -ENOSYS;
741 break;
742 }
743#ifdef CONFIG_DEBUG_USER
744 /*
745 * experience shows that these seem to indicate that
746 * something catastrophic has happened
747 */
748 if (user_debug & UDBG_SYSCALL) {
749 printk("[%d] %s: arm syscall %d\n",
19c5870c 750 task_pid_nr(current), current->comm, no);
e40c2ec6 751 dump_instr("", regs);
1da177e4 752 if (user_mode(regs)) {
652a12ef 753 __show_regs(regs);
1da177e4
LT
754 c_backtrace(regs->ARM_fp, processor_mode(regs));
755 }
756 }
757#endif
758 info.si_signo = SIGILL;
759 info.si_errno = 0;
760 info.si_code = ILL_ILLTRP;
761 info.si_addr = (void __user *)instruction_pointer(regs) -
762 (thumb_mode(regs) ? 2 : 4);
763
1eeb66a1 764 arm_notify_die("Oops - bad syscall(2)", regs, &info, no, 0);
1da177e4
LT
765 return 0;
766}
767
4b0e07a5 768#ifdef CONFIG_TLS_REG_EMUL
2d2669b6
NP
769
770/*
771 * We might be running on an ARMv6+ processor which should have the TLS
4b0e07a5
NP
772 * register but for some reason we can't use it, or maybe an SMP system
773 * using a pre-ARMv6 processor (there are apparently a few prototypes like
774 * that in existence) and therefore access to that register must be
775 * emulated.
2d2669b6
NP
776 */
777
778static int get_tp_trap(struct pt_regs *regs, unsigned int instr)
779{
780 int reg = (instr >> 12) & 15;
781 if (reg == 15)
782 return 1;
4b9e9796 783 regs->uregs[reg] = current_thread_info()->tp_value[0];
2d2669b6
NP
784 regs->ARM_pc += 4;
785 return 0;
786}
787
788static struct undef_hook arm_mrc_hook = {
789 .instr_mask = 0x0fff0fff,
790 .instr_val = 0x0e1d0f70,
791 .cpsr_mask = PSR_T_BIT,
792 .cpsr_val = 0,
793 .fn = get_tp_trap,
794};
795
796static int __init arm_mrc_hook_init(void)
797{
798 register_undef_hook(&arm_mrc_hook);
799 return 0;
800}
801
802late_initcall(arm_mrc_hook_init);
803
804#endif
805
1da177e4
LT
806void __bad_xchg(volatile void *ptr, int size)
807{
808 printk("xchg: bad data size: pc 0x%p, ptr 0x%p, size %d\n",
809 __builtin_return_address(0), ptr, size);
810 BUG();
811}
812EXPORT_SYMBOL(__bad_xchg);
813
814/*
815 * A data abort trap was taken, but we did not handle the instruction.
816 * Try to abort the user program, or panic if it was the kernel.
817 */
818asmlinkage void
819baddataabort(int code, unsigned long instr, struct pt_regs *regs)
820{
821 unsigned long addr = instruction_pointer(regs);
822 siginfo_t info;
823
824#ifdef CONFIG_DEBUG_USER
825 if (user_debug & UDBG_BADABORT) {
826 printk(KERN_ERR "[%d] %s: bad data abort: code %d instr 0x%08lx\n",
19c5870c 827 task_pid_nr(current), current->comm, code, instr);
e40c2ec6 828 dump_instr(KERN_ERR, regs);
1da177e4
LT
829 show_pte(current->mm, addr);
830 }
831#endif
832
833 info.si_signo = SIGILL;
834 info.si_errno = 0;
835 info.si_code = ILL_ILLOPC;
836 info.si_addr = (void __user *)addr;
837
1eeb66a1 838 arm_notify_die("unknown data abort code", regs, &info, instr, 0);
1da177e4
LT
839}
840
1da177e4
LT
841void __readwrite_bug(const char *fn)
842{
843 printk("%s called, but not implemented\n", fn);
844 BUG();
845}
846EXPORT_SYMBOL(__readwrite_bug);
847
69529c0e 848void __pte_error(const char *file, int line, pte_t pte)
1da177e4 849{
29a38193 850 printk("%s:%d: bad pte %08llx.\n", file, line, (long long)pte_val(pte));
1da177e4
LT
851}
852
69529c0e 853void __pmd_error(const char *file, int line, pmd_t pmd)
1da177e4 854{
29a38193 855 printk("%s:%d: bad pmd %08llx.\n", file, line, (long long)pmd_val(pmd));
1da177e4
LT
856}
857
69529c0e 858void __pgd_error(const char *file, int line, pgd_t pgd)
1da177e4 859{
29a38193 860 printk("%s:%d: bad pgd %08llx.\n", file, line, (long long)pgd_val(pgd));
1da177e4
LT
861}
862
863asmlinkage void __div0(void)
864{
865 printk("Division by zero in kernel.\n");
866 dump_stack();
867}
868EXPORT_SYMBOL(__div0);
869
870void abort(void)
871{
872 BUG();
873
874 /* if that doesn't kill us, halt */
875 panic("Oops failed to kill thread");
876}
877EXPORT_SYMBOL(abort);
878
879void __init trap_init(void)
5cbad0eb
JW
880{
881 return;
882}
883
7c5db817
RK
884#ifdef CONFIG_KUSER_HELPERS
885static void __init kuser_init(void *vectors)
f159f4ed 886{
7c5db817
RK
887 extern char __kuser_helper_start[], __kuser_helper_end[];
888 int kuser_sz = __kuser_helper_end - __kuser_helper_start;
889
890 memcpy(vectors + 0x1000 - kuser_sz, __kuser_helper_start, kuser_sz);
891
f159f4ed
TL
892 /*
893 * vectors + 0xfe0 = __kuser_get_tls
894 * vectors + 0xfe8 = hardware TLS instruction at 0xffff0fe8
895 */
896 if (tls_emu || has_tls_reg)
7c5db817
RK
897 memcpy(vectors + 0xfe0, vectors + 0xfe8, 4);
898}
899#else
900static void __init kuser_init(void *vectors)
901{
f159f4ed 902}
7c5db817 903#endif
f159f4ed 904
94e5a85b 905void __init early_trap_init(void *vectors_base)
1da177e4 906{
94e5a85b 907 unsigned long vectors = (unsigned long)vectors_base;
7933523d
RK
908 extern char __stubs_start[], __stubs_end[];
909 extern char __vectors_start[], __vectors_end[];
bde516f7 910 unsigned i;
1da177e4 911
94e5a85b
RK
912 vectors_page = vectors_base;
913
bde516f7
RK
914 /*
915 * Poison the vectors page with an undefined instruction. This
916 * instruction is chosen to be undefined for both ARM and Thumb
917 * ISAs. The Thumb version is an undefined instruction with a
918 * branch back to the undefined instruction.
919 */
920 for (i = 0; i < PAGE_SIZE / sizeof(u32); i++)
921 ((u32 *)vectors_base)[i] = 0xe7fddef1;
922
7933523d 923 /*
2d2669b6
NP
924 * Copy the vectors, stubs and kuser helpers (in entry-armv.S)
925 * into the vector page, mapped at 0xffff0000, and ensure these
926 * are visible to the instruction stream.
7933523d 927 */
c760fc19 928 memcpy((void *)vectors, __vectors_start, __vectors_end - __vectors_start);
b85796fa 929 memcpy((void *)vectors + 0x1000, __stubs_start, __stubs_end - __stubs_start);
e00d349e 930
7c5db817 931 kuser_init(vectors_base);
f159f4ed 932
b85796fa 933 flush_icache_range(vectors, vectors + PAGE_SIZE * 2);
1da177e4
LT
934 modify_domain(DOMAIN_USER, DOMAIN_CLIENT);
935}