blob: 329b3f3051de9d53bb5b58b7418e595d11d74e09 [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 Mundtb5233d02006-09-20 03:25:34 +090021#include <asm/ubc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Paul Mundtaec5e0e2006-12-25 09:51:47 +090023static int hlt_counter;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024int ubc_usercnt = 0;
25
26#define HARD_IDLE_TIMEOUT (HZ / 3)
27
Paul Mundta3310bb2006-02-01 03:06:08 -080028void (*pm_idle)(void);
Paul Mundta3310bb2006-02-01 03:06:08 -080029void (*pm_power_off)(void);
30EXPORT_SYMBOL(pm_power_off);
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032void disable_hlt(void)
33{
34 hlt_counter++;
35}
Linus Torvalds1da177e2005-04-16 15:20:36 -070036EXPORT_SYMBOL(disable_hlt);
37
38void enable_hlt(void)
39{
40 hlt_counter--;
41}
Linus Torvalds1da177e2005-04-16 15:20:36 -070042EXPORT_SYMBOL(enable_hlt);
43
Paul Mundta3310bb2006-02-01 03:06:08 -080044void default_idle(void)
45{
46 if (!hlt_counter)
47 cpu_sleep();
48 else
49 cpu_relax();
50}
51
Nick Piggin64c7c8f2005-11-08 21:39:04 -080052void cpu_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
54 /* endless idle loop with no priority at all */
55 while (1) {
Paul Mundta3310bb2006-02-01 03:06:08 -080056 void (*idle)(void) = pm_idle;
57
58 if (!idle)
59 idle = default_idle;
60
61 while (!need_resched())
62 idle();
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Nick Piggin5bfb5d62005-11-08 21:39:01 -080064 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 schedule();
Nick Piggin5bfb5d62005-11-08 21:39:01 -080066 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 }
68}
69
Linus Torvalds1da177e2005-04-16 15:20:36 -070070void machine_restart(char * __unused)
71{
72 /* SR.BL=1 and invoke address error to let CPU reset (manual reset) */
73 asm volatile("ldc %0, sr\n\t"
74 "mov.l @%1, %0" : : "r" (0x10000000), "r" (0x80000001));
75}
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077void machine_halt(void)
78{
Paul Mundta3310bb2006-02-01 03:06:08 -080079 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 while (1)
82 cpu_sleep();
83}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085void machine_power_off(void)
86{
Paul Mundta3310bb2006-02-01 03:06:08 -080087 if (pm_power_off)
88 pm_power_off();
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091void show_regs(struct pt_regs * regs)
92{
93 printk("\n");
94 printk("Pid : %d, Comm: %20s\n", current->pid, current->comm);
Paul Mundt6b002232006-10-12 17:07:45 +090095 print_symbol("PC is at %s\n", instruction_pointer(regs));
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 printk("PC : %08lx SP : %08lx SR : %08lx ",
97 regs->pc, regs->regs[15], regs->sr);
98#ifdef CONFIG_MMU
99 printk("TEA : %08x ", ctrl_inl(MMU_TEA));
100#else
101 printk(" ");
102#endif
103 printk("%s\n", print_tainted());
104
105 printk("R0 : %08lx R1 : %08lx R2 : %08lx R3 : %08lx\n",
106 regs->regs[0],regs->regs[1],
107 regs->regs[2],regs->regs[3]);
108 printk("R4 : %08lx R5 : %08lx R6 : %08lx R7 : %08lx\n",
109 regs->regs[4],regs->regs[5],
110 regs->regs[6],regs->regs[7]);
111 printk("R8 : %08lx R9 : %08lx R10 : %08lx R11 : %08lx\n",
112 regs->regs[8],regs->regs[9],
113 regs->regs[10],regs->regs[11]);
114 printk("R12 : %08lx R13 : %08lx R14 : %08lx\n",
115 regs->regs[12],regs->regs[13],
116 regs->regs[14]);
117 printk("MACH: %08lx MACL: %08lx GBR : %08lx PR : %08lx\n",
118 regs->mach, regs->macl, regs->gbr, regs->pr);
119
Paul Mundt6b002232006-10-12 17:07:45 +0900120 show_trace(NULL, (unsigned long *)regs->regs[15], regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123/*
124 * Create a kernel thread
125 */
126
127/*
128 * This is the mechanism for creating a new kernel thread.
129 *
130 */
131extern void kernel_thread_helper(void);
132__asm__(".align 5\n"
133 "kernel_thread_helper:\n\t"
134 "jsr @r5\n\t"
135 " nop\n\t"
136 "mov.l 1f, r1\n\t"
137 "jsr @r1\n\t"
138 " mov r0, r4\n\t"
139 ".align 2\n\t"
140 "1:.long do_exit");
141
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900142/* Don't use this in BL=1(cli). Or else, CPU resets! */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900144{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 struct pt_regs regs;
146
147 memset(&regs, 0, sizeof(regs));
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900148 regs.regs[4] = (unsigned long)arg;
149 regs.regs[5] = (unsigned long)fn;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900151 regs.pc = (unsigned long)kernel_thread_helper;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 regs.sr = (1 << 30);
153
154 /* Ok, create the new process.. */
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900155 return do_fork(flags | CLONE_VM | CLONE_UNTRACED, 0,
156 &regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
159/*
160 * Free current thread data structures etc..
161 */
162void exit_thread(void)
163{
164 if (current->thread.ubc_pc) {
165 current->thread.ubc_pc = 0;
166 ubc_usercnt -= 1;
167 }
168}
169
170void flush_thread(void)
171{
172#if defined(CONFIG_SH_FPU)
173 struct task_struct *tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 /* Forget lazy FPU state */
Al Viro3cf0f4e2006-01-12 01:05:44 -0800175 clear_fpu(tsk, task_pt_regs(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 clear_used_math();
177#endif
178}
179
180void release_thread(struct task_struct *dead_task)
181{
182 /* do nothing */
183}
184
185/* Fill in the fpu structure for a core dump.. */
186int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
187{
188 int fpvalid = 0;
189
190#if defined(CONFIG_SH_FPU)
191 struct task_struct *tsk = current;
192
193 fpvalid = !!tsk_used_math(tsk);
194 if (fpvalid) {
195 unlazy_fpu(tsk, regs);
196 memcpy(fpu, &tsk->thread.fpu.hard, sizeof(*fpu));
197 }
198#endif
199
200 return fpvalid;
201}
202
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900203/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 * Capture the user space registers if the task is not running (in user space)
205 */
206int dump_task_regs(struct task_struct *tsk, elf_gregset_t *regs)
207{
208 struct pt_regs ptregs;
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900209
Al Viro3cf0f4e2006-01-12 01:05:44 -0800210 ptregs = *task_pt_regs(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 elf_core_copy_regs(regs, &ptregs);
212
213 return 1;
214}
215
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900216int dump_task_fpu(struct task_struct *tsk, elf_fpregset_t *fpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 int fpvalid = 0;
219
220#if defined(CONFIG_SH_FPU)
221 fpvalid = !!tsk_used_math(tsk);
222 if (fpvalid) {
Al Viro3cf0f4e2006-01-12 01:05:44 -0800223 unlazy_fpu(tsk, task_pt_regs(tsk));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 memcpy(fpu, &tsk->thread.fpu.hard, sizeof(*fpu));
225 }
226#endif
227
228 return fpvalid;
229}
230
231asmlinkage void ret_from_fork(void);
232
233int copy_thread(int nr, unsigned long clone_flags, unsigned long usp,
234 unsigned long unused,
235 struct task_struct *p, struct pt_regs *regs)
236{
Paul Mundt2991be72006-09-27 17:07:07 +0900237 struct thread_info *ti = task_thread_info(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 struct pt_regs *childregs;
239#if defined(CONFIG_SH_FPU)
240 struct task_struct *tsk = current;
241
242 unlazy_fpu(tsk, regs);
243 p->thread.fpu = tsk->thread.fpu;
244 copy_to_stopped_child_used_math(p);
245#endif
246
Al Viro3cf0f4e2006-01-12 01:05:44 -0800247 childregs = task_pt_regs(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 *childregs = *regs;
249
250 if (user_mode(regs)) {
251 childregs->regs[15] = usp;
Paul Mundt2991be72006-09-27 17:07:07 +0900252 ti->addr_limit = USER_DS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 } else {
Hideo Saitoe6bcf562007-02-28 18:35:42 +0900254 childregs->regs[15] = (unsigned long)childregs;
Paul Mundt2991be72006-09-27 17:07:07 +0900255 ti->addr_limit = KERNEL_DS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 }
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900257
Hideo Saitoe6bcf562007-02-28 18:35:42 +0900258 if (clone_flags & CLONE_SETTLS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 childregs->gbr = childregs->regs[0];
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 childregs->regs[0] = 0; /* Set return value for child */
262
263 p->thread.sp = (unsigned long) childregs;
264 p->thread.pc = (unsigned long) ret_from_fork;
265
266 p->thread.ubc_pc = 0;
267
268 return 0;
269}
270
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271/* Tracing by user break controller. */
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900272static void ubc_set_tracing(int asid, unsigned long pc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900274#if defined(CONFIG_CPU_SH4A)
275 unsigned long val;
276
277 val = (UBC_CBR_ID_INST | UBC_CBR_RW_READ | UBC_CBR_CE);
278 val |= (UBC_CBR_AIE | UBC_CBR_AIV_SET(asid));
279
280 ctrl_outl(val, UBC_CBR0);
281 ctrl_outl(pc, UBC_CAR0);
282 ctrl_outl(0x0, UBC_CAMR0);
283 ctrl_outl(0x0, UBC_CBCR);
284
285 val = (UBC_CRR_RES | UBC_CRR_PCB | UBC_CRR_BIE);
286 ctrl_outl(val, UBC_CRR0);
287
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900288 /* Read UBC register that we wrote last, for checking update */
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900289 val = ctrl_inl(UBC_CRR0);
290
291#else /* CONFIG_CPU_SH4A */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 ctrl_outl(pc, UBC_BARA);
293
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900294#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 /* We don't have any ASID settings for the SH-2! */
Paul Mundt11c19652006-12-25 10:19:56 +0900296 if (current_cpu_data.type != CPU_SH7604)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 ctrl_outb(asid, UBC_BASRA);
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900298#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 ctrl_outl(0, UBC_BAMRA);
301
Paul Mundt11c19652006-12-25 10:19:56 +0900302 if (current_cpu_data.type == CPU_SH7729 ||
Paul Mundt3a2e1172007-05-01 16:33:10 +0900303 current_cpu_data.type == CPU_SH7710 ||
304 current_cpu_data.type == CPU_SH7712) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 ctrl_outw(BBR_INST | BBR_READ | BBR_CPU, UBC_BBRA);
306 ctrl_outl(BRCR_PCBA | BRCR_PCTE, UBC_BRCR);
307 } else {
308 ctrl_outw(BBR_INST | BBR_READ, UBC_BBRA);
309 ctrl_outw(BRCR_PCBA, UBC_BRCR);
310 }
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900311#endif /* CONFIG_CPU_SH4A */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314/*
315 * switch_to(x,y) should switch tasks from x to y.
316 *
317 */
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900318struct task_struct *__switch_to(struct task_struct *prev,
319 struct task_struct *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
321#if defined(CONFIG_SH_FPU)
Al Viro3cf0f4e2006-01-12 01:05:44 -0800322 unlazy_fpu(prev, task_pt_regs(prev));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323#endif
324
325#ifdef CONFIG_PREEMPT
326 {
327 unsigned long flags;
328 struct pt_regs *regs;
329
330 local_irq_save(flags);
Al Viro3cf0f4e2006-01-12 01:05:44 -0800331 regs = task_pt_regs(prev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (user_mode(regs) && regs->regs[15] >= 0xc0000000) {
333 int offset = (int)regs->regs[15];
334
335 /* Reset stack pointer: clear critical region mark */
336 regs->regs[15] = regs->regs[1];
337 if (regs->pc < regs->regs[0])
338 /* Go to rewind point */
339 regs->pc = regs->regs[0] + offset;
340 }
341 local_irq_restore(flags);
342 }
343#endif
344
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900345#ifdef CONFIG_MMU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 /*
347 * Restore the kernel mode register
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900348 * k7 (r7_bank1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 */
350 asm volatile("ldc %0, r7_bank"
351 : /* no output */
Al Virocafcfca2006-01-12 01:05:45 -0800352 : "r" (task_thread_info(next)));
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900353#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 /* If no tasks are using the UBC, we're done */
356 if (ubc_usercnt == 0)
357 /* If no tasks are using the UBC, we're done */;
358 else if (next->thread.ubc_pc && next->mm) {
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900359 int asid = 0;
360#ifdef CONFIG_MMU
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900361 asid |= cpu_asid(smp_processor_id(), next->mm);
Yoshinori Satoa2d1a5f2006-09-27 17:25:07 +0900362#endif
363 ubc_set_tracing(asid, next->thread.ubc_pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 } else {
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900365#if defined(CONFIG_CPU_SH4A)
366 ctrl_outl(UBC_CBR_INIT, UBC_CBR0);
367 ctrl_outl(UBC_CRR_INIT, UBC_CRR0);
368#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 ctrl_outw(0, UBC_BBRA);
370 ctrl_outw(0, UBC_BBRB);
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900371#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 return prev;
375}
376
377asmlinkage int sys_fork(unsigned long r4, unsigned long r5,
378 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900379 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900381 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382#ifdef CONFIG_MMU
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900383 return do_fork(SIGCHLD, regs->regs[15], regs, 0, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384#else
385 /* fork almost works, enough to trick you into looking elsewhere :-( */
386 return -EINVAL;
387#endif
388}
389
390asmlinkage int sys_clone(unsigned long clone_flags, unsigned long newsp,
391 unsigned long parent_tidptr,
392 unsigned long child_tidptr,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900393 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900395 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 if (!newsp)
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900397 newsp = regs->regs[15];
398 return do_fork(clone_flags, newsp, regs, 0,
Paul Mundtaec5e0e2006-12-25 09:51:47 +0900399 (int __user *)parent_tidptr,
400 (int __user *)child_tidptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
403/*
404 * This is trivial, and on the face of it looks like it
405 * could equally well be done in user mode.
406 *
407 * Not so, for quite unobvious reasons - register pressure.
408 * In user mode vfork() cannot have a stack frame, and if
409 * done by calling the "clone()" system call directly, you
410 * do not have enough call-clobbered registers to hold all
411 * the information you need.
412 */
413asmlinkage int sys_vfork(unsigned long r4, unsigned long r5,
414 unsigned long r6, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900415 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900417 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
418 return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, regs->regs[15], regs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 0, NULL, NULL);
420}
421
422/*
423 * sys_execve() executes a new program.
424 */
425asmlinkage int sys_execve(char *ufilename, char **uargv,
426 char **uenvp, unsigned long r7,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900427 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900429 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 int error;
431 char *filename;
432
433 filename = getname((char __user *)ufilename);
434 error = PTR_ERR(filename);
435 if (IS_ERR(filename))
436 goto out;
437
438 error = do_execve(filename,
439 (char __user * __user *)uargv,
440 (char __user * __user *)uenvp,
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900441 regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (error == 0) {
443 task_lock(current);
444 current->ptrace &= ~PT_DTRACE;
445 task_unlock(current);
446 }
447 putname(filename);
448out:
449 return error;
450}
451
452unsigned long get_wchan(struct task_struct *p)
453{
454 unsigned long schedule_frame;
455 unsigned long pc;
456
457 if (!p || p == current || p->state == TASK_RUNNING)
458 return 0;
459
460 /*
461 * The same comment as on the Alpha applies here, too ...
462 */
463 pc = thread_saved_pc(p);
464 if (in_sched_functions(pc)) {
Paul Mundtb652c232006-12-08 17:46:29 +0900465 schedule_frame = (unsigned long)p->thread.sp;
466 return ((unsigned long *)schedule_frame)[21];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
Paul Mundtb652c232006-12-08 17:46:29 +0900468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return pc;
470}
471
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900472asmlinkage void break_point_trap(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 /* Clear tracing. */
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900475#if defined(CONFIG_CPU_SH4A)
476 ctrl_outl(UBC_CBR_INIT, UBC_CBR0);
477 ctrl_outl(UBC_CRR_INIT, UBC_CRR0);
478#else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 ctrl_outw(0, UBC_BBRA);
480 ctrl_outw(0, UBC_BBRB);
Ryusuke Sakato8ae91b92006-10-12 12:16:13 +0900481#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 current->thread.ubc_pc = 0;
483 ubc_usercnt -= 1;
484
485 force_sig(SIGTRAP, current);
486}
487
Paul Mundtf413d0d2006-12-13 17:40:05 +0900488/*
489 * Generic trap handler.
490 */
491asmlinkage void debug_trap_handler(unsigned long r4, unsigned long r5,
492 unsigned long r6, unsigned long r7,
493 struct pt_regs __regs)
494{
495 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
496
497 /* Rewind */
498 regs->pc -= 2;
499
Paul Mundt3a2e1172007-05-01 16:33:10 +0900500 if (notify_die(DIE_TRAP, regs, regs->tra & 0xff,
501 SIGTRAP) == NOTIFY_STOP)
502 return;
503
Paul Mundtf413d0d2006-12-13 17:40:05 +0900504 force_sig(SIGTRAP, current);
505}
506
507/*
508 * Special handler for BUG() traps.
509 */
510asmlinkage void bug_trap_handler(unsigned long r4, unsigned long r5,
511 unsigned long r6, unsigned long r7,
512 struct pt_regs __regs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513{
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900514 struct pt_regs *regs = RELOC_HIDE(&__regs, 0);
515
Paul Mundtdc34d312006-12-08 17:41:43 +0900516 /* Rewind */
Stuart Menefyf0bc8142006-11-21 11:16:57 +0900517 regs->pc -= 2;
Paul Mundtdc34d312006-12-08 17:41:43 +0900518
Paul Mundt3a2e1172007-05-01 16:33:10 +0900519 if (notify_die(DIE_TRAP, regs, TRAPA_BUG_OPCODE & 0xff,
520 SIGTRAP) == NOTIFY_STOP)
521 return;
522
Paul Mundtdc34d312006-12-08 17:41:43 +0900523#ifdef CONFIG_BUG
524 if (__kernel_text_address(instruction_pointer(regs))) {
525 u16 insn = *(u16 *)instruction_pointer(regs);
526 if (insn == TRAPA_BUG_OPCODE)
527 handle_BUG(regs);
528 }
529#endif
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 force_sig(SIGTRAP, current);
532}