Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

rt_Event.c 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. /*----------------------------------------------------------------------------
  2. * RL-ARM - RTX
  3. *----------------------------------------------------------------------------
  4. * Name: RT_EVENT.C
  5. * Purpose: Implements waits and wake-ups for event flags
  6. * Rev.: V4.60
  7. *----------------------------------------------------------------------------
  8. *
  9. * Copyright (c) 1999-2009 KEIL, 2009-2012 ARM Germany GmbH
  10. * All rights reserved.
  11. * Redistribution and use in source and binary forms, with or without
  12. * modification, are permitted provided that the following conditions are met:
  13. * - Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. * - Redistributions in binary form must reproduce the above copyright
  16. * notice, this list of conditions and the following disclaimer in the
  17. * documentation and/or other materials provided with the distribution.
  18. * - Neither the name of ARM nor the names of its contributors may be used
  19. * to endorse or promote products derived from this software without
  20. * specific prior written permission.
  21. *
  22. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  23. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25. * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
  26. * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  27. * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  28. * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  29. * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  30. * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  31. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  32. * POSSIBILITY OF SUCH DAMAGE.
  33. *---------------------------------------------------------------------------*/
  34. #include "rt_TypeDef.h"
  35. #include "RTX_Conf.h"
  36. #include "rt_System.h"
  37. #include "rt_Event.h"
  38. #include "rt_List.h"
  39. #include "rt_Task.h"
  40. #include "rt_HAL_CM.h"
  41. /*----------------------------------------------------------------------------
  42. * Functions
  43. *---------------------------------------------------------------------------*/
  44. /*--------------------------- rt_evt_wait -----------------------------------*/
  45. OS_RESULT rt_evt_wait (U16 wait_flags, U16 timeout, BOOL and_wait) {
  46. /* Wait for one or more event flags with optional time-out. */
  47. /* "wait_flags" identifies the flags to wait for. */
  48. /* "timeout" is the time-out limit in system ticks (0xffff if no time-out) */
  49. /* "and_wait" specifies the AND-ing of "wait_flags" as condition to be met */
  50. /* to complete the wait. (OR-ing if set to 0). */
  51. U32 block_state;
  52. if (and_wait) {
  53. /* Check for AND-connected events */
  54. if ((os_tsk.run->events & wait_flags) == wait_flags) {
  55. os_tsk.run->events &= ~wait_flags;
  56. return (OS_R_EVT);
  57. }
  58. block_state = WAIT_AND;
  59. }
  60. else {
  61. /* Check for OR-connected events */
  62. if (os_tsk.run->events & wait_flags) {
  63. os_tsk.run->waits = os_tsk.run->events & wait_flags;
  64. os_tsk.run->events &= ~wait_flags;
  65. return (OS_R_EVT);
  66. }
  67. block_state = WAIT_OR;
  68. }
  69. /* Task has to wait */
  70. os_tsk.run->waits = wait_flags;
  71. rt_block (timeout, (U8)block_state);
  72. return (OS_R_TMO);
  73. }
  74. /*--------------------------- rt_evt_set ------------------------------------*/
  75. void rt_evt_set (U16 event_flags, OS_TID task_id) {
  76. /* Set one or more event flags of a selectable task. */
  77. P_TCB p_tcb;
  78. p_tcb = os_active_TCB[task_id-1];
  79. if (p_tcb == NULL) {
  80. return;
  81. }
  82. p_tcb->events |= event_flags;
  83. event_flags = p_tcb->waits;
  84. /* If the task is not waiting for an event, it should not be put */
  85. /* to ready state. */
  86. if (p_tcb->state == WAIT_AND) {
  87. /* Check for AND-connected events */
  88. if ((p_tcb->events & event_flags) == event_flags) {
  89. goto wkup;
  90. }
  91. }
  92. if (p_tcb->state == WAIT_OR) {
  93. /* Check for OR-connected events */
  94. if (p_tcb->events & event_flags) {
  95. p_tcb->waits &= p_tcb->events;
  96. wkup: p_tcb->events &= ~event_flags;
  97. rt_rmv_dly (p_tcb);
  98. p_tcb->state = READY;
  99. #ifdef __CMSIS_RTOS
  100. rt_ret_val2(p_tcb, 0x08/*osEventSignal*/, p_tcb->waits);
  101. #else
  102. rt_ret_val (p_tcb, OS_R_EVT);
  103. #endif
  104. rt_dispatch (p_tcb);
  105. }
  106. }
  107. }
  108. /*--------------------------- rt_evt_clr ------------------------------------*/
  109. void rt_evt_clr (U16 clear_flags, OS_TID task_id) {
  110. /* Clear one or more event flags (identified by "clear_flags") of a */
  111. /* selectable task (identified by "task"). */
  112. P_TCB task = os_active_TCB[task_id-1];
  113. if (task == NULL) {
  114. return;
  115. }
  116. task->events &= ~clear_flags;
  117. }
  118. /*--------------------------- isr_evt_set -----------------------------------*/
  119. void isr_evt_set (U16 event_flags, OS_TID task_id) {
  120. /* Same function as "os_evt_set", but to be called by ISRs. */
  121. P_TCB p_tcb = os_active_TCB[task_id-1];
  122. if (p_tcb == NULL) {
  123. return;
  124. }
  125. rt_psq_enq (p_tcb, event_flags);
  126. rt_psh_req ();
  127. }
  128. /*--------------------------- rt_evt_get ------------------------------------*/
  129. U16 rt_evt_get (void) {
  130. /* Get events of a running task after waiting for OR connected events. */
  131. return (os_tsk.run->waits);
  132. }
  133. /*--------------------------- rt_evt_psh ------------------------------------*/
  134. void rt_evt_psh (P_TCB p_CB, U16 set_flags) {
  135. /* Check if task has to be waken up */
  136. U16 event_flags;
  137. p_CB->events |= set_flags;
  138. event_flags = p_CB->waits;
  139. if (p_CB->state == WAIT_AND) {
  140. /* Check for AND-connected events */
  141. if ((p_CB->events & event_flags) == event_flags) {
  142. goto rdy;
  143. }
  144. }
  145. if (p_CB->state == WAIT_OR) {
  146. /* Check for OR-connected events */
  147. if (p_CB->events & event_flags) {
  148. p_CB->waits &= p_CB->events;
  149. rdy: p_CB->events &= ~event_flags;
  150. rt_rmv_dly (p_CB);
  151. p_CB->state = READY;
  152. #ifdef __CMSIS_RTOS
  153. rt_ret_val2(p_CB, 0x08/*osEventSignal*/, p_CB->waits);
  154. #else
  155. rt_ret_val (p_CB, OS_R_EVT);
  156. #endif
  157. rt_put_prio (&os_rdy, p_CB);
  158. }
  159. }
  160. }
  161. /*----------------------------------------------------------------------------
  162. * end of file
  163. *---------------------------------------------------------------------------*/