summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gk20a/hw_therm_gk20a.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/gk20a/hw_therm_gk20a.h')
-rw-r--r--drivers/gpu/nvgpu/gk20a/hw_therm_gk20a.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/gk20a/hw_therm_gk20a.h b/drivers/gpu/nvgpu/gk20a/hw_therm_gk20a.h
index d4c04116..3f3052ab 100644
--- a/drivers/gpu/nvgpu/gk20a/hw_therm_gk20a.h
+++ b/drivers/gpu/nvgpu/gk20a/hw_therm_gk20a.h
@@ -1,5 +1,5 @@
1/* 1/*
2 * Copyright (c) 2012-2015, NVIDIA CORPORATION. All rights reserved. 2 * Copyright (c) 2012-2016, NVIDIA CORPORATION. All rights reserved.
3 * 3 *
4 * This program is free software; you can redistribute it and/or modify it 4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License, 5 * under the terms and conditions of the GNU General Public License,
@@ -198,6 +198,14 @@ static inline u32 therm_gate_ctrl_eng_idle_filt_mant_m(void)
198{ 198{
199 return 0x7 << 13; 199 return 0x7 << 13;
200} 200}
201static inline u32 therm_gate_ctrl_eng_delay_before_f(u32 v)
202{
203 return (v & 0xf) << 16;
204}
205static inline u32 therm_gate_ctrl_eng_delay_before_m(void)
206{
207 return 0xf << 16;
208}
201static inline u32 therm_gate_ctrl_eng_delay_after_f(u32 v) 209static inline u32 therm_gate_ctrl_eng_delay_after_f(u32 v)
202{ 210{
203 return (v & 0xf) << 20; 211 return (v & 0xf) << 20;