stack.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * File : stack.c
  3. * This file is part of RT-Thread RTOS
  4. * COPYRIGHT (C) 2006, RT-Thread Development Team
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along
  17. * with this program; if not, write to the Free Software Foundation, Inc.,
  18. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  19. *
  20. * Change Logs:
  21. * Date Author Notes
  22. * 2017-07-31 tanek first implementation
  23. */
  24. #include <rtthread.h>
  25. /* flag in interrupt handling */
  26. rt_uint32_t rt_interrupt_from_thread;
  27. rt_uint32_t rt_interrupt_to_thread;
  28. rt_uint32_t rt_thread_switch_interrupt_flag;
  29. struct stack_frame
  30. {
  31. rt_ubase_t epc; /* epc - epc - program counter */
  32. rt_ubase_t ra; /* x1 - ra - return address for jumps */
  33. rt_ubase_t mstatus; /* - machine status register */
  34. rt_ubase_t gp; /* x3 - gp - global pointer */
  35. rt_ubase_t tp; /* x4 - tp - thread pointer */
  36. rt_ubase_t t0; /* x5 - t0 - temporary register 0 */
  37. rt_ubase_t t1; /* x6 - t1 - temporary register 1 */
  38. rt_ubase_t t2; /* x7 - t2 - temporary register 2 */
  39. rt_ubase_t s0_fp; /* x8 - s0/fp - saved register 0 or frame pointer */
  40. rt_ubase_t s1; /* x9 - s1 - saved register 1 */
  41. rt_ubase_t a0; /* x10 - a0 - return value or function argument 0 */
  42. rt_ubase_t a1; /* x11 - a1 - return value or function argument 1 */
  43. rt_ubase_t a2; /* x12 - a2 - function argument 2 */
  44. rt_ubase_t a3; /* x13 - a3 - function argument 3 */
  45. rt_ubase_t a4; /* x14 - a4 - function argument 4 */
  46. rt_ubase_t a5; /* x15 - a5 - function argument 5 */
  47. rt_ubase_t a6; /* x16 - a6 - function argument 6 */
  48. rt_ubase_t a7; /* x17 - s7 - function argument 7 */
  49. rt_ubase_t s2; /* x18 - s2 - saved register 2 */
  50. rt_ubase_t s3; /* x19 - s3 - saved register 3 */
  51. rt_ubase_t s4; /* x20 - s4 - saved register 4 */
  52. rt_ubase_t s5; /* x21 - s5 - saved register 5 */
  53. rt_ubase_t s6; /* x22 - s6 - saved register 6 */
  54. rt_ubase_t s7; /* x23 - s7 - saved register 7 */
  55. rt_ubase_t s8; /* x24 - s8 - saved register 8 */
  56. rt_ubase_t s9; /* x25 - s9 - saved register 9 */
  57. rt_ubase_t s10; /* x26 - s10 - saved register 10 */
  58. rt_ubase_t s11; /* x27 - s11 - saved register 11 */
  59. rt_ubase_t t3; /* x28 - t3 - temporary register 3 */
  60. rt_ubase_t t4; /* x29 - t4 - temporary register 4 */
  61. rt_ubase_t t5; /* x30 - t5 - temporary register 5 */
  62. rt_ubase_t t6; /* x31 - t6 - temporary register 6 */
  63. };
  64. /**
  65. * This function will initialize thread stack
  66. *
  67. * @param tentry the entry of thread
  68. * @param parameter the parameter of entry
  69. * @param stack_addr the beginning stack address
  70. * @param texit the function will be called when thread exit
  71. *
  72. * @return stack address
  73. */
  74. rt_uint8_t *rt_hw_stack_init(void *tentry, void *parameter,
  75. rt_uint8_t *stack_addr, void *texit)
  76. {
  77. struct stack_frame *stack_frame;
  78. rt_uint8_t *stk;
  79. int i;
  80. stk = stack_addr + sizeof(rt_uint32_t);
  81. stk = (rt_uint8_t *)RT_ALIGN_DOWN((rt_uint32_t)stk, 8);
  82. stk -= sizeof(struct stack_frame);
  83. stack_frame = (struct stack_frame *)stk;
  84. for (i = 0; i < sizeof(struct stack_frame) / sizeof(rt_ubase_t); i++)
  85. {
  86. ((rt_ubase_t *)stack_frame)[i] = 0xdeadbeef;
  87. }
  88. stack_frame->ra = (rt_ubase_t)texit;
  89. stack_frame->a0 = (rt_ubase_t)parameter;
  90. stack_frame->epc = (rt_ubase_t)tentry;
  91. // force to machine mode(MPP=11) and set MPIE to 1
  92. stack_frame->mstatus = 0x00001880;
  93. return stk;
  94. }