process.c 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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 <linux/sched/task.h>
  21. #include <linux/sched/task_stack.h>
  22. #include <asm/syscalls.h>
  23. /* hooks for board specific support */
  24. void (*c6x_restart)(void);
  25. void (*c6x_halt)(void);
  26. extern asmlinkage void ret_from_fork(void);
  27. extern asmlinkage void ret_from_kernel_thread(void);
  28. /*
  29. * power off function, if any
  30. */
  31. void (*pm_power_off)(void);
  32. EXPORT_SYMBOL(pm_power_off);
  33. void arch_cpu_idle(void)
  34. {
  35. unsigned long tmp;
  36. /*
  37. * Put local_irq_enable and idle in same execute packet
  38. * to make them atomic and avoid race to idle with
  39. * interrupts enabled.
  40. */
  41. asm volatile (" mvc .s2 CSR,%0\n"
  42. " or .d2 1,%0,%0\n"
  43. " mvc .s2 %0,CSR\n"
  44. "|| idle\n"
  45. : "=b"(tmp));
  46. }
  47. static void halt_loop(void)
  48. {
  49. printk(KERN_EMERG "System Halted, OK to turn off power\n");
  50. local_irq_disable();
  51. while (1)
  52. asm volatile("idle\n");
  53. }
  54. void machine_restart(char *__unused)
  55. {
  56. if (c6x_restart)
  57. c6x_restart();
  58. halt_loop();
  59. }
  60. void machine_halt(void)
  61. {
  62. if (c6x_halt)
  63. c6x_halt();
  64. halt_loop();
  65. }
  66. void machine_power_off(void)
  67. {
  68. if (pm_power_off)
  69. pm_power_off();
  70. halt_loop();
  71. }
  72. void flush_thread(void)
  73. {
  74. }
  75. /*
  76. * Do necessary setup to start up a newly executed thread.
  77. */
  78. void start_thread(struct pt_regs *regs, unsigned int pc, unsigned long usp)
  79. {
  80. /*
  81. * The binfmt loader will setup a "full" stack, but the C6X
  82. * operates an "empty" stack. So we adjust the usp so that
  83. * argc doesn't get destroyed if an interrupt is taken before
  84. * it is read from the stack.
  85. *
  86. * NB: Library startup code needs to match this.
  87. */
  88. usp -= 8;
  89. regs->pc = pc;
  90. regs->sp = usp;
  91. regs->tsr |= 0x40; /* set user mode */
  92. current->thread.usp = usp;
  93. }
  94. /*
  95. * Copy a new thread context in its stack.
  96. */
  97. int copy_thread(unsigned long clone_flags, unsigned long usp,
  98. unsigned long ustk_size,
  99. struct task_struct *p)
  100. {
  101. struct pt_regs *childregs;
  102. childregs = task_pt_regs(p);
  103. if (unlikely(p->flags & PF_KTHREAD)) {
  104. /* case of __kernel_thread: we return to supervisor space */
  105. memset(childregs, 0, sizeof(struct pt_regs));
  106. childregs->sp = (unsigned long)(childregs + 1);
  107. p->thread.pc = (unsigned long) ret_from_kernel_thread;
  108. childregs->a0 = usp; /* function */
  109. childregs->a1 = ustk_size; /* argument */
  110. } else {
  111. /* Otherwise use the given stack */
  112. *childregs = *current_pt_regs();
  113. if (usp)
  114. childregs->sp = usp;
  115. p->thread.pc = (unsigned long) ret_from_fork;
  116. }
  117. /* Set usp/ksp */
  118. p->thread.usp = childregs->sp;
  119. thread_saved_ksp(p) = (unsigned long)childregs - 8;
  120. p->thread.wchan = p->thread.pc;
  121. #ifdef __DSBT__
  122. {
  123. unsigned long dp;
  124. asm volatile ("mv .S2 b14,%0\n" : "=b"(dp));
  125. thread_saved_dp(p) = dp;
  126. if (usp == -1)
  127. childregs->dp = dp;
  128. }
  129. #endif
  130. return 0;
  131. }
  132. unsigned long get_wchan(struct task_struct *p)
  133. {
  134. return p->thread.wchan;
  135. }