blob: 2be4214b39052f4d6a2f463f9d1f1964e4d978b6 [file] [log] [blame]
David S. Miller64d329e2007-10-27 00:17:01 -07001/* linux/arch/sparc/kernel/process.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
David S. Miller4fe3ebe2008-07-17 22:11:32 -07003 * Copyright (C) 1995, 2008 David S. Miller (davem@davemloft.net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
5 */
6
7/*
8 * This file handles the architecture-dependent parts of process handling..
9 */
10
11#include <stdarg.h>
12
13#include <linux/errno.h>
14#include <linux/module.h>
15#include <linux/sched.h>
16#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mm.h>
18#include <linux/stddef.h>
19#include <linux/ptrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/user.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/reboot.h>
23#include <linux/delay.h>
24#include <linux/pm.h>
25#include <linux/init.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28#include <asm/auxio.h>
29#include <asm/oplib.h>
30#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <asm/page.h>
32#include <asm/pgalloc.h>
33#include <asm/pgtable.h>
34#include <asm/delay.h>
35#include <asm/processor.h>
36#include <asm/psr.h>
37#include <asm/elf.h>
David S. Millerc73fcc82007-07-20 16:59:26 -070038#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/unistd.h>
David Howellsd550bbd2012-03-28 18:30:03 +010040#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42/*
43 * Power management idle function
44 * Set in pm platform drivers (apc.c and pmc.c)
45 */
Len Brownd472ba82013-02-09 23:27:26 -050046void (*sparc_idle)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
49 * Power-off handler instantiation for pm.h compliance
50 * This is done via auxio, but could be used as a fallback
51 * handler when auxio is not present-- unused for now...
52 */
Al Viro304cd3e2006-01-18 19:40:48 -050053void (*pm_power_off)(void) = machine_power_off;
Al Viro89eb1692007-01-30 13:23:25 +000054EXPORT_SYMBOL(pm_power_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
57 * sysctl - toggle power-off restriction for serial console
58 * systems in machine_power_off()
59 */
60int scons_pwroff = 1;
61
62extern void fpsave(unsigned long *, unsigned long *, void *, unsigned long *);
63
64struct task_struct *last_task_used_math = NULL;
65struct thread_info *current_set[NR_CPUS];
66
Sam Ravnborg87fa05a2013-04-11 21:38:50 +020067/* Idle loop support. */
68void arch_cpu_idle(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
Sam Ravnborg87fa05a2013-04-11 21:38:50 +020070 if (sparc_idle)
71 (*sparc_idle)();
72 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
Linus Torvalds1da177e2005-04-16 15:20:36 -070075/* XXX cli/sti -> local_irq_xxx here, check this works once SMP is fixed. */
76void machine_halt(void)
77{
78 local_irq_enable();
79 mdelay(8);
80 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 prom_halt();
82 panic("Halt failed!");
83}
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085void machine_restart(char * cmd)
86{
87 char *p;
88
89 local_irq_enable();
90 mdelay(8);
91 local_irq_disable();
92
93 p = strchr (reboot_command, '\n');
94 if (p) *p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 if (cmd)
96 prom_reboot(cmd);
97 if (*reboot_command)
98 prom_reboot(reboot_command);
99 prom_feval ("reset");
100 panic("Reboot failed!");
101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103void machine_power_off(void)
104{
David S. Millerc73fcc82007-07-20 16:59:26 -0700105 if (auxio_power_register &&
106 (strcmp(of_console_device->type, "serial") || scons_pwroff))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 *auxio_power_register |= AUXIO_POWER_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 machine_halt();
109}
110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111void show_regs(struct pt_regs *r)
112{
Sam Ravnborg4d7b92a2009-01-02 19:32:59 -0800113 struct reg_window32 *rw = (struct reg_window32 *) r->u_regs[14];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
115 printk("PSR: %08lx PC: %08lx NPC: %08lx Y: %08lx %s\n",
116 r->psr, r->pc, r->npc, r->y, print_tainted());
David S. Miller4fe3ebe2008-07-17 22:11:32 -0700117 printk("PC: <%pS>\n", (void *) r->pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 printk("%%G: %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",
119 r->u_regs[0], r->u_regs[1], r->u_regs[2], r->u_regs[3],
120 r->u_regs[4], r->u_regs[5], r->u_regs[6], r->u_regs[7]);
121 printk("%%O: %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",
122 r->u_regs[8], r->u_regs[9], r->u_regs[10], r->u_regs[11],
123 r->u_regs[12], r->u_regs[13], r->u_regs[14], r->u_regs[15]);
David S. Miller4fe3ebe2008-07-17 22:11:32 -0700124 printk("RPC: <%pS>\n", (void *) r->u_regs[15]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 printk("%%L: %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",
127 rw->locals[0], rw->locals[1], rw->locals[2], rw->locals[3],
128 rw->locals[4], rw->locals[5], rw->locals[6], rw->locals[7]);
129 printk("%%I: %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",
130 rw->ins[0], rw->ins[1], rw->ins[2], rw->ins[3],
131 rw->ins[4], rw->ins[5], rw->ins[6], rw->ins[7]);
132}
133
134/*
135 * The show_stack is an external API which we do not use ourselves.
136 * The oops is printed in die_if_kernel.
137 */
138void show_stack(struct task_struct *tsk, unsigned long *_ksp)
139{
140 unsigned long pc, fp;
141 unsigned long task_base;
Sam Ravnborg4d7b92a2009-01-02 19:32:59 -0800142 struct reg_window32 *rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 int count = 0;
144
Tejun Heo89e3f232013-04-30 15:27:10 -0700145 if (!tsk)
146 tsk = current;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Tejun Heo89e3f232013-04-30 15:27:10 -0700148 if (tsk == current && !_ksp)
149 __asm__ __volatile__("mov %%fp, %0" : "=r" (_ksp));
150
151 task_base = (unsigned long) task_stack_page(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 fp = (unsigned long) _ksp;
153 do {
154 /* Bogus frame pointer? */
155 if (fp < (task_base + sizeof(struct thread_info)) ||
156 fp >= (task_base + (PAGE_SIZE << 1)))
157 break;
Sam Ravnborg4d7b92a2009-01-02 19:32:59 -0800158 rw = (struct reg_window32 *) fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 pc = rw->ins[7];
160 printk("[%08lx : ", pc);
David S. Miller4fe3ebe2008-07-17 22:11:32 -0700161 printk("%pS ] ", (void *) pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 fp = rw->ins[6];
163 } while (++count < 16);
164 printk("\n");
165}
166
Tom 'spot' Callaway24dc6ea2005-04-24 20:46:49 -0700167void dump_stack(void)
168{
Tejun Heo89e3f232013-04-30 15:27:10 -0700169 show_stack(current, NULL);
Tom 'spot' Callaway24dc6ea2005-04-24 20:46:49 -0700170}
171
172EXPORT_SYMBOL(dump_stack);
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/*
175 * Note: sparc64 has a pretty intricated thread_saved_pc, check it out.
176 */
177unsigned long thread_saved_pc(struct task_struct *tsk)
178{
Al Virod562ef62006-01-12 01:05:46 -0800179 return task_thread_info(tsk)->kpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181
182/*
183 * Free current thread data structures etc..
184 */
185void exit_thread(void)
186{
187#ifndef CONFIG_SMP
188 if(last_task_used_math == current) {
189#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700190 if (test_thread_flag(TIF_USEDFPU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#endif
192 /* Keep process from leaving FPU in a bogon state. */
193 put_psr(get_psr() | PSR_EF);
194 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
195 &current->thread.fpqueue[0], &current->thread.fpqdepth);
196#ifndef CONFIG_SMP
197 last_task_used_math = NULL;
198#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700199 clear_thread_flag(TIF_USEDFPU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#endif
201 }
202}
203
204void flush_thread(void)
205{
206 current_thread_info()->w_saved = 0;
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208#ifndef CONFIG_SMP
209 if(last_task_used_math == current) {
210#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700211 if (test_thread_flag(TIF_USEDFPU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212#endif
213 /* Clean the fpu. */
214 put_psr(get_psr() | PSR_EF);
215 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
216 &current->thread.fpqueue[0], &current->thread.fpqdepth);
217#ifndef CONFIG_SMP
218 last_task_used_math = NULL;
219#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700220 clear_thread_flag(TIF_USEDFPU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221#endif
222 }
223
Mathias Krauseddd53bf2011-09-20 14:22:59 -0700224 /* This task is no longer a kernel thread. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 if (current->thread.flags & SPARC_FLAG_KTHREAD) {
226 current->thread.flags &= ~SPARC_FLAG_KTHREAD;
227
228 /* We must fixup kregs as well. */
229 /* XXX This was not fixed for ti for a while, worked. Unused? */
230 current->thread.kregs = (struct pt_regs *)
Al Viro36483c62006-01-12 01:05:47 -0800231 (task_stack_page(current) + (THREAD_SIZE - TRACEREG_SZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 }
233}
234
David S. Miller64d329e2007-10-27 00:17:01 -0700235static inline struct sparc_stackf __user *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236clone_stackframe(struct sparc_stackf __user *dst,
237 struct sparc_stackf __user *src)
238{
239 unsigned long size, fp;
240 struct sparc_stackf *tmp;
241 struct sparc_stackf __user *sp;
242
243 if (get_user(tmp, &src->fp))
244 return NULL;
245
246 fp = (unsigned long) tmp;
247 size = (fp - ((unsigned long) src));
248 fp = (unsigned long) dst;
249 sp = (struct sparc_stackf __user *)(fp - size);
250
251 /* do_fork() grabs the parent semaphore, we must release it
252 * temporarily so we can build the child clone stack frame
253 * without deadlocking.
254 */
255 if (__copy_user(sp, src, size))
256 sp = NULL;
257 else if (put_user(fp, &sp->fp))
258 sp = NULL;
259
260 return sp;
261}
262
263asmlinkage int sparc_do_fork(unsigned long clone_flags,
264 unsigned long stack_start,
265 struct pt_regs *regs,
266 unsigned long stack_size)
267{
268 unsigned long parent_tid_ptr, child_tid_ptr;
David S. Miller1e38c122008-05-07 16:21:28 -0700269 unsigned long orig_i1 = regs->u_regs[UREG_I1];
270 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 parent_tid_ptr = regs->u_regs[UREG_I2];
273 child_tid_ptr = regs->u_regs[UREG_I4];
274
Al Viroe80d6662012-10-22 23:10:08 -0400275 ret = do_fork(clone_flags, stack_start, stack_size,
David S. Miller1e38c122008-05-07 16:21:28 -0700276 (int __user *) parent_tid_ptr,
277 (int __user *) child_tid_ptr);
278
279 /* If we get an error and potentially restart the system
280 * call, we're screwed because copy_thread() clobbered
281 * the parent's %o1. So detect that case and restore it
282 * here.
283 */
284 if ((unsigned long)ret >= -ERESTART_RESTARTBLOCK)
285 regs->u_regs[UREG_I1] = orig_i1;
286
287 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288}
289
290/* Copy a Sparc thread. The fork() return value conventions
291 * under SunOS are nothing short of bletcherous:
292 * Parent --> %o0 == childs pid, %o1 == 0
293 * Child --> %o0 == parents pid, %o1 == 1
294 *
295 * NOTE: We have a separate fork kpsr/kwim because
296 * the parent could change these values between
297 * sys_fork invocation and when we reach here
298 * if the parent should sleep while trying to
299 * allocate the task_struct and kernel stack in
300 * do_fork().
301 * XXX See comment above sys_vfork in sparc64. todo.
302 */
303extern void ret_from_fork(void);
Al Viroc78e0642012-09-27 15:21:21 -0400304extern void ret_from_kernel_thread(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -0700306int copy_thread(unsigned long clone_flags, unsigned long sp,
Al Viroafa86fc2012-10-22 22:51:14 -0400307 unsigned long arg, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Al Viro36483c62006-01-12 01:05:47 -0800309 struct thread_info *ti = task_thread_info(p);
Al Viroafa86fc2012-10-22 22:51:14 -0400310 struct pt_regs *childregs, *regs = current_pt_regs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 char *new_stack;
312
313#ifndef CONFIG_SMP
314 if(last_task_used_math == current) {
315#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700316 if (test_thread_flag(TIF_USEDFPU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317#endif
318 put_psr(get_psr() | PSR_EF);
319 fpsave(&p->thread.float_regs[0], &p->thread.fsr,
320 &p->thread.fpqueue[0], &p->thread.fpqdepth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322
323 /*
Al Viroc78e0642012-09-27 15:21:21 -0400324 * p->thread_info new_stack childregs stack bottom
325 * ! ! ! !
326 * V V (stk.fr.) V (pt_regs) V
327 * +----- - - - - - ------+===========+=============+
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
Al Viro36483c62006-01-12 01:05:47 -0800329 new_stack = task_stack_page(p) + THREAD_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 new_stack -= STACKFRAME_SZ + TRACEREG_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 childregs = (struct pt_regs *) (new_stack + STACKFRAME_SZ);
332
333 /*
334 * A new process must start with interrupts closed in 2.5,
335 * because this is how Mingo's scheduler works (see schedule_tail
336 * and finish_arch_switch). If we do not do it, a timer interrupt hits
337 * before we unlock, attempts to re-take the rq->lock, and then we die.
338 * Thus, kpsr|=PSR_PIL.
339 */
340 ti->ksp = (unsigned long) new_stack;
Al Viroc78e0642012-09-27 15:21:21 -0400341 p->thread.kregs = childregs;
342
343 if (unlikely(p->flags & PF_KTHREAD)) {
344 extern int nwindows;
345 unsigned long psr;
346 memset(new_stack, 0, STACKFRAME_SZ + TRACEREG_SZ);
347 p->thread.flags |= SPARC_FLAG_KTHREAD;
348 p->thread.current_ds = KERNEL_DS;
349 ti->kpc = (((unsigned long) ret_from_kernel_thread) - 0x8);
350 childregs->u_regs[UREG_G1] = sp; /* function */
351 childregs->u_regs[UREG_G2] = arg;
352 psr = childregs->psr = get_psr();
353 ti->kpsr = psr | PSR_PIL;
354 ti->kwim = 1 << (((psr & PSR_CWP) + 1) % nwindows);
355 return 0;
356 }
357 memcpy(new_stack, (char *)regs - STACKFRAME_SZ, STACKFRAME_SZ + TRACEREG_SZ);
358 childregs->u_regs[UREG_FP] = sp;
359 p->thread.flags &= ~SPARC_FLAG_KTHREAD;
360 p->thread.current_ds = USER_DS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 ti->kpc = (((unsigned long) ret_from_fork) - 0x8);
362 ti->kpsr = current->thread.fork_kpsr | PSR_PIL;
363 ti->kwim = current->thread.fork_kwim;
364
Al Viroc78e0642012-09-27 15:21:21 -0400365 if (sp != regs->u_regs[UREG_FP]) {
366 struct sparc_stackf __user *childstack;
367 struct sparc_stackf __user *parentstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
Al Viroc78e0642012-09-27 15:21:21 -0400369 /*
370 * This is a clone() call with supplied user stack.
371 * Set some valid stack frames to give to the child.
372 */
373 childstack = (struct sparc_stackf __user *)
374 (sp & ~0xfUL);
375 parentstack = (struct sparc_stackf __user *)
376 regs->u_regs[UREG_FP];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378#if 0
Al Viroc78e0642012-09-27 15:21:21 -0400379 printk("clone: parent stack:\n");
380 show_stackframe(parentstack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381#endif
382
Al Viroc78e0642012-09-27 15:21:21 -0400383 childstack = clone_stackframe(childstack, parentstack);
384 if (!childstack)
385 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387#if 0
Al Viroc78e0642012-09-27 15:21:21 -0400388 printk("clone: child stack:\n");
389 show_stackframe(childstack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#endif
391
Al Viroc78e0642012-09-27 15:21:21 -0400392 childregs->u_regs[UREG_FP] = (unsigned long)childstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
394
395#ifdef CONFIG_SMP
396 /* FPU must be disabled on SMP. */
397 childregs->psr &= ~PSR_EF;
Tkhai Kirill427f23c2012-06-29 02:55:25 +0000398 clear_tsk_thread_flag(p, TIF_USEDFPU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399#endif
400
401 /* Set the return value for the child. */
402 childregs->u_regs[UREG_I0] = current->pid;
403 childregs->u_regs[UREG_I1] = 1;
404
405 /* Set the return value for the parent. */
406 regs->u_regs[UREG_I1] = 0;
407
408 if (clone_flags & CLONE_SETTLS)
409 childregs->u_regs[UREG_G7] = regs->u_regs[UREG_I3];
410
411 return 0;
412}
413
414/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 * fill in the fpu structure for a core dump.
416 */
417int dump_fpu (struct pt_regs * regs, elf_fpregset_t * fpregs)
418{
419 if (used_math()) {
420 memset(fpregs, 0, sizeof(*fpregs));
421 fpregs->pr_q_entrysize = 8;
422 return 1;
423 }
424#ifdef CONFIG_SMP
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700425 if (test_thread_flag(TIF_USEDFPU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 put_psr(get_psr() | PSR_EF);
427 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
428 &current->thread.fpqueue[0], &current->thread.fpqdepth);
429 if (regs != NULL) {
430 regs->psr &= ~(PSR_EF);
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700431 clear_thread_flag(TIF_USEDFPU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433 }
434#else
435 if (current == last_task_used_math) {
436 put_psr(get_psr() | PSR_EF);
437 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
438 &current->thread.fpqueue[0], &current->thread.fpqdepth);
439 if (regs != NULL) {
440 regs->psr &= ~(PSR_EF);
441 last_task_used_math = NULL;
442 }
443 }
444#endif
445 memcpy(&fpregs->pr_fr.pr_regs[0],
446 &current->thread.float_regs[0],
447 (sizeof(unsigned long) * 32));
448 fpregs->pr_fsr = current->thread.fsr;
449 fpregs->pr_qcnt = current->thread.fpqdepth;
450 fpregs->pr_q_entrysize = 8;
451 fpregs->pr_en = 1;
452 if(fpregs->pr_qcnt != 0) {
453 memcpy(&fpregs->pr_q[0],
454 &current->thread.fpqueue[0],
455 sizeof(struct fpq) * fpregs->pr_qcnt);
456 }
457 /* Zero out the rest. */
458 memset(&fpregs->pr_q[fpregs->pr_qcnt], 0,
459 sizeof(struct fpq) * (32 - fpregs->pr_qcnt));
460 return 1;
461}
462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463unsigned long get_wchan(struct task_struct *task)
464{
465 unsigned long pc, fp, bias = 0;
466 unsigned long task_base = (unsigned long) task;
467 unsigned long ret = 0;
Sam Ravnborg4d7b92a2009-01-02 19:32:59 -0800468 struct reg_window32 *rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 int count = 0;
470
471 if (!task || task == current ||
472 task->state == TASK_RUNNING)
473 goto out;
474
Al Virod562ef62006-01-12 01:05:46 -0800475 fp = task_thread_info(task)->ksp + bias;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 do {
477 /* Bogus frame pointer? */
478 if (fp < (task_base + sizeof(struct thread_info)) ||
479 fp >= (task_base + (2 * PAGE_SIZE)))
480 break;
Sam Ravnborg4d7b92a2009-01-02 19:32:59 -0800481 rw = (struct reg_window32 *) fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 pc = rw->ins[7];
483 if (!in_sched_functions(pc)) {
484 ret = pc;
485 goto out;
486 }
487 fp = rw->ins[6] + bias;
488 } while (++count < 16);
489
490out:
491 return ret;
492}
493