Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 1 | /* |
| 2 | * arch/sh/kernel/process.c |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 4 | * This file handles the architecture-dependent parts of process handling.. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * |
| 6 | * Copyright (C) 1995 Linus Torvalds |
| 7 | * |
| 8 | * SuperH version: Copyright (C) 1999, 2000 Niibe Yutaka & Kaz Kojima |
Ryusuke Sakato | 8ae91b9 | 2006-10-12 12:16:13 +0900 | [diff] [blame] | 9 | * Copyright (C) 2006 Lineo Solutions Inc. support SH4A UBC |
Paul Mundt | 3a2e117 | 2007-05-01 16:33:10 +0900 | [diff] [blame] | 10 | * Copyright (C) 2002 - 2007 Paul Mundt |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <linux/mm.h> |
| 14 | #include <linux/elfcore.h> |
Paul Mundt | a3310bb | 2006-02-01 03:06:08 -0800 | [diff] [blame] | 15 | #include <linux/pm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/kallsyms.h> |
Paul Mundt | a3310bb | 2006-02-01 03:06:08 -0800 | [diff] [blame] | 17 | #include <linux/kexec.h> |
Paul Mundt | 3a2e117 | 2007-05-01 16:33:10 +0900 | [diff] [blame] | 18 | #include <asm/kdebug.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <asm/uaccess.h> |
| 20 | #include <asm/mmu_context.h> |
Paul Mundt | 5f8c990 | 2007-05-08 11:55:21 +0900 | [diff] [blame] | 21 | #include <asm/pgalloc.h> |
Paul Mundt | bd07999 | 2007-05-08 14:50:59 +0900 | [diff] [blame] | 22 | #include <asm/system.h> |
Paul Mundt | b5233d0 | 2006-09-20 03:25:34 +0900 | [diff] [blame] | 23 | #include <asm/ubc.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 25 | static int hlt_counter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | int ubc_usercnt = 0; |
| 27 | |
| 28 | #define HARD_IDLE_TIMEOUT (HZ / 3) |
| 29 | |
Paul Mundt | a3310bb | 2006-02-01 03:06:08 -0800 | [diff] [blame] | 30 | void (*pm_idle)(void); |
Paul Mundt | a3310bb | 2006-02-01 03:06:08 -0800 | [diff] [blame] | 31 | void (*pm_power_off)(void); |
| 32 | EXPORT_SYMBOL(pm_power_off); |
| 33 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | void disable_hlt(void) |
| 35 | { |
| 36 | hlt_counter++; |
| 37 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | EXPORT_SYMBOL(disable_hlt); |
| 39 | |
| 40 | void enable_hlt(void) |
| 41 | { |
| 42 | hlt_counter--; |
| 43 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | EXPORT_SYMBOL(enable_hlt); |
| 45 | |
Paul Mundt | a3310bb | 2006-02-01 03:06:08 -0800 | [diff] [blame] | 46 | void default_idle(void) |
| 47 | { |
| 48 | if (!hlt_counter) |
| 49 | cpu_sleep(); |
| 50 | else |
| 51 | cpu_relax(); |
| 52 | } |
| 53 | |
Nick Piggin | 64c7c8f | 2005-11-08 21:39:04 -0800 | [diff] [blame] | 54 | void cpu_idle(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | { |
| 56 | /* endless idle loop with no priority at all */ |
| 57 | while (1) { |
Paul Mundt | a3310bb | 2006-02-01 03:06:08 -0800 | [diff] [blame] | 58 | void (*idle)(void) = pm_idle; |
| 59 | |
| 60 | if (!idle) |
| 61 | idle = default_idle; |
| 62 | |
| 63 | while (!need_resched()) |
| 64 | idle(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 66 | preempt_enable_no_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | schedule(); |
Nick Piggin | 5bfb5d6 | 2005-11-08 21:39:01 -0800 | [diff] [blame] | 68 | preempt_disable(); |
Paul Mundt | 5f8c990 | 2007-05-08 11:55:21 +0900 | [diff] [blame] | 69 | check_pgt_cache(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } |
| 71 | } |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | void machine_restart(char * __unused) |
| 74 | { |
| 75 | /* SR.BL=1 and invoke address error to let CPU reset (manual reset) */ |
| 76 | asm volatile("ldc %0, sr\n\t" |
| 77 | "mov.l @%1, %0" : : "r" (0x10000000), "r" (0x80000001)); |
| 78 | } |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | void machine_halt(void) |
| 81 | { |
Paul Mundt | a3310bb | 2006-02-01 03:06:08 -0800 | [diff] [blame] | 82 | local_irq_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | while (1) |
| 85 | cpu_sleep(); |
| 86 | } |
| 87 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | void machine_power_off(void) |
| 89 | { |
Paul Mundt | a3310bb | 2006-02-01 03:06:08 -0800 | [diff] [blame] | 90 | if (pm_power_off) |
| 91 | pm_power_off(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | } |
| 93 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | void show_regs(struct pt_regs * regs) |
| 95 | { |
| 96 | printk("\n"); |
| 97 | printk("Pid : %d, Comm: %20s\n", current->pid, current->comm); |
Paul Mundt | 6b00223 | 2006-10-12 17:07:45 +0900 | [diff] [blame] | 98 | print_symbol("PC is at %s\n", instruction_pointer(regs)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | printk("PC : %08lx SP : %08lx SR : %08lx ", |
| 100 | regs->pc, regs->regs[15], regs->sr); |
| 101 | #ifdef CONFIG_MMU |
| 102 | printk("TEA : %08x ", ctrl_inl(MMU_TEA)); |
| 103 | #else |
| 104 | printk(" "); |
| 105 | #endif |
| 106 | printk("%s\n", print_tainted()); |
| 107 | |
| 108 | printk("R0 : %08lx R1 : %08lx R2 : %08lx R3 : %08lx\n", |
| 109 | regs->regs[0],regs->regs[1], |
| 110 | regs->regs[2],regs->regs[3]); |
| 111 | printk("R4 : %08lx R5 : %08lx R6 : %08lx R7 : %08lx\n", |
| 112 | regs->regs[4],regs->regs[5], |
| 113 | regs->regs[6],regs->regs[7]); |
| 114 | printk("R8 : %08lx R9 : %08lx R10 : %08lx R11 : %08lx\n", |
| 115 | regs->regs[8],regs->regs[9], |
| 116 | regs->regs[10],regs->regs[11]); |
| 117 | printk("R12 : %08lx R13 : %08lx R14 : %08lx\n", |
| 118 | regs->regs[12],regs->regs[13], |
| 119 | regs->regs[14]); |
| 120 | printk("MACH: %08lx MACL: %08lx GBR : %08lx PR : %08lx\n", |
| 121 | regs->mach, regs->macl, regs->gbr, regs->pr); |
| 122 | |
Paul Mundt | 6b00223 | 2006-10-12 17:07:45 +0900 | [diff] [blame] | 123 | show_trace(NULL, (unsigned long *)regs->regs[15], regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | /* |
| 127 | * Create a kernel thread |
| 128 | */ |
| 129 | |
| 130 | /* |
| 131 | * This is the mechanism for creating a new kernel thread. |
| 132 | * |
| 133 | */ |
| 134 | extern void kernel_thread_helper(void); |
| 135 | __asm__(".align 5\n" |
| 136 | "kernel_thread_helper:\n\t" |
| 137 | "jsr @r5\n\t" |
| 138 | " nop\n\t" |
| 139 | "mov.l 1f, r1\n\t" |
| 140 | "jsr @r1\n\t" |
| 141 | " mov r0, r4\n\t" |
| 142 | ".align 2\n\t" |
| 143 | "1:.long do_exit"); |
| 144 | |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 145 | /* Don't use this in BL=1(cli). Or else, CPU resets! */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags) |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 147 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | struct pt_regs regs; |
| 149 | |
| 150 | memset(®s, 0, sizeof(regs)); |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 151 | regs.regs[4] = (unsigned long)arg; |
| 152 | regs.regs[5] = (unsigned long)fn; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 154 | regs.pc = (unsigned long)kernel_thread_helper; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | regs.sr = (1 << 30); |
| 156 | |
| 157 | /* Ok, create the new process.. */ |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 158 | return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0, |
| 159 | ®s, 0, NULL, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | /* |
| 163 | * Free current thread data structures etc.. |
| 164 | */ |
| 165 | void exit_thread(void) |
| 166 | { |
| 167 | if (current->thread.ubc_pc) { |
| 168 | current->thread.ubc_pc = 0; |
| 169 | ubc_usercnt -= 1; |
| 170 | } |
| 171 | } |
| 172 | |
| 173 | void flush_thread(void) |
| 174 | { |
| 175 | #if defined(CONFIG_SH_FPU) |
| 176 | struct task_struct *tsk = current; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | /* Forget lazy FPU state */ |
Al Viro | 3cf0f4e | 2006-01-12 01:05:44 -0800 | [diff] [blame] | 178 | clear_fpu(tsk, task_pt_regs(tsk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | clear_used_math(); |
| 180 | #endif |
| 181 | } |
| 182 | |
| 183 | void release_thread(struct task_struct *dead_task) |
| 184 | { |
| 185 | /* do nothing */ |
| 186 | } |
| 187 | |
| 188 | /* Fill in the fpu structure for a core dump.. */ |
| 189 | int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu) |
| 190 | { |
| 191 | int fpvalid = 0; |
| 192 | |
| 193 | #if defined(CONFIG_SH_FPU) |
| 194 | struct task_struct *tsk = current; |
| 195 | |
| 196 | fpvalid = !!tsk_used_math(tsk); |
| 197 | if (fpvalid) { |
| 198 | unlazy_fpu(tsk, regs); |
| 199 | memcpy(fpu, &tsk->thread.fpu.hard, sizeof(*fpu)); |
| 200 | } |
| 201 | #endif |
| 202 | |
| 203 | return fpvalid; |
| 204 | } |
| 205 | |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 206 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | * Capture the user space registers if the task is not running (in user space) |
| 208 | */ |
| 209 | int dump_task_regs(struct task_struct *tsk, elf_gregset_t *regs) |
| 210 | { |
| 211 | struct pt_regs ptregs; |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 212 | |
Al Viro | 3cf0f4e | 2006-01-12 01:05:44 -0800 | [diff] [blame] | 213 | ptregs = *task_pt_regs(tsk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | elf_core_copy_regs(regs, &ptregs); |
| 215 | |
| 216 | return 1; |
| 217 | } |
| 218 | |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 219 | int dump_task_fpu(struct task_struct *tsk, elf_fpregset_t *fpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | { |
| 221 | int fpvalid = 0; |
| 222 | |
| 223 | #if defined(CONFIG_SH_FPU) |
| 224 | fpvalid = !!tsk_used_math(tsk); |
| 225 | if (fpvalid) { |
Al Viro | 3cf0f4e | 2006-01-12 01:05:44 -0800 | [diff] [blame] | 226 | unlazy_fpu(tsk, task_pt_regs(tsk)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | memcpy(fpu, &tsk->thread.fpu.hard, sizeof(*fpu)); |
| 228 | } |
| 229 | #endif |
| 230 | |
| 231 | return fpvalid; |
| 232 | } |
| 233 | |
| 234 | asmlinkage void ret_from_fork(void); |
| 235 | |
| 236 | int copy_thread(int nr, unsigned long clone_flags, unsigned long usp, |
| 237 | unsigned long unused, |
| 238 | struct task_struct *p, struct pt_regs *regs) |
| 239 | { |
Paul Mundt | 2991be7 | 2006-09-27 17:07:07 +0900 | [diff] [blame] | 240 | struct thread_info *ti = task_thread_info(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | struct pt_regs *childregs; |
| 242 | #if defined(CONFIG_SH_FPU) |
| 243 | struct task_struct *tsk = current; |
| 244 | |
| 245 | unlazy_fpu(tsk, regs); |
| 246 | p->thread.fpu = tsk->thread.fpu; |
| 247 | copy_to_stopped_child_used_math(p); |
| 248 | #endif |
| 249 | |
Al Viro | 3cf0f4e | 2006-01-12 01:05:44 -0800 | [diff] [blame] | 250 | childregs = task_pt_regs(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 251 | *childregs = *regs; |
| 252 | |
| 253 | if (user_mode(regs)) { |
| 254 | childregs->regs[15] = usp; |
Paul Mundt | 2991be7 | 2006-09-27 17:07:07 +0900 | [diff] [blame] | 255 | ti->addr_limit = USER_DS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | } else { |
Hideo Saito | e6bcf56 | 2007-02-28 18:35:42 +0900 | [diff] [blame] | 257 | childregs->regs[15] = (unsigned long)childregs; |
Paul Mundt | 2991be7 | 2006-09-27 17:07:07 +0900 | [diff] [blame] | 258 | ti->addr_limit = KERNEL_DS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | } |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 260 | |
Hideo Saito | e6bcf56 | 2007-02-28 18:35:42 +0900 | [diff] [blame] | 261 | if (clone_flags & CLONE_SETTLS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | childregs->gbr = childregs->regs[0]; |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | childregs->regs[0] = 0; /* Set return value for child */ |
| 265 | |
| 266 | p->thread.sp = (unsigned long) childregs; |
| 267 | p->thread.pc = (unsigned long) ret_from_fork; |
| 268 | |
| 269 | p->thread.ubc_pc = 0; |
| 270 | |
| 271 | return 0; |
| 272 | } |
| 273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | /* Tracing by user break controller. */ |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 275 | static void ubc_set_tracing(int asid, unsigned long pc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | { |
Ryusuke Sakato | 8ae91b9 | 2006-10-12 12:16:13 +0900 | [diff] [blame] | 277 | #if defined(CONFIG_CPU_SH4A) |
| 278 | unsigned long val; |
| 279 | |
| 280 | val = (UBC_CBR_ID_INST | UBC_CBR_RW_READ | UBC_CBR_CE); |
| 281 | val |= (UBC_CBR_AIE | UBC_CBR_AIV_SET(asid)); |
| 282 | |
| 283 | ctrl_outl(val, UBC_CBR0); |
| 284 | ctrl_outl(pc, UBC_CAR0); |
| 285 | ctrl_outl(0x0, UBC_CAMR0); |
| 286 | ctrl_outl(0x0, UBC_CBCR); |
| 287 | |
| 288 | val = (UBC_CRR_RES | UBC_CRR_PCB | UBC_CRR_BIE); |
| 289 | ctrl_outl(val, UBC_CRR0); |
| 290 | |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 291 | /* Read UBC register that we wrote last, for checking update */ |
Ryusuke Sakato | 8ae91b9 | 2006-10-12 12:16:13 +0900 | [diff] [blame] | 292 | val = ctrl_inl(UBC_CRR0); |
| 293 | |
| 294 | #else /* CONFIG_CPU_SH4A */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | ctrl_outl(pc, UBC_BARA); |
| 296 | |
Yoshinori Sato | a2d1a5f | 2006-09-27 17:25:07 +0900 | [diff] [blame] | 297 | #ifdef CONFIG_MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | /* We don't have any ASID settings for the SH-2! */ |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 299 | if (current_cpu_data.type != CPU_SH7604) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | ctrl_outb(asid, UBC_BASRA); |
Yoshinori Sato | a2d1a5f | 2006-09-27 17:25:07 +0900 | [diff] [blame] | 301 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
| 303 | ctrl_outl(0, UBC_BAMRA); |
| 304 | |
Paul Mundt | 11c1965 | 2006-12-25 10:19:56 +0900 | [diff] [blame] | 305 | if (current_cpu_data.type == CPU_SH7729 || |
Paul Mundt | 3a2e117 | 2007-05-01 16:33:10 +0900 | [diff] [blame] | 306 | current_cpu_data.type == CPU_SH7710 || |
| 307 | current_cpu_data.type == CPU_SH7712) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | ctrl_outw(BBR_INST | BBR_READ | BBR_CPU, UBC_BBRA); |
| 309 | ctrl_outl(BRCR_PCBA | BRCR_PCTE, UBC_BRCR); |
| 310 | } else { |
| 311 | ctrl_outw(BBR_INST | BBR_READ, UBC_BBRA); |
| 312 | ctrl_outw(BRCR_PCBA, UBC_BRCR); |
| 313 | } |
Ryusuke Sakato | 8ae91b9 | 2006-10-12 12:16:13 +0900 | [diff] [blame] | 314 | #endif /* CONFIG_CPU_SH4A */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | /* |
| 318 | * switch_to(x,y) should switch tasks from x to y. |
| 319 | * |
| 320 | */ |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 321 | struct task_struct *__switch_to(struct task_struct *prev, |
| 322 | struct task_struct *next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | { |
| 324 | #if defined(CONFIG_SH_FPU) |
Al Viro | 3cf0f4e | 2006-01-12 01:05:44 -0800 | [diff] [blame] | 325 | unlazy_fpu(prev, task_pt_regs(prev)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | #endif |
| 327 | |
| 328 | #ifdef CONFIG_PREEMPT |
| 329 | { |
| 330 | unsigned long flags; |
| 331 | struct pt_regs *regs; |
| 332 | |
| 333 | local_irq_save(flags); |
Al Viro | 3cf0f4e | 2006-01-12 01:05:44 -0800 | [diff] [blame] | 334 | regs = task_pt_regs(prev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | if (user_mode(regs) && regs->regs[15] >= 0xc0000000) { |
| 336 | int offset = (int)regs->regs[15]; |
| 337 | |
| 338 | /* Reset stack pointer: clear critical region mark */ |
| 339 | regs->regs[15] = regs->regs[1]; |
| 340 | if (regs->pc < regs->regs[0]) |
| 341 | /* Go to rewind point */ |
| 342 | regs->pc = regs->regs[0] + offset; |
| 343 | } |
| 344 | local_irq_restore(flags); |
| 345 | } |
| 346 | #endif |
| 347 | |
Yoshinori Sato | a2d1a5f | 2006-09-27 17:25:07 +0900 | [diff] [blame] | 348 | #ifdef CONFIG_MMU |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | /* |
| 350 | * Restore the kernel mode register |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 351 | * k7 (r7_bank1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | */ |
| 353 | asm volatile("ldc %0, r7_bank" |
| 354 | : /* no output */ |
Al Viro | cafcfca | 2006-01-12 01:05:45 -0800 | [diff] [blame] | 355 | : "r" (task_thread_info(next))); |
Yoshinori Sato | a2d1a5f | 2006-09-27 17:25:07 +0900 | [diff] [blame] | 356 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | /* If no tasks are using the UBC, we're done */ |
| 359 | if (ubc_usercnt == 0) |
| 360 | /* If no tasks are using the UBC, we're done */; |
| 361 | else if (next->thread.ubc_pc && next->mm) { |
Yoshinori Sato | a2d1a5f | 2006-09-27 17:25:07 +0900 | [diff] [blame] | 362 | int asid = 0; |
| 363 | #ifdef CONFIG_MMU |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 364 | asid |= cpu_asid(smp_processor_id(), next->mm); |
Yoshinori Sato | a2d1a5f | 2006-09-27 17:25:07 +0900 | [diff] [blame] | 365 | #endif |
| 366 | ubc_set_tracing(asid, next->thread.ubc_pc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | } else { |
Ryusuke Sakato | 8ae91b9 | 2006-10-12 12:16:13 +0900 | [diff] [blame] | 368 | #if defined(CONFIG_CPU_SH4A) |
| 369 | ctrl_outl(UBC_CBR_INIT, UBC_CBR0); |
| 370 | ctrl_outl(UBC_CRR_INIT, UBC_CRR0); |
| 371 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | ctrl_outw(0, UBC_BBRA); |
| 373 | ctrl_outw(0, UBC_BBRB); |
Ryusuke Sakato | 8ae91b9 | 2006-10-12 12:16:13 +0900 | [diff] [blame] | 374 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | |
| 377 | return prev; |
| 378 | } |
| 379 | |
| 380 | asmlinkage int sys_fork(unsigned long r4, unsigned long r5, |
| 381 | unsigned long r6, unsigned long r7, |
Stuart Menefy | f0bc814 | 2006-11-21 11:16:57 +0900 | [diff] [blame] | 382 | struct pt_regs __regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 383 | { |
Stuart Menefy | f0bc814 | 2006-11-21 11:16:57 +0900 | [diff] [blame] | 384 | struct pt_regs *regs = RELOC_HIDE(&__regs, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | #ifdef CONFIG_MMU |
Stuart Menefy | f0bc814 | 2006-11-21 11:16:57 +0900 | [diff] [blame] | 386 | return do_fork(SIGCHLD, regs->regs[15], regs, 0, NULL, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | #else |
| 388 | /* fork almost works, enough to trick you into looking elsewhere :-( */ |
| 389 | return -EINVAL; |
| 390 | #endif |
| 391 | } |
| 392 | |
| 393 | asmlinkage int sys_clone(unsigned long clone_flags, unsigned long newsp, |
| 394 | unsigned long parent_tidptr, |
| 395 | unsigned long child_tidptr, |
Stuart Menefy | f0bc814 | 2006-11-21 11:16:57 +0900 | [diff] [blame] | 396 | struct pt_regs __regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 397 | { |
Stuart Menefy | f0bc814 | 2006-11-21 11:16:57 +0900 | [diff] [blame] | 398 | struct pt_regs *regs = RELOC_HIDE(&__regs, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | if (!newsp) |
Stuart Menefy | f0bc814 | 2006-11-21 11:16:57 +0900 | [diff] [blame] | 400 | newsp = regs->regs[15]; |
| 401 | return do_fork(clone_flags, newsp, regs, 0, |
Paul Mundt | aec5e0e | 2006-12-25 09:51:47 +0900 | [diff] [blame] | 402 | (int __user *)parent_tidptr, |
| 403 | (int __user *)child_tidptr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | } |
| 405 | |
| 406 | /* |
| 407 | * This is trivial, and on the face of it looks like it |
| 408 | * could equally well be done in user mode. |
| 409 | * |
| 410 | * Not so, for quite unobvious reasons - register pressure. |
| 411 | * In user mode vfork() cannot have a stack frame, and if |
| 412 | * done by calling the "clone()" system call directly, you |
| 413 | * do not have enough call-clobbered registers to hold all |
| 414 | * the information you need. |
| 415 | */ |
| 416 | asmlinkage int sys_vfork(unsigned long r4, unsigned long r5, |
| 417 | unsigned long r6, unsigned long r7, |
Stuart Menefy | f0bc814 | 2006-11-21 11:16:57 +0900 | [diff] [blame] | 418 | struct pt_regs __regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | { |
Stuart Menefy | f0bc814 | 2006-11-21 11:16:57 +0900 | [diff] [blame] | 420 | struct pt_regs *regs = RELOC_HIDE(&__regs, 0); |
| 421 | return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->regs[15], regs, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | 0, NULL, NULL); |
| 423 | } |
| 424 | |
| 425 | /* |
| 426 | * sys_execve() executes a new program. |
| 427 | */ |
| 428 | asmlinkage int sys_execve(char *ufilename, char **uargv, |
| 429 | char **uenvp, unsigned long r7, |
Stuart Menefy | f0bc814 | 2006-11-21 11:16:57 +0900 | [diff] [blame] | 430 | struct pt_regs __regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | { |
Stuart Menefy | f0bc814 | 2006-11-21 11:16:57 +0900 | [diff] [blame] | 432 | struct pt_regs *regs = RELOC_HIDE(&__regs, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | int error; |
| 434 | char *filename; |
| 435 | |
| 436 | filename = getname((char __user *)ufilename); |
| 437 | error = PTR_ERR(filename); |
| 438 | if (IS_ERR(filename)) |
| 439 | goto out; |
| 440 | |
| 441 | error = do_execve(filename, |
| 442 | (char __user * __user *)uargv, |
| 443 | (char __user * __user *)uenvp, |
Stuart Menefy | f0bc814 | 2006-11-21 11:16:57 +0900 | [diff] [blame] | 444 | regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | if (error == 0) { |
| 446 | task_lock(current); |
| 447 | current->ptrace &= ~PT_DTRACE; |
| 448 | task_unlock(current); |
| 449 | } |
| 450 | putname(filename); |
| 451 | out: |
| 452 | return error; |
| 453 | } |
| 454 | |
| 455 | unsigned long get_wchan(struct task_struct *p) |
| 456 | { |
| 457 | unsigned long schedule_frame; |
| 458 | unsigned long pc; |
| 459 | |
| 460 | if (!p || p == current || p->state == TASK_RUNNING) |
| 461 | return 0; |
| 462 | |
| 463 | /* |
| 464 | * The same comment as on the Alpha applies here, too ... |
| 465 | */ |
| 466 | pc = thread_saved_pc(p); |
| 467 | if (in_sched_functions(pc)) { |
Paul Mundt | b652c23 | 2006-12-08 17:46:29 +0900 | [diff] [blame] | 468 | schedule_frame = (unsigned long)p->thread.sp; |
| 469 | return ((unsigned long *)schedule_frame)[21]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | } |
Paul Mundt | b652c23 | 2006-12-08 17:46:29 +0900 | [diff] [blame] | 471 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | return pc; |
| 473 | } |
| 474 | |
Stuart Menefy | f0bc814 | 2006-11-21 11:16:57 +0900 | [diff] [blame] | 475 | asmlinkage void break_point_trap(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | { |
| 477 | /* Clear tracing. */ |
Ryusuke Sakato | 8ae91b9 | 2006-10-12 12:16:13 +0900 | [diff] [blame] | 478 | #if defined(CONFIG_CPU_SH4A) |
| 479 | ctrl_outl(UBC_CBR_INIT, UBC_CBR0); |
| 480 | ctrl_outl(UBC_CRR_INIT, UBC_CRR0); |
| 481 | #else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | ctrl_outw(0, UBC_BBRA); |
| 483 | ctrl_outw(0, UBC_BBRB); |
Ryusuke Sakato | 8ae91b9 | 2006-10-12 12:16:13 +0900 | [diff] [blame] | 484 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | current->thread.ubc_pc = 0; |
| 486 | ubc_usercnt -= 1; |
| 487 | |
| 488 | force_sig(SIGTRAP, current); |
| 489 | } |
| 490 | |
Paul Mundt | f413d0d | 2006-12-13 17:40:05 +0900 | [diff] [blame] | 491 | /* |
| 492 | * Generic trap handler. |
| 493 | */ |
| 494 | asmlinkage void debug_trap_handler(unsigned long r4, unsigned long r5, |
| 495 | unsigned long r6, unsigned long r7, |
| 496 | struct pt_regs __regs) |
| 497 | { |
| 498 | struct pt_regs *regs = RELOC_HIDE(&__regs, 0); |
| 499 | |
| 500 | /* Rewind */ |
Paul Mundt | 53f983a | 2007-05-08 15:31:48 +0900 | [diff] [blame^] | 501 | regs->pc -= instruction_size(ctrl_inw(regs->pc - 4)); |
Paul Mundt | f413d0d | 2006-12-13 17:40:05 +0900 | [diff] [blame] | 502 | |
Paul Mundt | 3a2e117 | 2007-05-01 16:33:10 +0900 | [diff] [blame] | 503 | if (notify_die(DIE_TRAP, regs, regs->tra & 0xff, |
| 504 | SIGTRAP) == NOTIFY_STOP) |
| 505 | return; |
| 506 | |
Paul Mundt | f413d0d | 2006-12-13 17:40:05 +0900 | [diff] [blame] | 507 | force_sig(SIGTRAP, current); |
| 508 | } |
| 509 | |
| 510 | /* |
| 511 | * Special handler for BUG() traps. |
| 512 | */ |
| 513 | asmlinkage void bug_trap_handler(unsigned long r4, unsigned long r5, |
| 514 | unsigned long r6, unsigned long r7, |
| 515 | struct pt_regs __regs) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | { |
Stuart Menefy | f0bc814 | 2006-11-21 11:16:57 +0900 | [diff] [blame] | 517 | struct pt_regs *regs = RELOC_HIDE(&__regs, 0); |
| 518 | |
Paul Mundt | dc34d31 | 2006-12-08 17:41:43 +0900 | [diff] [blame] | 519 | /* Rewind */ |
Paul Mundt | 53f983a | 2007-05-08 15:31:48 +0900 | [diff] [blame^] | 520 | regs->pc -= instruction_size(ctrl_inw(regs->pc - 4)); |
Paul Mundt | dc34d31 | 2006-12-08 17:41:43 +0900 | [diff] [blame] | 521 | |
Paul Mundt | 3a2e117 | 2007-05-01 16:33:10 +0900 | [diff] [blame] | 522 | if (notify_die(DIE_TRAP, regs, TRAPA_BUG_OPCODE & 0xff, |
| 523 | SIGTRAP) == NOTIFY_STOP) |
| 524 | return; |
| 525 | |
Paul Mundt | dc34d31 | 2006-12-08 17:41:43 +0900 | [diff] [blame] | 526 | #ifdef CONFIG_BUG |
| 527 | if (__kernel_text_address(instruction_pointer(regs))) { |
| 528 | u16 insn = *(u16 *)instruction_pointer(regs); |
| 529 | if (insn == TRAPA_BUG_OPCODE) |
| 530 | handle_BUG(regs); |
| 531 | } |
| 532 | #endif |
| 533 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 534 | force_sig(SIGTRAP, current); |
| 535 | } |