diff options
author | Joshua Bakita <bakitajoshua@gmail.com> | 2023-06-28 18:24:25 -0400 |
---|---|---|
committer | Joshua Bakita <bakitajoshua@gmail.com> | 2023-06-28 18:24:25 -0400 |
commit | 01e6fac4d61fdd7fff5433942ec93fc2ea1e4df1 (patch) | |
tree | 4ef34501728a087be24f4ba0af90f91486bf780b /include/nvgpu/hw/gp106/hw_pbdma_gp106.h | |
parent | 306a03d18b305e4e573be3b2931978fa10679eb9 (diff) |
Include nvgpu headers
These are needed to build on NVIDIA's Jetson boards for the time
being. Only a couple structs are required, so it should be fairly
easy to remove this dependency at some point in the future.
Diffstat (limited to 'include/nvgpu/hw/gp106/hw_pbdma_gp106.h')
-rw-r--r-- | include/nvgpu/hw/gp106/hw_pbdma_gp106.h | 535 |
1 files changed, 535 insertions, 0 deletions
diff --git a/include/nvgpu/hw/gp106/hw_pbdma_gp106.h b/include/nvgpu/hw/gp106/hw_pbdma_gp106.h new file mode 100644 index 0000000..1005c5a --- /dev/null +++ b/include/nvgpu/hw/gp106/hw_pbdma_gp106.h | |||
@@ -0,0 +1,535 @@ | |||
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_pbdma_gp106_h_ | ||
57 | #define _hw_pbdma_gp106_h_ | ||
58 | |||
59 | static inline u32 pbdma_gp_entry1_r(void) | ||
60 | { | ||
61 | return 0x10000004U; | ||
62 | } | ||
63 | static inline u32 pbdma_gp_entry1_get_hi_v(u32 r) | ||
64 | { | ||
65 | return (r >> 0U) & 0xffU; | ||
66 | } | ||
67 | static inline u32 pbdma_gp_entry1_length_f(u32 v) | ||
68 | { | ||
69 | return (v & 0x1fffffU) << 10U; | ||
70 | } | ||
71 | static inline u32 pbdma_gp_entry1_length_v(u32 r) | ||
72 | { | ||
73 | return (r >> 10U) & 0x1fffffU; | ||
74 | } | ||
75 | static inline u32 pbdma_gp_base_r(u32 i) | ||
76 | { | ||
77 | return 0x00040048U + i*8192U; | ||
78 | } | ||
79 | static inline u32 pbdma_gp_base__size_1_v(void) | ||
80 | { | ||
81 | return 0x00000004U; | ||
82 | } | ||
83 | static inline u32 pbdma_gp_base_offset_f(u32 v) | ||
84 | { | ||
85 | return (v & 0x1fffffffU) << 3U; | ||
86 | } | ||
87 | static inline u32 pbdma_gp_base_rsvd_s(void) | ||
88 | { | ||
89 | return 3U; | ||
90 | } | ||
91 | static inline u32 pbdma_gp_base_hi_r(u32 i) | ||
92 | { | ||
93 | return 0x0004004cU + i*8192U; | ||
94 | } | ||
95 | static inline u32 pbdma_gp_base_hi_offset_f(u32 v) | ||
96 | { | ||
97 | return (v & 0xffU) << 0U; | ||
98 | } | ||
99 | static inline u32 pbdma_gp_base_hi_limit2_f(u32 v) | ||
100 | { | ||
101 | return (v & 0x1fU) << 16U; | ||
102 | } | ||
103 | static inline u32 pbdma_gp_fetch_r(u32 i) | ||
104 | { | ||
105 | return 0x00040050U + i*8192U; | ||
106 | } | ||
107 | static inline u32 pbdma_gp_get_r(u32 i) | ||
108 | { | ||
109 | return 0x00040014U + i*8192U; | ||
110 | } | ||
111 | static inline u32 pbdma_gp_put_r(u32 i) | ||
112 | { | ||
113 | return 0x00040000U + i*8192U; | ||
114 | } | ||
115 | static inline u32 pbdma_pb_fetch_r(u32 i) | ||
116 | { | ||
117 | return 0x00040054U + i*8192U; | ||
118 | } | ||
119 | static inline u32 pbdma_pb_fetch_hi_r(u32 i) | ||
120 | { | ||
121 | return 0x00040058U + i*8192U; | ||
122 | } | ||
123 | static inline u32 pbdma_get_r(u32 i) | ||
124 | { | ||
125 | return 0x00040018U + i*8192U; | ||
126 | } | ||
127 | static inline u32 pbdma_get_hi_r(u32 i) | ||
128 | { | ||
129 | return 0x0004001cU + i*8192U; | ||
130 | } | ||
131 | static inline u32 pbdma_put_r(u32 i) | ||
132 | { | ||
133 | return 0x0004005cU + i*8192U; | ||
134 | } | ||
135 | static inline u32 pbdma_put_hi_r(u32 i) | ||
136 | { | ||
137 | return 0x00040060U + i*8192U; | ||
138 | } | ||
139 | static inline u32 pbdma_formats_r(u32 i) | ||
140 | { | ||
141 | return 0x0004009cU + i*8192U; | ||
142 | } | ||
143 | static inline u32 pbdma_formats_gp_fermi0_f(void) | ||
144 | { | ||
145 | return 0x0U; | ||
146 | } | ||
147 | static inline u32 pbdma_formats_pb_fermi1_f(void) | ||
148 | { | ||
149 | return 0x100U; | ||
150 | } | ||
151 | static inline u32 pbdma_formats_mp_fermi0_f(void) | ||
152 | { | ||
153 | return 0x0U; | ||
154 | } | ||
155 | static inline u32 pbdma_pb_header_r(u32 i) | ||
156 | { | ||
157 | return 0x00040084U + i*8192U; | ||
158 | } | ||
159 | static inline u32 pbdma_pb_header_priv_user_f(void) | ||
160 | { | ||
161 | return 0x0U; | ||
162 | } | ||
163 | static inline u32 pbdma_pb_header_method_zero_f(void) | ||
164 | { | ||
165 | return 0x0U; | ||
166 | } | ||
167 | static inline u32 pbdma_pb_header_subchannel_zero_f(void) | ||
168 | { | ||
169 | return 0x0U; | ||
170 | } | ||
171 | static inline u32 pbdma_pb_header_level_main_f(void) | ||
172 | { | ||
173 | return 0x0U; | ||
174 | } | ||
175 | static inline u32 pbdma_pb_header_first_true_f(void) | ||
176 | { | ||
177 | return 0x400000U; | ||
178 | } | ||
179 | static inline u32 pbdma_pb_header_type_inc_f(void) | ||
180 | { | ||
181 | return 0x20000000U; | ||
182 | } | ||
183 | static inline u32 pbdma_pb_header_type_non_inc_f(void) | ||
184 | { | ||
185 | return 0x60000000U; | ||
186 | } | ||
187 | static inline u32 pbdma_hdr_shadow_r(u32 i) | ||
188 | { | ||
189 | return 0x00040118U + i*8192U; | ||
190 | } | ||
191 | static inline u32 pbdma_gp_shadow_0_r(u32 i) | ||
192 | { | ||
193 | return 0x00040110U + i*8192U; | ||
194 | } | ||
195 | static inline u32 pbdma_gp_shadow_1_r(u32 i) | ||
196 | { | ||
197 | return 0x00040114U + i*8192U; | ||
198 | } | ||
199 | static inline u32 pbdma_subdevice_r(u32 i) | ||
200 | { | ||
201 | return 0x00040094U + i*8192U; | ||
202 | } | ||
203 | static inline u32 pbdma_subdevice_id_f(u32 v) | ||
204 | { | ||
205 | return (v & 0xfffU) << 0U; | ||
206 | } | ||
207 | static inline u32 pbdma_subdevice_status_active_f(void) | ||
208 | { | ||
209 | return 0x10000000U; | ||
210 | } | ||
211 | static inline u32 pbdma_subdevice_channel_dma_enable_f(void) | ||
212 | { | ||
213 | return 0x20000000U; | ||
214 | } | ||
215 | static inline u32 pbdma_method0_r(u32 i) | ||
216 | { | ||
217 | return 0x000400c0U + i*8192U; | ||
218 | } | ||
219 | static inline u32 pbdma_method0_fifo_size_v(void) | ||
220 | { | ||
221 | return 0x00000004U; | ||
222 | } | ||
223 | static inline u32 pbdma_method0_addr_f(u32 v) | ||
224 | { | ||
225 | return (v & 0xfffU) << 2U; | ||
226 | } | ||
227 | static inline u32 pbdma_method0_addr_v(u32 r) | ||
228 | { | ||
229 | return (r >> 2U) & 0xfffU; | ||
230 | } | ||
231 | static inline u32 pbdma_method0_subch_v(u32 r) | ||
232 | { | ||
233 | return (r >> 16U) & 0x7U; | ||
234 | } | ||
235 | static inline u32 pbdma_method0_first_true_f(void) | ||
236 | { | ||
237 | return 0x400000U; | ||
238 | } | ||
239 | static inline u32 pbdma_method0_valid_true_f(void) | ||
240 | { | ||
241 | return 0x80000000U; | ||
242 | } | ||
243 | static inline u32 pbdma_method1_r(u32 i) | ||
244 | { | ||
245 | return 0x000400c8U + i*8192U; | ||
246 | } | ||
247 | static inline u32 pbdma_method2_r(u32 i) | ||
248 | { | ||
249 | return 0x000400d0U + i*8192U; | ||
250 | } | ||
251 | static inline u32 pbdma_method3_r(u32 i) | ||
252 | { | ||
253 | return 0x000400d8U + i*8192U; | ||
254 | } | ||
255 | static inline u32 pbdma_data0_r(u32 i) | ||
256 | { | ||
257 | return 0x000400c4U + i*8192U; | ||
258 | } | ||
259 | static inline u32 pbdma_target_r(u32 i) | ||
260 | { | ||
261 | return 0x000400acU + i*8192U; | ||
262 | } | ||
263 | static inline u32 pbdma_target_engine_sw_f(void) | ||
264 | { | ||
265 | return 0x1fU; | ||
266 | } | ||
267 | static inline u32 pbdma_acquire_r(u32 i) | ||
268 | { | ||
269 | return 0x00040030U + i*8192U; | ||
270 | } | ||
271 | static inline u32 pbdma_acquire_retry_man_2_f(void) | ||
272 | { | ||
273 | return 0x2U; | ||
274 | } | ||
275 | static inline u32 pbdma_acquire_retry_exp_2_f(void) | ||
276 | { | ||
277 | return 0x100U; | ||
278 | } | ||
279 | static inline u32 pbdma_acquire_timeout_exp_max_f(void) | ||
280 | { | ||
281 | return 0x7800U; | ||
282 | } | ||
283 | static inline u32 pbdma_acquire_timeout_man_max_f(void) | ||
284 | { | ||
285 | return 0x7fff8000U; | ||
286 | } | ||
287 | static inline u32 pbdma_acquire_timeout_en_disable_f(void) | ||
288 | { | ||
289 | return 0x0U; | ||
290 | } | ||
291 | static inline u32 pbdma_status_r(u32 i) | ||
292 | { | ||
293 | return 0x00040100U + i*8192U; | ||
294 | } | ||
295 | static inline u32 pbdma_channel_r(u32 i) | ||
296 | { | ||
297 | return 0x00040120U + i*8192U; | ||
298 | } | ||
299 | static inline u32 pbdma_signature_r(u32 i) | ||
300 | { | ||
301 | return 0x00040010U + i*8192U; | ||
302 | } | ||
303 | static inline u32 pbdma_signature_hw_valid_f(void) | ||
304 | { | ||
305 | return 0xfaceU; | ||
306 | } | ||
307 | static inline u32 pbdma_signature_sw_zero_f(void) | ||
308 | { | ||
309 | return 0x0U; | ||
310 | } | ||
311 | static inline u32 pbdma_userd_r(u32 i) | ||
312 | { | ||
313 | return 0x00040008U + i*8192U; | ||
314 | } | ||
315 | static inline u32 pbdma_userd_target_vid_mem_f(void) | ||
316 | { | ||
317 | return 0x0U; | ||
318 | } | ||
319 | static inline u32 pbdma_userd_target_sys_mem_coh_f(void) | ||
320 | { | ||
321 | return 0x2U; | ||
322 | } | ||
323 | static inline u32 pbdma_userd_target_sys_mem_ncoh_f(void) | ||
324 | { | ||
325 | return 0x3U; | ||
326 | } | ||
327 | static inline u32 pbdma_userd_addr_f(u32 v) | ||
328 | { | ||
329 | return (v & 0x7fffffU) << 9U; | ||
330 | } | ||
331 | static inline u32 pbdma_userd_hi_r(u32 i) | ||
332 | { | ||
333 | return 0x0004000cU + i*8192U; | ||
334 | } | ||
335 | static inline u32 pbdma_userd_hi_addr_f(u32 v) | ||
336 | { | ||
337 | return (v & 0xffU) << 0U; | ||
338 | } | ||
339 | static inline u32 pbdma_config_r(u32 i) | ||
340 | { | ||
341 | return 0x000400f4U + i*8192U; | ||
342 | } | ||
343 | static inline u32 pbdma_config_auth_level_privileged_f(void) | ||
344 | { | ||
345 | return 0x100U; | ||
346 | } | ||
347 | static inline u32 pbdma_hce_ctrl_r(u32 i) | ||
348 | { | ||
349 | return 0x000400e4U + i*8192U; | ||
350 | } | ||
351 | static inline u32 pbdma_hce_ctrl_hce_priv_mode_yes_f(void) | ||
352 | { | ||
353 | return 0x20U; | ||
354 | } | ||
355 | static inline u32 pbdma_intr_0_r(u32 i) | ||
356 | { | ||
357 | return 0x00040108U + i*8192U; | ||
358 | } | ||
359 | static inline u32 pbdma_intr_0_memreq_v(u32 r) | ||
360 | { | ||
361 | return (r >> 0U) & 0x1U; | ||
362 | } | ||
363 | static inline u32 pbdma_intr_0_memreq_pending_f(void) | ||
364 | { | ||
365 | return 0x1U; | ||
366 | } | ||
367 | static inline u32 pbdma_intr_0_memack_timeout_pending_f(void) | ||
368 | { | ||
369 | return 0x2U; | ||
370 | } | ||
371 | static inline u32 pbdma_intr_0_memack_extra_pending_f(void) | ||
372 | { | ||
373 | return 0x4U; | ||
374 | } | ||
375 | static inline u32 pbdma_intr_0_memdat_timeout_pending_f(void) | ||
376 | { | ||
377 | return 0x8U; | ||
378 | } | ||
379 | static inline u32 pbdma_intr_0_memdat_extra_pending_f(void) | ||
380 | { | ||
381 | return 0x10U; | ||
382 | } | ||
383 | static inline u32 pbdma_intr_0_memflush_pending_f(void) | ||
384 | { | ||
385 | return 0x20U; | ||
386 | } | ||
387 | static inline u32 pbdma_intr_0_memop_pending_f(void) | ||
388 | { | ||
389 | return 0x40U; | ||
390 | } | ||
391 | static inline u32 pbdma_intr_0_lbconnect_pending_f(void) | ||
392 | { | ||
393 | return 0x80U; | ||
394 | } | ||
395 | static inline u32 pbdma_intr_0_lbreq_pending_f(void) | ||
396 | { | ||
397 | return 0x100U; | ||
398 | } | ||
399 | static inline u32 pbdma_intr_0_lback_timeout_pending_f(void) | ||
400 | { | ||
401 | return 0x200U; | ||
402 | } | ||
403 | static inline u32 pbdma_intr_0_lback_extra_pending_f(void) | ||
404 | { | ||
405 | return 0x400U; | ||
406 | } | ||
407 | static inline u32 pbdma_intr_0_lbdat_timeout_pending_f(void) | ||
408 | { | ||
409 | return 0x800U; | ||
410 | } | ||
411 | static inline u32 pbdma_intr_0_lbdat_extra_pending_f(void) | ||
412 | { | ||
413 | return 0x1000U; | ||
414 | } | ||
415 | static inline u32 pbdma_intr_0_gpfifo_pending_f(void) | ||
416 | { | ||
417 | return 0x2000U; | ||
418 | } | ||
419 | static inline u32 pbdma_intr_0_gpptr_pending_f(void) | ||
420 | { | ||
421 | return 0x4000U; | ||
422 | } | ||
423 | static inline u32 pbdma_intr_0_gpentry_pending_f(void) | ||
424 | { | ||
425 | return 0x8000U; | ||
426 | } | ||
427 | static inline u32 pbdma_intr_0_gpcrc_pending_f(void) | ||
428 | { | ||
429 | return 0x10000U; | ||
430 | } | ||
431 | static inline u32 pbdma_intr_0_pbptr_pending_f(void) | ||
432 | { | ||
433 | return 0x20000U; | ||
434 | } | ||
435 | static inline u32 pbdma_intr_0_pbentry_pending_f(void) | ||
436 | { | ||
437 | return 0x40000U; | ||
438 | } | ||
439 | static inline u32 pbdma_intr_0_pbcrc_pending_f(void) | ||
440 | { | ||
441 | return 0x80000U; | ||
442 | } | ||
443 | static inline u32 pbdma_intr_0_xbarconnect_pending_f(void) | ||
444 | { | ||
445 | return 0x100000U; | ||
446 | } | ||
447 | static inline u32 pbdma_intr_0_method_pending_f(void) | ||
448 | { | ||
449 | return 0x200000U; | ||
450 | } | ||
451 | static inline u32 pbdma_intr_0_methodcrc_pending_f(void) | ||
452 | { | ||
453 | return 0x400000U; | ||
454 | } | ||
455 | static inline u32 pbdma_intr_0_device_pending_f(void) | ||
456 | { | ||
457 | return 0x800000U; | ||
458 | } | ||
459 | static inline u32 pbdma_intr_0_semaphore_pending_f(void) | ||
460 | { | ||
461 | return 0x2000000U; | ||
462 | } | ||
463 | static inline u32 pbdma_intr_0_acquire_pending_f(void) | ||
464 | { | ||
465 | return 0x4000000U; | ||
466 | } | ||
467 | static inline u32 pbdma_intr_0_pri_pending_f(void) | ||
468 | { | ||
469 | return 0x8000000U; | ||
470 | } | ||
471 | static inline u32 pbdma_intr_0_no_ctxsw_seg_pending_f(void) | ||
472 | { | ||
473 | return 0x20000000U; | ||
474 | } | ||
475 | static inline u32 pbdma_intr_0_pbseg_pending_f(void) | ||
476 | { | ||
477 | return 0x40000000U; | ||
478 | } | ||
479 | static inline u32 pbdma_intr_0_signature_pending_f(void) | ||
480 | { | ||
481 | return 0x80000000U; | ||
482 | } | ||
483 | static inline u32 pbdma_intr_1_r(u32 i) | ||
484 | { | ||
485 | return 0x00040148U + i*8192U; | ||
486 | } | ||
487 | static inline u32 pbdma_intr_en_0_r(u32 i) | ||
488 | { | ||
489 | return 0x0004010cU + i*8192U; | ||
490 | } | ||
491 | static inline u32 pbdma_intr_en_0_lbreq_enabled_f(void) | ||
492 | { | ||
493 | return 0x100U; | ||
494 | } | ||
495 | static inline u32 pbdma_intr_en_1_r(u32 i) | ||
496 | { | ||
497 | return 0x0004014cU + i*8192U; | ||
498 | } | ||
499 | static inline u32 pbdma_intr_stall_r(u32 i) | ||
500 | { | ||
501 | return 0x0004013cU + i*8192U; | ||
502 | } | ||
503 | static inline u32 pbdma_intr_stall_lbreq_enabled_f(void) | ||
504 | { | ||
505 | return 0x100U; | ||
506 | } | ||
507 | static inline u32 pbdma_intr_stall_1_r(u32 i) | ||
508 | { | ||
509 | return 0x00040140U + i*8192U; | ||
510 | } | ||
511 | static inline u32 pbdma_intr_stall_1_hce_illegal_op_enabled_f(void) | ||
512 | { | ||
513 | return 0x1U; | ||
514 | } | ||
515 | static inline u32 pbdma_udma_nop_r(void) | ||
516 | { | ||
517 | return 0x00000008U; | ||
518 | } | ||
519 | static inline u32 pbdma_runlist_timeslice_r(u32 i) | ||
520 | { | ||
521 | return 0x000400f8U + i*8192U; | ||
522 | } | ||
523 | static inline u32 pbdma_runlist_timeslice_timeout_128_f(void) | ||
524 | { | ||
525 | return 0x80U; | ||
526 | } | ||
527 | static inline u32 pbdma_runlist_timeslice_timescale_3_f(void) | ||
528 | { | ||
529 | return 0x3000U; | ||
530 | } | ||
531 | static inline u32 pbdma_runlist_timeslice_enable_true_f(void) | ||
532 | { | ||
533 | return 0x10000000U; | ||
534 | } | ||
535 | #endif | ||