summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/gv11b/hw_ctxsw_prog_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_ctxsw_prog_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_ctxsw_prog_gv11b.h')
-rw-r--r--drivers/gpu/nvgpu/gv11b/hw_ctxsw_prog_gv11b.h457
1 files changed, 457 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/gv11b/hw_ctxsw_prog_gv11b.h b/drivers/gpu/nvgpu/gv11b/hw_ctxsw_prog_gv11b.h
new file mode 100644
index 00000000..5c60c30c
--- /dev/null
+++ b/drivers/gpu/nvgpu/gv11b/hw_ctxsw_prog_gv11b.h
@@ -0,0 +1,457 @@
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_ctxsw_prog_gv11b_h_
51#define _hw_ctxsw_prog_gv11b_h_
52
53static inline u32 ctxsw_prog_fecs_header_v(void)
54{
55 return 0x00000100;
56}
57static inline u32 ctxsw_prog_main_image_num_gpcs_o(void)
58{
59 return 0x00000008;
60}
61static inline u32 ctxsw_prog_main_image_patch_count_o(void)
62{
63 return 0x00000010;
64}
65static inline u32 ctxsw_prog_main_image_context_id_o(void)
66{
67 return 0x000000f0;
68}
69static inline u32 ctxsw_prog_main_image_patch_adr_lo_o(void)
70{
71 return 0x00000014;
72}
73static inline u32 ctxsw_prog_main_image_patch_adr_hi_o(void)
74{
75 return 0x00000018;
76}
77static inline u32 ctxsw_prog_main_image_zcull_o(void)
78{
79 return 0x0000001c;
80}
81static inline u32 ctxsw_prog_main_image_zcull_mode_no_ctxsw_v(void)
82{
83 return 0x00000001;
84}
85static inline u32 ctxsw_prog_main_image_zcull_mode_separate_buffer_v(void)
86{
87 return 0x00000002;
88}
89static inline u32 ctxsw_prog_main_image_zcull_ptr_o(void)
90{
91 return 0x00000020;
92}
93static inline u32 ctxsw_prog_main_image_pm_o(void)
94{
95 return 0x00000028;
96}
97static inline u32 ctxsw_prog_main_image_pm_mode_m(void)
98{
99 return 0x7 << 0;
100}
101static inline u32 ctxsw_prog_main_image_pm_mode_no_ctxsw_f(void)
102{
103 return 0x0;
104}
105static inline u32 ctxsw_prog_main_image_pm_smpc_mode_m(void)
106{
107 return 0x7 << 3;
108}
109static inline u32 ctxsw_prog_main_image_pm_smpc_mode_ctxsw_f(void)
110{
111 return 0x8;
112}
113static inline u32 ctxsw_prog_main_image_pm_smpc_mode_no_ctxsw_f(void)
114{
115 return 0x0;
116}
117static inline u32 ctxsw_prog_main_image_pm_ptr_o(void)
118{
119 return 0x0000002c;
120}
121static inline u32 ctxsw_prog_main_image_num_save_ops_o(void)
122{
123 return 0x000000f4;
124}
125static inline u32 ctxsw_prog_main_image_num_wfi_save_ops_o(void)
126{
127 return 0x000000d0;
128}
129static inline u32 ctxsw_prog_main_image_num_cta_save_ops_o(void)
130{
131 return 0x000000d4;
132}
133static inline u32 ctxsw_prog_main_image_num_gfxp_save_ops_o(void)
134{
135 return 0x000000d8;
136}
137static inline u32 ctxsw_prog_main_image_num_cilp_save_ops_o(void)
138{
139 return 0x000000dc;
140}
141static inline u32 ctxsw_prog_main_image_num_restore_ops_o(void)
142{
143 return 0x000000f8;
144}
145static inline u32 ctxsw_prog_main_image_magic_value_o(void)
146{
147 return 0x000000fc;
148}
149static inline u32 ctxsw_prog_main_image_magic_value_v_value_v(void)
150{
151 return 0x600dc0de;
152}
153static inline u32 ctxsw_prog_local_priv_register_ctl_o(void)
154{
155 return 0x0000000c;
156}
157static inline u32 ctxsw_prog_local_priv_register_ctl_offset_v(u32 r)
158{
159 return (r >> 0) & 0xffff;
160}
161static inline u32 ctxsw_prog_local_image_ppc_info_o(void)
162{
163 return 0x000000f4;
164}
165static inline u32 ctxsw_prog_local_image_ppc_info_num_ppcs_v(u32 r)
166{
167 return (r >> 0) & 0xffff;
168}
169static inline u32 ctxsw_prog_local_image_ppc_info_ppc_mask_v(u32 r)
170{
171 return (r >> 16) & 0xffff;
172}
173static inline u32 ctxsw_prog_local_image_num_tpcs_o(void)
174{
175 return 0x000000f8;
176}
177static inline u32 ctxsw_prog_local_magic_value_o(void)
178{
179 return 0x000000fc;
180}
181static inline u32 ctxsw_prog_local_magic_value_v_value_v(void)
182{
183 return 0xad0becab;
184}
185static inline u32 ctxsw_prog_main_extended_buffer_ctl_o(void)
186{
187 return 0x000000ec;
188}
189static inline u32 ctxsw_prog_main_extended_buffer_ctl_offset_v(u32 r)
190{
191 return (r >> 0) & 0xffff;
192}
193static inline u32 ctxsw_prog_main_extended_buffer_ctl_size_v(u32 r)
194{
195 return (r >> 16) & 0xff;
196}
197static inline u32 ctxsw_prog_extended_buffer_segments_size_in_bytes_v(void)
198{
199 return 0x00000100;
200}
201static inline u32 ctxsw_prog_extended_marker_size_in_bytes_v(void)
202{
203 return 0x00000004;
204}
205static inline u32 ctxsw_prog_extended_sm_dsm_perf_counter_register_stride_v(void)
206{
207 return 0x00000000;
208}
209static inline u32 ctxsw_prog_extended_sm_dsm_perf_counter_control_register_stride_v(void)
210{
211 return 0x00000002;
212}
213static inline u32 ctxsw_prog_main_image_priv_access_map_config_o(void)
214{
215 return 0x000000a0;
216}
217static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_s(void)
218{
219 return 2;
220}
221static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_f(u32 v)
222{
223 return (v & 0x3) << 0;
224}
225static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_m(void)
226{
227 return 0x3 << 0;
228}
229static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_v(u32 r)
230{
231 return (r >> 0) & 0x3;
232}
233static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_allow_all_f(void)
234{
235 return 0x0;
236}
237static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_use_map_f(void)
238{
239 return 0x2;
240}
241static inline u32 ctxsw_prog_main_image_priv_access_map_addr_lo_o(void)
242{
243 return 0x000000a4;
244}
245static inline u32 ctxsw_prog_main_image_priv_access_map_addr_hi_o(void)
246{
247 return 0x000000a8;
248}
249static inline u32 ctxsw_prog_main_image_misc_options_o(void)
250{
251 return 0x0000003c;
252}
253static inline u32 ctxsw_prog_main_image_misc_options_verif_features_m(void)
254{
255 return 0x1 << 3;
256}
257static inline u32 ctxsw_prog_main_image_misc_options_verif_features_disabled_f(void)
258{
259 return 0x0;
260}
261static inline u32 ctxsw_prog_main_image_graphics_preemption_options_o(void)
262{
263 return 0x00000080;
264}
265static inline u32 ctxsw_prog_main_image_graphics_preemption_options_control_f(u32 v)
266{
267 return (v & 0x3) << 0;
268}
269static inline u32 ctxsw_prog_main_image_graphics_preemption_options_control_gfxp_f(void)
270{
271 return 0x1;
272}
273static inline u32 ctxsw_prog_main_image_full_preemption_ptr_o(void)
274{
275 return 0x00000068;
276}
277static inline u32 ctxsw_prog_main_image_compute_preemption_options_o(void)
278{
279 return 0x00000084;
280}
281static inline u32 ctxsw_prog_main_image_compute_preemption_options_control_f(u32 v)
282{
283 return (v & 0x3) << 0;
284}
285static inline u32 ctxsw_prog_main_image_compute_preemption_options_control_cta_f(void)
286{
287 return 0x1;
288}
289static inline u32 ctxsw_prog_main_image_compute_preemption_options_control_cilp_f(void)
290{
291 return 0x2;
292}
293static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_control_o(void)
294{
295 return 0x000000ac;
296}
297static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_control_num_records_f(u32 v)
298{
299 return (v & 0xffff) << 0;
300}
301static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_ptr_hi_o(void)
302{
303 return 0x000000b0;
304}
305static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_ptr_hi_v_m(void)
306{
307 return 0x1ffff << 0;
308}
309static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_ptr_o(void)
310{
311 return 0x000000b4;
312}
313static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_ptr_v_f(u32 v)
314{
315 return (v & 0xffffffff) << 0;
316}
317static inline u32 ctxsw_prog_record_timestamp_record_size_in_bytes_v(void)
318{
319 return 0x00000080;
320}
321static inline u32 ctxsw_prog_record_timestamp_record_size_in_words_v(void)
322{
323 return 0x00000020;
324}
325static inline u32 ctxsw_prog_record_timestamp_magic_value_lo_o(void)
326{
327 return 0x00000000;
328}
329static inline u32 ctxsw_prog_record_timestamp_magic_value_lo_v_value_v(void)
330{
331 return 0x00000000;
332}
333static inline u32 ctxsw_prog_record_timestamp_magic_value_hi_o(void)
334{
335 return 0x00000004;
336}
337static inline u32 ctxsw_prog_record_timestamp_magic_value_hi_v_value_v(void)
338{
339 return 0x600dbeef;
340}
341static inline u32 ctxsw_prog_record_timestamp_context_id_o(void)
342{
343 return 0x00000008;
344}
345static inline u32 ctxsw_prog_record_timestamp_context_ptr_o(void)
346{
347 return 0x0000000c;
348}
349static inline u32 ctxsw_prog_record_timestamp_timestamp_lo_o(void)
350{
351 return 0x00000018;
352}
353static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_o(void)
354{
355 return 0x0000001c;
356}
357static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_v_f(u32 v)
358{
359 return (v & 0xffffff) << 0;
360}
361static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_v_v(u32 r)
362{
363 return (r >> 0) & 0xffffff;
364}
365static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_f(u32 v)
366{
367 return (v & 0xff) << 24;
368}
369static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_m(void)
370{
371 return 0xff << 24;
372}
373static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_v(u32 r)
374{
375 return (r >> 24) & 0xff;
376}
377static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_ctxsw_req_by_host_v(void)
378{
379 return 0x00000001;
380}
381static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_ctxsw_req_by_host_f(void)
382{
383 return 0x1000000;
384}
385static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_v(void)
386{
387 return 0x00000002;
388}
389static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_f(void)
390{
391 return 0x2000000;
392}
393static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_wfi_v(void)
394{
395 return 0x0000000a;
396}
397static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_wfi_f(void)
398{
399 return 0xa000000;
400}
401static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_gfxp_v(void)
402{
403 return 0x0000000b;
404}
405static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_gfxp_f(void)
406{
407 return 0xb000000;
408}
409static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_ctap_v(void)
410{
411 return 0x0000000c;
412}
413static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_ctap_f(void)
414{
415 return 0xc000000;
416}
417static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_cilp_v(void)
418{
419 return 0x0000000d;
420}
421static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_cilp_f(void)
422{
423 return 0xd000000;
424}
425static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_save_end_v(void)
426{
427 return 0x00000003;
428}
429static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_save_end_f(void)
430{
431 return 0x3000000;
432}
433static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_restore_start_v(void)
434{
435 return 0x00000004;
436}
437static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_restore_start_f(void)
438{
439 return 0x4000000;
440}
441static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_context_start_v(void)
442{
443 return 0x00000005;
444}
445static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_context_start_f(void)
446{
447 return 0x5000000;
448}
449static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_invalid_timestamp_v(void)
450{
451 return 0x000000ff;
452}
453static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_invalid_timestamp_f(void)
454{
455 return 0xff000000;
456}
457#endif