LPCOpen Platform  v1.03
LPCOpen Platform for NXP LPC Microcontrollers
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
os_pend_multi.c
Go to the documentation of this file.
1 /*
2 ************************************************************************************************************************
3 * uC/OS-III
4 * The Real-Time Kernel
5 *
6 * (c) Copyright 2009-2012; Micrium, Inc.; Weston, FL
7 * All rights reserved. Protected by international copyright laws.
8 *
9 * PEND ON MULTIPLE OBJECTS
10 *
11 * File : OS_PEND_MULTI.C
12 * By : JJL
13 * Version : V3.03.00
14 *
15 * LICENSING TERMS:
16 * ---------------
17 * uC/OS-III is provided in source form for FREE short-term evaluation, for educational use or
18 * for peaceful research. If you plan or intend to use uC/OS-III in a commercial application/
19 * product then, you need to contact Micrium to properly license uC/OS-III for its use in your
20 * application/product. We provide ALL the source code for your convenience and to help you
21 * experience uC/OS-III. The fact that the source is provided does NOT mean that you can use
22 * it commercially without paying a licensing fee.
23 *
24 * Knowledge of the source code may NOT be used to develop a similar product.
25 *
26 * Please help us continue to provide the embedded community with the finest software available.
27 * Your honesty is greatly appreciated.
28 *
29 * You can contact us at www.micrium.com, or by phone at +1 (954) 217-2036.
30 ************************************************************************************************************************
31 */
32 
33 #define MICRIUM_SOURCE
34 #include <os.h>
35 
36 #ifdef VSC_INCLUDE_SOURCE_FILE_NAMES
37 const CPU_CHAR *os_pend_multi__c = "$Id: $";
38 #endif
39 
40 
41 #if (((OS_CFG_Q_EN > 0u) || (OS_CFG_SEM_EN > 0u)) && (OS_CFG_PEND_MULTI_EN > 0u))
42 /*
43 ************************************************************************************************************************
44 * PEND ON MULTIPLE OBJECTS
45 *
46 * Description: This function pends on multiple objects. The objects pended on MUST be either semaphores or message
47 * queues. If multiple objects are ready at the start of the pend call, then all available objects that
48 * are ready will be indicated to the caller. If the task must pend on the multiple events then, as soon
49 * as one of the object is either posted, aborted or deleted, the task will be readied.
50 *
51 * This function only allows you to pend on semaphores and/or message queues.
52 *
53 * Arguments : p_pend_data_tbl is a pointer to an array of type OS_PEND_DATA which contains a list of all the
54 * objects we will be waiting on. The caller must declare an array of OS_PEND_DATA
55 * and initialize the .PendObjPtr (see below) with a pointer to the object (semaphore or
56 * message queue) to pend on.
57 *
58 * OS_PEND_DATA MyPendArray[?];
59 *
60 * The OS_PEND_DATA field are as follows:
61 *
62 * OS_PEND_DATA *PrevPtr; Used to link OS_PEND_DATA objects
63 * OS_PEND_DATA *NextPtr; Used to link OS_PEND_DATA objects
64 * OS_TCB *TCBPtr; Pointer to the TCB that is pending on multiple objects
65 * OS_PEND_OBJ *PendObjPtr; USER supplied field which is a pointer to the
66 * semaphore or message queue you want to pend on. When
67 * you call OSPendMulti() you MUST fill this field for
68 * each of the objects you want to pend on.
69 * OS_PEND_OBJ *RdyObjPtr; OSPendMulti() will return the object that was posted,
70 * aborted or deleted in this field.
71 * void *RdyMsgPtr; OSPendMulti() will fill in this field if the object
72 * posted was a message queue. This corresponds to the
73 * message posted.
74 * OS_MSG_SIZE RdyMsgSize; OSPendMulti() will fill in this field if the object
75 * posted was a message queue. This corresponds to the
76 * size of the message posted.
77 * CPU_TS RdyTS; OSPendMulti() will fill in this field if the object
78 * was a message queue. This corresponds to the time
79 * stamp when the message was posted. However, if the
80 * object is a semaphore and the object is already ready
81 * the this field will be set to (CPU_TS)0 because it's
82 * not possible to know when the semaphore was posted.
83 *
84 * tbl_size is the size (in number of elements) of the OS_PEND_DATA array passed to this function. In
85 * other words, if the called needs to pend on 4 separate objects (semaphores and/or queues)
86 * then you would pass 4 to this call.
87 *
88 * timeout is an optional timeout period (in clock ticks). If non-zero, your task will wait any of
89 * the objects up to the amount of time specified by this argument. If you specify 0, however,
90 * your task will wait forever for the specified objects or, until an object is posted,
91 * aborted or deleted.
92 *
93 * opt determines whether the user wants to block if none of the objects are available.
94 *
95 * OS_OPT_PEND_BLOCKING
96 * OS_OPT_PEND_NON_BLOCKING
97 *
98 * p_err is a pointer to where an error message will be deposited. Possible error messages are:
99 *
100 * OS_ERR_NONE The call was successful and your task owns the resources or,
101 * the objects you are waiting for occurred. Check the .RdyObjPtr
102 * fields to know which objects have been posted.
103 * OS_ERR_OBJ_TYPE If any of the .PendPtr is NOT a semaphore or a message queue
104 * OS_ERR_OPT_INVALID If you specified an invalid option for 'opt'
105 * OS_ERR_PEND_ABORT The wait on the events was aborted; check the .RdyObjPtr fields
106 * for which objects were aborted.
107 * OS_ERR_PEND_DEL The wait on the events was aborted; check the .RdyObjPtr fields
108 * for which objects were aborted.
109 * OS_ERR_PEND_ISR If you called this function from an ISR
110 * OS_ERR_PEND_LOCKED If you called this function when the scheduler is locked.
111 * OS_ERR_PEND_WOULD_BLOCK If the caller didn't want to block and no object ready
112 * OS_ERR_STATUS_INVALID Invalid pend status
113 * OS_ERR_PTR_INVALID If you passes a NULL pointer of 'p_pend_data_tbl'
114 * OS_ERR_TIMEOUT The objects were not posted within the specified 'timeout'.
115 *
116 * Returns : > 0 the number of objects returned as ready, aborted or deleted
117 * == 0 if no events are returned as ready because of timeout or upon error.
118 ************************************************************************************************************************
119 */
120 /*$PAGE*/
121 OS_OBJ_QTY OSPendMulti (OS_PEND_DATA *p_pend_data_tbl,
122  OS_OBJ_QTY tbl_size,
123  OS_TICK timeout,
124  OS_OPT opt,
125  OS_ERR *p_err)
126 {
127  CPU_BOOLEAN valid;
128  OS_OBJ_QTY nbr_obj_rdy;
129  CPU_SR_ALLOC();
130 
131 
132 
133 #ifdef OS_SAFETY_CRITICAL
134  if (p_err == (OS_ERR *)0) {
135  OS_SAFETY_CRITICAL_EXCEPTION();
136  return ((OS_OBJ_QTY)0);
137  }
138 #endif
139 
140 #if OS_CFG_CALLED_FROM_ISR_CHK_EN > 0u
141  if (OSIntNestingCtr > (OS_NESTING_CTR)0) { /* Can't pend from an ISR */
142  *p_err = OS_ERR_PEND_ISR;
143  return ((OS_OBJ_QTY)0);
144  }
145 #endif
146 
147 #if OS_CFG_ARG_CHK_EN > 0u
148  if (p_pend_data_tbl == (OS_PEND_DATA *)0) { /* Validate 'p_pend_data_tbl' */
149  *p_err = OS_ERR_PTR_INVALID;
150  return ((OS_OBJ_QTY)0);
151  }
152  if (tbl_size == (OS_OBJ_QTY)0) { /* Array size must be > 0 */
153  *p_err = OS_ERR_PTR_INVALID;
154  return ((OS_OBJ_QTY)0);
155  }
156  switch (opt) {
159  break;
160 
161  default:
162  *p_err = OS_ERR_OPT_INVALID;
163  return ((OS_OBJ_QTY)0);
164  }
165 #endif
166 
167  valid = OS_PendMultiValidate(p_pend_data_tbl, /* -------- Validate objects to be OS_SEM or OS_Q ------- */
168  tbl_size);
169  if (valid == DEF_FALSE) {
170  *p_err = OS_ERR_OBJ_TYPE; /* Invalid, not OS_SEM or OS_Q */
171  return ((OS_OBJ_QTY)0);
172  }
173 
174 /*$PAGE*/
176  nbr_obj_rdy = OS_PendMultiGetRdy(p_pend_data_tbl, /* --------- SEE IF OBJECT(s) HAVE BEEN POSTED ---------- */
177  tbl_size);
178  if (nbr_obj_rdy > (OS_OBJ_QTY)0) {
180  *p_err = OS_ERR_NONE;
181  return ((OS_OBJ_QTY)nbr_obj_rdy);
182  }
183 
184  if ((opt & OS_OPT_PEND_NON_BLOCKING) != (OS_OPT)0) { /* Caller wants to block if not available? */
186  *p_err = OS_ERR_PEND_WOULD_BLOCK; /* No */
187  return ((OS_OBJ_QTY)0);
188  } else {
189  if (OSSchedLockNestingCtr > (OS_NESTING_CTR)0) { /* Can't pend when the scheduler is locked */
191  *p_err = OS_ERR_SCHED_LOCKED;
192  return ((OS_OBJ_QTY)0);
193  }
194  }
195  OS_CRITICAL_ENTER_CPU_CRITICAL_EXIT(); /* Lock the scheduler/re-enable interrupts */
196  /* ------ NO OBJECT READY, PEND ON MULTIPLE OBJECTS ----- */
197  OS_PendMultiWait(p_pend_data_tbl, /* Suspend task until object posted or timeout occurs */
198  tbl_size,
199  timeout);
200 
202 
203  OSSched(); /* Find next highest priority task ready */
204 
206  switch (OSTCBCurPtr->PendStatus) {
207  case OS_STATUS_PEND_OK: /* We got one of the objects posted to */
208  *p_err = OS_ERR_NONE;
209  break;
210 
211  case OS_STATUS_PEND_ABORT: /* Indicate that the multi-pend was aborted */
212  *p_err = OS_ERR_PEND_ABORT;
213  break;
214 
215  case OS_STATUS_PEND_TIMEOUT: /* Indicate that we didn't get semaphore within timeout */
216  *p_err = OS_ERR_TIMEOUT;
217  break;
218 
219  case OS_STATUS_PEND_DEL: /* Indicate that an object pended on has been deleted */
220  *p_err = OS_ERR_OBJ_DEL;
221  break;
222 
223  default:
224  *p_err = OS_ERR_STATUS_INVALID;
225  break;
226  }
227 
228  OSTCBCurPtr->PendStatus = OS_STATUS_PEND_OK;
230 
231  return ((OS_OBJ_QTY)1);
232 }
233 
234 /*$PAGE*/
235 /*
236 ************************************************************************************************************************
237 * GET A LIST OF OBJECTS READY
238 *
239 * Description: This function is called by OSPendMulti() to obtain the list of object that are ready.
240 *
241 * Arguments : p_pend_data_tbl is a pointer to an array of OS_PEND_DATA
242 * ---------------
243 *
244 * tbl_size is the size of the array
245 *
246 * Returns : > 0 the number of objects ready
247 * == 0 if no object ready
248 *
249 * Note : This function is INTERNAL to uC/OS-III and your application should not call it.
250 ************************************************************************************************************************
251 */
252 
253 OS_OBJ_QTY OS_PendMultiGetRdy (OS_PEND_DATA *p_pend_data_tbl,
254  OS_OBJ_QTY tbl_size)
255 {
256  OS_OBJ_QTY i;
257  OS_OBJ_QTY nbr_obj_rdy;
258 #if OS_CFG_Q_EN > 0u
259  OS_ERR err;
260  OS_MSG_SIZE msg_size;
261  OS_Q *p_q;
262  void *p_void;
263  CPU_TS ts;
264 #endif
265 #if OS_CFG_SEM_EN > 0u
266  OS_SEM *p_sem;
267 #endif
268 
269 
270 
271  nbr_obj_rdy = (OS_OBJ_QTY)0;
272  for (i = 0u; i < tbl_size; i++) {
273  p_pend_data_tbl->RdyObjPtr = (OS_PEND_OBJ *)0; /* Clear all fields */
274  p_pend_data_tbl->RdyMsgPtr = (void *)0;
275  p_pend_data_tbl->RdyMsgSize = (OS_MSG_SIZE )0;
276  p_pend_data_tbl->RdyTS = (CPU_TS )0;
277  p_pend_data_tbl->NextPtr = (OS_PEND_DATA *)0;
278  p_pend_data_tbl->PrevPtr = (OS_PEND_DATA *)0;
279  p_pend_data_tbl->TCBPtr = (OS_TCB *)0;
280 #if OS_CFG_Q_EN > 0u
281  p_q = (OS_Q *)((void *)p_pend_data_tbl->PendObjPtr); /* Assume we are pointing to a message queue object */
282  if (p_q->Type == OS_OBJ_TYPE_Q) { /* Is it a message queue? */
283  p_void = OS_MsgQGet(&p_q->MsgQ, /* Yes, Any message waiting in the message queue? */
284  &msg_size,
285  &ts,
286  &err);
287  if (err == OS_ERR_NONE) {
288  p_pend_data_tbl->RdyObjPtr = p_pend_data_tbl->PendObjPtr;
289  p_pend_data_tbl->RdyMsgPtr = p_void; /* Yes, save the message received */
290  p_pend_data_tbl->RdyMsgSize = msg_size;
291  p_pend_data_tbl->RdyTS = ts;
292  nbr_obj_rdy++;
293  }
294  }
295 #endif
296 
297 #if OS_CFG_SEM_EN > 0u
298  p_sem = (OS_SEM *)((void *)p_pend_data_tbl->PendObjPtr); /* Assume we are pointing to a semaphore object */
299  if (p_sem->Type == OS_OBJ_TYPE_SEM) { /* Is it a semaphore? */
300  if (p_sem->Ctr > 0u) { /* Yes, Semaphore has been signaled? */
301  p_sem->Ctr--; /* Yes, caller may proceed */
302  p_pend_data_tbl->RdyObjPtr = p_pend_data_tbl->PendObjPtr;
303  p_pend_data_tbl->RdyTS = p_sem->TS;
304  nbr_obj_rdy++;
305  }
306  }
307 #endif
308 
309  p_pend_data_tbl++;
310  }
311  return (nbr_obj_rdy);
312 }
313 
314 /*$PAGE*/
315 /*
316 ************************************************************************************************************************
317 * VERIFY THAT OBJECTS PENDED ON ARE EITHER SEMAPHORES or QUEUES
318 *
319 * Description: This function is called by OSPendMulti() to verify that we are multi-pending on either semaphores or
320 * message queues.
321 *
322 * Arguments : p_pend_data_tbl is a pointer to an array of OS_PEND_DATA
323 * ---------------
324 *
325 * tbl_size is the size of the array
326 *
327 * Returns : TRUE if all objects pended on are either semaphores of queues
328 * FALSE if at least one object is not a semaphore or queue.
329 *
330 * Note : This function is INTERNAL to uC/OS-III and your application should not call it.
331 ************************************************************************************************************************
332 */
333 
334 CPU_BOOLEAN OS_PendMultiValidate (OS_PEND_DATA *p_pend_data_tbl,
335  OS_OBJ_QTY tbl_size)
336 {
337  OS_OBJ_QTY i;
338  OS_OBJ_QTY ctr;
339 #if OS_CFG_SEM_EN > 0u
340  OS_SEM *p_sem;
341 #endif
342 #if OS_CFG_Q_EN > 0u
343  OS_Q *p_q;
344 #endif
345 
346 
347  for (i = 0u; i < tbl_size; i++) {
348  if (p_pend_data_tbl->PendObjPtr == (OS_PEND_OBJ *)0) { /* All .PendObjPtr in the table MUST be non NULL */
349  return (DEF_FALSE);
350  }
351 
352  ctr = 0u;
353 #if OS_CFG_SEM_EN > 0u
354  p_sem = (OS_SEM *)((void *)p_pend_data_tbl->PendObjPtr); /* All objects to pend on must be of type OS_SEM ... */
355  if (p_sem->Type == OS_OBJ_TYPE_SEM) {
356  ctr++;
357  }
358 #endif
359 
360 #if OS_CFG_Q_EN > 0u
361  p_q = (OS_Q *)((void *)p_pend_data_tbl->PendObjPtr); /* ... or of type OS_Q */
362  if (p_q->Type == OS_OBJ_TYPE_Q) {
363  ctr++;
364  }
365 #endif
366 
367  if (ctr == (OS_OBJ_QTY)0) {
368  return (DEF_FALSE); /* Found at least one invalid object type */
369  }
370  p_pend_data_tbl++;
371  }
372  return (DEF_TRUE);
373 }
374 
375 /*$PAGE*/
376 /*
377 ************************************************************************************************************************
378 * MAKE TASK WAIT FOR ANY OF MULTIPLE EVENTS TO OCCUR
379 *
380 * Description: This function is called by OSPendMulti() to suspend a task because any one of multiple objects that have
381 * not been posted to.
382 *
383 * Arguments : p_pend_data_tbl is a pointer to an array of OS_PEND_DATA
384 * ---------------
385 *
386 * tbl_size is the size of the array
387 *
388 * timeout is the timeout to wait in case none of the objects become ready
389 *
390 * Returns : none
391 *
392 * Note : This function is INTERNAL to uC/OS-III and your application should not call it.
393 ************************************************************************************************************************
394 */
395 
396 void OS_PendMultiWait (OS_PEND_DATA *p_pend_data_tbl,
397  OS_OBJ_QTY tbl_size,
398  OS_TICK timeout)
399 {
400  OS_OBJ_QTY i;
401  OS_PEND_LIST *p_pend_list;
402 
403 #if OS_CFG_Q_EN > 0u
404  OS_Q *p_q;
405 #endif
406 
407 #if OS_CFG_SEM_EN > 0u
408  OS_SEM *p_sem;
409 #endif
410 
411 
412 
413  OSTCBCurPtr->PendOn = OS_TASK_PEND_ON_MULTI; /* Resource not available, wait until it is */
414  OSTCBCurPtr->PendStatus = OS_STATUS_PEND_OK;
415  OSTCBCurPtr->PendDataTblEntries = tbl_size;
416  OSTCBCurPtr->PendDataTblPtr = p_pend_data_tbl;
417 
418  OS_TaskBlock(OSTCBCurPtr, /* Block the task waiting for object to be posted ... */
419  timeout); /* ... but with a timeout if not */
420 
421  for (i = 0u; i < tbl_size; i++) {
422  p_pend_data_tbl->TCBPtr = OSTCBCurPtr; /* Every entry points back to the TCB of the task */
423 
424 #if OS_CFG_SEM_EN > 0u
425  p_sem = (OS_SEM *)((void *)p_pend_data_tbl->PendObjPtr);
426  if (p_sem->Type == OS_OBJ_TYPE_SEM) {
427  p_pend_list = &p_sem->PendList;
428  OS_PendListInsertPrio(p_pend_list,
429  p_pend_data_tbl);
430  }
431 #endif
432 
433 #if OS_CFG_Q_EN > 0u
434  p_q = (OS_Q *)((void *)p_pend_data_tbl->PendObjPtr);
435  if (p_q->Type == OS_OBJ_TYPE_Q) {
436  p_pend_list = &p_q->PendList;
437  OS_PendListInsertPrio(p_pend_list,
438  p_pend_data_tbl);
439  }
440 #endif
441 
442  p_pend_data_tbl++;
443  }
444 }
445 
446 #endif