GM6000 Digital Heater Controller Branch: main
SDX-1330
list.h
1/*
2 * FreeRTOS Kernel V10.0.0
3 * Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy of
6 * this software and associated documentation files (the "Software"), to deal in
7 * the Software without restriction, including without limitation the rights to
8 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9 * the Software, and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in all
13 * copies or substantial portions of the Software. If you wish to use our Amazon
14 * FreeRTOS name, please do so in a fair use way that does not cause confusion.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
18 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
19 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * http://www.FreeRTOS.org
24 * http://aws.amazon.com/freertos
25 *
26 * 1 tab == 4 spaces!
27 */
28
29/*
30 * This is the list implementation used by the scheduler. While it is tailored
31 * heavily for the schedulers needs, it is also available for use by
32 * application code.
33 *
34 * list_ts can only store pointers to list_item_ts. Each ListItem_t contains a
35 * numeric value (xItemValue). Most of the time the lists are sorted in
36 * descending item value order.
37 *
38 * Lists are created already containing one list item. The value of this
39 * item is the maximum possible that can be stored, it is therefore always at
40 * the end of the list and acts as a marker. The list member pxHead always
41 * points to this marker - even though it is at the tail of the list. This
42 * is because the tail contains a wrap back pointer to the true head of
43 * the list.
44 *
45 * In addition to it's value, each list item contains a pointer to the next
46 * item in the list (pxNext), a pointer to the list it is in (pxContainer)
47 * and a pointer to back to the object that contains it. These later two
48 * pointers are included for efficiency of list manipulation. There is
49 * effectively a two way link between the object containing the list item and
50 * the list item itself.
51 *
52 *
53 * \page ListIntroduction List Implementation
54 * \ingroup FreeRTOSIntro
55 */
56
57#ifndef INC_FREERTOS_H
58#error FreeRTOS.h must be included before list.h
59#endif
60
61#ifndef LIST_H
62#define LIST_H
63
64/*
65 * The list structure members are modified from within interrupts, and therefore
66 * by rights should be declared volatile. However, they are only modified in a
67 * functionally atomic way (within critical sections of with the scheduler
68 * suspended) and are either passed by reference into a function or indexed via
69 * a volatile variable. Therefore, in all use cases tested so far, the volatile
70 * qualifier can be omitted in order to provide a moderate performance
71 * improvement without adversely affecting functional behaviour. The assembly
72 * instructions generated by the IAR, ARM and GCC compilers when the respective
73 * compiler's options were set for maximum optimisation has been inspected and
74 * deemed to be as intended. That said, as compiler technology advances, and
75 * especially if aggressive cross module optimisation is used (a use case that
76 * has not been exercised to any great extend) then it is feasible that the
77 * volatile qualifier will be needed for correct optimisation. It is expected
78 * that a compiler removing essential code because, without the volatile
79 * qualifier on the list structure members and with aggressive cross module
80 * optimisation, the compiler deemed the code unnecessary will result in
81 * complete and obvious failure of the scheduler. If this is ever experienced
82 * then the volatile qualifier can be inserted in the relevant places within the
83 * list structures by simply defining configLIST_VOLATILE to volatile in
84 * FreeRTOSConfig.h (as per the example at the bottom of this comment block).
85 * If configLIST_VOLATILE is not defined then the preprocessor directives below
86 * will simply #define configLIST_VOLATILE away completely.
87 *
88 * To use volatile list structure members then add the following line to
89 * FreeRTOSConfig.h (without the quotes):
90 * "#define configLIST_VOLATILE volatile"
91 */
92#ifndef configLIST_VOLATILE
93#define configLIST_VOLATILE
94#endif /* configSUPPORT_CROSS_MODULE_OPTIMISATION */
95
96#ifdef __cplusplus
97extern "C" {
98#endif
99
100/* Macros that can be used to place known values within the list structures,
101then check that the known values do not get corrupted during the execution of
102the application. These may catch the list data structures being overwritten in
103memory. They will not catch data errors caused by incorrect configuration or
104use of FreeRTOS.*/
105#if (configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES == 0)
106/* Define the macros to do nothing. */
107#define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE
108#define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE
109#define listFIRST_LIST_INTEGRITY_CHECK_VALUE
110#define listSECOND_LIST_INTEGRITY_CHECK_VALUE
111#define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE(pxItem)
112#define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE(pxItem)
113#define listSET_LIST_INTEGRITY_CHECK_1_VALUE(pxList)
114#define listSET_LIST_INTEGRITY_CHECK_2_VALUE(pxList)
115#define listTEST_LIST_ITEM_INTEGRITY(pxItem)
116#define listTEST_LIST_INTEGRITY(pxList)
117#else
118/* Define macros that add new members into the list structures. */
119#define listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue1;
120#define listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE TickType_t xListItemIntegrityValue2;
121#define listFIRST_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue1;
122#define listSECOND_LIST_INTEGRITY_CHECK_VALUE TickType_t xListIntegrityValue2;
123
124/* Define macros that set the new structure members to known values. */
125#define listSET_FIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE(pxItem) \
126 (pxItem)->xListItemIntegrityValue1 = pdINTEGRITY_CHECK_VALUE
127#define listSET_SECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE(pxItem) \
128 (pxItem)->xListItemIntegrityValue2 = pdINTEGRITY_CHECK_VALUE
129#define listSET_LIST_INTEGRITY_CHECK_1_VALUE(pxList) (pxList)->xListIntegrityValue1 = pdINTEGRITY_CHECK_VALUE
130#define listSET_LIST_INTEGRITY_CHECK_2_VALUE(pxList) (pxList)->xListIntegrityValue2 = pdINTEGRITY_CHECK_VALUE
131
132/* Define macros that will assert if one of the structure members does not
133contain its expected value. */
134#define listTEST_LIST_ITEM_INTEGRITY(pxItem) \
135 configASSERT(((pxItem)->xListItemIntegrityValue1 == pdINTEGRITY_CHECK_VALUE) \
136 && ((pxItem)->xListItemIntegrityValue2 == pdINTEGRITY_CHECK_VALUE))
137#define listTEST_LIST_INTEGRITY(pxList) \
138 configASSERT(((pxList)->xListIntegrityValue1 == pdINTEGRITY_CHECK_VALUE) \
139 && ((pxList)->xListIntegrityValue2 == pdINTEGRITY_CHECK_VALUE))
140#endif /* configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES */
141
142/*
143 * Definition of the only type of object that a list can contain.
144 */
146 listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is
147 set to 1. */
148 configLIST_VOLATILE TickType_t
149 xItemValue; /*< The value being listed. In most cases this is
150 used to sort the list in descending order. */
151 struct xLIST_ITEM *configLIST_VOLATILE pxNext; /*< Pointer to the next ListItem_t in the list. */
152 struct xLIST_ITEM *configLIST_VOLATILE pxPrevious; /*< Pointer to the previous ListItem_t in the list. */
153 void *
154 pvOwner; /*< Pointer to the object (normally a TCB) that contains the list item. There is therefore a two way
155 link between the object containing the list item and the list item itself. */
156 void *configLIST_VOLATILE pvContainer; /*< Pointer to the list in which this list item is placed (if any). */
157 listSECOND_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is
158 set to 1. */
159};
160typedef struct xLIST_ITEM ListItem_t; /* For some reason lint wants this as two separate definitions. */
161
163 listFIRST_LIST_ITEM_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is
164 set to 1. */
165 configLIST_VOLATILE TickType_t xItemValue;
166 struct xLIST_ITEM *configLIST_VOLATILE pxNext;
167 struct xLIST_ITEM *configLIST_VOLATILE pxPrevious;
168};
169typedef struct xMINI_LIST_ITEM MiniListItem_t;
170
171/*
172 * Definition of the type of queue used by the scheduler.
173 */
174typedef struct xLIST {
175 listFIRST_LIST_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set
176 to 1. */
177 volatile UBaseType_t uxNumberOfItems;
178 ListItem_t *configLIST_VOLATILE pxIndex; /*< Used to walk through the list. Points to the last item returned by a
179 call to listGET_OWNER_OF_NEXT_ENTRY (). */
181 xListEnd; /*< List item that contains the maximum possible item value meaning it is always at the end of the
182 list and is therefore used as a marker. */
183 listSECOND_LIST_INTEGRITY_CHECK_VALUE /*< Set to a known value if configUSE_LIST_DATA_INTEGRITY_CHECK_BYTES is set
184 to 1. */
185} List_t;
186
187/*
188 * Access macro to set the owner of a list item. The owner of a list item
189 * is the object (usually a TCB) that contains the list item.
190 *
191 * \page listSET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER
192 * \ingroup LinkedList
193 */
194#define listSET_LIST_ITEM_OWNER(pxListItem, pxOwner) ((pxListItem)->pvOwner = (void *)(pxOwner))
195
196/*
197 * Access macro to get the owner of a list item. The owner of a list item
198 * is the object (usually a TCB) that contains the list item.
199 *
200 * \page listSET_LIST_ITEM_OWNER listSET_LIST_ITEM_OWNER
201 * \ingroup LinkedList
202 */
203#define listGET_LIST_ITEM_OWNER(pxListItem) ((pxListItem)->pvOwner)
204
205/*
206 * Access macro to set the value of the list item. In most cases the value is
207 * used to sort the list in descending order.
208 *
209 * \page listSET_LIST_ITEM_VALUE listSET_LIST_ITEM_VALUE
210 * \ingroup LinkedList
211 */
212#define listSET_LIST_ITEM_VALUE(pxListItem, xValue) ((pxListItem)->xItemValue = (xValue))
213
214/*
215 * Access macro to retrieve the value of the list item. The value can
216 * represent anything - for example the priority of a task, or the time at
217 * which a task should be unblocked.
218 *
219 * \page listGET_LIST_ITEM_VALUE listGET_LIST_ITEM_VALUE
220 * \ingroup LinkedList
221 */
222#define listGET_LIST_ITEM_VALUE(pxListItem) ((pxListItem)->xItemValue)
223
224/*
225 * Access macro to retrieve the value of the list item at the head of a given
226 * list.
227 *
228 * \page listGET_LIST_ITEM_VALUE listGET_LIST_ITEM_VALUE
229 * \ingroup LinkedList
230 */
231#define listGET_ITEM_VALUE_OF_HEAD_ENTRY(pxList) (((pxList)->xListEnd).pxNext->xItemValue)
232
233/*
234 * Return the list item at the head of the list.
235 *
236 * \page listGET_HEAD_ENTRY listGET_HEAD_ENTRY
237 * \ingroup LinkedList
238 */
239#define listGET_HEAD_ENTRY(pxList) (((pxList)->xListEnd).pxNext)
240
241/*
242 * Return the list item at the head of the list.
243 *
244 * \page listGET_NEXT listGET_NEXT
245 * \ingroup LinkedList
246 */
247#define listGET_NEXT(pxListItem) ((pxListItem)->pxNext)
248
249/*
250 * Return the list item that marks the end of the list
251 *
252 * \page listGET_END_MARKER listGET_END_MARKER
253 * \ingroup LinkedList
254 */
255#define listGET_END_MARKER(pxList) ((ListItem_t const *)(&((pxList)->xListEnd)))
256
257/*
258 * Access macro to determine if a list contains any items. The macro will
259 * only have the value true if the list is empty.
260 *
261 * \page listLIST_IS_EMPTY listLIST_IS_EMPTY
262 * \ingroup LinkedList
263 */
264#define listLIST_IS_EMPTY(pxList) ((BaseType_t)((pxList)->uxNumberOfItems == (UBaseType_t)0))
265
266/*
267 * Access macro to return the number of items in the list.
268 */
269#define listCURRENT_LIST_LENGTH(pxList) ((pxList)->uxNumberOfItems)
270
271/*
272 * Access function to obtain the owner of the next entry in a list.
273 *
274 * The list member pxIndex is used to walk through a list. Calling
275 * listGET_OWNER_OF_NEXT_ENTRY increments pxIndex to the next item in the list
276 * and returns that entry's pxOwner parameter. Using multiple calls to this
277 * function it is therefore possible to move through every item contained in
278 * a list.
279 *
280 * The pxOwner parameter of a list item is a pointer to the object that owns
281 * the list item. In the scheduler this is normally a task control block.
282 * The pxOwner parameter effectively creates a two way link between the list
283 * item and its owner.
284 *
285 * @param pxTCB pxTCB is set to the address of the owner of the next list item.
286 * @param pxList The list from which the next item owner is to be returned.
287 *
288 * \page listGET_OWNER_OF_NEXT_ENTRY listGET_OWNER_OF_NEXT_ENTRY
289 * \ingroup LinkedList
290 */
291#define listGET_OWNER_OF_NEXT_ENTRY(pxTCB, pxList) \
292 { \
293 List_t *const pxConstList = (pxList); \
294 /* Increment the index to the next item and return the item, ensuring */ \
295 /* we don't return the marker used at the end of the list. */ \
296 (pxConstList)->pxIndex = (pxConstList)->pxIndex->pxNext; \
297 if ((void *)(pxConstList)->pxIndex == (void *)&((pxConstList)->xListEnd)) { \
298 (pxConstList)->pxIndex = (pxConstList)->pxIndex->pxNext; \
299 } \
300 (pxTCB) = (pxConstList)->pxIndex->pvOwner; \
301 }
302
303/*
304 * Access function to obtain the owner of the first entry in a list. Lists
305 * are normally sorted in ascending item value order.
306 *
307 * This function returns the pxOwner member of the first item in the list.
308 * The pxOwner parameter of a list item is a pointer to the object that owns
309 * the list item. In the scheduler this is normally a task control block.
310 * The pxOwner parameter effectively creates a two way link between the list
311 * item and its owner.
312 *
313 * @param pxList The list from which the owner of the head item is to be
314 * returned.
315 *
316 * \page listGET_OWNER_OF_HEAD_ENTRY listGET_OWNER_OF_HEAD_ENTRY
317 * \ingroup LinkedList
318 */
319#define listGET_OWNER_OF_HEAD_ENTRY(pxList) ((&((pxList)->xListEnd))->pxNext->pvOwner)
320
321/*
322 * Check to see if a list item is within a list. The list item maintains a
323 * "container" pointer that points to the list it is in. All this macro does
324 * is check to see if the container and the list match.
325 *
326 * @param pxList The list we want to know if the list item is within.
327 * @param pxListItem The list item we want to know if is in the list.
328 * @return pdTRUE if the list item is in the list, otherwise pdFALSE.
329 */
330#define listIS_CONTAINED_WITHIN(pxList, pxListItem) ((BaseType_t)((pxListItem)->pvContainer == (void *)(pxList)))
331
332/*
333 * Return the list a list item is contained within (referenced from).
334 *
335 * @param pxListItem The list item being queried.
336 * @return A pointer to the List_t object that references the pxListItem
337 */
338#define listLIST_ITEM_CONTAINER(pxListItem) ((pxListItem)->pvContainer)
339
340/*
341 * This provides a crude means of knowing if a list has been initialised, as
342 * pxList->xListEnd.xItemValue is set to portMAX_DELAY by the vListInitialise()
343 * function.
344 */
345#define listLIST_IS_INITIALISED(pxList) ((pxList)->xListEnd.xItemValue == portMAX_DELAY)
346
347/*
348 * Must be called before a list is used! This initialises all the members
349 * of the list structure and inserts the xListEnd item into the list as a
350 * marker to the back of the list.
351 *
352 * @param pxList Pointer to the list being initialised.
353 *
354 * \page vListInitialise vListInitialise
355 * \ingroup LinkedList
356 */
357void vListInitialise(List_t *const pxList) PRIVILEGED_FUNCTION;
358
359/*
360 * Must be called before a list item is used. This sets the list container to
361 * null so the item does not think that it is already contained in a list.
362 *
363 * @param pxItem Pointer to the list item being initialised.
364 *
365 * \page vListInitialiseItem vListInitialiseItem
366 * \ingroup LinkedList
367 */
368void vListInitialiseItem(ListItem_t *const pxItem) PRIVILEGED_FUNCTION;
369
370/*
371 * Insert a list item into a list. The item will be inserted into the list in
372 * a position determined by its item value (descending item value order).
373 *
374 * @param pxList The list into which the item is to be inserted.
375 *
376 * @param pxNewListItem The item that is to be placed in the list.
377 *
378 * \page vListInsert vListInsert
379 * \ingroup LinkedList
380 */
381void vListInsert(List_t *const pxList, ListItem_t *const pxNewListItem) PRIVILEGED_FUNCTION;
382
383/*
384 * Insert a list item into a list. The item will be inserted in a position
385 * such that it will be the last item within the list returned by multiple
386 * calls to listGET_OWNER_OF_NEXT_ENTRY.
387 *
388 * The list member pxIndex is used to walk through a list. Calling
389 * listGET_OWNER_OF_NEXT_ENTRY increments pxIndex to the next item in the list.
390 * Placing an item in a list using vListInsertEnd effectively places the item
391 * in the list position pointed to by pxIndex. This means that every other
392 * item within the list will be returned by listGET_OWNER_OF_NEXT_ENTRY before
393 * the pxIndex parameter again points to the item being inserted.
394 *
395 * @param pxList The list into which the item is to be inserted.
396 *
397 * @param pxNewListItem The list item to be inserted into the list.
398 *
399 * \page vListInsertEnd vListInsertEnd
400 * \ingroup LinkedList
401 */
402void vListInsertEnd(List_t *const pxList, ListItem_t *const pxNewListItem) PRIVILEGED_FUNCTION;
403
404/*
405 * Remove an item from a list. The list item has a pointer to the list that
406 * it is in, so only the list item need be passed into the function.
407 *
408 * @param uxListRemove The item to be removed. The item will remove itself from
409 * the list pointed to by it's pxContainer parameter.
410 *
411 * @return The number of items that remain in the list after the list item has
412 * been removed.
413 *
414 * \page uxListRemove uxListRemove
415 * \ingroup LinkedList
416 */
417UBaseType_t uxListRemove(ListItem_t *const pxItemToRemove) PRIVILEGED_FUNCTION;
418
419#ifdef __cplusplus
420}
421#endif
422
423#endif
Definition list.h:145
Definition list.h:174
Definition list.h:162