process.c 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /*
  2. * Copyright (C) 2009 Sunplus Core Technology Co., Ltd.
  3. * Chen Liqin <liqin.chen@sunplusct.com>
  4. * Lennox Wu <lennox.wu@sunplusct.com>
  5. * Copyright (C) 2012 Regents of the University of California
  6. * Copyright (C) 2017 SiFive
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, see the file COPYING, or write
  20. * to the Free Software Foundation, Inc.,
  21. */
  22. #include <linux/kernel.h>
  23. #include <linux/sched.h>
  24. #include <linux/sched/task_stack.h>
  25. #include <linux/tick.h>
  26. #include <linux/ptrace.h>
  27. #include <linux/uaccess.h>
  28. #include <asm/unistd.h>
  29. #include <asm/processor.h>
  30. #include <asm/csr.h>
  31. #include <asm/string.h>
  32. #include <asm/switch_to.h>
  33. extern asmlinkage void ret_from_fork(void);
  34. extern asmlinkage void ret_from_kernel_thread(void);
  35. void arch_cpu_idle(void)
  36. {
  37. wait_for_interrupt();
  38. local_irq_enable();
  39. }
  40. void show_regs(struct pt_regs *regs)
  41. {
  42. show_regs_print_info(KERN_DEFAULT);
  43. pr_cont("sepc: " REG_FMT " ra : " REG_FMT " sp : " REG_FMT "\n",
  44. regs->sepc, regs->ra, regs->sp);
  45. pr_cont(" gp : " REG_FMT " tp : " REG_FMT " t0 : " REG_FMT "\n",
  46. regs->gp, regs->tp, regs->t0);
  47. pr_cont(" t1 : " REG_FMT " t2 : " REG_FMT " s0 : " REG_FMT "\n",
  48. regs->t1, regs->t2, regs->s0);
  49. pr_cont(" s1 : " REG_FMT " a0 : " REG_FMT " a1 : " REG_FMT "\n",
  50. regs->s1, regs->a0, regs->a1);
  51. pr_cont(" a2 : " REG_FMT " a3 : " REG_FMT " a4 : " REG_FMT "\n",
  52. regs->a2, regs->a3, regs->a4);
  53. pr_cont(" a5 : " REG_FMT " a6 : " REG_FMT " a7 : " REG_FMT "\n",
  54. regs->a5, regs->a6, regs->a7);
  55. pr_cont(" s2 : " REG_FMT " s3 : " REG_FMT " s4 : " REG_FMT "\n",
  56. regs->s2, regs->s3, regs->s4);
  57. pr_cont(" s5 : " REG_FMT " s6 : " REG_FMT " s7 : " REG_FMT "\n",
  58. regs->s5, regs->s6, regs->s7);
  59. pr_cont(" s8 : " REG_FMT " s9 : " REG_FMT " s10: " REG_FMT "\n",
  60. regs->s8, regs->s9, regs->s10);
  61. pr_cont(" s11: " REG_FMT " t3 : " REG_FMT " t4 : " REG_FMT "\n",
  62. regs->s11, regs->t3, regs->t4);
  63. pr_cont(" t5 : " REG_FMT " t6 : " REG_FMT "\n",
  64. regs->t5, regs->t6);
  65. pr_cont("sstatus: " REG_FMT " sbadaddr: " REG_FMT " scause: " REG_FMT "\n",
  66. regs->sstatus, regs->sbadaddr, regs->scause);
  67. }
  68. void start_thread(struct pt_regs *regs, unsigned long pc,
  69. unsigned long sp)
  70. {
  71. regs->sstatus = SR_SPIE /* User mode, irqs on */ | SR_FS_INITIAL;
  72. regs->sepc = pc;
  73. regs->sp = sp;
  74. set_fs(USER_DS);
  75. }
  76. void flush_thread(void)
  77. {
  78. /*
  79. * Reset FPU context
  80. * frm: round to nearest, ties to even (IEEE default)
  81. * fflags: accrued exceptions cleared
  82. */
  83. memset(&current->thread.fstate, 0, sizeof(current->thread.fstate));
  84. }
  85. int arch_dup_task_struct(struct task_struct *dst, struct task_struct *src)
  86. {
  87. fstate_save(src, task_pt_regs(src));
  88. *dst = *src;
  89. return 0;
  90. }
  91. int copy_thread(unsigned long clone_flags, unsigned long usp,
  92. unsigned long arg, struct task_struct *p)
  93. {
  94. struct pt_regs *childregs = task_pt_regs(p);
  95. /* p->thread holds context to be restored by __switch_to() */
  96. if (unlikely(p->flags & PF_KTHREAD)) {
  97. /* Kernel thread */
  98. const register unsigned long gp __asm__ ("gp");
  99. memset(childregs, 0, sizeof(struct pt_regs));
  100. childregs->gp = gp;
  101. childregs->sstatus = SR_SPP | SR_SPIE; /* Supervisor, irqs on */
  102. p->thread.ra = (unsigned long)ret_from_kernel_thread;
  103. p->thread.s[0] = usp; /* fn */
  104. p->thread.s[1] = arg;
  105. } else {
  106. *childregs = *(current_pt_regs());
  107. if (usp) /* User fork */
  108. childregs->sp = usp;
  109. if (clone_flags & CLONE_SETTLS)
  110. childregs->tp = childregs->a5;
  111. childregs->a0 = 0; /* Return value of fork() */
  112. p->thread.ra = (unsigned long)ret_from_fork;
  113. }
  114. p->thread.sp = (unsigned long)childregs; /* kernel sp */
  115. return 0;
  116. }