blob: 9005b2f12aaa1ec885bb70962ea07203e3a21c0e [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 Mundt3a2e1172007-05-01 16:33:10 +090018#include <asm/kdebug.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <asm/uaccess.h>
20#include <asm/mmu_context.h>
Paul Mundt5f8c9902007-05-08 11:55:21 +090021#include <asm/pgalloc.h>
Paul Mundtbd079992007-05-08 14:50:59 +090022#include <asm/system.h>
Paul Mundtb5233d02006-09-20 03:25:34 +090023#include <asm/ubc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Paul Mundtaec5e0e2006-12-25 09:51:47 +090025static int hlt_counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026int ubc_usercnt = 0;
27
28#define HARD_IDLE_TIMEOUT (HZ / 3)
29
Paul Mundta3310bb2006-02-01 03:06:08 -080030void (*pm_idle)(void);
Paul Mundta3310bb2006-02-01 03:06:08 -080031void (*pm_power_off)(void);
32EXPORT_SYMBOL(pm_power_off);
33
Linus Torvalds1da177e2005-04-16 15:20:36 -070034void disable_hlt(void)
35{
36 hlt_counter++;
37}
Linus Torvalds1da177e2005-04-16 15:20:36 -070038EXPORT_SYMBOL(disable_hlt);
39
40void enable_hlt(void)
41{
42 hlt_counter--;
43}
Linus Torvalds1da177e2005-04-16 15:20:36 -070044EXPORT_SYMBOL(enable_hlt);
45
Paul Mundta3310bb2006-02-01 03:06:08 -080046void default_idle(void)
47{
48 if (!hlt_counter)
49 cpu_sleep();
50 else
51 cpu_relax();
52}
53
Nick Piggin64c7c8f2005-11-08 21:39:04 -080054void cpu_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055{
56 /* endless idle loop with no priority at all */
57 while (1) {
Paul Mundta3310bb2006-02-01 03:06:08 -080058 void (*idle)(void) = pm_idle;
59
60 if (!idle)
61 idle = default_idle;
62
63 while (!need_resched())
64 idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Nick Piggin5bfb5d62005-11-08 21:39:01 -080066 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 schedule();
Nick Piggin5bfb5d62005-11-08 21:39:01 -080068 preempt_disable();
Paul Mundt5f8c9902007-05-08 11:55:21 +090069 check_pgt_cache();
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 }
71}
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073void 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 Torvalds1da177e2005-04-16 15:20:36 -070080void machine_halt(void)
81{
Paul Mundta3310bb2006-02-01 03:06:08 -080082 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 while (1)
85 cpu_sleep();
86}
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088void machine_power_off(void)
89{
Paul Mundta3310bb2006-02-01 03:06:08 -080090 if (pm_power_off)
91 pm_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094void show_regs(struct pt_regs * regs)
95{
96 printk("\n");
97 printk("Pid : %d, Comm: %20s\n", current->pid, current->comm);
Paul Mundt6b002232006-10-12 17:07:45 +090098 print_symbol("PC is at %s\n", instruction_pointer(regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 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 Mundt6b002232006-10-12 17:07:45 +0900123 show_trace(NULL, (unsigned long *)regs->regs[15], regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
126/*
127 * Create a kernel thread
128 */
129
130/*
131 * This is the mechanism for creating a new kernel thread.
132 *
133 */
134extern 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 Mundtaec5e0e2006-12-25 09:51:47 +0900145/* Don't use this in BL=1(cli). Or else, CPU resets! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900147{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 struct pt_regs regs;
149
150 memset(&regs, 0, sizeof(regs));
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900151 regs.regs[4] = (unsigned long)arg;
152 regs.regs[5] = (unsigned long)fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900154 regs.pc = (unsigned long)kernel_thread_helper;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 regs.sr = (1 << 30);
156
157 /* Ok, create the new process.. */
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900158 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0,
159 &regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
162/*
163 * Free current thread data structures etc..
164 */
165void exit_thread(void)
166{
167 if (current->thread.ubc_pc) {
168 current->thread.ubc_pc = 0;
169 ubc_usercnt -= 1;
170 }
171}
172
173void flush_thread(void)
174{
175#if defined(CONFIG_SH_FPU)
176 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 /* Forget lazy FPU state */
Al Viro3cf0f4e2006-01-12 01:05:44 -0800178 clear_fpu(tsk, task_pt_regs(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 clear_used_math();
180#endif
181}
182
183void release_thread(struct task_struct *dead_task)
184{
185 /* do nothing */
186}
187
188/* Fill in the fpu structure for a core dump.. */
189int 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 Mundtaec5e0e2006-12-25 09:51:47 +0900206/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 * Capture the user space registers if the task is not running (in user space)
208 */
209int dump_task_regs(struct task_struct *tsk, elf_gregset_t *regs)
210{
211 struct pt_regs ptregs;
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900212
Al Viro3cf0f4e2006-01-12 01:05:44 -0800213 ptregs = *task_pt_regs(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 elf_core_copy_regs(regs, &ptregs);
215
216 return 1;
217}
218
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900219int dump_task_fpu(struct task_struct *tsk, elf_fpregset_t *fpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
221 int fpvalid = 0;
222
223#if defined(CONFIG_SH_FPU)
224 fpvalid = !!tsk_used_math(tsk);
225 if (fpvalid) {
Al Viro3cf0f4e2006-01-12 01:05:44 -0800226 unlazy_fpu(tsk, task_pt_regs(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 memcpy(fpu, &tsk->thread.fpu.hard, sizeof(*fpu));
228 }
229#endif
230
231 return fpvalid;
232}
233
234asmlinkage void ret_from_fork(void);
235
236int 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 Mundt2991be72006-09-27 17:07:07 +0900240 struct thread_info *ti = task_thread_info(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 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 Viro3cf0f4e2006-01-12 01:05:44 -0800250 childregs = task_pt_regs(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 *childregs = *regs;
252
253 if (user_mode(regs)) {
254 childregs->regs[15] = usp;
Paul Mundt2991be72006-09-27 17:07:07 +0900255 ti->addr_limit = USER_DS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 } else {
Hideo Saitoe6bcf562007-02-28 18:35:42 +0900257 childregs->regs[15] = (unsigned long)childregs;
Paul Mundt2991be72006-09-27 17:07:07 +0900258 ti->addr_limit = KERNEL_DS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 }
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900260
Hideo Saitoe6bcf562007-02-28 18:35:42 +0900261 if (clone_flags & CLONE_SETTLS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 childregs->gbr = childregs->regs[0];
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 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 Torvalds1da177e2005-04-16 15:20:36 -0700274/* Tracing by user break controller. */
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900275static void ubc_set_tracing(int asid, unsigned long pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900277#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 Mundtaec5e0e2006-12-25 09:51:47 +0900291 /* Read UBC register that we wrote last, for checking update */
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900292 val = ctrl_inl(UBC_CRR0);
293
294#else /* CONFIG_CPU_SH4A */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 ctrl_outl(pc, UBC_BARA);
296
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900297#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 /* We don't have any ASID settings for the SH-2! */
Paul Mundt11c19652006-12-25 10:19:56 +0900299 if (current_cpu_data.type != CPU_SH7604)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 ctrl_outb(asid, UBC_BASRA);
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900301#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 ctrl_outl(0, UBC_BAMRA);
304
Paul Mundt11c19652006-12-25 10:19:56 +0900305 if (current_cpu_data.type == CPU_SH7729 ||
Paul Mundt3a2e1172007-05-01 16:33:10 +0900306 current_cpu_data.type == CPU_SH7710 ||
307 current_cpu_data.type == CPU_SH7712) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 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 Sakato8ae91b92006-10-12 12:16:13 +0900314#endif /* CONFIG_CPU_SH4A */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315}
316
317/*
318 * switch_to(x,y) should switch tasks from x to y.
319 *
320 */
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900321struct task_struct *__switch_to(struct task_struct *prev,
322 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
324#if defined(CONFIG_SH_FPU)
Al Viro3cf0f4e2006-01-12 01:05:44 -0800325 unlazy_fpu(prev, task_pt_regs(prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326#endif
327
328#ifdef CONFIG_PREEMPT
329 {
330 unsigned long flags;
331 struct pt_regs *regs;
332
333 local_irq_save(flags);
Al Viro3cf0f4e2006-01-12 01:05:44 -0800334 regs = task_pt_regs(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 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 Satoa2d1a5f2006-09-27 17:25:07 +0900348#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 /*
350 * Restore the kernel mode register
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900351 * k7 (r7_bank1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 */
353 asm volatile("ldc %0, r7_bank"
354 : /* no output */
Al Virocafcfca2006-01-12 01:05:45 -0800355 : "r" (task_thread_info(next)));
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900356#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 /* 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 Satoa2d1a5f2006-09-27 17:25:07 +0900362 int asid = 0;
363#ifdef CONFIG_MMU
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900364 asid |= cpu_asid(smp_processor_id(), next->mm);
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900365#endif
366 ubc_set_tracing(asid, next->thread.ubc_pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 } else {
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900368#if defined(CONFIG_CPU_SH4A)
369 ctrl_outl(UBC_CBR_INIT, UBC_CBR0);
370 ctrl_outl(UBC_CRR_INIT, UBC_CRR0);
371#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 ctrl_outw(0, UBC_BBRA);
373 ctrl_outw(0, UBC_BBRB);
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900374#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 return prev;
378}
379
380asmlinkage int sys_fork(unsigned long r4, unsigned long r5,
381 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900382 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900384 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#ifdef CONFIG_MMU
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900386 return do_fork(SIGCHLD, regs->regs[15], regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387#else
388 /* fork almost works, enough to trick you into looking elsewhere :-( */
389 return -EINVAL;
390#endif
391}
392
393asmlinkage int sys_clone(unsigned long clone_flags, unsigned long newsp,
394 unsigned long parent_tidptr,
395 unsigned long child_tidptr,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900396 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900398 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 if (!newsp)
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900400 newsp = regs->regs[15];
401 return do_fork(clone_flags, newsp, regs, 0,
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900402 (int __user *)parent_tidptr,
403 (int __user *)child_tidptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404}
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 */
416asmlinkage int sys_vfork(unsigned long r4, unsigned long r5,
417 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900418 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900420 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
421 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->regs[15], regs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 0, NULL, NULL);
423}
424
425/*
426 * sys_execve() executes a new program.
427 */
428asmlinkage int sys_execve(char *ufilename, char **uargv,
429 char **uenvp, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900430 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900432 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 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 Menefyf0bc8142006-11-21 11:16:57 +0900444 regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (error == 0) {
446 task_lock(current);
447 current->ptrace &= ~PT_DTRACE;
448 task_unlock(current);
449 }
450 putname(filename);
451out:
452 return error;
453}
454
455unsigned 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 Mundtb652c232006-12-08 17:46:29 +0900468 schedule_frame = (unsigned long)p->thread.sp;
469 return ((unsigned long *)schedule_frame)[21];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
Paul Mundtb652c232006-12-08 17:46:29 +0900471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 return pc;
473}
474
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900475asmlinkage void break_point_trap(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 /* Clear tracing. */
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900478#if defined(CONFIG_CPU_SH4A)
479 ctrl_outl(UBC_CBR_INIT, UBC_CBR0);
480 ctrl_outl(UBC_CRR_INIT, UBC_CRR0);
481#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 ctrl_outw(0, UBC_BBRA);
483 ctrl_outw(0, UBC_BBRB);
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900484#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 current->thread.ubc_pc = 0;
486 ubc_usercnt -= 1;
487
488 force_sig(SIGTRAP, current);
489}
490
Paul Mundtf413d0d2006-12-13 17:40:05 +0900491/*
492 * Generic trap handler.
493 */
494asmlinkage 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 Mundt53f983a2007-05-08 15:31:48 +0900501 regs->pc -= instruction_size(ctrl_inw(regs->pc - 4));
Paul Mundtf413d0d2006-12-13 17:40:05 +0900502
Paul Mundt3a2e1172007-05-01 16:33:10 +0900503 if (notify_die(DIE_TRAP, regs, regs->tra & 0xff,
504 SIGTRAP) == NOTIFY_STOP)
505 return;
506
Paul Mundtf413d0d2006-12-13 17:40:05 +0900507 force_sig(SIGTRAP, current);
508}
509
510/*
511 * Special handler for BUG() traps.
512 */
513asmlinkage void bug_trap_handler(unsigned long r4, unsigned long r5,
514 unsigned long r6, unsigned long r7,
515 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900517 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
518
Paul Mundtdc34d312006-12-08 17:41:43 +0900519 /* Rewind */
Paul Mundt53f983a2007-05-08 15:31:48 +0900520 regs->pc -= instruction_size(ctrl_inw(regs->pc - 4));
Paul Mundtdc34d312006-12-08 17:41:43 +0900521
Paul Mundt3a2e1172007-05-01 16:33:10 +0900522 if (notify_die(DIE_TRAP, regs, TRAPA_BUG_OPCODE & 0xff,
523 SIGTRAP) == NOTIFY_STOP)
524 return;
525
Paul Mundtdc34d312006-12-08 17:41:43 +0900526#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 Torvalds1da177e2005-04-16 15:20:36 -0700534 force_sig(SIGTRAP, current);
535}