|
| 1 | +/* |
| 2 | + * Copyright (c) 2021 Carlo Caione, <ccaione@baylibre.com> |
| 3 | + * |
| 4 | + * SPDX-License-Identifier: Apache-2.0 |
| 5 | + */ |
| 6 | + |
| 7 | +#ifndef ZEPHYR_INCLUDE_MULTI_HEAP_MANAGER_SMH_H_ |
| 8 | +#define ZEPHYR_INCLUDE_MULTI_HEAP_MANAGER_SMH_H_ |
| 9 | + |
| 10 | + |
| 11 | +#ifdef __cplusplus |
| 12 | +extern "C" { |
| 13 | +#endif |
| 14 | + |
| 15 | +/** |
| 16 | + * @brief Shared multi-heap interface |
| 17 | + * @defgroup shared_multi_heap Shared multi-heap interface |
| 18 | + * @ingroup multi_heap |
| 19 | + * @{ |
| 20 | + * |
| 21 | + * The shared multi-heap manager uses the multi-heap allocator to manage a set |
| 22 | + * of reserved memory regions with different capabilities / attributes |
| 23 | + * (cacheable, non-cacheable, etc...) defined in the DT. |
| 24 | + * |
| 25 | + * The user can request allocation from the shared pool specifying the |
| 26 | + * capability / attribute of interest for the memory (cacheable / non-cacheable |
| 27 | + * memory, etc...) |
| 28 | + * |
| 29 | + */ |
| 30 | + |
| 31 | +/** |
| 32 | + * @brief Memory region attributes / capabilities |
| 33 | + * |
| 34 | + * ** This list needs to be kept in sync with shared-multi-heap.yaml ** |
| 35 | + */ |
| 36 | +enum smh_reg_attr { |
| 37 | + /** cacheable */ |
| 38 | + SMH_REG_ATTR_CACHEABLE, |
| 39 | + |
| 40 | + /** non-cacheable */ |
| 41 | + SMH_REG_ATTR_NON_CACHEABLE, |
| 42 | + |
| 43 | + /** must be the last item */ |
| 44 | + SMH_REG_ATTR_NUM, |
| 45 | +}; |
| 46 | + |
| 47 | +/** |
| 48 | + * @brief SMH region struct |
| 49 | + * |
| 50 | + * This struct is carrying information about the memory region to be added in |
| 51 | + * the multi-heap pool. This is filled by the manager with the information |
| 52 | + * coming from the reserved memory children nodes in the DT. |
| 53 | + */ |
| 54 | +struct shared_multi_heap_region { |
| 55 | + enum smh_reg_attr attr; |
| 56 | + uintptr_t addr; |
| 57 | + size_t size; |
| 58 | +}; |
| 59 | + |
| 60 | +/** |
| 61 | + * @brief Region init function |
| 62 | + * |
| 63 | + * This is a user-provided function whose responsibility is to setup or |
| 64 | + * initialize the memory region passed in input before this is added to the |
| 65 | + * heap pool by the shared multi-heap manager. This function can be used by |
| 66 | + * architectures using MMU / MPU that must correctly map the region before this |
| 67 | + * is considered valid and accessible. |
| 68 | + * |
| 69 | + * @param reg Pointer to the SMH region structure. |
| 70 | + * @param v_addr Virtual address obtained after mapping. For non-MMU |
| 71 | + * architectures this value is the physical address of the |
| 72 | + * region. |
| 73 | + * @param size Size of the region after mapping. |
| 74 | + * |
| 75 | + * @return True if the region is ready to be added to the heap pool. |
| 76 | + * False if the region must be skipped. |
| 77 | + */ |
| 78 | +typedef bool (*smh_init_reg_fn_t)(struct shared_multi_heap_region *reg, |
| 79 | + uint8_t **v_addr, size_t *size); |
| 80 | + |
| 81 | + |
| 82 | +/** |
| 83 | + * @brief Init the pool |
| 84 | + * |
| 85 | + * Initialize the shared multi-heap pool and hook-up the region init function. |
| 86 | + * |
| 87 | + * @param smh_init_reg_fn The function pointer to the region init function. Can |
| 88 | + * be NULL for non-MPU / non-MMU architectures. |
| 89 | + */ |
| 90 | +int shared_multi_heap_pool_init(smh_init_reg_fn_t smh_init_reg_fn); |
| 91 | + |
| 92 | +/** |
| 93 | + * @brief Allocate memory from the memory shared multi-heap pool |
| 94 | + * |
| 95 | + * Allocate a block of memory of the specified size in bytes and with a |
| 96 | + * specified capability / attribute. |
| 97 | + * |
| 98 | + * @param attr Capability / attribute requested for the memory block. |
| 99 | + * @param bytes Requested size of the allocation in bytes. |
| 100 | + * |
| 101 | + * @return A valid pointer to heap memory or NULL if no memory is available. |
| 102 | + */ |
| 103 | +void *shared_multi_heap_alloc(enum smh_reg_attr attr, size_t bytes); |
| 104 | + |
| 105 | +/** |
| 106 | + * @brief Free memory from the shared multi-heap pool |
| 107 | + * |
| 108 | + * Free the passed block of memory. |
| 109 | + * |
| 110 | + * @param block Block to free. |
| 111 | + */ |
| 112 | +void shared_multi_heap_free(void *block); |
| 113 | + |
| 114 | +/** |
| 115 | + * @} |
| 116 | + */ |
| 117 | + |
| 118 | +#ifdef __cplusplus |
| 119 | +} |
| 120 | +#endif |
| 121 | + |
| 122 | +#endif /* ZEPHYR_INCLUDE_MULTI_HEAP_MANAGER_SMH_H_ */ |
0 commit comments