summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv11b/hw_therm_gv11b.h
diff options
context:
space:
mode:
authorSeshendra Gadagottu <sgadagottu@nvidia.com>2016-04-06 20:46:57 -0400
committerKen Adams <kadams@nvidia.com>2016-04-13 11:14:00 -0400
commit548c95266cd1055c317d3d38835f628f9acfe3bf (patch)
treee9341124f9dc162eea38b3b26d791b247585cfb3 /drivers/gpu/nvgpu/gv11b/hw_therm_gv11b.h
parentf13463e30048ec29c8de33bbdd5f36d15ddcec9c (diff)
gpu: nvgpu: gv11b: add hw headers for gv11b
Add initial versions of header for gv11b Bug 1735757 Change-Id: I76f85bbe98c1fa13c11d8ee1b2889703f62c6f67 Signed-off-by: Seshendra Gadagottu <sgadagottu@nvidia.com> Reviewed-on: http://git-master/r/1121486 Reviewed-by: Automatic_Commit_Validation_User GVS: Gerrit_Virtual_Submit Reviewed-by: Ken Adams <kadams@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/gv11b/hw_therm_gv11b.h')
-rw-r--r--drivers/gpu/nvgpu/gv11b/hw_therm_gv11b.h285
1 files changed, 285 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/hw_therm_gv11b.h b/drivers/gpu/nvgpu/gv11b/hw_therm_gv11b.h
new file mode 100644
index 00000000..ee3dbc0e
--- /dev/null
+++ b/drivers/gpu/nvgpu/gv11b/hw_therm_gv11b.h
@@ -0,0 +1,285 @@
1/*
2 * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
3 *
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,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16/*
17 * Function naming determines intended use:
18 *
19 * <x>_r(void) : Returns the offset for register <x>.
20 *
21 * <x>_o(void) : Returns the offset for element <x>.
22 *
23 * <x>_w(void) : Returns the word offset for word (4 byte) element <x>.
24 *
25 * <x>_<y>_s(void) : Returns size of field <y> of register <x> in bits.
26 *
27 * <x>_<y>_f(u32 v) : Returns a value based on 'v' which has been shifted
28 * and masked to place it at field <y> of register <x>. This value
29 * can be |'d with others to produce a full register value for
30 * register <x>.
31 *
32 * <x>_<y>_m(void) : Returns a mask for field <y> of register <x>. This
33 * value can be ~'d and then &'d to clear the value of field <y> for
34 * register <x>.
35 *
36 * <x>_<y>_<z>_f(void) : Returns the constant value <z> after being shifted
37 * to place it at field <y> of register <x>. This value can be |'d
38 * with others to produce a full register value for <x>.
39 *
40 * <x>_<y>_v(u32 r) : Returns the value of field <y> from a full register
41 * <x> value 'r' after being shifted to place its LSB at bit 0.
42 * This value is suitable for direct comparison with other unshifted
43 * values appropriate for use in field <y> of register <x>.
44 *
45 * <x>_<y>_<z>_v(void) : Returns the constant value for <z> defined for
46 * field <y> of register <x>. This value is suitable for direct
47 * comparison with unshifted values appropriate for use in field <y>
48 * of register <x>.
49 */
50#ifndef _hw_therm_gv11b_h_
51#define _hw_therm_gv11b_h_
52
53static inline u32 therm_use_a_r(void)
54{
55 return 0x00020798;
56}
57static inline u32 therm_weight_1_r(void)
58{
59 return 0x00020024;
60}
61static inline u32 therm_config1_r(void)
62{
63 return 0x00020050;
64}
65static inline u32 therm_config2_r(void)
66{
67 return 0x00020130;
68}
69static inline u32 therm_config2_slowdown_factor_extended_f(u32 v)
70{
71 return (v & 0x1) << 24;
72}
73static inline u32 therm_config2_grad_enable_f(u32 v)
74{
75 return (v & 0x1) << 31;
76}
77static inline u32 therm_gate_ctrl_r(u32 i)
78{
79 return 0x00020200 + i*4;
80}
81static inline u32 therm_gate_ctrl_eng_clk_m(void)
82{
83 return 0x3 << 0;
84}
85static inline u32 therm_gate_ctrl_eng_clk_run_f(void)
86{
87 return 0x0;
88}
89static inline u32 therm_gate_ctrl_eng_clk_auto_f(void)
90{
91 return 0x1;
92}
93static inline u32 therm_gate_ctrl_eng_clk_stop_f(void)
94{
95 return 0x2;
96}
97static inline u32 therm_gate_ctrl_blk_clk_m(void)
98{
99 return 0x3 << 2;
100}
101static inline u32 therm_gate_ctrl_blk_clk_run_f(void)
102{
103 return 0x0;
104}
105static inline u32 therm_gate_ctrl_blk_clk_auto_f(void)
106{
107 return 0x4;
108}
109static inline u32 therm_gate_ctrl_eng_idle_filt_exp_f(u32 v)
110{
111 return (v & 0x1f) << 8;
112}
113static inline u32 therm_gate_ctrl_eng_idle_filt_exp_m(void)
114{
115 return 0x1f << 8;
116}
117static inline u32 therm_gate_ctrl_eng_idle_filt_mant_f(u32 v)
118{
119 return (v & 0x7) << 13;
120}
121static inline u32 therm_gate_ctrl_eng_idle_filt_mant_m(void)
122{
123 return 0x7 << 13;
124}
125static inline u32 therm_gate_ctrl_eng_delay_before_f(u32 v)
126{
127 return (v & 0xf) << 16;
128}
129static inline u32 therm_gate_ctrl_eng_delay_before_m(void)
130{
131 return 0xf << 16;
132}
133static inline u32 therm_gate_ctrl_eng_delay_after_f(u32 v)
134{
135 return (v & 0xf) << 20;
136}
137static inline u32 therm_gate_ctrl_eng_delay_after_m(void)
138{
139 return 0xf << 20;
140}
141static inline u32 therm_fecs_idle_filter_r(void)
142{
143 return 0x00020288;
144}
145static inline u32 therm_fecs_idle_filter_value_m(void)
146{
147 return 0xffffffff << 0;
148}
149static inline u32 therm_hubmmu_idle_filter_r(void)
150{
151 return 0x0002028c;
152}
153static inline u32 therm_hubmmu_idle_filter_value_m(void)
154{
155 return 0xffffffff << 0;
156}
157static inline u32 therm_clk_slowdown_r(u32 i)
158{
159 return 0x00020160 + i*4;
160}
161static inline u32 therm_clk_slowdown_idle_factor_f(u32 v)
162{
163 return (v & 0x3f) << 16;
164}
165static inline u32 therm_clk_slowdown_idle_factor_m(void)
166{
167 return 0x3f << 16;
168}
169static inline u32 therm_clk_slowdown_idle_factor_v(u32 r)
170{
171 return (r >> 16) & 0x3f;
172}
173static inline u32 therm_clk_slowdown_idle_factor_disabled_f(void)
174{
175 return 0x0;
176}
177static inline u32 therm_grad_stepping_table_r(u32 i)
178{
179 return 0x000202c8 + i*4;
180}
181static inline u32 therm_grad_stepping_table_slowdown_factor0_f(u32 v)
182{
183 return (v & 0x3f) << 0;
184}
185static inline u32 therm_grad_stepping_table_slowdown_factor0_m(void)
186{
187 return 0x3f << 0;
188}
189static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by1p5_f(void)
190{
191 return 0x1;
192}
193static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by2_f(void)
194{
195 return 0x2;
196}
197static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by4_f(void)
198{
199 return 0x6;
200}
201static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by8_f(void)
202{
203 return 0xe;
204}
205static inline u32 therm_grad_stepping_table_slowdown_factor1_f(u32 v)
206{
207 return (v & 0x3f) << 6;
208}
209static inline u32 therm_grad_stepping_table_slowdown_factor1_m(void)
210{
211 return 0x3f << 6;
212}
213static inline u32 therm_grad_stepping_table_slowdown_factor2_f(u32 v)
214{
215 return (v & 0x3f) << 12;
216}
217static inline u32 therm_grad_stepping_table_slowdown_factor2_m(void)
218{
219 return 0x3f << 12;
220}
221static inline u32 therm_grad_stepping_table_slowdown_factor3_f(u32 v)
222{
223 return (v & 0x3f) << 18;
224}
225static inline u32 therm_grad_stepping_table_slowdown_factor3_m(void)
226{
227 return 0x3f << 18;
228}
229static inline u32 therm_grad_stepping_table_slowdown_factor4_f(u32 v)
230{
231 return (v & 0x3f) << 24;
232}
233static inline u32 therm_grad_stepping_table_slowdown_factor4_m(void)
234{
235 return 0x3f << 24;
236}
237static inline u32 therm_grad_stepping0_r(void)
238{
239 return 0x000202c0;
240}
241static inline u32 therm_grad_stepping0_feature_s(void)
242{
243 return 1;
244}
245static inline u32 therm_grad_stepping0_feature_f(u32 v)
246{
247 return (v & 0x1) << 0;
248}
249static inline u32 therm_grad_stepping0_feature_m(void)
250{
251 return 0x1 << 0;
252}
253static inline u32 therm_grad_stepping0_feature_v(u32 r)
254{
255 return (r >> 0) & 0x1;
256}
257static inline u32 therm_grad_stepping0_feature_enable_f(void)
258{
259 return 0x1;
260}
261static inline u32 therm_grad_stepping1_r(void)
262{
263 return 0x000202c4;
264}
265static inline u32 therm_grad_stepping1_pdiv_duration_f(u32 v)
266{
267 return (v & 0x1ffff) << 0;
268}
269static inline u32 therm_clk_timing_r(u32 i)
270{
271 return 0x000203c0 + i*4;
272}
273static inline u32 therm_clk_timing_grad_slowdown_f(u32 v)
274{
275 return (v & 0x1) << 16;
276}
277static inline u32 therm_clk_timing_grad_slowdown_m(void)
278{
279 return 0x1 << 16;
280}
281static inline u32 therm_clk_timing_grad_slowdown_enabled_f(void)
282{
283 return 0x10000;
284}
285#endif