os_cpu_c.c
上传用户:yj_qqy
上传日期:2017-01-28
资源大小:2911k
文件大小:15k
源码类别:

uCOS

开发平台:

C/C++

  1. /*
  2. *********************************************************************************************************
  3. *                                               uC/OS-II
  4. *                                         The Real-Time Kernel
  5. *
  6. *
  7. *                                (c) Copyright 2006, Micrium, Weston, FL
  8. *                                          All Rights Reserved
  9. *
  10. *                                           ARM Cortex-M3 Port
  11. *
  12. * File      : OS_CPU_C.C
  13. * Version   : V2.86
  14. * By        : Jean J. Labrosse
  15. *
  16. * For       : ARMv7M Cortex-M3
  17. * Mode      : Thumb2
  18. * Toolchain : RealView Development Suite
  19. *             RealView Microcontroller Development Kit (MDK)
  20. *             ARM Developer Suite (ADS)
  21. *             Keil uVision
  22. *********************************************************************************************************
  23. */
  24. #define  OS_CPU_GLOBALS
  25. #include <ucos_ii.h>
  26. /*
  27. *********************************************************************************************************
  28. *                                          LOCAL VARIABLES
  29. *********************************************************************************************************
  30. */
  31. #if OS_TMR_EN > 0
  32. static  INT16U  OSTmrCtr;
  33. #endif
  34. /*
  35. *********************************************************************************************************
  36. *                                          SYS TICK DEFINES
  37. *********************************************************************************************************
  38. */
  39. #define  OS_CPU_CM3_NVIC_ST_CTRL    (*((volatile INT32U *)0xE000E010))   /* SysTick Ctrl & Status Reg. */
  40. #define  OS_CPU_CM3_NVIC_ST_RELOAD  (*((volatile INT32U *)0xE000E014))   /* SysTick Reload  Value Reg. */
  41. #define  OS_CPU_CM3_NVIC_ST_CURRENT (*((volatile INT32U *)0xE000E018))   /* SysTick Current Value Reg. */
  42. #define  OS_CPU_CM3_NVIC_ST_CAL     (*((volatile INT32U *)0xE000E01C))   /* SysTick Cal     Value Reg. */
  43. #define  OS_CPU_CM3_NVIC_ST_CTRL_COUNT                    0x00010000     /* Count flag.                */
  44. #define  OS_CPU_CM3_NVIC_ST_CTRL_CLK_SRC                  0x00000004     /* Clock Source.              */
  45. #define  OS_CPU_CM3_NVIC_ST_CTRL_INTEN                    0x00000002     /* Interrupt enable.          */
  46. #define  OS_CPU_CM3_NVIC_ST_CTRL_ENABLE                   0x00000001     /* Counter mode.              */
  47. /*
  48. *********************************************************************************************************
  49. *                                       OS INITIALIZATION HOOK
  50. *                                            (BEGINNING)
  51. *
  52. * Description: This function is called by OSInit() at the beginning of OSInit().
  53. *
  54. * Arguments  : none
  55. *
  56. * Note(s)    : 1) Interrupts should be disabled during this call.
  57. *********************************************************************************************************
  58. */
  59. #if OS_CPU_HOOKS_EN > 0 && OS_VERSION > 203
  60. void  OSInitHookBegin (void)
  61. {
  62. #if OS_TMR_EN > 0
  63.     OSTmrCtr = 0;
  64. #endif
  65. }
  66. #endif
  67. /*
  68. *********************************************************************************************************
  69. *                                       OS INITIALIZATION HOOK
  70. *                                               (END)
  71. *
  72. * Description: This function is called by OSInit() at the end of OSInit().
  73. *
  74. * Arguments  : none
  75. *
  76. * Note(s)    : 1) Interrupts should be disabled during this call.
  77. *********************************************************************************************************
  78. */
  79. #if OS_CPU_HOOKS_EN > 0 && OS_VERSION > 203
  80. void  OSInitHookEnd (void)
  81. {
  82. }
  83. #endif
  84. /*
  85. *********************************************************************************************************
  86. *                                          TASK CREATION HOOK
  87. *
  88. * Description: This function is called when a task is created.
  89. *
  90. * Arguments  : ptcb   is a pointer to the task control block of the task being created.
  91. *
  92. * Note(s)    : 1) Interrupts are disabled during this call.
  93. *********************************************************************************************************
  94. */
  95. #if OS_CPU_HOOKS_EN > 0
  96. void  OSTaskCreateHook (OS_TCB *ptcb)
  97. {
  98. #if OS_APP_HOOKS_EN > 0
  99.     App_TaskCreateHook(ptcb);
  100. #else
  101.     (void)ptcb;                                  /* Prevent compiler warning                           */
  102. #endif
  103. }
  104. #endif
  105. /*
  106. *********************************************************************************************************
  107. *                                           TASK DELETION HOOK
  108. *
  109. * Description: This function is called when a task is deleted.
  110. *
  111. * Arguments  : ptcb   is a pointer to the task control block of the task being deleted.
  112. *
  113. * Note(s)    : 1) Interrupts are disabled during this call.
  114. *********************************************************************************************************
  115. */
  116. #if OS_CPU_HOOKS_EN > 0
  117. void  OSTaskDelHook (OS_TCB *ptcb)
  118. {
  119. #if OS_APP_HOOKS_EN > 0
  120.     App_TaskDelHook(ptcb);
  121. #else
  122.     (void)ptcb;                                  /* Prevent compiler warning                           */
  123. #endif
  124. }
  125. #endif
  126. /*
  127. *********************************************************************************************************
  128. *                                             IDLE TASK HOOK
  129. *
  130. * Description: This function is called by the idle task.  This hook has been added to allow you to do
  131. *              such things as STOP the CPU to conserve power.
  132. *
  133. * Arguments  : none
  134. *
  135. * Note(s)    : 1) Interrupts are enabled during this call.
  136. *********************************************************************************************************
  137. */
  138. #if OS_CPU_HOOKS_EN > 0 && OS_VERSION >= 251
  139. void  OSTaskIdleHook (void)
  140. {
  141. #if OS_APP_HOOKS_EN > 0
  142.     App_TaskIdleHook();
  143. #endif
  144. }
  145. #endif
  146. /*
  147. *********************************************************************************************************
  148. *                                           STATISTIC TASK HOOK
  149. *
  150. * Description: This function is called every second by uC/OS-II's statistics task.  This allows your
  151. *              application to add functionality to the statistics task.
  152. *
  153. * Arguments  : none
  154. *********************************************************************************************************
  155. */
  156. #if OS_CPU_HOOKS_EN > 0
  157. void  OSTaskStatHook (void)
  158. {
  159. #if OS_APP_HOOKS_EN > 0
  160.     App_TaskStatHook();
  161. #endif
  162. }
  163. #endif
  164. /*
  165. *********************************************************************************************************
  166. *                                        INITIALIZE A TASK'S STACK
  167. *
  168. * Description: This function is called by either OSTaskCreate() or OSTaskCreateExt() to initialize the
  169. *              stack frame of the task being created.  This function is highly processor specific.
  170. *
  171. * Arguments  : task          is a pointer to the task code
  172. *
  173. *              p_arg         is a pointer to a user supplied data area that will be passed to the task
  174. *                            when the task first executes.
  175. *
  176. *              ptos          is a pointer to the top of stack.  It is assumed that 'ptos' points to
  177. *                            a 'free' entry on the task stack.  If OS_STK_GROWTH is set to 1 then
  178. *                            'ptos' will contain the HIGHEST valid address of the stack.  Similarly, if
  179. *                            OS_STK_GROWTH is set to 0, the 'ptos' will contains the LOWEST valid address
  180. *                            of the stack.
  181. *
  182. *              opt           specifies options that can be used to alter the behavior of OSTaskStkInit().
  183. *                            (see uCOS_II.H for OS_TASK_OPT_xxx).
  184. *
  185. * Returns    : Always returns the location of the new top-of-stack once the processor registers have
  186. *              been placed on the stack in the proper order.
  187. *
  188. * Note(s)    : 1) Interrupts are enabled when your task starts executing.
  189. *              2) All tasks run in Thread mode, using process stack.
  190. *********************************************************************************************************
  191. */
  192. OS_STK *OSTaskStkInit (void (*task)(void *p_arg), void *p_arg, OS_STK *ptos, INT16U opt)
  193. {
  194.     OS_STK *stk;
  195.     (void)opt;                                   /* 'opt' is not used, prevent warning                 */
  196.     stk       = ptos;                            /* Load stack pointer                                 */
  197.                                                  /* Registers stacked as if auto-saved on exception    */
  198.     *(stk)    = (INT32U)0x01000000L;             /* xPSR                                               */
  199.     *(--stk)  = (INT32U)task;                    /* Entry Point                                        */
  200.     *(--stk)  = (INT32U)0xFFFFFFFEL;             /* R14 (LR) (init value will cause fault if ever used)*/
  201.     *(--stk)  = (INT32U)0x12121212L;             /* R12                                                */
  202.     *(--stk)  = (INT32U)0x03030303L;             /* R3                                                 */
  203.     *(--stk)  = (INT32U)0x02020202L;             /* R2                                                 */
  204.     *(--stk)  = (INT32U)0x01010101L;             /* R1                                                 */
  205.     *(--stk)  = (INT32U)p_arg;                   /* R0 : argument                                      */
  206.                                                  /* Remaining registers saved on process stack         */
  207.     *(--stk)  = (INT32U)0x11111111L;             /* R11                                                */
  208.     *(--stk)  = (INT32U)0x10101010L;             /* R10                                                */
  209.     *(--stk)  = (INT32U)0x09090909L;             /* R9                                                 */
  210.     *(--stk)  = (INT32U)0x08080808L;             /* R8                                                 */
  211.     *(--stk)  = (INT32U)0x07070707L;             /* R7                                                 */
  212.     *(--stk)  = (INT32U)0x06060606L;             /* R6                                                 */
  213.     *(--stk)  = (INT32U)0x05050505L;             /* R5                                                 */
  214.     *(--stk)  = (INT32U)0x04040404L;             /* R4                                                 */
  215.     return (stk);
  216. }
  217. /*
  218. *********************************************************************************************************
  219. *                                           TASK SWITCH HOOK
  220. *
  221. * Description: This function is called when a task switch is performed.  This allows you to perform other
  222. *              operations during a context switch.
  223. *
  224. * Arguments  : none
  225. *
  226. * Note(s)    : 1) Interrupts are disabled during this call.
  227. *              2) It is assumed that the global pointer 'OSTCBHighRdy' points to the TCB of the task that
  228. *                 will be 'switched in' (i.e. the highest priority task) and, 'OSTCBCur' points to the
  229. *                 task being switched out (i.e. the preempted task).
  230. *********************************************************************************************************
  231. */
  232. #if (OS_CPU_HOOKS_EN > 0) && (OS_TASK_SW_HOOK_EN > 0)
  233. void  OSTaskSwHook (void)
  234. {
  235. #if OS_APP_HOOKS_EN > 0
  236.     App_TaskSwHook();
  237. #endif
  238. }
  239. #endif
  240. /*
  241. *********************************************************************************************************
  242. *                                           OS_TCBInit() HOOK
  243. *
  244. * Description: This function is called by OS_TCBInit() after setting up most of the TCB.
  245. *
  246. * Arguments  : ptcb    is a pointer to the TCB of the task being created.
  247. *
  248. * Note(s)    : 1) Interrupts may or may not be ENABLED during this call.
  249. *********************************************************************************************************
  250. */
  251. #if OS_CPU_HOOKS_EN > 0 && OS_VERSION > 203
  252. void  OSTCBInitHook (OS_TCB *ptcb)
  253. {
  254. #if OS_APP_HOOKS_EN > 0
  255.     App_TCBInitHook(ptcb);
  256. #else
  257.     (void)ptcb;                                  /* Prevent compiler warning                           */
  258. #endif
  259. }
  260. #endif
  261. /*
  262. *********************************************************************************************************
  263. *                                               TICK HOOK
  264. *
  265. * Description: This function is called every tick.
  266. *
  267. * Arguments  : none
  268. *
  269. * Note(s)    : 1) Interrupts may or may not be ENABLED during this call.
  270. *********************************************************************************************************
  271. */
  272. #if (OS_CPU_HOOKS_EN > 0) && (OS_TIME_TICK_HOOK_EN > 0)
  273. void  OSTimeTickHook (void)
  274. {
  275. #if OS_APP_HOOKS_EN > 0
  276.     App_TimeTickHook();
  277. #endif
  278. #if OS_TMR_EN > 0
  279.     OSTmrCtr++;
  280.     if (OSTmrCtr >= (OS_TICKS_PER_SEC / OS_TMR_CFG_TICKS_PER_SEC)) {
  281.         OSTmrCtr = 0;
  282.         OSTmrSignal();
  283.     }
  284. #endif
  285. }
  286. #endif
  287. /*
  288. *********************************************************************************************************
  289. *                                         OS_CPU_SysTickHandler()
  290. *
  291. * Description: Handle the system tick (SysTick) interrupt, which is used to generate the uC/OS-II tick
  292. *              interrupt.
  293. *
  294. * Arguments  : none.
  295. *
  296. * Note(s)    : 1) This function MUST be placed on entry 15 of the Cortex-M3 vector table.
  297. *********************************************************************************************************
  298. */
  299. void  OS_CPU_SysTickHandler (void)
  300. {
  301.     OS_CPU_SR  cpu_sr;
  302.     OS_ENTER_CRITICAL();                         /* Tell uC/OS-II that we are starting an ISR          */
  303.     OSIntNesting++;
  304.     OS_EXIT_CRITICAL();
  305.     OSTimeTick();                                /* Call uC/OS-II's OSTimeTick()                       */
  306.     OSIntExit();                                 /* Tell uC/OS-II that we are leaving the ISR          */
  307. }
  308. /*
  309. *********************************************************************************************************
  310. *                                          OS_CPU_SysTickInit()
  311. *
  312. * Description: Initialize the SysTick.
  313. *
  314. * Arguments  : none.
  315. *
  316. * Note(s)    : 1) This function MUST be called after OSStart() & after processor initialization.
  317. *********************************************************************************************************
  318. */
  319. void  OS_CPU_SysTickInit (void)
  320. {
  321.     INT32U  cnts;
  322.     cnts = OS_CPU_SysTickClkFreq() / OS_TICKS_PER_SEC;
  323.     OS_CPU_CM3_NVIC_ST_RELOAD = (cnts - 1);
  324.                                                  /* Enable timer.                                      */
  325.     OS_CPU_CM3_NVIC_ST_CTRL  |= OS_CPU_CM3_NVIC_ST_CTRL_CLK_SRC | OS_CPU_CM3_NVIC_ST_CTRL_ENABLE;
  326.                                                  /* Enable timer interrupt.                            */
  327.     OS_CPU_CM3_NVIC_ST_CTRL  |= OS_CPU_CM3_NVIC_ST_CTRL_INTEN;
  328. }