/* * Copyright (C) Siddharth Bharat Purohit 2017 * This file is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This file is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ /* wrappers for allocation functions Relies on linker wrap options Note that not all functions that have been wrapped are implemented here. The others are wrapped to ensure the function is not used without an implementation. If we need them then we can implement as needed. */ #include #include #include #include #include #include #include "stm32_util.h" #ifdef HAL_CHIBIOS_ENABLE_MALLOC_GUARD #pragma GCC optimize("Og") #endif #define MEM_REGION_FLAG_DMA_OK 1 #define MEM_REGION_FLAG_FAST 2 #define MEM_REGION_FLAG_AXI_BUS 4 #ifdef HAL_CHIBIOS_ENABLE_MALLOC_GUARD static mutex_t mem_mutex; #endif static const struct memory_region memory_regions[] = { HAL_MEMORY_REGIONS }; // the first memory region is already setup as the ChibiOS // default heap, so we will index from 1 in the allocators #define NUM_MEMORY_REGIONS (sizeof(memory_regions)/sizeof(memory_regions[0])) #if CH_CFG_USE_HEAP == TRUE static memory_heap_t heaps[NUM_MEMORY_REGIONS]; #define MIN_ALIGNMENT 8U #if defined(STM32H7) #define DMA_ALIGNMENT 32U #else #define DMA_ALIGNMENT 8U #endif // size of memory reserved for dma-capable alloc #ifndef DMA_RESERVE_SIZE #define DMA_RESERVE_SIZE 6144 #endif #if DMA_RESERVE_SIZE != 0 static memory_heap_t dma_reserve_heap; #endif /* initialise memory handling */ void malloc_init(void) { #ifdef HAL_CHIBIOS_ENABLE_MALLOC_GUARD chMtxObjectInit(&mem_mutex); #endif #if defined(STM32H7) // zero first 1k of ITCM. We leave 1k free to avoid addresses // close to nullptr being valid. Zeroing it here means we can // check for changes which indicate a write to an uninitialised // object. We start at address 0x1 as writing the first byte // causes a fault #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Warray-bounds" #if defined(__GNUC__) && __GNUC__ >= 10 #pragma GCC diagnostic ignored "-Wstringop-overflow" #endif memset((void*)0x00000001, 0, 1023); #pragma GCC diagnostic pop #endif uint8_t i; for (i=1; i 0) { void *dma_reserve = malloc_dma(reserve_size); if (dma_reserve != NULL) { chHeapObjectInit(&dma_reserve_heap, dma_reserve, reserve_size); break; } reserve_size = (reserve_size * 7) / 8; } #endif } /* allocate memory, using flags from MEM_REGION_FLAG_* to determine memory type */ static void *malloc_flags(size_t size, uint32_t flags) { if (size == 0) { return NULL; } const uint8_t dma_flags = (MEM_REGION_FLAG_DMA_OK | MEM_REGION_FLAG_AXI_BUS); const uint8_t alignment = (flags&dma_flags?DMA_ALIGNMENT:MIN_ALIGNMENT); void *p = NULL; uint8_t i; if (flags & dma_flags) { // allocate multiple of DMA alignment size = (size + (DMA_ALIGNMENT-1)) & ~(DMA_ALIGNMENT-1); } // if no flags are set or this is a DMA request and default heap // is DMA safe then start with default heap if (flags == 0 || (flags == MEM_REGION_FLAG_DMA_OK && (memory_regions[0].flags & MEM_REGION_FLAG_DMA_OK))) { p = chHeapAllocAligned(NULL, size, alignment); if (p) { goto found; } } // try with matching flags for (i=1; isize = size; mg->inv_size = ~size; for (uint32_t i=0; inext = mg_head; mg_head->prev = mg; } mg_head = mg; chMtxUnlock(&mem_mutex); return (void *)(b1+MALLOC_GUARD_SIZE); } extern void AP_memory_guard_error(uint32_t size); /* check for errors in malloc memory using guard bytes */ void malloc_check_mg(const struct memguard *mg) { if (mg->size != ~mg->inv_size) { AP_memory_guard_error(0); return; } const uint32_t size = mg->size; const uint8_t *b1 = (uint8_t *)&mg[1]; const uint8_t *b2 = b1 + MALLOC_GUARD_SIZE + size; for (uint32_t i=0; inext) { malloc_check_mg(mg); } } /* check for errors in malloc memory using guard bytes */ void malloc_check(const void *p) { if (p == NULL) { // allow for malloc_check(nullptr) to check all allocated memory chMtxLock(&mem_mutex); malloc_check_all(); chMtxUnlock(&mem_mutex); return; } if (((uintptr_t)p) & 3) { // misaligned memory AP_memory_guard_error(0); return; } chMtxLock(&mem_mutex); struct memguard *mg = (struct memguard *)(((uint8_t *)p) - (MALLOC_GUARD_SIZE+MALLOC_HEAD_SIZE)); malloc_check_mg(mg); malloc_check_all(); chMtxUnlock(&mem_mutex); } static void free_guard(void *p) { chMtxLock(&mem_mutex); malloc_check(p); struct memguard *mg = (struct memguard *)(((uint8_t *)p) - (MALLOC_GUARD_SIZE+MALLOC_HEAD_SIZE)); if (mg->next) { mg->next->prev = mg->prev; } if (mg->prev) { mg->prev->next = mg->next; } if (mg == mg_head) { mg_head = mg->next; } chHeapFree((void*)(((uint8_t *)p) - (MALLOC_GUARD_SIZE+MALLOC_HEAD_SIZE))); chMtxUnlock(&mem_mutex); } #define malloc_flags(size, flags) malloc_flags_guard(size, flags) #else // HAL_CHIBIOS_ENABLE_MALLOC_GUARD void malloc_check(const void *p) { (void)p; } #endif // HAL_CHIBIOS_ENABLE_MALLOC_GUARD /* allocate normal memory */ void *malloc(size_t size) { return malloc_flags(size, 0); } /* allocate DMA-safe memory */ void *malloc_dma(size_t size) { return malloc_flags(size, MEM_REGION_FLAG_DMA_OK); } /* allocate from memory connected to AXI Bus if available else just allocate dma safe memory */ void *malloc_axi_sram(size_t size) { #if defined(STM32H7) return malloc_flags(size, MEM_REGION_FLAG_AXI_BUS); #else return malloc_flags(size, MEM_REGION_FLAG_DMA_OK); #endif } /* allocate fast memory */ void *malloc_fastmem(size_t size) { return malloc_flags(size, MEM_REGION_FLAG_FAST); } void *calloc(size_t nmemb, size_t size) { return malloc(nmemb * size); } void free(void *ptr) { if(ptr != NULL) { #ifdef HAL_CHIBIOS_ENABLE_MALLOC_GUARD free_guard(ptr); #else chHeapFree(ptr); #endif } } /* return total available memory in bytes */ size_t mem_available(void) { size_t totalp = 0; uint8_t i; // get memory available on main heap chHeapStatus(NULL, &totalp, NULL); // we also need to add in memory that is not yet allocated to the heap totalp += chCoreGetStatusX(); // now our own heaps for (i=1; i= memory_regions[i].address && addr < (memory_regions[i].address + memory_regions[i].size)) { return true; } } return false; } /* return the start of memory region that contains the address */ void* get_addr_mem_region_start_addr(void *addr) { uint8_t i; for (i=0; i= memory_regions[i].address && addr < (memory_regions[i].address + memory_regions[i].size)) { return memory_regions[i].address; } } return 0; } /* return the end of memory region that contains the address */ void* get_addr_mem_region_end_addr(void *addr) { uint8_t i; for (i=0; i= memory_regions[i].address && addr < (memory_regions[i].address + memory_regions[i].size)) { return memory_regions[i].address + memory_regions[i].size; } } return 0; }