summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/gk20a.h
diff options
context:
space:
mode:
authorMahantesh Kumbar <mkumbar@nvidia.com>2017-01-17 00:31:52 -0500
committermobile promotions <svcmobile_promotions@nvidia.com>2017-01-17 11:15:13 -0500
commit6420f721704daa836c261936d963cb314789c262 (patch)
tree4013cf11309f336c12f4a456b9a039701572b087 /drivers/gpu/nvgpu/gk20a/gk20a.h
parentefe0758081f25b39d5bb8b097fc0ae64d0e47c3f (diff)
gpu: nvgpu: HAL to get current pstate
- Added HAL support to get current pstate from clk_arb Note - This function is inherently unsafe to call while arbiter is running arbiter must be blocked before calling this function JIRA DNVGPU-165 Change-Id: I4e9f5eba7739280bddd9ee661fd314288c129516 Signed-off-by: Mahantesh Kumbar <mkumbar@nvidia.com> Reviewed-on: http://git-master/r/1286378 Reviewed-by: svccoveritychecker <svccoveritychecker@nvidia.com> GVS: Gerrit_Virtual_Submit Reviewed-by: Terje Bergstrom <tbergstrom@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/gk20a.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/gk20a.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/gk20a.h b/drivers/gpu/nvgpu/gk20a/gk20a.h
index 692f054f..a78ff506 100644
--- a/drivers/gpu/nvgpu/gk20a/gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/gk20a.h
@@ -656,6 +656,10 @@ struct gpu_ops {
656 u16 *min_mhz, u16 *max_mhz); 656 u16 *min_mhz, u16 *max_mhz);
657 int (*get_arbiter_clk_default)(struct gk20a *g, u32 api_domain, 657 int (*get_arbiter_clk_default)(struct gk20a *g, u32 api_domain,
658 u16 *default_mhz); 658 u16 *default_mhz);
659 /* This function is inherently unsafe to call while
660 * arbiter is running arbiter must be blocked
661 * before calling this function */
662 int (*get_current_pstate)(struct gk20a *g);
659 } clk_arb; 663 } clk_arb;
660 struct { 664 struct {
661 int (*handle_pmu_perf_event)(struct gk20a *g, void *pmu_msg); 665 int (*handle_pmu_perf_event)(struct gk20a *g, void *pmu_msg);