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