Os_cpu_c.c
上传用户:zbk8730
上传日期:2017-08-10
资源大小:12168k
文件大小:10k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                               uC/OS-II
  4. *                                        The Real-Time Kernel
  5. *
  6. *                           (c) Copyright 1992-2003, Micrium, Inc., Weston, FL
  7. *                                          All Rights Reserved
  8. *
  9. *                                               ARM9 Port
  10. *
  11. * File : OS_CPU_C.C
  12. *********************************************************************************************************
  13. */
  14. //#define  OS_CPU_GLOBALS
  15. #include "ucos_ii.h"
  16. /*
  17. *********************************************************************************************************
  18. *                                        INITIALIZE A TASK'S STACK
  19. *
  20. * Description: This function is called by either OSTaskCreate() or OSTaskCreateExt() to initialize the
  21. *              stack frame of the task being created.  This function is highly processor specific.
  22. *
  23. * Arguments  : task          is a pointer to the task code
  24. *
  25. *              p_arg         is a pointer to a user supplied data area that will be passed to the task
  26. *                            when the task first executes.
  27. *
  28. *              ptos          is a pointer to the top of stack.  It is assumed that 'ptos' points to
  29. *                            a 'free' entry on the task stack.  If OS_STK_GROWTH is set to 1 then 
  30. *                            'ptos' will contain the HIGHEST valid address of the stack.  Similarly, if
  31. *                            OS_STK_GROWTH is set to 0, the 'ptos' will contains the LOWEST valid address
  32. *                            of the stack.
  33. *
  34. *              opt           specifies options that can be used to alter the behavior of OSTaskStkInit().
  35. *                            (see uCOS_II.H for OS_TASK_OPT_???).
  36. *
  37. * Returns    : Always returns the location of the new top-of-stack' once the processor registers have
  38. *              been placed on the stack in the proper order.
  39. *
  40. * Note(s)    : 1) Interrupts are enabled when your task starts executing. 
  41. *              2) All tasks run in SVC mode.
  42. *********************************************************************************************************
  43. */
  44. OS_STK *OSTaskStkInit (void (*task)(void *pd), void *p_arg, OS_STK *ptos, INT16U opt)
  45. {
  46.     OS_STK *stk;
  47.     opt      = opt;                 /* 'opt' is not used, prevent warning                      */
  48.     
  49.     stk      = ptos;                /* Load stack pointer                                      */
  50.     
  51.     *(stk)   = (OS_STK)task;        /* Entry Point                                             */
  52.     *(--stk) = (INT32U)0;          /* LR                                                      */
  53.     *(--stk) = (INT32U)0;          /* R12                                                     */
  54.     *(--stk) = (INT32U)0;          /* R11                                                     */
  55.     *(--stk) = (INT32U)0;          /* R10                                                     */
  56.     *(--stk) = (INT32U)0;          /* R9                                                      */
  57.     *(--stk) = (INT32U)0;          /* R8                                                      */
  58.     *(--stk) = (INT32U)0;          /* R7                                                      */
  59.     *(--stk) = (INT32U)0;          /* R6                                                      */
  60.     *(--stk) = (INT32U)0;          /* R5                                                      */
  61.     *(--stk) = (INT32U)0;          /* R4                                                      */
  62.     *(--stk) = (INT32U)0;          /* R3                                                      */
  63.     *(--stk) = (INT32U)0;          /* R2                                                      */
  64.     *(--stk) = (INT32U)0;          /* R1                                                      */
  65.     *(--stk) = (INT32U)p_arg; /* R0 : argument                                           */
  66.     *(--stk) = (INT32U)0x00000013L; /* CPSR  (SVC mode, Enable both IRQ and FIQ interrupts)    */
  67.            
  68.     return (stk);
  69. }
  70. #if OS_CPU_HOOKS_EN
  71. /*
  72. *********************************************************************************************************
  73. *                                       OS INITIALIZATION HOOK
  74. *                                            (BEGINNING)
  75. *
  76. * Description: This function is called by OSInit() at the beginning of OSInit().
  77. *
  78. * Arguments  : none
  79. *
  80. * Note(s)    : 1) Interrupts should be disabled during this call.
  81. *********************************************************************************************************
  82. */
  83. #if OS_VERSION > 203
  84. void OSInitHookBegin (void)
  85. {
  86. }
  87. #endif
  88. /*
  89. *********************************************************************************************************
  90. *                                       OS INITIALIZATION HOOK
  91. *                                               (END)
  92. *
  93. * Description: This function is called by OSInit() at the end of OSInit().
  94. *
  95. * Arguments  : none
  96. *
  97. * Note(s)    : 1) Interrupts should be disabled during this call.
  98. *********************************************************************************************************
  99. */
  100. #if OS_VERSION > 203
  101. void OSInitHookEnd (void)
  102. {
  103. }
  104. #endif
  105. /*
  106. *********************************************************************************************************
  107. *                                          TASK CREATION HOOK
  108. *
  109. * Description: This function is called when a task is created.
  110. *
  111. * Arguments  : ptcb   is a pointer to the task control block of the task being created.
  112. *
  113. * Note(s)    : 1) Interrupts are disabled during this call.
  114. *********************************************************************************************************
  115. */
  116. void OSTaskCreateHook (OS_TCB *ptcb)
  117. {
  118.     ptcb = ptcb;                       /* Prevent compiler warning                                     */
  119. }
  120. /*
  121. *********************************************************************************************************
  122. *                                           TASK DELETION HOOK
  123. *
  124. * Description: This function is called when a task is deleted.
  125. *
  126. * Arguments  : ptcb   is a pointer to the task control block of the task being deleted.
  127. *
  128. * Note(s)    : 1) Interrupts are disabled during this call.
  129. *********************************************************************************************************
  130. */
  131. void OSTaskDelHook (OS_TCB *ptcb)
  132. {
  133.     ptcb = ptcb;                       /* Prevent compiler warning                                     */
  134. }
  135. /*
  136. *********************************************************************************************************
  137. *                                           TASK SWITCH HOOK
  138. *
  139. * Description: This function is called when a task switch is performed.  This allows you to perform other
  140. *              operations during a context switch.
  141. *
  142. * Arguments  : none
  143. *
  144. * Note(s)    : 1) Interrupts are disabled during this call.
  145. *              2) It is assumed that the global pointer 'OSTCBHighRdy' points to the TCB of the task that
  146. *                 will be 'switched in' (i.e. the highest priority task) and, 'OSTCBCur' points to the 
  147. *                 task being switched out (i.e. the preempted task).
  148. *********************************************************************************************************
  149. */
  150. void OSTaskSwHook (void)
  151. {
  152. }
  153. /*
  154. *********************************************************************************************************
  155. *                                           STATISTIC TASK HOOK
  156. *
  157. * Description: This function is called every second by uC/OS-II's statistics task.  This allows your 
  158. *              application to add functionality to the statistics task.
  159. *
  160. * Arguments  : none
  161. *********************************************************************************************************
  162. */
  163. void OSTaskStatHook (void)
  164. {
  165. }
  166. /*
  167. *********************************************************************************************************
  168. *                                           OSTCBInit() HOOK
  169. *
  170. * Description: This function is called by OSTCBInit() after setting up most of the TCB.
  171. *
  172. * Arguments  : ptcb    is a pointer to the TCB of the task being created.
  173. *
  174. * Note(s)    : 1) Interrupts may or may not be ENABLED during this call.
  175. *********************************************************************************************************
  176. */
  177. #if OS_VERSION > 203
  178. void OSTCBInitHook (OS_TCB *ptcb)
  179. {
  180.     ptcb = ptcb;                                           /* Prevent Compiler warning                 */
  181. }
  182. #endif
  183. /*
  184. *********************************************************************************************************
  185. *                                               TICK HOOK
  186. *
  187. * Description: This function is called every tick.
  188. *
  189. * Arguments  : none
  190. *
  191. * Note(s)    : 1) Interrupts may or may not be ENABLED during this call.
  192. *********************************************************************************************************
  193. */
  194. void OSTimeTickHook (void)
  195. {
  196. }
  197. /*
  198. *********************************************************************************************************
  199. *                                             IDLE TASK HOOK
  200. *
  201. * Description: This function is called by the idle task.  This hook has been added to allow you to do  
  202. *              such things as STOP the CPU to conserve power.
  203. *
  204. * Arguments  : none
  205. *
  206. * Note(s)    : 1) Interrupts are enabled during this call.
  207. *********************************************************************************************************
  208. */
  209. #if OS_VERSION >= 251
  210. void OSTaskIdleHook (void)
  211. {
  212. }
  213. #endif
  214. #endif