1config DEBUG_HEAP 2 bool "Heap debug" 3 default n 4 help 5 Select for enable heap alloc debugging 6 7config DEBUG_BLOCK_FREE 8 bool "Blocks freeing debug" 9 default n 10 help 11 It enables checking if free was called multiple times on 12 already freed block of memory. Enabling this feature increases 13 number of memory writes and reads, due to checks for memory patterns 14 that may be performed on allocation and deallocation. 15 16config DEBUG_FORCE_COHERENT_BUFFER 17 bool "Force the allocator to allocate coherent buffer only" 18 default n 19 help 20 Select if we want to force the allocator to return coherent/uncached 21 buffer only. 22 This should be selected for debug purpose only, as accessing buffer 23 without caching it will reduce the read/write performance. 24