process.c 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. /*
  2. * linux/arch/cris/kernel/process.c
  3. *
  4. * Copyright (C) 1995 Linus Torvalds
  5. * Copyright (C) 2000-2002 Axis Communications AB
  6. *
  7. * Authors: Bjorn Wesen (bjornw@axis.com)
  8. * Mikael Starvik (starvik@axis.com)
  9. *
  10. * This file handles the architecture-dependent parts of process handling..
  11. */
  12. #include <linux/sched.h>
  13. #include <linux/slab.h>
  14. #include <linux/err.h>
  15. #include <linux/fs.h>
  16. #include <arch/svinto.h>
  17. #include <linux/init.h>
  18. #include <arch/system.h>
  19. #include <linux/ptrace.h>
  20. #ifdef CONFIG_ETRAX_GPIO
  21. void etrax_gpio_wake_up_check(void); /* drivers/gpio.c */
  22. #endif
  23. /*
  24. * We use this if we don't have any better
  25. * idle routine..
  26. */
  27. void default_idle(void)
  28. {
  29. #ifdef CONFIG_ETRAX_GPIO
  30. etrax_gpio_wake_up_check();
  31. #endif
  32. }
  33. /*
  34. * Free current thread data structures etc..
  35. */
  36. void exit_thread(void)
  37. {
  38. /* Nothing needs to be done. */
  39. }
  40. /* if the watchdog is enabled, we can simply disable interrupts and go
  41. * into an eternal loop, and the watchdog will reset the CPU after 0.1s
  42. * if on the other hand the watchdog wasn't enabled, we just enable it and wait
  43. */
  44. void hard_reset_now (void)
  45. {
  46. /*
  47. * Don't declare this variable elsewhere. We don't want any other
  48. * code to know about it than the watchdog handler in entry.S and
  49. * this code, implementing hard reset through the watchdog.
  50. */
  51. #if defined(CONFIG_ETRAX_WATCHDOG) && !defined(CONFIG_SVINTO_SIM)
  52. extern int cause_of_death;
  53. #endif
  54. printk("*** HARD RESET ***\n");
  55. local_irq_disable();
  56. #if defined(CONFIG_ETRAX_WATCHDOG) && !defined(CONFIG_SVINTO_SIM)
  57. cause_of_death = 0xbedead;
  58. #else
  59. /* Since we dont plan to keep on resetting the watchdog,
  60. the key can be arbitrary hence three */
  61. *R_WATCHDOG = IO_FIELD(R_WATCHDOG, key, 3) |
  62. IO_STATE(R_WATCHDOG, enable, start);
  63. #endif
  64. while(1) /* waiting for RETRIBUTION! */ ;
  65. }
  66. /*
  67. * Return saved PC of a blocked thread.
  68. */
  69. unsigned long thread_saved_pc(struct task_struct *t)
  70. {
  71. return task_pt_regs(t)->irp;
  72. }
  73. /* setup the child's kernel stack with a pt_regs and switch_stack on it.
  74. * it will be un-nested during _resume and _ret_from_sys_call when the
  75. * new thread is scheduled.
  76. *
  77. * also setup the thread switching structure which is used to keep
  78. * thread-specific data during _resumes.
  79. *
  80. */
  81. asmlinkage void ret_from_fork(void);
  82. asmlinkage void ret_from_kernel_thread(void);
  83. int copy_thread(unsigned long clone_flags, unsigned long usp,
  84. unsigned long arg, struct task_struct *p)
  85. {
  86. struct pt_regs *childregs = task_pt_regs(p);
  87. struct switch_stack *swstack = ((struct switch_stack *)childregs) - 1;
  88. /* put the pt_regs structure at the end of the new kernel stack page and fix it up
  89. * remember that the task_struct doubles as the kernel stack for the task
  90. */
  91. if (unlikely(p->flags & PF_KTHREAD)) {
  92. memset(swstack, 0,
  93. sizeof(struct switch_stack) + sizeof(struct pt_regs));
  94. swstack->r1 = usp;
  95. swstack->r2 = arg;
  96. childregs->dccr = 1 << I_DCCR_BITNR;
  97. swstack->return_ip = (unsigned long) ret_from_kernel_thread;
  98. p->thread.ksp = (unsigned long) swstack;
  99. p->thread.usp = 0;
  100. return 0;
  101. }
  102. *childregs = *current_pt_regs(); /* struct copy of pt_regs */
  103. childregs->r10 = 0; /* child returns 0 after a fork/clone */
  104. /* put the switch stack right below the pt_regs */
  105. swstack->r9 = 0; /* parameter to ret_from_sys_call, 0 == dont restart the syscall */
  106. /* we want to return into ret_from_sys_call after the _resume */
  107. swstack->return_ip = (unsigned long) ret_from_fork; /* Will call ret_from_sys_call */
  108. /* fix the user-mode stackpointer */
  109. p->thread.usp = usp ?: rdusp();
  110. /* and the kernel-mode one */
  111. p->thread.ksp = (unsigned long) swstack;
  112. #ifdef DEBUG
  113. printk("copy_thread: new regs at 0x%p, as shown below:\n", childregs);
  114. show_registers(childregs);
  115. #endif
  116. return 0;
  117. }
  118. unsigned long get_wchan(struct task_struct *p)
  119. {
  120. #if 0
  121. /* YURGH. TODO. */
  122. unsigned long ebp, esp, eip;
  123. unsigned long stack_page;
  124. int count = 0;
  125. if (!p || p == current || p->state == TASK_RUNNING)
  126. return 0;
  127. stack_page = (unsigned long)p;
  128. esp = p->thread.esp;
  129. if (!stack_page || esp < stack_page || esp > 8188+stack_page)
  130. return 0;
  131. /* include/asm-i386/system.h:switch_to() pushes ebp last. */
  132. ebp = *(unsigned long *) esp;
  133. do {
  134. if (ebp < stack_page || ebp > 8184+stack_page)
  135. return 0;
  136. eip = *(unsigned long *) (ebp+4);
  137. if (!in_sched_functions(eip))
  138. return eip;
  139. ebp = *(unsigned long *) ebp;
  140. } while (count++ < 16);
  141. #endif
  142. return 0;
  143. }
  144. #undef last_sched
  145. #undef first_sched
  146. void show_regs(struct pt_regs * regs)
  147. {
  148. unsigned long usp = rdusp();
  149. printk("IRP: %08lx SRP: %08lx DCCR: %08lx USP: %08lx MOF: %08lx\n",
  150. regs->irp, regs->srp, regs->dccr, usp, regs->mof );
  151. printk(" r0: %08lx r1: %08lx r2: %08lx r3: %08lx\n",
  152. regs->r0, regs->r1, regs->r2, regs->r3);
  153. printk(" r4: %08lx r5: %08lx r6: %08lx r7: %08lx\n",
  154. regs->r4, regs->r5, regs->r6, regs->r7);
  155. printk(" r8: %08lx r9: %08lx r10: %08lx r11: %08lx\n",
  156. regs->r8, regs->r9, regs->r10, regs->r11);
  157. printk("r12: %08lx r13: %08lx oR10: %08lx\n",
  158. regs->r12, regs->r13, regs->orig_r10);
  159. }