blob: e18a5da025d372f9078317645c71563fbb80f933 [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. Miller64d329e2007-10-27 00:17:01 -07003 * Copyright (C) 1995 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>
17#include <linux/kallsyms.h>
18#include <linux/mm.h>
19#include <linux/stddef.h>
20#include <linux/ptrace.h>
21#include <linux/slab.h>
22#include <linux/user.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/reboot.h>
25#include <linux/delay.h>
26#include <linux/pm.h>
27#include <linux/init.h>
28
29#include <asm/auxio.h>
30#include <asm/oplib.h>
31#include <asm/uaccess.h>
32#include <asm/system.h>
33#include <asm/page.h>
34#include <asm/pgalloc.h>
35#include <asm/pgtable.h>
36#include <asm/delay.h>
37#include <asm/processor.h>
38#include <asm/psr.h>
39#include <asm/elf.h>
David S. Millerc73fcc82007-07-20 16:59:26 -070040#include <asm/prom.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <asm/unistd.h>
42
43/*
44 * Power management idle function
45 * Set in pm platform drivers (apc.c and pmc.c)
46 */
47void (*pm_idle)(void);
48
49/*
50 * Power-off handler instantiation for pm.h compliance
51 * This is done via auxio, but could be used as a fallback
52 * handler when auxio is not present-- unused for now...
53 */
Al Viro304cd3e2006-01-18 19:40:48 -050054void (*pm_power_off)(void) = machine_power_off;
Al Viro89eb1692007-01-30 13:23:25 +000055EXPORT_SYMBOL(pm_power_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57/*
58 * sysctl - toggle power-off restriction for serial console
59 * systems in machine_power_off()
60 */
61int scons_pwroff = 1;
62
63extern void fpsave(unsigned long *, unsigned long *, void *, unsigned long *);
64
65struct task_struct *last_task_used_math = NULL;
66struct thread_info *current_set[NR_CPUS];
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#ifndef CONFIG_SMP
69
70#define SUN4C_FAULT_HIGH 100
71
72/*
73 * the idle loop on a Sparc... ;)
74 */
75void cpu_idle(void)
76{
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 /* endless idle loop with no priority at all */
78 for (;;) {
79 if (ARCH_SUN4C_SUN4) {
80 static int count = HZ;
81 static unsigned long last_jiffies;
82 static unsigned long last_faults;
83 static unsigned long fps;
84 unsigned long now;
85 unsigned long faults;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 extern unsigned long sun4c_kernel_faults;
88 extern void sun4c_grow_kernel_ring(void);
89
Nick Piggin64c7c8f2005-11-08 21:39:04 -080090 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 now = jiffies;
92 count -= (now - last_jiffies);
93 last_jiffies = now;
94 if (count < 0) {
95 count += HZ;
96 faults = sun4c_kernel_faults;
97 fps = (fps + (faults - last_faults)) >> 1;
98 last_faults = faults;
99#if 0
100 printk("kernel faults / second = %ld\n", fps);
101#endif
102 if (fps >= SUN4C_FAULT_HIGH) {
103 sun4c_grow_kernel_ring();
104 }
105 }
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800106 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 }
108
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800109 if (pm_idle) {
110 while (!need_resched())
111 (*pm_idle)();
112 } else {
113 while (!need_resched())
114 cpu_relax();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 }
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800116 preempt_enable_no_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 schedule();
Nick Piggin5bfb5d62005-11-08 21:39:01 -0800118 preempt_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 check_pgt_cache();
120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121}
122
123#else
124
125/* This is being executed in task 0 'user space'. */
126void cpu_idle(void)
127{
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800128 set_thread_flag(TIF_POLLING_NRFLAG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 /* endless idle loop with no priority at all */
130 while(1) {
Nick Piggin64c7c8f2005-11-08 21:39:04 -0800131 while (!need_resched())
132 cpu_relax();
133 preempt_enable_no_resched();
134 schedule();
135 preempt_disable();
136 check_pgt_cache();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
138}
139
140#endif
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/* XXX cli/sti -> local_irq_xxx here, check this works once SMP is fixed. */
143void machine_halt(void)
144{
145 local_irq_enable();
146 mdelay(8);
147 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 prom_halt();
149 panic("Halt failed!");
150}
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152void machine_restart(char * cmd)
153{
154 char *p;
155
156 local_irq_enable();
157 mdelay(8);
158 local_irq_disable();
159
160 p = strchr (reboot_command, '\n');
161 if (p) *p = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 if (cmd)
163 prom_reboot(cmd);
164 if (*reboot_command)
165 prom_reboot(reboot_command);
166 prom_feval ("reset");
167 panic("Reboot failed!");
168}
169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170void machine_power_off(void)
171{
172#ifdef CONFIG_SUN_AUXIO
David S. Millerc73fcc82007-07-20 16:59:26 -0700173 if (auxio_power_register &&
174 (strcmp(of_console_device->type, "serial") || scons_pwroff))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 *auxio_power_register |= AUXIO_POWER_OFF;
176#endif
177 machine_halt();
178}
179
Adrian Bunkc61c65c2008-06-05 11:40:58 -0700180#if 0
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182static DEFINE_SPINLOCK(sparc_backtrace_lock);
183
184void __show_backtrace(unsigned long fp)
185{
186 struct reg_window *rw;
187 unsigned long flags;
188 int cpu = smp_processor_id();
189
190 spin_lock_irqsave(&sparc_backtrace_lock, flags);
191
192 rw = (struct reg_window *)fp;
193 while(rw && (((unsigned long) rw) >= PAGE_OFFSET) &&
194 !(((unsigned long) rw) & 0x7)) {
195 printk("CPU[%d]: ARGS[%08lx,%08lx,%08lx,%08lx,%08lx,%08lx] "
196 "FP[%08lx] CALLER[%08lx]: ", cpu,
197 rw->ins[0], rw->ins[1], rw->ins[2], rw->ins[3],
198 rw->ins[4], rw->ins[5],
199 rw->ins[6],
200 rw->ins[7]);
201 print_symbol("%s\n", rw->ins[7]);
202 rw = (struct reg_window *) rw->ins[6];
203 }
204 spin_unlock_irqrestore(&sparc_backtrace_lock, flags);
205}
206
207#define __SAVE __asm__ __volatile__("save %sp, -0x40, %sp\n\t")
208#define __RESTORE __asm__ __volatile__("restore %g0, %g0, %g0\n\t")
209#define __GET_FP(fp) __asm__ __volatile__("mov %%i6, %0" : "=r" (fp))
210
211void show_backtrace(void)
212{
213 unsigned long fp;
214
215 __SAVE; __SAVE; __SAVE; __SAVE;
216 __SAVE; __SAVE; __SAVE; __SAVE;
217 __RESTORE; __RESTORE; __RESTORE; __RESTORE;
218 __RESTORE; __RESTORE; __RESTORE; __RESTORE;
219
220 __GET_FP(fp);
221
222 __show_backtrace(fp);
223}
224
225#ifdef CONFIG_SMP
226void smp_show_backtrace_all_cpus(void)
227{
228 xc0((smpfunc_t) show_backtrace);
229 show_backtrace();
230}
231#endif
232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233void show_stackframe(struct sparc_stackf *sf)
234{
235 unsigned long size;
236 unsigned long *stk;
237 int i;
238
239 printk("l0: %08lx l1: %08lx l2: %08lx l3: %08lx "
240 "l4: %08lx l5: %08lx l6: %08lx l7: %08lx\n",
241 sf->locals[0], sf->locals[1], sf->locals[2], sf->locals[3],
242 sf->locals[4], sf->locals[5], sf->locals[6], sf->locals[7]);
243 printk("i0: %08lx i1: %08lx i2: %08lx i3: %08lx "
244 "i4: %08lx i5: %08lx fp: %08lx i7: %08lx\n",
245 sf->ins[0], sf->ins[1], sf->ins[2], sf->ins[3],
246 sf->ins[4], sf->ins[5], (unsigned long)sf->fp, sf->callers_pc);
247 printk("sp: %08lx x0: %08lx x1: %08lx x2: %08lx "
248 "x3: %08lx x4: %08lx x5: %08lx xx: %08lx\n",
249 (unsigned long)sf->structptr, sf->xargs[0], sf->xargs[1],
250 sf->xargs[2], sf->xargs[3], sf->xargs[4], sf->xargs[5],
251 sf->xxargs[0]);
252 size = ((unsigned long)sf->fp) - ((unsigned long)sf);
253 size -= STACKFRAME_SZ;
254 stk = (unsigned long *)((unsigned long)sf + STACKFRAME_SZ);
255 i = 0;
256 do {
257 printk("s%d: %08lx\n", i++, *stk++);
258 } while ((size -= sizeof(unsigned long)));
259}
260#endif
261
262void show_regs(struct pt_regs *r)
263{
264 struct reg_window *rw = (struct reg_window *) r->u_regs[14];
265
266 printk("PSR: %08lx PC: %08lx NPC: %08lx Y: %08lx %s\n",
267 r->psr, r->pc, r->npc, r->y, print_tainted());
268 print_symbol("PC: <%s>\n", r->pc);
269 printk("%%G: %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",
270 r->u_regs[0], r->u_regs[1], r->u_regs[2], r->u_regs[3],
271 r->u_regs[4], r->u_regs[5], r->u_regs[6], r->u_regs[7]);
272 printk("%%O: %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",
273 r->u_regs[8], r->u_regs[9], r->u_regs[10], r->u_regs[11],
274 r->u_regs[12], r->u_regs[13], r->u_regs[14], r->u_regs[15]);
275 print_symbol("RPC: <%s>\n", r->u_regs[15]);
276
277 printk("%%L: %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",
278 rw->locals[0], rw->locals[1], rw->locals[2], rw->locals[3],
279 rw->locals[4], rw->locals[5], rw->locals[6], rw->locals[7]);
280 printk("%%I: %08lx %08lx %08lx %08lx %08lx %08lx %08lx %08lx\n",
281 rw->ins[0], rw->ins[1], rw->ins[2], rw->ins[3],
282 rw->ins[4], rw->ins[5], rw->ins[6], rw->ins[7]);
283}
284
285/*
286 * The show_stack is an external API which we do not use ourselves.
287 * The oops is printed in die_if_kernel.
288 */
289void show_stack(struct task_struct *tsk, unsigned long *_ksp)
290{
291 unsigned long pc, fp;
292 unsigned long task_base;
293 struct reg_window *rw;
294 int count = 0;
295
296 if (tsk != NULL)
Al Viro36483c62006-01-12 01:05:47 -0800297 task_base = (unsigned long) task_stack_page(tsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 else
299 task_base = (unsigned long) current_thread_info();
300
301 fp = (unsigned long) _ksp;
302 do {
303 /* Bogus frame pointer? */
304 if (fp < (task_base + sizeof(struct thread_info)) ||
305 fp >= (task_base + (PAGE_SIZE << 1)))
306 break;
307 rw = (struct reg_window *) fp;
308 pc = rw->ins[7];
309 printk("[%08lx : ", pc);
310 print_symbol("%s ] ", pc);
311 fp = rw->ins[6];
312 } while (++count < 16);
313 printk("\n");
314}
315
Tom 'spot' Callaway24dc6ea2005-04-24 20:46:49 -0700316void dump_stack(void)
317{
318 unsigned long *ksp;
319
320 __asm__ __volatile__("mov %%fp, %0"
321 : "=r" (ksp));
322 show_stack(current, ksp);
323}
324
325EXPORT_SYMBOL(dump_stack);
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327/*
328 * Note: sparc64 has a pretty intricated thread_saved_pc, check it out.
329 */
330unsigned long thread_saved_pc(struct task_struct *tsk)
331{
Al Virod562ef62006-01-12 01:05:46 -0800332 return task_thread_info(tsk)->kpc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333}
334
335/*
336 * Free current thread data structures etc..
337 */
338void exit_thread(void)
339{
340#ifndef CONFIG_SMP
341 if(last_task_used_math == current) {
342#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700343 if (test_thread_flag(TIF_USEDFPU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344#endif
345 /* Keep process from leaving FPU in a bogon state. */
346 put_psr(get_psr() | PSR_EF);
347 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
348 &current->thread.fpqueue[0], &current->thread.fpqdepth);
349#ifndef CONFIG_SMP
350 last_task_used_math = NULL;
351#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700352 clear_thread_flag(TIF_USEDFPU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353#endif
354 }
355}
356
357void flush_thread(void)
358{
359 current_thread_info()->w_saved = 0;
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361#ifndef CONFIG_SMP
362 if(last_task_used_math == current) {
363#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700364 if (test_thread_flag(TIF_USEDFPU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365#endif
366 /* Clean the fpu. */
367 put_psr(get_psr() | PSR_EF);
368 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
369 &current->thread.fpqueue[0], &current->thread.fpqdepth);
370#ifndef CONFIG_SMP
371 last_task_used_math = NULL;
372#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700373 clear_thread_flag(TIF_USEDFPU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374#endif
375 }
376
377 /* Now, this task is no longer a kernel thread. */
378 current->thread.current_ds = USER_DS;
379 if (current->thread.flags & SPARC_FLAG_KTHREAD) {
380 current->thread.flags &= ~SPARC_FLAG_KTHREAD;
381
382 /* We must fixup kregs as well. */
383 /* XXX This was not fixed for ti for a while, worked. Unused? */
384 current->thread.kregs = (struct pt_regs *)
Al Viro36483c62006-01-12 01:05:47 -0800385 (task_stack_page(current) + (THREAD_SIZE - TRACEREG_SZ));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387}
388
David S. Miller64d329e2007-10-27 00:17:01 -0700389static inline struct sparc_stackf __user *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390clone_stackframe(struct sparc_stackf __user *dst,
391 struct sparc_stackf __user *src)
392{
393 unsigned long size, fp;
394 struct sparc_stackf *tmp;
395 struct sparc_stackf __user *sp;
396
397 if (get_user(tmp, &src->fp))
398 return NULL;
399
400 fp = (unsigned long) tmp;
401 size = (fp - ((unsigned long) src));
402 fp = (unsigned long) dst;
403 sp = (struct sparc_stackf __user *)(fp - size);
404
405 /* do_fork() grabs the parent semaphore, we must release it
406 * temporarily so we can build the child clone stack frame
407 * without deadlocking.
408 */
409 if (__copy_user(sp, src, size))
410 sp = NULL;
411 else if (put_user(fp, &sp->fp))
412 sp = NULL;
413
414 return sp;
415}
416
417asmlinkage int sparc_do_fork(unsigned long clone_flags,
418 unsigned long stack_start,
419 struct pt_regs *regs,
420 unsigned long stack_size)
421{
422 unsigned long parent_tid_ptr, child_tid_ptr;
David S. Miller1e38c122008-05-07 16:21:28 -0700423 unsigned long orig_i1 = regs->u_regs[UREG_I1];
424 long ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
426 parent_tid_ptr = regs->u_regs[UREG_I2];
427 child_tid_ptr = regs->u_regs[UREG_I4];
428
David S. Miller1e38c122008-05-07 16:21:28 -0700429 ret = do_fork(clone_flags, stack_start,
430 regs, stack_size,
431 (int __user *) parent_tid_ptr,
432 (int __user *) child_tid_ptr);
433
434 /* If we get an error and potentially restart the system
435 * call, we're screwed because copy_thread() clobbered
436 * the parent's %o1. So detect that case and restore it
437 * here.
438 */
439 if ((unsigned long)ret >= -ERESTART_RESTARTBLOCK)
440 regs->u_regs[UREG_I1] = orig_i1;
441
442 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
445/* Copy a Sparc thread. The fork() return value conventions
446 * under SunOS are nothing short of bletcherous:
447 * Parent --> %o0 == childs pid, %o1 == 0
448 * Child --> %o0 == parents pid, %o1 == 1
449 *
450 * NOTE: We have a separate fork kpsr/kwim because
451 * the parent could change these values between
452 * sys_fork invocation and when we reach here
453 * if the parent should sleep while trying to
454 * allocate the task_struct and kernel stack in
455 * do_fork().
456 * XXX See comment above sys_vfork in sparc64. todo.
457 */
458extern void ret_from_fork(void);
459
460int copy_thread(int nr, unsigned long clone_flags, unsigned long sp,
461 unsigned long unused,
462 struct task_struct *p, struct pt_regs *regs)
463{
Al Viro36483c62006-01-12 01:05:47 -0800464 struct thread_info *ti = task_thread_info(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 struct pt_regs *childregs;
466 char *new_stack;
467
468#ifndef CONFIG_SMP
469 if(last_task_used_math == current) {
470#else
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700471 if (test_thread_flag(TIF_USEDFPU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472#endif
473 put_psr(get_psr() | PSR_EF);
474 fpsave(&p->thread.float_regs[0], &p->thread.fsr,
475 &p->thread.fpqueue[0], &p->thread.fpqdepth);
476#ifdef CONFIG_SMP
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700477 clear_thread_flag(TIF_USEDFPU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478#endif
479 }
480
481 /*
482 * p->thread_info new_stack childregs
483 * ! ! ! {if(PSR_PS) }
484 * V V (stk.fr.) V (pt_regs) { (stk.fr.) }
485 * +----- - - - - - ------+===========+============={+==========}+
486 */
Al Viro36483c62006-01-12 01:05:47 -0800487 new_stack = task_stack_page(p) + THREAD_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (regs->psr & PSR_PS)
489 new_stack -= STACKFRAME_SZ;
490 new_stack -= STACKFRAME_SZ + TRACEREG_SZ;
491 memcpy(new_stack, (char *)regs - STACKFRAME_SZ, STACKFRAME_SZ + TRACEREG_SZ);
492 childregs = (struct pt_regs *) (new_stack + STACKFRAME_SZ);
493
494 /*
495 * A new process must start with interrupts closed in 2.5,
496 * because this is how Mingo's scheduler works (see schedule_tail
497 * and finish_arch_switch). If we do not do it, a timer interrupt hits
498 * before we unlock, attempts to re-take the rq->lock, and then we die.
499 * Thus, kpsr|=PSR_PIL.
500 */
501 ti->ksp = (unsigned long) new_stack;
502 ti->kpc = (((unsigned long) ret_from_fork) - 0x8);
503 ti->kpsr = current->thread.fork_kpsr | PSR_PIL;
504 ti->kwim = current->thread.fork_kwim;
505
506 if(regs->psr & PSR_PS) {
507 extern struct pt_regs fake_swapper_regs;
508
509 p->thread.kregs = &fake_swapper_regs;
510 new_stack += STACKFRAME_SZ + TRACEREG_SZ;
511 childregs->u_regs[UREG_FP] = (unsigned long) new_stack;
512 p->thread.flags |= SPARC_FLAG_KTHREAD;
513 p->thread.current_ds = KERNEL_DS;
514 memcpy(new_stack, (void *)regs->u_regs[UREG_FP], STACKFRAME_SZ);
515 childregs->u_regs[UREG_G6] = (unsigned long) ti;
516 } else {
517 p->thread.kregs = childregs;
518 childregs->u_regs[UREG_FP] = sp;
519 p->thread.flags &= ~SPARC_FLAG_KTHREAD;
520 p->thread.current_ds = USER_DS;
521
522 if (sp != regs->u_regs[UREG_FP]) {
523 struct sparc_stackf __user *childstack;
524 struct sparc_stackf __user *parentstack;
525
526 /*
527 * This is a clone() call with supplied user stack.
528 * Set some valid stack frames to give to the child.
529 */
530 childstack = (struct sparc_stackf __user *)
531 (sp & ~0x7UL);
532 parentstack = (struct sparc_stackf __user *)
533 regs->u_regs[UREG_FP];
534
535#if 0
536 printk("clone: parent stack:\n");
537 show_stackframe(parentstack);
538#endif
539
540 childstack = clone_stackframe(childstack, parentstack);
541 if (!childstack)
542 return -EFAULT;
543
544#if 0
545 printk("clone: child stack:\n");
546 show_stackframe(childstack);
547#endif
548
549 childregs->u_regs[UREG_FP] = (unsigned long)childstack;
550 }
551 }
552
553#ifdef CONFIG_SMP
554 /* FPU must be disabled on SMP. */
555 childregs->psr &= ~PSR_EF;
556#endif
557
558 /* Set the return value for the child. */
559 childregs->u_regs[UREG_I0] = current->pid;
560 childregs->u_regs[UREG_I1] = 1;
561
562 /* Set the return value for the parent. */
563 regs->u_regs[UREG_I1] = 0;
564
565 if (clone_flags & CLONE_SETTLS)
566 childregs->u_regs[UREG_G7] = regs->u_regs[UREG_I3];
567
568 return 0;
569}
570
571/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 * fill in the fpu structure for a core dump.
573 */
574int dump_fpu (struct pt_regs * regs, elf_fpregset_t * fpregs)
575{
576 if (used_math()) {
577 memset(fpregs, 0, sizeof(*fpregs));
578 fpregs->pr_q_entrysize = 8;
579 return 1;
580 }
581#ifdef CONFIG_SMP
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700582 if (test_thread_flag(TIF_USEDFPU)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 put_psr(get_psr() | PSR_EF);
584 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
585 &current->thread.fpqueue[0], &current->thread.fpqdepth);
586 if (regs != NULL) {
587 regs->psr &= ~(PSR_EF);
William Lee Irwin III54f565e2007-03-12 17:08:25 -0700588 clear_thread_flag(TIF_USEDFPU);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 }
590 }
591#else
592 if (current == last_task_used_math) {
593 put_psr(get_psr() | PSR_EF);
594 fpsave(&current->thread.float_regs[0], &current->thread.fsr,
595 &current->thread.fpqueue[0], &current->thread.fpqdepth);
596 if (regs != NULL) {
597 regs->psr &= ~(PSR_EF);
598 last_task_used_math = NULL;
599 }
600 }
601#endif
602 memcpy(&fpregs->pr_fr.pr_regs[0],
603 &current->thread.float_regs[0],
604 (sizeof(unsigned long) * 32));
605 fpregs->pr_fsr = current->thread.fsr;
606 fpregs->pr_qcnt = current->thread.fpqdepth;
607 fpregs->pr_q_entrysize = 8;
608 fpregs->pr_en = 1;
609 if(fpregs->pr_qcnt != 0) {
610 memcpy(&fpregs->pr_q[0],
611 &current->thread.fpqueue[0],
612 sizeof(struct fpq) * fpregs->pr_qcnt);
613 }
614 /* Zero out the rest. */
615 memset(&fpregs->pr_q[fpregs->pr_qcnt], 0,
616 sizeof(struct fpq) * (32 - fpregs->pr_qcnt));
617 return 1;
618}
619
620/*
621 * sparc_execve() executes a new program after the asm stub has set
622 * things up for us. This should basically do what I want it to.
623 */
624asmlinkage int sparc_execve(struct pt_regs *regs)
625{
626 int error, base = 0;
627 char *filename;
628
629 /* Check for indirect call. */
630 if(regs->u_regs[UREG_G1] == 0)
631 base = 1;
632
633 filename = getname((char __user *)regs->u_regs[base + UREG_I0]);
634 error = PTR_ERR(filename);
635 if(IS_ERR(filename))
636 goto out;
637 error = do_execve(filename,
638 (char __user * __user *)regs->u_regs[base + UREG_I1],
639 (char __user * __user *)regs->u_regs[base + UREG_I2],
640 regs);
641 putname(filename);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642out:
643 return error;
644}
645
646/*
647 * This is the mechanism for creating a new kernel thread.
648 *
649 * NOTE! Only a kernel-only process(ie the swapper or direct descendants
650 * who haven't done an "execve()") should use this: it will work within
651 * a system call from a "real" process, but the process memory space will
Simon Arlottd1a78c32007-05-11 13:51:23 -0700652 * not be freed until both the parent and the child have exited.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 */
654pid_t kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
655{
656 long retval;
657
658 __asm__ __volatile__("mov %4, %%g2\n\t" /* Set aside fn ptr... */
659 "mov %5, %%g3\n\t" /* and arg. */
660 "mov %1, %%g1\n\t"
661 "mov %2, %%o0\n\t" /* Clone flags. */
662 "mov 0, %%o1\n\t" /* usp arg == 0 */
663 "t 0x10\n\t" /* Linux/Sparc clone(). */
664 "cmp %%o1, 0\n\t"
665 "be 1f\n\t" /* The parent, just return. */
666 " nop\n\t" /* Delay slot. */
667 "jmpl %%g2, %%o7\n\t" /* Call the function. */
668 " mov %%g3, %%o0\n\t" /* Get back the arg in delay. */
669 "mov %3, %%g1\n\t"
670 "t 0x10\n\t" /* Linux/Sparc exit(). */
671 /* Notreached by child. */
672 "1: mov %%o0, %0\n\t" :
673 "=r" (retval) :
674 "i" (__NR_clone), "r" (flags | CLONE_VM | CLONE_UNTRACED),
675 "i" (__NR_exit), "r" (fn), "r" (arg) :
676 "g1", "g2", "g3", "o0", "o1", "memory", "cc");
677 return retval;
678}
679
680unsigned long get_wchan(struct task_struct *task)
681{
682 unsigned long pc, fp, bias = 0;
683 unsigned long task_base = (unsigned long) task;
684 unsigned long ret = 0;
685 struct reg_window *rw;
686 int count = 0;
687
688 if (!task || task == current ||
689 task->state == TASK_RUNNING)
690 goto out;
691
Al Virod562ef62006-01-12 01:05:46 -0800692 fp = task_thread_info(task)->ksp + bias;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 do {
694 /* Bogus frame pointer? */
695 if (fp < (task_base + sizeof(struct thread_info)) ||
696 fp >= (task_base + (2 * PAGE_SIZE)))
697 break;
698 rw = (struct reg_window *) fp;
699 pc = rw->ins[7];
700 if (!in_sched_functions(pc)) {
701 ret = pc;
702 goto out;
703 }
704 fp = rw->ins[6] + bias;
705 } while (++count < 16);
706
707out:
708 return ret;
709}
710