summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a
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/gk20a
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/gk20a')
-rw-r--r--drivers/gpu/nvgpu/gk20a/gr_gk20a.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gr_gk20a.c b/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
index 4f8006b2..223937c6 100644
--- a/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
+++ b/drivers/gpu/nvgpu/gk20a/gr_gk20a.c
@@ -1,7 +1,7 @@
1/* 1/*
2 * GK20A Graphics 2 * GK20A Graphics
3 * 3 *
4 * Copyright (c) 2011-2018, NVIDIA CORPORATION. All rights reserved. 4 * Copyright (c) 2011-2019, NVIDIA CORPORATION. All rights reserved.
5 * 5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a 6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"), 7 * copy of this software and associated documentation files (the "Software"),
@@ -3128,7 +3128,7 @@ int gk20a_alloc_obj_ctx(struct channel_gk20a *c, u32 class_num, u32 flags)
3128 goto out; 3128 goto out;
3129 } 3129 }
3130 3130
3131 /* init golden image, ELPG enabled after this is done */ 3131 /* init golden image */
3132 err = gr_gk20a_init_golden_ctx_image(g, c); 3132 err = gr_gk20a_init_golden_ctx_image(g, c);
3133 if (err != 0) { 3133 if (err != 0) {
3134 nvgpu_err(g, 3134 nvgpu_err(g,
@@ -3136,6 +3136,17 @@ int gk20a_alloc_obj_ctx(struct channel_gk20a *c, u32 class_num, u32 flags)
3136 goto out; 3136 goto out;
3137 } 3137 }
3138 3138
3139 /* Re-enable ELPG now that golden image has been initialized.
3140 * The PMU PG init code may already have tried to enable elpg, but
3141 * would not have been able to complete this action since the golden
3142 * image hadn't been initialized yet, so do this now.
3143 */
3144 err = nvgpu_pmu_reenable_elpg(g);
3145 if (err != 0) {
3146 nvgpu_err(g, "fail to re-enable elpg");
3147 goto out;
3148 }
3149
3139 /* load golden image */ 3150 /* load golden image */
3140 gr_gk20a_load_golden_ctx_image(g, c); 3151 gr_gk20a_load_golden_ctx_image(g, c);
3141 if (err != 0) { 3152 if (err != 0) {