summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/clk/clk_vf_point.c
diff options
context:
space:
mode:
authorVaikundanathan S <vaikuns@nvidia.com>2018-03-29 06:06:44 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-04-25 12:35:56 -0400
commit244e29b1b527dce5497a96ca65c08f7ef22cfc65 (patch)
tree62ec57fad3f54dd810cb31a37cd375b8ab0e0916 /drivers/gpu/nvgpu/clk/clk_vf_point.c
parent594f3d26ea55219fd1855d388477601d4cbb1a28 (diff)
gpu: nvgpu: Port vf_point as per Chips_a
- Update PMU interface for vf_point Change-Id: I1c457026938025266a9325a93985d81fae3b9fa5 Signed-off-by: Vaikundanathan S <vaikuns@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1684286 Reviewed-by: svc-mobile-coverity <svc-mobile-coverity@nvidia.com> Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Vijayakumar Subbu <vsubbu@nvidia.com> Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/clk/clk_vf_point.c')
-rw-r--r--drivers/gpu/nvgpu/clk/clk_vf_point.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/gpu/nvgpu/clk/clk_vf_point.c b/drivers/gpu/nvgpu/clk/clk_vf_point.c
index 0189bd8c..8333b2b0 100644
--- a/drivers/gpu/nvgpu/clk/clk_vf_point.c
+++ b/drivers/gpu/nvgpu/clk/clk_vf_point.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved. 2 * Copyright (c) 2016-2018, 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"),
@@ -200,7 +200,8 @@ static u32 _clk_vf_point_pmudatainit_volt(struct gk20a *g,
200 ppmudata; 200 ppmudata;
201 201
202 pset->source_voltage_uv = pclk_vf_point_volt->source_voltage_uv; 202 pset->source_voltage_uv = pclk_vf_point_volt->source_voltage_uv;
203 pset->freq_delta_khz = pclk_vf_point_volt->freq_delta_khz; 203 pset->freq_delta.data = pclk_vf_point_volt->freq_delta.data;
204 pset->freq_delta.type = pclk_vf_point_volt->freq_delta.type;
204 205
205 return status; 206 return status;
206} 207}
@@ -257,6 +258,7 @@ static u32 clk_vf_point_construct_volt(struct gk20a *g,
257 _clk_vf_point_pmudatainit_volt; 258 _clk_vf_point_pmudatainit_volt;
258 259
259 pclkvfpoint->source_voltage_uv = ptmpvfpoint->source_voltage_uv; 260 pclkvfpoint->source_voltage_uv = ptmpvfpoint->source_voltage_uv;
261 pclkvfpoint->freq_delta = ptmpvfpoint->freq_delta;
260 262
261 return status; 263 return status;
262} 264}