summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gm20b
diff options
context:
space:
mode:
authorseshendra Gadagottu <sgadagottu@nvidia.com>2016-10-27 13:54:18 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2016-11-01 14:36:51 -0400
commit161b61e6cc76c2050115039141027320a2f2e745 (patch)
treefdfdefb9bcb19c03e7d3f6cb315105dc473f88bb /drivers/gpu/nvgpu/gm20b
parent9dce41e208818c0084c91685c8255942a2ca6e8d (diff)
gpu: nvgpu: pmu HAL update
Update pmu HAL to check for pmu support. pmu initialization will check for pmu support in that platform. JIRA GV11B-21 Change-Id: Ib55be58a1540862b7a91a6162544d10be85b5eb4 Signed-off-by: seshendra Gadagottu <sgadagottu@nvidia.com> Reviewed-on: http://git-master/r/1243911 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gm20b')
-rw-r--r--drivers/gpu/nvgpu/gm20b/acr_gm20b.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gm20b/acr_gm20b.c b/drivers/gpu/nvgpu/gm20b/acr_gm20b.c
index 310a3bc8..f9e2d477 100644
--- a/drivers/gpu/nvgpu/gm20b/acr_gm20b.c
+++ b/drivers/gpu/nvgpu/gm20b/acr_gm20b.c
@@ -94,8 +94,14 @@ static void gm20b_wpr_info(struct gk20a *g, struct wpr_carveout_info *inf)
94 inf->size = mem_inf.size; 94 inf->size = mem_inf.size;
95} 95}
96 96
97static bool gm20b_is_pmu_supported(struct gk20a *g)
98{
99 return true;
100}
101
97void gm20b_init_secure_pmu(struct gpu_ops *gops) 102void gm20b_init_secure_pmu(struct gpu_ops *gops)
98{ 103{
104 gops->pmu.is_pmu_supported = gm20b_is_pmu_supported;
99 gops->pmu.prepare_ucode = prepare_ucode_blob; 105 gops->pmu.prepare_ucode = prepare_ucode_blob;
100 gops->pmu.pmu_setup_hw_and_bootstrap = gm20b_bootstrap_hs_flcn; 106 gops->pmu.pmu_setup_hw_and_bootstrap = gm20b_bootstrap_hs_flcn;
101 gops->pmu.is_lazy_bootstrap = gm20b_is_lazy_bootstrap; 107 gops->pmu.is_lazy_bootstrap = gm20b_is_lazy_bootstrap;