mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 10:34:43 +03:00
1) Currently only one profiler object should be allowed. Enable/Disable/Reset CAU is using whole GR space for both MIG and legacy mode. Need to convert broadcast address to GR specific unicast programming when NvGpu supports more than one profiler object at a time. 2) Used nvgpu_gr_exec_with_err_for_instance() for update_smpc_global_mode(). JIRA NVGPU-5656 Change-Id: If9c2af1459458c031c7cc269e1a89f527b972d7c Signed-off-by: Lakshmanan M <lm@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2554590 Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> Reviewed-by: svc-mobile-cert <svc-mobile-cert@nvidia.com> Reviewed-by: svc_kernel_abi <svc_kernel_abi@nvidia.com> Reviewed-by: Dinesh T <dt@nvidia.com> Reviewed-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-by: Sachin Nikam <snikam@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com> GVS: Gerrit_Virtual_Submit
61 lines
2.0 KiB
C
61 lines
2.0 KiB
C
/*
|
|
* Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
#ifndef NVGPU_PROFILER_VGPU_H
|
|
#define NVGPU_PROFILER_VGPU_H
|
|
|
|
int vgpu_profiler_bind_hwpm(struct gk20a *g,
|
|
u32 gr_instance_id,
|
|
bool is_ctxsw,
|
|
struct nvgpu_tsg *tsg);
|
|
|
|
int vgpu_profiler_unbind_hwpm(struct gk20a *g,
|
|
u32 gr_instance_id,
|
|
bool is_ctxsw,
|
|
struct nvgpu_tsg *tsg);
|
|
|
|
int vgpu_profiler_bind_hwpm_streamout(struct gk20a *g,
|
|
u32 gr_instance_id,
|
|
bool is_ctxsw,
|
|
struct nvgpu_tsg *tsg,
|
|
u64 pma_buffer_va,
|
|
u32 pma_buffer_size,
|
|
u64 pma_bytes_available_buffer_va);
|
|
|
|
int vgpu_profiler_unbind_hwpm_streamout(struct gk20a *g,
|
|
u32 gr_instance_id,
|
|
bool is_ctxsw,
|
|
struct nvgpu_tsg *tsg,
|
|
void *pma_bytes_available_buffer_cpuva,
|
|
bool smpc_reserved);
|
|
|
|
int vgpu_profiler_bind_smpc(struct gk20a *g,
|
|
u32 gr_instance_id,
|
|
bool is_ctxsw,
|
|
struct nvgpu_tsg *tsg);
|
|
|
|
int vgpu_profiler_unbind_smpc(struct gk20a *g,
|
|
u32 gr_instance_id,
|
|
bool is_ctxsw,
|
|
struct nvgpu_tsg *tsg);
|
|
|
|
#endif
|