[Nouveau] [PATCH 24/32] clk: Save the max clock we can set
Karol Herbst
karolherbst at gmail.com
Fri Nov 17 00:04:28 UTC 2017
Saving the highest possible clock from the vpstate domain makes it easier
to read it out whenever we want.
Signed-off-by: Karol Herbst <karolherbst at gmail.com>
Reviewed-by: Martin Peres <martin.peres at free.fr>
---
drm/nouveau/include/nvkm/subdev/clk.h | 1 +
drm/nouveau/nvkm/subdev/clk/base.c | 2 ++
2 files changed, 3 insertions(+)
diff --git a/drm/nouveau/include/nvkm/subdev/clk.h b/drm/nouveau/include/nvkm/subdev/clk.h
index 32923732..df12bbd5 100644
--- a/drm/nouveau/include/nvkm/subdev/clk.h
+++ b/drm/nouveau/include/nvkm/subdev/clk.h
@@ -119,6 +119,7 @@ struct nvkm_clk {
u8 boost_mode;
struct nvkm_clk_limit base_limit;
struct nvkm_clk_limit boost_limit;
+ u32 max_khz;
/*XXX: die, these are here *only* to support the completely
* bat-shit insane what-was-nouveau_hw.c code
diff --git a/drm/nouveau/nvkm/subdev/clk/base.c b/drm/nouveau/nvkm/subdev/clk/base.c
index 9087e180..e94aee09 100644
--- a/drm/nouveau/nvkm/subdev/clk/base.c
+++ b/drm/nouveau/nvkm/subdev/clk/base.c
@@ -274,6 +274,8 @@ nvkm_cstate_new(struct nvkm_clk *clk, int idx, struct nvkm_pstate *pstate)
u32 freq = nvkm_clk_adjust(clk, true, pstate->id,
domain->bios, cstepX.freq);
cstate->domain[domain->name] = freq;
+ if (domain->flags & NVKM_CLK_DOM_FLAG_VPSTATE)
+ clk->max_khz = max(clk->max_khz, freq);
}
domain++;
}
--
2.15.0
More information about the Nouveau
mailing list