process.c 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. /*
  2. * Port on Texas Instruments TMS320C6x architecture
  3. *
  4. * Copyright (C) 2004, 2006, 2009, 2010, 2011 Texas Instruments Incorporated
  5. * Author: Aurelien Jacquiot (aurelien.jacquiot@jaluna.com)
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. */
  12. #include <linux/module.h>
  13. #include <linux/unistd.h>
  14. #include <linux/ptrace.h>
  15. #include <linux/init_task.h>
  16. #include <linux/tick.h>
  17. #include <linux/mqueue.h>
  18. #include <linux/syscalls.h>
  19. #include <linux/reboot.h>
  20. #include <asm/syscalls.h>
  21. /* hooks for board specific support */
  22. void (*c6x_restart)(void);
  23. void (*c6x_halt)(void);
  24. extern asmlinkage void ret_from_fork(void);
  25. extern asmlinkage void ret_from_kernel_thread(void);
  26. /*
  27. * power off function, if any
  28. */
  29. void (*pm_power_off)(void);
  30. EXPORT_SYMBOL(pm_power_off);
  31. static void c6x_idle(void)
  32. {
  33. unsigned long tmp;
  34. /*
  35. * Put local_irq_enable and idle in same execute packet
  36. * to make them atomic and avoid race to idle with
  37. * interrupts enabled.
  38. */
  39. asm volatile (" mvc .s2 CSR,%0\n"
  40. " or .d2 1,%0,%0\n"
  41. " mvc .s2 %0,CSR\n"
  42. "|| idle\n"
  43. : "=b"(tmp));
  44. }
  45. /*
  46. * The idle loop for C64x
  47. */
  48. void cpu_idle(void)
  49. {
  50. /* endless idle loop with no priority at all */
  51. while (1) {
  52. tick_nohz_idle_enter();
  53. rcu_idle_enter();
  54. while (1) {
  55. local_irq_disable();
  56. if (need_resched()) {
  57. local_irq_enable();
  58. break;
  59. }
  60. c6x_idle(); /* enables local irqs */
  61. }
  62. rcu_idle_exit();
  63. tick_nohz_idle_exit();
  64. preempt_enable_no_resched();
  65. schedule();
  66. preempt_disable();
  67. }
  68. }
  69. static void halt_loop(void)
  70. {
  71. printk(KERN_EMERG "System Halted, OK to turn off power\n");
  72. local_irq_disable();
  73. while (1)
  74. asm volatile("idle\n");
  75. }
  76. void machine_restart(char *__unused)
  77. {
  78. if (c6x_restart)
  79. c6x_restart();
  80. halt_loop();
  81. }
  82. void machine_halt(void)
  83. {
  84. if (c6x_halt)
  85. c6x_halt();
  86. halt_loop();
  87. }
  88. void machine_power_off(void)
  89. {
  90. if (pm_power_off)
  91. pm_power_off();
  92. halt_loop();
  93. }
  94. void flush_thread(void)
  95. {
  96. }
  97. void exit_thread(void)
  98. {
  99. }
  100. SYSCALL_DEFINE1(c6x_clone, struct pt_regs *, regs)
  101. {
  102. unsigned long clone_flags;
  103. unsigned long newsp;
  104. /* syscall puts clone_flags in A4 and usp in B4 */
  105. clone_flags = regs->orig_a4;
  106. if (regs->b4)
  107. newsp = regs->b4;
  108. else
  109. newsp = regs->sp;
  110. return do_fork(clone_flags, newsp, regs, 0, (int __user *)regs->a6,
  111. (int __user *)regs->b6);
  112. }
  113. /*
  114. * Do necessary setup to start up a newly executed thread.
  115. */
  116. void start_thread(struct pt_regs *regs, unsigned int pc, unsigned long usp)
  117. {
  118. /*
  119. * The binfmt loader will setup a "full" stack, but the C6X
  120. * operates an "empty" stack. So we adjust the usp so that
  121. * argc doesn't get destroyed if an interrupt is taken before
  122. * it is read from the stack.
  123. *
  124. * NB: Library startup code needs to match this.
  125. */
  126. usp -= 8;
  127. set_fs(USER_DS);
  128. regs->pc = pc;
  129. regs->sp = usp;
  130. regs->tsr |= 0x40; /* set user mode */
  131. current->thread.usp = usp;
  132. }
  133. /*
  134. * Copy a new thread context in its stack.
  135. */
  136. int copy_thread(unsigned long clone_flags, unsigned long usp,
  137. unsigned long ustk_size,
  138. struct task_struct *p, struct pt_regs *regs)
  139. {
  140. struct pt_regs *childregs;
  141. childregs = task_pt_regs(p);
  142. if (!regs) {
  143. /* case of __kernel_thread: we return to supervisor space */
  144. memset(childregs, 0, sizeof(struct pt_regs));
  145. childregs->sp = (unsigned long)(childregs + 1);
  146. p->thread.pc = (unsigned long) ret_from_kernel_thread;
  147. childregs->a0 = usp; /* function */
  148. childregs->a1 = ustk_size; /* argument */
  149. } else {
  150. /* Otherwise use the given stack */
  151. *childregs = *regs;
  152. childregs->sp = usp;
  153. p->thread.pc = (unsigned long) ret_from_fork;
  154. }
  155. /* Set usp/ksp */
  156. p->thread.usp = childregs->sp;
  157. thread_saved_ksp(p) = (unsigned long)childregs - 8;
  158. p->thread.wchan = p->thread.pc;
  159. #ifdef __DSBT__
  160. {
  161. unsigned long dp;
  162. asm volatile ("mv .S2 b14,%0\n" : "=b"(dp));
  163. thread_saved_dp(p) = dp;
  164. if (usp == -1)
  165. childregs->dp = dp;
  166. }
  167. #endif
  168. return 0;
  169. }
  170. unsigned long get_wchan(struct task_struct *p)
  171. {
  172. return p->thread.wchan;
  173. }