blob: 6b4f5748d0be682a2b6334ca7d6f5ccc406be271 [file] [log] [blame]
Paul Mundtaec5e0e2006-12-25 09:51:47 +09001/*
2 * arch/sh/kernel/process.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Paul Mundtaec5e0e2006-12-25 09:51:47 +09004 * This file handles the architecture-dependent parts of process handling..
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Copyright (C) 1995 Linus Torvalds
7 *
8 * SuperH version: Copyright (C) 1999, 2000 Niibe Yutaka & Kaz Kojima
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +09009 * Copyright (C) 2006 Lineo Solutions Inc. support SH4A UBC
Paul Mundt3a2e1172007-05-01 16:33:10 +090010 * Copyright (C) 2002 - 2007 Paul Mundt
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/mm.h>
14#include <linux/elfcore.h>
Paul Mundta3310bb2006-02-01 03:06:08 -080015#include <linux/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/kallsyms.h>
Paul Mundta3310bb2006-02-01 03:06:08 -080017#include <linux/kexec.h>
Paul Mundtb118ca52007-05-09 10:55:38 +090018#include <linux/kdebug.h>
Paul Mundt57be2b42007-05-09 17:33:24 +090019#include <linux/tick.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <asm/uaccess.h>
21#include <asm/mmu_context.h>
Paul Mundt5f8c9902007-05-08 11:55:21 +090022#include <asm/pgalloc.h>
Paul Mundtbd079992007-05-08 14:50:59 +090023#include <asm/system.h>
Paul Mundtb5233d02006-09-20 03:25:34 +090024#include <asm/ubc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Paul Mundtaec5e0e2006-12-25 09:51:47 +090026static int hlt_counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027int ubc_usercnt = 0;
28
29#define HARD_IDLE_TIMEOUT (HZ / 3)
30
Paul Mundta3310bb2006-02-01 03:06:08 -080031void (*pm_idle)(void);
Paul Mundta3310bb2006-02-01 03:06:08 -080032void (*pm_power_off)(void);
33EXPORT_SYMBOL(pm_power_off);
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035void disable_hlt(void)
36{
37 hlt_counter++;
38}
Linus Torvalds1da177e2005-04-16 15:20:36 -070039EXPORT_SYMBOL(disable_hlt);
40
41void enable_hlt(void)
42{
43 hlt_counter--;
44}
Linus Torvalds1da177e2005-04-16 15:20:36 -070045EXPORT_SYMBOL(enable_hlt);
46
Paul Mundta3310bb2006-02-01 03:06:08 -080047void default_idle(void)
48{
49 if (!hlt_counter)
50 cpu_sleep();
51 else
52 cpu_relax();
53}
54
Nick Piggin64c7c8f2005-11-08 21:39:04 -080055void cpu_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
57 /* endless idle loop with no priority at all */
58 while (1) {
Paul Mundta3310bb2006-02-01 03:06:08 -080059 void (*idle)(void) = pm_idle;
60
61 if (!idle)
62 idle = default_idle;
63
Paul Mundt57be2b42007-05-09 17:33:24 +090064 tick_nohz_stop_sched_tick();
Paul Mundta3310bb2006-02-01 03:06:08 -080065 while (!need_resched())
66 idle();
Paul Mundt57be2b42007-05-09 17:33:24 +090067 tick_nohz_restart_sched_tick();
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Nick Piggin5bfb5d62005-11-08 21:39:01 -080069 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 schedule();
Nick Piggin5bfb5d62005-11-08 21:39:01 -080071 preempt_disable();
Paul Mundt5f8c9902007-05-08 11:55:21 +090072 check_pgt_cache();
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 }
74}
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076void machine_restart(char * __unused)
77{
78 /* SR.BL=1 and invoke address error to let CPU reset (manual reset) */
79 asm volatile("ldc %0, sr\n\t"
80 "mov.l @%1, %0" : : "r" (0x10000000), "r" (0x80000001));
81}
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083void machine_halt(void)
84{
Paul Mundta3310bb2006-02-01 03:06:08 -080085 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 while (1)
88 cpu_sleep();
89}
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091void machine_power_off(void)
92{
Paul Mundta3310bb2006-02-01 03:06:08 -080093 if (pm_power_off)
94 pm_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097void show_regs(struct pt_regs * regs)
98{
99 printk("\n");
100 printk("Pid : %d, Comm: %20s\n", current->pid, current->comm);
Paul Mundt6b002232006-10-12 17:07:45 +0900101 print_symbol("PC is at %s\n", instruction_pointer(regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 printk("PC : %08lx SP : %08lx SR : %08lx ",
103 regs->pc, regs->regs[15], regs->sr);
104#ifdef CONFIG_MMU
105 printk("TEA : %08x ", ctrl_inl(MMU_TEA));
106#else
107 printk(" ");
108#endif
109 printk("%s\n", print_tainted());
110
111 printk("R0 : %08lx R1 : %08lx R2 : %08lx R3 : %08lx\n",
112 regs->regs[0],regs->regs[1],
113 regs->regs[2],regs->regs[3]);
114 printk("R4 : %08lx R5 : %08lx R6 : %08lx R7 : %08lx\n",
115 regs->regs[4],regs->regs[5],
116 regs->regs[6],regs->regs[7]);
117 printk("R8 : %08lx R9 : %08lx R10 : %08lx R11 : %08lx\n",
118 regs->regs[8],regs->regs[9],
119 regs->regs[10],regs->regs[11]);
120 printk("R12 : %08lx R13 : %08lx R14 : %08lx\n",
121 regs->regs[12],regs->regs[13],
122 regs->regs[14]);
123 printk("MACH: %08lx MACL: %08lx GBR : %08lx PR : %08lx\n",
124 regs->mach, regs->macl, regs->gbr, regs->pr);
125
Paul Mundt6b002232006-10-12 17:07:45 +0900126 show_trace(NULL, (unsigned long *)regs->regs[15], regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
129/*
130 * Create a kernel thread
131 */
132
133/*
134 * This is the mechanism for creating a new kernel thread.
135 *
136 */
137extern void kernel_thread_helper(void);
138__asm__(".align 5\n"
139 "kernel_thread_helper:\n\t"
140 "jsr @r5\n\t"
141 " nop\n\t"
142 "mov.l 1f, r1\n\t"
143 "jsr @r1\n\t"
144 " mov r0, r4\n\t"
145 ".align 2\n\t"
146 "1:.long do_exit");
147
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900148/* Don't use this in BL=1(cli). Or else, CPU resets! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900150{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 struct pt_regs regs;
152
153 memset(&regs, 0, sizeof(regs));
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900154 regs.regs[4] = (unsigned long)arg;
155 regs.regs[5] = (unsigned long)fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900157 regs.pc = (unsigned long)kernel_thread_helper;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 regs.sr = (1 << 30);
159
160 /* Ok, create the new process.. */
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900161 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0,
162 &regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
165/*
166 * Free current thread data structures etc..
167 */
168void exit_thread(void)
169{
170 if (current->thread.ubc_pc) {
171 current->thread.ubc_pc = 0;
172 ubc_usercnt -= 1;
173 }
174}
175
176void flush_thread(void)
177{
178#if defined(CONFIG_SH_FPU)
179 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 /* Forget lazy FPU state */
Al Viro3cf0f4e2006-01-12 01:05:44 -0800181 clear_fpu(tsk, task_pt_regs(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 clear_used_math();
183#endif
184}
185
186void release_thread(struct task_struct *dead_task)
187{
188 /* do nothing */
189}
190
191/* Fill in the fpu structure for a core dump.. */
192int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
193{
194 int fpvalid = 0;
195
196#if defined(CONFIG_SH_FPU)
197 struct task_struct *tsk = current;
198
199 fpvalid = !!tsk_used_math(tsk);
200 if (fpvalid) {
201 unlazy_fpu(tsk, regs);
202 memcpy(fpu, &tsk->thread.fpu.hard, sizeof(*fpu));
203 }
204#endif
205
206 return fpvalid;
207}
208
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900209/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 * Capture the user space registers if the task is not running (in user space)
211 */
212int dump_task_regs(struct task_struct *tsk, elf_gregset_t *regs)
213{
214 struct pt_regs ptregs;
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900215
Al Viro3cf0f4e2006-01-12 01:05:44 -0800216 ptregs = *task_pt_regs(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 elf_core_copy_regs(regs, &ptregs);
218
219 return 1;
220}
221
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900222int dump_task_fpu(struct task_struct *tsk, elf_fpregset_t *fpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223{
224 int fpvalid = 0;
225
226#if defined(CONFIG_SH_FPU)
227 fpvalid = !!tsk_used_math(tsk);
228 if (fpvalid) {
Al Viro3cf0f4e2006-01-12 01:05:44 -0800229 unlazy_fpu(tsk, task_pt_regs(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 memcpy(fpu, &tsk->thread.fpu.hard, sizeof(*fpu));
231 }
232#endif
233
234 return fpvalid;
235}
236
237asmlinkage void ret_from_fork(void);
238
239int copy_thread(int nr, unsigned long clone_flags, unsigned long usp,
240 unsigned long unused,
241 struct task_struct *p, struct pt_regs *regs)
242{
Paul Mundt2991be72006-09-27 17:07:07 +0900243 struct thread_info *ti = task_thread_info(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 struct pt_regs *childregs;
245#if defined(CONFIG_SH_FPU)
246 struct task_struct *tsk = current;
247
248 unlazy_fpu(tsk, regs);
249 p->thread.fpu = tsk->thread.fpu;
250 copy_to_stopped_child_used_math(p);
251#endif
252
Al Viro3cf0f4e2006-01-12 01:05:44 -0800253 childregs = task_pt_regs(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 *childregs = *regs;
255
256 if (user_mode(regs)) {
257 childregs->regs[15] = usp;
Paul Mundt2991be72006-09-27 17:07:07 +0900258 ti->addr_limit = USER_DS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 } else {
Hideo Saitoe6bcf562007-02-28 18:35:42 +0900260 childregs->regs[15] = (unsigned long)childregs;
Paul Mundt2991be72006-09-27 17:07:07 +0900261 ti->addr_limit = KERNEL_DS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900263
Hideo Saitoe6bcf562007-02-28 18:35:42 +0900264 if (clone_flags & CLONE_SETTLS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 childregs->gbr = childregs->regs[0];
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 childregs->regs[0] = 0; /* Set return value for child */
268
269 p->thread.sp = (unsigned long) childregs;
270 p->thread.pc = (unsigned long) ret_from_fork;
271
272 p->thread.ubc_pc = 0;
273
274 return 0;
275}
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277/* Tracing by user break controller. */
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900278static void ubc_set_tracing(int asid, unsigned long pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900280#if defined(CONFIG_CPU_SH4A)
281 unsigned long val;
282
283 val = (UBC_CBR_ID_INST | UBC_CBR_RW_READ | UBC_CBR_CE);
284 val |= (UBC_CBR_AIE | UBC_CBR_AIV_SET(asid));
285
286 ctrl_outl(val, UBC_CBR0);
287 ctrl_outl(pc, UBC_CAR0);
288 ctrl_outl(0x0, UBC_CAMR0);
289 ctrl_outl(0x0, UBC_CBCR);
290
291 val = (UBC_CRR_RES | UBC_CRR_PCB | UBC_CRR_BIE);
292 ctrl_outl(val, UBC_CRR0);
293
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900294 /* Read UBC register that we wrote last, for checking update */
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900295 val = ctrl_inl(UBC_CRR0);
296
297#else /* CONFIG_CPU_SH4A */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 ctrl_outl(pc, UBC_BARA);
299
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900300#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 /* We don't have any ASID settings for the SH-2! */
Paul Mundt11c19652006-12-25 10:19:56 +0900302 if (current_cpu_data.type != CPU_SH7604)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 ctrl_outb(asid, UBC_BASRA);
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900304#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 ctrl_outl(0, UBC_BAMRA);
307
Paul Mundt11c19652006-12-25 10:19:56 +0900308 if (current_cpu_data.type == CPU_SH7729 ||
Paul Mundt3a2e1172007-05-01 16:33:10 +0900309 current_cpu_data.type == CPU_SH7710 ||
310 current_cpu_data.type == CPU_SH7712) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 ctrl_outw(BBR_INST | BBR_READ | BBR_CPU, UBC_BBRA);
312 ctrl_outl(BRCR_PCBA | BRCR_PCTE, UBC_BRCR);
313 } else {
314 ctrl_outw(BBR_INST | BBR_READ, UBC_BBRA);
315 ctrl_outw(BRCR_PCBA, UBC_BRCR);
316 }
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900317#endif /* CONFIG_CPU_SH4A */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318}
319
320/*
321 * switch_to(x,y) should switch tasks from x to y.
322 *
323 */
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900324struct task_struct *__switch_to(struct task_struct *prev,
325 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327#if defined(CONFIG_SH_FPU)
Al Viro3cf0f4e2006-01-12 01:05:44 -0800328 unlazy_fpu(prev, task_pt_regs(prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329#endif
330
331#ifdef CONFIG_PREEMPT
332 {
333 unsigned long flags;
334 struct pt_regs *regs;
335
336 local_irq_save(flags);
Al Viro3cf0f4e2006-01-12 01:05:44 -0800337 regs = task_pt_regs(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (user_mode(regs) && regs->regs[15] >= 0xc0000000) {
339 int offset = (int)regs->regs[15];
340
341 /* Reset stack pointer: clear critical region mark */
342 regs->regs[15] = regs->regs[1];
343 if (regs->pc < regs->regs[0])
344 /* Go to rewind point */
345 regs->pc = regs->regs[0] + offset;
346 }
347 local_irq_restore(flags);
348 }
349#endif
350
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900351#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /*
353 * Restore the kernel mode register
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900354 * k7 (r7_bank1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 */
356 asm volatile("ldc %0, r7_bank"
357 : /* no output */
Al Virocafcfca2006-01-12 01:05:45 -0800358 : "r" (task_thread_info(next)));
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900359#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 /* If no tasks are using the UBC, we're done */
362 if (ubc_usercnt == 0)
363 /* If no tasks are using the UBC, we're done */;
364 else if (next->thread.ubc_pc && next->mm) {
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900365 int asid = 0;
366#ifdef CONFIG_MMU
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900367 asid |= cpu_asid(smp_processor_id(), next->mm);
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900368#endif
369 ubc_set_tracing(asid, next->thread.ubc_pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 } else {
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900371#if defined(CONFIG_CPU_SH4A)
372 ctrl_outl(UBC_CBR_INIT, UBC_CBR0);
373 ctrl_outl(UBC_CRR_INIT, UBC_CRR0);
374#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 ctrl_outw(0, UBC_BBRA);
376 ctrl_outw(0, UBC_BBRB);
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900377#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 return prev;
381}
382
383asmlinkage int sys_fork(unsigned long r4, unsigned long r5,
384 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900385 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900387 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388#ifdef CONFIG_MMU
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900389 return do_fork(SIGCHLD, regs->regs[15], regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#else
391 /* fork almost works, enough to trick you into looking elsewhere :-( */
392 return -EINVAL;
393#endif
394}
395
396asmlinkage int sys_clone(unsigned long clone_flags, unsigned long newsp,
397 unsigned long parent_tidptr,
398 unsigned long child_tidptr,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900399 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900401 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 if (!newsp)
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900403 newsp = regs->regs[15];
404 return do_fork(clone_flags, newsp, regs, 0,
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900405 (int __user *)parent_tidptr,
406 (int __user *)child_tidptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
408
409/*
410 * This is trivial, and on the face of it looks like it
411 * could equally well be done in user mode.
412 *
413 * Not so, for quite unobvious reasons - register pressure.
414 * In user mode vfork() cannot have a stack frame, and if
415 * done by calling the "clone()" system call directly, you
416 * do not have enough call-clobbered registers to hold all
417 * the information you need.
418 */
419asmlinkage int sys_vfork(unsigned long r4, unsigned long r5,
420 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900421 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900423 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
424 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->regs[15], regs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 0, NULL, NULL);
426}
427
428/*
429 * sys_execve() executes a new program.
430 */
431asmlinkage int sys_execve(char *ufilename, char **uargv,
432 char **uenvp, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900433 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900435 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 int error;
437 char *filename;
438
439 filename = getname((char __user *)ufilename);
440 error = PTR_ERR(filename);
441 if (IS_ERR(filename))
442 goto out;
443
444 error = do_execve(filename,
445 (char __user * __user *)uargv,
446 (char __user * __user *)uenvp,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900447 regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 if (error == 0) {
449 task_lock(current);
450 current->ptrace &= ~PT_DTRACE;
451 task_unlock(current);
452 }
453 putname(filename);
454out:
455 return error;
456}
457
458unsigned long get_wchan(struct task_struct *p)
459{
460 unsigned long schedule_frame;
461 unsigned long pc;
462
463 if (!p || p == current || p->state == TASK_RUNNING)
464 return 0;
465
466 /*
467 * The same comment as on the Alpha applies here, too ...
468 */
469 pc = thread_saved_pc(p);
470 if (in_sched_functions(pc)) {
Paul Mundtb652c232006-12-08 17:46:29 +0900471 schedule_frame = (unsigned long)p->thread.sp;
472 return ((unsigned long *)schedule_frame)[21];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
Paul Mundtb652c232006-12-08 17:46:29 +0900474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 return pc;
476}
477
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900478asmlinkage void break_point_trap(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
480 /* Clear tracing. */
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900481#if defined(CONFIG_CPU_SH4A)
482 ctrl_outl(UBC_CBR_INIT, UBC_CBR0);
483 ctrl_outl(UBC_CRR_INIT, UBC_CRR0);
484#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 ctrl_outw(0, UBC_BBRA);
486 ctrl_outw(0, UBC_BBRB);
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900487#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 current->thread.ubc_pc = 0;
489 ubc_usercnt -= 1;
490
491 force_sig(SIGTRAP, current);
492}
493
Paul Mundtf413d0d2006-12-13 17:40:05 +0900494/*
495 * Generic trap handler.
496 */
497asmlinkage void debug_trap_handler(unsigned long r4, unsigned long r5,
498 unsigned long r6, unsigned long r7,
499 struct pt_regs __regs)
500{
501 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
502
503 /* Rewind */
Paul Mundt53f983a2007-05-08 15:31:48 +0900504 regs->pc -= instruction_size(ctrl_inw(regs->pc - 4));
Paul Mundtf413d0d2006-12-13 17:40:05 +0900505
Paul Mundtb118ca52007-05-09 10:55:38 +0900506 if (notify_die(DIE_TRAP, "debug trap", regs, 0, regs->tra & 0xff,
Paul Mundt3a2e1172007-05-01 16:33:10 +0900507 SIGTRAP) == NOTIFY_STOP)
508 return;
509
Paul Mundtf413d0d2006-12-13 17:40:05 +0900510 force_sig(SIGTRAP, current);
511}
512
513/*
514 * Special handler for BUG() traps.
515 */
516asmlinkage void bug_trap_handler(unsigned long r4, unsigned long r5,
517 unsigned long r6, unsigned long r7,
518 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900520 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
521
Paul Mundtdc34d312006-12-08 17:41:43 +0900522 /* Rewind */
Paul Mundt53f983a2007-05-08 15:31:48 +0900523 regs->pc -= instruction_size(ctrl_inw(regs->pc - 4));
Paul Mundtdc34d312006-12-08 17:41:43 +0900524
Paul Mundtb118ca52007-05-09 10:55:38 +0900525 if (notify_die(DIE_TRAP, "bug trap", regs, 0, TRAPA_BUG_OPCODE & 0xff,
Paul Mundt3a2e1172007-05-01 16:33:10 +0900526 SIGTRAP) == NOTIFY_STOP)
527 return;
528
Paul Mundtdc34d312006-12-08 17:41:43 +0900529#ifdef CONFIG_BUG
530 if (__kernel_text_address(instruction_pointer(regs))) {
531 u16 insn = *(u16 *)instruction_pointer(regs);
532 if (insn == TRAPA_BUG_OPCODE)
533 handle_BUG(regs);
534 }
535#endif
536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 force_sig(SIGTRAP, current);
538}