process.c 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /*
  2. * linux/arch/m32r/kernel/process.c
  3. *
  4. * Copyright (c) 2001, 2002 Hiroyuki Kondo, Hirokazu Takata,
  5. * Hitoshi Yamamoto
  6. * Taken from sh version.
  7. * Copyright (C) 1995 Linus Torvalds
  8. * SuperH version: Copyright (C) 1999, 2000 Niibe Yutaka & Kaz Kojima
  9. */
  10. #undef DEBUG_PROCESS
  11. #ifdef DEBUG_PROCESS
  12. #define DPRINTK(fmt, args...) printk("%s:%d:%s: " fmt, __FILE__, __LINE__, \
  13. __func__, ##args)
  14. #else
  15. #define DPRINTK(fmt, args...)
  16. #endif
  17. /*
  18. * This file handles the architecture-dependent parts of process handling..
  19. */
  20. #include <linux/fs.h>
  21. #include <linux/slab.h>
  22. #include <linux/module.h>
  23. #include <linux/ptrace.h>
  24. #include <linux/unistd.h>
  25. #include <linux/hardirq.h>
  26. #include <linux/rcupdate.h>
  27. #include <asm/io.h>
  28. #include <asm/uaccess.h>
  29. #include <asm/mmu_context.h>
  30. #include <asm/elf.h>
  31. #include <asm/m32r.h>
  32. #include <linux/err.h>
  33. /*
  34. * Return saved PC of a blocked thread.
  35. */
  36. unsigned long thread_saved_pc(struct task_struct *tsk)
  37. {
  38. return tsk->thread.lr;
  39. }
  40. void (*pm_power_off)(void) = NULL;
  41. EXPORT_SYMBOL(pm_power_off);
  42. /*
  43. * The idle thread. There's no useful work to be
  44. * done, so just try to conserve power and have a
  45. * low exit latency (ie sit in a loop waiting for
  46. * somebody to say that they'd like to reschedule)
  47. */
  48. void cpu_idle (void)
  49. {
  50. /* endless idle loop with no priority at all */
  51. while (1) {
  52. rcu_idle_enter();
  53. while (!need_resched())
  54. cpu_relax();
  55. rcu_idle_exit();
  56. schedule_preempt_disabled();
  57. }
  58. }
  59. void machine_restart(char *__unused)
  60. {
  61. #if defined(CONFIG_PLAT_MAPPI3)
  62. outw(1, (unsigned long)PLD_REBOOT);
  63. #endif
  64. printk("Please push reset button!\n");
  65. while (1)
  66. cpu_relax();
  67. }
  68. void machine_halt(void)
  69. {
  70. printk("Please push reset button!\n");
  71. while (1)
  72. cpu_relax();
  73. }
  74. void machine_power_off(void)
  75. {
  76. /* M32R_FIXME */
  77. }
  78. void show_regs(struct pt_regs * regs)
  79. {
  80. printk("\n");
  81. printk("BPC[%08lx]:PSW[%08lx]:LR [%08lx]:FP [%08lx]\n", \
  82. regs->bpc, regs->psw, regs->lr, regs->fp);
  83. printk("BBPC[%08lx]:BBPSW[%08lx]:SPU[%08lx]:SPI[%08lx]\n", \
  84. regs->bbpc, regs->bbpsw, regs->spu, regs->spi);
  85. printk("R0 [%08lx]:R1 [%08lx]:R2 [%08lx]:R3 [%08lx]\n", \
  86. regs->r0, regs->r1, regs->r2, regs->r3);
  87. printk("R4 [%08lx]:R5 [%08lx]:R6 [%08lx]:R7 [%08lx]\n", \
  88. regs->r4, regs->r5, regs->r6, regs->r7);
  89. printk("R8 [%08lx]:R9 [%08lx]:R10[%08lx]:R11[%08lx]\n", \
  90. regs->r8, regs->r9, regs->r10, regs->r11);
  91. printk("R12[%08lx]\n", \
  92. regs->r12);
  93. #if defined(CONFIG_ISA_M32R2) && defined(CONFIG_ISA_DSP_LEVEL2)
  94. printk("ACC0H[%08lx]:ACC0L[%08lx]\n", \
  95. regs->acc0h, regs->acc0l);
  96. printk("ACC1H[%08lx]:ACC1L[%08lx]\n", \
  97. regs->acc1h, regs->acc1l);
  98. #elif defined(CONFIG_ISA_M32R2) || defined(CONFIG_ISA_M32R)
  99. printk("ACCH[%08lx]:ACCL[%08lx]\n", \
  100. regs->acc0h, regs->acc0l);
  101. #else
  102. #error unknown isa configuration
  103. #endif
  104. }
  105. /*
  106. * Free current thread data structures etc..
  107. */
  108. void exit_thread(void)
  109. {
  110. /* Nothing to do. */
  111. DPRINTK("pid = %d\n", current->pid);
  112. }
  113. void flush_thread(void)
  114. {
  115. DPRINTK("pid = %d\n", current->pid);
  116. memset(&current->thread.debug_trap, 0, sizeof(struct debug_trap));
  117. }
  118. void release_thread(struct task_struct *dead_task)
  119. {
  120. /* do nothing */
  121. DPRINTK("pid = %d\n", dead_task->pid);
  122. }
  123. /* Fill in the fpu structure for a core dump.. */
  124. int dump_fpu(struct pt_regs *regs, elf_fpregset_t *fpu)
  125. {
  126. return 0; /* Task didn't use the fpu at all. */
  127. }
  128. int copy_thread(unsigned long clone_flags, unsigned long spu,
  129. unsigned long arg, struct task_struct *tsk)
  130. {
  131. struct pt_regs *childregs = task_pt_regs(tsk);
  132. extern void ret_from_fork(void);
  133. extern void ret_from_kernel_thread(void);
  134. if (unlikely(tsk->flags & PF_KTHREAD)) {
  135. memset(childregs, 0, sizeof(struct pt_regs));
  136. childregs->psw = M32R_PSW_BIE;
  137. childregs->r1 = spu; /* fn */
  138. childregs->r0 = arg;
  139. tsk->thread.lr = (unsigned long)ret_from_kernel_thread;
  140. } else {
  141. /* Copy registers */
  142. *childregs = *current_pt_regs();
  143. if (spu)
  144. childregs->spu = spu;
  145. childregs->r0 = 0; /* Child gets zero as return value */
  146. tsk->thread.lr = (unsigned long)ret_from_fork;
  147. }
  148. tsk->thread.sp = (unsigned long)childregs;
  149. return 0;
  150. }
  151. /*
  152. * These bracket the sleeping functions..
  153. */
  154. #define first_sched ((unsigned long) scheduling_functions_start_here)
  155. #define last_sched ((unsigned long) scheduling_functions_end_here)
  156. unsigned long get_wchan(struct task_struct *p)
  157. {
  158. /* M32R_FIXME */
  159. return (0);
  160. }