process.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:9k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/m68k/kernel/process.c
  3.  *
  4.  *  Copyright (C) 1995  Hamish Macdonald
  5.  *
  6.  *  68060 fixes by Jesper Skov
  7.  */
  8. /*
  9.  * This file handles the architecture-dependent parts of process handling..
  10.  */
  11. #include <linux/config.h>
  12. #include <linux/errno.h>
  13. #include <linux/sched.h>
  14. #include <linux/kernel.h>
  15. #include <linux/mm.h>
  16. #include <linux/smp.h>
  17. #include <linux/smp_lock.h>
  18. #include <linux/stddef.h>
  19. #include <linux/unistd.h>
  20. #include <linux/ptrace.h>
  21. #include <linux/slab.h>
  22. #include <linux/user.h>
  23. #include <linux/a.out.h>
  24. #include <linux/reboot.h>
  25. #include <asm/uaccess.h>
  26. #include <asm/system.h>
  27. #include <asm/traps.h>
  28. #include <asm/machdep.h>
  29. #include <asm/setup.h>
  30. #include <asm/pgtable.h>
  31. /*
  32.  * Initial task structure. Make this a per-architecture thing,
  33.  * because different architectures tend to have different
  34.  * alignment requirements and potentially different initial
  35.  * setup.
  36.  */
  37. static struct fs_struct init_fs = INIT_FS;
  38. static struct files_struct init_files = INIT_FILES;
  39. static struct signal_struct init_signals = INIT_SIGNALS;
  40. struct mm_struct init_mm = INIT_MM(init_mm);
  41. union task_union init_task_union
  42. __attribute__((section("init_task"), aligned(KTHREAD_SIZE)))
  43. = { task: INIT_TASK(init_task_union.task) };
  44. asmlinkage void ret_from_fork(void);
  45. /*
  46.  * The idle loop on an m68k..
  47.  */
  48. static void default_idle(void)
  49. {
  50. while(1) {
  51. if (!current->need_resched)
  52. #if defined(MACH_ATARI_ONLY) && !defined(CONFIG_HADES)
  53. /* block out HSYNC on the atari (falcon) */
  54. __asm__("stop #0x2200" : : : "cc");
  55. #else
  56. __asm__("stop #0x2000" : : : "cc");
  57. #endif
  58. schedule();
  59. check_pgt_cache();
  60. }
  61. }
  62. void (*idle)(void) = default_idle;
  63. /*
  64.  * The idle thread. There's no useful work to be
  65.  * done, so just try to conserve power and have a
  66.  * low exit latency (ie sit in a loop waiting for
  67.  * somebody to say that they'd like to reschedule)
  68.  */
  69. void cpu_idle(void)
  70. {
  71. /* endless idle loop with no priority at all */
  72. init_idle();
  73. current->nice = 20;
  74. current->counter = -100;
  75. idle();
  76. }
  77. void machine_restart(char * __unused)
  78. {
  79. if (mach_reset)
  80. mach_reset();
  81. for (;;);
  82. }
  83. void machine_halt(void)
  84. {
  85. if (mach_halt)
  86. mach_halt();
  87. for (;;);
  88. }
  89. void machine_power_off(void)
  90. {
  91. if (mach_power_off)
  92. mach_power_off();
  93. for (;;);
  94. }
  95. void show_regs(struct pt_regs * regs)
  96. {
  97. printk("n");
  98. printk("Format %02x  Vector: %04x  PC: %08lx  Status: %04x    %sn",
  99.        regs->format, regs->vector, regs->pc, regs->sr, print_tainted());
  100. printk("ORIG_D0: %08lx  D0: %08lx  A2: %08lx  A1: %08lxn",
  101.        regs->orig_d0, regs->d0, regs->a2, regs->a1);
  102. printk("A0: %08lx  D5: %08lx  D4: %08lxn",
  103.        regs->a0, regs->d5, regs->d4);
  104. printk("D3: %08lx  D2: %08lx  D1: %08lxn",
  105.        regs->d3, regs->d2, regs->d1);
  106. if (!(regs->sr & PS_S))
  107. printk("USP: %08lxn", rdusp());
  108. }
  109. /*
  110.  * Create a kernel thread
  111.  */
  112. int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)
  113. {
  114. int pid;
  115. mm_segment_t fs;
  116. fs = get_fs();
  117. set_fs (KERNEL_DS);
  118. {
  119. register long retval __asm__ ("d0");
  120. register long clone_arg __asm__ ("d1") = flags | CLONE_VM;
  121. __asm__ __volatile__
  122.   ("clrl %%d2nt"
  123.    "trap #0nt" /* Linux/m68k system call */
  124.    "tstl %0nt" /* child or parent */
  125.    "jne 1fnt" /* parent - jump */
  126.    "lea %%sp@(%c7),%6nt" /* reload current */
  127.    "movel %3,%%sp@-nt" /* push argument */
  128.    "jsr %4@nt" /* call fn */
  129.    "movel %0,%%d1nt" /* pass exit value */
  130.    "movel %2,%0nt" /* exit */
  131.    "trap #0n"
  132.    "1:"
  133.    : "=d" (retval)
  134.    : "0" (__NR_clone), "i" (__NR_exit),
  135.      "r" (arg), "a" (fn), "d" (clone_arg), "r" (current),
  136.      "i" (-KTHREAD_SIZE)
  137.    : "d0", "d2");
  138. pid = retval;
  139. }
  140. set_fs (fs);
  141. return pid;
  142. }
  143. void flush_thread(void)
  144. {
  145. unsigned long zero = 0;
  146. set_fs(USER_DS);
  147. current->thread.fs = __USER_DS;
  148. if (!FPU_IS_EMU)
  149. asm volatile (".chip 68k/68881nt"
  150.       "frestore %0@nt"
  151.       ".chip 68k" : : "a" (&zero));
  152. }
  153. /*
  154.  * "m68k_fork()".. By the time we get here, the
  155.  * non-volatile registers have also been saved on the
  156.  * stack. We do some ugly pointer stuff here.. (see
  157.  * also copy_thread)
  158.  */
  159. asmlinkage int m68k_fork(struct pt_regs *regs)
  160. {
  161. return do_fork(SIGCHLD, rdusp(), regs, 0);
  162. }
  163. asmlinkage int m68k_vfork(struct pt_regs *regs)
  164. {
  165. return do_fork(CLONE_VFORK | CLONE_VM | SIGCHLD, rdusp(), regs, 0);
  166. }
  167. asmlinkage int m68k_clone(struct pt_regs *regs)
  168. {
  169. unsigned long clone_flags;
  170. unsigned long newsp;
  171. /* syscall2 puts clone_flags in d1 and usp in d2 */
  172. clone_flags = regs->d1;
  173. newsp = regs->d2;
  174. if (!newsp)
  175. newsp = rdusp();
  176. return do_fork(clone_flags, newsp, regs, 0);
  177. }
  178. int copy_thread(int nr, unsigned long clone_flags, unsigned long usp,
  179.  unsigned long unused,
  180.  struct task_struct * p, struct pt_regs * regs)
  181. {
  182. struct pt_regs * childregs;
  183. struct switch_stack * childstack, *stack;
  184. unsigned long stack_offset, *retp;
  185. stack_offset = KTHREAD_SIZE - sizeof(struct pt_regs);
  186. childregs = (struct pt_regs *) ((unsigned long) p + stack_offset);
  187. *childregs = *regs;
  188. childregs->d0 = 0;
  189. retp = ((unsigned long *) regs);
  190. stack = ((struct switch_stack *) retp) - 1;
  191. childstack = ((struct switch_stack *) childregs) - 1;
  192. *childstack = *stack;
  193. childstack->retpc = (unsigned long)ret_from_fork;
  194. p->thread.usp = usp;
  195. p->thread.ksp = (unsigned long)childstack;
  196. /*
  197.  * Must save the current SFC/DFC value, NOT the value when
  198.  * the parent was last descheduled - RGH  10-08-96
  199.  */
  200. p->thread.fs = get_fs().seg;
  201. if (!FPU_IS_EMU) {
  202. /* Copy the current fpu state */
  203. asm volatile ("fsave %0" : : "m" (p->thread.fpstate[0]) : "memory");
  204. if (!CPU_IS_060 ? p->thread.fpstate[0] : p->thread.fpstate[2])
  205.   asm volatile ("fmovemx %/fp0-%/fp7,%0nt"
  206. "fmoveml %/fpiar/%/fpcr/%/fpsr,%1"
  207. : : "m" (p->thread.fp[0]), "m" (p->thread.fpcntl[0])
  208. : "memory");
  209. /* Restore the state in case the fpu was busy */
  210. asm volatile ("frestore %0" : : "m" (p->thread.fpstate[0]));
  211. }
  212. return 0;
  213. }
  214. /* Fill in the fpu structure for a core dump.  */
  215. int dump_fpu (struct pt_regs *regs, struct user_m68kfp_struct *fpu)
  216. {
  217. char fpustate[216];
  218. if (FPU_IS_EMU) {
  219. int i;
  220. memcpy(fpu->fpcntl, current->thread.fpcntl, 12);
  221. memcpy(fpu->fpregs, current->thread.fp, 96);
  222. /* Convert internal fpu reg representation
  223.  * into long double format
  224.  */
  225. for (i = 0; i < 24; i += 3)
  226. fpu->fpregs[i] = ((fpu->fpregs[i] & 0xffff0000) << 15) |
  227.                  ((fpu->fpregs[i] & 0x0000ffff) << 16);
  228. return 1;
  229. }
  230. /* First dump the fpu context to avoid protocol violation.  */
  231. asm volatile ("fsave %0" :: "m" (fpustate[0]) : "memory");
  232. if (!CPU_IS_060 ? !fpustate[0] : !fpustate[2])
  233. return 0;
  234. asm volatile ("fmovem %/fpiar/%/fpcr/%/fpsr,%0"
  235. :: "m" (fpu->fpcntl[0])
  236. : "memory");
  237. asm volatile ("fmovemx %/fp0-%/fp7,%0"
  238. :: "m" (fpu->fpregs[0])
  239. : "memory");
  240. return 1;
  241. }
  242. /*
  243.  * fill in the user structure for a core dump..
  244.  */
  245. void dump_thread(struct pt_regs * regs, struct user * dump)
  246. {
  247. struct switch_stack *sw;
  248. /* changed the size calculations - should hopefully work better. lbt */
  249. dump->magic = CMAGIC;
  250. dump->start_code = 0;
  251. dump->start_stack = rdusp() & ~(PAGE_SIZE - 1);
  252. dump->u_tsize = ((unsigned long) current->mm->end_code) >> PAGE_SHIFT;
  253. dump->u_dsize = ((unsigned long) (current->mm->brk +
  254.   (PAGE_SIZE-1))) >> PAGE_SHIFT;
  255. dump->u_dsize -= dump->u_tsize;
  256. dump->u_ssize = 0;
  257. if (dump->start_stack < TASK_SIZE)
  258. dump->u_ssize = ((unsigned long) (TASK_SIZE - dump->start_stack)) >> PAGE_SHIFT;
  259. dump->u_ar0 = (struct user_regs_struct *)((int)&dump->regs - (int)dump);
  260. sw = ((struct switch_stack *)regs) - 1;
  261. dump->regs.d1 = regs->d1;
  262. dump->regs.d2 = regs->d2;
  263. dump->regs.d3 = regs->d3;
  264. dump->regs.d4 = regs->d4;
  265. dump->regs.d5 = regs->d5;
  266. dump->regs.d6 = sw->d6;
  267. dump->regs.d7 = sw->d7;
  268. dump->regs.a0 = regs->a0;
  269. dump->regs.a1 = regs->a1;
  270. dump->regs.a2 = regs->a2;
  271. dump->regs.a3 = sw->a3;
  272. dump->regs.a4 = sw->a4;
  273. dump->regs.a5 = sw->a5;
  274. dump->regs.a6 = sw->a6;
  275. dump->regs.d0 = regs->d0;
  276. dump->regs.orig_d0 = regs->orig_d0;
  277. dump->regs.stkadj = regs->stkadj;
  278. dump->regs.sr = regs->sr;
  279. dump->regs.pc = regs->pc;
  280. dump->regs.fmtvec = (regs->format << 12) | regs->vector;
  281. /* dump floating point stuff */
  282. dump->u_fpvalid = dump_fpu (regs, &dump->m68kfp);
  283. }
  284. /*
  285.  * sys_execve() executes a new program.
  286.  */
  287. asmlinkage int sys_execve(char *name, char **argv, char **envp)
  288. {
  289. int error;
  290. char * filename;
  291. struct pt_regs *regs = (struct pt_regs *) &name;
  292. lock_kernel();
  293. filename = getname(name);
  294. error = PTR_ERR(filename);
  295. if (IS_ERR(filename))
  296. goto out;
  297. error = do_execve(filename, argv, envp, regs);
  298. putname(filename);
  299. out:
  300. unlock_kernel();
  301. return error;
  302. }
  303. /*
  304.  * These bracket the sleeping functions..
  305.  */
  306. extern void scheduling_functions_start_here(void);
  307. extern void scheduling_functions_end_here(void);
  308. #define first_sched ((unsigned long) scheduling_functions_start_here)
  309. #define last_sched ((unsigned long) scheduling_functions_end_here)
  310. unsigned long get_wchan(struct task_struct *p)
  311. {
  312. unsigned long fp, pc;
  313. unsigned long stack_page;
  314. int count = 0;
  315. if (!p || p == current || p->state == TASK_RUNNING)
  316. return 0;
  317. stack_page = (unsigned long)p;
  318. fp = ((struct switch_stack *)p->thread.ksp)->a6;
  319. do {
  320. if (fp < stack_page+sizeof(struct task_struct) ||
  321.     fp >= 8184+stack_page)
  322. return 0;
  323. pc = ((unsigned long *)fp)[1];
  324. /* FIXME: This depends on the order of these functions. */
  325. if (pc < first_sched || pc >= last_sched)
  326. return pc;
  327. fp = *(unsigned long *) fp;
  328. } while (count++ < 16);
  329. return 0;
  330. }