blob: 62eede13831a2685694986165c5ac11a36daceda [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070067/*
68 * the idle loop on a Sparc... ;)
69 */
70void cpu_idle(void)
71{
Sam Ravnborg37321062012-05-27 23:35:16 +020072 set_thread_flag(TIF_POLLING_NRFLAG);
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 /* endless idle loop with no priority at all */
75 for (;;) {
Sam Ravnborg37321062012-05-27 23:35:16 +020076 while (!need_resched()) {
Len Brownd472ba82013-02-09 23:27:26 -050077 if (sparc_idle)
78 (*sparc_idle)();
Sam Ravnborg37321062012-05-27 23:35:16 +020079 else
Nick Piggin64c7c8f2005-11-08 21:39:04 -080080 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
Thomas Gleixnerbd2f5532011-03-21 12:33:18 +010082 schedule_preempt_disabled();
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070084}
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086/* XXX cli/sti -> local_irq_xxx here, check this works once SMP is fixed. */
87void machine_halt(void)
88{
89 local_irq_enable();
90 mdelay(8);
91 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 prom_halt();
93 panic("Halt failed!");
94}
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096void machine_restart(char * cmd)
97{
98 char *p;
99
100 local_irq_enable();
101 mdelay(8);
102 local_irq_disable();
103
104 p = strchr (reboot_command, '\n');
105 if (p) *p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 if (cmd)
107 prom_reboot(cmd);
108 if (*reboot_command)
109 prom_reboot(reboot_command);
110 prom_feval ("reset");
111 panic("Reboot failed!");
112}
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114void machine_power_off(void)
115{
David S. Millerc73fcc82007-07-20 16:59:26 -0700116 if (auxio_power_register &&
117 (strcmp(of_console_device->type, "serial") || scons_pwroff))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 *auxio_power_register |= AUXIO_POWER_OFF;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 machine_halt();
120}
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122void show_regs(struct pt_regs *r)
123{
Sam Ravnborg4d7b92a2009-01-02 19:32:59 -0800124 struct reg_window32 *rw = (struct reg_window32 *) r->u_regs[14];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 printk("PSR: %08lx PC: %08lx NPC: %08lx Y: %08lx %s\n",
127 r->psr, r->pc, r->npc, r->y, print_tainted());
David S. Miller4fe3ebe2008-07-17 22:11:32 -0700128 printk("PC: <%pS>\n", (void *) r->pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 printk("%%G: %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",
130 r->u_regs[0], r->u_regs[1], r->u_regs[2], r->u_regs[3],
131 r->u_regs[4], r->u_regs[5], r->u_regs[6], r->u_regs[7]);
132 printk("%%O: %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",
133 r->u_regs[8], r->u_regs[9], r->u_regs[10], r->u_regs[11],
134 r->u_regs[12], r->u_regs[13], r->u_regs[14], r->u_regs[15]);
David S. Miller4fe3ebe2008-07-17 22:11:32 -0700135 printk("RPC: <%pS>\n", (void *) r->u_regs[15]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 printk("%%L: %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",
138 rw->locals[0], rw->locals[1], rw->locals[2], rw->locals[3],
139 rw->locals[4], rw->locals[5], rw->locals[6], rw->locals[7]);
140 printk("%%I: %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",
141 rw->ins[0], rw->ins[1], rw->ins[2], rw->ins[3],
142 rw->ins[4], rw->ins[5], rw->ins[6], rw->ins[7]);
143}
144
145/*
146 * The show_stack is an external API which we do not use ourselves.
147 * The oops is printed in die_if_kernel.
148 */
149void show_stack(struct task_struct *tsk, unsigned long *_ksp)
150{
151 unsigned long pc, fp;
152 unsigned long task_base;
Sam Ravnborg4d7b92a2009-01-02 19:32:59 -0800153 struct reg_window32 *rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 int count = 0;
155
156 if (tsk != NULL)
Al Viro36483c62006-01-12 01:05:47 -0800157 task_base = (unsigned long) task_stack_page(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 else
159 task_base = (unsigned long) current_thread_info();
160
161 fp = (unsigned long) _ksp;
162 do {
163 /* Bogus frame pointer? */
164 if (fp < (task_base + sizeof(struct thread_info)) ||
165 fp >= (task_base + (PAGE_SIZE << 1)))
166 break;
Sam Ravnborg4d7b92a2009-01-02 19:32:59 -0800167 rw = (struct reg_window32 *) fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 pc = rw->ins[7];
169 printk("[%08lx : ", pc);
David S. Miller4fe3ebe2008-07-17 22:11:32 -0700170 printk("%pS ] ", (void *) pc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 fp = rw->ins[6];
172 } while (++count < 16);
173 printk("\n");
174}
175
Tom 'spot' Callaway24dc6ea2005-04-24 20:46:49 -0700176void dump_stack(void)
177{
178 unsigned long *ksp;
179
180 __asm__ __volatile__("mov %%fp, %0"
181 : "=r" (ksp));
182 show_stack(current, ksp);
183}
184
185EXPORT_SYMBOL(dump_stack);
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187/*
188 * Note: sparc64 has a pretty intricated thread_saved_pc, check it out.
189 */
190unsigned long thread_saved_pc(struct task_struct *tsk)
191{
Al Virod562ef62006-01-12 01:05:46 -0800192 return task_thread_info(tsk)->kpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195/*
196 * Free current thread data structures etc..
197 */
198void exit_thread(void)
199{
200#ifndef CONFIG_SMP
201 if(last_task_used_math == current) {
202#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700203 if (test_thread_flag(TIF_USEDFPU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#endif
205 /* Keep process from leaving FPU in a bogon state. */
206 put_psr(get_psr() | PSR_EF);
207 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
208 &current->thread.fpqueue[0], &current->thread.fpqdepth);
209#ifndef CONFIG_SMP
210 last_task_used_math = NULL;
211#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700212 clear_thread_flag(TIF_USEDFPU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213#endif
214 }
215}
216
217void flush_thread(void)
218{
219 current_thread_info()->w_saved = 0;
220
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221#ifndef CONFIG_SMP
222 if(last_task_used_math == current) {
223#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700224 if (test_thread_flag(TIF_USEDFPU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225#endif
226 /* Clean the fpu. */
227 put_psr(get_psr() | PSR_EF);
228 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
229 &current->thread.fpqueue[0], &current->thread.fpqdepth);
230#ifndef CONFIG_SMP
231 last_task_used_math = NULL;
232#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700233 clear_thread_flag(TIF_USEDFPU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234#endif
235 }
236
Mathias Krauseddd53bf2011-09-20 14:22:59 -0700237 /* This task is no longer a kernel thread. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (current->thread.flags & SPARC_FLAG_KTHREAD) {
239 current->thread.flags &= ~SPARC_FLAG_KTHREAD;
240
241 /* We must fixup kregs as well. */
242 /* XXX This was not fixed for ti for a while, worked. Unused? */
243 current->thread.kregs = (struct pt_regs *)
Al Viro36483c62006-01-12 01:05:47 -0800244 (task_stack_page(current) + (THREAD_SIZE - TRACEREG_SZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 }
246}
247
David S. Miller64d329e2007-10-27 00:17:01 -0700248static inline struct sparc_stackf __user *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249clone_stackframe(struct sparc_stackf __user *dst,
250 struct sparc_stackf __user *src)
251{
252 unsigned long size, fp;
253 struct sparc_stackf *tmp;
254 struct sparc_stackf __user *sp;
255
256 if (get_user(tmp, &src->fp))
257 return NULL;
258
259 fp = (unsigned long) tmp;
260 size = (fp - ((unsigned long) src));
261 fp = (unsigned long) dst;
262 sp = (struct sparc_stackf __user *)(fp - size);
263
264 /* do_fork() grabs the parent semaphore, we must release it
265 * temporarily so we can build the child clone stack frame
266 * without deadlocking.
267 */
268 if (__copy_user(sp, src, size))
269 sp = NULL;
270 else if (put_user(fp, &sp->fp))
271 sp = NULL;
272
273 return sp;
274}
275
276asmlinkage int sparc_do_fork(unsigned long clone_flags,
277 unsigned long stack_start,
278 struct pt_regs *regs,
279 unsigned long stack_size)
280{
281 unsigned long parent_tid_ptr, child_tid_ptr;
David S. Miller1e38c122008-05-07 16:21:28 -0700282 unsigned long orig_i1 = regs->u_regs[UREG_I1];
283 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
285 parent_tid_ptr = regs->u_regs[UREG_I2];
286 child_tid_ptr = regs->u_regs[UREG_I4];
287
Al Viroe80d6662012-10-22 23:10:08 -0400288 ret = do_fork(clone_flags, stack_start, stack_size,
David S. Miller1e38c122008-05-07 16:21:28 -0700289 (int __user *) parent_tid_ptr,
290 (int __user *) child_tid_ptr);
291
292 /* If we get an error and potentially restart the system
293 * call, we're screwed because copy_thread() clobbered
294 * the parent's %o1. So detect that case and restore it
295 * here.
296 */
297 if ((unsigned long)ret >= -ERESTART_RESTARTBLOCK)
298 regs->u_regs[UREG_I1] = orig_i1;
299
300 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
303/* Copy a Sparc thread. The fork() return value conventions
304 * under SunOS are nothing short of bletcherous:
305 * Parent --> %o0 == childs pid, %o1 == 0
306 * Child --> %o0 == parents pid, %o1 == 1
307 *
308 * NOTE: We have a separate fork kpsr/kwim because
309 * the parent could change these values between
310 * sys_fork invocation and when we reach here
311 * if the parent should sleep while trying to
312 * allocate the task_struct and kernel stack in
313 * do_fork().
314 * XXX See comment above sys_vfork in sparc64. todo.
315 */
316extern void ret_from_fork(void);
Al Viroc78e0642012-09-27 15:21:21 -0400317extern void ret_from_kernel_thread(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Alexey Dobriyan6f2c55b2009-04-02 16:56:59 -0700319int copy_thread(unsigned long clone_flags, unsigned long sp,
Al Viroafa86fc2012-10-22 22:51:14 -0400320 unsigned long arg, struct task_struct *p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
Al Viro36483c62006-01-12 01:05:47 -0800322 struct thread_info *ti = task_thread_info(p);
Al Viroafa86fc2012-10-22 22:51:14 -0400323 struct pt_regs *childregs, *regs = current_pt_regs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 char *new_stack;
325
326#ifndef CONFIG_SMP
327 if(last_task_used_math == current) {
328#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700329 if (test_thread_flag(TIF_USEDFPU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330#endif
331 put_psr(get_psr() | PSR_EF);
332 fpsave(&p->thread.float_regs[0], &p->thread.fsr,
333 &p->thread.fpqueue[0], &p->thread.fpqdepth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
335
336 /*
Al Viroc78e0642012-09-27 15:21:21 -0400337 * p->thread_info new_stack childregs stack bottom
338 * ! ! ! !
339 * V V (stk.fr.) V (pt_regs) V
340 * +----- - - - - - ------+===========+=============+
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 */
Al Viro36483c62006-01-12 01:05:47 -0800342 new_stack = task_stack_page(p) + THREAD_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 new_stack -= STACKFRAME_SZ + TRACEREG_SZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 childregs = (struct pt_regs *) (new_stack + STACKFRAME_SZ);
345
346 /*
347 * A new process must start with interrupts closed in 2.5,
348 * because this is how Mingo's scheduler works (see schedule_tail
349 * and finish_arch_switch). If we do not do it, a timer interrupt hits
350 * before we unlock, attempts to re-take the rq->lock, and then we die.
351 * Thus, kpsr|=PSR_PIL.
352 */
353 ti->ksp = (unsigned long) new_stack;
Al Viroc78e0642012-09-27 15:21:21 -0400354 p->thread.kregs = childregs;
355
356 if (unlikely(p->flags & PF_KTHREAD)) {
357 extern int nwindows;
358 unsigned long psr;
359 memset(new_stack, 0, STACKFRAME_SZ + TRACEREG_SZ);
360 p->thread.flags |= SPARC_FLAG_KTHREAD;
361 p->thread.current_ds = KERNEL_DS;
362 ti->kpc = (((unsigned long) ret_from_kernel_thread) - 0x8);
363 childregs->u_regs[UREG_G1] = sp; /* function */
364 childregs->u_regs[UREG_G2] = arg;
365 psr = childregs->psr = get_psr();
366 ti->kpsr = psr | PSR_PIL;
367 ti->kwim = 1 << (((psr & PSR_CWP) + 1) % nwindows);
368 return 0;
369 }
370 memcpy(new_stack, (char *)regs - STACKFRAME_SZ, STACKFRAME_SZ + TRACEREG_SZ);
371 childregs->u_regs[UREG_FP] = sp;
372 p->thread.flags &= ~SPARC_FLAG_KTHREAD;
373 p->thread.current_ds = USER_DS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 ti->kpc = (((unsigned long) ret_from_fork) - 0x8);
375 ti->kpsr = current->thread.fork_kpsr | PSR_PIL;
376 ti->kwim = current->thread.fork_kwim;
377
Al Viroc78e0642012-09-27 15:21:21 -0400378 if (sp != regs->u_regs[UREG_FP]) {
379 struct sparc_stackf __user *childstack;
380 struct sparc_stackf __user *parentstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Al Viroc78e0642012-09-27 15:21:21 -0400382 /*
383 * This is a clone() call with supplied user stack.
384 * Set some valid stack frames to give to the child.
385 */
386 childstack = (struct sparc_stackf __user *)
387 (sp & ~0xfUL);
388 parentstack = (struct sparc_stackf __user *)
389 regs->u_regs[UREG_FP];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391#if 0
Al Viroc78e0642012-09-27 15:21:21 -0400392 printk("clone: parent stack:\n");
393 show_stackframe(parentstack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394#endif
395
Al Viroc78e0642012-09-27 15:21:21 -0400396 childstack = clone_stackframe(childstack, parentstack);
397 if (!childstack)
398 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400#if 0
Al Viroc78e0642012-09-27 15:21:21 -0400401 printk("clone: child stack:\n");
402 show_stackframe(childstack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403#endif
404
Al Viroc78e0642012-09-27 15:21:21 -0400405 childregs->u_regs[UREG_FP] = (unsigned long)childstack;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
407
408#ifdef CONFIG_SMP
409 /* FPU must be disabled on SMP. */
410 childregs->psr &= ~PSR_EF;
Tkhai Kirill427f23c2012-06-29 02:55:25 +0000411 clear_tsk_thread_flag(p, TIF_USEDFPU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412#endif
413
414 /* Set the return value for the child. */
415 childregs->u_regs[UREG_I0] = current->pid;
416 childregs->u_regs[UREG_I1] = 1;
417
418 /* Set the return value for the parent. */
419 regs->u_regs[UREG_I1] = 0;
420
421 if (clone_flags & CLONE_SETTLS)
422 childregs->u_regs[UREG_G7] = regs->u_regs[UREG_I3];
423
424 return 0;
425}
426
427/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * fill in the fpu structure for a core dump.
429 */
430int dump_fpu (struct pt_regs * regs, elf_fpregset_t * fpregs)
431{
432 if (used_math()) {
433 memset(fpregs, 0, sizeof(*fpregs));
434 fpregs->pr_q_entrysize = 8;
435 return 1;
436 }
437#ifdef CONFIG_SMP
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700438 if (test_thread_flag(TIF_USEDFPU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 put_psr(get_psr() | PSR_EF);
440 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
441 &current->thread.fpqueue[0], &current->thread.fpqdepth);
442 if (regs != NULL) {
443 regs->psr &= ~(PSR_EF);
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700444 clear_thread_flag(TIF_USEDFPU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 }
446 }
447#else
448 if (current == last_task_used_math) {
449 put_psr(get_psr() | PSR_EF);
450 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
451 &current->thread.fpqueue[0], &current->thread.fpqdepth);
452 if (regs != NULL) {
453 regs->psr &= ~(PSR_EF);
454 last_task_used_math = NULL;
455 }
456 }
457#endif
458 memcpy(&fpregs->pr_fr.pr_regs[0],
459 &current->thread.float_regs[0],
460 (sizeof(unsigned long) * 32));
461 fpregs->pr_fsr = current->thread.fsr;
462 fpregs->pr_qcnt = current->thread.fpqdepth;
463 fpregs->pr_q_entrysize = 8;
464 fpregs->pr_en = 1;
465 if(fpregs->pr_qcnt != 0) {
466 memcpy(&fpregs->pr_q[0],
467 &current->thread.fpqueue[0],
468 sizeof(struct fpq) * fpregs->pr_qcnt);
469 }
470 /* Zero out the rest. */
471 memset(&fpregs->pr_q[fpregs->pr_qcnt], 0,
472 sizeof(struct fpq) * (32 - fpregs->pr_qcnt));
473 return 1;
474}
475
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476unsigned long get_wchan(struct task_struct *task)
477{
478 unsigned long pc, fp, bias = 0;
479 unsigned long task_base = (unsigned long) task;
480 unsigned long ret = 0;
Sam Ravnborg4d7b92a2009-01-02 19:32:59 -0800481 struct reg_window32 *rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 int count = 0;
483
484 if (!task || task == current ||
485 task->state == TASK_RUNNING)
486 goto out;
487
Al Virod562ef62006-01-12 01:05:46 -0800488 fp = task_thread_info(task)->ksp + bias;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 do {
490 /* Bogus frame pointer? */
491 if (fp < (task_base + sizeof(struct thread_info)) ||
492 fp >= (task_base + (2 * PAGE_SIZE)))
493 break;
Sam Ravnborg4d7b92a2009-01-02 19:32:59 -0800494 rw = (struct reg_window32 *) fp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 pc = rw->ins[7];
496 if (!in_sched_functions(pc)) {
497 ret = pc;
498 goto out;
499 }
500 fp = rw->ins[6] + bias;
501 } while (++count < 16);
502
503out:
504 return ret;
505}
506