diff options
| -rw-r--r-- | arch/avr32/Kconfig | 5 | ||||
| -rw-r--r-- | arch/avr32/kernel/module.c | 11 | ||||
| -rw-r--r-- | arch/avr32/kernel/process.c | 188 | ||||
| -rw-r--r-- | arch/avr32/kernel/traps.c | 421 | ||||
| -rw-r--r-- | arch/avr32/kernel/vmlinux.lds.c | 9 | ||||
| -rw-r--r-- | arch/avr32/mm/fault.c | 116 | ||||
| -rw-r--r-- | include/asm-avr32/bug.h | 50 | ||||
| -rw-r--r-- | include/asm-avr32/processor.h | 6 | ||||
| -rw-r--r-- | include/asm-avr32/system.h | 13 |
9 files changed, 402 insertions, 417 deletions
diff --git a/arch/avr32/Kconfig b/arch/avr32/Kconfig index 257b83648cb7..7a1eb445c17f 100644 --- a/arch/avr32/Kconfig +++ b/arch/avr32/Kconfig | |||
| @@ -68,6 +68,11 @@ config GENERIC_CALIBRATE_DELAY | |||
| 68 | bool | 68 | bool |
| 69 | default y | 69 | default y |
| 70 | 70 | ||
| 71 | config GENERIC_BUG | ||
| 72 | bool | ||
| 73 | default y | ||
| 74 | depends on BUG | ||
| 75 | |||
| 71 | source "init/Kconfig" | 76 | source "init/Kconfig" |
| 72 | 77 | ||
| 73 | menu "System Type and features" | 78 | menu "System Type and features" |
diff --git a/arch/avr32/kernel/module.c b/arch/avr32/kernel/module.c index b599eae64576..1167fe9cf6c4 100644 --- a/arch/avr32/kernel/module.c +++ b/arch/avr32/kernel/module.c | |||
| @@ -12,10 +12,11 @@ | |||
| 12 | * published by the Free Software Foundation. | 12 | * published by the Free Software Foundation. |
| 13 | */ | 13 | */ |
| 14 | 14 | ||
| 15 | #include <linux/moduleloader.h> | 15 | #include <linux/bug.h> |
| 16 | #include <linux/module.h> | ||
| 17 | #include <linux/kernel.h> | ||
| 18 | #include <linux/elf.h> | 16 | #include <linux/elf.h> |
| 17 | #include <linux/kernel.h> | ||
| 18 | #include <linux/module.h> | ||
| 19 | #include <linux/moduleloader.h> | ||
| 19 | #include <linux/vmalloc.h> | 20 | #include <linux/vmalloc.h> |
| 20 | 21 | ||
| 21 | void *module_alloc(unsigned long size) | 22 | void *module_alloc(unsigned long size) |
| @@ -315,10 +316,10 @@ int module_finalize(const Elf_Ehdr *hdr, const Elf_Shdr *sechdrs, | |||
| 315 | vfree(module->arch.syminfo); | 316 | vfree(module->arch.syminfo); |
| 316 | module->arch.syminfo = NULL; | 317 | module->arch.syminfo = NULL; |
| 317 | 318 | ||
| 318 | return 0; | 319 | return module_bug_finalize(hdr, sechdrs, module); |
| 319 | } | 320 | } |
| 320 | 321 | ||
| 321 | void module_arch_cleanup(struct module *module) | 322 | void module_arch_cleanup(struct module *module) |
| 322 | { | 323 | { |
| 323 | 324 | module_bug_cleanup(module); | |
| 324 | } | 325 | } |
diff --git a/arch/avr32/kernel/process.c b/arch/avr32/kernel/process.c index 4f8d2d474740..4e4181ed1c6d 100644 --- a/arch/avr32/kernel/process.c +++ b/arch/avr32/kernel/process.c | |||
| @@ -11,6 +11,7 @@ | |||
| 11 | #include <linux/fs.h> | 11 | #include <linux/fs.h> |
| 12 | #include <linux/ptrace.h> | 12 | #include <linux/ptrace.h> |
| 13 | #include <linux/reboot.h> | 13 | #include <linux/reboot.h> |
| 14 | #include <linux/uaccess.h> | ||
| 14 | #include <linux/unistd.h> | 15 | #include <linux/unistd.h> |
| 15 | 16 | ||
| 16 | #include <asm/sysreg.h> | 17 | #include <asm/sysreg.h> |
| @@ -115,39 +116,178 @@ void release_thread(struct task_struct *dead_task) | |||
| 115 | /* do nothing */ | 116 | /* do nothing */ |
| 116 | } | 117 | } |
| 117 | 118 | ||
| 119 | static void dump_mem(const char *str, const char *log_lvl, | ||
| 120 | unsigned long bottom, unsigned long top) | ||
| 121 | { | ||
| 122 | unsigned long p; | ||
| 123 | int i; | ||
| 124 | |||
| 125 | printk("%s%s(0x%08lx to 0x%08lx)\n", log_lvl, str, bottom, top); | ||
| 126 | |||
| 127 | for (p = bottom & ~31; p < top; ) { | ||
| 128 | printk("%s%04lx: ", log_lvl, p & 0xffff); | ||
| 129 | |||
| 130 | for (i = 0; i < 8; i++, p += 4) { | ||
| 131 | unsigned int val; | ||
| 132 | |||
| 133 | if (p < bottom || p >= top) | ||
| 134 | printk(" "); | ||
| 135 | else { | ||
| 136 | if (__get_user(val, (unsigned int __user *)p)) { | ||
| 137 | printk("\n"); | ||
| 138 | goto out; | ||
| 139 | } | ||
| 140 | printk("%08x ", val); | ||
| 141 | } | ||
| 142 | } | ||
| 143 | printk("\n"); | ||
| 144 | } | ||
| 145 | |||
| 146 | out: | ||
| 147 | return; | ||
| 148 | } | ||
| 149 | |||
| 150 | static inline int valid_stack_ptr(struct thread_info *tinfo, unsigned long p) | ||
| 151 | { | ||
| 152 | return (p > (unsigned long)tinfo) | ||
| 153 | && (p < (unsigned long)tinfo + THREAD_SIZE - 3); | ||
| 154 | } | ||
| 155 | |||
| 156 | #ifdef CONFIG_FRAME_POINTER | ||
| 157 | static void show_trace_log_lvl(struct task_struct *tsk, unsigned long *sp, | ||
| 158 | struct pt_regs *regs, const char *log_lvl) | ||
| 159 | { | ||
| 160 | unsigned long lr, fp; | ||
| 161 | struct thread_info *tinfo; | ||
| 162 | |||
| 163 | if (regs) | ||
| 164 | fp = regs->r7; | ||
| 165 | else if (tsk == current) | ||
| 166 | asm("mov %0, r7" : "=r"(fp)); | ||
| 167 | else | ||
| 168 | fp = tsk->thread.cpu_context.r7; | ||
| 169 | |||
| 170 | /* | ||
| 171 | * Walk the stack as long as the frame pointer (a) is within | ||
| 172 | * the kernel stack of the task, and (b) it doesn't move | ||
| 173 | * downwards. | ||
| 174 | */ | ||
| 175 | tinfo = task_thread_info(tsk); | ||
| 176 | printk("%sCall trace:\n", log_lvl); | ||
| 177 | while (valid_stack_ptr(tinfo, fp)) { | ||
| 178 | unsigned long new_fp; | ||
| 179 | |||
| 180 | lr = *(unsigned long *)fp; | ||
| 181 | #ifdef CONFIG_KALLSYMS | ||
| 182 | printk("%s [<%08lx>] ", log_lvl, lr); | ||
| 183 | #else | ||
| 184 | printk(" [<%08lx>] ", lr); | ||
| 185 | #endif | ||
| 186 | print_symbol("%s\n", lr); | ||
| 187 | |||
| 188 | new_fp = *(unsigned long *)(fp + 4); | ||
| 189 | if (new_fp <= fp) | ||
| 190 | break; | ||
| 191 | fp = new_fp; | ||
| 192 | } | ||
| 193 | printk("\n"); | ||
| 194 | } | ||
| 195 | #else | ||
| 196 | static void show_trace_log_lvl(struct task_struct *tsk, unsigned long *sp, | ||
| 197 | struct pt_regs *regs, const char *log_lvl) | ||
| 198 | { | ||
| 199 | unsigned long addr; | ||
| 200 | |||
| 201 | printk("%sCall trace:\n", log_lvl); | ||
| 202 | |||
| 203 | while (!kstack_end(sp)) { | ||
| 204 | addr = *sp++; | ||
| 205 | if (kernel_text_address(addr)) { | ||
| 206 | #ifdef CONFIG_KALLSYMS | ||
| 207 | printk("%s [<%08lx>] ", log_lvl, addr); | ||
| 208 | #else | ||
| 209 | printk(" [<%08lx>] ", addr); | ||
| 210 | #endif | ||
| 211 | print_symbol("%s\n", addr); | ||
| 212 | } | ||
| 213 | } | ||
| 214 | printk("\n"); | ||
| 215 | } | ||
| 216 | #endif | ||
| 217 | |||
| 218 | void show_stack_log_lvl(struct task_struct *tsk, unsigned long sp, | ||
| 219 | struct pt_regs *regs, const char *log_lvl) | ||
| 220 | { | ||
| 221 | struct thread_info *tinfo; | ||
| 222 | |||
| 223 | if (sp == 0) { | ||
| 224 | if (tsk) | ||
| 225 | sp = tsk->thread.cpu_context.ksp; | ||
| 226 | else | ||
| 227 | sp = (unsigned long)&tinfo; | ||
| 228 | } | ||
| 229 | if (!tsk) | ||
| 230 | tsk = current; | ||
| 231 | |||
| 232 | tinfo = task_thread_info(tsk); | ||
| 233 | |||
| 234 | if (valid_stack_ptr(tinfo, sp)) { | ||
| 235 | dump_mem("Stack: ", log_lvl, sp, | ||
| 236 | THREAD_SIZE + (unsigned long)tinfo); | ||
| 237 | show_trace_log_lvl(tsk, (unsigned long *)sp, regs, log_lvl); | ||
| 238 | } | ||
| 239 | } | ||
| 240 | |||
| 241 | void show_stack(struct task_struct *tsk, unsigned long *stack) | ||
| 242 | { | ||
| 243 | show_stack_log_lvl(tsk, (unsigned long)stack, NULL, ""); | ||
| 244 | } | ||
| 245 | |||
| 246 | void dump_stack(void) | ||
| 247 | { | ||
| 248 | unsigned long stack; | ||
| 249 | |||
| 250 | show_trace_log_lvl(current, &stack, NULL, ""); | ||
| 251 | } | ||
| 252 | EXPORT_SYMBOL(dump_stack); | ||
| 253 | |||
| 118 | static const char *cpu_modes[] = { | 254 | static const char *cpu_modes[] = { |
| 119 | "Application", "Supervisor", "Interrupt level 0", "Interrupt level 1", | 255 | "Application", "Supervisor", "Interrupt level 0", "Interrupt level 1", |
| 120 | "Interrupt level 2", "Interrupt level 3", "Exception", "NMI" | 256 | "Interrupt level 2", "Interrupt level 3", "Exception", "NMI" |
| 121 | }; | 257 | }; |
| 122 | 258 | ||
| 123 | void show_regs(struct pt_regs *regs) | 259 | void show_regs_log_lvl(struct pt_regs *regs, const char *log_lvl) |
| 124 | { | 260 | { |
| 125 | unsigned long sp = regs->sp; | 261 | unsigned long sp = regs->sp; |
| 126 | unsigned long lr = regs->lr; | 262 | unsigned long lr = regs->lr; |
| 127 | unsigned long mode = (regs->sr & MODE_MASK) >> MODE_SHIFT; | 263 | unsigned long mode = (regs->sr & MODE_MASK) >> MODE_SHIFT; |
| 128 | 264 | ||
| 129 | if (!user_mode(regs)) | 265 | if (!user_mode(regs)) { |
| 130 | sp = (unsigned long)regs + FRAME_SIZE_FULL; | 266 | sp = (unsigned long)regs + FRAME_SIZE_FULL; |
| 131 | 267 | ||
| 132 | print_symbol("PC is at %s\n", instruction_pointer(regs)); | 268 | printk("%s", log_lvl); |
| 133 | print_symbol("LR is at %s\n", lr); | 269 | print_symbol("PC is at %s\n", instruction_pointer(regs)); |
| 134 | printk("pc : [<%08lx>] lr : [<%08lx>] %s\n" | 270 | printk("%s", log_lvl); |
| 135 | "sp : %08lx r12: %08lx r11: %08lx\n", | 271 | print_symbol("LR is at %s\n", lr); |
| 136 | instruction_pointer(regs), | 272 | } |
| 137 | lr, print_tainted(), sp, regs->r12, regs->r11); | 273 | |
| 138 | printk("r10: %08lx r9 : %08lx r8 : %08lx\n", | 274 | printk("%spc : [<%08lx>] lr : [<%08lx>] %s\n" |
| 139 | regs->r10, regs->r9, regs->r8); | 275 | "%ssp : %08lx r12: %08lx r11: %08lx\n", |
| 140 | printk("r7 : %08lx r6 : %08lx r5 : %08lx r4 : %08lx\n", | 276 | log_lvl, instruction_pointer(regs), lr, print_tainted(), |
| 141 | regs->r7, regs->r6, regs->r5, regs->r4); | 277 | log_lvl, sp, regs->r12, regs->r11); |
| 142 | printk("r3 : %08lx r2 : %08lx r1 : %08lx r0 : %08lx\n", | 278 | printk("%sr10: %08lx r9 : %08lx r8 : %08lx\n", |
| 143 | regs->r3, regs->r2, regs->r1, regs->r0); | 279 | log_lvl, regs->r10, regs->r9, regs->r8); |
| 144 | printk("Flags: %c%c%c%c%c\n", | 280 | printk("%sr7 : %08lx r6 : %08lx r5 : %08lx r4 : %08lx\n", |
| 281 | log_lvl, regs->r7, regs->r6, regs->r5, regs->r4); | ||
| 282 | printk("%sr3 : %08lx r2 : %08lx r1 : %08lx r0 : %08lx\n", | ||
| 283 | log_lvl, regs->r3, regs->r2, regs->r1, regs->r0); | ||
| 284 | printk("%sFlags: %c%c%c%c%c\n", log_lvl, | ||
| 145 | regs->sr & SR_Q ? 'Q' : 'q', | 285 | regs->sr & SR_Q ? 'Q' : 'q', |
| 146 | regs->sr & SR_V ? 'V' : 'v', | 286 | regs->sr & SR_V ? 'V' : 'v', |
| 147 | regs->sr & SR_N ? 'N' : 'n', | 287 | regs->sr & SR_N ? 'N' : 'n', |
| 148 | regs->sr & SR_Z ? 'Z' : 'z', | 288 | regs->sr & SR_Z ? 'Z' : 'z', |
| 149 | regs->sr & SR_C ? 'C' : 'c'); | 289 | regs->sr & SR_C ? 'C' : 'c'); |
| 150 | printk("Mode bits: %c%c%c%c%c%c%c%c%c\n", | 290 | printk("%sMode bits: %c%c%c%c%c%c%c%c%c\n", log_lvl, |
| 151 | regs->sr & SR_H ? 'H' : 'h', | 291 | regs->sr & SR_H ? 'H' : 'h', |
| 152 | regs->sr & SR_R ? 'R' : 'r', | 292 | regs->sr & SR_R ? 'R' : 'r', |
| 153 | regs->sr & SR_J ? 'J' : 'j', | 293 | regs->sr & SR_J ? 'J' : 'j', |
| @@ -157,9 +297,21 @@ void show_regs(struct pt_regs *regs) | |||
| 157 | regs->sr & SR_I1M ? '1' : '.', | 297 | regs->sr & SR_I1M ? '1' : '.', |
| 158 | regs->sr & SR_I0M ? '0' : '.', | 298 | regs->sr & SR_I0M ? '0' : '.', |
| 159 | regs->sr & SR_GM ? 'G' : 'g'); | 299 | regs->sr & SR_GM ? 'G' : 'g'); |
| 160 | printk("CPU Mode: %s\n", cpu_modes[mode]); | 300 | printk("%sCPU Mode: %s\n", log_lvl, cpu_modes[mode]); |
| 301 | printk("%sProcess: %s [%d] (task: %p thread: %p)\n", | ||
| 302 | log_lvl, current->comm, current->pid, current, | ||
| 303 | task_thread_info(current)); | ||
| 304 | } | ||
| 305 | |||
| 306 | void show_regs(struct pt_regs *regs) | ||
| 307 | { | ||
| 308 | unsigned long sp = regs->sp; | ||
| 309 | |||
| 310 | if (!user_mode(regs)) | ||
| 311 | sp = (unsigned long)regs + FRAME_SIZE_FULL; | ||
| 161 | 312 | ||
| 162 | show_trace(NULL, (unsigned long *)sp, regs); | 313 | show_regs_log_lvl(regs, ""); |
| 314 | show_trace_log_lvl(current, (unsigned long *)sp, regs, ""); | ||
| 163 | } | 315 | } |
| 164 | EXPORT_SYMBOL(show_regs); | 316 | EXPORT_SYMBOL(show_regs); |
| 165 | 317 | ||
diff --git a/arch/avr32/kernel/traps.c b/arch/avr32/kernel/traps.c index adc01a12d154..4f0382d8483f 100644 --- a/arch/avr32/kernel/traps.c +++ b/arch/avr32/kernel/traps.c | |||
| @@ -5,158 +5,25 @@ | |||
| 5 | * it under the terms of the GNU General Public License version 2 as | 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. | 6 | * published by the Free Software Foundation. |
| 7 | */ | 7 | */ |
| 8 | #undef DEBUG | 8 | |
| 9 | #include <linux/sched.h> | 9 | #include <linux/bug.h> |
| 10 | #include <linux/init.h> | 10 | #include <linux/init.h> |
| 11 | #include <linux/module.h> | ||
| 12 | #include <linux/kallsyms.h> | 11 | #include <linux/kallsyms.h> |
| 12 | #include <linux/module.h> | ||
| 13 | #include <linux/notifier.h> | 13 | #include <linux/notifier.h> |
| 14 | #include <linux/sched.h> | ||
| 15 | #include <linux/uaccess.h> | ||
| 14 | 16 | ||
| 15 | #include <asm/traps.h> | ||
| 16 | #include <asm/sysreg.h> | ||
| 17 | #include <asm/addrspace.h> | 17 | #include <asm/addrspace.h> |
| 18 | #include <asm/ocd.h> | ||
| 19 | #include <asm/mmu_context.h> | 18 | #include <asm/mmu_context.h> |
| 20 | #include <asm/uaccess.h> | 19 | #include <asm/ocd.h> |
| 21 | 20 | #include <asm/sysreg.h> | |
| 22 | static void dump_mem(const char *str, unsigned long bottom, unsigned long top) | 21 | #include <asm/traps.h> |
| 23 | { | ||
| 24 | unsigned long p; | ||
| 25 | int i; | ||
| 26 | |||
| 27 | printk("%s(0x%08lx to 0x%08lx)\n", str, bottom, top); | ||
| 28 | |||
| 29 | for (p = bottom & ~31; p < top; ) { | ||
| 30 | printk("%04lx: ", p & 0xffff); | ||
| 31 | |||
| 32 | for (i = 0; i < 8; i++, p += 4) { | ||
| 33 | unsigned int val; | ||
| 34 | |||
| 35 | if (p < bottom || p >= top) | ||
| 36 | printk(" "); | ||
| 37 | else { | ||
| 38 | if (__get_user(val, (unsigned int __user *)p)) { | ||
| 39 | printk("\n"); | ||
| 40 | goto out; | ||
| 41 | } | ||
| 42 | printk("%08x ", val); | ||
| 43 | } | ||
| 44 | } | ||
| 45 | printk("\n"); | ||
| 46 | } | ||
| 47 | |||
| 48 | out: | ||
| 49 | return; | ||
| 50 | } | ||
| 51 | |||
| 52 | static inline int valid_stack_ptr(struct thread_info *tinfo, unsigned long p) | ||
| 53 | { | ||
| 54 | return (p > (unsigned long)tinfo) | ||
| 55 | && (p < (unsigned long)tinfo + THREAD_SIZE - 3); | ||
| 56 | } | ||
| 57 | |||
| 58 | #ifdef CONFIG_FRAME_POINTER | ||
| 59 | static inline void __show_trace(struct task_struct *tsk, unsigned long *sp, | ||
| 60 | struct pt_regs *regs) | ||
| 61 | { | ||
| 62 | unsigned long lr, fp; | ||
| 63 | struct thread_info *tinfo; | ||
| 64 | |||
| 65 | tinfo = (struct thread_info *) | ||
| 66 | ((unsigned long)sp & ~(THREAD_SIZE - 1)); | ||
| 67 | |||
| 68 | if (regs) | ||
| 69 | fp = regs->r7; | ||
| 70 | else if (tsk == current) | ||
| 71 | asm("mov %0, r7" : "=r"(fp)); | ||
| 72 | else | ||
| 73 | fp = tsk->thread.cpu_context.r7; | ||
| 74 | |||
| 75 | /* | ||
| 76 | * Walk the stack as long as the frame pointer (a) is within | ||
| 77 | * the kernel stack of the task, and (b) it doesn't move | ||
| 78 | * downwards. | ||
| 79 | */ | ||
| 80 | while (valid_stack_ptr(tinfo, fp)) { | ||
| 81 | unsigned long new_fp; | ||
| 82 | |||
| 83 | lr = *(unsigned long *)fp; | ||
| 84 | printk(" [<%08lx>] ", lr); | ||
| 85 | print_symbol("%s\n", lr); | ||
| 86 | |||
| 87 | new_fp = *(unsigned long *)(fp + 4); | ||
| 88 | if (new_fp <= fp) | ||
| 89 | break; | ||
| 90 | fp = new_fp; | ||
| 91 | } | ||
| 92 | printk("\n"); | ||
| 93 | } | ||
| 94 | #else | ||
| 95 | static inline void __show_trace(struct task_struct *tsk, unsigned long *sp, | ||
| 96 | struct pt_regs *regs) | ||
| 97 | { | ||
| 98 | unsigned long addr; | ||
| 99 | |||
| 100 | while (!kstack_end(sp)) { | ||
| 101 | addr = *sp++; | ||
| 102 | if (kernel_text_address(addr)) { | ||
| 103 | printk(" [<%08lx>] ", addr); | ||
| 104 | print_symbol("%s\n", addr); | ||
| 105 | } | ||
| 106 | } | ||
| 107 | } | ||
| 108 | #endif | ||
| 109 | |||
| 110 | void show_trace(struct task_struct *tsk, unsigned long *sp, | ||
| 111 | struct pt_regs *regs) | ||
| 112 | { | ||
| 113 | if (regs && | ||
| 114 | (((regs->sr & MODE_MASK) == MODE_EXCEPTION) || | ||
| 115 | ((regs->sr & MODE_MASK) == MODE_USER))) | ||
| 116 | return; | ||
| 117 | |||
| 118 | printk ("Call trace:"); | ||
| 119 | #ifdef CONFIG_KALLSYMS | ||
| 120 | printk("\n"); | ||
| 121 | #endif | ||
| 122 | |||
| 123 | __show_trace(tsk, sp, regs); | ||
| 124 | printk("\n"); | ||
| 125 | } | ||
| 126 | |||
| 127 | void show_stack(struct task_struct *tsk, unsigned long *sp) | ||
| 128 | { | ||
| 129 | unsigned long stack; | ||
| 130 | |||
| 131 | if (!tsk) | ||
| 132 | tsk = current; | ||
| 133 | if (sp == 0) { | ||
| 134 | if (tsk == current) { | ||
| 135 | register unsigned long *real_sp __asm__("sp"); | ||
| 136 | sp = real_sp; | ||
| 137 | } else { | ||
| 138 | sp = (unsigned long *)tsk->thread.cpu_context.ksp; | ||
| 139 | } | ||
| 140 | } | ||
| 141 | |||
| 142 | stack = (unsigned long)sp; | ||
| 143 | dump_mem("Stack: ", stack, | ||
| 144 | THREAD_SIZE + (unsigned long)tsk->thread_info); | ||
| 145 | show_trace(tsk, sp, NULL); | ||
| 146 | } | ||
| 147 | |||
| 148 | void dump_stack(void) | ||
| 149 | { | ||
| 150 | show_stack(NULL, NULL); | ||
| 151 | } | ||
| 152 | EXPORT_SYMBOL(dump_stack); | ||
| 153 | 22 | ||
| 154 | ATOMIC_NOTIFIER_HEAD(avr32_die_chain); | 23 | ATOMIC_NOTIFIER_HEAD(avr32_die_chain); |
| 155 | 24 | ||
| 156 | int register_die_notifier(struct notifier_block *nb) | 25 | int register_die_notifier(struct notifier_block *nb) |
| 157 | { | 26 | { |
| 158 | pr_debug("register_die_notifier: %p\n", nb); | ||
| 159 | |||
| 160 | return atomic_notifier_chain_register(&avr32_die_chain, nb); | 27 | return atomic_notifier_chain_register(&avr32_die_chain, nb); |
| 161 | } | 28 | } |
| 162 | EXPORT_SYMBOL(register_die_notifier); | 29 | EXPORT_SYMBOL(register_die_notifier); |
| @@ -169,93 +36,103 @@ EXPORT_SYMBOL(unregister_die_notifier); | |||
| 169 | 36 | ||
| 170 | static DEFINE_SPINLOCK(die_lock); | 37 | static DEFINE_SPINLOCK(die_lock); |
| 171 | 38 | ||
| 172 | void __die(const char *str, struct pt_regs *regs, unsigned long err, | 39 | void NORET_TYPE die(const char *str, struct pt_regs *regs, long err) |
| 173 | const char *file, const char *func, unsigned long line) | ||
| 174 | { | 40 | { |
| 175 | struct task_struct *tsk = current; | ||
| 176 | static int die_counter; | 41 | static int die_counter; |
| 177 | 42 | ||
| 178 | console_verbose(); | 43 | console_verbose(); |
| 179 | spin_lock_irq(&die_lock); | 44 | spin_lock_irq(&die_lock); |
| 180 | bust_spinlocks(1); | 45 | bust_spinlocks(1); |
| 181 | 46 | ||
| 182 | printk(KERN_ALERT "%s", str); | 47 | printk(KERN_ALERT "Oops: %s, sig: %ld [#%d]\n" KERN_EMERG, |
| 183 | if (file && func) | 48 | str, err, ++die_counter); |
| 184 | printk(" in %s:%s, line %ld", file, func, line); | 49 | #ifdef CONFIG_PREEMPT |
| 185 | printk("[#%d]:\n", ++die_counter); | 50 | printk("PREEMPT "); |
| 186 | print_modules(); | 51 | #endif |
| 187 | show_regs(regs); | 52 | #ifdef CONFIG_FRAME_POINTER |
| 188 | printk("Process %s (pid: %d, stack limit = 0x%p)\n", | 53 | printk("FRAME_POINTER "); |
| 189 | tsk->comm, tsk->pid, tsk->thread_info + 1); | 54 | #endif |
| 190 | 55 | if (current_cpu_data.features & AVR32_FEATURE_OCD) { | |
| 191 | if (!user_mode(regs) || in_interrupt()) { | 56 | unsigned long did = __mfdr(DBGREG_DID); |
| 192 | dump_mem("Stack: ", regs->sp, | 57 | printk("chip: 0x%03lx:0x%04lx rev %lu\n", |
| 193 | THREAD_SIZE + (unsigned long)tsk->thread_info); | 58 | (did >> 1) & 0x7ff, |
| 59 | (did >> 12) & 0x7fff, | ||
| 60 | (did >> 28) & 0xf); | ||
| 61 | } else { | ||
| 62 | printk("cpu: arch %u r%u / core %u r%u\n", | ||
| 63 | current_cpu_data.arch_type, | ||
| 64 | current_cpu_data.arch_revision, | ||
| 65 | current_cpu_data.cpu_type, | ||
| 66 | current_cpu_data.cpu_revision); | ||
| 194 | } | 67 | } |
| 195 | 68 | ||
| 69 | print_modules(); | ||
| 70 | show_regs_log_lvl(regs, KERN_EMERG); | ||
| 71 | show_stack_log_lvl(current, regs->sp, regs, KERN_EMERG); | ||
| 196 | bust_spinlocks(0); | 72 | bust_spinlocks(0); |
| 197 | spin_unlock_irq(&die_lock); | 73 | spin_unlock_irq(&die_lock); |
| 198 | do_exit(SIGSEGV); | 74 | |
| 75 | if (in_interrupt()) | ||
| 76 | panic("Fatal exception in interrupt"); | ||
| 77 | |||
| 78 | if (panic_on_oops) | ||
| 79 | panic("Fatal exception"); | ||
| 80 | |||
| 81 | do_exit(err); | ||
| 199 | } | 82 | } |
| 200 | 83 | ||
| 201 | void __die_if_kernel(const char *str, struct pt_regs *regs, unsigned long err, | 84 | void _exception(long signr, struct pt_regs *regs, int code, |
| 202 | const char *file, const char *func, unsigned long line) | 85 | unsigned long addr) |
| 203 | { | 86 | { |
| 87 | siginfo_t info; | ||
| 88 | |||
| 204 | if (!user_mode(regs)) | 89 | if (!user_mode(regs)) |
| 205 | __die(str, regs, err, file, func, line); | 90 | die("Unhandled exception in kernel mode", regs, signr); |
| 206 | } | 91 | |
| 92 | memset(&info, 0, sizeof(info)); | ||
| 93 | info.si_signo = signr; | ||
| 94 | info.si_code = code; | ||
| 95 | info.si_addr = (void __user *)addr; | ||
| 96 | force_sig_info(signr, &info, current); | ||
| 207 | 97 | ||
| 208 | asmlinkage void do_nmi(unsigned long ecr, struct pt_regs *regs) | ||
| 209 | { | ||
| 210 | #ifdef CONFIG_SUBARCH_AVR32B | ||
| 211 | /* | 98 | /* |
| 212 | * The exception entry always saves RSR_EX. For NMI, this is | 99 | * Init gets no signals that it doesn't have a handler for. |
| 213 | * wrong; it should be RSR_NMI | 100 | * That's all very well, but if it has caused a synchronous |
| 101 | * exception and we ignore the resulting signal, it will just | ||
| 102 | * generate the same exception over and over again and we get | ||
| 103 | * nowhere. Better to kill it and let the kernel panic. | ||
| 214 | */ | 104 | */ |
| 215 | regs->sr = sysreg_read(RSR_NMI); | 105 | if (is_init(current)) { |
| 216 | #endif | 106 | __sighandler_t handler; |
| 107 | |||
| 108 | spin_lock_irq(¤t->sighand->siglock); | ||
| 109 | handler = current->sighand->action[signr-1].sa.sa_handler; | ||
| 110 | spin_unlock_irq(¤t->sighand->siglock); | ||
| 111 | if (handler == SIG_DFL) { | ||
| 112 | /* init has generated a synchronous exception | ||
| 113 | and it doesn't have a handler for the signal */ | ||
| 114 | printk(KERN_CRIT "init has generated signal %ld " | ||
| 115 | "but has no handler for it\n", signr); | ||
| 116 | do_exit(signr); | ||
| 117 | } | ||
| 118 | } | ||
| 119 | } | ||
| 217 | 120 | ||
| 218 | printk("NMI taken!!!!\n"); | 121 | asmlinkage void do_nmi(unsigned long ecr, struct pt_regs *regs) |
| 219 | die("NMI", regs, ecr); | 122 | { |
| 220 | BUG(); | 123 | printk(KERN_ALERT "Got Non-Maskable Interrupt, dumping regs\n"); |
| 124 | show_regs_log_lvl(regs, KERN_ALERT); | ||
| 125 | show_stack_log_lvl(current, regs->sp, regs, KERN_ALERT); | ||
| 221 | } | 126 | } |
| 222 | 127 | ||
| 223 | asmlinkage void do_critical_exception(unsigned long ecr, struct pt_regs *regs) | 128 | asmlinkage void do_critical_exception(unsigned long ecr, struct pt_regs *regs) |
| 224 | { | 129 | { |
| 225 | printk("Unable to handle critical exception %lu at pc = %08lx!\n", | 130 | die("Critical exception", regs, SIGKILL); |
| 226 | ecr, regs->pc); | ||
| 227 | die("Oops", regs, ecr); | ||
| 228 | BUG(); | ||
| 229 | } | 131 | } |
| 230 | 132 | ||
| 231 | asmlinkage void do_address_exception(unsigned long ecr, struct pt_regs *regs) | 133 | asmlinkage void do_address_exception(unsigned long ecr, struct pt_regs *regs) |
| 232 | { | 134 | { |
| 233 | siginfo_t info; | 135 | _exception(SIGBUS, regs, BUS_ADRALN, regs->pc); |
| 234 | |||
| 235 | die_if_kernel("Oops: Address exception in kernel mode", regs, ecr); | ||
| 236 | |||
| 237 | #ifdef DEBUG | ||
| 238 | if (ecr == ECR_ADDR_ALIGN_X) | ||
| 239 | pr_debug("Instruction Address Exception at pc = %08lx\n", | ||
| 240 | regs->pc); | ||
| 241 | else if (ecr == ECR_ADDR_ALIGN_R) | ||
| 242 | pr_debug("Data Address Exception (Read) at pc = %08lx\n", | ||
| 243 | regs->pc); | ||
| 244 | else if (ecr == ECR_ADDR_ALIGN_W) | ||
| 245 | pr_debug("Data Address Exception (Write) at pc = %08lx\n", | ||
| 246 | regs->pc); | ||
| 247 | else | ||
| 248 | BUG(); | ||
| 249 | |||
| 250 | show_regs(regs); | ||
| 251 | #endif | ||
| 252 | |||
| 253 | info.si_signo = SIGBUS; | ||
| 254 | info.si_errno = 0; | ||
| 255 | info.si_code = BUS_ADRALN; | ||
| 256 | info.si_addr = (void __user *)regs->pc; | ||
| 257 | |||
| 258 | force_sig_info(SIGBUS, &info, current); | ||
| 259 | } | 136 | } |
| 260 | 137 | ||
| 261 | /* This way of handling undefined instructions is stolen from ARM */ | 138 | /* This way of handling undefined instructions is stolen from ARM */ |
| @@ -280,7 +157,8 @@ static int do_cop_absent(u32 insn) | |||
| 280 | { | 157 | { |
| 281 | int cop_nr; | 158 | int cop_nr; |
| 282 | u32 cpucr; | 159 | u32 cpucr; |
| 283 | if ( (insn & 0xfdf00000) == 0xf1900000 ) | 160 | |
| 161 | if ((insn & 0xfdf00000) == 0xf1900000) | ||
| 284 | /* LDC0 */ | 162 | /* LDC0 */ |
| 285 | cop_nr = 0; | 163 | cop_nr = 0; |
| 286 | else | 164 | else |
| @@ -292,136 +170,91 @@ static int do_cop_absent(u32 insn) | |||
| 292 | sysreg_write(CPUCR, cpucr); | 170 | sysreg_write(CPUCR, cpucr); |
| 293 | 171 | ||
| 294 | cpucr = sysreg_read(CPUCR); | 172 | cpucr = sysreg_read(CPUCR); |
| 295 | if ( !(cpucr & (1 << (24 + cop_nr))) ){ | 173 | if (!(cpucr & (1 << (24 + cop_nr)))) |
| 296 | printk("Coprocessor #%i not found!\n", cop_nr); | 174 | return -ENODEV; |
| 297 | return -1; | ||
| 298 | } | ||
| 299 | 175 | ||
| 300 | return 0; | 176 | return 0; |
| 301 | } | 177 | } |
| 302 | 178 | ||
| 303 | #ifdef CONFIG_BUG | 179 | int is_valid_bugaddr(unsigned long pc) |
| 304 | #ifdef CONFIG_DEBUG_BUGVERBOSE | ||
| 305 | static inline void do_bug_verbose(struct pt_regs *regs, u32 insn) | ||
| 306 | { | ||
| 307 | char *file; | ||
| 308 | u16 line; | ||
| 309 | char c; | ||
| 310 | |||
| 311 | if (__get_user(line, (u16 __user *)(regs->pc + 2))) | ||
| 312 | return; | ||
| 313 | if (__get_user(file, (char * __user *)(regs->pc + 4)) | ||
| 314 | || (unsigned long)file < PAGE_OFFSET | ||
| 315 | || __get_user(c, file)) | ||
| 316 | file = "<bad filename>"; | ||
| 317 | |||
| 318 | printk(KERN_ALERT "kernel BUG at %s:%d!\n", file, line); | ||
| 319 | } | ||
| 320 | #else | ||
| 321 | static inline void do_bug_verbose(struct pt_regs *regs, u32 insn) | ||
| 322 | { | 180 | { |
| 181 | unsigned short opcode; | ||
| 182 | |||
| 183 | if (pc < PAGE_OFFSET) | ||
| 184 | return 0; | ||
| 185 | if (probe_kernel_address((u16 *)pc, opcode)) | ||
| 186 | return 0; | ||
| 323 | 187 | ||
| 188 | return opcode == AVR32_BUG_OPCODE; | ||
| 324 | } | 189 | } |
| 325 | #endif | ||
| 326 | #endif | ||
| 327 | 190 | ||
| 328 | asmlinkage void do_illegal_opcode(unsigned long ecr, struct pt_regs *regs) | 191 | asmlinkage void do_illegal_opcode(unsigned long ecr, struct pt_regs *regs) |
| 329 | { | 192 | { |
| 330 | u32 insn; | 193 | u32 insn; |
| 331 | struct undef_hook *hook; | 194 | struct undef_hook *hook; |
| 332 | siginfo_t info; | ||
| 333 | void __user *pc; | 195 | void __user *pc; |
| 196 | long code; | ||
| 334 | 197 | ||
| 335 | if (!user_mode(regs)) | 198 | if (!user_mode(regs) && (ecr == ECR_ILLEGAL_OPCODE)) { |
| 336 | goto kernel_trap; | 199 | enum bug_trap_type type; |
| 200 | |||
| 201 | type = report_bug(regs->pc); | ||
| 202 | switch (type) { | ||
| 203 | case BUG_TRAP_TYPE_NONE: | ||
| 204 | break; | ||
| 205 | case BUG_TRAP_TYPE_WARN: | ||
| 206 | regs->pc += 2; | ||
| 207 | return; | ||
| 208 | case BUG_TRAP_TYPE_BUG: | ||
| 209 | die("Kernel BUG", regs, SIGKILL); | ||
| 210 | } | ||
| 211 | } | ||
| 337 | 212 | ||
| 338 | local_irq_enable(); | 213 | local_irq_enable(); |
| 339 | 214 | ||
| 340 | pc = (void __user *)instruction_pointer(regs); | 215 | if (user_mode(regs)) { |
| 341 | if (__get_user(insn, (u32 __user *)pc)) | 216 | pc = (void __user *)instruction_pointer(regs); |
| 342 | goto invalid_area; | 217 | if (get_user(insn, (u32 __user *)pc)) |
| 218 | goto invalid_area; | ||
| 343 | 219 | ||
| 344 | if (ecr == ECR_COPROC_ABSENT) { | 220 | if (ecr == ECR_COPROC_ABSENT && !do_cop_absent(insn)) |
| 345 | if (do_cop_absent(insn) == 0) | ||
| 346 | return; | 221 | return; |
| 347 | } | ||
| 348 | 222 | ||
| 349 | spin_lock_irq(&undef_lock); | 223 | spin_lock_irq(&undef_lock); |
| 350 | list_for_each_entry(hook, &undef_hook, node) { | 224 | list_for_each_entry(hook, &undef_hook, node) { |
| 351 | if ((insn & hook->insn_mask) == hook->insn_val) { | 225 | if ((insn & hook->insn_mask) == hook->insn_val) { |
| 352 | if (hook->fn(regs, insn) == 0) { | 226 | if (hook->fn(regs, insn) == 0) { |
| 353 | spin_unlock_irq(&undef_lock); | 227 | spin_unlock_irq(&undef_lock); |
| 354 | return; | 228 | return; |
| 229 | } | ||
| 355 | } | 230 | } |
| 356 | } | 231 | } |
| 232 | spin_unlock_irq(&undef_lock); | ||
| 357 | } | 233 | } |
| 358 | spin_unlock_irq(&undef_lock); | ||
| 359 | |||
| 360 | invalid_area: | ||
| 361 | 234 | ||
| 362 | #ifdef DEBUG | ||
| 363 | printk("Illegal instruction at pc = %08lx\n", regs->pc); | ||
| 364 | if (regs->pc < TASK_SIZE) { | ||
| 365 | unsigned long ptbr, pgd, pte, *p; | ||
| 366 | |||
| 367 | ptbr = sysreg_read(PTBR); | ||
| 368 | p = (unsigned long *)ptbr; | ||
| 369 | pgd = p[regs->pc >> 22]; | ||
| 370 | p = (unsigned long *)((pgd & 0x1ffff000) | 0x80000000); | ||
| 371 | pte = p[(regs->pc >> 12) & 0x3ff]; | ||
| 372 | printk("page table: 0x%08lx -> 0x%08lx -> 0x%08lx\n", ptbr, pgd, pte); | ||
| 373 | } | ||
| 374 | #endif | ||
| 375 | |||
| 376 | info.si_signo = SIGILL; | ||
| 377 | info.si_errno = 0; | ||
| 378 | info.si_addr = (void __user *)regs->pc; | ||
| 379 | switch (ecr) { | 235 | switch (ecr) { |
| 380 | case ECR_ILLEGAL_OPCODE: | ||
| 381 | case ECR_UNIMPL_INSTRUCTION: | ||
| 382 | info.si_code = ILL_ILLOPC; | ||
| 383 | break; | ||
| 384 | case ECR_PRIVILEGE_VIOLATION: | 236 | case ECR_PRIVILEGE_VIOLATION: |
| 385 | info.si_code = ILL_PRVOPC; | 237 | code = ILL_PRVOPC; |
| 386 | break; | 238 | break; |
| 387 | case ECR_COPROC_ABSENT: | 239 | case ECR_COPROC_ABSENT: |
| 388 | info.si_code = ILL_COPROC; | 240 | code = ILL_COPROC; |
| 389 | break; | 241 | break; |
| 390 | default: | 242 | default: |
| 391 | BUG(); | 243 | code = ILL_ILLOPC; |
| 244 | break; | ||
| 392 | } | 245 | } |
| 393 | 246 | ||
| 394 | force_sig_info(SIGILL, &info, current); | 247 | _exception(SIGILL, regs, code, regs->pc); |
| 395 | return; | 248 | return; |
| 396 | 249 | ||
| 397 | kernel_trap: | 250 | invalid_area: |
| 398 | #ifdef CONFIG_BUG | 251 | _exception(SIGSEGV, regs, SEGV_MAPERR, regs->pc); |
| 399 | if (__kernel_text_address(instruction_pointer(regs))) { | ||
| 400 | insn = *(u16 *)instruction_pointer(regs); | ||
| 401 | if (insn == AVR32_BUG_OPCODE) { | ||
| 402 | do_bug_verbose(regs, insn); | ||
| 403 | die("Kernel BUG", regs, 0); | ||
| 404 | return; | ||
| 405 | } | ||
| 406 | } | ||
| 407 | #endif | ||
| 408 | |||
| 409 | die("Oops: Illegal instruction in kernel code", regs, ecr); | ||
| 410 | } | 252 | } |
| 411 | 253 | ||
| 412 | asmlinkage void do_fpe(unsigned long ecr, struct pt_regs *regs) | 254 | asmlinkage void do_fpe(unsigned long ecr, struct pt_regs *regs) |
| 413 | { | 255 | { |
| 414 | siginfo_t info; | 256 | /* We have no FPU yet */ |
| 415 | 257 | _exception(SIGILL, regs, ILL_COPROC, regs->pc); | |
| 416 | printk("Floating-point exception at pc = %08lx\n", regs->pc); | ||
| 417 | |||
| 418 | /* We have no FPU... */ | ||
| 419 | info.si_signo = SIGILL; | ||
| 420 | info.si_errno = 0; | ||
| 421 | info.si_addr = (void __user *)regs->pc; | ||
| 422 | info.si_code = ILL_COPROC; | ||
| 423 | |||
| 424 | force_sig_info(SIGILL, &info, current); | ||
| 425 | } | 258 | } |
| 426 | 259 | ||
| 427 | 260 | ||
diff --git a/arch/avr32/kernel/vmlinux.lds.c b/arch/avr32/kernel/vmlinux.lds.c index ef13b7c78935..7ad20cfb48a8 100644 --- a/arch/avr32/kernel/vmlinux.lds.c +++ b/arch/avr32/kernel/vmlinux.lds.c | |||
| @@ -26,6 +26,12 @@ SECTIONS | |||
| 26 | _sinittext = .; | 26 | _sinittext = .; |
| 27 | *(.text.reset) | 27 | *(.text.reset) |
| 28 | *(.init.text) | 28 | *(.init.text) |
| 29 | /* | ||
| 30 | * .exit.text is discarded at runtime, not | ||
| 31 | * link time, to deal with references from | ||
| 32 | * __bug_table | ||
| 33 | */ | ||
| 34 | *(.exit.text) | ||
| 29 | _einittext = .; | 35 | _einittext = .; |
| 30 | . = ALIGN(4); | 36 | . = ALIGN(4); |
| 31 | __tagtable_begin = .; | 37 | __tagtable_begin = .; |
| @@ -86,6 +92,8 @@ SECTIONS | |||
| 86 | __stop___ex_table = .; | 92 | __stop___ex_table = .; |
| 87 | } | 93 | } |
| 88 | 94 | ||
| 95 | BUG_TABLE | ||
| 96 | |||
| 89 | RODATA | 97 | RODATA |
| 90 | 98 | ||
| 91 | . = ALIGN(8192); | 99 | . = ALIGN(8192); |
| @@ -126,7 +134,6 @@ SECTIONS | |||
| 126 | * thrown away, as cleanup code is never called unless it's a module. | 134 | * thrown away, as cleanup code is never called unless it's a module. |
| 127 | */ | 135 | */ |
| 128 | /DISCARD/ : { | 136 | /DISCARD/ : { |
| 129 | *(.exit.text) | ||
| 130 | *(.exit.data) | 137 | *(.exit.data) |
| 131 | *(.exitcall.exit) | 138 | *(.exitcall.exit) |
| 132 | } | 139 | } |
diff --git a/arch/avr32/mm/fault.c b/arch/avr32/mm/fault.c index 678557260a35..146ebdbdc302 100644 --- a/arch/avr32/mm/fault.c +++ b/arch/avr32/mm/fault.c | |||
| @@ -16,26 +16,8 @@ | |||
| 16 | #include <asm/kdebug.h> | 16 | #include <asm/kdebug.h> |
| 17 | #include <asm/mmu_context.h> | 17 | #include <asm/mmu_context.h> |
| 18 | #include <asm/sysreg.h> | 18 | #include <asm/sysreg.h> |
| 19 | #include <asm/uaccess.h> | ||
| 20 | #include <asm/tlb.h> | 19 | #include <asm/tlb.h> |
| 21 | 20 | #include <asm/uaccess.h> | |
| 22 | #ifdef DEBUG | ||
| 23 | static void dump_code(unsigned long pc) | ||
| 24 | { | ||
| 25 | char *p = (char *)pc; | ||
| 26 | char val; | ||
| 27 | int i; | ||
| 28 | |||
| 29 | |||
| 30 | printk(KERN_DEBUG "Code:"); | ||
| 31 | for (i = 0; i < 16; i++) { | ||
| 32 | if (__get_user(val, p + i)) | ||
| 33 | break; | ||
| 34 | printk(" %02x", val); | ||
| 35 | } | ||
| 36 | printk("\n"); | ||
| 37 | } | ||
| 38 | #endif | ||
| 39 | 21 | ||
| 40 | #ifdef CONFIG_KPROBES | 22 | #ifdef CONFIG_KPROBES |
| 41 | ATOMIC_NOTIFIER_HEAD(notify_page_fault_chain); | 23 | ATOMIC_NOTIFIER_HEAD(notify_page_fault_chain); |
| @@ -68,17 +50,19 @@ static inline int notify_page_fault(enum die_val val, struct pt_regs *regs, | |||
| 68 | } | 50 | } |
| 69 | #endif | 51 | #endif |
| 70 | 52 | ||
| 53 | int exception_trace = 1; | ||
| 54 | |||
| 71 | /* | 55 | /* |
| 72 | * This routine handles page faults. It determines the address and the | 56 | * This routine handles page faults. It determines the address and the |
| 73 | * problem, and then passes it off to one of the appropriate routines. | 57 | * problem, and then passes it off to one of the appropriate routines. |
| 74 | * | 58 | * |
| 75 | * ecr is the Exception Cause Register. Possible values are: | 59 | * ecr is the Exception Cause Register. Possible values are: |
| 76 | * 5: Page not found (instruction access) | ||
| 77 | * 6: Protection fault (instruction access) | 60 | * 6: Protection fault (instruction access) |
| 78 | * 12: Page not found (read access) | 61 | * 15: Protection fault (read access) |
| 79 | * 13: Page not found (write access) | 62 | * 16: Protection fault (write access) |
| 80 | * 14: Protection fault (read access) | 63 | * 20: Page not found (instruction access) |
| 81 | * 15: Protection fault (write access) | 64 | * 24: Page not found (read access) |
| 65 | * 28: Page not found (write access) | ||
| 82 | */ | 66 | */ |
| 83 | asmlinkage void do_page_fault(unsigned long ecr, struct pt_regs *regs) | 67 | asmlinkage void do_page_fault(unsigned long ecr, struct pt_regs *regs) |
| 84 | { | 68 | { |
| @@ -88,7 +72,9 @@ asmlinkage void do_page_fault(unsigned long ecr, struct pt_regs *regs) | |||
| 88 | const struct exception_table_entry *fixup; | 72 | const struct exception_table_entry *fixup; |
| 89 | unsigned long address; | 73 | unsigned long address; |
| 90 | unsigned long page; | 74 | unsigned long page; |
| 91 | int writeaccess = 0; | 75 | int writeaccess; |
| 76 | long signr; | ||
| 77 | int code; | ||
| 92 | 78 | ||
| 93 | if (notify_page_fault(DIE_PAGE_FAULT, regs, | 79 | if (notify_page_fault(DIE_PAGE_FAULT, regs, |
| 94 | ecr, SIGSEGV) == NOTIFY_STOP) | 80 | ecr, SIGSEGV) == NOTIFY_STOP) |
| @@ -99,6 +85,9 @@ asmlinkage void do_page_fault(unsigned long ecr, struct pt_regs *regs) | |||
| 99 | tsk = current; | 85 | tsk = current; |
| 100 | mm = tsk->mm; | 86 | mm = tsk->mm; |
| 101 | 87 | ||
| 88 | signr = SIGSEGV; | ||
| 89 | code = SEGV_MAPERR; | ||
| 90 | |||
| 102 | /* | 91 | /* |
| 103 | * If we're in an interrupt or have no user context, we must | 92 | * If we're in an interrupt or have no user context, we must |
| 104 | * not take the fault... | 93 | * not take the fault... |
| @@ -125,7 +114,9 @@ asmlinkage void do_page_fault(unsigned long ecr, struct pt_regs *regs) | |||
| 125 | * can handle it... | 114 | * can handle it... |
| 126 | */ | 115 | */ |
| 127 | good_area: | 116 | good_area: |
| 128 | //pr_debug("good area: vm_flags = 0x%lx\n", vma->vm_flags); | 117 | code = SEGV_ACCERR; |
| 118 | writeaccess = 0; | ||
| 119 | |||
| 129 | switch (ecr) { | 120 | switch (ecr) { |
| 130 | case ECR_PROTECTION_X: | 121 | case ECR_PROTECTION_X: |
| 131 | case ECR_TLB_MISS_X: | 122 | case ECR_TLB_MISS_X: |
| @@ -176,46 +167,24 @@ survive: | |||
| 176 | * map. Fix it, but check if it's kernel or user first... | 167 | * map. Fix it, but check if it's kernel or user first... |
| 177 | */ | 168 | */ |
| 178 | bad_area: | 169 | bad_area: |
| 179 | pr_debug("Bad area [%s:%u]: addr %08lx, ecr %lu\n", | ||
| 180 | tsk->comm, tsk->pid, address, ecr); | ||
| 181 | |||
| 182 | up_read(&mm->mmap_sem); | 170 | up_read(&mm->mmap_sem); |
| 183 | 171 | ||
| 184 | if (user_mode(regs)) { | 172 | if (user_mode(regs)) { |
| 185 | /* Hmm...we have to pass address and ecr somehow... */ | 173 | if (exception_trace) |
| 186 | /* tsk->thread.address = address; | 174 | printk("%s%s[%d]: segfault at %08lx pc %08lx " |
| 187 | tsk->thread.error_code = ecr; */ | 175 | "sp %08lx ecr %lu\n", |
| 188 | #ifdef DEBUG | 176 | is_init(tsk) ? KERN_EMERG : KERN_INFO, |
| 189 | show_regs(regs); | 177 | tsk->comm, tsk->pid, address, regs->pc, |
| 190 | dump_code(regs->pc); | 178 | regs->sp, ecr); |
| 191 | 179 | _exception(SIGSEGV, regs, code, address); | |
| 192 | page = sysreg_read(PTBR); | ||
| 193 | printk("ptbr = %08lx", page); | ||
| 194 | if (page) { | ||
| 195 | page = ((unsigned long *)page)[address >> 22]; | ||
| 196 | printk(" pgd = %08lx", page); | ||
| 197 | if (page & _PAGE_PRESENT) { | ||
| 198 | page &= PAGE_MASK; | ||
| 199 | address &= 0x003ff000; | ||
| 200 | page = ((unsigned long *)__va(page))[address >> PAGE_SHIFT]; | ||
| 201 | printk(" pte = %08lx\n", page); | ||
| 202 | } | ||
| 203 | } | ||
| 204 | #endif | ||
| 205 | pr_debug("Sending SIGSEGV to PID %d...\n", | ||
| 206 | tsk->pid); | ||
| 207 | force_sig(SIGSEGV, tsk); | ||
| 208 | return; | 180 | return; |
| 209 | } | 181 | } |
| 210 | 182 | ||
| 211 | no_context: | 183 | no_context: |
| 212 | pr_debug("No context\n"); | ||
| 213 | |||
| 214 | /* Are we prepared to handle this kernel fault? */ | 184 | /* Are we prepared to handle this kernel fault? */ |
| 215 | fixup = search_exception_tables(regs->pc); | 185 | fixup = search_exception_tables(regs->pc); |
| 216 | if (fixup) { | 186 | if (fixup) { |
| 217 | regs->pc = fixup->fixup; | 187 | regs->pc = fixup->fixup; |
| 218 | pr_debug("Found fixup at %08lx\n", fixup->fixup); | ||
| 219 | return; | 188 | return; |
| 220 | } | 189 | } |
| 221 | 190 | ||
| @@ -230,7 +199,6 @@ no_context: | |||
| 230 | printk(KERN_ALERT | 199 | printk(KERN_ALERT |
| 231 | "Unable to handle kernel paging request"); | 200 | "Unable to handle kernel paging request"); |
| 232 | printk(" at virtual address %08lx\n", address); | 201 | printk(" at virtual address %08lx\n", address); |
| 233 | printk(KERN_ALERT "pc = %08lx\n", regs->pc); | ||
| 234 | 202 | ||
| 235 | page = sysreg_read(PTBR); | 203 | page = sysreg_read(PTBR); |
| 236 | printk(KERN_ALERT "ptbr = %08lx", page); | 204 | printk(KERN_ALERT "ptbr = %08lx", page); |
| @@ -241,20 +209,20 @@ no_context: | |||
| 241 | page &= PAGE_MASK; | 209 | page &= PAGE_MASK; |
| 242 | address &= 0x003ff000; | 210 | address &= 0x003ff000; |
| 243 | page = ((unsigned long *)__va(page))[address >> PAGE_SHIFT]; | 211 | page = ((unsigned long *)__va(page))[address >> PAGE_SHIFT]; |
| 244 | printk(" pte = %08lx\n", page); | 212 | printk(" pte = %08lx", page); |
| 245 | } | 213 | } |
| 246 | } | 214 | } |
| 247 | die("\nOops", regs, ecr); | 215 | printk("\n"); |
| 248 | do_exit(SIGKILL); | 216 | die("Kernel access of bad area", regs, signr); |
| 217 | return; | ||
| 249 | 218 | ||
| 250 | /* | 219 | /* |
| 251 | * We ran out of memory, or some other thing happened to us | 220 | * We ran out of memory, or some other thing happened to us |
| 252 | * that made us unable to handle the page fault gracefully. | 221 | * that made us unable to handle the page fault gracefully. |
| 253 | */ | 222 | */ |
| 254 | out_of_memory: | 223 | out_of_memory: |
| 255 | printk("Out of memory\n"); | ||
| 256 | up_read(&mm->mmap_sem); | 224 | up_read(&mm->mmap_sem); |
| 257 | if (current->pid == 1) { | 225 | if (is_init(current)) { |
| 258 | yield(); | 226 | yield(); |
| 259 | down_read(&mm->mmap_sem); | 227 | down_read(&mm->mmap_sem); |
| 260 | goto survive; | 228 | goto survive; |
| @@ -267,21 +235,20 @@ out_of_memory: | |||
| 267 | do_sigbus: | 235 | do_sigbus: |
| 268 | up_read(&mm->mmap_sem); | 236 | up_read(&mm->mmap_sem); |
| 269 | 237 | ||
| 270 | /* | ||
| 271 | * Send a sigbus, regardless of whether we were in kernel or | ||
| 272 | * user mode. | ||
| 273 | */ | ||
| 274 | /* address, error_code, trap_no, ... */ | ||
| 275 | #ifdef DEBUG | ||
| 276 | show_regs(regs); | ||
| 277 | dump_code(regs->pc); | ||
| 278 | #endif | ||
| 279 | pr_debug("Sending SIGBUS to PID %d...\n", tsk->pid); | ||
| 280 | force_sig(SIGBUS, tsk); | ||
| 281 | |||
| 282 | /* Kernel mode? Handle exceptions or die */ | 238 | /* Kernel mode? Handle exceptions or die */ |
| 239 | signr = SIGBUS; | ||
| 240 | code = BUS_ADRERR; | ||
| 283 | if (!user_mode(regs)) | 241 | if (!user_mode(regs)) |
| 284 | goto no_context; | 242 | goto no_context; |
| 243 | |||
| 244 | if (exception_trace) | ||
| 245 | printk("%s%s[%d]: bus error at %08lx pc %08lx " | ||
| 246 | "sp %08lx ecr %lu\n", | ||
| 247 | is_init(tsk) ? KERN_EMERG : KERN_INFO, | ||
| 248 | tsk->comm, tsk->pid, address, regs->pc, | ||
| 249 | regs->sp, ecr); | ||
| 250 | |||
| 251 | _exception(SIGBUS, regs, BUS_ADRERR, address); | ||
| 285 | } | 252 | } |
| 286 | 253 | ||
| 287 | asmlinkage void do_bus_error(unsigned long addr, int write_access, | 254 | asmlinkage void do_bus_error(unsigned long addr, int write_access, |
| @@ -292,8 +259,7 @@ asmlinkage void do_bus_error(unsigned long addr, int write_access, | |||
| 292 | addr, write_access ? "write" : "read"); | 259 | addr, write_access ? "write" : "read"); |
| 293 | printk(KERN_INFO "DTLB dump:\n"); | 260 | printk(KERN_INFO "DTLB dump:\n"); |
| 294 | dump_dtlb(); | 261 | dump_dtlb(); |
| 295 | die("Bus Error", regs, write_access); | 262 | die("Bus Error", regs, SIGKILL); |
| 296 | do_exit(SIGKILL); | ||
| 297 | } | 263 | } |
| 298 | 264 | ||
| 299 | /* | 265 | /* |
diff --git a/include/asm-avr32/bug.h b/include/asm-avr32/bug.h index 521766bc9366..afdcd79a2966 100644 --- a/include/asm-avr32/bug.h +++ b/include/asm-avr32/bug.h | |||
| @@ -18,27 +18,53 @@ | |||
| 18 | 18 | ||
| 19 | #ifdef CONFIG_DEBUG_BUGVERBOSE | 19 | #ifdef CONFIG_DEBUG_BUGVERBOSE |
| 20 | 20 | ||
| 21 | #define BUG() \ | 21 | #define _BUG_OR_WARN(flags) \ |
| 22 | do { \ | 22 | asm volatile( \ |
| 23 | asm volatile(".hword %0\n\t" \ | 23 | "1: .hword %0\n" \ |
| 24 | ".hword %1\n\t" \ | 24 | " .section __bug_table,\"a\",@progbits\n" \ |
| 25 | ".long %2" \ | 25 | "2: .long 1b\n" \ |
| 26 | : \ | 26 | " .long %1\n" \ |
| 27 | : "n"(AVR32_BUG_OPCODE), \ | 27 | " .short %2\n" \ |
| 28 | "i"(__LINE__), "X"(__FILE__)); \ | 28 | " .short %3\n" \ |
| 29 | } while (0) | 29 | " .org 2b + %4\n" \ |
| 30 | " .previous" \ | ||
| 31 | : \ | ||
| 32 | : "i"(AVR32_BUG_OPCODE), "i"(__FILE__), \ | ||
| 33 | "i"(__LINE__), "i"(flags), \ | ||
| 34 | "i"(sizeof(struct bug_entry))) | ||
| 30 | 35 | ||
| 31 | #else | 36 | #else |
| 32 | 37 | ||
| 38 | #define _BUG_OR_WARN(flags) \ | ||
| 39 | asm volatile( \ | ||
| 40 | "1: .hword %0\n" \ | ||
| 41 | " .section __bug_table,\"a\",@progbits\n" \ | ||
| 42 | "2: .long 1b\n" \ | ||
| 43 | " .short %1\n" \ | ||
| 44 | " .org 2b + %2\n" \ | ||
| 45 | " .previous" \ | ||
| 46 | : \ | ||
| 47 | : "i"(AVR32_BUG_OPCODE), "i"(flags), \ | ||
| 48 | "i"(sizeof(struct bug_entry))) | ||
| 49 | |||
| 50 | #endif /* CONFIG_DEBUG_BUGVERBOSE */ | ||
| 51 | |||
| 33 | #define BUG() \ | 52 | #define BUG() \ |
| 34 | do { \ | 53 | do { \ |
| 35 | asm volatile(".hword %0\n\t" \ | 54 | _BUG_OR_WARN(0); \ |
| 36 | : : "n"(AVR32_BUG_OPCODE)); \ | 55 | for (;;); \ |
| 37 | } while (0) | 56 | } while (0) |
| 38 | 57 | ||
| 39 | #endif /* CONFIG_DEBUG_BUGVERBOSE */ | 58 | #define WARN_ON(condition) \ |
| 59 | ({ \ | ||
| 60 | typeof(condition) __ret_warn_on = (condition); \ | ||
| 61 | if (unlikely(__ret_warn_on)) \ | ||
| 62 | _BUG_OR_WARN(BUGFLAG_WARNING); \ | ||
| 63 | unlikely(__ret_warn_on); \ | ||
| 64 | }) | ||
| 40 | 65 | ||
| 41 | #define HAVE_ARCH_BUG | 66 | #define HAVE_ARCH_BUG |
| 67 | #define HAVE_ARCH_WARN_ON | ||
| 42 | 68 | ||
| 43 | #endif /* CONFIG_BUG */ | 69 | #endif /* CONFIG_BUG */ |
| 44 | 70 | ||
diff --git a/include/asm-avr32/processor.h b/include/asm-avr32/processor.h index cbb89ccd3f05..6a64833756a6 100644 --- a/include/asm-avr32/processor.h +++ b/include/asm-avr32/processor.h | |||
| @@ -134,10 +134,10 @@ extern int kernel_thread(int (*fn)(void *), void *arg, unsigned long flags); | |||
| 134 | #define thread_saved_pc(tsk) ((tsk)->thread.cpu_context.pc) | 134 | #define thread_saved_pc(tsk) ((tsk)->thread.cpu_context.pc) |
| 135 | 135 | ||
| 136 | struct pt_regs; | 136 | struct pt_regs; |
| 137 | void show_trace(struct task_struct *task, unsigned long *stack, | ||
| 138 | struct pt_regs *regs); | ||
| 139 | |||
| 140 | extern unsigned long get_wchan(struct task_struct *p); | 137 | extern unsigned long get_wchan(struct task_struct *p); |
| 138 | extern void show_regs_log_lvl(struct pt_regs *regs, const char *log_lvl); | ||
| 139 | extern void show_stack_log_lvl(struct task_struct *tsk, unsigned long sp, | ||
| 140 | struct pt_regs *regs, const char *log_lvl); | ||
| 141 | 141 | ||
| 142 | #define KSTK_EIP(tsk) ((tsk)->thread.cpu_context.pc) | 142 | #define KSTK_EIP(tsk) ((tsk)->thread.cpu_context.pc) |
| 143 | #define KSTK_ESP(tsk) ((tsk)->thread.cpu_context.ksp) | 143 | #define KSTK_ESP(tsk) ((tsk)->thread.cpu_context.ksp) |
diff --git a/include/asm-avr32/system.h b/include/asm-avr32/system.h index ac596058697d..a8236bacc878 100644 --- a/include/asm-avr32/system.h +++ b/include/asm-avr32/system.h | |||
| @@ -9,6 +9,7 @@ | |||
| 9 | #define __ASM_AVR32_SYSTEM_H | 9 | #define __ASM_AVR32_SYSTEM_H |
| 10 | 10 | ||
| 11 | #include <linux/compiler.h> | 11 | #include <linux/compiler.h> |
| 12 | #include <linux/linkage.h> | ||
| 12 | #include <linux/types.h> | 13 | #include <linux/types.h> |
| 13 | 14 | ||
| 14 | #include <asm/ptrace.h> | 15 | #include <asm/ptrace.h> |
| @@ -140,15 +141,9 @@ static inline unsigned long __cmpxchg(volatile void *ptr, unsigned long old, | |||
| 140 | sizeof(*(ptr)))) | 141 | sizeof(*(ptr)))) |
| 141 | 142 | ||
| 142 | struct pt_regs; | 143 | struct pt_regs; |
| 143 | extern void __die(const char *, struct pt_regs *, unsigned long, | 144 | void NORET_TYPE die(const char *str, struct pt_regs *regs, long err); |
| 144 | const char *, const char *, unsigned long); | 145 | void _exception(long signr, struct pt_regs *regs, int code, |
| 145 | extern void __die_if_kernel(const char *, struct pt_regs *, unsigned long, | 146 | unsigned long addr); |
| 146 | const char *, const char *, unsigned long); | ||
| 147 | |||
| 148 | #define die(msg, regs, err) \ | ||
| 149 | __die(msg, regs, err, __FILE__ ":", __FUNCTION__, __LINE__) | ||
| 150 | #define die_if_kernel(msg, regs, err) \ | ||
| 151 | __die_if_kernel(msg, regs, err, __FILE__ ":", __FUNCTION__, __LINE__) | ||
| 152 | 147 | ||
| 153 | #define arch_align_stack(x) (x) | 148 | #define arch_align_stack(x) (x) |
| 154 | 149 | ||
