mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 02:22:34 +03:00
gpu: nvgpu: set GR tick frequency to max
GR tick frequency needs to be set to MAX value for profiler use cases for gp10b/gv11b/tu104 chips. Add new HAL g->ops.ptimer.config_gr_tick_freq() that configures GR tick frequency to MAX value and call this HAL in GPU poweron path. This support is not needed in safety build, so compile everything only if CONFIG_NVGPU_DEBUGGER is enabled Bug 200289214 Change-Id: Id8378540cc67ca0041b56990f8676e3a105403a5 Signed-off-by: Deepak Nibade <dnibade@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2195163 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
committed by
Alex Waterman
parent
69f990623b
commit
1d5698cf6a
@@ -382,6 +382,12 @@ int nvgpu_finalize_poweron(struct gk20a *g)
|
||||
}
|
||||
}
|
||||
|
||||
#ifdef CONFIG_NVGPU_DEBUGGER
|
||||
if (g->ops.ptimer.config_gr_tick_freq != NULL) {
|
||||
g->ops.ptimer.config_gr_tick_freq(g);
|
||||
}
|
||||
#endif
|
||||
|
||||
if (g->ops.fb.mem_unlock != NULL && !g->is_fusa_sku) {
|
||||
err = g->ops.fb.mem_unlock(g);
|
||||
if (err != 0) {
|
||||
|
||||
Reference in New Issue
Block a user