| .. | .. |
|---|
| 1 | 1 | // SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note |
|---|
| 2 | 2 | /* |
|---|
| 3 | 3 | * |
|---|
| 4 | | - * (C) COPYRIGHT 2019-2021 ARM Limited. All rights reserved. |
|---|
| 4 | + * (C) COPYRIGHT 2019-2022 ARM Limited. All rights reserved. |
|---|
| 5 | 5 | * |
|---|
| 6 | 6 | * This program is free software and is provided to you under the terms of the |
|---|
| 7 | 7 | * GNU General Public License version 2 as published by the Free Software |
|---|
| .. | .. |
|---|
| 26 | 26 | #include <context/mali_kbase_context_internal.h> |
|---|
| 27 | 27 | #include <gpu/mali_kbase_gpu_regmap.h> |
|---|
| 28 | 28 | #include <mali_kbase.h> |
|---|
| 29 | | -#include <mali_kbase_dma_fence.h> |
|---|
| 30 | 29 | #include <mali_kbase_mem_linux.h> |
|---|
| 31 | 30 | #include <mali_kbase_mem_pool_group.h> |
|---|
| 32 | 31 | #include <mmu/mali_kbase_mmu.h> |
|---|
| .. | .. |
|---|
| 35 | 34 | #if IS_ENABLED(CONFIG_DEBUG_FS) |
|---|
| 36 | 35 | #include <csf/mali_kbase_csf_csg_debugfs.h> |
|---|
| 37 | 36 | #include <csf/mali_kbase_csf_kcpu_debugfs.h> |
|---|
| 37 | +#include <csf/mali_kbase_csf_sync_debugfs.h> |
|---|
| 38 | 38 | #include <csf/mali_kbase_csf_tiler_heap_debugfs.h> |
|---|
| 39 | 39 | #include <csf/mali_kbase_csf_cpu_queue_debugfs.h> |
|---|
| 40 | 40 | #include <mali_kbase_debug_mem_view.h> |
|---|
| 41 | +#include <mali_kbase_debug_mem_zones.h> |
|---|
| 42 | +#include <mali_kbase_debug_mem_allocs.h> |
|---|
| 41 | 43 | #include <mali_kbase_mem_pool_debugfs.h> |
|---|
| 42 | 44 | |
|---|
| 43 | 45 | void kbase_context_debugfs_init(struct kbase_context *const kctx) |
|---|
| 44 | 46 | { |
|---|
| 45 | 47 | kbase_debug_mem_view_init(kctx); |
|---|
| 48 | + kbase_debug_mem_zones_init(kctx); |
|---|
| 49 | + kbase_debug_mem_allocs_init(kctx); |
|---|
| 46 | 50 | kbase_mem_pool_debugfs_init(kctx->kctx_dentry, kctx); |
|---|
| 47 | 51 | kbase_jit_debugfs_init(kctx); |
|---|
| 48 | 52 | kbase_csf_queue_group_debugfs_init(kctx); |
|---|
| 49 | 53 | kbase_csf_kcpu_debugfs_init(kctx); |
|---|
| 54 | + kbase_csf_sync_debugfs_init(kctx); |
|---|
| 50 | 55 | kbase_csf_tiler_heap_debugfs_init(kctx); |
|---|
| 56 | + kbase_csf_tiler_heap_total_debugfs_init(kctx); |
|---|
| 51 | 57 | kbase_csf_cpu_queue_debugfs_init(kctx); |
|---|
| 52 | 58 | } |
|---|
| 53 | 59 | KBASE_EXPORT_SYMBOL(kbase_context_debugfs_init); |
|---|