mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-22 09:12:24 +03:00
gpu: nvgpu: add SLCG support for GSP and CTRL unit
Add SLCG register programming for GSP and CTRL units Bug 3452217 Change-Id: I69e414a82b5c12f26ff3b6626c328b5c0aa9e04c Signed-off-by: Divya <dsinghatwari@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nvgpu/+/2678782 Tested-by: mobile promotions <svcmobile_promotions@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
@@ -660,6 +660,13 @@ static int nvgpu_init_cg_ltc_load_gating_prod(struct gk20a *g)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int nvgpu_init_cg_ctrl_load_gating_prod(struct gk20a *g)
|
||||
{
|
||||
nvgpu_cg_slcg_ctrl_load_enable(g, true);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int nvgpu_ipa_pa_rwsem_init(struct gk20a *g)
|
||||
{
|
||||
nvgpu_rwsem_init(&(g->ipa_pa_cache.ipa_pa_rw_lock));
|
||||
@@ -910,6 +917,9 @@ int nvgpu_finalize_poweron(struct gk20a *g)
|
||||
*/
|
||||
NVGPU_INIT_TABLE_ENTRY(&nvgpu_init_cg_ltc_load_gating_prod,
|
||||
NO_FLAG),
|
||||
/* Load SLCG for CTRL unit */
|
||||
NVGPU_INIT_TABLE_ENTRY(&nvgpu_init_cg_ctrl_load_gating_prod,
|
||||
NO_FLAG),
|
||||
#ifdef CONFIG_NVGPU_DGPU
|
||||
NVGPU_INIT_TABLE_ENTRY(g->ops.sec2.init_sec2_support,
|
||||
NVGPU_SUPPORT_SEC2_RTOS),
|
||||
|
||||
@@ -343,6 +343,38 @@ done:
|
||||
}
|
||||
#endif
|
||||
|
||||
void nvgpu_cg_slcg_gsp_load_enable(struct gk20a *g, bool enable)
|
||||
{
|
||||
nvgpu_log_fn(g, " ");
|
||||
|
||||
nvgpu_mutex_acquire(&g->cg_pg_lock);
|
||||
if (!g->slcg_enabled) {
|
||||
goto done;
|
||||
}
|
||||
|
||||
if (g->ops.cg.slcg_gsp_load_gating_prod != NULL) {
|
||||
g->ops.cg.slcg_gsp_load_gating_prod(g, enable);
|
||||
}
|
||||
done:
|
||||
nvgpu_mutex_release(&g->cg_pg_lock);
|
||||
}
|
||||
|
||||
void nvgpu_cg_slcg_ctrl_load_enable(struct gk20a *g, bool enable)
|
||||
{
|
||||
nvgpu_log_fn(g, " ");
|
||||
|
||||
nvgpu_mutex_acquire(&g->cg_pg_lock);
|
||||
if (!g->slcg_enabled) {
|
||||
goto done;
|
||||
}
|
||||
|
||||
if (g->ops.cg.slcg_ctrl_load_gating_prod != NULL) {
|
||||
g->ops.cg.slcg_ctrl_load_gating_prod(g, enable);
|
||||
}
|
||||
done:
|
||||
nvgpu_mutex_release(&g->cg_pg_lock);
|
||||
}
|
||||
|
||||
static void cg_init_gr_slcg_load_gating_prod(struct gk20a *g)
|
||||
{
|
||||
if (g->ops.cg.slcg_bus_load_gating_prod != NULL) {
|
||||
@@ -656,6 +688,12 @@ void nvgpu_cg_slcg_set_slcg_enabled(struct gk20a *g, bool enable)
|
||||
if (g->ops.cg.slcg_hshub_load_gating_prod != NULL) {
|
||||
g->ops.cg.slcg_hshub_load_gating_prod(g, enable);
|
||||
}
|
||||
if (g->ops.cg.slcg_ctrl_load_gating_prod != NULL) {
|
||||
g->ops.cg.slcg_ctrl_load_gating_prod(g, enable);
|
||||
}
|
||||
if (g->ops.cg.slcg_gsp_load_gating_prod != NULL) {
|
||||
g->ops.cg.slcg_gsp_load_gating_prod(g, enable);
|
||||
}
|
||||
|
||||
done:
|
||||
nvgpu_mutex_release(&g->cg_pg_lock);
|
||||
|
||||
@@ -27,6 +27,7 @@
|
||||
#include <nvgpu/gk20a.h>
|
||||
#include <nvgpu/bug.h>
|
||||
#include <nvgpu/nvgpu_err.h>
|
||||
#include <nvgpu/power_features/cg.h>
|
||||
#ifdef CONFIG_NVGPU_GSP_SCHEDULER
|
||||
#include <nvgpu/gsp.h>
|
||||
#include <nvgpu/string.h>
|
||||
@@ -57,6 +58,9 @@ int ga10b_gsp_engine_reset(struct gk20a *g)
|
||||
gk20a_writel(g, pgsp_falcon_engine_r(),
|
||||
pgsp_falcon_engine_reset_false_f());
|
||||
|
||||
/* Load SLCG prod values for GSP */
|
||||
nvgpu_cg_slcg_gsp_load_enable(g, true);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
@@ -983,6 +983,8 @@ static const struct gops_cg ga10b_ops_cg = {
|
||||
.slcg_xbar_load_gating_prod = ga10b_slcg_xbar_load_gating_prod,
|
||||
.slcg_hshub_load_gating_prod = ga10b_slcg_hshub_load_gating_prod,
|
||||
.slcg_timer_load_gating_prod = ga10b_slcg_timer_load_gating_prod,
|
||||
.slcg_ctrl_load_gating_prod = ga10b_slcg_ctrl_load_gating_prod,
|
||||
.slcg_gsp_load_gating_prod = ga10b_slcg_gsp_load_gating_prod,
|
||||
.blcg_bus_load_gating_prod = ga10b_blcg_bus_load_gating_prod,
|
||||
.blcg_ce_load_gating_prod = ga10b_blcg_ce_load_gating_prod,
|
||||
.blcg_fb_load_gating_prod = ga10b_blcg_fb_load_gating_prod,
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2019-2021, NVIDIA CORPORATION. All rights reserved.
|
||||
* Copyright (c) 2019-2022, 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"),
|
||||
@@ -74,6 +74,10 @@ struct gops_cg {
|
||||
|
||||
void (*slcg_timer_load_gating_prod)(struct gk20a *g, bool prod);
|
||||
|
||||
void (*slcg_ctrl_load_gating_prod)(struct gk20a *g, bool prod);
|
||||
|
||||
void (*slcg_gsp_load_gating_prod)(struct gk20a *g, bool prod);
|
||||
|
||||
void (*elcg_ce_load_gating_prod)(struct gk20a *g, bool prod);
|
||||
/** @endcond DOXYGEN_SHOULD_SKIP_THIS */
|
||||
};
|
||||
|
||||
@@ -515,6 +515,43 @@ void nvgpu_cg_slcg_ce2_load_enable(struct gk20a *g);
|
||||
*/
|
||||
void nvgpu_cg_elcg_ce_load_enable(struct gk20a *g);
|
||||
|
||||
/**
|
||||
* @brief During nvgpu power-on, as part of GSP initialization,
|
||||
* this function is called to load register configuration
|
||||
* for SLCG for GSP.
|
||||
*
|
||||
* @param g [in] The GPU driver struct.
|
||||
*
|
||||
* Checks the platform software capability slcg_enabled and programs registers
|
||||
* for configuring production gating values for SLCG for GSP. This is called
|
||||
* in #nvgpu_gsp_sched_bootstrap_ns.
|
||||
*
|
||||
* Steps:
|
||||
* - Acquire the mutex #cg_pg_lock.
|
||||
* - Check if #slcg_enabled is set, else skip SLCG programming.
|
||||
* - Load SLCG prod settings for GSP.
|
||||
* - Release the mutex #cg_pg_lock.
|
||||
*/
|
||||
void nvgpu_cg_slcg_gsp_load_enable(struct gk20a *g, bool enable);
|
||||
|
||||
/**
|
||||
* @brief During nvgpu power-on, as part of GSP initialization,
|
||||
* this function is called to load register configuration
|
||||
* for SLCG for CTRL unit.
|
||||
*
|
||||
* @param g [in] The GPU driver struct.
|
||||
*
|
||||
* Checks the platform software capability slcg_enabled and programs registers
|
||||
* for configuring production gating values for SLCG for CTRL.
|
||||
*
|
||||
* Steps:
|
||||
* - Acquire the mutex #cg_pg_lock.
|
||||
* - Check if #slcg_enabled is set, else skip SLCG programming.
|
||||
* - Load SLCG prod settings for CTRL.
|
||||
* - Release the mutex #cg_pg_lock.
|
||||
*/
|
||||
void nvgpu_cg_slcg_ctrl_load_enable(struct gk20a *g, bool enable);
|
||||
|
||||
#ifdef CONFIG_NVGPU_NON_FUSA
|
||||
|
||||
void nvgpu_cg_elcg_enable(struct gk20a *g);
|
||||
|
||||
Reference in New Issue
Block a user