process.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /* MN10300 Process handling code
  2. *
  3. * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public Licence
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the Licence, or (at your option) any later version.
  10. */
  11. #include <linux/module.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/stddef.h>
  18. #include <linux/unistd.h>
  19. #include <linux/ptrace.h>
  20. #include <linux/user.h>
  21. #include <linux/interrupt.h>
  22. #include <linux/delay.h>
  23. #include <linux/reboot.h>
  24. #include <linux/percpu.h>
  25. #include <linux/err.h>
  26. #include <linux/fs.h>
  27. #include <linux/slab.h>
  28. #include <linux/rcupdate.h>
  29. #include <asm/uaccess.h>
  30. #include <asm/pgtable.h>
  31. #include <asm/io.h>
  32. #include <asm/processor.h>
  33. #include <asm/mmu_context.h>
  34. #include <asm/fpu.h>
  35. #include <asm/reset-regs.h>
  36. #include <asm/gdb-stub.h>
  37. #include "internal.h"
  38. /*
  39. * return saved PC of a blocked thread.
  40. */
  41. unsigned long thread_saved_pc(struct task_struct *tsk)
  42. {
  43. return ((unsigned long *) tsk->thread.sp)[3];
  44. }
  45. /*
  46. * power off function, if any
  47. */
  48. void (*pm_power_off)(void);
  49. EXPORT_SYMBOL(pm_power_off);
  50. /*
  51. * On SMP it's slightly faster (but much more power-consuming!)
  52. * to poll the ->work.need_resched flag instead of waiting for the
  53. * cross-CPU IPI to arrive. Use this option with caution.
  54. *
  55. * tglx: No idea why this depends on HOTPLUG_CPU !?!
  56. */
  57. #if !defined(CONFIG_SMP) || defined(CONFIG_HOTPLUG_CPU)
  58. void arch_cpu_idle(void)
  59. {
  60. safe_halt();
  61. }
  62. #endif
  63. void release_segments(struct mm_struct *mm)
  64. {
  65. }
  66. void machine_restart(char *cmd)
  67. {
  68. #ifdef CONFIG_KERNEL_DEBUGGER
  69. gdbstub_exit(0);
  70. #endif
  71. #ifdef mn10300_unit_hard_reset
  72. mn10300_unit_hard_reset();
  73. #else
  74. mn10300_proc_hard_reset();
  75. #endif
  76. }
  77. void machine_halt(void)
  78. {
  79. #ifdef CONFIG_KERNEL_DEBUGGER
  80. gdbstub_exit(0);
  81. #endif
  82. }
  83. void machine_power_off(void)
  84. {
  85. #ifdef CONFIG_KERNEL_DEBUGGER
  86. gdbstub_exit(0);
  87. #endif
  88. }
  89. void show_regs(struct pt_regs *regs)
  90. {
  91. show_regs_print_info(KERN_DEFAULT);
  92. }
  93. /*
  94. * free current thread data structures etc..
  95. */
  96. void exit_thread(void)
  97. {
  98. exit_fpu();
  99. }
  100. void flush_thread(void)
  101. {
  102. flush_fpu();
  103. }
  104. void release_thread(struct task_struct *dead_task)
  105. {
  106. }
  107. /*
  108. * we do not have to muck with descriptors here, that is
  109. * done in switch_mm() as needed.
  110. */
  111. void copy_segments(struct task_struct *p, struct mm_struct *new_mm)
  112. {
  113. }
  114. /*
  115. * this gets called so that we can store lazy state into memory and copy the
  116. * current task into the new thread.
  117. */
  118. int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
  119. {
  120. unlazy_fpu(src);
  121. *dst = *src;
  122. return 0;
  123. }
  124. /*
  125. * set up the kernel stack for a new thread and copy arch-specific thread
  126. * control information
  127. */
  128. int copy_thread(unsigned long clone_flags,
  129. unsigned long c_usp, unsigned long ustk_size,
  130. struct task_struct *p)
  131. {
  132. struct thread_info *ti = task_thread_info(p);
  133. struct pt_regs *c_regs;
  134. unsigned long c_ksp;
  135. c_ksp = (unsigned long) task_stack_page(p) + THREAD_SIZE;
  136. /* allocate the userspace exception frame and set it up */
  137. c_ksp -= sizeof(struct pt_regs);
  138. c_regs = (struct pt_regs *) c_ksp;
  139. c_ksp -= 12; /* allocate function call ABI slack */
  140. /* set up things up so the scheduler can start the new task */
  141. p->thread.uregs = c_regs;
  142. ti->frame = c_regs;
  143. p->thread.a3 = (unsigned long) c_regs;
  144. p->thread.sp = c_ksp;
  145. p->thread.wchan = p->thread.pc;
  146. p->thread.usp = c_usp;
  147. if (unlikely(p->flags & PF_KTHREAD)) {
  148. memset(c_regs, 0, sizeof(struct pt_regs));
  149. c_regs->a0 = c_usp; /* function */
  150. c_regs->d0 = ustk_size; /* argument */
  151. local_save_flags(c_regs->epsw);
  152. c_regs->epsw |= EPSW_IE | EPSW_IM_7;
  153. p->thread.pc = (unsigned long) ret_from_kernel_thread;
  154. return 0;
  155. }
  156. *c_regs = *current_pt_regs();
  157. if (c_usp)
  158. c_regs->sp = c_usp;
  159. c_regs->epsw &= ~EPSW_FE; /* my FPU */
  160. /* the new TLS pointer is passed in as arg #5 to sys_clone() */
  161. if (clone_flags & CLONE_SETTLS)
  162. c_regs->e2 = current_frame()->d3;
  163. p->thread.pc = (unsigned long) ret_from_fork;
  164. return 0;
  165. }
  166. unsigned long get_wchan(struct task_struct *p)
  167. {
  168. return p->thread.wchan;
  169. }