mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 18:21:35 +03:00
This change exports an api to add a new profiling record in bootloader profiler memory. Bug 3512531 Change-Id: I60fe25ab33bf607632c99a15acc24647956d4138 Signed-off-by: Anvesh Salveru <asalveru@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvidia/+/2692037 Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2864626 Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> Reviewed-by: svc-mobile-cert <svc-mobile-cert@nvidia.com> Reviewed-by: svcacv <svcacv@nvidia.com> Reviewed-by: Bharat Nihalani <bnihalani@nvidia.com> Tested-by: Bharat Nihalani <bnihalani@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
16 lines
498 B
C
16 lines
498 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
// Copyright (c) 2022-2023, NVIDIA CORPORATION. All rights reserved.
|
|
|
|
#ifndef __TEGRA_BOOTLOADER_DEBUG_H
|
|
#define __TEGRA_BOOTLOADER_DEBUG_H
|
|
extern phys_addr_t tegra_bl_debug_data_start;
|
|
extern phys_addr_t tegra_bl_debug_data_size;
|
|
extern phys_addr_t tegra_bl_prof_start;
|
|
extern phys_addr_t tegra_bl_prof_size;
|
|
extern phys_addr_t tegra_bl_bcp_start;
|
|
extern phys_addr_t tegra_bl_bcp_size;
|
|
|
|
size_t tegra_bl_add_profiler_entry(const char *buf, size_t len);
|
|
|
|
#endif
|