AM64x MCU+ SDK  11.01.00
HeapP.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2018-2021 Texas Instruments Incorporated
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the
14  * distribution.
15  *
16  * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
33 #ifndef HEAPP_H
34 #define HEAPP_H
35 
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39 
40 #include <stdint.h>
41 #include <sys/types.h>
42 #include <kernel/dpl/SystemP.h>
43 
54 #define HeapP_BYTE_ALIGNMENT (64u)
55 
59 typedef struct HeapP_MemStats_
60 {
69 
73 typedef struct HEAP_BLOCK_LINK
74 {
75  struct HEAP_BLOCK_LINK * pxNextFreeBlock; /* The next free block in the list. */
76  size_t xBlockSize; /* The size of the free block. */
78 
82 typedef struct StaticHeap_ {
83 
84  /* Create a couple of list links to mark the start and end of the list. */
87 
88  /* Keeps track of the number of calls to allocate and free memory as well as the
89  * number of free bytes remaining, but says nothing about fragmentation. */
94 
95  /* Gets set to the top bit of an size_t type. When this bit in the xBlockSize
96  * member of an HeapBlockLink_t structure is set then the block belongs to the
97  * application. When the bit is free the block is still part of the free heap
98  * space. */
100 
101  /* base address and size of heap */
102  void *pvHeap;
104 
105 } StaticHeap_t;
106 
111 #if defined (OS_FREERTOS) || defined (OS_FREERTOS_SMP) || defined (OS_FREERTOS_MPU)
112 
113 #include <FreeRTOS.h>
114 #include <semphr.h>
115 
116 typedef struct HeapP_Object_ {
117 
118  StaticHeap_t heapHndl;
119  StaticSemaphore_t heapMutexObj;
120  SemaphoreHandle_t heapMutexHndl;
121 
122 } HeapP_Object;
123 
124 #else
125 
126 typedef struct HeapP_Object_ {
127 
129 
130 } HeapP_Object;
131 
132 #endif
133 
134 
147 int32_t HeapP_construct( HeapP_Object *heapObj, void *heapAddr, size_t heapSize );
148 
154 void HeapP_destruct( HeapP_Object *heapObj);
155 
165 void* HeapP_alloc( HeapP_Object *heapObj, size_t allocSize );
166 
175 int32_t HeapP_free( HeapP_Object *heapObj, void * ptr );
176 
185 
194 
203 int32_t HeapP_getHeapStats( HeapP_Object *heapObj, HeapP_MemStats * pHeapStats );
204 
207 #ifdef __cplusplus
208 }
209 #endif
210 
211 #endif /* HEAPP_H */
HeapP_alloc
void * HeapP_alloc(HeapP_Object *heapObj, size_t allocSize)
Alloc memory from user defined heap.
HeapP_destruct
void HeapP_destruct(HeapP_Object *heapObj)
Delete the user defined heap.
HeapP_Object::heapHndl
StaticHeap_t heapHndl
Definition: HeapP.h:128
SystemP.h
HeapP_getHeapStats
int32_t HeapP_getHeapStats(HeapP_Object *heapObj, HeapP_MemStats *pHeapStats)
Get detailed heap statistics.
StaticHeap_t::pvHeap
void * pvHeap
Definition: HeapP.h:102
HeapP_getMinimumEverFreeHeapSize
size_t HeapP_getMinimumEverFreeHeapSize(HeapP_Object *heapObj)
Get lowest ever free heap size, in bytes.
StaticHeap_t::xTotalHeapSize
size_t xTotalHeapSize
Definition: HeapP.h:103
HeapP_MemStats::minimumEverFreeBytesRemaining
size_t minimumEverFreeBytesRemaining
Definition: HeapP.h:65
HeapP_MemStats::numberOfFreeBlocks
size_t numberOfFreeBlocks
Definition: HeapP.h:64
HeapP_MemStats::sizeOfLargestFreeBlockInBytes
size_t sizeOfLargestFreeBlockInBytes
Definition: HeapP.h:62
StaticHeap_t
Static heap instance structure.
Definition: HeapP.h:82
HeapP_getFreeHeapSize
size_t HeapP_getFreeHeapSize(HeapP_Object *heapObj)
Get free heap size, in bytes.
StaticHeap_t::xNumberOfSuccessfulAllocations
size_t xNumberOfSuccessfulAllocations
Definition: HeapP.h:92
HeapP_MemStats::sizeOfSmallestFreeBlockInBytes
size_t sizeOfSmallestFreeBlockInBytes
Definition: HeapP.h:63
StaticHeap_t::xFreeBytesRemaining
size_t xFreeBytesRemaining
Definition: HeapP.h:90
StaticHeap_t::xStart
HeapBlockLink_t xStart
Definition: HeapP.h:85
HeapP_MemStats::numberOfSuccessfulFrees
size_t numberOfSuccessfulFrees
Definition: HeapP.h:67
HeapP_MemStats::availableHeapSpaceInBytes
size_t availableHeapSpaceInBytes
Definition: HeapP.h:61
HeapP_free
int32_t HeapP_free(HeapP_Object *heapObj, void *ptr)
Free memory from user defined heap.
StaticHeap_t::xNumberOfSuccessfulFrees
size_t xNumberOfSuccessfulFrees
Definition: HeapP.h:93
StaticHeap_t::xBlockAllocatedBit
size_t xBlockAllocatedBit
Definition: HeapP.h:99
HeapP_MemStats
Structure used to pass information about the heap out of HeapP_getHeapStats().
Definition: HeapP.h:60
StaticHeap_t::pxEnd
HeapBlockLink_t * pxEnd
Definition: HeapP.h:86
StaticHeap_t::xMinimumEverFreeBytesRemaining
size_t xMinimumEverFreeBytesRemaining
Definition: HeapP.h:91
HeapP_MemStats::numberOfSuccessfulAllocations
size_t numberOfSuccessfulAllocations
Definition: HeapP.h:66
HeapP_construct
int32_t HeapP_construct(HeapP_Object *heapObj, void *heapAddr, size_t heapSize)
Create a user defined heap.
HeapP_Object
Opaque heap object used with the heap APIs.
Definition: HeapP.h:126