From 89d421fb9ccf1ac03ba1a1f459d2d1fb34aac230 Mon Sep 17 00:00:00 2001 From: Vaikundanathan S Date: Fri, 14 Dec 2018 12:27:06 +0530 Subject: [PATCH] gpu:nvgpu: Enable VF point in change seqencer Mark b_vf_point_check_ignore to false as VF point is working and we can use FR instead of FFR Update PMU version to enable VF point support. PMU fw from CL 25467803 JIRA NVGPU-1152 Change-Id: Ie34068dd075ea8c9548f45d7d6bd253077ed4485 Signed-off-by: Vaikundanathan S Reviewed-on: https://git-master.nvidia.com/r/1972990 Reviewed-by: svc-mobile-coverity Reviewed-by: svc-mobile-misra Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Abdul Salam Reviewed-by: Vijayakumar Subbu Reviewed-by: mobile promotions Tested-by: mobile promotions --- drivers/gpu/nvgpu/common/pmu/pmu_fw.c | 2 +- drivers/gpu/nvgpu/pmu_perf/change_seq.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpu/nvgpu/common/pmu/pmu_fw.c b/drivers/gpu/nvgpu/common/pmu/pmu_fw.c index 52b7c6d2e..269e773de 100644 --- a/drivers/gpu/nvgpu/common/pmu/pmu_fw.c +++ b/drivers/gpu/nvgpu/common/pmu/pmu_fw.c @@ -41,7 +41,7 @@ #define NVGPU_PMU_NS_UCODE_IMAGE "gpmu_ucode.bin" /* PMU F/W version */ -#define APP_VERSION_TU10X 25110168U +#define APP_VERSION_TU10X 25453641U #define APP_VERSION_GV11B 25005711U #define APP_VERSION_GV10X 25133717U #define APP_VERSION_GP10X 24076634U diff --git a/drivers/gpu/nvgpu/pmu_perf/change_seq.c b/drivers/gpu/nvgpu/pmu_perf/change_seq.c index 6ebf03e22..c104177e2 100644 --- a/drivers/gpu/nvgpu/pmu_perf/change_seq.c +++ b/drivers/gpu/nvgpu/pmu_perf/change_seq.c @@ -87,7 +87,7 @@ int nvgpu_perf_change_seq_sw_setup(struct gk20a *g) /*exclude MCLK, may not be needed as MCLK is already fixed */ perf_change_seq_pmu->super.clk_domains_exclusion_mask.super.data[0] = 0x04U; - perf_change_seq_pmu->b_vf_point_check_ignore = true; + perf_change_seq_pmu->b_vf_point_check_ignore = false; perf_change_seq_pmu->b_lock = false; perf_change_seq_pmu->cpu_step_id_mask = 0; perf_change_seq_pmu->cpu_adverised_step_id_mask = 0;