Home
last modified time | relevance | path

Searched refs:running_total_tiler_heap_memory (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/csf/
H A Dmali_kbase_csf_tiler_heap.c817 kctx->running_total_tiler_heap_memory += (u64)heap->chunk_size * heap->chunk_count; in kbase_csf_tiler_heap_init()
818 if (kctx->running_total_tiler_heap_memory > kctx->peak_total_tiler_heap_memory) in kbase_csf_tiler_heap_init()
819 kctx->peak_total_tiler_heap_memory = kctx->running_total_tiler_heap_memory; in kbase_csf_tiler_heap_init()
868 if (likely(kctx->running_total_tiler_heap_memory >= heap_size)) in kbase_csf_tiler_heap_term()
869 kctx->running_total_tiler_heap_memory -= heap_size; in kbase_csf_tiler_heap_term()
1046 kctx->running_total_tiler_heap_memory += heap->chunk_size; in kbase_csf_tiler_heap_alloc_new_chunk()
1048 if (kctx->running_total_tiler_heap_memory > kctx->peak_total_tiler_heap_memory) in kbase_csf_tiler_heap_alloc_new_chunk()
1049 kctx->peak_total_tiler_heap_memory = kctx->running_total_tiler_heap_memory; in kbase_csf_tiler_heap_alloc_new_chunk()
1304 kctx->running_total_tiler_heap_memory -= freed_pages << PAGE_SHIFT; in delete_unused_chunk_pages()
H A Dmali_kbase_csf_tiler_heap_debugfs.c86 (unsigned long long)kctx->running_total_tiler_heap_memory); in kbasep_csf_tiler_heap_total_debugfs_show()
/OK3568_Linux_fs/kernel/drivers/gpu/arm/bifrost/
H A Dmali_kbase_defs.h1942 u64 running_total_tiler_heap_memory; member