1 /* $Id: process.c,v 1.131 2002/02/09 19:49:30 davem Exp $
2 * arch/sparc64/kernel/process.c
4 * Copyright (C) 1995, 1996 David S. Miller (davem@caip.rutgers.edu)
5 * Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be)
6 * Copyright (C) 1997, 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
10 * This file handles the architecture-dependent parts of process handling..
15 #include <linux/config.h>
16 #include <linux/errno.h>
17 #include <linux/module.h>
18 #include <linux/sched.h>
19 #include <linux/kernel.h>
20 #include <linux/kallsyms.h>
22 #include <linux/smp.h>
23 #include <linux/smp_lock.h>
24 #include <linux/stddef.h>
25 #include <linux/ptrace.h>
26 #include <linux/slab.h>
27 #include <linux/user.h>
28 #include <linux/a.out.h>
29 #include <linux/config.h>
30 #include <linux/reboot.h>
31 #include <linux/delay.h>
32 #include <linux/compat.h>
33 #include <linux/init.h>
35 #include <asm/oplib.h>
36 #include <asm/uaccess.h>
37 #include <asm/system.h>
39 #include <asm/pgalloc.h>
40 #include <asm/pgtable.h>
41 #include <asm/processor.h>
42 #include <asm/pstate.h>
44 #include <asm/fpumacro.h>
46 #include <asm/cpudata.h>
47 #include <asm/mmu_context.h>
48 #include <asm/unistd.h>
49 #include <asm/hypervisor.h>
51 /* #define VERBOSE_SHOWREGS */
53 static void sparc64_yield(void)
55 if (tlb_type
!= hypervisor
)
58 clear_thread_flag(TIF_POLLING_NRFLAG
);
59 smp_mb__after_clear_bit();
61 while (!need_resched()) {
64 /* Disable interrupts. */
66 "rdpr %%pstate, %0\n\t"
68 "wrpr %0, %%g0, %%pstate"
75 /* Re-enable interrupts. */
77 "rdpr %%pstate, %0\n\t"
79 "wrpr %0, %%g0, %%pstate"
84 set_thread_flag(TIF_POLLING_NRFLAG
);
87 /* The idle loop on sparc64. */
90 set_thread_flag(TIF_POLLING_NRFLAG
);
94 preempt_enable_no_resched();
102 extern char reboot_command
[];
104 extern void (*prom_palette
)(int);
105 extern void (*prom_keyboard
)(void);
107 void machine_halt(void)
109 if (!serial_console
&& prom_palette
)
114 panic("Halt failed!");
117 void machine_alt_power_off(void)
119 if (!serial_console
&& prom_palette
)
123 prom_halt_power_off();
124 panic("Power-off failed!");
127 void machine_restart(char * cmd
)
131 p
= strchr (reboot_command
, '\n');
133 if (!serial_console
&& prom_palette
)
140 prom_reboot(reboot_command
);
142 panic("Reboot failed!");
146 static void show_regwindow32(struct pt_regs
*regs
)
148 struct reg_window32 __user
*rw
;
149 struct reg_window32 r_w
;
152 __asm__
__volatile__ ("flushw");
153 rw
= compat_ptr((unsigned)regs
->u_regs
[14]);
156 if (copy_from_user (&r_w
, rw
, sizeof(r_w
))) {
162 printk("l0: %08x l1: %08x l2: %08x l3: %08x "
163 "l4: %08x l5: %08x l6: %08x l7: %08x\n",
164 r_w
.locals
[0], r_w
.locals
[1], r_w
.locals
[2], r_w
.locals
[3],
165 r_w
.locals
[4], r_w
.locals
[5], r_w
.locals
[6], r_w
.locals
[7]);
166 printk("i0: %08x i1: %08x i2: %08x i3: %08x "
167 "i4: %08x i5: %08x i6: %08x i7: %08x\n",
168 r_w
.ins
[0], r_w
.ins
[1], r_w
.ins
[2], r_w
.ins
[3],
169 r_w
.ins
[4], r_w
.ins
[5], r_w
.ins
[6], r_w
.ins
[7]);
172 #define show_regwindow32(regs) do { } while (0)
175 static void show_regwindow(struct pt_regs
*regs
)
177 struct reg_window __user
*rw
;
178 struct reg_window
*rwk
;
179 struct reg_window r_w
;
182 if ((regs
->tstate
& TSTATE_PRIV
) || !(test_thread_flag(TIF_32BIT
))) {
183 __asm__
__volatile__ ("flushw");
184 rw
= (struct reg_window __user
*)
185 (regs
->u_regs
[14] + STACK_BIAS
);
186 rwk
= (struct reg_window
*)
187 (regs
->u_regs
[14] + STACK_BIAS
);
188 if (!(regs
->tstate
& TSTATE_PRIV
)) {
191 if (copy_from_user (&r_w
, rw
, sizeof(r_w
))) {
199 show_regwindow32(regs
);
202 printk("l0: %016lx l1: %016lx l2: %016lx l3: %016lx\n",
203 rwk
->locals
[0], rwk
->locals
[1], rwk
->locals
[2], rwk
->locals
[3]);
204 printk("l4: %016lx l5: %016lx l6: %016lx l7: %016lx\n",
205 rwk
->locals
[4], rwk
->locals
[5], rwk
->locals
[6], rwk
->locals
[7]);
206 printk("i0: %016lx i1: %016lx i2: %016lx i3: %016lx\n",
207 rwk
->ins
[0], rwk
->ins
[1], rwk
->ins
[2], rwk
->ins
[3]);
208 printk("i4: %016lx i5: %016lx i6: %016lx i7: %016lx\n",
209 rwk
->ins
[4], rwk
->ins
[5], rwk
->ins
[6], rwk
->ins
[7]);
210 if (regs
->tstate
& TSTATE_PRIV
)
211 print_symbol("I7: <%s>\n", rwk
->ins
[7]);
214 void show_stackframe(struct sparc_stackf
*sf
)
220 printk("l0: %016lx l1: %016lx l2: %016lx l3: %016lx\n"
221 "l4: %016lx l5: %016lx l6: %016lx l7: %016lx\n",
222 sf
->locals
[0], sf
->locals
[1], sf
->locals
[2], sf
->locals
[3],
223 sf
->locals
[4], sf
->locals
[5], sf
->locals
[6], sf
->locals
[7]);
224 printk("i0: %016lx i1: %016lx i2: %016lx i3: %016lx\n"
225 "i4: %016lx i5: %016lx fp: %016lx ret_pc: %016lx\n",
226 sf
->ins
[0], sf
->ins
[1], sf
->ins
[2], sf
->ins
[3],
227 sf
->ins
[4], sf
->ins
[5], (unsigned long)sf
->fp
, sf
->callers_pc
);
228 printk("sp: %016lx x0: %016lx x1: %016lx x2: %016lx\n"
229 "x3: %016lx x4: %016lx x5: %016lx xx: %016lx\n",
230 (unsigned long)sf
->structptr
, sf
->xargs
[0], sf
->xargs
[1],
231 sf
->xargs
[2], sf
->xargs
[3], sf
->xargs
[4], sf
->xargs
[5],
233 size
= ((unsigned long)sf
->fp
) - ((unsigned long)sf
);
234 size
-= STACKFRAME_SZ
;
235 stk
= (unsigned long *)((unsigned long)sf
+ STACKFRAME_SZ
);
238 printk("s%d: %016lx\n", i
++, *stk
++);
239 } while ((size
-= sizeof(unsigned long)));
242 void show_stackframe32(struct sparc_stackf32
*sf
)
248 printk("l0: %08x l1: %08x l2: %08x l3: %08x\n",
249 sf
->locals
[0], sf
->locals
[1], sf
->locals
[2], sf
->locals
[3]);
250 printk("l4: %08x l5: %08x l6: %08x l7: %08x\n",
251 sf
->locals
[4], sf
->locals
[5], sf
->locals
[6], sf
->locals
[7]);
252 printk("i0: %08x i1: %08x i2: %08x i3: %08x\n",
253 sf
->ins
[0], sf
->ins
[1], sf
->ins
[2], sf
->ins
[3]);
254 printk("i4: %08x i5: %08x fp: %08x ret_pc: %08x\n",
255 sf
->ins
[4], sf
->ins
[5], sf
->fp
, sf
->callers_pc
);
256 printk("sp: %08x x0: %08x x1: %08x x2: %08x\n"
257 "x3: %08x x4: %08x x5: %08x xx: %08x\n",
258 sf
->structptr
, sf
->xargs
[0], sf
->xargs
[1],
259 sf
->xargs
[2], sf
->xargs
[3], sf
->xargs
[4], sf
->xargs
[5],
261 size
= ((unsigned long)sf
->fp
) - ((unsigned long)sf
);
262 size
-= STACKFRAME32_SZ
;
263 stk
= (unsigned *)((unsigned long)sf
+ STACKFRAME32_SZ
);
266 printk("s%d: %08x\n", i
++, *stk
++);
267 } while ((size
-= sizeof(unsigned)));
271 static DEFINE_SPINLOCK(regdump_lock
);
274 void __show_regs(struct pt_regs
* regs
)
279 /* Protect against xcall ipis which might lead to livelock on the lock */
280 __asm__
__volatile__("rdpr %%pstate, %0\n\t"
281 "wrpr %0, %1, %%pstate"
284 spin_lock(®dump_lock
);
286 printk("TSTATE: %016lx TPC: %016lx TNPC: %016lx Y: %08x %s\n", regs
->tstate
,
287 regs
->tpc
, regs
->tnpc
, regs
->y
, print_tainted());
288 print_symbol("TPC: <%s>\n", regs
->tpc
);
289 printk("g0: %016lx g1: %016lx g2: %016lx g3: %016lx\n",
290 regs
->u_regs
[0], regs
->u_regs
[1], regs
->u_regs
[2],
292 printk("g4: %016lx g5: %016lx g6: %016lx g7: %016lx\n",
293 regs
->u_regs
[4], regs
->u_regs
[5], regs
->u_regs
[6],
295 printk("o0: %016lx o1: %016lx o2: %016lx o3: %016lx\n",
296 regs
->u_regs
[8], regs
->u_regs
[9], regs
->u_regs
[10],
298 printk("o4: %016lx o5: %016lx sp: %016lx ret_pc: %016lx\n",
299 regs
->u_regs
[12], regs
->u_regs
[13], regs
->u_regs
[14],
301 print_symbol("RPC: <%s>\n", regs
->u_regs
[15]);
302 show_regwindow(regs
);
304 spin_unlock(®dump_lock
);
305 __asm__
__volatile__("wrpr %0, 0, %%pstate"
310 #ifdef VERBOSE_SHOWREGS
311 static void idump_from_user (unsigned int *pc
)
316 if((((unsigned long) pc
) & 3))
320 for(i
= -3; i
< 6; i
++) {
322 printk("%c%08x%c",i
?' ':'<',code
,i
?' ':'>');
329 void show_regs(struct pt_regs
*regs
)
331 #ifdef VERBOSE_SHOWREGS
332 extern long etrap
, etraptl1
;
338 extern void smp_report_regs(void);
345 #ifdef VERBOSE_SHOWREGS
346 if (regs
->tpc
>= &etrap
&& regs
->tpc
< &etraptl1
&&
347 regs
->u_regs
[14] >= (long)current
- PAGE_SIZE
&&
348 regs
->u_regs
[14] < (long)current
+ 6 * PAGE_SIZE
) {
349 printk ("*********parent**********\n");
350 __show_regs((struct pt_regs
*)(regs
->u_regs
[14] + PTREGS_OFF
));
351 idump_from_user(((struct pt_regs
*)(regs
->u_regs
[14] + PTREGS_OFF
))->tpc
);
352 printk ("*********endpar**********\n");
357 void show_regs32(struct pt_regs32
*regs
)
359 printk("PSR: %08x PC: %08x NPC: %08x Y: %08x %s\n", regs
->psr
,
360 regs
->pc
, regs
->npc
, regs
->y
, print_tainted());
361 printk("g0: %08x g1: %08x g2: %08x g3: %08x ",
362 regs
->u_regs
[0], regs
->u_regs
[1], regs
->u_regs
[2],
364 printk("g4: %08x g5: %08x g6: %08x g7: %08x\n",
365 regs
->u_regs
[4], regs
->u_regs
[5], regs
->u_regs
[6],
367 printk("o0: %08x o1: %08x o2: %08x o3: %08x ",
368 regs
->u_regs
[8], regs
->u_regs
[9], regs
->u_regs
[10],
370 printk("o4: %08x o5: %08x sp: %08x ret_pc: %08x\n",
371 regs
->u_regs
[12], regs
->u_regs
[13], regs
->u_regs
[14],
375 unsigned long thread_saved_pc(struct task_struct
*tsk
)
377 struct thread_info
*ti
= task_thread_info(tsk
);
378 unsigned long ret
= 0xdeadbeefUL
;
382 sp
= (unsigned long *)(ti
->ksp
+ STACK_BIAS
);
383 if (((unsigned long)sp
& (sizeof(long) - 1)) == 0UL &&
386 fp
= (unsigned long *)(sp
[14] + STACK_BIAS
);
387 if (((unsigned long)fp
& (sizeof(long) - 1)) == 0UL)
394 /* Free current thread data structures etc.. */
395 void exit_thread(void)
397 struct thread_info
*t
= current_thread_info();
400 if (t
->utraps
[0] < 2)
406 if (test_and_clear_thread_flag(TIF_PERFCTR
)) {
407 t
->user_cntd0
= t
->user_cntd1
= NULL
;
413 void flush_thread(void)
415 struct thread_info
*t
= current_thread_info();
416 struct mm_struct
*mm
;
418 if (t
->flags
& _TIF_ABI_PENDING
)
419 t
->flags
^= (_TIF_ABI_PENDING
| _TIF_32BIT
);
423 tsb_context_switch(mm
);
425 set_thread_wsaved(0);
427 /* Turn off performance counters if on. */
428 if (test_and_clear_thread_flag(TIF_PERFCTR
)) {
429 t
->user_cntd0
= t
->user_cntd1
= NULL
;
434 /* Clear FPU register state. */
437 if (get_thread_current_ds() != ASI_AIUS
)
440 /* Init new signal delivery disposition. */
441 clear_thread_flag(TIF_NEWSIGNALS
);
444 /* It's a bit more tricky when 64-bit tasks are involved... */
445 static unsigned long clone_stackframe(unsigned long csp
, unsigned long psp
)
447 unsigned long fp
, distance
, rval
;
449 if (!(test_thread_flag(TIF_32BIT
))) {
452 __get_user(fp
, &(((struct reg_window __user
*)psp
)->ins
[6]));
455 __get_user(fp
, &(((struct reg_window32 __user
*)psp
)->ins
[6]));
457 /* Now 8-byte align the stack as this is mandatory in the
458 * Sparc ABI due to how register windows work. This hides
459 * the restriction from thread libraries etc. -DaveM
464 rval
= (csp
- distance
);
465 if (copy_in_user((void __user
*) rval
, (void __user
*) psp
, distance
))
467 else if (test_thread_flag(TIF_32BIT
)) {
468 if (put_user(((u32
)csp
),
469 &(((struct reg_window32 __user
*)rval
)->ins
[6])))
472 if (put_user(((u64
)csp
- STACK_BIAS
),
473 &(((struct reg_window __user
*)rval
)->ins
[6])))
476 rval
= rval
- STACK_BIAS
;
482 /* Standard stuff. */
483 static inline void shift_window_buffer(int first_win
, int last_win
,
484 struct thread_info
*t
)
488 for (i
= first_win
; i
< last_win
; i
++) {
489 t
->rwbuf_stkptrs
[i
] = t
->rwbuf_stkptrs
[i
+1];
490 memcpy(&t
->reg_window
[i
], &t
->reg_window
[i
+1],
491 sizeof(struct reg_window
));
495 void synchronize_user_stack(void)
497 struct thread_info
*t
= current_thread_info();
498 unsigned long window
;
500 flush_user_windows();
501 if ((window
= get_thread_wsaved()) != 0) {
502 int winsize
= sizeof(struct reg_window
);
505 if (test_thread_flag(TIF_32BIT
))
506 winsize
= sizeof(struct reg_window32
);
512 unsigned long sp
= (t
->rwbuf_stkptrs
[window
] + bias
);
513 struct reg_window
*rwin
= &t
->reg_window
[window
];
515 if (!copy_to_user((char __user
*)sp
, rwin
, winsize
)) {
516 shift_window_buffer(window
, get_thread_wsaved() - 1, t
);
517 set_thread_wsaved(get_thread_wsaved() - 1);
523 static void stack_unaligned(unsigned long sp
)
527 info
.si_signo
= SIGBUS
;
529 info
.si_code
= BUS_ADRALN
;
530 info
.si_addr
= (void __user
*) sp
;
532 force_sig_info(SIGBUS
, &info
, current
);
535 void fault_in_user_windows(void)
537 struct thread_info
*t
= current_thread_info();
538 unsigned long window
;
539 int winsize
= sizeof(struct reg_window
);
542 if (test_thread_flag(TIF_32BIT
))
543 winsize
= sizeof(struct reg_window32
);
547 flush_user_windows();
548 window
= get_thread_wsaved();
550 if (likely(window
!= 0)) {
553 unsigned long sp
= (t
->rwbuf_stkptrs
[window
] + bias
);
554 struct reg_window
*rwin
= &t
->reg_window
[window
];
556 if (unlikely(sp
& 0x7UL
))
559 if (unlikely(copy_to_user((char __user
*)sp
,
564 set_thread_wsaved(0);
568 set_thread_wsaved(window
+ 1);
572 asmlinkage
long sparc_do_fork(unsigned long clone_flags
,
573 unsigned long stack_start
,
574 struct pt_regs
*regs
,
575 unsigned long stack_size
)
577 int __user
*parent_tid_ptr
, *child_tid_ptr
;
580 if (test_thread_flag(TIF_32BIT
)) {
581 parent_tid_ptr
= compat_ptr(regs
->u_regs
[UREG_I2
]);
582 child_tid_ptr
= compat_ptr(regs
->u_regs
[UREG_I4
]);
586 parent_tid_ptr
= (int __user
*) regs
->u_regs
[UREG_I2
];
587 child_tid_ptr
= (int __user
*) regs
->u_regs
[UREG_I4
];
590 return do_fork(clone_flags
, stack_start
,
592 parent_tid_ptr
, child_tid_ptr
);
595 /* Copy a Sparc thread. The fork() return value conventions
596 * under SunOS are nothing short of bletcherous:
597 * Parent --> %o0 == childs pid, %o1 == 0
598 * Child --> %o0 == parents pid, %o1 == 1
600 int copy_thread(int nr
, unsigned long clone_flags
, unsigned long sp
,
601 unsigned long unused
,
602 struct task_struct
*p
, struct pt_regs
*regs
)
604 struct thread_info
*t
= task_thread_info(p
);
605 char *child_trap_frame
;
607 /* Calculate offset to stack_frame & pt_regs */
608 child_trap_frame
= task_stack_page(p
) + (THREAD_SIZE
- (TRACEREG_SZ
+STACKFRAME_SZ
));
609 memcpy(child_trap_frame
, (((struct sparc_stackf
*)regs
)-1), (TRACEREG_SZ
+STACKFRAME_SZ
));
611 t
->flags
= (t
->flags
& ~((0xffUL
<< TI_FLAG_CWP_SHIFT
) | (0xffUL
<< TI_FLAG_CURRENT_DS_SHIFT
))) |
612 (((regs
->tstate
+ 1) & TSTATE_CWP
) << TI_FLAG_CWP_SHIFT
);
614 t
->ksp
= ((unsigned long) child_trap_frame
) - STACK_BIAS
;
615 t
->kregs
= (struct pt_regs
*)(child_trap_frame
+sizeof(struct sparc_stackf
));
618 if (regs
->tstate
& TSTATE_PRIV
) {
619 /* Special case, if we are spawning a kernel thread from
620 * a userspace task (via KMOD, NFS, or similar) we must
621 * disable performance counters in the child because the
622 * address space and protection realm are changing.
624 if (t
->flags
& _TIF_PERFCTR
) {
625 t
->user_cntd0
= t
->user_cntd1
= NULL
;
627 t
->flags
&= ~_TIF_PERFCTR
;
629 t
->kregs
->u_regs
[UREG_FP
] = t
->ksp
;
630 t
->flags
|= ((long)ASI_P
<< TI_FLAG_CURRENT_DS_SHIFT
);
631 flush_register_windows();
632 memcpy((void *)(t
->ksp
+ STACK_BIAS
),
633 (void *)(regs
->u_regs
[UREG_FP
] + STACK_BIAS
),
634 sizeof(struct sparc_stackf
));
635 t
->kregs
->u_regs
[UREG_G6
] = (unsigned long) t
;
636 t
->kregs
->u_regs
[UREG_G4
] = (unsigned long) t
->task
;
638 if (t
->flags
& _TIF_32BIT
) {
639 sp
&= 0x00000000ffffffffUL
;
640 regs
->u_regs
[UREG_FP
] &= 0x00000000ffffffffUL
;
642 t
->kregs
->u_regs
[UREG_FP
] = sp
;
643 t
->flags
|= ((long)ASI_AIUS
<< TI_FLAG_CURRENT_DS_SHIFT
);
644 if (sp
!= regs
->u_regs
[UREG_FP
]) {
647 csp
= clone_stackframe(sp
, regs
->u_regs
[UREG_FP
]);
650 t
->kregs
->u_regs
[UREG_FP
] = csp
;
656 /* Set the return value for the child. */
657 t
->kregs
->u_regs
[UREG_I0
] = current
->pid
;
658 t
->kregs
->u_regs
[UREG_I1
] = 1;
660 /* Set the second return value for the parent. */
661 regs
->u_regs
[UREG_I1
] = 0;
663 if (clone_flags
& CLONE_SETTLS
)
664 t
->kregs
->u_regs
[UREG_G7
] = regs
->u_regs
[UREG_I3
];
670 * This is the mechanism for creating a new kernel thread.
672 * NOTE! Only a kernel-only process(ie the swapper or direct descendants
673 * who haven't done an "execve()") should use this: it will work within
674 * a system call from a "real" process, but the process memory space will
675 * not be free'd until both the parent and the child have exited.
677 pid_t
kernel_thread(int (*fn
)(void *), void * arg
, unsigned long flags
)
681 /* If the parent runs before fn(arg) is called by the child,
682 * the input registers of this function can be clobbered.
683 * So we stash 'fn' and 'arg' into global registers which
684 * will not be modified by the parent.
686 __asm__
__volatile__("mov %4, %%g2\n\t" /* Save FN into global */
687 "mov %5, %%g3\n\t" /* Save ARG into global */
688 "mov %1, %%g1\n\t" /* Clone syscall nr. */
689 "mov %2, %%o0\n\t" /* Clone flags. */
690 "mov 0, %%o1\n\t" /* usp arg == 0 */
691 "t 0x6d\n\t" /* Linux/Sparc clone(). */
692 "brz,a,pn %%o1, 1f\n\t" /* Parent, just return. */
694 "jmpl %%g2, %%o7\n\t" /* Call the function. */
695 " mov %%g3, %%o0\n\t" /* Set arg in delay. */
697 "t 0x6d\n\t" /* Linux/Sparc exit(). */
698 /* Notreached by child. */
701 "i" (__NR_clone
), "r" (flags
| CLONE_VM
| CLONE_UNTRACED
),
702 "i" (__NR_exit
), "r" (fn
), "r" (arg
) :
703 "g1", "g2", "g3", "o0", "o1", "memory", "cc");
708 * fill in the user structure for a core dump..
710 void dump_thread(struct pt_regs
* regs
, struct user
* dump
)
712 /* Only should be used for SunOS and ancient a.out
713 * SparcLinux binaries... Not worth implementing.
715 memset(dump
, 0, sizeof(struct user
));
720 unsigned int pr_regs
[32];
721 unsigned long pr_dregs
[16];
723 unsigned int __unused
;
725 unsigned char pr_qcnt
;
726 unsigned char pr_q_entrysize
;
728 unsigned int pr_q
[64];
732 * fill in the fpu structure for a core dump.
734 int dump_fpu (struct pt_regs
* regs
, elf_fpregset_t
* fpregs
)
736 unsigned long *kfpregs
= current_thread_info()->fpregs
;
737 unsigned long fprs
= current_thread_info()->fpsaved
[0];
739 if (test_thread_flag(TIF_32BIT
)) {
740 elf_fpregset_t32
*fpregs32
= (elf_fpregset_t32
*)fpregs
;
743 memcpy(&fpregs32
->pr_fr
.pr_regs
[0], kfpregs
,
744 sizeof(unsigned int) * 32);
746 memset(&fpregs32
->pr_fr
.pr_regs
[0], 0,
747 sizeof(unsigned int) * 32);
748 fpregs32
->pr_qcnt
= 0;
749 fpregs32
->pr_q_entrysize
= 8;
750 memset(&fpregs32
->pr_q
[0], 0,
751 (sizeof(unsigned int) * 64));
752 if (fprs
& FPRS_FEF
) {
753 fpregs32
->pr_fsr
= (unsigned int) current_thread_info()->xfsr
[0];
756 fpregs32
->pr_fsr
= 0;
761 memcpy(&fpregs
->pr_regs
[0], kfpregs
,
762 sizeof(unsigned int) * 32);
764 memset(&fpregs
->pr_regs
[0], 0,
765 sizeof(unsigned int) * 32);
767 memcpy(&fpregs
->pr_regs
[16], kfpregs
+16,
768 sizeof(unsigned int) * 32);
770 memset(&fpregs
->pr_regs
[16], 0,
771 sizeof(unsigned int) * 32);
772 if(fprs
& FPRS_FEF
) {
773 fpregs
->pr_fsr
= current_thread_info()->xfsr
[0];
774 fpregs
->pr_gsr
= current_thread_info()->gsr
[0];
776 fpregs
->pr_fsr
= fpregs
->pr_gsr
= 0;
778 fpregs
->pr_fprs
= fprs
;
784 * sparc_execve() executes a new program after the asm stub has set
785 * things up for us. This should basically do what I want it to.
787 asmlinkage
int sparc_execve(struct pt_regs
*regs
)
792 /* User register window flush is done by entry.S */
794 /* Check for indirect call. */
795 if (regs
->u_regs
[UREG_G1
] == 0)
798 filename
= getname((char __user
*)regs
->u_regs
[base
+ UREG_I0
]);
799 error
= PTR_ERR(filename
);
800 if (IS_ERR(filename
))
802 error
= do_execve(filename
,
803 (char __user
* __user
*)
804 regs
->u_regs
[base
+ UREG_I1
],
805 (char __user
* __user
*)
806 regs
->u_regs
[base
+ UREG_I2
], regs
);
810 current_thread_info()->xfsr
[0] = 0;
811 current_thread_info()->fpsaved
[0] = 0;
812 regs
->tstate
&= ~TSTATE_PEF
;
814 current
->ptrace
&= ~PT_DTRACE
;
815 task_unlock(current
);
821 unsigned long get_wchan(struct task_struct
*task
)
823 unsigned long pc
, fp
, bias
= 0;
824 unsigned long thread_info_base
;
825 struct reg_window
*rw
;
826 unsigned long ret
= 0;
829 if (!task
|| task
== current
||
830 task
->state
== TASK_RUNNING
)
833 thread_info_base
= (unsigned long) task_stack_page(task
);
835 fp
= task_thread_info(task
)->ksp
+ bias
;
838 /* Bogus frame pointer? */
839 if (fp
< (thread_info_base
+ sizeof(struct thread_info
)) ||
840 fp
>= (thread_info_base
+ THREAD_SIZE
))
842 rw
= (struct reg_window
*) fp
;
844 if (!in_sched_functions(pc
)) {
848 fp
= rw
->ins
[6] + bias
;
849 } while (++count
< 16);