patch-1.3.45 linux/arch/ppc/kernel/process.c
Next file: linux/arch/ppc/kernel/raw_printf.c
Previous file: linux/arch/ppc/kernel/ppc_machine.h.isin.processor.h
Back to the patch index
Back to the overall index
- Lines: 239
- Date:
Sat Nov 25 13:52:39 1995
- Orig file:
v1.3.44/linux/arch/ppc/kernel/process.c
- Orig date:
Thu Jan 1 02:00:00 1970
diff -u --recursive --new-file v1.3.44/linux/arch/ppc/kernel/process.c linux/arch/ppc/kernel/process.c
@@ -0,0 +1,238 @@
+/* * Last edited: Nov 8 12:32 1995 (cort) */
+/*
+ * linux/arch/ppc/kernel/process.c
+ *
+ * Copyright (C) 1995 Linus Torvalds
+ * Adapted for PowerPC by Gary Thomas
+ */
+
+/*
+ * This file handles the architecture-dependent parts of process handling..
+ */
+
+#include <linux/errno.h>
+#include <linux/sched.h>
+#include <linux/kernel.h>
+#include <linux/mm.h>
+#include <linux/stddef.h>
+#include <linux/unistd.h>
+#include <linux/ptrace.h>
+#include <linux/malloc.h>
+#include <linux/ldt.h>
+#include <linux/user.h>
+#include <linux/a.out.h>
+
+#include <asm/pgtable.h>
+#include <asm/segment.h>
+#include <asm/system.h>
+#include <asm/io.h>
+
+#include <asm/processor.h>
+
+int dump_fpu (struct user_i387_struct* fpu)
+{
+ return 1; /* all ppc's have a fpu */
+}
+
+void
+switch_to(struct task_struct *new)
+{
+ struct pt_regs *regs;
+ struct thread_struct *new_tss, *old_tss;
+ int s;
+ regs = (struct pt_regs *)new->tss.ksp;
+/*
+printk("Task %x(%d) -> %x(%d)", current, current->pid, new, new->pid);
+printk(" - IP: %x, SR: %x, SP: %x\n", regs->nip, regs->msr, regs);
+*/
+ s = _disable_interrupts();
+ new_tss = &new->tss;
+ old_tss = ¤t->tss;
+ current = new;
+ _switch(old_tss, new_tss);
+
+/* printk("Back in task %x(%d)\n", current, current->pid);*/
+
+ _enable_interrupts(s);
+}
+
+asmlinkage int sys_idle(void)
+{
+
+ if (current->pid != 0)
+ return -EPERM;
+/*panic("process.c: sys_idle()\n");*/
+ /* endless idle loop with no priority at all */
+ current->counter = -100;
+ for (;;) {
+
+ schedule();
+ }
+}
+
+void hard_reset_now(void)
+{
+ halt();
+}
+
+void show_regs(struct pt_regs * regs)
+{
+ _panic("show_regs");
+}
+
+/*
+ * Free current thread data structures etc..
+ */
+void exit_thread(void)
+{
+}
+
+void flush_thread(void)
+{
+}
+
+/*
+ * Copy a thread..
+ */
+void copy_thread(int nr, unsigned long clone_flags, unsigned long usp,
+ struct task_struct * p, struct pt_regs * regs)
+{
+ int i;
+ SEGREG *segs;
+ struct pt_regs * childregs;
+
+/*printk("copy thread - NR: %d, Flags: %x, USP: %x, Task: %x, Regs: %x\n", nr, clone_flags, usp, p, regs);*/
+
+ /* Construct segment registers */
+ segs = (SEGREG *)p->tss.segs;
+ for (i = 0; i < 8; i++)
+ {
+ segs[i].ks = 0;
+ segs[i].kp = 1;
+ segs[i].vsid = i | (nr << 4);
+ }
+ /* Last 8 are shared with kernel & everybody else... */
+ for (i = 8; i < 16; i++)
+ {
+ segs[i].ks = 0;
+ segs[i].kp = 1;
+ segs[i].vsid = i;
+ }
+ /* Copy registers */
+ childregs = ((struct pt_regs *) (p->kernel_stack_page + 2*PAGE_SIZE)) - 2;
+ *childregs = *regs; /* STRUCT COPY */
+ childregs->gpr[3] = 0; /* Result from fork() */
+ p->tss.ksp = childregs;
+ if (usp >= (unsigned long)regs)
+ { /* Stack is in kernel space - must adjust */
+ childregs->gpr[1] = childregs+1;
+ } else
+ { /* Provided stack is in user space */
+ childregs->gpr[1] = usp;
+ }
+}
+
+/*
+ * fill in the user structure for a core dump..
+ */
+void dump_thread(struct pt_regs * regs, struct user * dump)
+{
+}
+
+#if 0 /* mfisk */
+/*
+ * Do necessary setup to start up a newly executed thread.
+ */
+void start_thread(struct pt_regs * regs, unsigned long eip, unsigned long esp)
+{
+ regs->nip = eip;
+ regs->gpr[1] = esp;
+ regs->msr = MSR_USER;
+#if 0
+/* printk("current = %x current->mm = %x\n", current, current->mm);
+ printk("task[0] = %x task[0]->mm = %x\n", task[0],task[0]->mm);*/
+ printk("Start thread [%x] at PC: %x, SR: %x, SP: %x\n",
+ regs, eip, regs->msr, esp);
+/* dump_buf(esp, 64);*/
+/* dump_buf(eip, 64);*/
+#endif
+}
+#endif
+
+asmlinkage int sys_newselect(int p1, int p2, int p3, int p4, int p5, int p6, struct pt_regs *regs)
+{
+ panic("sys_newselect unimplemented");
+}
+
+asmlinkage int sys_fork(int p1, int p2, int p3, int p4, int p5, int p6, struct pt_regs *regs)
+{
+printk("process.c: sys_fork() called\n");
+ return do_fork( CLONE_VM|SIGCHLD, regs->gpr[1], regs);
+}
+
+asmlinkage int sys_execve(unsigned long a0, unsigned long a1, unsigned long a2,
+ unsigned long a3, unsigned long a4, unsigned long a5,
+ struct pt_regs *regs)
+{
+ int error;
+ char * filename;
+/* printk("process.c: sys_execve(a0 = %s, a1 = %x, a2 = %x)\n",a0,a1,a2);*/
+
+#if 1
+ /* paranoia check. I really don't trust head.S -- Cort */
+ if ( regs->marker != 0xDEADDEAD )
+ {
+ panic("process.c: sys_execve(): regs->marker != DEADDEAD\n");
+ }
+#endif
+ error = getname((char *) a0, &filename);
+ if (error)
+ return error;
+ error = do_execve(filename, (char **) a1, (char **) a2, regs);
+#if 0
+ if (error)
+ {
+ printk("EXECVE - file = '%s', error = %d\n", filename, error);
+ }
+#endif
+ putname(filename);
+ return error;
+}
+
+
+asmlinkage int sys_clone(unsigned long clone_flags, unsigned long usp, unsigned long a2,
+ unsigned long a3, unsigned long a4, unsigned long a5,
+ struct pt_regs *regs)
+{
+ int i;
+
+ if (!usp)
+ usp = regs->gpr[1];
+
+
+ i = do_fork(CLONE_VM/*clone_flags*/, /*usp*/regs->gpr[1], regs);
+/* printk("sys_clone going to return %d\n", i);*/
+ return i;
+}
+
+
+
+void
+print_backtrace(void)
+{
+ unsigned long *sp = (unsigned long *)_get_SP();
+ int cnt = 0;
+ printk("... Call backtrace:\n");
+ while (*sp)
+ {
+ printk("%08X ", sp[2]);
+ sp = *sp;
+ if (++cnt == 8)
+ {
+ printk("\n");
+ }
+ if (cnt > 16) break;
+ }
+ printk("\n");
+}
+
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov
with Sam's (original) version of this