summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/clk
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
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')
-rw-r--r--drivers/gpu/nvgpu/clk/clk_vf_point.c6
-rw-r--r--drivers/gpu/nvgpu/clk/clk_vf_point.h4
2 files changed, 6 insertions, 4 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}
diff --git a/drivers/gpu/nvgpu/clk/clk_vf_point.h b/drivers/gpu/nvgpu/clk/clk_vf_point.h
index 9a4eec10..b67434b7 100644
--- a/drivers/gpu/nvgpu/clk/clk_vf_point.h
+++ b/drivers/gpu/nvgpu/clk/clk_vf_point.h
@@ -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"),
@@ -46,7 +46,7 @@ struct clk_vf_point {
46struct clk_vf_point_volt { 46struct clk_vf_point_volt {
47 struct clk_vf_point super; 47 struct clk_vf_point super;
48 u32 source_voltage_uv; 48 u32 source_voltage_uv;
49 int freq_delta_khz; 49 struct ctrl_clk_freq_delta freq_delta;
50}; 50};
51 51
52struct clk_vf_point_freq { 52struct clk_vf_point_freq {