summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/pmu/pmu_pg.c
diff options
context:
space:
mode:
authorPeter Daifuku <pdaifuku@nvidia.com>2019-11-22 19:40:41 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2019-11-29 04:23:45 -0500
commit264691e69d825489e0a0bcee56f700e241186bb4 (patch)
tree4f791730ab316a889f2e006c7fdbb0a6b3f95e5b /drivers/gpu/nvgpu/common/pmu/pmu_pg.c
parentdd70aa47dbaa218f5fbafe26477d7cf17f094d21 (diff)
gpu: nvgpu: re-enable elpg after golden img init
Typically, the PMU init thread will finish up long before the golden context image has been initialized, which means that ELPG hasn't truly been enabled at that point. Create a new function, nvgpu_pmu_reenable_pg(), which checks if elpg had been enabled (non-zero refcnt), and if so, disables then re-enables it. Call this function from gk20a_alloc_obj_ctx() after the golden context image has been initialized to ensure that elpg is truly enabled. Manually ported from dev-main Bug 200543218 Change-Id: I0e7c4f64434c5e356829581950edce61cc88882a Signed-off-by: Peter Daifuku <pdaifuku@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2245768 (cherry picked from commit 077b6712b5a40340ece818416002ac8431dc4138) Reviewed-on: https://git-master.nvidia.com/r/2250091 GVS: Gerrit_Virtual_Submit Reviewed-by: Vijayakumar Subbu <vsubbu@nvidia.com> Reviewed-by: Bibek Basu <bbasu@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/common/pmu/pmu_pg.c')
-rw-r--r--drivers/gpu/nvgpu/common/pmu/pmu_pg.c32
1 files changed, 31 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/common/pmu/pmu_pg.c b/drivers/gpu/nvgpu/common/pmu/pmu_pg.c
index 3d46298d..941cee75 100644
--- a/drivers/gpu/nvgpu/common/pmu/pmu_pg.c
+++ b/drivers/gpu/nvgpu/common/pmu/pmu_pg.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2016-2018, NVIDIA CORPORATION. All rights reserved. 2 * Copyright (c) 2016-2019, NVIDIA CORPORATION. All rights reserved.
3 * 3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a 4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"), 5 * copy of this software and associated documentation files (the "Software"),
@@ -359,6 +359,36 @@ exit_unlock:
359 return ret; 359 return ret;
360} 360}
361 361
362int nvgpu_pmu_reenable_elpg(struct gk20a *g)
363{
364 struct nvgpu_pmu *pmu = &g->pmu;
365 int ret = 0;
366
367 nvgpu_log_fn(g, " ");
368
369 if (!g->support_pmu) {
370 return ret;
371 }
372
373 /* If pmu enabled, re-enable by first disabling, then
374 * enabling
375 */
376 if (pmu->elpg_refcnt != 0) {
377 ret = nvgpu_pmu_disable_elpg(g);
378 if (ret != 0) {
379 nvgpu_err(g, "failed disabling elpg");
380 goto exit;
381 }
382 ret = nvgpu_pmu_enable_elpg(g);
383 if (ret != 0) {
384 nvgpu_err(g, "failed enabling elpg");
385 goto exit;
386 }
387 }
388exit:
389 return ret;
390}
391
362/* PG init */ 392/* PG init */
363static void pmu_handle_pg_stat_msg(struct gk20a *g, struct pmu_msg *msg, 393static void pmu_handle_pg_stat_msg(struct gk20a *g, struct pmu_msg *msg,
364 void *param, u32 handle, u32 status) 394 void *param, u32 handle, u32 status)