aboutsummaryrefslogtreecommitdiffstats
path: root/include/nvgpu/hw/gv11b/hw_therm_gv11b.h
diff options
context:
space:
mode:
authorJoshua Bakita <bakitajoshua@gmail.com>2024-09-25 16:09:09 -0400
committerJoshua Bakita <bakitajoshua@gmail.com>2024-09-25 16:09:09 -0400
commitf347fde22f1297e4f022600d201780d5ead78114 (patch)
tree76be305d6187003a1e0486ff6e91efb1062ae118 /include/nvgpu/hw/gv11b/hw_therm_gv11b.h
parent8340d234d78a7d0f46c11a584de538148b78b7cb (diff)
Delete no-longer-needed nvgpu headersHEADmasterjbakita-wip
The dependency on these was removed in commit 8340d234.
Diffstat (limited to 'include/nvgpu/hw/gv11b/hw_therm_gv11b.h')
-rw-r--r--include/nvgpu/hw/gv11b/hw_therm_gv11b.h487
1 files changed, 0 insertions, 487 deletions
diff --git a/include/nvgpu/hw/gv11b/hw_therm_gv11b.h b/include/nvgpu/hw/gv11b/hw_therm_gv11b.h
deleted file mode 100644
index 0050083..0000000
--- a/include/nvgpu/hw/gv11b/hw_therm_gv11b.h
+++ /dev/null
@@ -1,487 +0,0 @@
1/*
2 * Copyright (c) 2016-2018, NVIDIA CORPORATION. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
21 */
22/*
23 * Function naming determines intended use:
24 *
25 * <x>_r(void) : Returns the offset for register <x>.
26 *
27 * <x>_o(void) : Returns the offset for element <x>.
28 *
29 * <x>_w(void) : Returns the word offset for word (4 byte) element <x>.
30 *
31 * <x>_<y>_s(void) : Returns size of field <y> of register <x> in bits.
32 *
33 * <x>_<y>_f(u32 v) : Returns a value based on 'v' which has been shifted
34 * and masked to place it at field <y> of register <x>. This value
35 * can be |'d with others to produce a full register value for
36 * register <x>.
37 *
38 * <x>_<y>_m(void) : Returns a mask for field <y> of register <x>. This
39 * value can be ~'d and then &'d to clear the value of field <y> for
40 * register <x>.
41 *
42 * <x>_<y>_<z>_f(void) : Returns the constant value <z> after being shifted
43 * to place it at field <y> of register <x>. This value can be |'d
44 * with others to produce a full register value for <x>.
45 *
46 * <x>_<y>_v(u32 r) : Returns the value of field <y> from a full register
47 * <x> value 'r' after being shifted to place its LSB at bit 0.
48 * This value is suitable for direct comparison with other unshifted
49 * values appropriate for use in field <y> of register <x>.
50 *
51 * <x>_<y>_<z>_v(void) : Returns the constant value for <z> defined for
52 * field <y> of register <x>. This value is suitable for direct
53 * comparison with unshifted values appropriate for use in field <y>
54 * of register <x>.
55 */
56#ifndef _hw_therm_gv11b_h_
57#define _hw_therm_gv11b_h_
58
59static inline u32 therm_use_a_r(void)
60{
61 return 0x00020798U;
62}
63static inline u32 therm_use_a_ext_therm_0_enable_f(void)
64{
65 return 0x1U;
66}
67static inline u32 therm_use_a_ext_therm_1_enable_f(void)
68{
69 return 0x2U;
70}
71static inline u32 therm_use_a_ext_therm_2_enable_f(void)
72{
73 return 0x4U;
74}
75static inline u32 therm_evt_ext_therm_0_r(void)
76{
77 return 0x00020700U;
78}
79static inline u32 therm_evt_ext_therm_0_slow_factor_f(u32 v)
80{
81 return (v & 0x3fU) << 24U;
82}
83static inline u32 therm_evt_ext_therm_0_slow_factor_init_v(void)
84{
85 return 0x00000001U;
86}
87static inline u32 therm_evt_ext_therm_0_mode_f(u32 v)
88{
89 return (v & 0x3U) << 30U;
90}
91static inline u32 therm_evt_ext_therm_0_mode_normal_v(void)
92{
93 return 0x00000000U;
94}
95static inline u32 therm_evt_ext_therm_0_mode_inverted_v(void)
96{
97 return 0x00000001U;
98}
99static inline u32 therm_evt_ext_therm_0_mode_forced_v(void)
100{
101 return 0x00000002U;
102}
103static inline u32 therm_evt_ext_therm_0_mode_cleared_v(void)
104{
105 return 0x00000003U;
106}
107static inline u32 therm_evt_ext_therm_1_r(void)
108{
109 return 0x00020704U;
110}
111static inline u32 therm_evt_ext_therm_1_slow_factor_f(u32 v)
112{
113 return (v & 0x3fU) << 24U;
114}
115static inline u32 therm_evt_ext_therm_1_slow_factor_init_v(void)
116{
117 return 0x00000002U;
118}
119static inline u32 therm_evt_ext_therm_1_mode_f(u32 v)
120{
121 return (v & 0x3U) << 30U;
122}
123static inline u32 therm_evt_ext_therm_1_mode_normal_v(void)
124{
125 return 0x00000000U;
126}
127static inline u32 therm_evt_ext_therm_1_mode_inverted_v(void)
128{
129 return 0x00000001U;
130}
131static inline u32 therm_evt_ext_therm_1_mode_forced_v(void)
132{
133 return 0x00000002U;
134}
135static inline u32 therm_evt_ext_therm_1_mode_cleared_v(void)
136{
137 return 0x00000003U;
138}
139static inline u32 therm_evt_ext_therm_2_r(void)
140{
141 return 0x00020708U;
142}
143static inline u32 therm_evt_ext_therm_2_slow_factor_f(u32 v)
144{
145 return (v & 0x3fU) << 24U;
146}
147static inline u32 therm_evt_ext_therm_2_slow_factor_init_v(void)
148{
149 return 0x00000003U;
150}
151static inline u32 therm_evt_ext_therm_2_mode_f(u32 v)
152{
153 return (v & 0x3U) << 30U;
154}
155static inline u32 therm_evt_ext_therm_2_mode_normal_v(void)
156{
157 return 0x00000000U;
158}
159static inline u32 therm_evt_ext_therm_2_mode_inverted_v(void)
160{
161 return 0x00000001U;
162}
163static inline u32 therm_evt_ext_therm_2_mode_forced_v(void)
164{
165 return 0x00000002U;
166}
167static inline u32 therm_evt_ext_therm_2_mode_cleared_v(void)
168{
169 return 0x00000003U;
170}
171static inline u32 therm_weight_1_r(void)
172{
173 return 0x00020024U;
174}
175static inline u32 therm_config1_r(void)
176{
177 return 0x00020050U;
178}
179static inline u32 therm_config2_r(void)
180{
181 return 0x00020130U;
182}
183static inline u32 therm_config2_grad_step_duration_f(u32 v)
184{
185 return (v & 0xfU) << 8U;
186}
187static inline u32 therm_config2_grad_step_duration_m(void)
188{
189 return 0xfU << 8U;
190}
191static inline u32 therm_config2_slowdown_factor_extended_f(u32 v)
192{
193 return (v & 0x1U) << 24U;
194}
195static inline u32 therm_config2_grad_enable_f(u32 v)
196{
197 return (v & 0x1U) << 31U;
198}
199static inline u32 therm_gate_ctrl_r(u32 i)
200{
201 return 0x00020200U + i*4U;
202}
203static inline u32 therm_gate_ctrl_eng_clk_m(void)
204{
205 return 0x3U << 0U;
206}
207static inline u32 therm_gate_ctrl_eng_clk_run_f(void)
208{
209 return 0x0U;
210}
211static inline u32 therm_gate_ctrl_eng_clk_auto_f(void)
212{
213 return 0x1U;
214}
215static inline u32 therm_gate_ctrl_eng_clk_stop_f(void)
216{
217 return 0x2U;
218}
219static inline u32 therm_gate_ctrl_blk_clk_m(void)
220{
221 return 0x3U << 2U;
222}
223static inline u32 therm_gate_ctrl_blk_clk_run_f(void)
224{
225 return 0x0U;
226}
227static inline u32 therm_gate_ctrl_blk_clk_auto_f(void)
228{
229 return 0x4U;
230}
231static inline u32 therm_gate_ctrl_idle_holdoff_m(void)
232{
233 return 0x1U << 4U;
234}
235static inline u32 therm_gate_ctrl_idle_holdoff_off_f(void)
236{
237 return 0x0U;
238}
239static inline u32 therm_gate_ctrl_idle_holdoff_on_f(void)
240{
241 return 0x10U;
242}
243static inline u32 therm_gate_ctrl_eng_idle_filt_exp_f(u32 v)
244{
245 return (v & 0x1fU) << 8U;
246}
247static inline u32 therm_gate_ctrl_eng_idle_filt_exp_m(void)
248{
249 return 0x1fU << 8U;
250}
251static inline u32 therm_gate_ctrl_eng_idle_filt_exp__prod_f(void)
252{
253 return 0x200U;
254}
255static inline u32 therm_gate_ctrl_eng_idle_filt_mant_f(u32 v)
256{
257 return (v & 0x7U) << 13U;
258}
259static inline u32 therm_gate_ctrl_eng_idle_filt_mant_m(void)
260{
261 return 0x7U << 13U;
262}
263static inline u32 therm_gate_ctrl_eng_idle_filt_mant__prod_f(void)
264{
265 return 0x2000U;
266}
267static inline u32 therm_gate_ctrl_eng_delay_before_f(u32 v)
268{
269 return (v & 0xfU) << 16U;
270}
271static inline u32 therm_gate_ctrl_eng_delay_before_m(void)
272{
273 return 0xfU << 16U;
274}
275static inline u32 therm_gate_ctrl_eng_delay_before__prod_f(void)
276{
277 return 0x40000U;
278}
279static inline u32 therm_gate_ctrl_eng_delay_after_f(u32 v)
280{
281 return (v & 0xfU) << 20U;
282}
283static inline u32 therm_gate_ctrl_eng_delay_after_m(void)
284{
285 return 0xfU << 20U;
286}
287static inline u32 therm_gate_ctrl_eng_delay_after__prod_f(void)
288{
289 return 0x0U;
290}
291static inline u32 therm_fecs_idle_filter_r(void)
292{
293 return 0x00020288U;
294}
295static inline u32 therm_fecs_idle_filter_value_m(void)
296{
297 return 0xffffffffU << 0U;
298}
299static inline u32 therm_fecs_idle_filter_value__prod_f(void)
300{
301 return 0x0U;
302}
303static inline u32 therm_hubmmu_idle_filter_r(void)
304{
305 return 0x0002028cU;
306}
307static inline u32 therm_hubmmu_idle_filter_value_m(void)
308{
309 return 0xffffffffU << 0U;
310}
311static inline u32 therm_hubmmu_idle_filter_value__prod_f(void)
312{
313 return 0x0U;
314}
315static inline u32 therm_clk_slowdown_r(u32 i)
316{
317 return 0x00020160U + i*4U;
318}
319static inline u32 therm_clk_slowdown_idle_factor_f(u32 v)
320{
321 return (v & 0x3fU) << 16U;
322}
323static inline u32 therm_clk_slowdown_idle_factor_m(void)
324{
325 return 0x3fU << 16U;
326}
327static inline u32 therm_clk_slowdown_idle_factor_v(u32 r)
328{
329 return (r >> 16U) & 0x3fU;
330}
331static inline u32 therm_clk_slowdown_idle_factor_disabled_f(void)
332{
333 return 0x0U;
334}
335static inline u32 therm_clk_slowdown_2_r(u32 i)
336{
337 return 0x000201a0U + i*4U;
338}
339static inline u32 therm_clk_slowdown_2_idle_condition_a_select_f(u32 v)
340{
341 return (v & 0xfU) << 0U;
342}
343static inline u32 therm_clk_slowdown_2_idle_condition_a_type_f(u32 v)
344{
345 return (v & 0x7U) << 4U;
346}
347static inline u32 therm_clk_slowdown_2_idle_condition_a_type_v(u32 r)
348{
349 return (r >> 4U) & 0x7U;
350}
351static inline u32 therm_clk_slowdown_2_idle_condition_a_type_never_f(void)
352{
353 return 0x40U;
354}
355static inline u32 therm_clk_slowdown_2_idle_condition_b_type_f(u32 v)
356{
357 return (v & 0x7U) << 12U;
358}
359static inline u32 therm_clk_slowdown_2_idle_condition_b_type_v(u32 r)
360{
361 return (r >> 12U) & 0x7U;
362}
363static inline u32 therm_clk_slowdown_2_idle_condition_b_type_never_f(void)
364{
365 return 0x4000U;
366}
367static inline u32 therm_grad_stepping_table_r(u32 i)
368{
369 return 0x000202c8U + i*4U;
370}
371static inline u32 therm_grad_stepping_table_slowdown_factor0_f(u32 v)
372{
373 return (v & 0x3fU) << 0U;
374}
375static inline u32 therm_grad_stepping_table_slowdown_factor0_m(void)
376{
377 return 0x3fU << 0U;
378}
379static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by1_f(void)
380{
381 return 0x0U;
382}
383static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by1p5_f(void)
384{
385 return 0x1U;
386}
387static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by2_f(void)
388{
389 return 0x2U;
390}
391static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by4_f(void)
392{
393 return 0x6U;
394}
395static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by8_f(void)
396{
397 return 0xeU;
398}
399static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by16_f(void)
400{
401 return 0x1eU;
402}
403static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by32_f(void)
404{
405 return 0x3eU;
406}
407static inline u32 therm_grad_stepping_table_slowdown_factor1_f(u32 v)
408{
409 return (v & 0x3fU) << 6U;
410}
411static inline u32 therm_grad_stepping_table_slowdown_factor1_m(void)
412{
413 return 0x3fU << 6U;
414}
415static inline u32 therm_grad_stepping_table_slowdown_factor2_f(u32 v)
416{
417 return (v & 0x3fU) << 12U;
418}
419static inline u32 therm_grad_stepping_table_slowdown_factor2_m(void)
420{
421 return 0x3fU << 12U;
422}
423static inline u32 therm_grad_stepping_table_slowdown_factor3_f(u32 v)
424{
425 return (v & 0x3fU) << 18U;
426}
427static inline u32 therm_grad_stepping_table_slowdown_factor3_m(void)
428{
429 return 0x3fU << 18U;
430}
431static inline u32 therm_grad_stepping_table_slowdown_factor4_f(u32 v)
432{
433 return (v & 0x3fU) << 24U;
434}
435static inline u32 therm_grad_stepping_table_slowdown_factor4_m(void)
436{
437 return 0x3fU << 24U;
438}
439static inline u32 therm_grad_stepping0_r(void)
440{
441 return 0x000202c0U;
442}
443static inline u32 therm_grad_stepping0_feature_s(void)
444{
445 return 1U;
446}
447static inline u32 therm_grad_stepping0_feature_f(u32 v)
448{
449 return (v & 0x1U) << 0U;
450}
451static inline u32 therm_grad_stepping0_feature_m(void)
452{
453 return 0x1U << 0U;
454}
455static inline u32 therm_grad_stepping0_feature_v(u32 r)
456{
457 return (r >> 0U) & 0x1U;
458}
459static inline u32 therm_grad_stepping0_feature_enable_f(void)
460{
461 return 0x1U;
462}
463static inline u32 therm_grad_stepping1_r(void)
464{
465 return 0x000202c4U;
466}
467static inline u32 therm_grad_stepping1_pdiv_duration_f(u32 v)
468{
469 return (v & 0x1ffffU) << 0U;
470}
471static inline u32 therm_clk_timing_r(u32 i)
472{
473 return 0x000203c0U + i*4U;
474}
475static inline u32 therm_clk_timing_grad_slowdown_f(u32 v)
476{
477 return (v & 0x1U) << 16U;
478}
479static inline u32 therm_clk_timing_grad_slowdown_m(void)
480{
481 return 0x1U << 16U;
482}
483static inline u32 therm_clk_timing_grad_slowdown_enabled_f(void)
484{
485 return 0x10000U;
486}
487#endif