aboutsummaryrefslogtreecommitdiffstats
path: root/include/nvgpu/hw/gm20b
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/gm20b
parent8340d234d78a7d0f46c11a584de538148b78b7cb (diff)
Delete no-longer-needed nvgpu headersHEADmasterjbakita-wip
The dependency on these was removed in commit 8340d234.
Diffstat (limited to 'include/nvgpu/hw/gm20b')
-rw-r--r--include/nvgpu/hw/gm20b/hw_bus_gm20b.h223
-rw-r--r--include/nvgpu/hw/gm20b/hw_ccsr_gm20b.h163
-rw-r--r--include/nvgpu/hw/gm20b/hw_ce2_gm20b.h87
-rw-r--r--include/nvgpu/hw/gm20b/hw_ctxsw_prog_gm20b.h475
-rw-r--r--include/nvgpu/hw/gm20b/hw_falcon_gm20b.h599
-rw-r--r--include/nvgpu/hw/gm20b/hw_fb_gm20b.h339
-rw-r--r--include/nvgpu/hw/gm20b/hw_fifo_gm20b.h571
-rw-r--r--include/nvgpu/hw/gm20b/hw_flush_gm20b.h187
-rw-r--r--include/nvgpu/hw/gm20b/hw_fuse_gm20b.h147
-rw-r--r--include/nvgpu/hw/gm20b/hw_gmmu_gm20b.h283
-rw-r--r--include/nvgpu/hw/gm20b/hw_gr_gm20b.h3939
-rw-r--r--include/nvgpu/hw/gm20b/hw_ltc_gm20b.h527
-rw-r--r--include/nvgpu/hw/gm20b/hw_mc_gm20b.h287
-rw-r--r--include/nvgpu/hw/gm20b/hw_pbdma_gm20b.h579
-rw-r--r--include/nvgpu/hw/gm20b/hw_perf_gm20b.h219
-rw-r--r--include/nvgpu/hw/gm20b/hw_pram_gm20b.h63
-rw-r--r--include/nvgpu/hw/gm20b/hw_pri_ringmaster_gm20b.h167
-rw-r--r--include/nvgpu/hw/gm20b/hw_pri_ringstation_gpc_gm20b.h79
-rw-r--r--include/nvgpu/hw/gm20b/hw_pri_ringstation_sys_gm20b.h91
-rw-r--r--include/nvgpu/hw/gm20b/hw_proj_gm20b.h171
-rw-r--r--include/nvgpu/hw/gm20b/hw_pwr_gm20b.h879
-rw-r--r--include/nvgpu/hw/gm20b/hw_ram_gm20b.h459
-rw-r--r--include/nvgpu/hw/gm20b/hw_therm_gm20b.h355
-rw-r--r--include/nvgpu/hw/gm20b/hw_timer_gm20b.h127
-rw-r--r--include/nvgpu/hw/gm20b/hw_top_gm20b.h235
-rw-r--r--include/nvgpu/hw/gm20b/hw_trim_gm20b.h503
26 files changed, 0 insertions, 11754 deletions
diff --git a/include/nvgpu/hw/gm20b/hw_bus_gm20b.h b/include/nvgpu/hw/gm20b/hw_bus_gm20b.h
deleted file mode 100644
index 15cddae..0000000
--- a/include/nvgpu/hw/gm20b/hw_bus_gm20b.h
+++ /dev/null
@@ -1,223 +0,0 @@
1/*
2 * Copyright (c) 2014-2017, 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_bus_gm20b_h_
57#define _hw_bus_gm20b_h_
58
59static inline u32 bus_bar0_window_r(void)
60{
61 return 0x00001700U;
62}
63static inline u32 bus_bar0_window_base_f(u32 v)
64{
65 return (v & 0xffffffU) << 0U;
66}
67static inline u32 bus_bar0_window_target_vid_mem_f(void)
68{
69 return 0x0U;
70}
71static inline u32 bus_bar0_window_target_sys_mem_coherent_f(void)
72{
73 return 0x2000000U;
74}
75static inline u32 bus_bar0_window_target_sys_mem_noncoherent_f(void)
76{
77 return 0x3000000U;
78}
79static inline u32 bus_bar0_window_target_bar0_window_base_shift_v(void)
80{
81 return 0x00000010U;
82}
83static inline u32 bus_bar1_block_r(void)
84{
85 return 0x00001704U;
86}
87static inline u32 bus_bar1_block_ptr_f(u32 v)
88{
89 return (v & 0xfffffffU) << 0U;
90}
91static inline u32 bus_bar1_block_target_vid_mem_f(void)
92{
93 return 0x0U;
94}
95static inline u32 bus_bar1_block_target_sys_mem_coh_f(void)
96{
97 return 0x20000000U;
98}
99static inline u32 bus_bar1_block_target_sys_mem_ncoh_f(void)
100{
101 return 0x30000000U;
102}
103static inline u32 bus_bar1_block_mode_virtual_f(void)
104{
105 return 0x80000000U;
106}
107static inline u32 bus_bar2_block_r(void)
108{
109 return 0x00001714U;
110}
111static inline u32 bus_bar2_block_ptr_f(u32 v)
112{
113 return (v & 0xfffffffU) << 0U;
114}
115static inline u32 bus_bar2_block_target_vid_mem_f(void)
116{
117 return 0x0U;
118}
119static inline u32 bus_bar2_block_target_sys_mem_coh_f(void)
120{
121 return 0x20000000U;
122}
123static inline u32 bus_bar2_block_target_sys_mem_ncoh_f(void)
124{
125 return 0x30000000U;
126}
127static inline u32 bus_bar2_block_mode_virtual_f(void)
128{
129 return 0x80000000U;
130}
131static inline u32 bus_bar1_block_ptr_shift_v(void)
132{
133 return 0x0000000cU;
134}
135static inline u32 bus_bar2_block_ptr_shift_v(void)
136{
137 return 0x0000000cU;
138}
139static inline u32 bus_bind_status_r(void)
140{
141 return 0x00001710U;
142}
143static inline u32 bus_bind_status_bar1_pending_v(u32 r)
144{
145 return (r >> 0U) & 0x1U;
146}
147static inline u32 bus_bind_status_bar1_pending_empty_f(void)
148{
149 return 0x0U;
150}
151static inline u32 bus_bind_status_bar1_pending_busy_f(void)
152{
153 return 0x1U;
154}
155static inline u32 bus_bind_status_bar1_outstanding_v(u32 r)
156{
157 return (r >> 1U) & 0x1U;
158}
159static inline u32 bus_bind_status_bar1_outstanding_false_f(void)
160{
161 return 0x0U;
162}
163static inline u32 bus_bind_status_bar1_outstanding_true_f(void)
164{
165 return 0x2U;
166}
167static inline u32 bus_bind_status_bar2_pending_v(u32 r)
168{
169 return (r >> 2U) & 0x1U;
170}
171static inline u32 bus_bind_status_bar2_pending_empty_f(void)
172{
173 return 0x0U;
174}
175static inline u32 bus_bind_status_bar2_pending_busy_f(void)
176{
177 return 0x4U;
178}
179static inline u32 bus_bind_status_bar2_outstanding_v(u32 r)
180{
181 return (r >> 3U) & 0x1U;
182}
183static inline u32 bus_bind_status_bar2_outstanding_false_f(void)
184{
185 return 0x0U;
186}
187static inline u32 bus_bind_status_bar2_outstanding_true_f(void)
188{
189 return 0x8U;
190}
191static inline u32 bus_intr_0_r(void)
192{
193 return 0x00001100U;
194}
195static inline u32 bus_intr_0_pri_squash_m(void)
196{
197 return 0x1U << 1U;
198}
199static inline u32 bus_intr_0_pri_fecserr_m(void)
200{
201 return 0x1U << 2U;
202}
203static inline u32 bus_intr_0_pri_timeout_m(void)
204{
205 return 0x1U << 3U;
206}
207static inline u32 bus_intr_en_0_r(void)
208{
209 return 0x00001140U;
210}
211static inline u32 bus_intr_en_0_pri_squash_m(void)
212{
213 return 0x1U << 1U;
214}
215static inline u32 bus_intr_en_0_pri_fecserr_m(void)
216{
217 return 0x1U << 2U;
218}
219static inline u32 bus_intr_en_0_pri_timeout_m(void)
220{
221 return 0x1U << 3U;
222}
223#endif
diff --git a/include/nvgpu/hw/gm20b/hw_ccsr_gm20b.h b/include/nvgpu/hw/gm20b/hw_ccsr_gm20b.h
deleted file mode 100644
index adfce72..0000000
--- a/include/nvgpu/hw/gm20b/hw_ccsr_gm20b.h
+++ /dev/null
@@ -1,163 +0,0 @@
1/*
2 * Copyright (c) 2014-2017, 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_ccsr_gm20b_h_
57#define _hw_ccsr_gm20b_h_
58
59static inline u32 ccsr_channel_inst_r(u32 i)
60{
61 return 0x00800000U + i*8U;
62}
63static inline u32 ccsr_channel_inst__size_1_v(void)
64{
65 return 0x00000200U;
66}
67static inline u32 ccsr_channel_inst_ptr_f(u32 v)
68{
69 return (v & 0xfffffffU) << 0U;
70}
71static inline u32 ccsr_channel_inst_target_vid_mem_f(void)
72{
73 return 0x0U;
74}
75static inline u32 ccsr_channel_inst_target_sys_mem_coh_f(void)
76{
77 return 0x20000000U;
78}
79static inline u32 ccsr_channel_inst_target_sys_mem_ncoh_f(void)
80{
81 return 0x30000000U;
82}
83static inline u32 ccsr_channel_inst_bind_false_f(void)
84{
85 return 0x0U;
86}
87static inline u32 ccsr_channel_inst_bind_true_f(void)
88{
89 return 0x80000000U;
90}
91static inline u32 ccsr_channel_r(u32 i)
92{
93 return 0x00800004U + i*8U;
94}
95static inline u32 ccsr_channel__size_1_v(void)
96{
97 return 0x00000200U;
98}
99static inline u32 ccsr_channel_enable_v(u32 r)
100{
101 return (r >> 0U) & 0x1U;
102}
103static inline u32 ccsr_channel_enable_set_f(u32 v)
104{
105 return (v & 0x1U) << 10U;
106}
107static inline u32 ccsr_channel_enable_set_true_f(void)
108{
109 return 0x400U;
110}
111static inline u32 ccsr_channel_enable_clr_true_f(void)
112{
113 return 0x800U;
114}
115static inline u32 ccsr_channel_status_v(u32 r)
116{
117 return (r >> 24U) & 0xfU;
118}
119static inline u32 ccsr_channel_status_pending_ctx_reload_v(void)
120{
121 return 0x00000002U;
122}
123static inline u32 ccsr_channel_status_pending_acq_ctx_reload_v(void)
124{
125 return 0x00000004U;
126}
127static inline u32 ccsr_channel_status_on_pbdma_ctx_reload_v(void)
128{
129 return 0x0000000aU;
130}
131static inline u32 ccsr_channel_status_on_pbdma_and_eng_ctx_reload_v(void)
132{
133 return 0x0000000bU;
134}
135static inline u32 ccsr_channel_status_on_eng_ctx_reload_v(void)
136{
137 return 0x0000000cU;
138}
139static inline u32 ccsr_channel_status_on_eng_pending_ctx_reload_v(void)
140{
141 return 0x0000000dU;
142}
143static inline u32 ccsr_channel_status_on_eng_pending_acq_ctx_reload_v(void)
144{
145 return 0x0000000eU;
146}
147static inline u32 ccsr_channel_next_v(u32 r)
148{
149 return (r >> 1U) & 0x1U;
150}
151static inline u32 ccsr_channel_next_true_v(void)
152{
153 return 0x00000001U;
154}
155static inline u32 ccsr_channel_force_ctx_reload_true_f(void)
156{
157 return 0x100U;
158}
159static inline u32 ccsr_channel_busy_v(u32 r)
160{
161 return (r >> 28U) & 0x1U;
162}
163#endif
diff --git a/include/nvgpu/hw/gm20b/hw_ce2_gm20b.h b/include/nvgpu/hw/gm20b/hw_ce2_gm20b.h
deleted file mode 100644
index fb741a7..0000000
--- a/include/nvgpu/hw/gm20b/hw_ce2_gm20b.h
+++ /dev/null
@@ -1,87 +0,0 @@
1/*
2 * Copyright (c) 2015-2017, 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_ce2_gm20b_h_
57#define _hw_ce2_gm20b_h_
58
59static inline u32 ce2_intr_status_r(void)
60{
61 return 0x00106908U;
62}
63static inline u32 ce2_intr_status_blockpipe_pending_f(void)
64{
65 return 0x1U;
66}
67static inline u32 ce2_intr_status_blockpipe_reset_f(void)
68{
69 return 0x1U;
70}
71static inline u32 ce2_intr_status_nonblockpipe_pending_f(void)
72{
73 return 0x2U;
74}
75static inline u32 ce2_intr_status_nonblockpipe_reset_f(void)
76{
77 return 0x2U;
78}
79static inline u32 ce2_intr_status_launcherr_pending_f(void)
80{
81 return 0x4U;
82}
83static inline u32 ce2_intr_status_launcherr_reset_f(void)
84{
85 return 0x4U;
86}
87#endif
diff --git a/include/nvgpu/hw/gm20b/hw_ctxsw_prog_gm20b.h b/include/nvgpu/hw/gm20b/hw_ctxsw_prog_gm20b.h
deleted file mode 100644
index 6b5632a..0000000
--- a/include/nvgpu/hw/gm20b/hw_ctxsw_prog_gm20b.h
+++ /dev/null
@@ -1,475 +0,0 @@
1/*
2 * Copyright (c) 2014-2020, 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_ctxsw_prog_gm20b_h_
57#define _hw_ctxsw_prog_gm20b_h_
58
59static inline u32 ctxsw_prog_fecs_header_v(void)
60{
61 return 0x00000100U;
62}
63static inline u32 ctxsw_prog_main_image_num_gpcs_o(void)
64{
65 return 0x00000008U;
66}
67static inline u32 ctxsw_prog_main_image_ctl_o(void)
68{
69 return 0x0000000cU;
70}
71static inline u32 ctxsw_prog_main_image_ctl_cde_enabled_f(void)
72{
73 return 0x400U;
74}
75static inline u32 ctxsw_prog_main_image_ctl_cde_disabled_f(void)
76{
77 return 0x0U;
78}
79static inline u32 ctxsw_prog_main_image_patch_count_o(void)
80{
81 return 0x00000010U;
82}
83static inline u32 ctxsw_prog_main_image_context_id_o(void)
84{
85 return 0x000000f0U;
86}
87static inline u32 ctxsw_prog_main_image_patch_adr_lo_o(void)
88{
89 return 0x00000014U;
90}
91static inline u32 ctxsw_prog_main_image_patch_adr_hi_o(void)
92{
93 return 0x00000018U;
94}
95static inline u32 ctxsw_prog_main_image_zcull_o(void)
96{
97 return 0x0000001cU;
98}
99static inline u32 ctxsw_prog_main_image_zcull_mode_no_ctxsw_v(void)
100{
101 return 0x00000001U;
102}
103static inline u32 ctxsw_prog_main_image_zcull_mode_separate_buffer_v(void)
104{
105 return 0x00000002U;
106}
107static inline u32 ctxsw_prog_main_image_zcull_ptr_o(void)
108{
109 return 0x00000020U;
110}
111static inline u32 ctxsw_prog_main_image_pm_o(void)
112{
113 return 0x00000028U;
114}
115static inline u32 ctxsw_prog_main_image_pm_mode_m(void)
116{
117 return 0x7U << 0U;
118}
119static inline u32 ctxsw_prog_main_image_pm_mode_ctxsw_f(void)
120{
121 return 0x1U;
122}
123static inline u32 ctxsw_prog_main_image_pm_mode_no_ctxsw_f(void)
124{
125 return 0x0U;
126}
127static inline u32 ctxsw_prog_main_image_pm_smpc_mode_m(void)
128{
129 return 0x7U << 3U;
130}
131static inline u32 ctxsw_prog_main_image_pm_smpc_mode_ctxsw_f(void)
132{
133 return 0x8U;
134}
135static inline u32 ctxsw_prog_main_image_pm_smpc_mode_no_ctxsw_f(void)
136{
137 return 0x0U;
138}
139static inline u32 ctxsw_prog_main_image_pm_pc_sampling_f(u32 v)
140{
141 return (v & 0x1U) << 6U;
142}
143static inline u32 ctxsw_prog_main_image_pm_pc_sampling_m(void)
144{
145 return 0x1U << 6U;
146}
147static inline u32 ctxsw_prog_main_image_pm_ptr_o(void)
148{
149 return 0x0000002cU;
150}
151static inline u32 ctxsw_prog_main_image_num_save_ops_o(void)
152{
153 return 0x000000f4U;
154}
155static inline u32 ctxsw_prog_main_image_num_restore_ops_o(void)
156{
157 return 0x000000f8U;
158}
159static inline u32 ctxsw_prog_main_image_magic_value_o(void)
160{
161 return 0x000000fcU;
162}
163static inline u32 ctxsw_prog_main_image_magic_value_v_value_v(void)
164{
165 return 0x600dc0deU;
166}
167static inline u32 ctxsw_prog_local_priv_register_ctl_o(void)
168{
169 return 0x0000000cU;
170}
171static inline u32 ctxsw_prog_local_priv_register_ctl_offset_v(u32 r)
172{
173 return (r >> 0U) & 0xffffU;
174}
175static inline u32 ctxsw_prog_local_image_ppc_info_o(void)
176{
177 return 0x000000f4U;
178}
179static inline u32 ctxsw_prog_local_image_ppc_info_num_ppcs_v(u32 r)
180{
181 return (r >> 0U) & 0xffffU;
182}
183static inline u32 ctxsw_prog_local_image_ppc_info_ppc_mask_v(u32 r)
184{
185 return (r >> 16U) & 0xffffU;
186}
187static inline u32 ctxsw_prog_local_image_num_tpcs_o(void)
188{
189 return 0x000000f8U;
190}
191static inline u32 ctxsw_prog_local_magic_value_o(void)
192{
193 return 0x000000fcU;
194}
195static inline u32 ctxsw_prog_local_magic_value_v_value_v(void)
196{
197 return 0xad0becabU;
198}
199static inline u32 ctxsw_prog_main_extended_buffer_ctl_o(void)
200{
201 return 0x000000ecU;
202}
203static inline u32 ctxsw_prog_main_extended_buffer_ctl_offset_v(u32 r)
204{
205 return (r >> 0U) & 0xffffU;
206}
207static inline u32 ctxsw_prog_main_extended_buffer_ctl_size_v(u32 r)
208{
209 return (r >> 16U) & 0xffU;
210}
211static inline u32 ctxsw_prog_extended_buffer_segments_size_in_bytes_v(void)
212{
213 return 0x00000100U;
214}
215static inline u32 ctxsw_prog_extended_marker_size_in_bytes_v(void)
216{
217 return 0x00000004U;
218}
219static inline u32 ctxsw_prog_extended_sm_dsm_perf_counter_register_stride_v(void)
220{
221 return 0x00000000U;
222}
223static inline u32 ctxsw_prog_extended_sm_dsm_perf_counter_control_register_stride_v(void)
224{
225 return 0x00000002U;
226}
227static inline u32 ctxsw_prog_main_image_priv_access_map_config_o(void)
228{
229 return 0x000000a0U;
230}
231static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_s(void)
232{
233 return 2U;
234}
235static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_f(u32 v)
236{
237 return (v & 0x3U) << 0U;
238}
239static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_m(void)
240{
241 return 0x3U << 0U;
242}
243static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_v(u32 r)
244{
245 return (r >> 0U) & 0x3U;
246}
247static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_allow_all_f(void)
248{
249 return 0x0U;
250}
251static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_use_map_f(void)
252{
253 return 0x2U;
254}
255static inline u32 ctxsw_prog_main_image_priv_access_map_addr_lo_o(void)
256{
257 return 0x000000a4U;
258}
259static inline u32 ctxsw_prog_main_image_priv_access_map_addr_hi_o(void)
260{
261 return 0x000000a8U;
262}
263static inline u32 ctxsw_prog_main_image_misc_options_o(void)
264{
265 return 0x0000003cU;
266}
267static inline u32 ctxsw_prog_main_image_misc_options_verif_features_m(void)
268{
269 return 0x1U << 3U;
270}
271static inline u32 ctxsw_prog_main_image_misc_options_verif_features_disabled_f(void)
272{
273 return 0x0U;
274}
275static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_control_o(void)
276{
277 return 0x000000acU;
278}
279static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_control_num_records_f(u32 v)
280{
281 return (v & 0xffffU) << 0U;
282}
283static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_ptr_hi_o(void)
284{
285 return 0x000000b0U;
286}
287static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_ptr_hi_v_m(void)
288{
289 return 0xfffffffU << 0U;
290}
291static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_ptr_hi_target_m(void)
292{
293 return 0x3U << 28U;
294}
295static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_ptr_hi_target_vid_mem_f(void)
296{
297 return 0x0U;
298}
299static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_ptr_hi_target_sys_mem_coherent_f(void)
300{
301 return 0x20000000U;
302}
303static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_ptr_hi_target_sys_mem_noncoherent_f(void)
304{
305 return 0x30000000U;
306}
307static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_ptr_o(void)
308{
309 return 0x000000b4U;
310}
311static inline u32 ctxsw_prog_main_image_context_timestamp_buffer_ptr_v_f(u32 v)
312{
313 return (v & 0xffffffffU) << 0U;
314}
315static inline u32 ctxsw_prog_record_timestamp_record_size_in_bytes_v(void)
316{
317 return 0x00000080U;
318}
319static inline u32 ctxsw_prog_record_timestamp_record_size_in_words_v(void)
320{
321 return 0x00000020U;
322}
323static inline u32 ctxsw_prog_record_timestamp_magic_value_lo_o(void)
324{
325 return 0x00000000U;
326}
327static inline u32 ctxsw_prog_record_timestamp_magic_value_lo_v_value_v(void)
328{
329 return 0x00000000U;
330}
331static inline u32 ctxsw_prog_record_timestamp_magic_value_hi_o(void)
332{
333 return 0x00000004U;
334}
335static inline u32 ctxsw_prog_record_timestamp_magic_value_hi_v_value_v(void)
336{
337 return 0x600dbeefU;
338}
339static inline u32 ctxsw_prog_record_timestamp_context_id_o(void)
340{
341 return 0x00000008U;
342}
343static inline u32 ctxsw_prog_record_timestamp_context_ptr_o(void)
344{
345 return 0x0000000cU;
346}
347static inline u32 ctxsw_prog_record_timestamp_new_context_id_o(void)
348{
349 return 0x00000010U;
350}
351static inline u32 ctxsw_prog_record_timestamp_new_context_ptr_o(void)
352{
353 return 0x00000014U;
354}
355static inline u32 ctxsw_prog_record_timestamp_timestamp_lo_o(void)
356{
357 return 0x00000018U;
358}
359static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_o(void)
360{
361 return 0x0000001cU;
362}
363static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_v_f(u32 v)
364{
365 return (v & 0xffffffU) << 0U;
366}
367static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_v_v(u32 r)
368{
369 return (r >> 0U) & 0xffffffU;
370}
371static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_f(u32 v)
372{
373 return (v & 0xffU) << 24U;
374}
375static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_m(void)
376{
377 return 0xffU << 24U;
378}
379static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_v(u32 r)
380{
381 return (r >> 24U) & 0xffU;
382}
383static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_ctxsw_req_by_host_v(void)
384{
385 return 0x00000001U;
386}
387static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_ctxsw_req_by_host_f(void)
388{
389 return 0x1000000U;
390}
391static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_v(void)
392{
393 return 0x00000002U;
394}
395static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_f(void)
396{
397 return 0x2000000U;
398}
399static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_wfi_v(void)
400{
401 return 0x0000000aU;
402}
403static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_wfi_f(void)
404{
405 return 0xa000000U;
406}
407static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_gfxp_v(void)
408{
409 return 0x0000000bU;
410}
411static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_gfxp_f(void)
412{
413 return 0xb000000U;
414}
415static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_ctap_v(void)
416{
417 return 0x0000000cU;
418}
419static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_ctap_f(void)
420{
421 return 0xc000000U;
422}
423static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_cilp_v(void)
424{
425 return 0x0000000dU;
426}
427static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_fe_ack_cilp_f(void)
428{
429 return 0xd000000U;
430}
431static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_save_end_v(void)
432{
433 return 0x00000003U;
434}
435static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_save_end_f(void)
436{
437 return 0x3000000U;
438}
439static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_restore_start_v(void)
440{
441 return 0x00000004U;
442}
443static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_restore_start_f(void)
444{
445 return 0x4000000U;
446}
447static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_context_start_v(void)
448{
449 return 0x00000005U;
450}
451static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_context_start_f(void)
452{
453 return 0x5000000U;
454}
455static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_invalid_timestamp_v(void)
456{
457 return 0x000000ffU;
458}
459static inline u32 ctxsw_prog_record_timestamp_timestamp_hi_tag_invalid_timestamp_f(void)
460{
461 return 0xff000000U;
462}
463static inline u32 ctxsw_prog_main_image_preemption_options_o(void)
464{
465 return 0x00000060U;
466}
467static inline u32 ctxsw_prog_main_image_preemption_options_control_f(u32 v)
468{
469 return (v & 0x3U) << 0U;
470}
471static inline u32 ctxsw_prog_main_image_preemption_options_control_cta_enabled_f(void)
472{
473 return 0x1U;
474}
475#endif
diff --git a/include/nvgpu/hw/gm20b/hw_falcon_gm20b.h b/include/nvgpu/hw/gm20b/hw_falcon_gm20b.h
deleted file mode 100644
index c598568..0000000
--- a/include/nvgpu/hw/gm20b/hw_falcon_gm20b.h
+++ /dev/null
@@ -1,599 +0,0 @@
1/*
2 * Copyright (c) 2017-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_falcon_gm20b_h_
57#define _hw_falcon_gm20b_h_
58
59static inline u32 falcon_falcon_irqsset_r(void)
60{
61 return 0x00000000U;
62}
63static inline u32 falcon_falcon_irqsset_swgen0_set_f(void)
64{
65 return 0x40U;
66}
67static inline u32 falcon_falcon_irqsclr_r(void)
68{
69 return 0x00000004U;
70}
71static inline u32 falcon_falcon_irqstat_r(void)
72{
73 return 0x00000008U;
74}
75static inline u32 falcon_falcon_irqstat_halt_true_f(void)
76{
77 return 0x10U;
78}
79static inline u32 falcon_falcon_irqstat_exterr_true_f(void)
80{
81 return 0x20U;
82}
83static inline u32 falcon_falcon_irqstat_swgen0_true_f(void)
84{
85 return 0x40U;
86}
87static inline u32 falcon_falcon_irqmode_r(void)
88{
89 return 0x0000000cU;
90}
91static inline u32 falcon_falcon_irqmset_r(void)
92{
93 return 0x00000010U;
94}
95static inline u32 falcon_falcon_irqmset_gptmr_f(u32 v)
96{
97 return (v & 0x1U) << 0U;
98}
99static inline u32 falcon_falcon_irqmset_wdtmr_f(u32 v)
100{
101 return (v & 0x1U) << 1U;
102}
103static inline u32 falcon_falcon_irqmset_mthd_f(u32 v)
104{
105 return (v & 0x1U) << 2U;
106}
107static inline u32 falcon_falcon_irqmset_ctxsw_f(u32 v)
108{
109 return (v & 0x1U) << 3U;
110}
111static inline u32 falcon_falcon_irqmset_halt_f(u32 v)
112{
113 return (v & 0x1U) << 4U;
114}
115static inline u32 falcon_falcon_irqmset_exterr_f(u32 v)
116{
117 return (v & 0x1U) << 5U;
118}
119static inline u32 falcon_falcon_irqmset_swgen0_f(u32 v)
120{
121 return (v & 0x1U) << 6U;
122}
123static inline u32 falcon_falcon_irqmset_swgen1_f(u32 v)
124{
125 return (v & 0x1U) << 7U;
126}
127static inline u32 falcon_falcon_irqmclr_r(void)
128{
129 return 0x00000014U;
130}
131static inline u32 falcon_falcon_irqmclr_gptmr_f(u32 v)
132{
133 return (v & 0x1U) << 0U;
134}
135static inline u32 falcon_falcon_irqmclr_wdtmr_f(u32 v)
136{
137 return (v & 0x1U) << 1U;
138}
139static inline u32 falcon_falcon_irqmclr_mthd_f(u32 v)
140{
141 return (v & 0x1U) << 2U;
142}
143static inline u32 falcon_falcon_irqmclr_ctxsw_f(u32 v)
144{
145 return (v & 0x1U) << 3U;
146}
147static inline u32 falcon_falcon_irqmclr_halt_f(u32 v)
148{
149 return (v & 0x1U) << 4U;
150}
151static inline u32 falcon_falcon_irqmclr_exterr_f(u32 v)
152{
153 return (v & 0x1U) << 5U;
154}
155static inline u32 falcon_falcon_irqmclr_swgen0_f(u32 v)
156{
157 return (v & 0x1U) << 6U;
158}
159static inline u32 falcon_falcon_irqmclr_swgen1_f(u32 v)
160{
161 return (v & 0x1U) << 7U;
162}
163static inline u32 falcon_falcon_irqmclr_ext_f(u32 v)
164{
165 return (v & 0xffU) << 8U;
166}
167static inline u32 falcon_falcon_irqmask_r(void)
168{
169 return 0x00000018U;
170}
171static inline u32 falcon_falcon_irqdest_r(void)
172{
173 return 0x0000001cU;
174}
175static inline u32 falcon_falcon_irqdest_host_gptmr_f(u32 v)
176{
177 return (v & 0x1U) << 0U;
178}
179static inline u32 falcon_falcon_irqdest_host_wdtmr_f(u32 v)
180{
181 return (v & 0x1U) << 1U;
182}
183static inline u32 falcon_falcon_irqdest_host_mthd_f(u32 v)
184{
185 return (v & 0x1U) << 2U;
186}
187static inline u32 falcon_falcon_irqdest_host_ctxsw_f(u32 v)
188{
189 return (v & 0x1U) << 3U;
190}
191static inline u32 falcon_falcon_irqdest_host_halt_f(u32 v)
192{
193 return (v & 0x1U) << 4U;
194}
195static inline u32 falcon_falcon_irqdest_host_exterr_f(u32 v)
196{
197 return (v & 0x1U) << 5U;
198}
199static inline u32 falcon_falcon_irqdest_host_swgen0_f(u32 v)
200{
201 return (v & 0x1U) << 6U;
202}
203static inline u32 falcon_falcon_irqdest_host_swgen1_f(u32 v)
204{
205 return (v & 0x1U) << 7U;
206}
207static inline u32 falcon_falcon_irqdest_host_ext_f(u32 v)
208{
209 return (v & 0xffU) << 8U;
210}
211static inline u32 falcon_falcon_irqdest_target_gptmr_f(u32 v)
212{
213 return (v & 0x1U) << 16U;
214}
215static inline u32 falcon_falcon_irqdest_target_wdtmr_f(u32 v)
216{
217 return (v & 0x1U) << 17U;
218}
219static inline u32 falcon_falcon_irqdest_target_mthd_f(u32 v)
220{
221 return (v & 0x1U) << 18U;
222}
223static inline u32 falcon_falcon_irqdest_target_ctxsw_f(u32 v)
224{
225 return (v & 0x1U) << 19U;
226}
227static inline u32 falcon_falcon_irqdest_target_halt_f(u32 v)
228{
229 return (v & 0x1U) << 20U;
230}
231static inline u32 falcon_falcon_irqdest_target_exterr_f(u32 v)
232{
233 return (v & 0x1U) << 21U;
234}
235static inline u32 falcon_falcon_irqdest_target_swgen0_f(u32 v)
236{
237 return (v & 0x1U) << 22U;
238}
239static inline u32 falcon_falcon_irqdest_target_swgen1_f(u32 v)
240{
241 return (v & 0x1U) << 23U;
242}
243static inline u32 falcon_falcon_irqdest_target_ext_f(u32 v)
244{
245 return (v & 0xffU) << 24U;
246}
247static inline u32 falcon_falcon_curctx_r(void)
248{
249 return 0x00000050U;
250}
251static inline u32 falcon_falcon_nxtctx_r(void)
252{
253 return 0x00000054U;
254}
255static inline u32 falcon_falcon_mailbox0_r(void)
256{
257 return 0x00000040U;
258}
259static inline u32 falcon_falcon_mailbox1_r(void)
260{
261 return 0x00000044U;
262}
263static inline u32 falcon_falcon_itfen_r(void)
264{
265 return 0x00000048U;
266}
267static inline u32 falcon_falcon_itfen_ctxen_enable_f(void)
268{
269 return 0x1U;
270}
271static inline u32 falcon_falcon_idlestate_r(void)
272{
273 return 0x0000004cU;
274}
275static inline u32 falcon_falcon_idlestate_falcon_busy_v(u32 r)
276{
277 return (r >> 0U) & 0x1U;
278}
279static inline u32 falcon_falcon_idlestate_ext_busy_v(u32 r)
280{
281 return (r >> 1U) & 0x7fffU;
282}
283static inline u32 falcon_falcon_os_r(void)
284{
285 return 0x00000080U;
286}
287static inline u32 falcon_falcon_engctl_r(void)
288{
289 return 0x000000a4U;
290}
291static inline u32 falcon_falcon_cpuctl_r(void)
292{
293 return 0x00000100U;
294}
295static inline u32 falcon_falcon_cpuctl_startcpu_f(u32 v)
296{
297 return (v & 0x1U) << 1U;
298}
299static inline u32 falcon_falcon_cpuctl_sreset_f(u32 v)
300{
301 return (v & 0x1U) << 2U;
302}
303static inline u32 falcon_falcon_cpuctl_hreset_f(u32 v)
304{
305 return (v & 0x1U) << 3U;
306}
307static inline u32 falcon_falcon_cpuctl_halt_intr_f(u32 v)
308{
309 return (v & 0x1U) << 4U;
310}
311static inline u32 falcon_falcon_cpuctl_halt_intr_m(void)
312{
313 return 0x1U << 4U;
314}
315static inline u32 falcon_falcon_cpuctl_halt_intr_v(u32 r)
316{
317 return (r >> 4U) & 0x1U;
318}
319static inline u32 falcon_falcon_cpuctl_stopped_m(void)
320{
321 return 0x1U << 5U;
322}
323static inline u32 falcon_falcon_cpuctl_cpuctl_alias_en_f(u32 v)
324{
325 return (v & 0x1U) << 6U;
326}
327static inline u32 falcon_falcon_cpuctl_cpuctl_alias_en_m(void)
328{
329 return 0x1U << 6U;
330}
331static inline u32 falcon_falcon_cpuctl_cpuctl_alias_en_v(u32 r)
332{
333 return (r >> 6U) & 0x1U;
334}
335static inline u32 falcon_falcon_cpuctl_alias_r(void)
336{
337 return 0x00000130U;
338}
339static inline u32 falcon_falcon_cpuctl_alias_startcpu_f(u32 v)
340{
341 return (v & 0x1U) << 1U;
342}
343static inline u32 falcon_falcon_imemc_r(u32 i)
344{
345 return 0x00000180U + i*16U;
346}
347static inline u32 falcon_falcon_imemc_offs_f(u32 v)
348{
349 return (v & 0x3fU) << 2U;
350}
351static inline u32 falcon_falcon_imemc_blk_f(u32 v)
352{
353 return (v & 0xffU) << 8U;
354}
355static inline u32 falcon_falcon_imemc_aincw_f(u32 v)
356{
357 return (v & 0x1U) << 24U;
358}
359static inline u32 falcon_falcon_imemc_secure_f(u32 v)
360{
361 return (v & 0x1U) << 28U;
362}
363static inline u32 falcon_falcon_imemd_r(u32 i)
364{
365 return 0x00000184U + i*16U;
366}
367static inline u32 falcon_falcon_imemt_r(u32 i)
368{
369 return 0x00000188U + i*16U;
370}
371static inline u32 falcon_falcon_sctl_r(void)
372{
373 return 0x00000240U;
374}
375static inline u32 falcon_falcon_mmu_phys_sec_r(void)
376{
377 return 0x00100ce4U;
378}
379static inline u32 falcon_falcon_bootvec_r(void)
380{
381 return 0x00000104U;
382}
383static inline u32 falcon_falcon_bootvec_vec_f(u32 v)
384{
385 return (v & 0xffffffffU) << 0U;
386}
387static inline u32 falcon_falcon_dmactl_r(void)
388{
389 return 0x0000010cU;
390}
391static inline u32 falcon_falcon_dmactl_dmem_scrubbing_m(void)
392{
393 return 0x1U << 1U;
394}
395static inline u32 falcon_falcon_dmactl_imem_scrubbing_m(void)
396{
397 return 0x1U << 2U;
398}
399static inline u32 falcon_falcon_dmactl_require_ctx_f(u32 v)
400{
401 return (v & 0x1U) << 0U;
402}
403static inline u32 falcon_falcon_hwcfg_r(void)
404{
405 return 0x00000108U;
406}
407static inline u32 falcon_falcon_hwcfg_imem_size_v(u32 r)
408{
409 return (r >> 0U) & 0x1ffU;
410}
411static inline u32 falcon_falcon_hwcfg_dmem_size_v(u32 r)
412{
413 return (r >> 9U) & 0x1ffU;
414}
415static inline u32 falcon_falcon_dmatrfbase_r(void)
416{
417 return 0x00000110U;
418}
419static inline u32 falcon_falcon_dmatrfmoffs_r(void)
420{
421 return 0x00000114U;
422}
423static inline u32 falcon_falcon_dmatrfcmd_r(void)
424{
425 return 0x00000118U;
426}
427static inline u32 falcon_falcon_dmatrfcmd_imem_f(u32 v)
428{
429 return (v & 0x1U) << 4U;
430}
431static inline u32 falcon_falcon_dmatrfcmd_write_f(u32 v)
432{
433 return (v & 0x1U) << 5U;
434}
435static inline u32 falcon_falcon_dmatrfcmd_size_f(u32 v)
436{
437 return (v & 0x7U) << 8U;
438}
439static inline u32 falcon_falcon_dmatrfcmd_ctxdma_f(u32 v)
440{
441 return (v & 0x7U) << 12U;
442}
443static inline u32 falcon_falcon_dmatrffboffs_r(void)
444{
445 return 0x0000011cU;
446}
447static inline u32 falcon_falcon_imctl_debug_r(void)
448{
449 return 0x0000015cU;
450}
451static inline u32 falcon_falcon_imctl_debug_addr_blk_f(u32 v)
452{
453 return (v & 0xffffffU) << 0U;
454}
455static inline u32 falcon_falcon_imctl_debug_cmd_f(u32 v)
456{
457 return (v & 0x7U) << 24U;
458}
459static inline u32 falcon_falcon_imstat_r(void)
460{
461 return 0x00000144U;
462}
463static inline u32 falcon_falcon_traceidx_r(void)
464{
465 return 0x00000148U;
466}
467static inline u32 falcon_falcon_traceidx_maxidx_v(u32 r)
468{
469 return (r >> 16U) & 0xffU;
470}
471static inline u32 falcon_falcon_traceidx_idx_f(u32 v)
472{
473 return (v & 0xffU) << 0U;
474}
475static inline u32 falcon_falcon_tracepc_r(void)
476{
477 return 0x0000014cU;
478}
479static inline u32 falcon_falcon_tracepc_pc_v(u32 r)
480{
481 return (r >> 0U) & 0xffffffU;
482}
483static inline u32 falcon_falcon_exterraddr_r(void)
484{
485 return 0x00000168U;
486}
487static inline u32 falcon_falcon_exterrstat_r(void)
488{
489 return 0x0000016cU;
490}
491static inline u32 falcon_falcon_exterrstat_valid_m(void)
492{
493 return 0x1U << 31U;
494}
495static inline u32 falcon_falcon_exterrstat_valid_v(u32 r)
496{
497 return (r >> 31U) & 0x1U;
498}
499static inline u32 falcon_falcon_exterrstat_valid_true_v(void)
500{
501 return 0x00000001U;
502}
503static inline u32 falcon_falcon_icd_cmd_r(void)
504{
505 return 0x00000200U;
506}
507static inline u32 falcon_falcon_icd_cmd_opc_s(void)
508{
509 return 4U;
510}
511static inline u32 falcon_falcon_icd_cmd_opc_f(u32 v)
512{
513 return (v & 0xfU) << 0U;
514}
515static inline u32 falcon_falcon_icd_cmd_opc_m(void)
516{
517 return 0xfU << 0U;
518}
519static inline u32 falcon_falcon_icd_cmd_opc_v(u32 r)
520{
521 return (r >> 0U) & 0xfU;
522}
523static inline u32 falcon_falcon_icd_cmd_opc_rreg_f(void)
524{
525 return 0x8U;
526}
527static inline u32 falcon_falcon_icd_cmd_opc_rstat_f(void)
528{
529 return 0xeU;
530}
531static inline u32 falcon_falcon_icd_cmd_idx_f(u32 v)
532{
533 return (v & 0x1fU) << 8U;
534}
535static inline u32 falcon_falcon_icd_rdata_r(void)
536{
537 return 0x0000020cU;
538}
539static inline u32 falcon_falcon_dmemc_r(u32 i)
540{
541 return 0x000001c0U + i*8U;
542}
543static inline u32 falcon_falcon_dmemc_offs_f(u32 v)
544{
545 return (v & 0x3fU) << 2U;
546}
547static inline u32 falcon_falcon_dmemc_offs_m(void)
548{
549 return 0x3fU << 2U;
550}
551static inline u32 falcon_falcon_dmemc_blk_f(u32 v)
552{
553 return (v & 0xffU) << 8U;
554}
555static inline u32 falcon_falcon_dmemc_blk_m(void)
556{
557 return 0xffU << 8U;
558}
559static inline u32 falcon_falcon_dmemc_aincw_f(u32 v)
560{
561 return (v & 0x1U) << 24U;
562}
563static inline u32 falcon_falcon_dmemc_aincr_f(u32 v)
564{
565 return (v & 0x1U) << 25U;
566}
567static inline u32 falcon_falcon_dmemd_r(u32 i)
568{
569 return 0x000001c4U + i*8U;
570}
571static inline u32 falcon_falcon_debug1_r(void)
572{
573 return 0x00000090U;
574}
575static inline u32 falcon_falcon_debug1_ctxsw_mode_s(void)
576{
577 return 1U;
578}
579static inline u32 falcon_falcon_debug1_ctxsw_mode_f(u32 v)
580{
581 return (v & 0x1U) << 16U;
582}
583static inline u32 falcon_falcon_debug1_ctxsw_mode_m(void)
584{
585 return 0x1U << 16U;
586}
587static inline u32 falcon_falcon_debug1_ctxsw_mode_v(u32 r)
588{
589 return (r >> 16U) & 0x1U;
590}
591static inline u32 falcon_falcon_debug1_ctxsw_mode_init_f(void)
592{
593 return 0x0U;
594}
595static inline u32 falcon_falcon_debuginfo_r(void)
596{
597 return 0x00000094U;
598}
599#endif
diff --git a/include/nvgpu/hw/gm20b/hw_fb_gm20b.h b/include/nvgpu/hw/gm20b/hw_fb_gm20b.h
deleted file mode 100644
index e6464c1..0000000
--- a/include/nvgpu/hw/gm20b/hw_fb_gm20b.h
+++ /dev/null
@@ -1,339 +0,0 @@
1/*
2 * Copyright (c) 2014-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_fb_gm20b_h_
57#define _hw_fb_gm20b_h_
58
59static inline u32 fb_fbhub_num_active_ltcs_r(void)
60{
61 return 0x00100800U;
62}
63static inline u32 fb_mmu_ctrl_r(void)
64{
65 return 0x00100c80U;
66}
67static inline u32 fb_mmu_ctrl_pri_fifo_empty_v(u32 r)
68{
69 return (r >> 15U) & 0x1U;
70}
71static inline u32 fb_mmu_ctrl_pri_fifo_empty_false_f(void)
72{
73 return 0x0U;
74}
75static inline u32 fb_mmu_ctrl_pri_fifo_space_v(u32 r)
76{
77 return (r >> 16U) & 0xffU;
78}
79static inline u32 fb_mmu_ctrl_use_pdb_big_page_size_v(u32 r)
80{
81 return (r >> 11U) & 0x1U;
82}
83static inline u32 fb_mmu_ctrl_use_pdb_big_page_size_true_f(void)
84{
85 return 0x800U;
86}
87static inline u32 fb_mmu_ctrl_use_pdb_big_page_size_false_f(void)
88{
89 return 0x0U;
90}
91static inline u32 fb_mmu_ctrl_use_full_comp_tag_line_v(u32 r)
92{
93 return (r >> 12U) & 0x1U;
94}
95static inline u32 fb_mmu_ctrl_use_full_comp_tag_line_true_f(void)
96{
97 return 0x1000U;
98}
99static inline u32 fb_priv_mmu_phy_secure_r(void)
100{
101 return 0x00100ce4U;
102}
103static inline u32 fb_mmu_invalidate_pdb_r(void)
104{
105 return 0x00100cb8U;
106}
107static inline u32 fb_mmu_invalidate_pdb_aperture_vid_mem_f(void)
108{
109 return 0x0U;
110}
111static inline u32 fb_mmu_invalidate_pdb_aperture_sys_mem_f(void)
112{
113 return 0x2U;
114}
115static inline u32 fb_mmu_invalidate_pdb_addr_f(u32 v)
116{
117 return (v & 0xfffffffU) << 4U;
118}
119static inline u32 fb_mmu_invalidate_r(void)
120{
121 return 0x00100cbcU;
122}
123static inline u32 fb_mmu_invalidate_all_va_true_f(void)
124{
125 return 0x1U;
126}
127static inline u32 fb_mmu_invalidate_all_pdb_true_f(void)
128{
129 return 0x2U;
130}
131static inline u32 fb_mmu_invalidate_trigger_s(void)
132{
133 return 1U;
134}
135static inline u32 fb_mmu_invalidate_trigger_f(u32 v)
136{
137 return (v & 0x1U) << 31U;
138}
139static inline u32 fb_mmu_invalidate_trigger_m(void)
140{
141 return 0x1U << 31U;
142}
143static inline u32 fb_mmu_invalidate_trigger_v(u32 r)
144{
145 return (r >> 31U) & 0x1U;
146}
147static inline u32 fb_mmu_invalidate_trigger_true_f(void)
148{
149 return 0x80000000U;
150}
151static inline u32 fb_mmu_debug_wr_r(void)
152{
153 return 0x00100cc8U;
154}
155static inline u32 fb_mmu_debug_wr_aperture_s(void)
156{
157 return 2U;
158}
159static inline u32 fb_mmu_debug_wr_aperture_f(u32 v)
160{
161 return (v & 0x3U) << 0U;
162}
163static inline u32 fb_mmu_debug_wr_aperture_m(void)
164{
165 return 0x3U << 0U;
166}
167static inline u32 fb_mmu_debug_wr_aperture_v(u32 r)
168{
169 return (r >> 0U) & 0x3U;
170}
171static inline u32 fb_mmu_debug_wr_aperture_vid_mem_f(void)
172{
173 return 0x0U;
174}
175static inline u32 fb_mmu_debug_wr_aperture_sys_mem_coh_f(void)
176{
177 return 0x2U;
178}
179static inline u32 fb_mmu_debug_wr_aperture_sys_mem_ncoh_f(void)
180{
181 return 0x3U;
182}
183static inline u32 fb_mmu_debug_wr_vol_false_f(void)
184{
185 return 0x0U;
186}
187static inline u32 fb_mmu_debug_wr_vol_true_v(void)
188{
189 return 0x00000001U;
190}
191static inline u32 fb_mmu_debug_wr_vol_true_f(void)
192{
193 return 0x4U;
194}
195static inline u32 fb_mmu_debug_wr_addr_f(u32 v)
196{
197 return (v & 0xfffffffU) << 4U;
198}
199static inline u32 fb_mmu_debug_wr_addr_alignment_v(void)
200{
201 return 0x0000000cU;
202}
203static inline u32 fb_mmu_debug_rd_r(void)
204{
205 return 0x00100cccU;
206}
207static inline u32 fb_mmu_debug_rd_aperture_vid_mem_f(void)
208{
209 return 0x0U;
210}
211static inline u32 fb_mmu_debug_rd_aperture_sys_mem_coh_f(void)
212{
213 return 0x2U;
214}
215static inline u32 fb_mmu_debug_rd_aperture_sys_mem_ncoh_f(void)
216{
217 return 0x3U;
218}
219static inline u32 fb_mmu_debug_rd_vol_false_f(void)
220{
221 return 0x0U;
222}
223static inline u32 fb_mmu_debug_rd_addr_f(u32 v)
224{
225 return (v & 0xfffffffU) << 4U;
226}
227static inline u32 fb_mmu_debug_rd_addr_alignment_v(void)
228{
229 return 0x0000000cU;
230}
231static inline u32 fb_mmu_debug_ctrl_r(void)
232{
233 return 0x00100cc4U;
234}
235static inline u32 fb_mmu_debug_ctrl_debug_v(u32 r)
236{
237 return (r >> 16U) & 0x1U;
238}
239static inline u32 fb_mmu_debug_ctrl_debug_m(void)
240{
241 return 0x1U << 16U;
242}
243static inline u32 fb_mmu_debug_ctrl_debug_enabled_v(void)
244{
245 return 0x00000001U;
246}
247static inline u32 fb_mmu_debug_ctrl_debug_enabled_f(void)
248{
249 return 0x10000U;
250}
251static inline u32 fb_mmu_debug_ctrl_debug_disabled_v(void)
252{
253 return 0x00000000U;
254}
255static inline u32 fb_mmu_debug_ctrl_debug_disabled_f(void)
256{
257 return 0x0U;
258}
259static inline u32 fb_mmu_vpr_info_r(void)
260{
261 return 0x00100cd0U;
262}
263static inline u32 fb_mmu_vpr_info_index_f(u32 v)
264{
265 return (v & 0x3U) << 0U;
266}
267static inline u32 fb_mmu_vpr_info_index_v(u32 r)
268{
269 return (r >> 0U) & 0x3U;
270}
271static inline u32 fb_mmu_vpr_info_index_addr_lo_v(void)
272{
273 return 0x00000000U;
274}
275static inline u32 fb_mmu_vpr_info_index_addr_hi_v(void)
276{
277 return 0x00000001U;
278}
279static inline u32 fb_mmu_vpr_info_index_cya_lo_v(void)
280{
281 return 0x00000002U;
282}
283static inline u32 fb_mmu_vpr_info_index_cya_hi_v(void)
284{
285 return 0x00000003U;
286}
287static inline u32 fb_mmu_vpr_info_fetch_f(u32 v)
288{
289 return (v & 0x1U) << 2U;
290}
291static inline u32 fb_mmu_vpr_info_fetch_v(u32 r)
292{
293 return (r >> 2U) & 0x1U;
294}
295static inline u32 fb_mmu_vpr_info_fetch_false_v(void)
296{
297 return 0x00000000U;
298}
299static inline u32 fb_mmu_vpr_info_fetch_true_v(void)
300{
301 return 0x00000001U;
302}
303static inline u32 fb_mmu_wpr_info_r(void)
304{
305 return 0x00100cd4U;
306}
307static inline u32 fb_mmu_wpr_info_index_f(u32 v)
308{
309 return (v & 0xfU) << 0U;
310}
311static inline u32 fb_mmu_wpr_info_index_allow_read_v(void)
312{
313 return 0x00000000U;
314}
315static inline u32 fb_mmu_wpr_info_index_allow_write_v(void)
316{
317 return 0x00000001U;
318}
319static inline u32 fb_mmu_wpr_info_index_wpr1_addr_lo_v(void)
320{
321 return 0x00000002U;
322}
323static inline u32 fb_mmu_wpr_info_index_wpr1_addr_hi_v(void)
324{
325 return 0x00000003U;
326}
327static inline u32 fb_mmu_wpr_info_index_wpr2_addr_lo_v(void)
328{
329 return 0x00000004U;
330}
331static inline u32 fb_mmu_wpr_info_index_wpr2_addr_hi_v(void)
332{
333 return 0x00000005U;
334}
335static inline u32 fb_niso_flush_sysmem_addr_r(void)
336{
337 return 0x00100c10U;
338}
339#endif
diff --git a/include/nvgpu/hw/gm20b/hw_fifo_gm20b.h b/include/nvgpu/hw/gm20b/hw_fifo_gm20b.h
deleted file mode 100644
index d32506d..0000000
--- a/include/nvgpu/hw/gm20b/hw_fifo_gm20b.h
+++ /dev/null
@@ -1,571 +0,0 @@
1/*
2 * Copyright (c) 2014-2017, 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_fifo_gm20b_h_
57#define _hw_fifo_gm20b_h_
58
59static inline u32 fifo_bar1_base_r(void)
60{
61 return 0x00002254U;
62}
63static inline u32 fifo_bar1_base_ptr_f(u32 v)
64{
65 return (v & 0xfffffffU) << 0U;
66}
67static inline u32 fifo_bar1_base_ptr_align_shift_v(void)
68{
69 return 0x0000000cU;
70}
71static inline u32 fifo_bar1_base_valid_false_f(void)
72{
73 return 0x0U;
74}
75static inline u32 fifo_bar1_base_valid_true_f(void)
76{
77 return 0x10000000U;
78}
79static inline u32 fifo_runlist_base_r(void)
80{
81 return 0x00002270U;
82}
83static inline u32 fifo_runlist_base_ptr_f(u32 v)
84{
85 return (v & 0xfffffffU) << 0U;
86}
87static inline u32 fifo_runlist_base_target_vid_mem_f(void)
88{
89 return 0x0U;
90}
91static inline u32 fifo_runlist_base_target_sys_mem_coh_f(void)
92{
93 return 0x20000000U;
94}
95static inline u32 fifo_runlist_base_target_sys_mem_ncoh_f(void)
96{
97 return 0x30000000U;
98}
99static inline u32 fifo_runlist_r(void)
100{
101 return 0x00002274U;
102}
103static inline u32 fifo_runlist_engine_f(u32 v)
104{
105 return (v & 0xfU) << 20U;
106}
107static inline u32 fifo_eng_runlist_base_r(u32 i)
108{
109 return 0x00002280U + i*8U;
110}
111static inline u32 fifo_eng_runlist_base__size_1_v(void)
112{
113 return 0x00000001U;
114}
115static inline u32 fifo_eng_runlist_r(u32 i)
116{
117 return 0x00002284U + i*8U;
118}
119static inline u32 fifo_eng_runlist__size_1_v(void)
120{
121 return 0x00000001U;
122}
123static inline u32 fifo_eng_runlist_length_f(u32 v)
124{
125 return (v & 0xffffU) << 0U;
126}
127static inline u32 fifo_eng_runlist_length_max_v(void)
128{
129 return 0x0000ffffU;
130}
131static inline u32 fifo_eng_runlist_pending_true_f(void)
132{
133 return 0x100000U;
134}
135static inline u32 fifo_pb_timeslice_r(u32 i)
136{
137 return 0x00002350U + i*4U;
138}
139static inline u32 fifo_pb_timeslice_timeout_16_f(void)
140{
141 return 0x10U;
142}
143static inline u32 fifo_pb_timeslice_timescale_0_f(void)
144{
145 return 0x0U;
146}
147static inline u32 fifo_pb_timeslice_enable_true_f(void)
148{
149 return 0x10000000U;
150}
151static inline u32 fifo_pbdma_map_r(u32 i)
152{
153 return 0x00002390U + i*4U;
154}
155static inline u32 fifo_intr_0_r(void)
156{
157 return 0x00002100U;
158}
159static inline u32 fifo_intr_0_bind_error_pending_f(void)
160{
161 return 0x1U;
162}
163static inline u32 fifo_intr_0_bind_error_reset_f(void)
164{
165 return 0x1U;
166}
167static inline u32 fifo_intr_0_sched_error_pending_f(void)
168{
169 return 0x100U;
170}
171static inline u32 fifo_intr_0_sched_error_reset_f(void)
172{
173 return 0x100U;
174}
175static inline u32 fifo_intr_0_chsw_error_pending_f(void)
176{
177 return 0x10000U;
178}
179static inline u32 fifo_intr_0_chsw_error_reset_f(void)
180{
181 return 0x10000U;
182}
183static inline u32 fifo_intr_0_fb_flush_timeout_pending_f(void)
184{
185 return 0x800000U;
186}
187static inline u32 fifo_intr_0_fb_flush_timeout_reset_f(void)
188{
189 return 0x800000U;
190}
191static inline u32 fifo_intr_0_lb_error_pending_f(void)
192{
193 return 0x1000000U;
194}
195static inline u32 fifo_intr_0_lb_error_reset_f(void)
196{
197 return 0x1000000U;
198}
199static inline u32 fifo_intr_0_dropped_mmu_fault_pending_f(void)
200{
201 return 0x8000000U;
202}
203static inline u32 fifo_intr_0_dropped_mmu_fault_reset_f(void)
204{
205 return 0x8000000U;
206}
207static inline u32 fifo_intr_0_mmu_fault_pending_f(void)
208{
209 return 0x10000000U;
210}
211static inline u32 fifo_intr_0_pbdma_intr_pending_f(void)
212{
213 return 0x20000000U;
214}
215static inline u32 fifo_intr_0_runlist_event_pending_f(void)
216{
217 return 0x40000000U;
218}
219static inline u32 fifo_intr_0_channel_intr_pending_f(void)
220{
221 return 0x80000000U;
222}
223static inline u32 fifo_intr_en_0_r(void)
224{
225 return 0x00002140U;
226}
227static inline u32 fifo_intr_en_0_sched_error_f(u32 v)
228{
229 return (v & 0x1U) << 8U;
230}
231static inline u32 fifo_intr_en_0_sched_error_m(void)
232{
233 return 0x1U << 8U;
234}
235static inline u32 fifo_intr_en_0_mmu_fault_f(u32 v)
236{
237 return (v & 0x1U) << 28U;
238}
239static inline u32 fifo_intr_en_0_mmu_fault_m(void)
240{
241 return 0x1U << 28U;
242}
243static inline u32 fifo_intr_en_1_r(void)
244{
245 return 0x00002528U;
246}
247static inline u32 fifo_intr_bind_error_r(void)
248{
249 return 0x0000252cU;
250}
251static inline u32 fifo_intr_sched_error_r(void)
252{
253 return 0x0000254cU;
254}
255static inline u32 fifo_intr_sched_error_code_f(u32 v)
256{
257 return (v & 0xffU) << 0U;
258}
259static inline u32 fifo_intr_sched_error_code_ctxsw_timeout_v(void)
260{
261 return 0x0000000aU;
262}
263static inline u32 fifo_intr_chsw_error_r(void)
264{
265 return 0x0000256cU;
266}
267static inline u32 fifo_intr_mmu_fault_id_r(void)
268{
269 return 0x0000259cU;
270}
271static inline u32 fifo_intr_mmu_fault_eng_id_graphics_v(void)
272{
273 return 0x00000000U;
274}
275static inline u32 fifo_intr_mmu_fault_eng_id_graphics_f(void)
276{
277 return 0x0U;
278}
279static inline u32 fifo_intr_mmu_fault_inst_r(u32 i)
280{
281 return 0x00002800U + i*16U;
282}
283static inline u32 fifo_intr_mmu_fault_inst_ptr_v(u32 r)
284{
285 return (r >> 0U) & 0xfffffffU;
286}
287static inline u32 fifo_intr_mmu_fault_inst_ptr_align_shift_v(void)
288{
289 return 0x0000000cU;
290}
291static inline u32 fifo_intr_mmu_fault_lo_r(u32 i)
292{
293 return 0x00002804U + i*16U;
294}
295static inline u32 fifo_intr_mmu_fault_hi_r(u32 i)
296{
297 return 0x00002808U + i*16U;
298}
299static inline u32 fifo_intr_mmu_fault_info_r(u32 i)
300{
301 return 0x0000280cU + i*16U;
302}
303static inline u32 fifo_intr_mmu_fault_info_type_v(u32 r)
304{
305 return (r >> 0U) & 0xfU;
306}
307static inline u32 fifo_intr_mmu_fault_info_write_v(u32 r)
308{
309 return (r >> 7U) & 0x1U;
310}
311static inline u32 fifo_intr_mmu_fault_info_engine_subid_v(u32 r)
312{
313 return (r >> 6U) & 0x1U;
314}
315static inline u32 fifo_intr_mmu_fault_info_engine_subid_gpc_v(void)
316{
317 return 0x00000000U;
318}
319static inline u32 fifo_intr_mmu_fault_info_engine_subid_hub_v(void)
320{
321 return 0x00000001U;
322}
323static inline u32 fifo_intr_mmu_fault_info_client_v(u32 r)
324{
325 return (r >> 8U) & 0x3fU;
326}
327static inline u32 fifo_intr_pbdma_id_r(void)
328{
329 return 0x000025a0U;
330}
331static inline u32 fifo_intr_pbdma_id_status_f(u32 v, u32 i)
332{
333 return (v & 0x1U) << (0U + i*1U);
334}
335static inline u32 fifo_intr_pbdma_id_status_v(u32 r, u32 i)
336{
337 return (r >> (0U + i*1U)) & 0x1U;
338}
339static inline u32 fifo_intr_pbdma_id_status__size_1_v(void)
340{
341 return 0x00000001U;
342}
343static inline u32 fifo_intr_runlist_r(void)
344{
345 return 0x00002a00U;
346}
347static inline u32 fifo_fb_timeout_r(void)
348{
349 return 0x00002a04U;
350}
351static inline u32 fifo_fb_timeout_period_m(void)
352{
353 return 0x3fffffffU << 0U;
354}
355static inline u32 fifo_fb_timeout_period_max_f(void)
356{
357 return 0x3fffffffU;
358}
359static inline u32 fifo_error_sched_disable_r(void)
360{
361 return 0x0000262cU;
362}
363static inline u32 fifo_sched_disable_r(void)
364{
365 return 0x00002630U;
366}
367static inline u32 fifo_sched_disable_runlist_f(u32 v, u32 i)
368{
369 return (v & 0x1U) << (0U + i*1U);
370}
371static inline u32 fifo_sched_disable_runlist_m(u32 i)
372{
373 return 0x1U << (0U + i*1U);
374}
375static inline u32 fifo_sched_disable_true_v(void)
376{
377 return 0x00000001U;
378}
379static inline u32 fifo_preempt_r(void)
380{
381 return 0x00002634U;
382}
383static inline u32 fifo_preempt_pending_true_f(void)
384{
385 return 0x100000U;
386}
387static inline u32 fifo_preempt_type_channel_f(void)
388{
389 return 0x0U;
390}
391static inline u32 fifo_preempt_type_tsg_f(void)
392{
393 return 0x1000000U;
394}
395static inline u32 fifo_preempt_chid_f(u32 v)
396{
397 return (v & 0xfffU) << 0U;
398}
399static inline u32 fifo_preempt_id_f(u32 v)
400{
401 return (v & 0xfffU) << 0U;
402}
403static inline u32 fifo_trigger_mmu_fault_r(u32 i)
404{
405 return 0x00002a30U + i*4U;
406}
407static inline u32 fifo_trigger_mmu_fault_id_f(u32 v)
408{
409 return (v & 0x1fU) << 0U;
410}
411static inline u32 fifo_trigger_mmu_fault_enable_f(u32 v)
412{
413 return (v & 0x1U) << 8U;
414}
415static inline u32 fifo_engine_status_r(u32 i)
416{
417 return 0x00002640U + i*8U;
418}
419static inline u32 fifo_engine_status__size_1_v(void)
420{
421 return 0x00000002U;
422}
423static inline u32 fifo_engine_status_id_v(u32 r)
424{
425 return (r >> 0U) & 0xfffU;
426}
427static inline u32 fifo_engine_status_id_type_v(u32 r)
428{
429 return (r >> 12U) & 0x1U;
430}
431static inline u32 fifo_engine_status_id_type_chid_v(void)
432{
433 return 0x00000000U;
434}
435static inline u32 fifo_engine_status_id_type_tsgid_v(void)
436{
437 return 0x00000001U;
438}
439static inline u32 fifo_engine_status_ctx_status_v(u32 r)
440{
441 return (r >> 13U) & 0x7U;
442}
443static inline u32 fifo_engine_status_ctx_status_invalid_v(void)
444{
445 return 0x00000000U;
446}
447static inline u32 fifo_engine_status_ctx_status_valid_v(void)
448{
449 return 0x00000001U;
450}
451static inline u32 fifo_engine_status_ctx_status_ctxsw_load_v(void)
452{
453 return 0x00000005U;
454}
455static inline u32 fifo_engine_status_ctx_status_ctxsw_save_v(void)
456{
457 return 0x00000006U;
458}
459static inline u32 fifo_engine_status_ctx_status_ctxsw_switch_v(void)
460{
461 return 0x00000007U;
462}
463static inline u32 fifo_engine_status_next_id_v(u32 r)
464{
465 return (r >> 16U) & 0xfffU;
466}
467static inline u32 fifo_engine_status_next_id_type_v(u32 r)
468{
469 return (r >> 28U) & 0x1U;
470}
471static inline u32 fifo_engine_status_next_id_type_chid_v(void)
472{
473 return 0x00000000U;
474}
475static inline u32 fifo_engine_status_faulted_v(u32 r)
476{
477 return (r >> 30U) & 0x1U;
478}
479static inline u32 fifo_engine_status_faulted_true_v(void)
480{
481 return 0x00000001U;
482}
483static inline u32 fifo_engine_status_engine_v(u32 r)
484{
485 return (r >> 31U) & 0x1U;
486}
487static inline u32 fifo_engine_status_engine_idle_v(void)
488{
489 return 0x00000000U;
490}
491static inline u32 fifo_engine_status_engine_busy_v(void)
492{
493 return 0x00000001U;
494}
495static inline u32 fifo_engine_status_ctxsw_v(u32 r)
496{
497 return (r >> 15U) & 0x1U;
498}
499static inline u32 fifo_engine_status_ctxsw_in_progress_v(void)
500{
501 return 0x00000001U;
502}
503static inline u32 fifo_engine_status_ctxsw_in_progress_f(void)
504{
505 return 0x8000U;
506}
507static inline u32 fifo_pbdma_status_r(u32 i)
508{
509 return 0x00003080U + i*4U;
510}
511static inline u32 fifo_pbdma_status__size_1_v(void)
512{
513 return 0x00000001U;
514}
515static inline u32 fifo_pbdma_status_id_v(u32 r)
516{
517 return (r >> 0U) & 0xfffU;
518}
519static inline u32 fifo_pbdma_status_id_type_v(u32 r)
520{
521 return (r >> 12U) & 0x1U;
522}
523static inline u32 fifo_pbdma_status_id_type_chid_v(void)
524{
525 return 0x00000000U;
526}
527static inline u32 fifo_pbdma_status_id_type_tsgid_v(void)
528{
529 return 0x00000001U;
530}
531static inline u32 fifo_pbdma_status_chan_status_v(u32 r)
532{
533 return (r >> 13U) & 0x7U;
534}
535static inline u32 fifo_pbdma_status_chan_status_valid_v(void)
536{
537 return 0x00000001U;
538}
539static inline u32 fifo_pbdma_status_chan_status_chsw_load_v(void)
540{
541 return 0x00000005U;
542}
543static inline u32 fifo_pbdma_status_chan_status_chsw_save_v(void)
544{
545 return 0x00000006U;
546}
547static inline u32 fifo_pbdma_status_chan_status_chsw_switch_v(void)
548{
549 return 0x00000007U;
550}
551static inline u32 fifo_pbdma_status_next_id_v(u32 r)
552{
553 return (r >> 16U) & 0xfffU;
554}
555static inline u32 fifo_pbdma_status_next_id_type_v(u32 r)
556{
557 return (r >> 28U) & 0x1U;
558}
559static inline u32 fifo_pbdma_status_next_id_type_chid_v(void)
560{
561 return 0x00000000U;
562}
563static inline u32 fifo_pbdma_status_chsw_v(u32 r)
564{
565 return (r >> 15U) & 0x1U;
566}
567static inline u32 fifo_pbdma_status_chsw_in_progress_v(void)
568{
569 return 0x00000001U;
570}
571#endif
diff --git a/include/nvgpu/hw/gm20b/hw_flush_gm20b.h b/include/nvgpu/hw/gm20b/hw_flush_gm20b.h
deleted file mode 100644
index 3b5801b..0000000
--- a/include/nvgpu/hw/gm20b/hw_flush_gm20b.h
+++ /dev/null
@@ -1,187 +0,0 @@
1/*
2 * Copyright (c) 2014-2017, 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_flush_gm20b_h_
57#define _hw_flush_gm20b_h_
58
59static inline u32 flush_l2_system_invalidate_r(void)
60{
61 return 0x00070004U;
62}
63static inline u32 flush_l2_system_invalidate_pending_v(u32 r)
64{
65 return (r >> 0U) & 0x1U;
66}
67static inline u32 flush_l2_system_invalidate_pending_busy_v(void)
68{
69 return 0x00000001U;
70}
71static inline u32 flush_l2_system_invalidate_pending_busy_f(void)
72{
73 return 0x1U;
74}
75static inline u32 flush_l2_system_invalidate_outstanding_v(u32 r)
76{
77 return (r >> 1U) & 0x1U;
78}
79static inline u32 flush_l2_system_invalidate_outstanding_true_v(void)
80{
81 return 0x00000001U;
82}
83static inline u32 flush_l2_flush_dirty_r(void)
84{
85 return 0x00070010U;
86}
87static inline u32 flush_l2_flush_dirty_pending_v(u32 r)
88{
89 return (r >> 0U) & 0x1U;
90}
91static inline u32 flush_l2_flush_dirty_pending_empty_v(void)
92{
93 return 0x00000000U;
94}
95static inline u32 flush_l2_flush_dirty_pending_empty_f(void)
96{
97 return 0x0U;
98}
99static inline u32 flush_l2_flush_dirty_pending_busy_v(void)
100{
101 return 0x00000001U;
102}
103static inline u32 flush_l2_flush_dirty_pending_busy_f(void)
104{
105 return 0x1U;
106}
107static inline u32 flush_l2_flush_dirty_outstanding_v(u32 r)
108{
109 return (r >> 1U) & 0x1U;
110}
111static inline u32 flush_l2_flush_dirty_outstanding_false_v(void)
112{
113 return 0x00000000U;
114}
115static inline u32 flush_l2_flush_dirty_outstanding_false_f(void)
116{
117 return 0x0U;
118}
119static inline u32 flush_l2_flush_dirty_outstanding_true_v(void)
120{
121 return 0x00000001U;
122}
123static inline u32 flush_l2_clean_comptags_r(void)
124{
125 return 0x0007000cU;
126}
127static inline u32 flush_l2_clean_comptags_pending_v(u32 r)
128{
129 return (r >> 0U) & 0x1U;
130}
131static inline u32 flush_l2_clean_comptags_pending_empty_v(void)
132{
133 return 0x00000000U;
134}
135static inline u32 flush_l2_clean_comptags_pending_empty_f(void)
136{
137 return 0x0U;
138}
139static inline u32 flush_l2_clean_comptags_pending_busy_v(void)
140{
141 return 0x00000001U;
142}
143static inline u32 flush_l2_clean_comptags_pending_busy_f(void)
144{
145 return 0x1U;
146}
147static inline u32 flush_l2_clean_comptags_outstanding_v(u32 r)
148{
149 return (r >> 1U) & 0x1U;
150}
151static inline u32 flush_l2_clean_comptags_outstanding_false_v(void)
152{
153 return 0x00000000U;
154}
155static inline u32 flush_l2_clean_comptags_outstanding_false_f(void)
156{
157 return 0x0U;
158}
159static inline u32 flush_l2_clean_comptags_outstanding_true_v(void)
160{
161 return 0x00000001U;
162}
163static inline u32 flush_fb_flush_r(void)
164{
165 return 0x00070000U;
166}
167static inline u32 flush_fb_flush_pending_v(u32 r)
168{
169 return (r >> 0U) & 0x1U;
170}
171static inline u32 flush_fb_flush_pending_busy_v(void)
172{
173 return 0x00000001U;
174}
175static inline u32 flush_fb_flush_pending_busy_f(void)
176{
177 return 0x1U;
178}
179static inline u32 flush_fb_flush_outstanding_v(u32 r)
180{
181 return (r >> 1U) & 0x1U;
182}
183static inline u32 flush_fb_flush_outstanding_true_v(void)
184{
185 return 0x00000001U;
186}
187#endif
diff --git a/include/nvgpu/hw/gm20b/hw_fuse_gm20b.h b/include/nvgpu/hw/gm20b/hw_fuse_gm20b.h
deleted file mode 100644
index d97eb7d..0000000
--- a/include/nvgpu/hw/gm20b/hw_fuse_gm20b.h
+++ /dev/null
@@ -1,147 +0,0 @@
1/*
2 * Copyright (c) 2014-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_fuse_gm20b_h_
57#define _hw_fuse_gm20b_h_
58
59static inline u32 fuse_status_opt_gpc_r(void)
60{
61 return 0x00021c1cU;
62}
63static inline u32 fuse_status_opt_tpc_gpc_r(u32 i)
64{
65 return 0x00021c38U + i*4U;
66}
67static inline u32 fuse_ctrl_opt_tpc_gpc_r(u32 i)
68{
69 return 0x00021838U + i*4U;
70}
71static inline u32 fuse_ctrl_opt_ram_svop_pdp_r(void)
72{
73 return 0x00021944U;
74}
75static inline u32 fuse_ctrl_opt_ram_svop_pdp_data_f(u32 v)
76{
77 return (v & 0x3U) << 0U;
78}
79static inline u32 fuse_ctrl_opt_ram_svop_pdp_data_m(void)
80{
81 return 0x3U << 0U;
82}
83static inline u32 fuse_ctrl_opt_ram_svop_pdp_data_v(u32 r)
84{
85 return (r >> 0U) & 0x3U;
86}
87static inline u32 fuse_ctrl_opt_ram_svop_pdp_override_r(void)
88{
89 return 0x00021948U;
90}
91static inline u32 fuse_ctrl_opt_ram_svop_pdp_override_data_f(u32 v)
92{
93 return (v & 0x1U) << 0U;
94}
95static inline u32 fuse_ctrl_opt_ram_svop_pdp_override_data_m(void)
96{
97 return 0x1U << 0U;
98}
99static inline u32 fuse_ctrl_opt_ram_svop_pdp_override_data_v(u32 r)
100{
101 return (r >> 0U) & 0x1U;
102}
103static inline u32 fuse_ctrl_opt_ram_svop_pdp_override_data_yes_f(void)
104{
105 return 0x1U;
106}
107static inline u32 fuse_ctrl_opt_ram_svop_pdp_override_data_no_f(void)
108{
109 return 0x0U;
110}
111static inline u32 fuse_status_opt_fbio_r(void)
112{
113 return 0x00021c14U;
114}
115static inline u32 fuse_status_opt_fbio_data_f(u32 v)
116{
117 return (v & 0xffffU) << 0U;
118}
119static inline u32 fuse_status_opt_fbio_data_m(void)
120{
121 return 0xffffU << 0U;
122}
123static inline u32 fuse_status_opt_fbio_data_v(u32 r)
124{
125 return (r >> 0U) & 0xffffU;
126}
127static inline u32 fuse_status_opt_rop_l2_fbp_r(u32 i)
128{
129 return 0x00021d70U + i*4U;
130}
131static inline u32 fuse_status_opt_fbp_r(void)
132{
133 return 0x00021d38U;
134}
135static inline u32 fuse_status_opt_fbp_idx_v(u32 r, u32 i)
136{
137 return (r >> (0U + i*1U)) & 0x1U;
138}
139static inline u32 fuse_opt_sec_debug_en_r(void)
140{
141 return 0x00021218U;
142}
143static inline u32 fuse_opt_priv_sec_en_r(void)
144{
145 return 0x00021434U;
146}
147#endif
diff --git a/include/nvgpu/hw/gm20b/hw_gmmu_gm20b.h b/include/nvgpu/hw/gm20b/hw_gmmu_gm20b.h
deleted file mode 100644
index 11cc3d7..0000000
--- a/include/nvgpu/hw/gm20b/hw_gmmu_gm20b.h
+++ /dev/null
@@ -1,283 +0,0 @@
1/*
2 * Copyright (c) 2014-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_gmmu_gm20b_h_
57#define _hw_gmmu_gm20b_h_
58
59static inline u32 gmmu_pde_aperture_big_w(void)
60{
61 return 0U;
62}
63static inline u32 gmmu_pde_aperture_big_invalid_f(void)
64{
65 return 0x0U;
66}
67static inline u32 gmmu_pde_aperture_big_video_memory_f(void)
68{
69 return 0x1U;
70}
71static inline u32 gmmu_pde_aperture_big_sys_mem_coh_f(void)
72{
73 return 0x2U;
74}
75static inline u32 gmmu_pde_aperture_big_sys_mem_ncoh_f(void)
76{
77 return 0x3U;
78}
79static inline u32 gmmu_pde_size_w(void)
80{
81 return 0U;
82}
83static inline u32 gmmu_pde_size_full_f(void)
84{
85 return 0x0U;
86}
87static inline u32 gmmu_pde_address_big_sys_f(u32 v)
88{
89 return (v & 0xfffffffU) << 4U;
90}
91static inline u32 gmmu_pde_address_big_sys_w(void)
92{
93 return 0U;
94}
95static inline u32 gmmu_pde_aperture_small_w(void)
96{
97 return 1U;
98}
99static inline u32 gmmu_pde_aperture_small_invalid_f(void)
100{
101 return 0x0U;
102}
103static inline u32 gmmu_pde_aperture_small_video_memory_f(void)
104{
105 return 0x1U;
106}
107static inline u32 gmmu_pde_aperture_small_sys_mem_coh_f(void)
108{
109 return 0x2U;
110}
111static inline u32 gmmu_pde_aperture_small_sys_mem_ncoh_f(void)
112{
113 return 0x3U;
114}
115static inline u32 gmmu_pde_vol_small_w(void)
116{
117 return 1U;
118}
119static inline u32 gmmu_pde_vol_small_true_f(void)
120{
121 return 0x4U;
122}
123static inline u32 gmmu_pde_vol_small_false_f(void)
124{
125 return 0x0U;
126}
127static inline u32 gmmu_pde_vol_big_w(void)
128{
129 return 1U;
130}
131static inline u32 gmmu_pde_vol_big_true_f(void)
132{
133 return 0x8U;
134}
135static inline u32 gmmu_pde_vol_big_false_f(void)
136{
137 return 0x0U;
138}
139static inline u32 gmmu_pde_address_small_sys_f(u32 v)
140{
141 return (v & 0xfffffffU) << 4U;
142}
143static inline u32 gmmu_pde_address_small_sys_w(void)
144{
145 return 1U;
146}
147static inline u32 gmmu_pde_address_shift_v(void)
148{
149 return 0x0000000cU;
150}
151static inline u32 gmmu_pde__size_v(void)
152{
153 return 0x00000008U;
154}
155static inline u32 gmmu_pte__size_v(void)
156{
157 return 0x00000008U;
158}
159static inline u32 gmmu_pte_valid_w(void)
160{
161 return 0U;
162}
163static inline u32 gmmu_pte_valid_true_f(void)
164{
165 return 0x1U;
166}
167static inline u32 gmmu_pte_valid_false_f(void)
168{
169 return 0x0U;
170}
171static inline u32 gmmu_pte_privilege_w(void)
172{
173 return 0U;
174}
175static inline u32 gmmu_pte_privilege_true_f(void)
176{
177 return 0x2U;
178}
179static inline u32 gmmu_pte_privilege_false_f(void)
180{
181 return 0x0U;
182}
183static inline u32 gmmu_pte_address_sys_f(u32 v)
184{
185 return (v & 0xfffffffU) << 4U;
186}
187static inline u32 gmmu_pte_address_sys_w(void)
188{
189 return 0U;
190}
191static inline u32 gmmu_pte_address_vid_f(u32 v)
192{
193 return (v & 0x1ffffffU) << 4U;
194}
195static inline u32 gmmu_pte_address_vid_w(void)
196{
197 return 0U;
198}
199static inline u32 gmmu_pte_vol_w(void)
200{
201 return 1U;
202}
203static inline u32 gmmu_pte_vol_true_f(void)
204{
205 return 0x1U;
206}
207static inline u32 gmmu_pte_vol_false_f(void)
208{
209 return 0x0U;
210}
211static inline u32 gmmu_pte_aperture_w(void)
212{
213 return 1U;
214}
215static inline u32 gmmu_pte_aperture_video_memory_f(void)
216{
217 return 0x0U;
218}
219static inline u32 gmmu_pte_aperture_sys_mem_coh_f(void)
220{
221 return 0x4U;
222}
223static inline u32 gmmu_pte_aperture_sys_mem_ncoh_f(void)
224{
225 return 0x6U;
226}
227static inline u32 gmmu_pte_read_only_w(void)
228{
229 return 0U;
230}
231static inline u32 gmmu_pte_read_only_true_f(void)
232{
233 return 0x4U;
234}
235static inline u32 gmmu_pte_write_disable_w(void)
236{
237 return 1U;
238}
239static inline u32 gmmu_pte_write_disable_true_f(void)
240{
241 return 0x80000000U;
242}
243static inline u32 gmmu_pte_read_disable_w(void)
244{
245 return 1U;
246}
247static inline u32 gmmu_pte_read_disable_true_f(void)
248{
249 return 0x40000000U;
250}
251static inline u32 gmmu_pte_comptagline_s(void)
252{
253 return 17U;
254}
255static inline u32 gmmu_pte_comptagline_f(u32 v)
256{
257 return (v & 0x1ffffU) << 12U;
258}
259static inline u32 gmmu_pte_comptagline_w(void)
260{
261 return 1U;
262}
263static inline u32 gmmu_pte_address_shift_v(void)
264{
265 return 0x0000000cU;
266}
267static inline u32 gmmu_pte_kind_f(u32 v)
268{
269 return (v & 0xffU) << 4U;
270}
271static inline u32 gmmu_pte_kind_w(void)
272{
273 return 1U;
274}
275static inline u32 gmmu_pte_kind_invalid_v(void)
276{
277 return 0x000000ffU;
278}
279static inline u32 gmmu_pte_kind_pitch_v(void)
280{
281 return 0x00000000U;
282}
283#endif
diff --git a/include/nvgpu/hw/gm20b/hw_gr_gm20b.h b/include/nvgpu/hw/gm20b/hw_gr_gm20b.h
deleted file mode 100644
index 79ad326..0000000
--- a/include/nvgpu/hw/gm20b/hw_gr_gm20b.h
+++ /dev/null
@@ -1,3939 +0,0 @@
1/*
2 * Copyright (c) 2014-2023, 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_gr_gm20b_h_
57#define _hw_gr_gm20b_h_
58
59static inline u32 gr_intr_r(void)
60{
61 return 0x00400100U;
62}
63static inline u32 gr_intr_notify_pending_f(void)
64{
65 return 0x1U;
66}
67static inline u32 gr_intr_notify_reset_f(void)
68{
69 return 0x1U;
70}
71static inline u32 gr_intr_semaphore_pending_f(void)
72{
73 return 0x2U;
74}
75static inline u32 gr_intr_semaphore_reset_f(void)
76{
77 return 0x2U;
78}
79static inline u32 gr_intr_illegal_method_pending_f(void)
80{
81 return 0x10U;
82}
83static inline u32 gr_intr_illegal_method_reset_f(void)
84{
85 return 0x10U;
86}
87static inline u32 gr_intr_illegal_notify_pending_f(void)
88{
89 return 0x40U;
90}
91static inline u32 gr_intr_illegal_notify_reset_f(void)
92{
93 return 0x40U;
94}
95static inline u32 gr_intr_firmware_method_f(u32 v)
96{
97 return (v & 0x1U) << 8U;
98}
99static inline u32 gr_intr_firmware_method_pending_f(void)
100{
101 return 0x100U;
102}
103static inline u32 gr_intr_firmware_method_reset_f(void)
104{
105 return 0x100U;
106}
107static inline u32 gr_intr_illegal_class_pending_f(void)
108{
109 return 0x20U;
110}
111static inline u32 gr_intr_illegal_class_reset_f(void)
112{
113 return 0x20U;
114}
115static inline u32 gr_intr_fecs_error_pending_f(void)
116{
117 return 0x80000U;
118}
119static inline u32 gr_intr_fecs_error_reset_f(void)
120{
121 return 0x80000U;
122}
123static inline u32 gr_intr_class_error_pending_f(void)
124{
125 return 0x100000U;
126}
127static inline u32 gr_intr_class_error_reset_f(void)
128{
129 return 0x100000U;
130}
131static inline u32 gr_intr_exception_pending_f(void)
132{
133 return 0x200000U;
134}
135static inline u32 gr_intr_exception_reset_f(void)
136{
137 return 0x200000U;
138}
139static inline u32 gr_fecs_intr_r(void)
140{
141 return 0x00400144U;
142}
143static inline u32 gr_class_error_r(void)
144{
145 return 0x00400110U;
146}
147static inline u32 gr_class_error_code_v(u32 r)
148{
149 return (r >> 0U) & 0xffffU;
150}
151static inline u32 gr_intr_nonstall_r(void)
152{
153 return 0x00400120U;
154}
155static inline u32 gr_intr_nonstall_trap_pending_f(void)
156{
157 return 0x2U;
158}
159static inline u32 gr_intr_en_r(void)
160{
161 return 0x0040013cU;
162}
163static inline u32 gr_exception_r(void)
164{
165 return 0x00400108U;
166}
167static inline u32 gr_exception_fe_m(void)
168{
169 return 0x1U << 0U;
170}
171static inline u32 gr_exception_gpc_m(void)
172{
173 return 0x1U << 24U;
174}
175static inline u32 gr_exception_memfmt_m(void)
176{
177 return 0x1U << 1U;
178}
179static inline u32 gr_exception_ds_m(void)
180{
181 return 0x1U << 4U;
182}
183static inline u32 gr_exception_sked_m(void)
184{
185 return 0x1U << 8U;
186}
187static inline u32 gr_exception_pd_m(void)
188{
189 return 0x1U << 2U;
190}
191static inline u32 gr_exception_scc_m(void)
192{
193 return 0x1U << 3U;
194}
195static inline u32 gr_exception_ssync_m(void)
196{
197 return 0x1U << 5U;
198}
199static inline u32 gr_exception_mme_m(void)
200{
201 return 0x1U << 7U;
202}
203static inline u32 gr_exception1_r(void)
204{
205 return 0x00400118U;
206}
207static inline u32 gr_exception1_gpc_0_pending_f(void)
208{
209 return 0x1U;
210}
211static inline u32 gr_exception2_r(void)
212{
213 return 0x0040011cU;
214}
215static inline u32 gr_exception_en_r(void)
216{
217 return 0x00400138U;
218}
219static inline u32 gr_exception_en_fe_m(void)
220{
221 return 0x1U << 0U;
222}
223static inline u32 gr_exception1_en_r(void)
224{
225 return 0x00400130U;
226}
227static inline u32 gr_exception2_en_r(void)
228{
229 return 0x00400134U;
230}
231static inline u32 gr_gpfifo_ctl_r(void)
232{
233 return 0x00400500U;
234}
235static inline u32 gr_gpfifo_ctl_access_f(u32 v)
236{
237 return (v & 0x1U) << 0U;
238}
239static inline u32 gr_gpfifo_ctl_access_disabled_f(void)
240{
241 return 0x0U;
242}
243static inline u32 gr_gpfifo_ctl_access_enabled_f(void)
244{
245 return 0x1U;
246}
247static inline u32 gr_gpfifo_ctl_semaphore_access_f(u32 v)
248{
249 return (v & 0x1U) << 16U;
250}
251static inline u32 gr_gpfifo_ctl_semaphore_access_enabled_v(void)
252{
253 return 0x00000001U;
254}
255static inline u32 gr_gpfifo_ctl_semaphore_access_enabled_f(void)
256{
257 return 0x10000U;
258}
259static inline u32 gr_gpfifo_status_r(void)
260{
261 return 0x00400504U;
262}
263static inline u32 gr_trapped_addr_r(void)
264{
265 return 0x00400704U;
266}
267static inline u32 gr_trapped_addr_mthd_v(u32 r)
268{
269 return (r >> 2U) & 0xfffU;
270}
271static inline u32 gr_trapped_addr_subch_v(u32 r)
272{
273 return (r >> 16U) & 0x7U;
274}
275static inline u32 gr_trapped_addr_mme_generated_v(u32 r)
276{
277 return (r >> 20U) & 0x1U;
278}
279static inline u32 gr_trapped_addr_datahigh_v(u32 r)
280{
281 return (r >> 24U) & 0x1U;
282}
283static inline u32 gr_trapped_addr_priv_v(u32 r)
284{
285 return (r >> 28U) & 0x1U;
286}
287static inline u32 gr_trapped_addr_status_v(u32 r)
288{
289 return (r >> 31U) & 0x1U;
290}
291static inline u32 gr_trapped_data_lo_r(void)
292{
293 return 0x00400708U;
294}
295static inline u32 gr_trapped_data_hi_r(void)
296{
297 return 0x0040070cU;
298}
299static inline u32 gr_trapped_data_mme_r(void)
300{
301 return 0x00400710U;
302}
303static inline u32 gr_trapped_data_mme_pc_v(u32 r)
304{
305 return (r >> 0U) & 0x7ffU;
306}
307static inline u32 gr_status_r(void)
308{
309 return 0x00400700U;
310}
311static inline u32 gr_status_fe_method_upper_v(u32 r)
312{
313 return (r >> 1U) & 0x1U;
314}
315static inline u32 gr_status_fe_method_lower_v(u32 r)
316{
317 return (r >> 2U) & 0x1U;
318}
319static inline u32 gr_status_fe_method_lower_idle_v(void)
320{
321 return 0x00000000U;
322}
323static inline u32 gr_status_fe_gi_v(u32 r)
324{
325 return (r >> 21U) & 0x1U;
326}
327static inline u32 gr_status_mask_r(void)
328{
329 return 0x00400610U;
330}
331static inline u32 gr_status_1_r(void)
332{
333 return 0x00400604U;
334}
335static inline u32 gr_status_2_r(void)
336{
337 return 0x00400608U;
338}
339static inline u32 gr_engine_status_r(void)
340{
341 return 0x0040060cU;
342}
343static inline u32 gr_engine_status_value_busy_f(void)
344{
345 return 0x1U;
346}
347static inline u32 gr_pri_be0_becs_be_exception_r(void)
348{
349 return 0x00410204U;
350}
351static inline u32 gr_pri_be0_becs_be_exception_en_r(void)
352{
353 return 0x00410208U;
354}
355static inline u32 gr_pri_gpc0_gpccs_gpc_exception_r(void)
356{
357 return 0x00502c90U;
358}
359static inline u32 gr_pri_gpc0_gpccs_gpc_exception_en_r(void)
360{
361 return 0x00502c94U;
362}
363static inline u32 gr_pri_gpc0_tpc0_tpccs_tpc_exception_r(void)
364{
365 return 0x00504508U;
366}
367static inline u32 gr_pri_gpc0_tpc0_tpccs_tpc_exception_en_r(void)
368{
369 return 0x0050450cU;
370}
371static inline u32 gr_activity_0_r(void)
372{
373 return 0x00400380U;
374}
375static inline u32 gr_activity_1_r(void)
376{
377 return 0x00400384U;
378}
379static inline u32 gr_activity_2_r(void)
380{
381 return 0x00400388U;
382}
383static inline u32 gr_activity_4_r(void)
384{
385 return 0x00400390U;
386}
387static inline u32 gr_pri_gpc0_gcc_dbg_r(void)
388{
389 return 0x00501000U;
390}
391static inline u32 gr_pri_gpcs_gcc_dbg_r(void)
392{
393 return 0x00419000U;
394}
395static inline u32 gr_pri_gpcs_gcc_dbg_invalidate_m(void)
396{
397 return 0x1U << 1U;
398}
399static inline u32 gr_pri_gpc0_tpc0_sm_cache_control_r(void)
400{
401 return 0x005046a4U;
402}
403static inline u32 gr_pri_gpcs_tpcs_sm_cache_control_r(void)
404{
405 return 0x00419ea4U;
406}
407static inline u32 gr_pri_gpcs_tpcs_sm_cache_control_invalidate_cache_m(void)
408{
409 return 0x1U << 0U;
410}
411static inline u32 gr_pri_sked_activity_r(void)
412{
413 return 0x00407054U;
414}
415static inline u32 gr_pri_gpc0_gpccs_gpc_activity0_r(void)
416{
417 return 0x00502c80U;
418}
419static inline u32 gr_pri_gpc0_gpccs_gpc_activity1_r(void)
420{
421 return 0x00502c84U;
422}
423static inline u32 gr_pri_gpc0_gpccs_gpc_activity2_r(void)
424{
425 return 0x00502c88U;
426}
427static inline u32 gr_pri_gpc0_gpccs_gpc_activity3_r(void)
428{
429 return 0x00502c8cU;
430}
431static inline u32 gr_pri_gpc0_tpc0_tpccs_tpc_activity_0_r(void)
432{
433 return 0x00504500U;
434}
435static inline u32 gr_pri_gpc0_tpc1_tpccs_tpc_activity_0_r(void)
436{
437 return 0x00504d00U;
438}
439static inline u32 gr_pri_gpc0_tpcs_tpccs_tpc_activity_0_r(void)
440{
441 return 0x00501d00U;
442}
443static inline u32 gr_pri_gpcs_gpccs_gpc_activity_0_r(void)
444{
445 return 0x0041ac80U;
446}
447static inline u32 gr_pri_gpcs_gpccs_gpc_activity_1_r(void)
448{
449 return 0x0041ac84U;
450}
451static inline u32 gr_pri_gpcs_gpccs_gpc_activity_2_r(void)
452{
453 return 0x0041ac88U;
454}
455static inline u32 gr_pri_gpcs_gpccs_gpc_activity_3_r(void)
456{
457 return 0x0041ac8cU;
458}
459static inline u32 gr_pri_gpcs_tpc0_tpccs_tpc_activity_0_r(void)
460{
461 return 0x0041c500U;
462}
463static inline u32 gr_pri_gpcs_tpc1_tpccs_tpc_activity_0_r(void)
464{
465 return 0x0041cd00U;
466}
467static inline u32 gr_pri_gpcs_tpcs_tpccs_tpc_activity_0_r(void)
468{
469 return 0x00419d00U;
470}
471static inline u32 gr_pri_be0_becs_be_activity0_r(void)
472{
473 return 0x00410200U;
474}
475static inline u32 gr_pri_be1_becs_be_activity0_r(void)
476{
477 return 0x00410600U;
478}
479static inline u32 gr_pri_bes_becs_be_activity0_r(void)
480{
481 return 0x00408a00U;
482}
483static inline u32 gr_pri_ds_mpipe_status_r(void)
484{
485 return 0x00405858U;
486}
487static inline u32 gr_pri_fe_go_idle_on_status_r(void)
488{
489 return 0x00404150U;
490}
491static inline u32 gr_pri_fe_go_idle_check_r(void)
492{
493 return 0x00404158U;
494}
495static inline u32 gr_pri_fe_go_idle_info_r(void)
496{
497 return 0x00404194U;
498}
499static inline u32 gr_pri_gpc0_tpc0_tex_m_tex_subunits_status_r(void)
500{
501 return 0x00504238U;
502}
503static inline u32 gr_pri_be0_crop_status1_r(void)
504{
505 return 0x00410134U;
506}
507static inline u32 gr_pri_bes_crop_status1_r(void)
508{
509 return 0x00408934U;
510}
511static inline u32 gr_pri_be0_zrop_status_r(void)
512{
513 return 0x00410048U;
514}
515static inline u32 gr_pri_be0_zrop_status2_r(void)
516{
517 return 0x0041004cU;
518}
519static inline u32 gr_pri_bes_zrop_status_r(void)
520{
521 return 0x00408848U;
522}
523static inline u32 gr_pri_bes_zrop_status2_r(void)
524{
525 return 0x0040884cU;
526}
527static inline u32 gr_pipe_bundle_address_r(void)
528{
529 return 0x00400200U;
530}
531static inline u32 gr_pipe_bundle_address_value_v(u32 r)
532{
533 return (r >> 0U) & 0xffffU;
534}
535static inline u32 gr_pipe_bundle_data_r(void)
536{
537 return 0x00400204U;
538}
539static inline u32 gr_pipe_bundle_config_r(void)
540{
541 return 0x00400208U;
542}
543static inline u32 gr_pipe_bundle_config_override_pipe_mode_disabled_f(void)
544{
545 return 0x0U;
546}
547static inline u32 gr_pipe_bundle_config_override_pipe_mode_enabled_f(void)
548{
549 return 0x80000000U;
550}
551static inline u32 gr_fe_hww_esr_r(void)
552{
553 return 0x00404000U;
554}
555static inline u32 gr_fe_hww_esr_reset_active_f(void)
556{
557 return 0x40000000U;
558}
559static inline u32 gr_fe_hww_esr_en_enable_f(void)
560{
561 return 0x80000000U;
562}
563static inline u32 gr_fe_hww_esr_info_r(void)
564{
565 return 0x004041b0U;
566}
567static inline u32 gr_fe_go_idle_timeout_r(void)
568{
569 return 0x00404154U;
570}
571static inline u32 gr_fe_go_idle_timeout_count_f(u32 v)
572{
573 return (v & 0xffffffffU) << 0U;
574}
575static inline u32 gr_fe_go_idle_timeout_count_disabled_f(void)
576{
577 return 0x0U;
578}
579static inline u32 gr_fe_go_idle_timeout_count_prod_f(void)
580{
581 return 0x800U;
582}
583static inline u32 gr_fe_object_table_r(u32 i)
584{
585 return 0x00404200U + i*4U;
586}
587static inline u32 gr_fe_object_table_nvclass_v(u32 r)
588{
589 return (r >> 0U) & 0xffffU;
590}
591static inline u32 gr_fe_tpc_fs_r(void)
592{
593 return 0x004041c4U;
594}
595static inline u32 gr_pri_mme_shadow_raw_index_r(void)
596{
597 return 0x00404488U;
598}
599static inline u32 gr_pri_mme_shadow_raw_index_write_trigger_f(void)
600{
601 return 0x80000000U;
602}
603static inline u32 gr_pri_mme_shadow_raw_data_r(void)
604{
605 return 0x0040448cU;
606}
607static inline u32 gr_mme_hww_esr_r(void)
608{
609 return 0x00404490U;
610}
611static inline u32 gr_mme_hww_esr_reset_active_f(void)
612{
613 return 0x40000000U;
614}
615static inline u32 gr_mme_hww_esr_en_enable_f(void)
616{
617 return 0x80000000U;
618}
619static inline u32 gr_mme_hww_esr_info_r(void)
620{
621 return 0x00404494U;
622}
623static inline u32 gr_memfmt_hww_esr_r(void)
624{
625 return 0x00404600U;
626}
627static inline u32 gr_memfmt_hww_esr_reset_active_f(void)
628{
629 return 0x40000000U;
630}
631static inline u32 gr_memfmt_hww_esr_en_enable_f(void)
632{
633 return 0x80000000U;
634}
635static inline u32 gr_fecs_cpuctl_r(void)
636{
637 return 0x00409100U;
638}
639static inline u32 gr_fecs_cpuctl_startcpu_f(u32 v)
640{
641 return (v & 0x1U) << 1U;
642}
643static inline u32 gr_fecs_cpuctl_alias_r(void)
644{
645 return 0x00409130U;
646}
647static inline u32 gr_fecs_cpuctl_alias_startcpu_f(u32 v)
648{
649 return (v & 0x1U) << 1U;
650}
651static inline u32 gr_fecs_dmactl_r(void)
652{
653 return 0x0040910cU;
654}
655static inline u32 gr_fecs_dmactl_require_ctx_f(u32 v)
656{
657 return (v & 0x1U) << 0U;
658}
659static inline u32 gr_fecs_dmactl_dmem_scrubbing_m(void)
660{
661 return 0x1U << 1U;
662}
663static inline u32 gr_fecs_dmactl_imem_scrubbing_m(void)
664{
665 return 0x1U << 2U;
666}
667static inline u32 gr_fecs_os_r(void)
668{
669 return 0x00409080U;
670}
671static inline u32 gr_fecs_idlestate_r(void)
672{
673 return 0x0040904cU;
674}
675static inline u32 gr_fecs_mailbox0_r(void)
676{
677 return 0x00409040U;
678}
679static inline u32 gr_fecs_mailbox1_r(void)
680{
681 return 0x00409044U;
682}
683static inline u32 gr_fecs_irqstat_r(void)
684{
685 return 0x00409008U;
686}
687static inline u32 gr_fecs_irqmode_r(void)
688{
689 return 0x0040900cU;
690}
691static inline u32 gr_fecs_irqmask_r(void)
692{
693 return 0x00409018U;
694}
695static inline u32 gr_fecs_irqdest_r(void)
696{
697 return 0x0040901cU;
698}
699static inline u32 gr_fecs_curctx_r(void)
700{
701 return 0x00409050U;
702}
703static inline u32 gr_fecs_nxtctx_r(void)
704{
705 return 0x00409054U;
706}
707static inline u32 gr_fecs_engctl_r(void)
708{
709 return 0x004090a4U;
710}
711static inline u32 gr_fecs_debug1_r(void)
712{
713 return 0x00409090U;
714}
715static inline u32 gr_fecs_debuginfo_r(void)
716{
717 return 0x00409094U;
718}
719static inline u32 gr_fecs_icd_cmd_r(void)
720{
721 return 0x00409200U;
722}
723static inline u32 gr_fecs_icd_cmd_opc_s(void)
724{
725 return 4U;
726}
727static inline u32 gr_fecs_icd_cmd_opc_f(u32 v)
728{
729 return (v & 0xfU) << 0U;
730}
731static inline u32 gr_fecs_icd_cmd_opc_m(void)
732{
733 return 0xfU << 0U;
734}
735static inline u32 gr_fecs_icd_cmd_opc_v(u32 r)
736{
737 return (r >> 0U) & 0xfU;
738}
739static inline u32 gr_fecs_icd_cmd_opc_rreg_f(void)
740{
741 return 0x8U;
742}
743static inline u32 gr_fecs_icd_cmd_opc_rstat_f(void)
744{
745 return 0xeU;
746}
747static inline u32 gr_fecs_icd_cmd_idx_f(u32 v)
748{
749 return (v & 0x1fU) << 8U;
750}
751static inline u32 gr_fecs_icd_rdata_r(void)
752{
753 return 0x0040920cU;
754}
755static inline u32 gr_fecs_imemc_r(u32 i)
756{
757 return 0x00409180U + i*16U;
758}
759static inline u32 gr_fecs_imemc_offs_f(u32 v)
760{
761 return (v & 0x3fU) << 2U;
762}
763static inline u32 gr_fecs_imemc_blk_f(u32 v)
764{
765 return (v & 0xffU) << 8U;
766}
767static inline u32 gr_fecs_imemc_aincw_f(u32 v)
768{
769 return (v & 0x1U) << 24U;
770}
771static inline u32 gr_fecs_imemd_r(u32 i)
772{
773 return 0x00409184U + i*16U;
774}
775static inline u32 gr_fecs_imemt_r(u32 i)
776{
777 return 0x00409188U + i*16U;
778}
779static inline u32 gr_fecs_imemt_tag_f(u32 v)
780{
781 return (v & 0xffffU) << 0U;
782}
783static inline u32 gr_fecs_dmemc_r(u32 i)
784{
785 return 0x004091c0U + i*8U;
786}
787static inline u32 gr_fecs_dmemc_offs_s(void)
788{
789 return 6U;
790}
791static inline u32 gr_fecs_dmemc_offs_f(u32 v)
792{
793 return (v & 0x3fU) << 2U;
794}
795static inline u32 gr_fecs_dmemc_offs_m(void)
796{
797 return 0x3fU << 2U;
798}
799static inline u32 gr_fecs_dmemc_offs_v(u32 r)
800{
801 return (r >> 2U) & 0x3fU;
802}
803static inline u32 gr_fecs_dmemc_blk_f(u32 v)
804{
805 return (v & 0xffU) << 8U;
806}
807static inline u32 gr_fecs_dmemc_aincw_f(u32 v)
808{
809 return (v & 0x1U) << 24U;
810}
811static inline u32 gr_fecs_dmemd_r(u32 i)
812{
813 return 0x004091c4U + i*8U;
814}
815static inline u32 gr_fecs_dmatrfbase_r(void)
816{
817 return 0x00409110U;
818}
819static inline u32 gr_fecs_dmatrfmoffs_r(void)
820{
821 return 0x00409114U;
822}
823static inline u32 gr_fecs_dmatrffboffs_r(void)
824{
825 return 0x0040911cU;
826}
827static inline u32 gr_fecs_dmatrfcmd_r(void)
828{
829 return 0x00409118U;
830}
831static inline u32 gr_fecs_dmatrfcmd_imem_f(u32 v)
832{
833 return (v & 0x1U) << 4U;
834}
835static inline u32 gr_fecs_dmatrfcmd_write_f(u32 v)
836{
837 return (v & 0x1U) << 5U;
838}
839static inline u32 gr_fecs_dmatrfcmd_size_f(u32 v)
840{
841 return (v & 0x7U) << 8U;
842}
843static inline u32 gr_fecs_dmatrfcmd_ctxdma_f(u32 v)
844{
845 return (v & 0x7U) << 12U;
846}
847static inline u32 gr_fecs_bootvec_r(void)
848{
849 return 0x00409104U;
850}
851static inline u32 gr_fecs_bootvec_vec_f(u32 v)
852{
853 return (v & 0xffffffffU) << 0U;
854}
855static inline u32 gr_fecs_falcon_hwcfg_r(void)
856{
857 return 0x00409108U;
858}
859static inline u32 gr_gpcs_gpccs_falcon_hwcfg_r(void)
860{
861 return 0x0041a108U;
862}
863static inline u32 gr_fecs_falcon_rm_r(void)
864{
865 return 0x00409084U;
866}
867static inline u32 gr_fecs_current_ctx_r(void)
868{
869 return 0x00409b00U;
870}
871static inline u32 gr_fecs_current_ctx_ptr_f(u32 v)
872{
873 return (v & 0xfffffffU) << 0U;
874}
875static inline u32 gr_fecs_current_ctx_ptr_v(u32 r)
876{
877 return (r >> 0U) & 0xfffffffU;
878}
879static inline u32 gr_fecs_current_ctx_target_s(void)
880{
881 return 2U;
882}
883static inline u32 gr_fecs_current_ctx_target_f(u32 v)
884{
885 return (v & 0x3U) << 28U;
886}
887static inline u32 gr_fecs_current_ctx_target_m(void)
888{
889 return 0x3U << 28U;
890}
891static inline u32 gr_fecs_current_ctx_target_v(u32 r)
892{
893 return (r >> 28U) & 0x3U;
894}
895static inline u32 gr_fecs_current_ctx_target_vid_mem_f(void)
896{
897 return 0x0U;
898}
899static inline u32 gr_fecs_current_ctx_target_sys_mem_coh_f(void)
900{
901 return 0x20000000U;
902}
903static inline u32 gr_fecs_current_ctx_target_sys_mem_ncoh_f(void)
904{
905 return 0x30000000U;
906}
907static inline u32 gr_fecs_current_ctx_valid_s(void)
908{
909 return 1U;
910}
911static inline u32 gr_fecs_current_ctx_valid_f(u32 v)
912{
913 return (v & 0x1U) << 31U;
914}
915static inline u32 gr_fecs_current_ctx_valid_m(void)
916{
917 return 0x1U << 31U;
918}
919static inline u32 gr_fecs_current_ctx_valid_v(u32 r)
920{
921 return (r >> 31U) & 0x1U;
922}
923static inline u32 gr_fecs_current_ctx_valid_false_f(void)
924{
925 return 0x0U;
926}
927static inline u32 gr_fecs_method_data_r(void)
928{
929 return 0x00409500U;
930}
931static inline u32 gr_fecs_method_push_r(void)
932{
933 return 0x00409504U;
934}
935static inline u32 gr_fecs_method_push_adr_f(u32 v)
936{
937 return (v & 0xfffU) << 0U;
938}
939static inline u32 gr_fecs_method_push_adr_bind_pointer_v(void)
940{
941 return 0x00000003U;
942}
943static inline u32 gr_fecs_method_push_adr_bind_pointer_f(void)
944{
945 return 0x3U;
946}
947static inline u32 gr_fecs_method_push_adr_discover_image_size_v(void)
948{
949 return 0x00000010U;
950}
951static inline u32 gr_fecs_method_push_adr_wfi_golden_save_v(void)
952{
953 return 0x00000009U;
954}
955static inline u32 gr_fecs_method_push_adr_restore_golden_v(void)
956{
957 return 0x00000015U;
958}
959static inline u32 gr_fecs_method_push_adr_discover_zcull_image_size_v(void)
960{
961 return 0x00000016U;
962}
963static inline u32 gr_fecs_method_push_adr_discover_pm_image_size_v(void)
964{
965 return 0x00000025U;
966}
967static inline u32 gr_fecs_method_push_adr_discover_reglist_image_size_v(void)
968{
969 return 0x00000030U;
970}
971static inline u32 gr_fecs_method_push_adr_set_reglist_bind_instance_v(void)
972{
973 return 0x00000031U;
974}
975static inline u32 gr_fecs_method_push_adr_set_reglist_virtual_address_v(void)
976{
977 return 0x00000032U;
978}
979static inline u32 gr_fecs_method_push_adr_stop_ctxsw_v(void)
980{
981 return 0x00000038U;
982}
983static inline u32 gr_fecs_method_push_adr_start_ctxsw_v(void)
984{
985 return 0x00000039U;
986}
987static inline u32 gr_fecs_method_push_adr_set_watchdog_timeout_f(void)
988{
989 return 0x21U;
990}
991static inline u32 gr_fecs_method_push_adr_write_timestamp_record_v(void)
992{
993 return 0x0000003dU;
994}
995static inline u32 gr_fecs_method_push_adr_halt_pipeline_v(void)
996{
997 return 0x00000004U;
998}
999static inline u32 gr_fecs_host_int_status_r(void)
1000{
1001 return 0x00409c18U;
1002}
1003static inline u32 gr_fecs_host_int_status_fault_during_ctxsw_f(u32 v)
1004{
1005 return (v & 0x1U) << 16U;
1006}
1007static inline u32 gr_fecs_host_int_status_umimp_firmware_method_f(u32 v)
1008{
1009 return (v & 0x1U) << 17U;
1010}
1011static inline u32 gr_fecs_host_int_status_umimp_illegal_method_f(u32 v)
1012{
1013 return (v & 0x1U) << 18U;
1014}
1015static inline u32 gr_fecs_host_int_status_watchdog_active_f(void)
1016{
1017 return 0x80000U;
1018}
1019static inline u32 gr_fecs_host_int_status_ctxsw_intr_f(u32 v)
1020{
1021 return (v & 0xffffU) << 0U;
1022}
1023static inline u32 gr_fecs_host_int_clear_r(void)
1024{
1025 return 0x00409c20U;
1026}
1027static inline u32 gr_fecs_host_int_clear_ctxsw_intr1_f(u32 v)
1028{
1029 return (v & 0x1U) << 1U;
1030}
1031static inline u32 gr_fecs_host_int_clear_ctxsw_intr1_clear_f(void)
1032{
1033 return 0x2U;
1034}
1035static inline u32 gr_fecs_host_int_enable_r(void)
1036{
1037 return 0x00409c24U;
1038}
1039static inline u32 gr_fecs_host_int_enable_ctxsw_intr1_enable_f(void)
1040{
1041 return 0x2U;
1042}
1043static inline u32 gr_fecs_host_int_enable_fault_during_ctxsw_enable_f(void)
1044{
1045 return 0x10000U;
1046}
1047static inline u32 gr_fecs_host_int_enable_umimp_firmware_method_enable_f(void)
1048{
1049 return 0x20000U;
1050}
1051static inline u32 gr_fecs_host_int_enable_umimp_illegal_method_enable_f(void)
1052{
1053 return 0x40000U;
1054}
1055static inline u32 gr_fecs_host_int_enable_watchdog_enable_f(void)
1056{
1057 return 0x80000U;
1058}
1059static inline u32 gr_fecs_ctxsw_reset_ctl_r(void)
1060{
1061 return 0x00409614U;
1062}
1063static inline u32 gr_fecs_ctxsw_reset_ctl_sys_halt_disabled_f(void)
1064{
1065 return 0x0U;
1066}
1067static inline u32 gr_fecs_ctxsw_reset_ctl_gpc_halt_disabled_f(void)
1068{
1069 return 0x0U;
1070}
1071static inline u32 gr_fecs_ctxsw_reset_ctl_be_halt_disabled_f(void)
1072{
1073 return 0x0U;
1074}
1075static inline u32 gr_fecs_ctxsw_reset_ctl_sys_engine_reset_disabled_f(void)
1076{
1077 return 0x10U;
1078}
1079static inline u32 gr_fecs_ctxsw_reset_ctl_gpc_engine_reset_disabled_f(void)
1080{
1081 return 0x20U;
1082}
1083static inline u32 gr_fecs_ctxsw_reset_ctl_be_engine_reset_disabled_f(void)
1084{
1085 return 0x40U;
1086}
1087static inline u32 gr_fecs_ctxsw_reset_ctl_sys_context_reset_enabled_f(void)
1088{
1089 return 0x0U;
1090}
1091static inline u32 gr_fecs_ctxsw_reset_ctl_sys_context_reset_disabled_f(void)
1092{
1093 return 0x100U;
1094}
1095static inline u32 gr_fecs_ctxsw_reset_ctl_gpc_context_reset_enabled_f(void)
1096{
1097 return 0x0U;
1098}
1099static inline u32 gr_fecs_ctxsw_reset_ctl_gpc_context_reset_disabled_f(void)
1100{
1101 return 0x200U;
1102}
1103static inline u32 gr_fecs_ctxsw_reset_ctl_be_context_reset_s(void)
1104{
1105 return 1U;
1106}
1107static inline u32 gr_fecs_ctxsw_reset_ctl_be_context_reset_f(u32 v)
1108{
1109 return (v & 0x1U) << 10U;
1110}
1111static inline u32 gr_fecs_ctxsw_reset_ctl_be_context_reset_m(void)
1112{
1113 return 0x1U << 10U;
1114}
1115static inline u32 gr_fecs_ctxsw_reset_ctl_be_context_reset_v(u32 r)
1116{
1117 return (r >> 10U) & 0x1U;
1118}
1119static inline u32 gr_fecs_ctxsw_reset_ctl_be_context_reset_enabled_f(void)
1120{
1121 return 0x0U;
1122}
1123static inline u32 gr_fecs_ctxsw_reset_ctl_be_context_reset_disabled_f(void)
1124{
1125 return 0x400U;
1126}
1127static inline u32 gr_fecs_ctx_state_store_major_rev_id_r(void)
1128{
1129 return 0x0040960cU;
1130}
1131static inline u32 gr_fecs_ctxsw_mailbox_r(u32 i)
1132{
1133 return 0x00409800U + i*4U;
1134}
1135static inline u32 gr_fecs_ctxsw_mailbox__size_1_v(void)
1136{
1137 return 0x00000010U;
1138}
1139static inline u32 gr_fecs_ctxsw_mailbox_value_f(u32 v)
1140{
1141 return (v & 0xffffffffU) << 0U;
1142}
1143static inline u32 gr_fecs_ctxsw_mailbox_value_pass_v(void)
1144{
1145 return 0x00000001U;
1146}
1147static inline u32 gr_fecs_ctxsw_mailbox_value_fail_v(void)
1148{
1149 return 0x00000002U;
1150}
1151static inline u32 gr_fecs_ctxsw_mailbox_set_r(u32 i)
1152{
1153 return 0x004098c0U + i*4U;
1154}
1155static inline u32 gr_fecs_ctxsw_mailbox_set_value_f(u32 v)
1156{
1157 return (v & 0xffffffffU) << 0U;
1158}
1159static inline u32 gr_fecs_ctxsw_mailbox_clear_r(u32 i)
1160{
1161 return 0x00409840U + i*4U;
1162}
1163static inline u32 gr_fecs_ctxsw_mailbox_clear_value_f(u32 v)
1164{
1165 return (v & 0xffffffffU) << 0U;
1166}
1167static inline u32 gr_fecs_fs_r(void)
1168{
1169 return 0x00409604U;
1170}
1171static inline u32 gr_fecs_fs_num_available_gpcs_s(void)
1172{
1173 return 5U;
1174}
1175static inline u32 gr_fecs_fs_num_available_gpcs_f(u32 v)
1176{
1177 return (v & 0x1fU) << 0U;
1178}
1179static inline u32 gr_fecs_fs_num_available_gpcs_m(void)
1180{
1181 return 0x1fU << 0U;
1182}
1183static inline u32 gr_fecs_fs_num_available_gpcs_v(u32 r)
1184{
1185 return (r >> 0U) & 0x1fU;
1186}
1187static inline u32 gr_fecs_fs_num_available_fbps_s(void)
1188{
1189 return 5U;
1190}
1191static inline u32 gr_fecs_fs_num_available_fbps_f(u32 v)
1192{
1193 return (v & 0x1fU) << 16U;
1194}
1195static inline u32 gr_fecs_fs_num_available_fbps_m(void)
1196{
1197 return 0x1fU << 16U;
1198}
1199static inline u32 gr_fecs_fs_num_available_fbps_v(u32 r)
1200{
1201 return (r >> 16U) & 0x1fU;
1202}
1203static inline u32 gr_fecs_cfg_r(void)
1204{
1205 return 0x00409620U;
1206}
1207static inline u32 gr_fecs_cfg_imem_sz_v(u32 r)
1208{
1209 return (r >> 0U) & 0xffU;
1210}
1211static inline u32 gr_fecs_rc_lanes_r(void)
1212{
1213 return 0x00409880U;
1214}
1215static inline u32 gr_fecs_rc_lanes_num_chains_s(void)
1216{
1217 return 6U;
1218}
1219static inline u32 gr_fecs_rc_lanes_num_chains_f(u32 v)
1220{
1221 return (v & 0x3fU) << 0U;
1222}
1223static inline u32 gr_fecs_rc_lanes_num_chains_m(void)
1224{
1225 return 0x3fU << 0U;
1226}
1227static inline u32 gr_fecs_rc_lanes_num_chains_v(u32 r)
1228{
1229 return (r >> 0U) & 0x3fU;
1230}
1231static inline u32 gr_fecs_ctxsw_status_1_r(void)
1232{
1233 return 0x00409400U;
1234}
1235static inline u32 gr_fecs_ctxsw_status_1_arb_busy_s(void)
1236{
1237 return 1U;
1238}
1239static inline u32 gr_fecs_ctxsw_status_1_arb_busy_f(u32 v)
1240{
1241 return (v & 0x1U) << 12U;
1242}
1243static inline u32 gr_fecs_ctxsw_status_1_arb_busy_m(void)
1244{
1245 return 0x1U << 12U;
1246}
1247static inline u32 gr_fecs_ctxsw_status_1_arb_busy_v(u32 r)
1248{
1249 return (r >> 12U) & 0x1U;
1250}
1251static inline u32 gr_fecs_arb_ctx_adr_r(void)
1252{
1253 return 0x00409a24U;
1254}
1255static inline u32 gr_fecs_new_ctx_r(void)
1256{
1257 return 0x00409b04U;
1258}
1259static inline u32 gr_fecs_new_ctx_ptr_s(void)
1260{
1261 return 28U;
1262}
1263static inline u32 gr_fecs_new_ctx_ptr_f(u32 v)
1264{
1265 return (v & 0xfffffffU) << 0U;
1266}
1267static inline u32 gr_fecs_new_ctx_ptr_m(void)
1268{
1269 return 0xfffffffU << 0U;
1270}
1271static inline u32 gr_fecs_new_ctx_ptr_v(u32 r)
1272{
1273 return (r >> 0U) & 0xfffffffU;
1274}
1275static inline u32 gr_fecs_new_ctx_target_s(void)
1276{
1277 return 2U;
1278}
1279static inline u32 gr_fecs_new_ctx_target_f(u32 v)
1280{
1281 return (v & 0x3U) << 28U;
1282}
1283static inline u32 gr_fecs_new_ctx_target_m(void)
1284{
1285 return 0x3U << 28U;
1286}
1287static inline u32 gr_fecs_new_ctx_target_v(u32 r)
1288{
1289 return (r >> 28U) & 0x3U;
1290}
1291static inline u32 gr_fecs_new_ctx_target_vid_mem_f(void)
1292{
1293 return 0x0U;
1294}
1295static inline u32 gr_fecs_new_ctx_target_sys_mem_ncoh_f(void)
1296{
1297 return 0x30000000U;
1298}
1299static inline u32 gr_fecs_new_ctx_target_sys_mem_coh_f(void)
1300{
1301 return 0x20000000U;
1302}
1303static inline u32 gr_fecs_new_ctx_valid_s(void)
1304{
1305 return 1U;
1306}
1307static inline u32 gr_fecs_new_ctx_valid_f(u32 v)
1308{
1309 return (v & 0x1U) << 31U;
1310}
1311static inline u32 gr_fecs_new_ctx_valid_m(void)
1312{
1313 return 0x1U << 31U;
1314}
1315static inline u32 gr_fecs_new_ctx_valid_v(u32 r)
1316{
1317 return (r >> 31U) & 0x1U;
1318}
1319static inline u32 gr_fecs_arb_ctx_ptr_r(void)
1320{
1321 return 0x00409a0cU;
1322}
1323static inline u32 gr_fecs_arb_ctx_ptr_ptr_s(void)
1324{
1325 return 28U;
1326}
1327static inline u32 gr_fecs_arb_ctx_ptr_ptr_f(u32 v)
1328{
1329 return (v & 0xfffffffU) << 0U;
1330}
1331static inline u32 gr_fecs_arb_ctx_ptr_ptr_m(void)
1332{
1333 return 0xfffffffU << 0U;
1334}
1335static inline u32 gr_fecs_arb_ctx_ptr_ptr_v(u32 r)
1336{
1337 return (r >> 0U) & 0xfffffffU;
1338}
1339static inline u32 gr_fecs_arb_ctx_ptr_target_s(void)
1340{
1341 return 2U;
1342}
1343static inline u32 gr_fecs_arb_ctx_ptr_target_f(u32 v)
1344{
1345 return (v & 0x3U) << 28U;
1346}
1347static inline u32 gr_fecs_arb_ctx_ptr_target_m(void)
1348{
1349 return 0x3U << 28U;
1350}
1351static inline u32 gr_fecs_arb_ctx_ptr_target_v(u32 r)
1352{
1353 return (r >> 28U) & 0x3U;
1354}
1355static inline u32 gr_fecs_arb_ctx_ptr_target_vid_mem_f(void)
1356{
1357 return 0x0U;
1358}
1359static inline u32 gr_fecs_arb_ctx_ptr_target_sys_mem_ncoh_f(void)
1360{
1361 return 0x30000000U;
1362}
1363static inline u32 gr_fecs_arb_ctx_ptr_target_sys_mem_coh_f(void)
1364{
1365 return 0x20000000U;
1366}
1367static inline u32 gr_fecs_arb_ctx_cmd_r(void)
1368{
1369 return 0x00409a10U;
1370}
1371static inline u32 gr_fecs_arb_ctx_cmd_cmd_s(void)
1372{
1373 return 5U;
1374}
1375static inline u32 gr_fecs_arb_ctx_cmd_cmd_f(u32 v)
1376{
1377 return (v & 0x1fU) << 0U;
1378}
1379static inline u32 gr_fecs_arb_ctx_cmd_cmd_m(void)
1380{
1381 return 0x1fU << 0U;
1382}
1383static inline u32 gr_fecs_arb_ctx_cmd_cmd_v(u32 r)
1384{
1385 return (r >> 0U) & 0x1fU;
1386}
1387static inline u32 gr_fecs_ctxsw_status_fe_0_r(void)
1388{
1389 return 0x00409c00U;
1390}
1391static inline u32 gr_gpc0_gpccs_ctxsw_status_gpc_0_r(void)
1392{
1393 return 0x00502c04U;
1394}
1395static inline u32 gr_gpc0_gpccs_ctxsw_status_1_r(void)
1396{
1397 return 0x00502400U;
1398}
1399static inline u32 gr_gpc0_gpccs_ctxsw_mailbox__size_1_v(void)
1400{
1401 return 0x00000010U;
1402}
1403static inline u32 gr_fecs_ctxsw_idlestate_r(void)
1404{
1405 return 0x00409420U;
1406}
1407static inline u32 gr_gpc0_gpccs_ctxsw_idlestate_r(void)
1408{
1409 return 0x00502420U;
1410}
1411static inline u32 gr_rstr2d_gpc_map0_r(void)
1412{
1413 return 0x0040780cU;
1414}
1415static inline u32 gr_rstr2d_gpc_map1_r(void)
1416{
1417 return 0x00407810U;
1418}
1419static inline u32 gr_rstr2d_gpc_map2_r(void)
1420{
1421 return 0x00407814U;
1422}
1423static inline u32 gr_rstr2d_gpc_map3_r(void)
1424{
1425 return 0x00407818U;
1426}
1427static inline u32 gr_rstr2d_gpc_map4_r(void)
1428{
1429 return 0x0040781cU;
1430}
1431static inline u32 gr_rstr2d_gpc_map5_r(void)
1432{
1433 return 0x00407820U;
1434}
1435static inline u32 gr_rstr2d_map_table_cfg_r(void)
1436{
1437 return 0x004078bcU;
1438}
1439static inline u32 gr_rstr2d_map_table_cfg_row_offset_f(u32 v)
1440{
1441 return (v & 0xffU) << 0U;
1442}
1443static inline u32 gr_rstr2d_map_table_cfg_num_entries_f(u32 v)
1444{
1445 return (v & 0xffU) << 8U;
1446}
1447static inline u32 gr_pd_hww_esr_r(void)
1448{
1449 return 0x00406018U;
1450}
1451static inline u32 gr_pd_hww_esr_reset_active_f(void)
1452{
1453 return 0x40000000U;
1454}
1455static inline u32 gr_pd_hww_esr_en_enable_f(void)
1456{
1457 return 0x80000000U;
1458}
1459static inline u32 gr_pd_num_tpc_per_gpc_r(u32 i)
1460{
1461 return 0x00406028U + i*4U;
1462}
1463static inline u32 gr_pd_num_tpc_per_gpc__size_1_v(void)
1464{
1465 return 0x00000004U;
1466}
1467static inline u32 gr_pd_num_tpc_per_gpc_count0_f(u32 v)
1468{
1469 return (v & 0xfU) << 0U;
1470}
1471static inline u32 gr_pd_num_tpc_per_gpc_count1_f(u32 v)
1472{
1473 return (v & 0xfU) << 4U;
1474}
1475static inline u32 gr_pd_num_tpc_per_gpc_count2_f(u32 v)
1476{
1477 return (v & 0xfU) << 8U;
1478}
1479static inline u32 gr_pd_num_tpc_per_gpc_count3_f(u32 v)
1480{
1481 return (v & 0xfU) << 12U;
1482}
1483static inline u32 gr_pd_num_tpc_per_gpc_count4_f(u32 v)
1484{
1485 return (v & 0xfU) << 16U;
1486}
1487static inline u32 gr_pd_num_tpc_per_gpc_count5_f(u32 v)
1488{
1489 return (v & 0xfU) << 20U;
1490}
1491static inline u32 gr_pd_num_tpc_per_gpc_count6_f(u32 v)
1492{
1493 return (v & 0xfU) << 24U;
1494}
1495static inline u32 gr_pd_num_tpc_per_gpc_count7_f(u32 v)
1496{
1497 return (v & 0xfU) << 28U;
1498}
1499static inline u32 gr_pd_ab_dist_cfg0_r(void)
1500{
1501 return 0x004064c0U;
1502}
1503static inline u32 gr_pd_ab_dist_cfg0_timeslice_enable_en_f(void)
1504{
1505 return 0x80000000U;
1506}
1507static inline u32 gr_pd_ab_dist_cfg0_timeslice_enable_dis_f(void)
1508{
1509 return 0x0U;
1510}
1511static inline u32 gr_pd_ab_dist_cfg1_r(void)
1512{
1513 return 0x004064c4U;
1514}
1515static inline u32 gr_pd_ab_dist_cfg1_max_batches_init_f(void)
1516{
1517 return 0xffffU;
1518}
1519static inline u32 gr_pd_ab_dist_cfg1_max_output_f(u32 v)
1520{
1521 return (v & 0xffffU) << 16U;
1522}
1523static inline u32 gr_pd_ab_dist_cfg1_max_output_granularity_v(void)
1524{
1525 return 0x00000080U;
1526}
1527static inline u32 gr_pd_ab_dist_cfg2_r(void)
1528{
1529 return 0x004064c8U;
1530}
1531static inline u32 gr_pd_ab_dist_cfg2_token_limit_f(u32 v)
1532{
1533 return (v & 0xfffU) << 0U;
1534}
1535static inline u32 gr_pd_ab_dist_cfg2_token_limit_init_v(void)
1536{
1537 return 0x000001c0U;
1538}
1539static inline u32 gr_pd_ab_dist_cfg2_state_limit_f(u32 v)
1540{
1541 return (v & 0xfffU) << 16U;
1542}
1543static inline u32 gr_pd_ab_dist_cfg2_state_limit_scc_bundle_granularity_v(void)
1544{
1545 return 0x00000020U;
1546}
1547static inline u32 gr_pd_ab_dist_cfg2_state_limit_min_gpm_fifo_depths_v(void)
1548{
1549 return 0x00000182U;
1550}
1551static inline u32 gr_pd_pagepool_r(void)
1552{
1553 return 0x004064ccU;
1554}
1555static inline u32 gr_pd_pagepool_total_pages_f(u32 v)
1556{
1557 return (v & 0xffU) << 0U;
1558}
1559static inline u32 gr_pd_pagepool_valid_true_f(void)
1560{
1561 return 0x80000000U;
1562}
1563static inline u32 gr_pd_dist_skip_table_r(u32 i)
1564{
1565 return 0x004064d0U + i*4U;
1566}
1567static inline u32 gr_pd_dist_skip_table__size_1_v(void)
1568{
1569 return 0x00000008U;
1570}
1571static inline u32 gr_pd_dist_skip_table_gpc_4n0_mask_f(u32 v)
1572{
1573 return (v & 0xffU) << 0U;
1574}
1575static inline u32 gr_pd_dist_skip_table_gpc_4n1_mask_f(u32 v)
1576{
1577 return (v & 0xffU) << 8U;
1578}
1579static inline u32 gr_pd_dist_skip_table_gpc_4n2_mask_f(u32 v)
1580{
1581 return (v & 0xffU) << 16U;
1582}
1583static inline u32 gr_pd_dist_skip_table_gpc_4n3_mask_f(u32 v)
1584{
1585 return (v & 0xffU) << 24U;
1586}
1587static inline u32 gr_ds_debug_r(void)
1588{
1589 return 0x00405800U;
1590}
1591static inline u32 gr_ds_debug_timeslice_mode_disable_f(void)
1592{
1593 return 0x0U;
1594}
1595static inline u32 gr_ds_debug_timeslice_mode_enable_f(void)
1596{
1597 return 0x8000000U;
1598}
1599static inline u32 gr_ds_zbc_color_r_r(void)
1600{
1601 return 0x00405804U;
1602}
1603static inline u32 gr_ds_zbc_color_r_val_f(u32 v)
1604{
1605 return (v & 0xffffffffU) << 0U;
1606}
1607static inline u32 gr_ds_zbc_color_g_r(void)
1608{
1609 return 0x00405808U;
1610}
1611static inline u32 gr_ds_zbc_color_g_val_f(u32 v)
1612{
1613 return (v & 0xffffffffU) << 0U;
1614}
1615static inline u32 gr_ds_zbc_color_b_r(void)
1616{
1617 return 0x0040580cU;
1618}
1619static inline u32 gr_ds_zbc_color_b_val_f(u32 v)
1620{
1621 return (v & 0xffffffffU) << 0U;
1622}
1623static inline u32 gr_ds_zbc_color_a_r(void)
1624{
1625 return 0x00405810U;
1626}
1627static inline u32 gr_ds_zbc_color_a_val_f(u32 v)
1628{
1629 return (v & 0xffffffffU) << 0U;
1630}
1631static inline u32 gr_ds_zbc_color_fmt_r(void)
1632{
1633 return 0x00405814U;
1634}
1635static inline u32 gr_ds_zbc_color_fmt_val_f(u32 v)
1636{
1637 return (v & 0x7fU) << 0U;
1638}
1639static inline u32 gr_ds_zbc_color_fmt_val_invalid_f(void)
1640{
1641 return 0x0U;
1642}
1643static inline u32 gr_ds_zbc_color_fmt_val_zero_v(void)
1644{
1645 return 0x00000001U;
1646}
1647static inline u32 gr_ds_zbc_color_fmt_val_unorm_one_v(void)
1648{
1649 return 0x00000002U;
1650}
1651static inline u32 gr_ds_zbc_color_fmt_val_rf32_gf32_bf32_af32_v(void)
1652{
1653 return 0x00000004U;
1654}
1655static inline u32 gr_ds_zbc_color_fmt_val_a8_b8_g8_r8_v(void)
1656{
1657 return 0x00000028U;
1658}
1659static inline u32 gr_ds_zbc_z_r(void)
1660{
1661 return 0x00405818U;
1662}
1663static inline u32 gr_ds_zbc_z_val_s(void)
1664{
1665 return 32U;
1666}
1667static inline u32 gr_ds_zbc_z_val_f(u32 v)
1668{
1669 return (v & 0xffffffffU) << 0U;
1670}
1671static inline u32 gr_ds_zbc_z_val_m(void)
1672{
1673 return 0xffffffffU << 0U;
1674}
1675static inline u32 gr_ds_zbc_z_val_v(u32 r)
1676{
1677 return (r >> 0U) & 0xffffffffU;
1678}
1679static inline u32 gr_ds_zbc_z_val__init_v(void)
1680{
1681 return 0x00000000U;
1682}
1683static inline u32 gr_ds_zbc_z_val__init_f(void)
1684{
1685 return 0x0U;
1686}
1687static inline u32 gr_ds_zbc_z_fmt_r(void)
1688{
1689 return 0x0040581cU;
1690}
1691static inline u32 gr_ds_zbc_z_fmt_val_f(u32 v)
1692{
1693 return (v & 0x1U) << 0U;
1694}
1695static inline u32 gr_ds_zbc_z_fmt_val_invalid_f(void)
1696{
1697 return 0x0U;
1698}
1699static inline u32 gr_ds_zbc_z_fmt_val_fp32_v(void)
1700{
1701 return 0x00000001U;
1702}
1703static inline u32 gr_ds_zbc_tbl_index_r(void)
1704{
1705 return 0x00405820U;
1706}
1707static inline u32 gr_ds_zbc_tbl_index_val_f(u32 v)
1708{
1709 return (v & 0xfU) << 0U;
1710}
1711static inline u32 gr_ds_zbc_tbl_ld_r(void)
1712{
1713 return 0x00405824U;
1714}
1715static inline u32 gr_ds_zbc_tbl_ld_select_c_f(void)
1716{
1717 return 0x0U;
1718}
1719static inline u32 gr_ds_zbc_tbl_ld_select_z_f(void)
1720{
1721 return 0x1U;
1722}
1723static inline u32 gr_ds_zbc_tbl_ld_action_write_f(void)
1724{
1725 return 0x0U;
1726}
1727static inline u32 gr_ds_zbc_tbl_ld_trigger_active_f(void)
1728{
1729 return 0x4U;
1730}
1731static inline u32 gr_ds_tga_constraintlogic_r(void)
1732{
1733 return 0x00405830U;
1734}
1735static inline u32 gr_ds_tga_constraintlogic_beta_cbsize_f(u32 v)
1736{
1737 return (v & 0xffffU) << 16U;
1738}
1739static inline u32 gr_ds_tga_constraintlogic_alpha_cbsize_f(u32 v)
1740{
1741 return (v & 0xffffU) << 0U;
1742}
1743static inline u32 gr_ds_hww_esr_r(void)
1744{
1745 return 0x00405840U;
1746}
1747static inline u32 gr_ds_hww_esr_reset_s(void)
1748{
1749 return 1U;
1750}
1751static inline u32 gr_ds_hww_esr_reset_f(u32 v)
1752{
1753 return (v & 0x1U) << 30U;
1754}
1755static inline u32 gr_ds_hww_esr_reset_m(void)
1756{
1757 return 0x1U << 30U;
1758}
1759static inline u32 gr_ds_hww_esr_reset_v(u32 r)
1760{
1761 return (r >> 30U) & 0x1U;
1762}
1763static inline u32 gr_ds_hww_esr_reset_task_v(void)
1764{
1765 return 0x00000001U;
1766}
1767static inline u32 gr_ds_hww_esr_reset_task_f(void)
1768{
1769 return 0x40000000U;
1770}
1771static inline u32 gr_ds_hww_esr_en_enabled_f(void)
1772{
1773 return 0x80000000U;
1774}
1775static inline u32 gr_ds_hww_esr_2_r(void)
1776{
1777 return 0x00405848U;
1778}
1779static inline u32 gr_ds_hww_esr_2_reset_s(void)
1780{
1781 return 1U;
1782}
1783static inline u32 gr_ds_hww_esr_2_reset_f(u32 v)
1784{
1785 return (v & 0x1U) << 30U;
1786}
1787static inline u32 gr_ds_hww_esr_2_reset_m(void)
1788{
1789 return 0x1U << 30U;
1790}
1791static inline u32 gr_ds_hww_esr_2_reset_v(u32 r)
1792{
1793 return (r >> 30U) & 0x1U;
1794}
1795static inline u32 gr_ds_hww_esr_2_reset_task_v(void)
1796{
1797 return 0x00000001U;
1798}
1799static inline u32 gr_ds_hww_esr_2_reset_task_f(void)
1800{
1801 return 0x40000000U;
1802}
1803static inline u32 gr_ds_hww_esr_2_en_enabled_f(void)
1804{
1805 return 0x80000000U;
1806}
1807static inline u32 gr_ds_hww_report_mask_r(void)
1808{
1809 return 0x00405844U;
1810}
1811static inline u32 gr_ds_hww_report_mask_sph0_err_report_f(void)
1812{
1813 return 0x1U;
1814}
1815static inline u32 gr_ds_hww_report_mask_sph1_err_report_f(void)
1816{
1817 return 0x2U;
1818}
1819static inline u32 gr_ds_hww_report_mask_sph2_err_report_f(void)
1820{
1821 return 0x4U;
1822}
1823static inline u32 gr_ds_hww_report_mask_sph3_err_report_f(void)
1824{
1825 return 0x8U;
1826}
1827static inline u32 gr_ds_hww_report_mask_sph4_err_report_f(void)
1828{
1829 return 0x10U;
1830}
1831static inline u32 gr_ds_hww_report_mask_sph5_err_report_f(void)
1832{
1833 return 0x20U;
1834}
1835static inline u32 gr_ds_hww_report_mask_sph6_err_report_f(void)
1836{
1837 return 0x40U;
1838}
1839static inline u32 gr_ds_hww_report_mask_sph7_err_report_f(void)
1840{
1841 return 0x80U;
1842}
1843static inline u32 gr_ds_hww_report_mask_sph8_err_report_f(void)
1844{
1845 return 0x100U;
1846}
1847static inline u32 gr_ds_hww_report_mask_sph9_err_report_f(void)
1848{
1849 return 0x200U;
1850}
1851static inline u32 gr_ds_hww_report_mask_sph10_err_report_f(void)
1852{
1853 return 0x400U;
1854}
1855static inline u32 gr_ds_hww_report_mask_sph11_err_report_f(void)
1856{
1857 return 0x800U;
1858}
1859static inline u32 gr_ds_hww_report_mask_sph12_err_report_f(void)
1860{
1861 return 0x1000U;
1862}
1863static inline u32 gr_ds_hww_report_mask_sph13_err_report_f(void)
1864{
1865 return 0x2000U;
1866}
1867static inline u32 gr_ds_hww_report_mask_sph14_err_report_f(void)
1868{
1869 return 0x4000U;
1870}
1871static inline u32 gr_ds_hww_report_mask_sph15_err_report_f(void)
1872{
1873 return 0x8000U;
1874}
1875static inline u32 gr_ds_hww_report_mask_sph16_err_report_f(void)
1876{
1877 return 0x10000U;
1878}
1879static inline u32 gr_ds_hww_report_mask_sph17_err_report_f(void)
1880{
1881 return 0x20000U;
1882}
1883static inline u32 gr_ds_hww_report_mask_sph18_err_report_f(void)
1884{
1885 return 0x40000U;
1886}
1887static inline u32 gr_ds_hww_report_mask_sph19_err_report_f(void)
1888{
1889 return 0x80000U;
1890}
1891static inline u32 gr_ds_hww_report_mask_sph20_err_report_f(void)
1892{
1893 return 0x100000U;
1894}
1895static inline u32 gr_ds_hww_report_mask_sph21_err_report_f(void)
1896{
1897 return 0x200000U;
1898}
1899static inline u32 gr_ds_hww_report_mask_sph22_err_report_f(void)
1900{
1901 return 0x400000U;
1902}
1903static inline u32 gr_ds_hww_report_mask_sph23_err_report_f(void)
1904{
1905 return 0x800000U;
1906}
1907static inline u32 gr_ds_hww_report_mask_2_r(void)
1908{
1909 return 0x0040584cU;
1910}
1911static inline u32 gr_ds_hww_report_mask_2_sph24_err_report_f(void)
1912{
1913 return 0x1U;
1914}
1915static inline u32 gr_ds_num_tpc_per_gpc_r(u32 i)
1916{
1917 return 0x00405870U + i*4U;
1918}
1919static inline u32 gr_scc_bundle_cb_base_r(void)
1920{
1921 return 0x00408004U;
1922}
1923static inline u32 gr_scc_bundle_cb_base_addr_39_8_f(u32 v)
1924{
1925 return (v & 0xffffffffU) << 0U;
1926}
1927static inline u32 gr_scc_bundle_cb_base_addr_39_8_align_bits_v(void)
1928{
1929 return 0x00000008U;
1930}
1931static inline u32 gr_scc_bundle_cb_size_r(void)
1932{
1933 return 0x00408008U;
1934}
1935static inline u32 gr_scc_bundle_cb_size_div_256b_f(u32 v)
1936{
1937 return (v & 0x7ffU) << 0U;
1938}
1939static inline u32 gr_scc_bundle_cb_size_div_256b__prod_v(void)
1940{
1941 return 0x00000018U;
1942}
1943static inline u32 gr_scc_bundle_cb_size_div_256b_byte_granularity_v(void)
1944{
1945 return 0x00000100U;
1946}
1947static inline u32 gr_scc_bundle_cb_size_valid_false_v(void)
1948{
1949 return 0x00000000U;
1950}
1951static inline u32 gr_scc_bundle_cb_size_valid_false_f(void)
1952{
1953 return 0x0U;
1954}
1955static inline u32 gr_scc_bundle_cb_size_valid_true_f(void)
1956{
1957 return 0x80000000U;
1958}
1959static inline u32 gr_scc_pagepool_base_r(void)
1960{
1961 return 0x0040800cU;
1962}
1963static inline u32 gr_scc_pagepool_base_addr_39_8_f(u32 v)
1964{
1965 return (v & 0xffffffffU) << 0U;
1966}
1967static inline u32 gr_scc_pagepool_base_addr_39_8_align_bits_v(void)
1968{
1969 return 0x00000008U;
1970}
1971static inline u32 gr_scc_pagepool_r(void)
1972{
1973 return 0x00408010U;
1974}
1975static inline u32 gr_scc_pagepool_total_pages_f(u32 v)
1976{
1977 return (v & 0xffU) << 0U;
1978}
1979static inline u32 gr_scc_pagepool_total_pages_hwmax_v(void)
1980{
1981 return 0x00000000U;
1982}
1983static inline u32 gr_scc_pagepool_total_pages_hwmax_value_v(void)
1984{
1985 return 0x00000080U;
1986}
1987static inline u32 gr_scc_pagepool_total_pages_byte_granularity_v(void)
1988{
1989 return 0x00000100U;
1990}
1991static inline u32 gr_scc_pagepool_max_valid_pages_s(void)
1992{
1993 return 8U;
1994}
1995static inline u32 gr_scc_pagepool_max_valid_pages_f(u32 v)
1996{
1997 return (v & 0xffU) << 8U;
1998}
1999static inline u32 gr_scc_pagepool_max_valid_pages_m(void)
2000{
2001 return 0xffU << 8U;
2002}
2003static inline u32 gr_scc_pagepool_max_valid_pages_v(u32 r)
2004{
2005 return (r >> 8U) & 0xffU;
2006}
2007static inline u32 gr_scc_pagepool_valid_true_f(void)
2008{
2009 return 0x80000000U;
2010}
2011static inline u32 gr_scc_init_r(void)
2012{
2013 return 0x0040802cU;
2014}
2015static inline u32 gr_scc_init_ram_trigger_f(void)
2016{
2017 return 0x1U;
2018}
2019static inline u32 gr_scc_hww_esr_r(void)
2020{
2021 return 0x00408030U;
2022}
2023static inline u32 gr_scc_hww_esr_reset_active_f(void)
2024{
2025 return 0x40000000U;
2026}
2027static inline u32 gr_scc_hww_esr_en_enable_f(void)
2028{
2029 return 0x80000000U;
2030}
2031static inline u32 gr_sked_hww_esr_r(void)
2032{
2033 return 0x00407020U;
2034}
2035static inline u32 gr_sked_hww_esr_reset_active_f(void)
2036{
2037 return 0x40000000U;
2038}
2039static inline u32 gr_cwd_fs_r(void)
2040{
2041 return 0x00405b00U;
2042}
2043static inline u32 gr_cwd_fs_num_gpcs_f(u32 v)
2044{
2045 return (v & 0xffU) << 0U;
2046}
2047static inline u32 gr_cwd_fs_num_tpcs_f(u32 v)
2048{
2049 return (v & 0xffU) << 8U;
2050}
2051static inline u32 gr_cwd_gpc_tpc_id_r(u32 i)
2052{
2053 return 0x00405b60U + i*4U;
2054}
2055static inline u32 gr_cwd_gpc_tpc_id_tpc0_s(void)
2056{
2057 return 4U;
2058}
2059static inline u32 gr_cwd_gpc_tpc_id_tpc0_f(u32 v)
2060{
2061 return (v & 0xfU) << 0U;
2062}
2063static inline u32 gr_cwd_gpc_tpc_id_gpc0_s(void)
2064{
2065 return 4U;
2066}
2067static inline u32 gr_cwd_gpc_tpc_id_gpc0_f(u32 v)
2068{
2069 return (v & 0xfU) << 4U;
2070}
2071static inline u32 gr_cwd_gpc_tpc_id_tpc1_f(u32 v)
2072{
2073 return (v & 0xfU) << 8U;
2074}
2075static inline u32 gr_cwd_sm_id_r(u32 i)
2076{
2077 return 0x00405ba0U + i*4U;
2078}
2079static inline u32 gr_cwd_sm_id__size_1_v(void)
2080{
2081 return 0x00000006U;
2082}
2083static inline u32 gr_cwd_sm_id_tpc0_f(u32 v)
2084{
2085 return (v & 0xffU) << 0U;
2086}
2087static inline u32 gr_cwd_sm_id_tpc1_f(u32 v)
2088{
2089 return (v & 0xffU) << 8U;
2090}
2091static inline u32 gr_gpc0_fs_gpc_r(void)
2092{
2093 return 0x00502608U;
2094}
2095static inline u32 gr_gpc0_fs_gpc_num_available_tpcs_v(u32 r)
2096{
2097 return (r >> 0U) & 0x1fU;
2098}
2099static inline u32 gr_gpc0_fs_gpc_num_available_zculls_v(u32 r)
2100{
2101 return (r >> 16U) & 0x1fU;
2102}
2103static inline u32 gr_gpc0_cfg_r(void)
2104{
2105 return 0x00502620U;
2106}
2107static inline u32 gr_gpc0_cfg_imem_sz_v(u32 r)
2108{
2109 return (r >> 0U) & 0xffU;
2110}
2111static inline u32 gr_gpccs_rc_lanes_r(void)
2112{
2113 return 0x00502880U;
2114}
2115static inline u32 gr_gpccs_rc_lanes_num_chains_s(void)
2116{
2117 return 6U;
2118}
2119static inline u32 gr_gpccs_rc_lanes_num_chains_f(u32 v)
2120{
2121 return (v & 0x3fU) << 0U;
2122}
2123static inline u32 gr_gpccs_rc_lanes_num_chains_m(void)
2124{
2125 return 0x3fU << 0U;
2126}
2127static inline u32 gr_gpccs_rc_lanes_num_chains_v(u32 r)
2128{
2129 return (r >> 0U) & 0x3fU;
2130}
2131static inline u32 gr_gpccs_rc_lane_size_r(u32 i)
2132{
2133 return 0x00502910U + i*0U;
2134}
2135static inline u32 gr_gpccs_rc_lane_size__size_1_v(void)
2136{
2137 return 0x00000010U;
2138}
2139static inline u32 gr_gpccs_rc_lane_size_v_s(void)
2140{
2141 return 24U;
2142}
2143static inline u32 gr_gpccs_rc_lane_size_v_f(u32 v)
2144{
2145 return (v & 0xffffffU) << 0U;
2146}
2147static inline u32 gr_gpccs_rc_lane_size_v_m(void)
2148{
2149 return 0xffffffU << 0U;
2150}
2151static inline u32 gr_gpccs_rc_lane_size_v_v(u32 r)
2152{
2153 return (r >> 0U) & 0xffffffU;
2154}
2155static inline u32 gr_gpccs_rc_lane_size_v_0_v(void)
2156{
2157 return 0x00000000U;
2158}
2159static inline u32 gr_gpccs_rc_lane_size_v_0_f(void)
2160{
2161 return 0x0U;
2162}
2163static inline u32 gr_gpc0_zcull_fs_r(void)
2164{
2165 return 0x00500910U;
2166}
2167static inline u32 gr_gpc0_zcull_fs_num_sms_f(u32 v)
2168{
2169 return (v & 0x1ffU) << 0U;
2170}
2171static inline u32 gr_gpc0_zcull_fs_num_active_banks_f(u32 v)
2172{
2173 return (v & 0xfU) << 16U;
2174}
2175static inline u32 gr_gpc0_zcull_ram_addr_r(void)
2176{
2177 return 0x00500914U;
2178}
2179static inline u32 gr_gpc0_zcull_ram_addr_tiles_per_hypertile_row_per_gpc_f(u32 v)
2180{
2181 return (v & 0xfU) << 0U;
2182}
2183static inline u32 gr_gpc0_zcull_ram_addr_row_offset_f(u32 v)
2184{
2185 return (v & 0xfU) << 8U;
2186}
2187static inline u32 gr_gpc0_zcull_sm_num_rcp_r(void)
2188{
2189 return 0x00500918U;
2190}
2191static inline u32 gr_gpc0_zcull_sm_num_rcp_conservative_f(u32 v)
2192{
2193 return (v & 0xffffffU) << 0U;
2194}
2195static inline u32 gr_gpc0_zcull_sm_num_rcp_conservative__max_v(void)
2196{
2197 return 0x00800000U;
2198}
2199static inline u32 gr_gpc0_zcull_total_ram_size_r(void)
2200{
2201 return 0x00500920U;
2202}
2203static inline u32 gr_gpc0_zcull_total_ram_size_num_aliquots_f(u32 v)
2204{
2205 return (v & 0xffffU) << 0U;
2206}
2207static inline u32 gr_gpc0_zcull_zcsize_r(u32 i)
2208{
2209 return 0x00500a04U + i*32U;
2210}
2211static inline u32 gr_gpc0_zcull_zcsize_height_subregion__multiple_v(void)
2212{
2213 return 0x00000040U;
2214}
2215static inline u32 gr_gpc0_zcull_zcsize_width_subregion__multiple_v(void)
2216{
2217 return 0x00000010U;
2218}
2219static inline u32 gr_gpc0_gpm_pd_sm_id_r(u32 i)
2220{
2221 return 0x00500c10U + i*4U;
2222}
2223static inline u32 gr_gpc0_gpm_pd_sm_id_id_f(u32 v)
2224{
2225 return (v & 0xffU) << 0U;
2226}
2227static inline u32 gr_gpc0_gpm_pd_pes_tpc_id_mask_r(u32 i)
2228{
2229 return 0x00500c30U + i*4U;
2230}
2231static inline u32 gr_gpc0_gpm_pd_pes_tpc_id_mask_mask_v(u32 r)
2232{
2233 return (r >> 0U) & 0xffU;
2234}
2235static inline u32 gr_gpc0_tpc0_pe_cfg_smid_r(void)
2236{
2237 return 0x00504088U;
2238}
2239static inline u32 gr_gpc0_tpc0_pe_cfg_smid_value_f(u32 v)
2240{
2241 return (v & 0xffffU) << 0U;
2242}
2243static inline u32 gr_gpc0_tpc0_sm_cfg_r(void)
2244{
2245 return 0x00504698U;
2246}
2247static inline u32 gr_gpc0_tpc0_sm_cfg_sm_id_f(u32 v)
2248{
2249 return (v & 0xffffU) << 0U;
2250}
2251static inline u32 gr_gpc0_tpc0_sm_cfg_sm_id_v(u32 r)
2252{
2253 return (r >> 0U) & 0xffffU;
2254}
2255static inline u32 gr_gpc0_tpc0_sm_arch_r(void)
2256{
2257 return 0x0050469cU;
2258}
2259static inline u32 gr_gpc0_tpc0_sm_arch_warp_count_v(u32 r)
2260{
2261 return (r >> 0U) & 0xffU;
2262}
2263static inline u32 gr_gpc0_tpc0_sm_arch_spa_version_v(u32 r)
2264{
2265 return (r >> 8U) & 0xfffU;
2266}
2267static inline u32 gr_gpc0_tpc0_sm_arch_sm_version_v(u32 r)
2268{
2269 return (r >> 20U) & 0xfffU;
2270}
2271static inline u32 gr_gpc0_ppc0_pes_vsc_strem_r(void)
2272{
2273 return 0x00503018U;
2274}
2275static inline u32 gr_gpc0_ppc0_pes_vsc_strem_master_pe_m(void)
2276{
2277 return 0x1U << 0U;
2278}
2279static inline u32 gr_gpc0_ppc0_pes_vsc_strem_master_pe_true_f(void)
2280{
2281 return 0x1U;
2282}
2283static inline u32 gr_gpc0_ppc0_cbm_beta_cb_size_r(void)
2284{
2285 return 0x005030c0U;
2286}
2287static inline u32 gr_gpc0_ppc0_cbm_beta_cb_size_v_f(u32 v)
2288{
2289 return (v & 0xffffU) << 0U;
2290}
2291static inline u32 gr_gpc0_ppc0_cbm_beta_cb_size_v_m(void)
2292{
2293 return 0xffffU << 0U;
2294}
2295static inline u32 gr_gpc0_ppc0_cbm_beta_cb_size_v_default_v(void)
2296{
2297 return 0x00000400U;
2298}
2299static inline u32 gr_gpc0_ppc0_cbm_beta_cb_size_v_granularity_v(void)
2300{
2301 return 0x00000020U;
2302}
2303static inline u32 gr_gpc0_ppc0_cbm_beta_cb_offset_r(void)
2304{
2305 return 0x005030f4U;
2306}
2307static inline u32 gr_gpc0_ppc0_cbm_alpha_cb_size_r(void)
2308{
2309 return 0x005030e4U;
2310}
2311static inline u32 gr_gpc0_ppc0_cbm_alpha_cb_size_v_f(u32 v)
2312{
2313 return (v & 0xffffU) << 0U;
2314}
2315static inline u32 gr_gpc0_ppc0_cbm_alpha_cb_size_v_m(void)
2316{
2317 return 0xffffU << 0U;
2318}
2319static inline u32 gr_gpc0_ppc0_cbm_alpha_cb_size_v_default_v(void)
2320{
2321 return 0x00000800U;
2322}
2323static inline u32 gr_gpc0_ppc0_cbm_alpha_cb_size_v_granularity_v(void)
2324{
2325 return 0x00000020U;
2326}
2327static inline u32 gr_gpc0_ppc0_cbm_alpha_cb_offset_r(void)
2328{
2329 return 0x005030f8U;
2330}
2331static inline u32 gr_gpcs_tpcs_tex_m_dbg2_r(void)
2332{
2333 return 0x00419a3cU;
2334}
2335static inline u32 gr_gpcs_tpcs_tex_m_dbg2_lg_rd_coalesce_en_f(u32 v)
2336{
2337 return (v & 0x1U) << 2U;
2338}
2339static inline u32 gr_gpcs_tpcs_tex_m_dbg2_lg_rd_coalesce_en_m(void)
2340{
2341 return 0x1U << 2U;
2342}
2343static inline u32 gr_gpcs_tpcs_tex_m_dbg2_su_rd_coalesce_en_f(u32 v)
2344{
2345 return (v & 0x1U) << 4U;
2346}
2347static inline u32 gr_gpcs_tpcs_tex_m_dbg2_su_rd_coalesce_en_m(void)
2348{
2349 return 0x1U << 4U;
2350}
2351static inline u32 gr_gpcs_tpcs_tex_m_dbg2_tex_rd_coalesce_en_f(u32 v)
2352{
2353 return (v & 0x1U) << 5U;
2354}
2355static inline u32 gr_gpcs_tpcs_tex_m_dbg2_tex_rd_coalesce_en_m(void)
2356{
2357 return 0x1U << 5U;
2358}
2359static inline u32 gr_gpccs_falcon_addr_r(void)
2360{
2361 return 0x0041a0acU;
2362}
2363static inline u32 gr_gpccs_falcon_addr_lsb_s(void)
2364{
2365 return 6U;
2366}
2367static inline u32 gr_gpccs_falcon_addr_lsb_f(u32 v)
2368{
2369 return (v & 0x3fU) << 0U;
2370}
2371static inline u32 gr_gpccs_falcon_addr_lsb_m(void)
2372{
2373 return 0x3fU << 0U;
2374}
2375static inline u32 gr_gpccs_falcon_addr_lsb_v(u32 r)
2376{
2377 return (r >> 0U) & 0x3fU;
2378}
2379static inline u32 gr_gpccs_falcon_addr_lsb_init_v(void)
2380{
2381 return 0x00000000U;
2382}
2383static inline u32 gr_gpccs_falcon_addr_lsb_init_f(void)
2384{
2385 return 0x0U;
2386}
2387static inline u32 gr_gpccs_falcon_addr_msb_s(void)
2388{
2389 return 6U;
2390}
2391static inline u32 gr_gpccs_falcon_addr_msb_f(u32 v)
2392{
2393 return (v & 0x3fU) << 6U;
2394}
2395static inline u32 gr_gpccs_falcon_addr_msb_m(void)
2396{
2397 return 0x3fU << 6U;
2398}
2399static inline u32 gr_gpccs_falcon_addr_msb_v(u32 r)
2400{
2401 return (r >> 6U) & 0x3fU;
2402}
2403static inline u32 gr_gpccs_falcon_addr_msb_init_v(void)
2404{
2405 return 0x00000000U;
2406}
2407static inline u32 gr_gpccs_falcon_addr_msb_init_f(void)
2408{
2409 return 0x0U;
2410}
2411static inline u32 gr_gpccs_falcon_addr_ext_s(void)
2412{
2413 return 12U;
2414}
2415static inline u32 gr_gpccs_falcon_addr_ext_f(u32 v)
2416{
2417 return (v & 0xfffU) << 0U;
2418}
2419static inline u32 gr_gpccs_falcon_addr_ext_m(void)
2420{
2421 return 0xfffU << 0U;
2422}
2423static inline u32 gr_gpccs_falcon_addr_ext_v(u32 r)
2424{
2425 return (r >> 0U) & 0xfffU;
2426}
2427static inline u32 gr_gpccs_cpuctl_r(void)
2428{
2429 return 0x0041a100U;
2430}
2431static inline u32 gr_gpccs_cpuctl_startcpu_f(u32 v)
2432{
2433 return (v & 0x1U) << 1U;
2434}
2435static inline u32 gr_gpccs_dmactl_r(void)
2436{
2437 return 0x0041a10cU;
2438}
2439static inline u32 gr_gpccs_dmactl_require_ctx_f(u32 v)
2440{
2441 return (v & 0x1U) << 0U;
2442}
2443static inline u32 gr_gpccs_dmactl_dmem_scrubbing_m(void)
2444{
2445 return 0x1U << 1U;
2446}
2447static inline u32 gr_gpccs_dmactl_imem_scrubbing_m(void)
2448{
2449 return 0x1U << 2U;
2450}
2451static inline u32 gr_gpccs_imemc_r(u32 i)
2452{
2453 return 0x0041a180U + i*16U;
2454}
2455static inline u32 gr_gpccs_imemc_offs_f(u32 v)
2456{
2457 return (v & 0x3fU) << 2U;
2458}
2459static inline u32 gr_gpccs_imemc_blk_f(u32 v)
2460{
2461 return (v & 0xffU) << 8U;
2462}
2463static inline u32 gr_gpccs_imemc_aincw_f(u32 v)
2464{
2465 return (v & 0x1U) << 24U;
2466}
2467static inline u32 gr_gpccs_imemd_r(u32 i)
2468{
2469 return 0x0041a184U + i*16U;
2470}
2471static inline u32 gr_gpccs_imemt_r(u32 i)
2472{
2473 return 0x0041a188U + i*16U;
2474}
2475static inline u32 gr_gpccs_imemt__size_1_v(void)
2476{
2477 return 0x00000004U;
2478}
2479static inline u32 gr_gpccs_imemt_tag_f(u32 v)
2480{
2481 return (v & 0xffffU) << 0U;
2482}
2483static inline u32 gr_gpccs_dmemc_r(u32 i)
2484{
2485 return 0x0041a1c0U + i*8U;
2486}
2487static inline u32 gr_gpccs_dmemc_offs_f(u32 v)
2488{
2489 return (v & 0x3fU) << 2U;
2490}
2491static inline u32 gr_gpccs_dmemc_blk_f(u32 v)
2492{
2493 return (v & 0xffU) << 8U;
2494}
2495static inline u32 gr_gpccs_dmemc_aincw_f(u32 v)
2496{
2497 return (v & 0x1U) << 24U;
2498}
2499static inline u32 gr_gpccs_dmemd_r(u32 i)
2500{
2501 return 0x0041a1c4U + i*8U;
2502}
2503static inline u32 gr_gpccs_ctxsw_mailbox_r(u32 i)
2504{
2505 return 0x0041a800U + i*4U;
2506}
2507static inline u32 gr_gpccs_ctxsw_mailbox_value_f(u32 v)
2508{
2509 return (v & 0xffffffffU) << 0U;
2510}
2511static inline u32 gr_gpcs_swdx_bundle_cb_base_r(void)
2512{
2513 return 0x00418e24U;
2514}
2515static inline u32 gr_gpcs_swdx_bundle_cb_base_addr_39_8_s(void)
2516{
2517 return 32U;
2518}
2519static inline u32 gr_gpcs_swdx_bundle_cb_base_addr_39_8_f(u32 v)
2520{
2521 return (v & 0xffffffffU) << 0U;
2522}
2523static inline u32 gr_gpcs_swdx_bundle_cb_base_addr_39_8_m(void)
2524{
2525 return 0xffffffffU << 0U;
2526}
2527static inline u32 gr_gpcs_swdx_bundle_cb_base_addr_39_8_v(u32 r)
2528{
2529 return (r >> 0U) & 0xffffffffU;
2530}
2531static inline u32 gr_gpcs_swdx_bundle_cb_base_addr_39_8_init_v(void)
2532{
2533 return 0x00000000U;
2534}
2535static inline u32 gr_gpcs_swdx_bundle_cb_base_addr_39_8_init_f(void)
2536{
2537 return 0x0U;
2538}
2539static inline u32 gr_gpcs_swdx_bundle_cb_size_r(void)
2540{
2541 return 0x00418e28U;
2542}
2543static inline u32 gr_gpcs_swdx_bundle_cb_size_div_256b_s(void)
2544{
2545 return 11U;
2546}
2547static inline u32 gr_gpcs_swdx_bundle_cb_size_div_256b_f(u32 v)
2548{
2549 return (v & 0x7ffU) << 0U;
2550}
2551static inline u32 gr_gpcs_swdx_bundle_cb_size_div_256b_m(void)
2552{
2553 return 0x7ffU << 0U;
2554}
2555static inline u32 gr_gpcs_swdx_bundle_cb_size_div_256b_v(u32 r)
2556{
2557 return (r >> 0U) & 0x7ffU;
2558}
2559static inline u32 gr_gpcs_swdx_bundle_cb_size_div_256b_init_v(void)
2560{
2561 return 0x00000018U;
2562}
2563static inline u32 gr_gpcs_swdx_bundle_cb_size_div_256b_init_f(void)
2564{
2565 return 0x18U;
2566}
2567static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_s(void)
2568{
2569 return 1U;
2570}
2571static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_f(u32 v)
2572{
2573 return (v & 0x1U) << 31U;
2574}
2575static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_m(void)
2576{
2577 return 0x1U << 31U;
2578}
2579static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_v(u32 r)
2580{
2581 return (r >> 31U) & 0x1U;
2582}
2583static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_false_v(void)
2584{
2585 return 0x00000000U;
2586}
2587static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_false_f(void)
2588{
2589 return 0x0U;
2590}
2591static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_true_v(void)
2592{
2593 return 0x00000001U;
2594}
2595static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_true_f(void)
2596{
2597 return 0x80000000U;
2598}
2599static inline u32 gr_gpcs_swdx_tc_beta_cb_size_r(u32 i)
2600{
2601 return 0x00418ea0U + i*4U;
2602}
2603static inline u32 gr_gpcs_swdx_tc_beta_cb_size_v_f(u32 v)
2604{
2605 return (v & 0xffffU) << 0U;
2606}
2607static inline u32 gr_gpcs_swdx_tc_beta_cb_size_v_m(void)
2608{
2609 return 0xffffU << 0U;
2610}
2611static inline u32 gr_gpcs_swdx_tc_beta_cb_size_div3_f(u32 v)
2612{
2613 return (v & 0xffffU) << 16U;
2614}
2615static inline u32 gr_gpcs_swdx_tc_beta_cb_size_div3_m(void)
2616{
2617 return 0xffffU << 16U;
2618}
2619static inline u32 gr_gpcs_swdx_rm_pagepool_r(void)
2620{
2621 return 0x00418e30U;
2622}
2623static inline u32 gr_gpcs_swdx_rm_pagepool_total_pages_f(u32 v)
2624{
2625 return (v & 0xffU) << 0U;
2626}
2627static inline u32 gr_gpcs_swdx_rm_pagepool_valid_true_f(void)
2628{
2629 return 0x80000000U;
2630}
2631static inline u32 gr_gpcs_setup_attrib_cb_base_r(void)
2632{
2633 return 0x00418810U;
2634}
2635static inline u32 gr_gpcs_setup_attrib_cb_base_addr_39_12_f(u32 v)
2636{
2637 return (v & 0xfffffffU) << 0U;
2638}
2639static inline u32 gr_gpcs_setup_attrib_cb_base_addr_39_12_align_bits_v(void)
2640{
2641 return 0x0000000cU;
2642}
2643static inline u32 gr_gpcs_setup_attrib_cb_base_valid_true_f(void)
2644{
2645 return 0x80000000U;
2646}
2647static inline u32 gr_crstr_gpc_map0_r(void)
2648{
2649 return 0x00418b08U;
2650}
2651static inline u32 gr_crstr_gpc_map0_tile0_f(u32 v)
2652{
2653 return (v & 0x7U) << 0U;
2654}
2655static inline u32 gr_crstr_gpc_map0_tile1_f(u32 v)
2656{
2657 return (v & 0x7U) << 5U;
2658}
2659static inline u32 gr_crstr_gpc_map0_tile2_f(u32 v)
2660{
2661 return (v & 0x7U) << 10U;
2662}
2663static inline u32 gr_crstr_gpc_map0_tile3_f(u32 v)
2664{
2665 return (v & 0x7U) << 15U;
2666}
2667static inline u32 gr_crstr_gpc_map0_tile4_f(u32 v)
2668{
2669 return (v & 0x7U) << 20U;
2670}
2671static inline u32 gr_crstr_gpc_map0_tile5_f(u32 v)
2672{
2673 return (v & 0x7U) << 25U;
2674}
2675static inline u32 gr_crstr_gpc_map1_r(void)
2676{
2677 return 0x00418b0cU;
2678}
2679static inline u32 gr_crstr_gpc_map1_tile6_f(u32 v)
2680{
2681 return (v & 0x7U) << 0U;
2682}
2683static inline u32 gr_crstr_gpc_map1_tile7_f(u32 v)
2684{
2685 return (v & 0x7U) << 5U;
2686}
2687static inline u32 gr_crstr_gpc_map1_tile8_f(u32 v)
2688{
2689 return (v & 0x7U) << 10U;
2690}
2691static inline u32 gr_crstr_gpc_map1_tile9_f(u32 v)
2692{
2693 return (v & 0x7U) << 15U;
2694}
2695static inline u32 gr_crstr_gpc_map1_tile10_f(u32 v)
2696{
2697 return (v & 0x7U) << 20U;
2698}
2699static inline u32 gr_crstr_gpc_map1_tile11_f(u32 v)
2700{
2701 return (v & 0x7U) << 25U;
2702}
2703static inline u32 gr_crstr_gpc_map2_r(void)
2704{
2705 return 0x00418b10U;
2706}
2707static inline u32 gr_crstr_gpc_map2_tile12_f(u32 v)
2708{
2709 return (v & 0x7U) << 0U;
2710}
2711static inline u32 gr_crstr_gpc_map2_tile13_f(u32 v)
2712{
2713 return (v & 0x7U) << 5U;
2714}
2715static inline u32 gr_crstr_gpc_map2_tile14_f(u32 v)
2716{
2717 return (v & 0x7U) << 10U;
2718}
2719static inline u32 gr_crstr_gpc_map2_tile15_f(u32 v)
2720{
2721 return (v & 0x7U) << 15U;
2722}
2723static inline u32 gr_crstr_gpc_map2_tile16_f(u32 v)
2724{
2725 return (v & 0x7U) << 20U;
2726}
2727static inline u32 gr_crstr_gpc_map2_tile17_f(u32 v)
2728{
2729 return (v & 0x7U) << 25U;
2730}
2731static inline u32 gr_crstr_gpc_map3_r(void)
2732{
2733 return 0x00418b14U;
2734}
2735static inline u32 gr_crstr_gpc_map3_tile18_f(u32 v)
2736{
2737 return (v & 0x7U) << 0U;
2738}
2739static inline u32 gr_crstr_gpc_map3_tile19_f(u32 v)
2740{
2741 return (v & 0x7U) << 5U;
2742}
2743static inline u32 gr_crstr_gpc_map3_tile20_f(u32 v)
2744{
2745 return (v & 0x7U) << 10U;
2746}
2747static inline u32 gr_crstr_gpc_map3_tile21_f(u32 v)
2748{
2749 return (v & 0x7U) << 15U;
2750}
2751static inline u32 gr_crstr_gpc_map3_tile22_f(u32 v)
2752{
2753 return (v & 0x7U) << 20U;
2754}
2755static inline u32 gr_crstr_gpc_map3_tile23_f(u32 v)
2756{
2757 return (v & 0x7U) << 25U;
2758}
2759static inline u32 gr_crstr_gpc_map4_r(void)
2760{
2761 return 0x00418b18U;
2762}
2763static inline u32 gr_crstr_gpc_map4_tile24_f(u32 v)
2764{
2765 return (v & 0x7U) << 0U;
2766}
2767static inline u32 gr_crstr_gpc_map4_tile25_f(u32 v)
2768{
2769 return (v & 0x7U) << 5U;
2770}
2771static inline u32 gr_crstr_gpc_map4_tile26_f(u32 v)
2772{
2773 return (v & 0x7U) << 10U;
2774}
2775static inline u32 gr_crstr_gpc_map4_tile27_f(u32 v)
2776{
2777 return (v & 0x7U) << 15U;
2778}
2779static inline u32 gr_crstr_gpc_map4_tile28_f(u32 v)
2780{
2781 return (v & 0x7U) << 20U;
2782}
2783static inline u32 gr_crstr_gpc_map4_tile29_f(u32 v)
2784{
2785 return (v & 0x7U) << 25U;
2786}
2787static inline u32 gr_crstr_gpc_map5_r(void)
2788{
2789 return 0x00418b1cU;
2790}
2791static inline u32 gr_crstr_gpc_map5_tile30_f(u32 v)
2792{
2793 return (v & 0x7U) << 0U;
2794}
2795static inline u32 gr_crstr_gpc_map5_tile31_f(u32 v)
2796{
2797 return (v & 0x7U) << 5U;
2798}
2799static inline u32 gr_crstr_gpc_map5_tile32_f(u32 v)
2800{
2801 return (v & 0x7U) << 10U;
2802}
2803static inline u32 gr_crstr_gpc_map5_tile33_f(u32 v)
2804{
2805 return (v & 0x7U) << 15U;
2806}
2807static inline u32 gr_crstr_gpc_map5_tile34_f(u32 v)
2808{
2809 return (v & 0x7U) << 20U;
2810}
2811static inline u32 gr_crstr_gpc_map5_tile35_f(u32 v)
2812{
2813 return (v & 0x7U) << 25U;
2814}
2815static inline u32 gr_crstr_map_table_cfg_r(void)
2816{
2817 return 0x00418bb8U;
2818}
2819static inline u32 gr_crstr_map_table_cfg_row_offset_f(u32 v)
2820{
2821 return (v & 0xffU) << 0U;
2822}
2823static inline u32 gr_crstr_map_table_cfg_num_entries_f(u32 v)
2824{
2825 return (v & 0xffU) << 8U;
2826}
2827static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_r(void)
2828{
2829 return 0x00418980U;
2830}
2831static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_0_f(u32 v)
2832{
2833 return (v & 0x7U) << 0U;
2834}
2835static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_1_f(u32 v)
2836{
2837 return (v & 0x7U) << 4U;
2838}
2839static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_2_f(u32 v)
2840{
2841 return (v & 0x7U) << 8U;
2842}
2843static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_3_f(u32 v)
2844{
2845 return (v & 0x7U) << 12U;
2846}
2847static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_4_f(u32 v)
2848{
2849 return (v & 0x7U) << 16U;
2850}
2851static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_5_f(u32 v)
2852{
2853 return (v & 0x7U) << 20U;
2854}
2855static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_6_f(u32 v)
2856{
2857 return (v & 0x7U) << 24U;
2858}
2859static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_7_f(u32 v)
2860{
2861 return (v & 0x7U) << 28U;
2862}
2863static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_r(void)
2864{
2865 return 0x00418984U;
2866}
2867static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_8_f(u32 v)
2868{
2869 return (v & 0x7U) << 0U;
2870}
2871static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_9_f(u32 v)
2872{
2873 return (v & 0x7U) << 4U;
2874}
2875static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_10_f(u32 v)
2876{
2877 return (v & 0x7U) << 8U;
2878}
2879static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_11_f(u32 v)
2880{
2881 return (v & 0x7U) << 12U;
2882}
2883static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_12_f(u32 v)
2884{
2885 return (v & 0x7U) << 16U;
2886}
2887static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_13_f(u32 v)
2888{
2889 return (v & 0x7U) << 20U;
2890}
2891static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_14_f(u32 v)
2892{
2893 return (v & 0x7U) << 24U;
2894}
2895static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_15_f(u32 v)
2896{
2897 return (v & 0x7U) << 28U;
2898}
2899static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_r(void)
2900{
2901 return 0x00418988U;
2902}
2903static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_16_f(u32 v)
2904{
2905 return (v & 0x7U) << 0U;
2906}
2907static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_17_f(u32 v)
2908{
2909 return (v & 0x7U) << 4U;
2910}
2911static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_18_f(u32 v)
2912{
2913 return (v & 0x7U) << 8U;
2914}
2915static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_19_f(u32 v)
2916{
2917 return (v & 0x7U) << 12U;
2918}
2919static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_20_f(u32 v)
2920{
2921 return (v & 0x7U) << 16U;
2922}
2923static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_21_f(u32 v)
2924{
2925 return (v & 0x7U) << 20U;
2926}
2927static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_22_f(u32 v)
2928{
2929 return (v & 0x7U) << 24U;
2930}
2931static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_23_s(void)
2932{
2933 return 3U;
2934}
2935static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_23_f(u32 v)
2936{
2937 return (v & 0x7U) << 28U;
2938}
2939static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_23_m(void)
2940{
2941 return 0x7U << 28U;
2942}
2943static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_23_v(u32 r)
2944{
2945 return (r >> 28U) & 0x7U;
2946}
2947static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_r(void)
2948{
2949 return 0x0041898cU;
2950}
2951static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_24_f(u32 v)
2952{
2953 return (v & 0x7U) << 0U;
2954}
2955static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_25_f(u32 v)
2956{
2957 return (v & 0x7U) << 4U;
2958}
2959static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_26_f(u32 v)
2960{
2961 return (v & 0x7U) << 8U;
2962}
2963static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_27_f(u32 v)
2964{
2965 return (v & 0x7U) << 12U;
2966}
2967static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_28_f(u32 v)
2968{
2969 return (v & 0x7U) << 16U;
2970}
2971static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_29_f(u32 v)
2972{
2973 return (v & 0x7U) << 20U;
2974}
2975static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_30_f(u32 v)
2976{
2977 return (v & 0x7U) << 24U;
2978}
2979static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_31_f(u32 v)
2980{
2981 return (v & 0x7U) << 28U;
2982}
2983static inline u32 gr_gpcs_gpm_pd_cfg_r(void)
2984{
2985 return 0x00418c6cU;
2986}
2987static inline u32 gr_gpcs_gpm_pd_cfg_timeslice_mode_disable_f(void)
2988{
2989 return 0x0U;
2990}
2991static inline u32 gr_gpcs_gpm_pd_cfg_timeslice_mode_enable_f(void)
2992{
2993 return 0x1U;
2994}
2995static inline u32 gr_gpcs_gcc_pagepool_base_r(void)
2996{
2997 return 0x00419004U;
2998}
2999static inline u32 gr_gpcs_gcc_pagepool_base_addr_39_8_f(u32 v)
3000{
3001 return (v & 0xffffffffU) << 0U;
3002}
3003static inline u32 gr_gpcs_gcc_pagepool_r(void)
3004{
3005 return 0x00419008U;
3006}
3007static inline u32 gr_gpcs_gcc_pagepool_total_pages_f(u32 v)
3008{
3009 return (v & 0xffU) << 0U;
3010}
3011static inline u32 gr_gpcs_tpcs_pe_vaf_r(void)
3012{
3013 return 0x0041980cU;
3014}
3015static inline u32 gr_gpcs_tpcs_pe_vaf_fast_mode_switch_true_f(void)
3016{
3017 return 0x10U;
3018}
3019static inline u32 gr_gpcs_tpcs_pe_pin_cb_global_base_addr_r(void)
3020{
3021 return 0x00419848U;
3022}
3023static inline u32 gr_gpcs_tpcs_pe_pin_cb_global_base_addr_v_f(u32 v)
3024{
3025 return (v & 0xfffffffU) << 0U;
3026}
3027static inline u32 gr_gpcs_tpcs_pe_pin_cb_global_base_addr_valid_f(u32 v)
3028{
3029 return (v & 0x1U) << 28U;
3030}
3031static inline u32 gr_gpcs_tpcs_pe_pin_cb_global_base_addr_valid_true_f(void)
3032{
3033 return 0x10000000U;
3034}
3035static inline u32 gr_gpcs_tpcs_mpc_vtg_debug_r(void)
3036{
3037 return 0x00419c00U;
3038}
3039static inline u32 gr_gpcs_tpcs_mpc_vtg_debug_timeslice_mode_disabled_f(void)
3040{
3041 return 0x0U;
3042}
3043static inline u32 gr_gpcs_tpcs_mpc_vtg_debug_timeslice_mode_enabled_f(void)
3044{
3045 return 0x8U;
3046}
3047static inline u32 gr_gpcs_tpcs_mpc_vtg_cb_global_base_addr_r(void)
3048{
3049 return 0x00419c2cU;
3050}
3051static inline u32 gr_gpcs_tpcs_mpc_vtg_cb_global_base_addr_v_f(u32 v)
3052{
3053 return (v & 0xfffffffU) << 0U;
3054}
3055static inline u32 gr_gpcs_tpcs_mpc_vtg_cb_global_base_addr_valid_f(u32 v)
3056{
3057 return (v & 0x1U) << 28U;
3058}
3059static inline u32 gr_gpcs_tpcs_mpc_vtg_cb_global_base_addr_valid_true_f(void)
3060{
3061 return 0x10000000U;
3062}
3063static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_r(void)
3064{
3065 return 0x00419e44U;
3066}
3067static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_stack_error_report_f(void)
3068{
3069 return 0x2U;
3070}
3071static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_api_stack_error_report_f(void)
3072{
3073 return 0x4U;
3074}
3075static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_ret_empty_stack_error_report_f(void)
3076{
3077 return 0x8U;
3078}
3079static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_pc_wrap_report_f(void)
3080{
3081 return 0x10U;
3082}
3083static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_misaligned_pc_report_f(void)
3084{
3085 return 0x20U;
3086}
3087static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_pc_overflow_report_f(void)
3088{
3089 return 0x40U;
3090}
3091static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_misaligned_immc_addr_report_f(void)
3092{
3093 return 0x80U;
3094}
3095static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_misaligned_reg_report_f(void)
3096{
3097 return 0x100U;
3098}
3099static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_illegal_instr_encoding_report_f(void)
3100{
3101 return 0x200U;
3102}
3103static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_illegal_sph_instr_combo_report_f(void)
3104{
3105 return 0x400U;
3106}
3107static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_illegal_instr_param_report_f(void)
3108{
3109 return 0x800U;
3110}
3111static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_invalid_const_addr_report_f(void)
3112{
3113 return 0x1000U;
3114}
3115static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_oor_reg_report_f(void)
3116{
3117 return 0x2000U;
3118}
3119static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_oor_addr_report_f(void)
3120{
3121 return 0x4000U;
3122}
3123static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_misaligned_addr_report_f(void)
3124{
3125 return 0x8000U;
3126}
3127static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_invalid_addr_space_report_f(void)
3128{
3129 return 0x10000U;
3130}
3131static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_illegal_instr_param2_report_f(void)
3132{
3133 return 0x20000U;
3134}
3135static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_invalid_const_addr_ldc_report_f(void)
3136{
3137 return 0x40000U;
3138}
3139static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_mmu_fault_report_f(void)
3140{
3141 return 0x800000U;
3142}
3143static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_stack_overflow_report_f(void)
3144{
3145 return 0x400000U;
3146}
3147static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_geometry_sm_error_report_f(void)
3148{
3149 return 0x80000U;
3150}
3151static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_divergent_report_f(void)
3152{
3153 return 0x100000U;
3154}
3155static inline u32 gr_gpc0_tpc0_sm_hww_warp_esr_report_mask_r(void)
3156{
3157 return 0x00504644U;
3158}
3159static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_r(void)
3160{
3161 return 0x00419e4cU;
3162}
3163static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_sm_to_sm_fault_report_f(void)
3164{
3165 return 0x1U;
3166}
3167static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_l1_error_report_f(void)
3168{
3169 return 0x2U;
3170}
3171static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_multiple_warp_errors_report_f(void)
3172{
3173 return 0x4U;
3174}
3175static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_physical_stack_overflow_error_report_f(void)
3176{
3177 return 0x8U;
3178}
3179static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_bpt_int_report_f(void)
3180{
3181 return 0x10U;
3182}
3183static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_bpt_pause_report_f(void)
3184{
3185 return 0x20U;
3186}
3187static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_single_step_complete_report_f(void)
3188{
3189 return 0x40U;
3190}
3191static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_report_mask_r(void)
3192{
3193 return 0x0050464cU;
3194}
3195static inline u32 gr_gpcs_tpcs_tpccs_tpc_exception_en_r(void)
3196{
3197 return 0x00419d0cU;
3198}
3199static inline u32 gr_gpcs_tpcs_tpccs_tpc_exception_en_sm_enabled_f(void)
3200{
3201 return 0x2U;
3202}
3203static inline u32 gr_gpcs_tpcs_tpccs_tpc_exception_en_tex_enabled_f(void)
3204{
3205 return 0x1U;
3206}
3207static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_en_r(void)
3208{
3209 return 0x0050450cU;
3210}
3211static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_en_sm_enabled_f(void)
3212{
3213 return 0x2U;
3214}
3215static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_en_sm_v(u32 r)
3216{
3217 return (r >> 1U) & 0x1U;
3218}
3219static inline u32 gr_gpcs_gpccs_gpc_exception_en_r(void)
3220{
3221 return 0x0041ac94U;
3222}
3223static inline u32 gr_gpcs_gpccs_gpc_exception_en_tpc_f(u32 v)
3224{
3225 return (v & 0xffU) << 16U;
3226}
3227static inline u32 gr_gpc0_gpccs_gpc_exception_r(void)
3228{
3229 return 0x00502c90U;
3230}
3231static inline u32 gr_gpc0_gpccs_gpc_exception_gcc_v(u32 r)
3232{
3233 return (r >> 2U) & 0x1U;
3234}
3235static inline u32 gr_gpc0_gpccs_gpc_exception_tpc_v(u32 r)
3236{
3237 return (r >> 16U) & 0xffU;
3238}
3239static inline u32 gr_gpc0_gpccs_gpc_exception_tpc_0_pending_v(void)
3240{
3241 return 0x00000001U;
3242}
3243static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_r(void)
3244{
3245 return 0x00504508U;
3246}
3247static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_tex_v(u32 r)
3248{
3249 return (r >> 0U) & 0x1U;
3250}
3251static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_tex_pending_v(void)
3252{
3253 return 0x00000001U;
3254}
3255static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_sm_v(u32 r)
3256{
3257 return (r >> 1U) & 0x1U;
3258}
3259static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_sm_pending_v(void)
3260{
3261 return 0x00000001U;
3262}
3263static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_r(void)
3264{
3265 return 0x00504610U;
3266}
3267static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_debugger_mode_m(void)
3268{
3269 return 0x1U << 0U;
3270}
3271static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_debugger_mode_v(u32 r)
3272{
3273 return (r >> 0U) & 0x1U;
3274}
3275static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_debugger_mode_on_v(void)
3276{
3277 return 0x00000001U;
3278}
3279static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_debugger_mode_on_f(void)
3280{
3281 return 0x1U;
3282}
3283static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_debugger_mode_off_v(void)
3284{
3285 return 0x00000000U;
3286}
3287static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_debugger_mode_off_f(void)
3288{
3289 return 0x0U;
3290}
3291static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_trigger_enable_f(void)
3292{
3293 return 0x80000000U;
3294}
3295static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_trigger_disable_f(void)
3296{
3297 return 0x0U;
3298}
3299static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_single_step_mode_enable_f(void)
3300{
3301 return 0x8U;
3302}
3303static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_single_step_mode_disable_f(void)
3304{
3305 return 0x0U;
3306}
3307static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_run_trigger_task_f(void)
3308{
3309 return 0x40000000U;
3310}
3311static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_warp_m(void)
3312{
3313 return 0x1U << 1U;
3314}
3315static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_warp_v(u32 r)
3316{
3317 return (r >> 1U) & 0x1U;
3318}
3319static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_warp_disable_f(void)
3320{
3321 return 0x0U;
3322}
3323static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_sm_m(void)
3324{
3325 return 0x1U << 2U;
3326}
3327static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_sm_v(u32 r)
3328{
3329 return (r >> 2U) & 0x1U;
3330}
3331static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_sm_disable_f(void)
3332{
3333 return 0x0U;
3334}
3335static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_sm_stop_on_any_warp_disable_v(void)
3336{
3337 return 0x00000000U;
3338}
3339static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_sm_stop_on_any_sm_disable_v(void)
3340{
3341 return 0x00000000U;
3342}
3343static inline u32 gr_gpc0_tpc0_sm_warp_valid_mask_r(void)
3344{
3345 return 0x00504614U;
3346}
3347static inline u32 gr_gpc0_tpc0_sm_warp_valid_mask_1_r(void)
3348{
3349 return 0x00504618U;
3350}
3351static inline u32 gr_gpc0_tpc0_sm_warp_valid_mask_2_r(void)
3352{
3353 return 0x0050461cU;
3354}
3355static inline u32 gr_gpc0_tpc0_sm_dbgr_bpt_pause_mask_r(void)
3356{
3357 return 0x00504624U;
3358}
3359static inline u32 gr_gpc0_tpc0_sm_dbgr_bpt_pause_mask_1_r(void)
3360{
3361 return 0x00504628U;
3362}
3363static inline u32 gr_gpc0_tpc0_sm_dbgr_bpt_pause_mask_2_r(void)
3364{
3365 return 0x00504750U;
3366}
3367static inline u32 gr_gpc0_tpc0_sm_dbgr_bpt_trap_mask_r(void)
3368{
3369 return 0x00504634U;
3370}
3371static inline u32 gr_gpc0_tpc0_sm_dbgr_bpt_trap_mask_1_r(void)
3372{
3373 return 0x00504638U;
3374}
3375static inline u32 gr_gpc0_tpc0_sm_dbgr_bpt_trap_mask_2_r(void)
3376{
3377 return 0x00504758U;
3378}
3379static inline u32 gr_gpcs_tpcs_sm_dbgr_bpt_pause_mask_r(void)
3380{
3381 return 0x00419e24U;
3382}
3383static inline u32 gr_gpc0_tpc0_sm_dbgr_status0_r(void)
3384{
3385 return 0x0050460cU;
3386}
3387static inline u32 gr_gpc0_tpc0_sm_dbgr_status0_sm_in_trap_mode_v(u32 r)
3388{
3389 return (r >> 0U) & 0x1U;
3390}
3391static inline u32 gr_gpc0_tpc0_sm_dbgr_status0_locked_down_v(u32 r)
3392{
3393 return (r >> 4U) & 0x1U;
3394}
3395static inline u32 gr_gpc0_tpc0_sm_dbgr_status0_locked_down_true_v(void)
3396{
3397 return 0x00000001U;
3398}
3399static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_r(void)
3400{
3401 return 0x00419e50U;
3402}
3403static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_bpt_int_pending_f(void)
3404{
3405 return 0x10U;
3406}
3407static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_bpt_pause_pending_f(void)
3408{
3409 return 0x20U;
3410}
3411static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_single_step_complete_pending_f(void)
3412{
3413 return 0x40U;
3414}
3415static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_sm_to_sm_fault_pending_f(void)
3416{
3417 return 0x1U;
3418}
3419static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_l1_error_pending_f(void)
3420{
3421 return 0x2U;
3422}
3423static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_multiple_warp_errors_pending_f(void)
3424{
3425 return 0x4U;
3426}
3427static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_physical_stack_overflow_error_pending_f(void)
3428{
3429 return 0x8U;
3430}
3431static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_timeout_error_pending_f(void)
3432{
3433 return 0x80000000U;
3434}
3435static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_r(void)
3436{
3437 return 0x00504650U;
3438}
3439static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_bpt_int_pending_f(void)
3440{
3441 return 0x10U;
3442}
3443static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_bpt_pause_pending_f(void)
3444{
3445 return 0x20U;
3446}
3447static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_single_step_complete_pending_f(void)
3448{
3449 return 0x40U;
3450}
3451static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_sm_to_sm_fault_pending_f(void)
3452{
3453 return 0x1U;
3454}
3455static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_l1_error_pending_f(void)
3456{
3457 return 0x2U;
3458}
3459static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_multiple_warp_errors_pending_f(void)
3460{
3461 return 0x4U;
3462}
3463static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_physical_stack_overflow_error_pending_f(void)
3464{
3465 return 0x8U;
3466}
3467static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_timeout_error_pending_f(void)
3468{
3469 return 0x80000000U;
3470}
3471static inline u32 gr_gpc0_tpc0_tex_m_hww_esr_r(void)
3472{
3473 return 0x00504224U;
3474}
3475static inline u32 gr_gpc0_tpc0_tex_m_hww_esr_intr_pending_f(void)
3476{
3477 return 0x1U;
3478}
3479static inline u32 gr_gpc0_tpc0_sm_hww_warp_esr_r(void)
3480{
3481 return 0x00504648U;
3482}
3483static inline u32 gr_gpc0_tpc0_sm_hww_warp_esr_error_v(u32 r)
3484{
3485 return (r >> 0U) & 0xffffU;
3486}
3487static inline u32 gr_gpc0_tpc0_sm_hww_warp_esr_error_none_v(void)
3488{
3489 return 0x00000000U;
3490}
3491static inline u32 gr_gpc0_tpc0_sm_hww_warp_esr_error_none_f(void)
3492{
3493 return 0x0U;
3494}
3495static inline u32 gr_gpc0_tpc0_sm_hww_warp_esr_pc_r(void)
3496{
3497 return 0x00504654U;
3498}
3499static inline u32 gr_gpc0_tpc0_sm_halfctl_ctrl_r(void)
3500{
3501 return 0x00504770U;
3502}
3503static inline u32 gr_gpcs_tpcs_sm_halfctl_ctrl_r(void)
3504{
3505 return 0x00419f70U;
3506}
3507static inline u32 gr_gpcs_tpcs_sm_halfctl_ctrl_sctl_read_quad_ctl_m(void)
3508{
3509 return 0x1U << 4U;
3510}
3511static inline u32 gr_gpcs_tpcs_sm_halfctl_ctrl_sctl_read_quad_ctl_f(u32 v)
3512{
3513 return (v & 0x1U) << 4U;
3514}
3515static inline u32 gr_gpc0_tpc0_sm_debug_sfe_control_r(void)
3516{
3517 return 0x0050477cU;
3518}
3519static inline u32 gr_gpcs_tpcs_sm_debug_sfe_control_r(void)
3520{
3521 return 0x00419f7cU;
3522}
3523static inline u32 gr_gpcs_tpcs_sm_debug_sfe_control_read_half_ctl_m(void)
3524{
3525 return 0x1U << 0U;
3526}
3527static inline u32 gr_gpcs_tpcs_sm_debug_sfe_control_read_half_ctl_f(u32 v)
3528{
3529 return (v & 0x1U) << 0U;
3530}
3531static inline u32 gr_gpcs_tpcs_pes_vsc_vpc_r(void)
3532{
3533 return 0x0041be08U;
3534}
3535static inline u32 gr_gpcs_tpcs_pes_vsc_vpc_fast_mode_switch_true_f(void)
3536{
3537 return 0x4U;
3538}
3539static inline u32 gr_ppcs_wwdx_map_gpc_map0_r(void)
3540{
3541 return 0x0041bf00U;
3542}
3543static inline u32 gr_ppcs_wwdx_map_gpc_map1_r(void)
3544{
3545 return 0x0041bf04U;
3546}
3547static inline u32 gr_ppcs_wwdx_map_gpc_map2_r(void)
3548{
3549 return 0x0041bf08U;
3550}
3551static inline u32 gr_ppcs_wwdx_map_gpc_map3_r(void)
3552{
3553 return 0x0041bf0cU;
3554}
3555static inline u32 gr_ppcs_wwdx_map_gpc_map4_r(void)
3556{
3557 return 0x0041bf10U;
3558}
3559static inline u32 gr_ppcs_wwdx_map_gpc_map5_r(void)
3560{
3561 return 0x0041bf14U;
3562}
3563static inline u32 gr_ppcs_wwdx_map_table_cfg_r(void)
3564{
3565 return 0x0041bfd0U;
3566}
3567static inline u32 gr_ppcs_wwdx_map_table_cfg_row_offset_f(u32 v)
3568{
3569 return (v & 0xffU) << 0U;
3570}
3571static inline u32 gr_ppcs_wwdx_map_table_cfg_num_entries_f(u32 v)
3572{
3573 return (v & 0xffU) << 8U;
3574}
3575static inline u32 gr_ppcs_wwdx_map_table_cfg_normalized_num_entries_f(u32 v)
3576{
3577 return (v & 0x1fU) << 16U;
3578}
3579static inline u32 gr_ppcs_wwdx_map_table_cfg_normalized_shift_value_f(u32 v)
3580{
3581 return (v & 0x7U) << 21U;
3582}
3583static inline u32 gr_ppcs_wwdx_map_table_cfg_coeff5_mod_value_f(u32 v)
3584{
3585 return (v & 0x1fU) << 24U;
3586}
3587static inline u32 gr_gpcs_ppcs_wwdx_sm_num_rcp_r(void)
3588{
3589 return 0x0041bfd4U;
3590}
3591static inline u32 gr_gpcs_ppcs_wwdx_sm_num_rcp_conservative_f(u32 v)
3592{
3593 return (v & 0xffffffU) << 0U;
3594}
3595static inline u32 gr_ppcs_wwdx_map_table_cfg2_r(void)
3596{
3597 return 0x0041bfe4U;
3598}
3599static inline u32 gr_ppcs_wwdx_map_table_cfg2_coeff6_mod_value_f(u32 v)
3600{
3601 return (v & 0x1fU) << 0U;
3602}
3603static inline u32 gr_ppcs_wwdx_map_table_cfg2_coeff7_mod_value_f(u32 v)
3604{
3605 return (v & 0x1fU) << 5U;
3606}
3607static inline u32 gr_ppcs_wwdx_map_table_cfg2_coeff8_mod_value_f(u32 v)
3608{
3609 return (v & 0x1fU) << 10U;
3610}
3611static inline u32 gr_ppcs_wwdx_map_table_cfg2_coeff9_mod_value_f(u32 v)
3612{
3613 return (v & 0x1fU) << 15U;
3614}
3615static inline u32 gr_ppcs_wwdx_map_table_cfg2_coeff10_mod_value_f(u32 v)
3616{
3617 return (v & 0x1fU) << 20U;
3618}
3619static inline u32 gr_ppcs_wwdx_map_table_cfg2_coeff11_mod_value_f(u32 v)
3620{
3621 return (v & 0x1fU) << 25U;
3622}
3623static inline u32 gr_bes_zrop_settings_r(void)
3624{
3625 return 0x00408850U;
3626}
3627static inline u32 gr_bes_zrop_settings_num_active_ltcs_f(u32 v)
3628{
3629 return (v & 0xfU) << 0U;
3630}
3631static inline u32 gr_be0_crop_debug3_r(void)
3632{
3633 return 0x00410108U;
3634}
3635static inline u32 gr_bes_crop_debug3_r(void)
3636{
3637 return 0x00408908U;
3638}
3639static inline u32 gr_bes_crop_debug3_comp_vdc_4to2_disable_m(void)
3640{
3641 return 0x1U << 31U;
3642}
3643static inline u32 gr_bes_crop_settings_r(void)
3644{
3645 return 0x00408958U;
3646}
3647static inline u32 gr_bes_crop_settings_num_active_ltcs_f(u32 v)
3648{
3649 return (v & 0xfU) << 0U;
3650}
3651static inline u32 gr_zcull_bytes_per_aliquot_per_gpu_v(void)
3652{
3653 return 0x00000020U;
3654}
3655static inline u32 gr_zcull_save_restore_header_bytes_per_gpc_v(void)
3656{
3657 return 0x00000020U;
3658}
3659static inline u32 gr_zcull_save_restore_subregion_header_bytes_per_gpc_v(void)
3660{
3661 return 0x000000c0U;
3662}
3663static inline u32 gr_zcull_subregion_qty_v(void)
3664{
3665 return 0x00000010U;
3666}
3667static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control_sel0_r(void)
3668{
3669 return 0x00504604U;
3670}
3671static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control_sel1_r(void)
3672{
3673 return 0x00504608U;
3674}
3675static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control0_r(void)
3676{
3677 return 0x0050465cU;
3678}
3679static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control1_r(void)
3680{
3681 return 0x00504660U;
3682}
3683static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control2_r(void)
3684{
3685 return 0x00504664U;
3686}
3687static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control3_r(void)
3688{
3689 return 0x00504668U;
3690}
3691static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control4_r(void)
3692{
3693 return 0x0050466cU;
3694}
3695static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control5_r(void)
3696{
3697 return 0x00504658U;
3698}
3699static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter0_control_r(void)
3700{
3701 return 0x00504730U;
3702}
3703static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter1_control_r(void)
3704{
3705 return 0x00504734U;
3706}
3707static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter2_control_r(void)
3708{
3709 return 0x00504738U;
3710}
3711static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter3_control_r(void)
3712{
3713 return 0x0050473cU;
3714}
3715static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter4_control_r(void)
3716{
3717 return 0x00504740U;
3718}
3719static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter5_control_r(void)
3720{
3721 return 0x00504744U;
3722}
3723static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter6_control_r(void)
3724{
3725 return 0x00504748U;
3726}
3727static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter7_control_r(void)
3728{
3729 return 0x0050474cU;
3730}
3731static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_status_s1_r(void)
3732{
3733 return 0x00504678U;
3734}
3735static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_status1_r(void)
3736{
3737 return 0x00504694U;
3738}
3739static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter0_s0_r(void)
3740{
3741 return 0x005046f0U;
3742}
3743static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter0_s1_r(void)
3744{
3745 return 0x00504700U;
3746}
3747static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter1_s0_r(void)
3748{
3749 return 0x005046f4U;
3750}
3751static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter1_s1_r(void)
3752{
3753 return 0x00504704U;
3754}
3755static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter2_s0_r(void)
3756{
3757 return 0x005046f8U;
3758}
3759static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter2_s1_r(void)
3760{
3761 return 0x00504708U;
3762}
3763static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter3_s0_r(void)
3764{
3765 return 0x005046fcU;
3766}
3767static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter3_s1_r(void)
3768{
3769 return 0x0050470cU;
3770}
3771static inline u32 gr_fe_pwr_mode_r(void)
3772{
3773 return 0x00404170U;
3774}
3775static inline u32 gr_fe_pwr_mode_mode_auto_f(void)
3776{
3777 return 0x0U;
3778}
3779static inline u32 gr_fe_pwr_mode_mode_force_on_f(void)
3780{
3781 return 0x2U;
3782}
3783static inline u32 gr_fe_pwr_mode_req_v(u32 r)
3784{
3785 return (r >> 4U) & 0x1U;
3786}
3787static inline u32 gr_fe_pwr_mode_req_send_f(void)
3788{
3789 return 0x10U;
3790}
3791static inline u32 gr_fe_pwr_mode_req_done_v(void)
3792{
3793 return 0x00000000U;
3794}
3795static inline u32 gr_gpcs_pri_mmu_ctrl_r(void)
3796{
3797 return 0x00418880U;
3798}
3799static inline u32 gr_gpcs_pri_mmu_ctrl_vm_pg_size_m(void)
3800{
3801 return 0x1U << 0U;
3802}
3803static inline u32 gr_gpcs_pri_mmu_ctrl_use_pdb_big_page_size_m(void)
3804{
3805 return 0x1U << 11U;
3806}
3807static inline u32 gr_gpcs_pri_mmu_ctrl_use_full_comp_tag_line_m(void)
3808{
3809 return 0x1U << 12U;
3810}
3811static inline u32 gr_gpcs_pri_mmu_ctrl_vol_fault_m(void)
3812{
3813 return 0x1U << 1U;
3814}
3815static inline u32 gr_gpcs_pri_mmu_ctrl_comp_fault_m(void)
3816{
3817 return 0x1U << 2U;
3818}
3819static inline u32 gr_gpcs_pri_mmu_ctrl_miss_gran_m(void)
3820{
3821 return 0x3U << 3U;
3822}
3823static inline u32 gr_gpcs_pri_mmu_ctrl_cache_mode_m(void)
3824{
3825 return 0x3U << 5U;
3826}
3827static inline u32 gr_gpcs_pri_mmu_ctrl_mmu_aperture_m(void)
3828{
3829 return 0x3U << 28U;
3830}
3831static inline u32 gr_gpcs_pri_mmu_ctrl_mmu_vol_m(void)
3832{
3833 return 0x1U << 30U;
3834}
3835static inline u32 gr_gpcs_pri_mmu_ctrl_mmu_disable_m(void)
3836{
3837 return 0x1U << 31U;
3838}
3839static inline u32 gr_gpcs_pri_mmu_pm_unit_mask_r(void)
3840{
3841 return 0x00418890U;
3842}
3843static inline u32 gr_gpcs_pri_mmu_pm_req_mask_r(void)
3844{
3845 return 0x00418894U;
3846}
3847static inline u32 gr_gpcs_pri_mmu_debug_ctrl_r(void)
3848{
3849 return 0x004188b0U;
3850}
3851static inline u32 gr_gpcs_pri_mmu_debug_ctrl_debug_m(void)
3852{
3853 return 0x1U << 16U;
3854}
3855static inline u32 gr_gpcs_pri_mmu_debug_ctrl_debug_v(u32 r)
3856{
3857 return (r >> 16U) & 0x1U;
3858}
3859static inline u32 gr_gpcs_pri_mmu_debug_ctrl_debug_enabled_v(void)
3860{
3861 return 0x00000001U;
3862}
3863static inline u32 gr_gpcs_pri_mmu_debug_ctrl_debug_enabled_f(void)
3864{
3865 return 0x10000U;
3866}
3867static inline u32 gr_gpcs_pri_mmu_debug_ctrl_debug_disabled_v(void)
3868{
3869 return 0x00000000U;
3870}
3871static inline u32 gr_gpcs_pri_mmu_debug_ctrl_debug_disabled_f(void)
3872{
3873 return 0x0U;
3874}
3875static inline u32 gr_gpcs_pri_mmu_debug_wr_r(void)
3876{
3877 return 0x004188b4U;
3878}
3879static inline u32 gr_gpcs_pri_mmu_debug_rd_r(void)
3880{
3881 return 0x004188b8U;
3882}
3883static inline u32 gr_gpcs_mmu_num_active_ltcs_r(void)
3884{
3885 return 0x004188acU;
3886}
3887static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_r(void)
3888{
3889 return 0x00419e10U;
3890}
3891static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_debugger_mode_f(u32 v)
3892{
3893 return (v & 0x1U) << 0U;
3894}
3895static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_debugger_mode_on_v(void)
3896{
3897 return 0x00000001U;
3898}
3899static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_stop_trigger_m(void)
3900{
3901 return 0x1U << 31U;
3902}
3903static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_stop_trigger_v(u32 r)
3904{
3905 return (r >> 31U) & 0x1U;
3906}
3907static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_stop_trigger_enable_f(void)
3908{
3909 return 0x80000000U;
3910}
3911static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_stop_trigger_disable_f(void)
3912{
3913 return 0x0U;
3914}
3915static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_single_step_mode_m(void)
3916{
3917 return 0x1U << 3U;
3918}
3919static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_single_step_mode_enable_f(void)
3920{
3921 return 0x8U;
3922}
3923static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_single_step_mode_disable_f(void)
3924{
3925 return 0x0U;
3926}
3927static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_run_trigger_m(void)
3928{
3929 return 0x1U << 30U;
3930}
3931static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_run_trigger_v(u32 r)
3932{
3933 return (r >> 30U) & 0x1U;
3934}
3935static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_run_trigger_task_f(void)
3936{
3937 return 0x40000000U;
3938}
3939#endif
diff --git a/include/nvgpu/hw/gm20b/hw_ltc_gm20b.h b/include/nvgpu/hw/gm20b/hw_ltc_gm20b.h
deleted file mode 100644
index 2c3ebb4..0000000
--- a/include/nvgpu/hw/gm20b/hw_ltc_gm20b.h
+++ /dev/null
@@ -1,527 +0,0 @@
1/*
2 * Copyright (c) 2014-2017, 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_ltc_gm20b_h_
57#define _hw_ltc_gm20b_h_
58
59static inline u32 ltc_pltcg_base_v(void)
60{
61 return 0x00140000U;
62}
63static inline u32 ltc_pltcg_extent_v(void)
64{
65 return 0x0017ffffU;
66}
67static inline u32 ltc_ltc0_ltss_v(void)
68{
69 return 0x00140200U;
70}
71static inline u32 ltc_ltc0_lts0_v(void)
72{
73 return 0x00140400U;
74}
75static inline u32 ltc_ltcs_ltss_v(void)
76{
77 return 0x0017e200U;
78}
79static inline u32 ltc_ltcs_lts0_cbc_ctrl1_r(void)
80{
81 return 0x0014046cU;
82}
83static inline u32 ltc_ltc0_lts0_dstg_cfg0_r(void)
84{
85 return 0x00140518U;
86}
87static inline u32 ltc_ltcs_ltss_dstg_cfg0_r(void)
88{
89 return 0x0017e318U;
90}
91static inline u32 ltc_ltcs_ltss_dstg_cfg0_vdc_4to2_disable_m(void)
92{
93 return 0x1U << 15U;
94}
95static inline u32 ltc_ltc0_lts0_tstg_cfg1_r(void)
96{
97 return 0x00140494U;
98}
99static inline u32 ltc_ltc0_lts0_tstg_cfg1_active_ways_v(u32 r)
100{
101 return (r >> 0U) & 0xffffU;
102}
103static inline u32 ltc_ltc0_lts0_tstg_cfg1_active_sets_v(u32 r)
104{
105 return (r >> 16U) & 0x3U;
106}
107static inline u32 ltc_ltc0_lts0_tstg_cfg1_active_sets_all_v(void)
108{
109 return 0x00000000U;
110}
111static inline u32 ltc_ltc0_lts0_tstg_cfg1_active_sets_half_v(void)
112{
113 return 0x00000001U;
114}
115static inline u32 ltc_ltc0_lts0_tstg_cfg1_active_sets_quarter_v(void)
116{
117 return 0x00000002U;
118}
119static inline u32 ltc_ltcs_ltss_cbc_ctrl1_r(void)
120{
121 return 0x0017e26cU;
122}
123static inline u32 ltc_ltcs_ltss_cbc_ctrl1_clean_active_f(void)
124{
125 return 0x1U;
126}
127static inline u32 ltc_ltcs_ltss_cbc_ctrl1_invalidate_active_f(void)
128{
129 return 0x2U;
130}
131static inline u32 ltc_ltcs_ltss_cbc_ctrl1_clear_v(u32 r)
132{
133 return (r >> 2U) & 0x1U;
134}
135static inline u32 ltc_ltcs_ltss_cbc_ctrl1_clear_active_v(void)
136{
137 return 0x00000001U;
138}
139static inline u32 ltc_ltcs_ltss_cbc_ctrl1_clear_active_f(void)
140{
141 return 0x4U;
142}
143static inline u32 ltc_ltc0_lts0_cbc_ctrl1_r(void)
144{
145 return 0x0014046cU;
146}
147static inline u32 ltc_ltcs_ltss_cbc_ctrl2_r(void)
148{
149 return 0x0017e270U;
150}
151static inline u32 ltc_ltcs_ltss_cbc_ctrl2_clear_lower_bound_f(u32 v)
152{
153 return (v & 0x1ffffU) << 0U;
154}
155static inline u32 ltc_ltcs_ltss_cbc_ctrl3_r(void)
156{
157 return 0x0017e274U;
158}
159static inline u32 ltc_ltcs_ltss_cbc_ctrl3_clear_upper_bound_f(u32 v)
160{
161 return (v & 0x1ffffU) << 0U;
162}
163static inline u32 ltc_ltcs_ltss_cbc_ctrl3_clear_upper_bound_init_v(void)
164{
165 return 0x0001ffffU;
166}
167static inline u32 ltc_ltcs_ltss_cbc_base_r(void)
168{
169 return 0x0017e278U;
170}
171static inline u32 ltc_ltcs_ltss_cbc_base_alignment_shift_v(void)
172{
173 return 0x0000000bU;
174}
175static inline u32 ltc_ltcs_ltss_cbc_base_address_v(u32 r)
176{
177 return (r >> 0U) & 0x3ffffffU;
178}
179static inline u32 ltc_ltcs_ltss_cbc_num_active_ltcs_r(void)
180{
181 return 0x0017e27cU;
182}
183static inline u32 ltc_ltcs_misc_ltc_num_active_ltcs_r(void)
184{
185 return 0x0017e000U;
186}
187static inline u32 ltc_ltcs_ltss_cbc_param_r(void)
188{
189 return 0x0017e280U;
190}
191static inline u32 ltc_ltcs_ltss_cbc_param_comptags_per_cache_line_v(u32 r)
192{
193 return (r >> 0U) & 0xffffU;
194}
195static inline u32 ltc_ltcs_ltss_cbc_param_cache_line_size_v(u32 r)
196{
197 return (r >> 24U) & 0xfU;
198}
199static inline u32 ltc_ltcs_ltss_cbc_param_slices_per_ltc_v(u32 r)
200{
201 return (r >> 28U) & 0xfU;
202}
203static inline u32 ltc_ltcs_ltss_tstg_set_mgmt_r(void)
204{
205 return 0x0017e2acU;
206}
207static inline u32 ltc_ltcs_ltss_tstg_set_mgmt_max_ways_evict_last_f(u32 v)
208{
209 return (v & 0x1fU) << 16U;
210}
211static inline u32 ltc_ltcs_ltss_dstg_zbc_index_r(void)
212{
213 return 0x0017e338U;
214}
215static inline u32 ltc_ltcs_ltss_dstg_zbc_index_address_f(u32 v)
216{
217 return (v & 0xfU) << 0U;
218}
219static inline u32 ltc_ltcs_ltss_dstg_zbc_color_clear_value_r(u32 i)
220{
221 return 0x0017e33cU + i*4U;
222}
223static inline u32 ltc_ltcs_ltss_dstg_zbc_color_clear_value__size_1_v(void)
224{
225 return 0x00000004U;
226}
227static inline u32 ltc_ltcs_ltss_dstg_zbc_depth_clear_value_r(void)
228{
229 return 0x0017e34cU;
230}
231static inline u32 ltc_ltcs_ltss_dstg_zbc_depth_clear_value_field_s(void)
232{
233 return 32U;
234}
235static inline u32 ltc_ltcs_ltss_dstg_zbc_depth_clear_value_field_f(u32 v)
236{
237 return (v & 0xffffffffU) << 0U;
238}
239static inline u32 ltc_ltcs_ltss_dstg_zbc_depth_clear_value_field_m(void)
240{
241 return 0xffffffffU << 0U;
242}
243static inline u32 ltc_ltcs_ltss_dstg_zbc_depth_clear_value_field_v(u32 r)
244{
245 return (r >> 0U) & 0xffffffffU;
246}
247static inline u32 ltc_ltcs_ltss_tstg_set_mgmt_2_r(void)
248{
249 return 0x0017e2b0U;
250}
251static inline u32 ltc_ltcs_ltss_tstg_set_mgmt_2_l2_bypass_mode_enabled_f(void)
252{
253 return 0x10000000U;
254}
255static inline u32 ltc_ltcs_ltss_g_elpg_r(void)
256{
257 return 0x0017e214U;
258}
259static inline u32 ltc_ltcs_ltss_g_elpg_flush_v(u32 r)
260{
261 return (r >> 0U) & 0x1U;
262}
263static inline u32 ltc_ltcs_ltss_g_elpg_flush_pending_v(void)
264{
265 return 0x00000001U;
266}
267static inline u32 ltc_ltcs_ltss_g_elpg_flush_pending_f(void)
268{
269 return 0x1U;
270}
271static inline u32 ltc_ltc0_ltss_g_elpg_r(void)
272{
273 return 0x00140214U;
274}
275static inline u32 ltc_ltc0_ltss_g_elpg_flush_v(u32 r)
276{
277 return (r >> 0U) & 0x1U;
278}
279static inline u32 ltc_ltc0_ltss_g_elpg_flush_pending_v(void)
280{
281 return 0x00000001U;
282}
283static inline u32 ltc_ltc0_ltss_g_elpg_flush_pending_f(void)
284{
285 return 0x1U;
286}
287static inline u32 ltc_ltc1_ltss_g_elpg_r(void)
288{
289 return 0x00142214U;
290}
291static inline u32 ltc_ltc1_ltss_g_elpg_flush_v(u32 r)
292{
293 return (r >> 0U) & 0x1U;
294}
295static inline u32 ltc_ltc1_ltss_g_elpg_flush_pending_v(void)
296{
297 return 0x00000001U;
298}
299static inline u32 ltc_ltc1_ltss_g_elpg_flush_pending_f(void)
300{
301 return 0x1U;
302}
303static inline u32 ltc_ltcs_ltss_intr_r(void)
304{
305 return 0x0017e20cU;
306}
307static inline u32 ltc_ltcs_ltss_intr_en_evicted_cb_m(void)
308{
309 return 0x1U << 20U;
310}
311static inline u32 ltc_ltcs_ltss_intr_en_illegal_compstat_access_m(void)
312{
313 return 0x1U << 30U;
314}
315static inline u32 ltc_ltcs_ltss_intr_en_illegal_compstat_m(void)
316{
317 return 0x1U << 21U;
318}
319static inline u32 ltc_ltc0_lts0_intr_r(void)
320{
321 return 0x0014040cU;
322}
323static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_r(void)
324{
325 return 0x0017e2a0U;
326}
327static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_v(u32 r)
328{
329 return (r >> 0U) & 0x1U;
330}
331static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_pending_v(void)
332{
333 return 0x00000001U;
334}
335static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_pending_f(void)
336{
337 return 0x1U;
338}
339static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_max_cycles_between_invalidates_v(u32 r)
340{
341 return (r >> 8U) & 0xfU;
342}
343static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_max_cycles_between_invalidates_3_v(void)
344{
345 return 0x00000003U;
346}
347static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_max_cycles_between_invalidates_3_f(void)
348{
349 return 0x300U;
350}
351static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_last_class_v(u32 r)
352{
353 return (r >> 28U) & 0x1U;
354}
355static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_last_class_true_v(void)
356{
357 return 0x00000001U;
358}
359static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_last_class_true_f(void)
360{
361 return 0x10000000U;
362}
363static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_normal_class_v(u32 r)
364{
365 return (r >> 29U) & 0x1U;
366}
367static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_normal_class_true_v(void)
368{
369 return 0x00000001U;
370}
371static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_normal_class_true_f(void)
372{
373 return 0x20000000U;
374}
375static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_first_class_v(u32 r)
376{
377 return (r >> 30U) & 0x1U;
378}
379static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_first_class_true_v(void)
380{
381 return 0x00000001U;
382}
383static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_first_class_true_f(void)
384{
385 return 0x40000000U;
386}
387static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_r(void)
388{
389 return 0x0017e2a4U;
390}
391static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_v(u32 r)
392{
393 return (r >> 0U) & 0x1U;
394}
395static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_pending_v(void)
396{
397 return 0x00000001U;
398}
399static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_pending_f(void)
400{
401 return 0x1U;
402}
403static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_max_cycles_between_cleans_v(u32 r)
404{
405 return (r >> 8U) & 0xfU;
406}
407static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_max_cycles_between_cleans_3_v(void)
408{
409 return 0x00000003U;
410}
411static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_max_cycles_between_cleans_3_f(void)
412{
413 return 0x300U;
414}
415static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_wait_for_fb_to_pull_v(u32 r)
416{
417 return (r >> 16U) & 0x1U;
418}
419static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_wait_for_fb_to_pull_true_v(void)
420{
421 return 0x00000001U;
422}
423static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_wait_for_fb_to_pull_true_f(void)
424{
425 return 0x10000U;
426}
427static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_last_class_v(u32 r)
428{
429 return (r >> 28U) & 0x1U;
430}
431static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_last_class_true_v(void)
432{
433 return 0x00000001U;
434}
435static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_last_class_true_f(void)
436{
437 return 0x10000000U;
438}
439static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_normal_class_v(u32 r)
440{
441 return (r >> 29U) & 0x1U;
442}
443static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_normal_class_true_v(void)
444{
445 return 0x00000001U;
446}
447static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_normal_class_true_f(void)
448{
449 return 0x20000000U;
450}
451static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_first_class_v(u32 r)
452{
453 return (r >> 30U) & 0x1U;
454}
455static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_first_class_true_v(void)
456{
457 return 0x00000001U;
458}
459static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_first_class_true_f(void)
460{
461 return 0x40000000U;
462}
463static inline u32 ltc_ltc0_ltss_tstg_cmgmt0_r(void)
464{
465 return 0x001402a0U;
466}
467static inline u32 ltc_ltc0_ltss_tstg_cmgmt0_invalidate_v(u32 r)
468{
469 return (r >> 0U) & 0x1U;
470}
471static inline u32 ltc_ltc0_ltss_tstg_cmgmt0_invalidate_pending_v(void)
472{
473 return 0x00000001U;
474}
475static inline u32 ltc_ltc0_ltss_tstg_cmgmt0_invalidate_pending_f(void)
476{
477 return 0x1U;
478}
479static inline u32 ltc_ltc0_ltss_tstg_cmgmt1_r(void)
480{
481 return 0x001402a4U;
482}
483static inline u32 ltc_ltc0_ltss_tstg_cmgmt1_clean_v(u32 r)
484{
485 return (r >> 0U) & 0x1U;
486}
487static inline u32 ltc_ltc0_ltss_tstg_cmgmt1_clean_pending_v(void)
488{
489 return 0x00000001U;
490}
491static inline u32 ltc_ltc0_ltss_tstg_cmgmt1_clean_pending_f(void)
492{
493 return 0x1U;
494}
495static inline u32 ltc_ltc1_ltss_tstg_cmgmt0_r(void)
496{
497 return 0x001422a0U;
498}
499static inline u32 ltc_ltc1_ltss_tstg_cmgmt0_invalidate_v(u32 r)
500{
501 return (r >> 0U) & 0x1U;
502}
503static inline u32 ltc_ltc1_ltss_tstg_cmgmt0_invalidate_pending_v(void)
504{
505 return 0x00000001U;
506}
507static inline u32 ltc_ltc1_ltss_tstg_cmgmt0_invalidate_pending_f(void)
508{
509 return 0x1U;
510}
511static inline u32 ltc_ltc1_ltss_tstg_cmgmt1_r(void)
512{
513 return 0x001422a4U;
514}
515static inline u32 ltc_ltc1_ltss_tstg_cmgmt1_clean_v(u32 r)
516{
517 return (r >> 0U) & 0x1U;
518}
519static inline u32 ltc_ltc1_ltss_tstg_cmgmt1_clean_pending_v(void)
520{
521 return 0x00000001U;
522}
523static inline u32 ltc_ltc1_ltss_tstg_cmgmt1_clean_pending_f(void)
524{
525 return 0x1U;
526}
527#endif
diff --git a/include/nvgpu/hw/gm20b/hw_mc_gm20b.h b/include/nvgpu/hw/gm20b/hw_mc_gm20b.h
deleted file mode 100644
index 0264803..0000000
--- a/include/nvgpu/hw/gm20b/hw_mc_gm20b.h
+++ /dev/null
@@ -1,287 +0,0 @@
1/*
2 * Copyright (c) 2014-2017, 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_mc_gm20b_h_
57#define _hw_mc_gm20b_h_
58
59static inline u32 mc_boot_0_r(void)
60{
61 return 0x00000000U;
62}
63static inline u32 mc_boot_0_architecture_v(u32 r)
64{
65 return (r >> 24U) & 0x1fU;
66}
67static inline u32 mc_boot_0_implementation_v(u32 r)
68{
69 return (r >> 20U) & 0xfU;
70}
71static inline u32 mc_boot_0_major_revision_v(u32 r)
72{
73 return (r >> 4U) & 0xfU;
74}
75static inline u32 mc_boot_0_minor_revision_v(u32 r)
76{
77 return (r >> 0U) & 0xfU;
78}
79static inline u32 mc_intr_r(u32 i)
80{
81 return 0x00000100U + i*4U;
82}
83static inline u32 mc_intr_pfifo_pending_f(void)
84{
85 return 0x100U;
86}
87static inline u32 mc_intr_pmu_pending_f(void)
88{
89 return 0x1000000U;
90}
91static inline u32 mc_intr_ltc_pending_f(void)
92{
93 return 0x2000000U;
94}
95static inline u32 mc_intr_priv_ring_pending_f(void)
96{
97 return 0x40000000U;
98}
99static inline u32 mc_intr_pbus_pending_f(void)
100{
101 return 0x10000000U;
102}
103static inline u32 mc_intr_mask_0_r(void)
104{
105 return 0x00000640U;
106}
107static inline u32 mc_intr_mask_0_pmu_enabled_f(void)
108{
109 return 0x1000000U;
110}
111static inline u32 mc_intr_en_0_r(void)
112{
113 return 0x00000140U;
114}
115static inline u32 mc_intr_en_0_inta_disabled_f(void)
116{
117 return 0x0U;
118}
119static inline u32 mc_intr_en_0_inta_hardware_f(void)
120{
121 return 0x1U;
122}
123static inline u32 mc_intr_mask_1_r(void)
124{
125 return 0x00000644U;
126}
127static inline u32 mc_intr_mask_1_pmu_s(void)
128{
129 return 1U;
130}
131static inline u32 mc_intr_mask_1_pmu_f(u32 v)
132{
133 return (v & 0x1U) << 24U;
134}
135static inline u32 mc_intr_mask_1_pmu_m(void)
136{
137 return 0x1U << 24U;
138}
139static inline u32 mc_intr_mask_1_pmu_v(u32 r)
140{
141 return (r >> 24U) & 0x1U;
142}
143static inline u32 mc_intr_mask_1_pmu_enabled_f(void)
144{
145 return 0x1000000U;
146}
147static inline u32 mc_intr_en_1_r(void)
148{
149 return 0x00000144U;
150}
151static inline u32 mc_intr_en_1_inta_disabled_f(void)
152{
153 return 0x0U;
154}
155static inline u32 mc_intr_en_1_inta_hardware_f(void)
156{
157 return 0x1U;
158}
159static inline u32 mc_enable_r(void)
160{
161 return 0x00000200U;
162}
163static inline u32 mc_enable_xbar_enabled_f(void)
164{
165 return 0x4U;
166}
167static inline u32 mc_enable_l2_enabled_f(void)
168{
169 return 0x8U;
170}
171static inline u32 mc_enable_pmedia_s(void)
172{
173 return 1U;
174}
175static inline u32 mc_enable_pmedia_f(u32 v)
176{
177 return (v & 0x1U) << 4U;
178}
179static inline u32 mc_enable_pmedia_m(void)
180{
181 return 0x1U << 4U;
182}
183static inline u32 mc_enable_pmedia_v(u32 r)
184{
185 return (r >> 4U) & 0x1U;
186}
187static inline u32 mc_enable_priv_ring_enabled_f(void)
188{
189 return 0x20U;
190}
191static inline u32 mc_enable_ce0_m(void)
192{
193 return 0x1U << 6U;
194}
195static inline u32 mc_enable_pfifo_enabled_f(void)
196{
197 return 0x100U;
198}
199static inline u32 mc_enable_pgraph_enabled_f(void)
200{
201 return 0x1000U;
202}
203static inline u32 mc_enable_pwr_v(u32 r)
204{
205 return (r >> 13U) & 0x1U;
206}
207static inline u32 mc_enable_pwr_disabled_v(void)
208{
209 return 0x00000000U;
210}
211static inline u32 mc_enable_pwr_enabled_f(void)
212{
213 return 0x2000U;
214}
215static inline u32 mc_enable_pfb_enabled_f(void)
216{
217 return 0x100000U;
218}
219static inline u32 mc_enable_ce2_m(void)
220{
221 return 0x1U << 21U;
222}
223static inline u32 mc_enable_ce2_enabled_f(void)
224{
225 return 0x200000U;
226}
227static inline u32 mc_enable_blg_enabled_f(void)
228{
229 return 0x8000000U;
230}
231static inline u32 mc_enable_perfmon_enabled_f(void)
232{
233 return 0x10000000U;
234}
235static inline u32 mc_enable_hub_enabled_f(void)
236{
237 return 0x20000000U;
238}
239static inline u32 mc_intr_ltc_r(void)
240{
241 return 0x0000017cU;
242}
243static inline u32 mc_enable_pb_r(void)
244{
245 return 0x00000204U;
246}
247static inline u32 mc_enable_pb_0_s(void)
248{
249 return 1U;
250}
251static inline u32 mc_enable_pb_0_f(u32 v)
252{
253 return (v & 0x1U) << 0U;
254}
255static inline u32 mc_enable_pb_0_m(void)
256{
257 return 0x1U << 0U;
258}
259static inline u32 mc_enable_pb_0_v(u32 r)
260{
261 return (r >> 0U) & 0x1U;
262}
263static inline u32 mc_enable_pb_0_enabled_v(void)
264{
265 return 0x00000001U;
266}
267static inline u32 mc_enable_pb_sel_f(u32 v, u32 i)
268{
269 return (v & 0x1U) << (0U + i*1U);
270}
271static inline u32 mc_elpg_enable_r(void)
272{
273 return 0x0000020cU;
274}
275static inline u32 mc_elpg_enable_xbar_enabled_f(void)
276{
277 return 0x4U;
278}
279static inline u32 mc_elpg_enable_pfb_enabled_f(void)
280{
281 return 0x100000U;
282}
283static inline u32 mc_elpg_enable_hub_enabled_f(void)
284{
285 return 0x20000000U;
286}
287#endif
diff --git a/include/nvgpu/hw/gm20b/hw_pbdma_gm20b.h b/include/nvgpu/hw/gm20b/hw_pbdma_gm20b.h
deleted file mode 100644
index 10ed9ec..0000000
--- a/include/nvgpu/hw/gm20b/hw_pbdma_gm20b.h
+++ /dev/null
@@ -1,579 +0,0 @@
1/*
2 * Copyright (c) 2014-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_gm20b_h_
57#define _hw_pbdma_gm20b_h_
58
59static inline u32 pbdma_gp_entry1_r(void)
60{
61 return 0x10000004U;
62}
63static inline u32 pbdma_gp_entry1_get_hi_v(u32 r)
64{
65 return (r >> 0U) & 0xffU;
66}
67static inline u32 pbdma_gp_entry1_length_f(u32 v)
68{
69 return (v & 0x1fffffU) << 10U;
70}
71static inline u32 pbdma_gp_entry1_length_v(u32 r)
72{
73 return (r >> 10U) & 0x1fffffU;
74}
75static inline u32 pbdma_gp_base_r(u32 i)
76{
77 return 0x00040048U + i*8192U;
78}
79static inline u32 pbdma_gp_base__size_1_v(void)
80{
81 return 0x00000001U;
82}
83static inline u32 pbdma_gp_base_offset_f(u32 v)
84{
85 return (v & 0x1fffffffU) << 3U;
86}
87static inline u32 pbdma_gp_base_rsvd_s(void)
88{
89 return 3U;
90}
91static inline u32 pbdma_gp_base_hi_r(u32 i)
92{
93 return 0x0004004cU + i*8192U;
94}
95static inline u32 pbdma_gp_base_hi_offset_f(u32 v)
96{
97 return (v & 0xffU) << 0U;
98}
99static inline u32 pbdma_gp_base_hi_limit2_f(u32 v)
100{
101 return (v & 0x1fU) << 16U;
102}
103static inline u32 pbdma_gp_fetch_r(u32 i)
104{
105 return 0x00040050U + i*8192U;
106}
107static inline u32 pbdma_gp_get_r(u32 i)
108{
109 return 0x00040014U + i*8192U;
110}
111static inline u32 pbdma_gp_put_r(u32 i)
112{
113 return 0x00040000U + i*8192U;
114}
115static inline u32 pbdma_pb_fetch_r(u32 i)
116{
117 return 0x00040054U + i*8192U;
118}
119static inline u32 pbdma_pb_fetch_hi_r(u32 i)
120{
121 return 0x00040058U + i*8192U;
122}
123static inline u32 pbdma_get_r(u32 i)
124{
125 return 0x00040018U + i*8192U;
126}
127static inline u32 pbdma_get_hi_r(u32 i)
128{
129 return 0x0004001cU + i*8192U;
130}
131static inline u32 pbdma_put_r(u32 i)
132{
133 return 0x0004005cU + i*8192U;
134}
135static inline u32 pbdma_put_hi_r(u32 i)
136{
137 return 0x00040060U + i*8192U;
138}
139static inline u32 pbdma_formats_r(u32 i)
140{
141 return 0x0004009cU + i*8192U;
142}
143static inline u32 pbdma_formats_gp_fermi0_f(void)
144{
145 return 0x0U;
146}
147static inline u32 pbdma_formats_pb_fermi1_f(void)
148{
149 return 0x100U;
150}
151static inline u32 pbdma_formats_mp_fermi0_f(void)
152{
153 return 0x0U;
154}
155static inline u32 pbdma_pb_header_r(u32 i)
156{
157 return 0x00040084U + i*8192U;
158}
159static inline u32 pbdma_pb_header_priv_user_f(void)
160{
161 return 0x0U;
162}
163static inline u32 pbdma_pb_header_method_zero_f(void)
164{
165 return 0x0U;
166}
167static inline u32 pbdma_pb_header_subchannel_zero_f(void)
168{
169 return 0x0U;
170}
171static inline u32 pbdma_pb_header_level_main_f(void)
172{
173 return 0x0U;
174}
175static inline u32 pbdma_pb_header_first_true_f(void)
176{
177 return 0x400000U;
178}
179static inline u32 pbdma_pb_header_type_inc_f(void)
180{
181 return 0x20000000U;
182}
183static inline u32 pbdma_pb_header_type_non_inc_f(void)
184{
185 return 0x60000000U;
186}
187static inline u32 pbdma_hdr_shadow_r(u32 i)
188{
189 return 0x00040118U + i*8192U;
190}
191static inline u32 pbdma_gp_shadow_0_r(u32 i)
192{
193 return 0x00040110U + i*8192U;
194}
195static inline u32 pbdma_gp_shadow_1_r(u32 i)
196{
197 return 0x00040114U + i*8192U;
198}
199static inline u32 pbdma_subdevice_r(u32 i)
200{
201 return 0x00040094U + i*8192U;
202}
203static inline u32 pbdma_subdevice_id_f(u32 v)
204{
205 return (v & 0xfffU) << 0U;
206}
207static inline u32 pbdma_subdevice_status_active_f(void)
208{
209 return 0x10000000U;
210}
211static inline u32 pbdma_subdevice_channel_dma_enable_f(void)
212{
213 return 0x20000000U;
214}
215static inline u32 pbdma_method0_r(u32 i)
216{
217 return 0x000400c0U + i*8192U;
218}
219static inline u32 pbdma_method0_fifo_size_v(void)
220{
221 return 0x00000004U;
222}
223static inline u32 pbdma_method0_addr_f(u32 v)
224{
225 return (v & 0xfffU) << 2U;
226}
227static inline u32 pbdma_method0_addr_v(u32 r)
228{
229 return (r >> 2U) & 0xfffU;
230}
231static inline u32 pbdma_method0_subch_v(u32 r)
232{
233 return (r >> 16U) & 0x7U;
234}
235static inline u32 pbdma_method0_first_true_f(void)
236{
237 return 0x400000U;
238}
239static inline u32 pbdma_method0_valid_true_f(void)
240{
241 return 0x80000000U;
242}
243static inline u32 pbdma_method1_r(u32 i)
244{
245 return 0x000400c8U + i*8192U;
246}
247static inline u32 pbdma_method2_r(u32 i)
248{
249 return 0x000400d0U + i*8192U;
250}
251static inline u32 pbdma_method3_r(u32 i)
252{
253 return 0x000400d8U + i*8192U;
254}
255static inline u32 pbdma_data0_r(u32 i)
256{
257 return 0x000400c4U + i*8192U;
258}
259static inline u32 pbdma_target_r(u32 i)
260{
261 return 0x000400acU + i*8192U;
262}
263static inline u32 pbdma_target_engine_sw_f(void)
264{
265 return 0x1fU;
266}
267static inline u32 pbdma_acquire_r(u32 i)
268{
269 return 0x00040030U + i*8192U;
270}
271static inline u32 pbdma_acquire_retry_man_2_f(void)
272{
273 return 0x2U;
274}
275static inline u32 pbdma_acquire_retry_exp_2_f(void)
276{
277 return 0x100U;
278}
279static inline u32 pbdma_acquire_timeout_exp_f(u32 v)
280{
281 return (v & 0xfU) << 11U;
282}
283static inline u32 pbdma_acquire_timeout_exp_max_v(void)
284{
285 return 0x0000000fU;
286}
287static inline u32 pbdma_acquire_timeout_exp_max_f(void)
288{
289 return 0x7800U;
290}
291static inline u32 pbdma_acquire_timeout_man_f(u32 v)
292{
293 return (v & 0xffffU) << 15U;
294}
295static inline u32 pbdma_acquire_timeout_man_max_v(void)
296{
297 return 0x0000ffffU;
298}
299static inline u32 pbdma_acquire_timeout_man_max_f(void)
300{
301 return 0x7fff8000U;
302}
303static inline u32 pbdma_acquire_timeout_en_enable_f(void)
304{
305 return 0x80000000U;
306}
307static inline u32 pbdma_acquire_timeout_en_disable_f(void)
308{
309 return 0x0U;
310}
311static inline u32 pbdma_status_r(u32 i)
312{
313 return 0x00040100U + i*8192U;
314}
315static inline u32 pbdma_channel_r(u32 i)
316{
317 return 0x00040120U + i*8192U;
318}
319static inline u32 pbdma_signature_r(u32 i)
320{
321 return 0x00040010U + i*8192U;
322}
323static inline u32 pbdma_signature_hw_valid_f(void)
324{
325 return 0xfaceU;
326}
327static inline u32 pbdma_signature_sw_zero_f(void)
328{
329 return 0x0U;
330}
331static inline u32 pbdma_userd_r(u32 i)
332{
333 return 0x00040008U + i*8192U;
334}
335static inline u32 pbdma_userd_target_vid_mem_f(void)
336{
337 return 0x0U;
338}
339static inline u32 pbdma_userd_target_sys_mem_coh_f(void)
340{
341 return 0x2U;
342}
343static inline u32 pbdma_userd_target_sys_mem_ncoh_f(void)
344{
345 return 0x3U;
346}
347static inline u32 pbdma_userd_addr_f(u32 v)
348{
349 return (v & 0x7fffffU) << 9U;
350}
351static inline u32 pbdma_userd_hi_r(u32 i)
352{
353 return 0x0004000cU + i*8192U;
354}
355static inline u32 pbdma_userd_hi_addr_f(u32 v)
356{
357 return (v & 0xffU) << 0U;
358}
359static inline u32 pbdma_hce_ctrl_r(u32 i)
360{
361 return 0x000400e4U + i*8192U;
362}
363static inline u32 pbdma_hce_ctrl_hce_priv_mode_yes_f(void)
364{
365 return 0x20U;
366}
367static inline u32 pbdma_intr_0_r(u32 i)
368{
369 return 0x00040108U + i*8192U;
370}
371static inline u32 pbdma_intr_0_memreq_v(u32 r)
372{
373 return (r >> 0U) & 0x1U;
374}
375static inline u32 pbdma_intr_0_memreq_pending_f(void)
376{
377 return 0x1U;
378}
379static inline u32 pbdma_intr_0_memack_timeout_pending_f(void)
380{
381 return 0x2U;
382}
383static inline u32 pbdma_intr_0_memack_extra_pending_f(void)
384{
385 return 0x4U;
386}
387static inline u32 pbdma_intr_0_memdat_timeout_pending_f(void)
388{
389 return 0x8U;
390}
391static inline u32 pbdma_intr_0_memdat_extra_pending_f(void)
392{
393 return 0x10U;
394}
395static inline u32 pbdma_intr_0_memflush_pending_f(void)
396{
397 return 0x20U;
398}
399static inline u32 pbdma_intr_0_memop_pending_f(void)
400{
401 return 0x40U;
402}
403static inline u32 pbdma_intr_0_lbconnect_pending_f(void)
404{
405 return 0x80U;
406}
407static inline u32 pbdma_intr_0_lbreq_pending_f(void)
408{
409 return 0x100U;
410}
411static inline u32 pbdma_intr_0_lback_timeout_pending_f(void)
412{
413 return 0x200U;
414}
415static inline u32 pbdma_intr_0_lback_extra_pending_f(void)
416{
417 return 0x400U;
418}
419static inline u32 pbdma_intr_0_lbdat_timeout_pending_f(void)
420{
421 return 0x800U;
422}
423static inline u32 pbdma_intr_0_lbdat_extra_pending_f(void)
424{
425 return 0x1000U;
426}
427static inline u32 pbdma_intr_0_gpfifo_pending_f(void)
428{
429 return 0x2000U;
430}
431static inline u32 pbdma_intr_0_gpptr_pending_f(void)
432{
433 return 0x4000U;
434}
435static inline u32 pbdma_intr_0_gpentry_pending_f(void)
436{
437 return 0x8000U;
438}
439static inline u32 pbdma_intr_0_gpcrc_pending_f(void)
440{
441 return 0x10000U;
442}
443static inline u32 pbdma_intr_0_pbptr_pending_f(void)
444{
445 return 0x20000U;
446}
447static inline u32 pbdma_intr_0_pbentry_pending_f(void)
448{
449 return 0x40000U;
450}
451static inline u32 pbdma_intr_0_pbcrc_pending_f(void)
452{
453 return 0x80000U;
454}
455static inline u32 pbdma_intr_0_xbarconnect_pending_f(void)
456{
457 return 0x100000U;
458}
459static inline u32 pbdma_intr_0_method_pending_f(void)
460{
461 return 0x200000U;
462}
463static inline u32 pbdma_intr_0_methodcrc_pending_f(void)
464{
465 return 0x400000U;
466}
467static inline u32 pbdma_intr_0_device_pending_f(void)
468{
469 return 0x800000U;
470}
471static inline u32 pbdma_intr_0_semaphore_pending_f(void)
472{
473 return 0x2000000U;
474}
475static inline u32 pbdma_intr_0_acquire_pending_f(void)
476{
477 return 0x4000000U;
478}
479static inline u32 pbdma_intr_0_pri_pending_f(void)
480{
481 return 0x8000000U;
482}
483static inline u32 pbdma_intr_0_no_ctxsw_seg_pending_f(void)
484{
485 return 0x20000000U;
486}
487static inline u32 pbdma_intr_0_pbseg_pending_f(void)
488{
489 return 0x40000000U;
490}
491static inline u32 pbdma_intr_0_signature_pending_f(void)
492{
493 return 0x80000000U;
494}
495static inline u32 pbdma_intr_1_r(u32 i)
496{
497 return 0x00040148U + i*8192U;
498}
499static inline u32 pbdma_intr_en_0_r(u32 i)
500{
501 return 0x0004010cU + i*8192U;
502}
503static inline u32 pbdma_intr_en_0_lbreq_enabled_f(void)
504{
505 return 0x100U;
506}
507static inline u32 pbdma_intr_en_1_r(u32 i)
508{
509 return 0x0004014cU + i*8192U;
510}
511static inline u32 pbdma_intr_stall_r(u32 i)
512{
513 return 0x0004013cU + i*8192U;
514}
515static inline u32 pbdma_intr_stall_lbreq_enabled_f(void)
516{
517 return 0x100U;
518}
519static inline u32 pbdma_intr_stall_1_r(u32 i)
520{
521 return 0x00040140U + i*8192U;
522}
523static inline u32 pbdma_intr_stall_1_hce_illegal_op_enabled_f(void)
524{
525 return 0x1U;
526}
527static inline u32 pbdma_udma_nop_r(void)
528{
529 return 0x00000008U;
530}
531static inline u32 pbdma_syncpointa_r(u32 i)
532{
533 return 0x000400a4U + i*8192U;
534}
535static inline u32 pbdma_syncpointa_payload_v(u32 r)
536{
537 return (r >> 0U) & 0xffffffffU;
538}
539static inline u32 pbdma_syncpointb_r(u32 i)
540{
541 return 0x000400a8U + i*8192U;
542}
543static inline u32 pbdma_syncpointb_op_v(u32 r)
544{
545 return (r >> 0U) & 0x3U;
546}
547static inline u32 pbdma_syncpointb_op_wait_v(void)
548{
549 return 0x00000000U;
550}
551static inline u32 pbdma_syncpointb_wait_switch_v(u32 r)
552{
553 return (r >> 4U) & 0x1U;
554}
555static inline u32 pbdma_syncpointb_wait_switch_en_v(void)
556{
557 return 0x00000001U;
558}
559static inline u32 pbdma_syncpointb_syncpt_index_v(u32 r)
560{
561 return (r >> 8U) & 0xffU;
562}
563static inline u32 pbdma_runlist_timeslice_r(u32 i)
564{
565 return 0x000400f8U + i*8192U;
566}
567static inline u32 pbdma_runlist_timeslice_timeout_128_f(void)
568{
569 return 0x80U;
570}
571static inline u32 pbdma_runlist_timeslice_timescale_3_f(void)
572{
573 return 0x3000U;
574}
575static inline u32 pbdma_runlist_timeslice_enable_true_f(void)
576{
577 return 0x10000000U;
578}
579#endif
diff --git a/include/nvgpu/hw/gm20b/hw_perf_gm20b.h b/include/nvgpu/hw/gm20b/hw_perf_gm20b.h
deleted file mode 100644
index a94ba30..0000000
--- a/include/nvgpu/hw/gm20b/hw_perf_gm20b.h
+++ /dev/null
@@ -1,219 +0,0 @@
1/*
2 * Copyright (c) 2015-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_perf_gm20b_h_
57#define _hw_perf_gm20b_h_
58
59static inline u32 perf_pmmsys_base_v(void)
60{
61 return 0x001b0000U;
62}
63static inline u32 perf_pmmsys_extent_v(void)
64{
65 return 0x001b0fffU;
66}
67static inline u32 perf_pmasys_control_r(void)
68{
69 return 0x001b4000U;
70}
71static inline u32 perf_pmasys_control_membuf_status_v(u32 r)
72{
73 return (r >> 4U) & 0x1U;
74}
75static inline u32 perf_pmasys_control_membuf_status_overflowed_v(void)
76{
77 return 0x00000001U;
78}
79static inline u32 perf_pmasys_control_membuf_status_overflowed_f(void)
80{
81 return 0x10U;
82}
83static inline u32 perf_pmasys_control_membuf_clear_status_f(u32 v)
84{
85 return (v & 0x1U) << 5U;
86}
87static inline u32 perf_pmasys_control_membuf_clear_status_v(u32 r)
88{
89 return (r >> 5U) & 0x1U;
90}
91static inline u32 perf_pmasys_control_membuf_clear_status_doit_v(void)
92{
93 return 0x00000001U;
94}
95static inline u32 perf_pmasys_control_membuf_clear_status_doit_f(void)
96{
97 return 0x20U;
98}
99static inline u32 perf_pmasys_mem_block_r(void)
100{
101 return 0x001b4070U;
102}
103static inline u32 perf_pmasys_mem_block_base_f(u32 v)
104{
105 return (v & 0xfffffffU) << 0U;
106}
107static inline u32 perf_pmasys_mem_block_target_f(u32 v)
108{
109 return (v & 0x3U) << 28U;
110}
111static inline u32 perf_pmasys_mem_block_target_v(u32 r)
112{
113 return (r >> 28U) & 0x3U;
114}
115static inline u32 perf_pmasys_mem_block_target_lfb_v(void)
116{
117 return 0x00000000U;
118}
119static inline u32 perf_pmasys_mem_block_target_lfb_f(void)
120{
121 return 0x0U;
122}
123static inline u32 perf_pmasys_mem_block_target_sys_coh_v(void)
124{
125 return 0x00000002U;
126}
127static inline u32 perf_pmasys_mem_block_target_sys_coh_f(void)
128{
129 return 0x20000000U;
130}
131static inline u32 perf_pmasys_mem_block_target_sys_ncoh_v(void)
132{
133 return 0x00000003U;
134}
135static inline u32 perf_pmasys_mem_block_target_sys_ncoh_f(void)
136{
137 return 0x30000000U;
138}
139static inline u32 perf_pmasys_mem_block_valid_f(u32 v)
140{
141 return (v & 0x1U) << 31U;
142}
143static inline u32 perf_pmasys_mem_block_valid_v(u32 r)
144{
145 return (r >> 31U) & 0x1U;
146}
147static inline u32 perf_pmasys_mem_block_valid_true_v(void)
148{
149 return 0x00000001U;
150}
151static inline u32 perf_pmasys_mem_block_valid_true_f(void)
152{
153 return 0x80000000U;
154}
155static inline u32 perf_pmasys_mem_block_valid_false_v(void)
156{
157 return 0x00000000U;
158}
159static inline u32 perf_pmasys_mem_block_valid_false_f(void)
160{
161 return 0x0U;
162}
163static inline u32 perf_pmasys_outbase_r(void)
164{
165 return 0x001b4074U;
166}
167static inline u32 perf_pmasys_outbase_ptr_f(u32 v)
168{
169 return (v & 0x7ffffffU) << 5U;
170}
171static inline u32 perf_pmasys_outbaseupper_r(void)
172{
173 return 0x001b4078U;
174}
175static inline u32 perf_pmasys_outbaseupper_ptr_f(u32 v)
176{
177 return (v & 0xffU) << 0U;
178}
179static inline u32 perf_pmasys_outsize_r(void)
180{
181 return 0x001b407cU;
182}
183static inline u32 perf_pmasys_outsize_numbytes_f(u32 v)
184{
185 return (v & 0x7ffffffU) << 5U;
186}
187static inline u32 perf_pmasys_mem_bytes_r(void)
188{
189 return 0x001b4084U;
190}
191static inline u32 perf_pmasys_mem_bytes_numbytes_f(u32 v)
192{
193 return (v & 0xfffffffU) << 4U;
194}
195static inline u32 perf_pmasys_mem_bump_r(void)
196{
197 return 0x001b4088U;
198}
199static inline u32 perf_pmasys_mem_bump_numbytes_f(u32 v)
200{
201 return (v & 0xfffffffU) << 4U;
202}
203static inline u32 perf_pmasys_enginestatus_r(void)
204{
205 return 0x001b40a4U;
206}
207static inline u32 perf_pmasys_enginestatus_rbufempty_f(u32 v)
208{
209 return (v & 0x1U) << 4U;
210}
211static inline u32 perf_pmasys_enginestatus_rbufempty_empty_v(void)
212{
213 return 0x00000001U;
214}
215static inline u32 perf_pmasys_enginestatus_rbufempty_empty_f(void)
216{
217 return 0x10U;
218}
219#endif
diff --git a/include/nvgpu/hw/gm20b/hw_pram_gm20b.h b/include/nvgpu/hw/gm20b/hw_pram_gm20b.h
deleted file mode 100644
index 47a6bfa..0000000
--- a/include/nvgpu/hw/gm20b/hw_pram_gm20b.h
+++ /dev/null
@@ -1,63 +0,0 @@
1/*
2 * Copyright (c) 2016-2017, 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_pram_gm20b_h_
57#define _hw_pram_gm20b_h_
58
59static inline u32 pram_data032_r(u32 i)
60{
61 return 0x00700000U + i*4U;
62}
63#endif
diff --git a/include/nvgpu/hw/gm20b/hw_pri_ringmaster_gm20b.h b/include/nvgpu/hw/gm20b/hw_pri_ringmaster_gm20b.h
deleted file mode 100644
index c6f08ed..0000000
--- a/include/nvgpu/hw/gm20b/hw_pri_ringmaster_gm20b.h
+++ /dev/null
@@ -1,167 +0,0 @@
1/*
2 * Copyright (c) 2014-2017, 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_pri_ringmaster_gm20b_h_
57#define _hw_pri_ringmaster_gm20b_h_
58
59static inline u32 pri_ringmaster_command_r(void)
60{
61 return 0x0012004cU;
62}
63static inline u32 pri_ringmaster_command_cmd_m(void)
64{
65 return 0x3fU << 0U;
66}
67static inline u32 pri_ringmaster_command_cmd_v(u32 r)
68{
69 return (r >> 0U) & 0x3fU;
70}
71static inline u32 pri_ringmaster_command_cmd_no_cmd_v(void)
72{
73 return 0x00000000U;
74}
75static inline u32 pri_ringmaster_command_cmd_start_ring_f(void)
76{
77 return 0x1U;
78}
79static inline u32 pri_ringmaster_command_cmd_ack_interrupt_f(void)
80{
81 return 0x2U;
82}
83static inline u32 pri_ringmaster_command_cmd_enumerate_stations_f(void)
84{
85 return 0x3U;
86}
87static inline u32 pri_ringmaster_command_cmd_enumerate_stations_bc_grp_all_f(void)
88{
89 return 0x0U;
90}
91static inline u32 pri_ringmaster_command_data_r(void)
92{
93 return 0x00120048U;
94}
95static inline u32 pri_ringmaster_start_results_r(void)
96{
97 return 0x00120050U;
98}
99static inline u32 pri_ringmaster_start_results_connectivity_v(u32 r)
100{
101 return (r >> 0U) & 0x1U;
102}
103static inline u32 pri_ringmaster_start_results_connectivity_pass_v(void)
104{
105 return 0x00000001U;
106}
107static inline u32 pri_ringmaster_intr_status0_r(void)
108{
109 return 0x00120058U;
110}
111static inline u32 pri_ringmaster_intr_status0_ring_start_conn_fault_v(u32 r)
112{
113 return (r >> 0U) & 0x1U;
114}
115static inline u32 pri_ringmaster_intr_status0_disconnect_fault_v(u32 r)
116{
117 return (r >> 1U) & 0x1U;
118}
119static inline u32 pri_ringmaster_intr_status0_overflow_fault_v(u32 r)
120{
121 return (r >> 2U) & 0x1U;
122}
123static inline u32 pri_ringmaster_intr_status0_gbl_write_error_sys_v(u32 r)
124{
125 return (r >> 8U) & 0x1U;
126}
127static inline u32 pri_ringmaster_intr_status1_r(void)
128{
129 return 0x0012005cU;
130}
131static inline u32 pri_ringmaster_global_ctl_r(void)
132{
133 return 0x00120060U;
134}
135static inline u32 pri_ringmaster_global_ctl_ring_reset_asserted_f(void)
136{
137 return 0x1U;
138}
139static inline u32 pri_ringmaster_global_ctl_ring_reset_deasserted_f(void)
140{
141 return 0x0U;
142}
143static inline u32 pri_ringmaster_enum_fbp_r(void)
144{
145 return 0x00120074U;
146}
147static inline u32 pri_ringmaster_enum_fbp_count_v(u32 r)
148{
149 return (r >> 0U) & 0x1fU;
150}
151static inline u32 pri_ringmaster_enum_gpc_r(void)
152{
153 return 0x00120078U;
154}
155static inline u32 pri_ringmaster_enum_gpc_count_v(u32 r)
156{
157 return (r >> 0U) & 0x1fU;
158}
159static inline u32 pri_ringmaster_enum_ltc_r(void)
160{
161 return 0x0012006cU;
162}
163static inline u32 pri_ringmaster_enum_ltc_count_v(u32 r)
164{
165 return (r >> 0U) & 0x1fU;
166}
167#endif
diff --git a/include/nvgpu/hw/gm20b/hw_pri_ringstation_gpc_gm20b.h b/include/nvgpu/hw/gm20b/hw_pri_ringstation_gpc_gm20b.h
deleted file mode 100644
index 8d1ffb2..0000000
--- a/include/nvgpu/hw/gm20b/hw_pri_ringstation_gpc_gm20b.h
+++ /dev/null
@@ -1,79 +0,0 @@
1/*
2 * Copyright (c) 2017, 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_pri_ringstation_gpc_gm20b_h_
57#define _hw_pri_ringstation_gpc_gm20b_h_
58
59static inline u32 pri_ringstation_gpc_master_config_r(u32 i)
60{
61 return 0x00128300U + i*4U;
62}
63static inline u32 pri_ringstation_gpc_gpc0_priv_error_adr_r(void)
64{
65 return 0x00128120U;
66}
67static inline u32 pri_ringstation_gpc_gpc0_priv_error_wrdat_r(void)
68{
69 return 0x00128124U;
70}
71static inline u32 pri_ringstation_gpc_gpc0_priv_error_info_r(void)
72{
73 return 0x00128128U;
74}
75static inline u32 pri_ringstation_gpc_gpc0_priv_error_code_r(void)
76{
77 return 0x0012812cU;
78}
79#endif
diff --git a/include/nvgpu/hw/gm20b/hw_pri_ringstation_sys_gm20b.h b/include/nvgpu/hw/gm20b/hw_pri_ringstation_sys_gm20b.h
deleted file mode 100644
index ac1d245..0000000
--- a/include/nvgpu/hw/gm20b/hw_pri_ringstation_sys_gm20b.h
+++ /dev/null
@@ -1,91 +0,0 @@
1/*
2 * Copyright (c) 2014-2017, 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_pri_ringstation_sys_gm20b_h_
57#define _hw_pri_ringstation_sys_gm20b_h_
58
59static inline u32 pri_ringstation_sys_master_config_r(u32 i)
60{
61 return 0x00122300U + i*4U;
62}
63static inline u32 pri_ringstation_sys_decode_config_r(void)
64{
65 return 0x00122204U;
66}
67static inline u32 pri_ringstation_sys_decode_config_ring_m(void)
68{
69 return 0x7U << 0U;
70}
71static inline u32 pri_ringstation_sys_decode_config_ring_drop_on_ring_not_started_f(void)
72{
73 return 0x1U;
74}
75static inline u32 pri_ringstation_sys_priv_error_adr_r(void)
76{
77 return 0x00122120U;
78}
79static inline u32 pri_ringstation_sys_priv_error_wrdat_r(void)
80{
81 return 0x00122124U;
82}
83static inline u32 pri_ringstation_sys_priv_error_info_r(void)
84{
85 return 0x00122128U;
86}
87static inline u32 pri_ringstation_sys_priv_error_code_r(void)
88{
89 return 0x0012212cU;
90}
91#endif
diff --git a/include/nvgpu/hw/gm20b/hw_proj_gm20b.h b/include/nvgpu/hw/gm20b/hw_proj_gm20b.h
deleted file mode 100644
index 8129ea6..0000000
--- a/include/nvgpu/hw/gm20b/hw_proj_gm20b.h
+++ /dev/null
@@ -1,171 +0,0 @@
1/*
2 * Copyright (c) 2014-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_proj_gm20b_h_
57#define _hw_proj_gm20b_h_
58
59static inline u32 proj_gpc_base_v(void)
60{
61 return 0x00500000U;
62}
63static inline u32 proj_gpc_shared_base_v(void)
64{
65 return 0x00418000U;
66}
67static inline u32 proj_gpc_stride_v(void)
68{
69 return 0x00008000U;
70}
71static inline u32 proj_gpc_priv_stride_v(void)
72{
73 return 0x00000800U;
74}
75static inline u32 proj_ltc_stride_v(void)
76{
77 return 0x00002000U;
78}
79static inline u32 proj_lts_stride_v(void)
80{
81 return 0x00000200U;
82}
83static inline u32 proj_fbpa_stride_v(void)
84{
85 return 0x00001000U;
86}
87static inline u32 proj_ppc_in_gpc_base_v(void)
88{
89 return 0x00003000U;
90}
91static inline u32 proj_ppc_in_gpc_shared_base_v(void)
92{
93 return 0x00003e00U;
94}
95static inline u32 proj_ppc_in_gpc_stride_v(void)
96{
97 return 0x00000200U;
98}
99static inline u32 proj_rop_base_v(void)
100{
101 return 0x00410000U;
102}
103static inline u32 proj_rop_shared_base_v(void)
104{
105 return 0x00408800U;
106}
107static inline u32 proj_rop_stride_v(void)
108{
109 return 0x00000400U;
110}
111static inline u32 proj_tpc_in_gpc_base_v(void)
112{
113 return 0x00004000U;
114}
115static inline u32 proj_tpc_in_gpc_stride_v(void)
116{
117 return 0x00000800U;
118}
119static inline u32 proj_tpc_in_gpc_shared_base_v(void)
120{
121 return 0x00001800U;
122}
123static inline u32 proj_host_num_engines_v(void)
124{
125 return 0x00000002U;
126}
127static inline u32 proj_host_num_pbdma_v(void)
128{
129 return 0x00000001U;
130}
131static inline u32 proj_scal_litter_num_tpc_per_gpc_v(void)
132{
133 return 0x00000002U;
134}
135static inline u32 proj_scal_litter_num_sm_per_tpc_v(void)
136{
137 return 0x00000001U;
138}
139static inline u32 proj_scal_litter_num_fbps_v(void)
140{
141 return 0x00000001U;
142}
143static inline u32 proj_scal_litter_num_fbpas_v(void)
144{
145 return 0x00000001U;
146}
147static inline u32 proj_scal_litter_num_gpcs_v(void)
148{
149 return 0x00000001U;
150}
151static inline u32 proj_scal_litter_num_pes_per_gpc_v(void)
152{
153 return 0x00000001U;
154}
155static inline u32 proj_scal_litter_num_tpcs_per_pes_v(void)
156{
157 return 0x00000002U;
158}
159static inline u32 proj_scal_litter_num_zcull_banks_v(void)
160{
161 return 0x00000004U;
162}
163static inline u32 proj_scal_max_gpcs_v(void)
164{
165 return 0x00000020U;
166}
167static inline u32 proj_scal_max_tpc_per_gpc_v(void)
168{
169 return 0x00000008U;
170}
171#endif
diff --git a/include/nvgpu/hw/gm20b/hw_pwr_gm20b.h b/include/nvgpu/hw/gm20b/hw_pwr_gm20b.h
deleted file mode 100644
index a7c409d..0000000
--- a/include/nvgpu/hw/gm20b/hw_pwr_gm20b.h
+++ /dev/null
@@ -1,879 +0,0 @@
1/*
2 * Copyright (c) 2014-2020, 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_pwr_gm20b_h_
57#define _hw_pwr_gm20b_h_
58
59static inline u32 pwr_falcon_irqsset_r(void)
60{
61 return 0x0010a000U;
62}
63static inline u32 pwr_falcon_irqsset_swgen0_set_f(void)
64{
65 return 0x40U;
66}
67static inline u32 pwr_falcon_irqsclr_r(void)
68{
69 return 0x0010a004U;
70}
71static inline u32 pwr_falcon_irqstat_r(void)
72{
73 return 0x0010a008U;
74}
75static inline u32 pwr_falcon_irqstat_halt_true_f(void)
76{
77 return 0x10U;
78}
79static inline u32 pwr_falcon_irqstat_exterr_true_f(void)
80{
81 return 0x20U;
82}
83static inline u32 pwr_falcon_irqstat_swgen0_true_f(void)
84{
85 return 0x40U;
86}
87static inline u32 pwr_falcon_irqmode_r(void)
88{
89 return 0x0010a00cU;
90}
91static inline u32 pwr_falcon_irqmset_r(void)
92{
93 return 0x0010a010U;
94}
95static inline u32 pwr_falcon_irqmset_gptmr_f(u32 v)
96{
97 return (v & 0x1U) << 0U;
98}
99static inline u32 pwr_falcon_irqmset_wdtmr_f(u32 v)
100{
101 return (v & 0x1U) << 1U;
102}
103static inline u32 pwr_falcon_irqmset_mthd_f(u32 v)
104{
105 return (v & 0x1U) << 2U;
106}
107static inline u32 pwr_falcon_irqmset_ctxsw_f(u32 v)
108{
109 return (v & 0x1U) << 3U;
110}
111static inline u32 pwr_falcon_irqmset_halt_f(u32 v)
112{
113 return (v & 0x1U) << 4U;
114}
115static inline u32 pwr_falcon_irqmset_exterr_f(u32 v)
116{
117 return (v & 0x1U) << 5U;
118}
119static inline u32 pwr_falcon_irqmset_swgen0_f(u32 v)
120{
121 return (v & 0x1U) << 6U;
122}
123static inline u32 pwr_falcon_irqmset_swgen1_f(u32 v)
124{
125 return (v & 0x1U) << 7U;
126}
127static inline u32 pwr_falcon_irqmclr_r(void)
128{
129 return 0x0010a014U;
130}
131static inline u32 pwr_falcon_irqmclr_gptmr_f(u32 v)
132{
133 return (v & 0x1U) << 0U;
134}
135static inline u32 pwr_falcon_irqmclr_wdtmr_f(u32 v)
136{
137 return (v & 0x1U) << 1U;
138}
139static inline u32 pwr_falcon_irqmclr_mthd_f(u32 v)
140{
141 return (v & 0x1U) << 2U;
142}
143static inline u32 pwr_falcon_irqmclr_ctxsw_f(u32 v)
144{
145 return (v & 0x1U) << 3U;
146}
147static inline u32 pwr_falcon_irqmclr_halt_f(u32 v)
148{
149 return (v & 0x1U) << 4U;
150}
151static inline u32 pwr_falcon_irqmclr_exterr_f(u32 v)
152{
153 return (v & 0x1U) << 5U;
154}
155static inline u32 pwr_falcon_irqmclr_swgen0_f(u32 v)
156{
157 return (v & 0x1U) << 6U;
158}
159static inline u32 pwr_falcon_irqmclr_swgen1_f(u32 v)
160{
161 return (v & 0x1U) << 7U;
162}
163static inline u32 pwr_falcon_irqmclr_ext_f(u32 v)
164{
165 return (v & 0xffU) << 8U;
166}
167static inline u32 pwr_falcon_irqmask_r(void)
168{
169 return 0x0010a018U;
170}
171static inline u32 pwr_falcon_irqdest_r(void)
172{
173 return 0x0010a01cU;
174}
175static inline u32 pwr_falcon_irqdest_host_gptmr_f(u32 v)
176{
177 return (v & 0x1U) << 0U;
178}
179static inline u32 pwr_falcon_irqdest_host_wdtmr_f(u32 v)
180{
181 return (v & 0x1U) << 1U;
182}
183static inline u32 pwr_falcon_irqdest_host_mthd_f(u32 v)
184{
185 return (v & 0x1U) << 2U;
186}
187static inline u32 pwr_falcon_irqdest_host_ctxsw_f(u32 v)
188{
189 return (v & 0x1U) << 3U;
190}
191static inline u32 pwr_falcon_irqdest_host_halt_f(u32 v)
192{
193 return (v & 0x1U) << 4U;
194}
195static inline u32 pwr_falcon_irqdest_host_exterr_f(u32 v)
196{
197 return (v & 0x1U) << 5U;
198}
199static inline u32 pwr_falcon_irqdest_host_swgen0_f(u32 v)
200{
201 return (v & 0x1U) << 6U;
202}
203static inline u32 pwr_falcon_irqdest_host_swgen1_f(u32 v)
204{
205 return (v & 0x1U) << 7U;
206}
207static inline u32 pwr_falcon_irqdest_host_ext_f(u32 v)
208{
209 return (v & 0xffU) << 8U;
210}
211static inline u32 pwr_falcon_irqdest_target_gptmr_f(u32 v)
212{
213 return (v & 0x1U) << 16U;
214}
215static inline u32 pwr_falcon_irqdest_target_wdtmr_f(u32 v)
216{
217 return (v & 0x1U) << 17U;
218}
219static inline u32 pwr_falcon_irqdest_target_mthd_f(u32 v)
220{
221 return (v & 0x1U) << 18U;
222}
223static inline u32 pwr_falcon_irqdest_target_ctxsw_f(u32 v)
224{
225 return (v & 0x1U) << 19U;
226}
227static inline u32 pwr_falcon_irqdest_target_halt_f(u32 v)
228{
229 return (v & 0x1U) << 20U;
230}
231static inline u32 pwr_falcon_irqdest_target_exterr_f(u32 v)
232{
233 return (v & 0x1U) << 21U;
234}
235static inline u32 pwr_falcon_irqdest_target_swgen0_f(u32 v)
236{
237 return (v & 0x1U) << 22U;
238}
239static inline u32 pwr_falcon_irqdest_target_swgen1_f(u32 v)
240{
241 return (v & 0x1U) << 23U;
242}
243static inline u32 pwr_falcon_irqdest_target_ext_f(u32 v)
244{
245 return (v & 0xffU) << 24U;
246}
247static inline u32 pwr_falcon_curctx_r(void)
248{
249 return 0x0010a050U;
250}
251static inline u32 pwr_falcon_nxtctx_r(void)
252{
253 return 0x0010a054U;
254}
255static inline u32 pwr_falcon_mailbox0_r(void)
256{
257 return 0x0010a040U;
258}
259static inline u32 pwr_falcon_mailbox1_r(void)
260{
261 return 0x0010a044U;
262}
263static inline u32 pwr_falcon_itfen_r(void)
264{
265 return 0x0010a048U;
266}
267static inline u32 pwr_falcon_itfen_ctxen_enable_f(void)
268{
269 return 0x1U;
270}
271static inline u32 pwr_falcon_idlestate_r(void)
272{
273 return 0x0010a04cU;
274}
275static inline u32 pwr_falcon_idlestate_falcon_busy_v(u32 r)
276{
277 return (r >> 0U) & 0x1U;
278}
279static inline u32 pwr_falcon_idlestate_ext_busy_v(u32 r)
280{
281 return (r >> 1U) & 0x7fffU;
282}
283static inline u32 pwr_falcon_os_r(void)
284{
285 return 0x0010a080U;
286}
287static inline u32 pwr_falcon_engctl_r(void)
288{
289 return 0x0010a0a4U;
290}
291static inline u32 pwr_falcon_cpuctl_r(void)
292{
293 return 0x0010a100U;
294}
295static inline u32 pwr_falcon_cpuctl_startcpu_f(u32 v)
296{
297 return (v & 0x1U) << 1U;
298}
299static inline u32 pwr_falcon_cpuctl_halt_intr_f(u32 v)
300{
301 return (v & 0x1U) << 4U;
302}
303static inline u32 pwr_falcon_cpuctl_halt_intr_m(void)
304{
305 return 0x1U << 4U;
306}
307static inline u32 pwr_falcon_cpuctl_halt_intr_v(u32 r)
308{
309 return (r >> 4U) & 0x1U;
310}
311static inline u32 pwr_falcon_cpuctl_cpuctl_alias_en_f(u32 v)
312{
313 return (v & 0x1U) << 6U;
314}
315static inline u32 pwr_falcon_cpuctl_cpuctl_alias_en_m(void)
316{
317 return 0x1U << 6U;
318}
319static inline u32 pwr_falcon_cpuctl_cpuctl_alias_en_v(u32 r)
320{
321 return (r >> 6U) & 0x1U;
322}
323static inline u32 pwr_falcon_cpuctl_alias_r(void)
324{
325 return 0x0010a130U;
326}
327static inline u32 pwr_falcon_cpuctl_alias_startcpu_f(u32 v)
328{
329 return (v & 0x1U) << 1U;
330}
331static inline u32 pwr_pmu_scpctl_stat_r(void)
332{
333 return 0x0010ac08U;
334}
335static inline u32 pwr_pmu_scpctl_stat_debug_mode_f(u32 v)
336{
337 return (v & 0x1U) << 20U;
338}
339static inline u32 pwr_pmu_scpctl_stat_debug_mode_m(void)
340{
341 return 0x1U << 20U;
342}
343static inline u32 pwr_pmu_scpctl_stat_debug_mode_v(u32 r)
344{
345 return (r >> 20U) & 0x1U;
346}
347static inline u32 pwr_falcon_imemc_r(u32 i)
348{
349 return 0x0010a180U + i*16U;
350}
351static inline u32 pwr_falcon_imemc_offs_f(u32 v)
352{
353 return (v & 0x3fU) << 2U;
354}
355static inline u32 pwr_falcon_imemc_blk_f(u32 v)
356{
357 return (v & 0xffU) << 8U;
358}
359static inline u32 pwr_falcon_imemc_aincw_f(u32 v)
360{
361 return (v & 0x1U) << 24U;
362}
363static inline u32 pwr_falcon_imemd_r(u32 i)
364{
365 return 0x0010a184U + i*16U;
366}
367static inline u32 pwr_falcon_imemt_r(u32 i)
368{
369 return 0x0010a188U + i*16U;
370}
371static inline u32 pwr_falcon_sctl_r(void)
372{
373 return 0x0010a240U;
374}
375static inline u32 pwr_falcon_mmu_phys_sec_r(void)
376{
377 return 0x00100ce4U;
378}
379static inline u32 pwr_falcon_bootvec_r(void)
380{
381 return 0x0010a104U;
382}
383static inline u32 pwr_falcon_bootvec_vec_f(u32 v)
384{
385 return (v & 0xffffffffU) << 0U;
386}
387static inline u32 pwr_falcon_dmactl_r(void)
388{
389 return 0x0010a10cU;
390}
391static inline u32 pwr_falcon_dmactl_dmem_scrubbing_m(void)
392{
393 return 0x1U << 1U;
394}
395static inline u32 pwr_falcon_dmactl_imem_scrubbing_m(void)
396{
397 return 0x1U << 2U;
398}
399static inline u32 pwr_falcon_hwcfg_r(void)
400{
401 return 0x0010a108U;
402}
403static inline u32 pwr_falcon_hwcfg_imem_size_v(u32 r)
404{
405 return (r >> 0U) & 0x1ffU;
406}
407static inline u32 pwr_falcon_hwcfg_dmem_size_v(u32 r)
408{
409 return (r >> 9U) & 0x1ffU;
410}
411static inline u32 pwr_falcon_dmatrfbase_r(void)
412{
413 return 0x0010a110U;
414}
415static inline u32 pwr_falcon_dmatrfmoffs_r(void)
416{
417 return 0x0010a114U;
418}
419static inline u32 pwr_falcon_dmatrfcmd_r(void)
420{
421 return 0x0010a118U;
422}
423static inline u32 pwr_falcon_dmatrfcmd_imem_f(u32 v)
424{
425 return (v & 0x1U) << 4U;
426}
427static inline u32 pwr_falcon_dmatrfcmd_write_f(u32 v)
428{
429 return (v & 0x1U) << 5U;
430}
431static inline u32 pwr_falcon_dmatrfcmd_size_f(u32 v)
432{
433 return (v & 0x7U) << 8U;
434}
435static inline u32 pwr_falcon_dmatrfcmd_ctxdma_f(u32 v)
436{
437 return (v & 0x7U) << 12U;
438}
439static inline u32 pwr_falcon_dmatrffboffs_r(void)
440{
441 return 0x0010a11cU;
442}
443static inline u32 pwr_falcon_exterraddr_r(void)
444{
445 return 0x0010a168U;
446}
447static inline u32 pwr_falcon_exterrstat_r(void)
448{
449 return 0x0010a16cU;
450}
451static inline u32 pwr_falcon_exterrstat_valid_m(void)
452{
453 return 0x1U << 31U;
454}
455static inline u32 pwr_falcon_exterrstat_valid_v(u32 r)
456{
457 return (r >> 31U) & 0x1U;
458}
459static inline u32 pwr_falcon_exterrstat_valid_true_v(void)
460{
461 return 0x00000001U;
462}
463static inline u32 pwr_pmu_falcon_icd_cmd_r(void)
464{
465 return 0x0010a200U;
466}
467static inline u32 pwr_pmu_falcon_icd_cmd_opc_s(void)
468{
469 return 4U;
470}
471static inline u32 pwr_pmu_falcon_icd_cmd_opc_f(u32 v)
472{
473 return (v & 0xfU) << 0U;
474}
475static inline u32 pwr_pmu_falcon_icd_cmd_opc_m(void)
476{
477 return 0xfU << 0U;
478}
479static inline u32 pwr_pmu_falcon_icd_cmd_opc_v(u32 r)
480{
481 return (r >> 0U) & 0xfU;
482}
483static inline u32 pwr_pmu_falcon_icd_cmd_opc_rreg_f(void)
484{
485 return 0x8U;
486}
487static inline u32 pwr_pmu_falcon_icd_cmd_opc_rstat_f(void)
488{
489 return 0xeU;
490}
491static inline u32 pwr_pmu_falcon_icd_cmd_idx_f(u32 v)
492{
493 return (v & 0x1fU) << 8U;
494}
495static inline u32 pwr_pmu_falcon_icd_rdata_r(void)
496{
497 return 0x0010a20cU;
498}
499static inline u32 pwr_falcon_dmemc_r(u32 i)
500{
501 return 0x0010a1c0U + i*8U;
502}
503static inline u32 pwr_falcon_dmemc_offs_f(u32 v)
504{
505 return (v & 0x3fU) << 2U;
506}
507static inline u32 pwr_falcon_dmemc_offs_m(void)
508{
509 return 0x3fU << 2U;
510}
511static inline u32 pwr_falcon_dmemc_blk_f(u32 v)
512{
513 return (v & 0xffU) << 8U;
514}
515static inline u32 pwr_falcon_dmemc_blk_m(void)
516{
517 return 0xffU << 8U;
518}
519static inline u32 pwr_falcon_dmemc_aincw_f(u32 v)
520{
521 return (v & 0x1U) << 24U;
522}
523static inline u32 pwr_falcon_dmemc_aincr_f(u32 v)
524{
525 return (v & 0x1U) << 25U;
526}
527static inline u32 pwr_falcon_dmemd_r(u32 i)
528{
529 return 0x0010a1c4U + i*8U;
530}
531static inline u32 pwr_pmu_new_instblk_r(void)
532{
533 return 0x0010a480U;
534}
535static inline u32 pwr_pmu_new_instblk_ptr_f(u32 v)
536{
537 return (v & 0xfffffffU) << 0U;
538}
539static inline u32 pwr_pmu_new_instblk_target_fb_f(void)
540{
541 return 0x0U;
542}
543static inline u32 pwr_pmu_new_instblk_target_sys_coh_f(void)
544{
545 return 0x20000000U;
546}
547static inline u32 pwr_pmu_new_instblk_target_sys_ncoh_f(void)
548{
549 return 0x30000000U;
550}
551static inline u32 pwr_pmu_new_instblk_valid_f(u32 v)
552{
553 return (v & 0x1U) << 30U;
554}
555static inline u32 pwr_pmu_mutex_id_r(void)
556{
557 return 0x0010a488U;
558}
559static inline u32 pwr_pmu_mutex_id_value_v(u32 r)
560{
561 return (r >> 0U) & 0xffU;
562}
563static inline u32 pwr_pmu_mutex_id_value_init_v(void)
564{
565 return 0x00000000U;
566}
567static inline u32 pwr_pmu_mutex_id_value_not_avail_v(void)
568{
569 return 0x000000ffU;
570}
571static inline u32 pwr_pmu_mutex_id_release_r(void)
572{
573 return 0x0010a48cU;
574}
575static inline u32 pwr_pmu_mutex_id_release_value_f(u32 v)
576{
577 return (v & 0xffU) << 0U;
578}
579static inline u32 pwr_pmu_mutex_id_release_value_m(void)
580{
581 return 0xffU << 0U;
582}
583static inline u32 pwr_pmu_mutex_id_release_value_init_v(void)
584{
585 return 0x00000000U;
586}
587static inline u32 pwr_pmu_mutex_id_release_value_init_f(void)
588{
589 return 0x0U;
590}
591static inline u32 pwr_pmu_mutex_r(u32 i)
592{
593 return 0x0010a580U + i*4U;
594}
595static inline u32 pwr_pmu_mutex__size_1_v(void)
596{
597 return 0x00000010U;
598}
599static inline u32 pwr_pmu_mutex_value_f(u32 v)
600{
601 return (v & 0xffU) << 0U;
602}
603static inline u32 pwr_pmu_mutex_value_v(u32 r)
604{
605 return (r >> 0U) & 0xffU;
606}
607static inline u32 pwr_pmu_mutex_value_initial_lock_f(void)
608{
609 return 0x0U;
610}
611static inline u32 pwr_pmu_queue_head_r(u32 i)
612{
613 return 0x0010a4a0U + i*4U;
614}
615static inline u32 pwr_pmu_queue_head__size_1_v(void)
616{
617 return 0x00000004U;
618}
619static inline u32 pwr_pmu_queue_head_address_f(u32 v)
620{
621 return (v & 0xffffffffU) << 0U;
622}
623static inline u32 pwr_pmu_queue_head_address_v(u32 r)
624{
625 return (r >> 0U) & 0xffffffffU;
626}
627static inline u32 pwr_pmu_queue_tail_r(u32 i)
628{
629 return 0x0010a4b0U + i*4U;
630}
631static inline u32 pwr_pmu_queue_tail__size_1_v(void)
632{
633 return 0x00000004U;
634}
635static inline u32 pwr_pmu_queue_tail_address_f(u32 v)
636{
637 return (v & 0xffffffffU) << 0U;
638}
639static inline u32 pwr_pmu_queue_tail_address_v(u32 r)
640{
641 return (r >> 0U) & 0xffffffffU;
642}
643static inline u32 pwr_pmu_msgq_head_r(void)
644{
645 return 0x0010a4c8U;
646}
647static inline u32 pwr_pmu_msgq_head_val_f(u32 v)
648{
649 return (v & 0xffffffffU) << 0U;
650}
651static inline u32 pwr_pmu_msgq_head_val_v(u32 r)
652{
653 return (r >> 0U) & 0xffffffffU;
654}
655static inline u32 pwr_pmu_msgq_tail_r(void)
656{
657 return 0x0010a4ccU;
658}
659static inline u32 pwr_pmu_msgq_tail_val_f(u32 v)
660{
661 return (v & 0xffffffffU) << 0U;
662}
663static inline u32 pwr_pmu_msgq_tail_val_v(u32 r)
664{
665 return (r >> 0U) & 0xffffffffU;
666}
667static inline u32 pwr_pmu_idle_mask_r(u32 i)
668{
669 return 0x0010a504U + i*16U;
670}
671static inline u32 pwr_pmu_idle_mask_gr_enabled_f(void)
672{
673 return 0x1U;
674}
675static inline u32 pwr_pmu_idle_mask_ce_2_enabled_f(void)
676{
677 return 0x200000U;
678}
679static inline u32 pwr_pmu_idle_mask_1_r(u32 i)
680{
681 return 0x0010aa34U + i*8U;
682}
683static inline u32 pwr_pmu_idle_count_r(u32 i)
684{
685 return 0x0010a508U + i*16U;
686}
687static inline u32 pwr_pmu_idle_count_value_f(u32 v)
688{
689 return (v & 0x7fffffffU) << 0U;
690}
691static inline u32 pwr_pmu_idle_count_value_v(u32 r)
692{
693 return (r >> 0U) & 0x7fffffffU;
694}
695static inline u32 pwr_pmu_idle_count_reset_f(u32 v)
696{
697 return (v & 0x1U) << 31U;
698}
699static inline u32 pwr_pmu_idle_ctrl_r(u32 i)
700{
701 return 0x0010a50cU + i*16U;
702}
703static inline u32 pwr_pmu_idle_ctrl_value_m(void)
704{
705 return 0x3U << 0U;
706}
707static inline u32 pwr_pmu_idle_ctrl_value_busy_f(void)
708{
709 return 0x2U;
710}
711static inline u32 pwr_pmu_idle_ctrl_value_always_f(void)
712{
713 return 0x3U;
714}
715static inline u32 pwr_pmu_idle_ctrl_filter_m(void)
716{
717 return 0x1U << 2U;
718}
719static inline u32 pwr_pmu_idle_ctrl_filter_disabled_f(void)
720{
721 return 0x0U;
722}
723static inline u32 pwr_pmu_idle_threshold_r(u32 i)
724{
725 return 0x0010a8a0U + i*4U;
726}
727static inline u32 pwr_pmu_idle_threshold_value_f(u32 v)
728{
729 return (v & 0x7fffffffU) << 0U;
730}
731static inline u32 pwr_pmu_idle_intr_r(void)
732{
733 return 0x0010a9e8U;
734}
735static inline u32 pwr_pmu_idle_intr_en_f(u32 v)
736{
737 return (v & 0x1U) << 0U;
738}
739static inline u32 pwr_pmu_idle_intr_en_disabled_v(void)
740{
741 return 0x00000000U;
742}
743static inline u32 pwr_pmu_idle_intr_en_enabled_v(void)
744{
745 return 0x00000001U;
746}
747static inline u32 pwr_pmu_idle_intr_status_r(void)
748{
749 return 0x0010a9ecU;
750}
751static inline u32 pwr_pmu_idle_intr_status_intr_f(u32 v)
752{
753 return (v & 0x1U) << 0U;
754}
755static inline u32 pwr_pmu_idle_intr_status_intr_m(void)
756{
757 return 0x1U << 0U;
758}
759static inline u32 pwr_pmu_idle_intr_status_intr_v(u32 r)
760{
761 return (r >> 0U) & 0x1U;
762}
763static inline u32 pwr_pmu_idle_intr_status_intr_pending_v(void)
764{
765 return 0x00000001U;
766}
767static inline u32 pwr_pmu_idle_intr_status_intr_clear_v(void)
768{
769 return 0x00000001U;
770}
771static inline u32 pwr_pmu_idle_mask_supp_r(u32 i)
772{
773 return 0x0010a9f0U + i*8U;
774}
775static inline u32 pwr_pmu_idle_mask_1_supp_r(u32 i)
776{
777 return 0x0010a9f4U + i*8U;
778}
779static inline u32 pwr_pmu_idle_ctrl_supp_r(u32 i)
780{
781 return 0x0010aa30U + i*8U;
782}
783static inline u32 pwr_pmu_debug_r(u32 i)
784{
785 return 0x0010a5c0U + i*4U;
786}
787static inline u32 pwr_pmu_debug__size_1_v(void)
788{
789 return 0x00000004U;
790}
791static inline u32 pwr_pmu_mailbox_r(u32 i)
792{
793 return 0x0010a450U + i*4U;
794}
795static inline u32 pwr_pmu_mailbox__size_1_v(void)
796{
797 return 0x0000000cU;
798}
799static inline u32 pwr_pmu_bar0_addr_r(void)
800{
801 return 0x0010a7a0U;
802}
803static inline u32 pwr_pmu_bar0_data_r(void)
804{
805 return 0x0010a7a4U;
806}
807static inline u32 pwr_pmu_bar0_ctl_r(void)
808{
809 return 0x0010a7acU;
810}
811static inline u32 pwr_pmu_bar0_timeout_r(void)
812{
813 return 0x0010a7a8U;
814}
815static inline u32 pwr_pmu_bar0_fecs_error_r(void)
816{
817 return 0x0010a988U;
818}
819static inline u32 pwr_pmu_bar0_error_status_r(void)
820{
821 return 0x0010a7b0U;
822}
823static inline u32 pwr_pmu_pg_idlefilth_r(u32 i)
824{
825 return 0x0010a6c0U + i*4U;
826}
827static inline u32 pwr_pmu_pg_ppuidlefilth_r(u32 i)
828{
829 return 0x0010a6e8U + i*4U;
830}
831static inline u32 pwr_pmu_pg_idle_cnt_r(u32 i)
832{
833 return 0x0010a710U + i*4U;
834}
835static inline u32 pwr_pmu_pg_intren_r(u32 i)
836{
837 return 0x0010a760U + i*4U;
838}
839static inline u32 pwr_fbif_transcfg_r(u32 i)
840{
841 return 0x0010ae00U + i*4U;
842}
843static inline u32 pwr_fbif_transcfg_target_local_fb_f(void)
844{
845 return 0x0U;
846}
847static inline u32 pwr_fbif_transcfg_target_coherent_sysmem_f(void)
848{
849 return 0x1U;
850}
851static inline u32 pwr_fbif_transcfg_target_noncoherent_sysmem_f(void)
852{
853 return 0x2U;
854}
855static inline u32 pwr_fbif_transcfg_mem_type_s(void)
856{
857 return 1U;
858}
859static inline u32 pwr_fbif_transcfg_mem_type_f(u32 v)
860{
861 return (v & 0x1U) << 2U;
862}
863static inline u32 pwr_fbif_transcfg_mem_type_m(void)
864{
865 return 0x1U << 2U;
866}
867static inline u32 pwr_fbif_transcfg_mem_type_v(u32 r)
868{
869 return (r >> 2U) & 0x1U;
870}
871static inline u32 pwr_fbif_transcfg_mem_type_virtual_f(void)
872{
873 return 0x0U;
874}
875static inline u32 pwr_fbif_transcfg_mem_type_physical_f(void)
876{
877 return 0x4U;
878}
879#endif
diff --git a/include/nvgpu/hw/gm20b/hw_ram_gm20b.h b/include/nvgpu/hw/gm20b/hw_ram_gm20b.h
deleted file mode 100644
index 2414abf..0000000
--- a/include/nvgpu/hw/gm20b/hw_ram_gm20b.h
+++ /dev/null
@@ -1,459 +0,0 @@
1/*
2 * Copyright (c) 2014-2017, 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_ram_gm20b_h_
57#define _hw_ram_gm20b_h_
58
59static inline u32 ram_in_ramfc_s(void)
60{
61 return 4096U;
62}
63static inline u32 ram_in_ramfc_w(void)
64{
65 return 0U;
66}
67static inline u32 ram_in_page_dir_base_target_f(u32 v)
68{
69 return (v & 0x3U) << 0U;
70}
71static inline u32 ram_in_page_dir_base_target_w(void)
72{
73 return 128U;
74}
75static inline u32 ram_in_page_dir_base_target_vid_mem_f(void)
76{
77 return 0x0U;
78}
79static inline u32 ram_in_page_dir_base_target_sys_mem_coh_f(void)
80{
81 return 0x2U;
82}
83static inline u32 ram_in_page_dir_base_target_sys_mem_ncoh_f(void)
84{
85 return 0x3U;
86}
87static inline u32 ram_in_page_dir_base_vol_w(void)
88{
89 return 128U;
90}
91static inline u32 ram_in_page_dir_base_vol_true_f(void)
92{
93 return 0x4U;
94}
95static inline u32 ram_in_big_page_size_f(u32 v)
96{
97 return (v & 0x1U) << 11U;
98}
99static inline u32 ram_in_big_page_size_m(void)
100{
101 return 0x1U << 11U;
102}
103static inline u32 ram_in_big_page_size_w(void)
104{
105 return 128U;
106}
107static inline u32 ram_in_big_page_size_128kb_f(void)
108{
109 return 0x0U;
110}
111static inline u32 ram_in_big_page_size_64kb_f(void)
112{
113 return 0x800U;
114}
115static inline u32 ram_in_page_dir_base_lo_f(u32 v)
116{
117 return (v & 0xfffffU) << 12U;
118}
119static inline u32 ram_in_page_dir_base_lo_w(void)
120{
121 return 128U;
122}
123static inline u32 ram_in_page_dir_base_hi_f(u32 v)
124{
125 return (v & 0xffU) << 0U;
126}
127static inline u32 ram_in_page_dir_base_hi_w(void)
128{
129 return 129U;
130}
131static inline u32 ram_in_adr_limit_lo_f(u32 v)
132{
133 return (v & 0xfffffU) << 12U;
134}
135static inline u32 ram_in_adr_limit_lo_w(void)
136{
137 return 130U;
138}
139static inline u32 ram_in_adr_limit_hi_f(u32 v)
140{
141 return (v & 0xffU) << 0U;
142}
143static inline u32 ram_in_adr_limit_hi_w(void)
144{
145 return 131U;
146}
147static inline u32 ram_in_engine_cs_w(void)
148{
149 return 132U;
150}
151static inline u32 ram_in_engine_cs_wfi_v(void)
152{
153 return 0x00000000U;
154}
155static inline u32 ram_in_engine_cs_wfi_f(void)
156{
157 return 0x0U;
158}
159static inline u32 ram_in_engine_cs_fg_v(void)
160{
161 return 0x00000001U;
162}
163static inline u32 ram_in_engine_cs_fg_f(void)
164{
165 return 0x8U;
166}
167static inline u32 ram_in_gr_cs_w(void)
168{
169 return 132U;
170}
171static inline u32 ram_in_gr_cs_wfi_f(void)
172{
173 return 0x0U;
174}
175static inline u32 ram_in_gr_wfi_target_w(void)
176{
177 return 132U;
178}
179static inline u32 ram_in_gr_wfi_mode_w(void)
180{
181 return 132U;
182}
183static inline u32 ram_in_gr_wfi_mode_physical_v(void)
184{
185 return 0x00000000U;
186}
187static inline u32 ram_in_gr_wfi_mode_physical_f(void)
188{
189 return 0x0U;
190}
191static inline u32 ram_in_gr_wfi_mode_virtual_v(void)
192{
193 return 0x00000001U;
194}
195static inline u32 ram_in_gr_wfi_mode_virtual_f(void)
196{
197 return 0x4U;
198}
199static inline u32 ram_in_gr_wfi_ptr_lo_f(u32 v)
200{
201 return (v & 0xfffffU) << 12U;
202}
203static inline u32 ram_in_gr_wfi_ptr_lo_w(void)
204{
205 return 132U;
206}
207static inline u32 ram_in_gr_wfi_ptr_hi_f(u32 v)
208{
209 return (v & 0xffU) << 0U;
210}
211static inline u32 ram_in_gr_wfi_ptr_hi_w(void)
212{
213 return 133U;
214}
215static inline u32 ram_in_base_shift_v(void)
216{
217 return 0x0000000cU;
218}
219static inline u32 ram_in_alloc_size_v(void)
220{
221 return 0x00001000U;
222}
223static inline u32 ram_fc_size_val_v(void)
224{
225 return 0x00000200U;
226}
227static inline u32 ram_fc_gp_put_w(void)
228{
229 return 0U;
230}
231static inline u32 ram_fc_userd_w(void)
232{
233 return 2U;
234}
235static inline u32 ram_fc_userd_hi_w(void)
236{
237 return 3U;
238}
239static inline u32 ram_fc_signature_w(void)
240{
241 return 4U;
242}
243static inline u32 ram_fc_gp_get_w(void)
244{
245 return 5U;
246}
247static inline u32 ram_fc_pb_get_w(void)
248{
249 return 6U;
250}
251static inline u32 ram_fc_pb_get_hi_w(void)
252{
253 return 7U;
254}
255static inline u32 ram_fc_pb_top_level_get_w(void)
256{
257 return 8U;
258}
259static inline u32 ram_fc_pb_top_level_get_hi_w(void)
260{
261 return 9U;
262}
263static inline u32 ram_fc_acquire_w(void)
264{
265 return 12U;
266}
267static inline u32 ram_fc_semaphorea_w(void)
268{
269 return 14U;
270}
271static inline u32 ram_fc_semaphoreb_w(void)
272{
273 return 15U;
274}
275static inline u32 ram_fc_semaphorec_w(void)
276{
277 return 16U;
278}
279static inline u32 ram_fc_semaphored_w(void)
280{
281 return 17U;
282}
283static inline u32 ram_fc_gp_base_w(void)
284{
285 return 18U;
286}
287static inline u32 ram_fc_gp_base_hi_w(void)
288{
289 return 19U;
290}
291static inline u32 ram_fc_gp_fetch_w(void)
292{
293 return 20U;
294}
295static inline u32 ram_fc_pb_fetch_w(void)
296{
297 return 21U;
298}
299static inline u32 ram_fc_pb_fetch_hi_w(void)
300{
301 return 22U;
302}
303static inline u32 ram_fc_pb_put_w(void)
304{
305 return 23U;
306}
307static inline u32 ram_fc_pb_put_hi_w(void)
308{
309 return 24U;
310}
311static inline u32 ram_fc_pb_header_w(void)
312{
313 return 33U;
314}
315static inline u32 ram_fc_pb_count_w(void)
316{
317 return 34U;
318}
319static inline u32 ram_fc_subdevice_w(void)
320{
321 return 37U;
322}
323static inline u32 ram_fc_formats_w(void)
324{
325 return 39U;
326}
327static inline u32 ram_fc_syncpointa_w(void)
328{
329 return 41U;
330}
331static inline u32 ram_fc_syncpointb_w(void)
332{
333 return 42U;
334}
335static inline u32 ram_fc_target_w(void)
336{
337 return 43U;
338}
339static inline u32 ram_fc_hce_ctrl_w(void)
340{
341 return 57U;
342}
343static inline u32 ram_fc_chid_w(void)
344{
345 return 58U;
346}
347static inline u32 ram_fc_chid_id_f(u32 v)
348{
349 return (v & 0xfffU) << 0U;
350}
351static inline u32 ram_fc_chid_id_w(void)
352{
353 return 0U;
354}
355static inline u32 ram_fc_runlist_timeslice_w(void)
356{
357 return 62U;
358}
359static inline u32 ram_userd_base_shift_v(void)
360{
361 return 0x00000009U;
362}
363static inline u32 ram_userd_chan_size_v(void)
364{
365 return 0x00000200U;
366}
367static inline u32 ram_userd_put_w(void)
368{
369 return 16U;
370}
371static inline u32 ram_userd_get_w(void)
372{
373 return 17U;
374}
375static inline u32 ram_userd_ref_w(void)
376{
377 return 18U;
378}
379static inline u32 ram_userd_put_hi_w(void)
380{
381 return 19U;
382}
383static inline u32 ram_userd_ref_threshold_w(void)
384{
385 return 20U;
386}
387static inline u32 ram_userd_top_level_get_w(void)
388{
389 return 22U;
390}
391static inline u32 ram_userd_top_level_get_hi_w(void)
392{
393 return 23U;
394}
395static inline u32 ram_userd_get_hi_w(void)
396{
397 return 24U;
398}
399static inline u32 ram_userd_gp_get_w(void)
400{
401 return 34U;
402}
403static inline u32 ram_userd_gp_put_w(void)
404{
405 return 35U;
406}
407static inline u32 ram_userd_gp_top_level_get_w(void)
408{
409 return 22U;
410}
411static inline u32 ram_userd_gp_top_level_get_hi_w(void)
412{
413 return 23U;
414}
415static inline u32 ram_rl_entry_size_v(void)
416{
417 return 0x00000008U;
418}
419static inline u32 ram_rl_entry_chid_f(u32 v)
420{
421 return (v & 0xfffU) << 0U;
422}
423static inline u32 ram_rl_entry_id_f(u32 v)
424{
425 return (v & 0xfffU) << 0U;
426}
427static inline u32 ram_rl_entry_type_f(u32 v)
428{
429 return (v & 0x1U) << 13U;
430}
431static inline u32 ram_rl_entry_type_chid_f(void)
432{
433 return 0x0U;
434}
435static inline u32 ram_rl_entry_type_tsg_f(void)
436{
437 return 0x2000U;
438}
439static inline u32 ram_rl_entry_timeslice_scale_f(u32 v)
440{
441 return (v & 0xfU) << 14U;
442}
443static inline u32 ram_rl_entry_timeslice_scale_3_f(void)
444{
445 return 0xc000U;
446}
447static inline u32 ram_rl_entry_timeslice_timeout_f(u32 v)
448{
449 return (v & 0xffU) << 18U;
450}
451static inline u32 ram_rl_entry_timeslice_timeout_128_f(void)
452{
453 return 0x2000000U;
454}
455static inline u32 ram_rl_entry_tsg_length_f(u32 v)
456{
457 return (v & 0x3fU) << 26U;
458}
459#endif
diff --git a/include/nvgpu/hw/gm20b/hw_therm_gm20b.h b/include/nvgpu/hw/gm20b/hw_therm_gm20b.h
deleted file mode 100644
index fc1cd51..0000000
--- a/include/nvgpu/hw/gm20b/hw_therm_gm20b.h
+++ /dev/null
@@ -1,355 +0,0 @@
1/*
2 * Copyright (c) 2014-2017, 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_gm20b_h_
57#define _hw_therm_gm20b_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) << 8U;
82}
83static inline u32 therm_evt_ext_therm_0_slow_factor_init_v(void)
84{
85 return 0x00000000U;
86}
87static inline u32 therm_evt_ext_therm_1_r(void)
88{
89 return 0x00020704U;
90}
91static inline u32 therm_evt_ext_therm_1_slow_factor_f(u32 v)
92{
93 return (v & 0x3fU) << 8U;
94}
95static inline u32 therm_evt_ext_therm_1_slow_factor_init_v(void)
96{
97 return 0x00000000U;
98}
99static inline u32 therm_evt_ext_therm_2_r(void)
100{
101 return 0x00020708U;
102}
103static inline u32 therm_evt_ext_therm_2_slow_factor_f(u32 v)
104{
105 return (v & 0x3fU) << 8U;
106}
107static inline u32 therm_evt_ext_therm_2_slow_factor_init_v(void)
108{
109 return 0x00000000U;
110}
111static inline u32 therm_weight_1_r(void)
112{
113 return 0x00020024U;
114}
115static inline u32 therm_config1_r(void)
116{
117 return 0x00020050U;
118}
119static inline u32 therm_config2_r(void)
120{
121 return 0x00020130U;
122}
123static inline u32 therm_config2_slowdown_factor_extended_f(u32 v)
124{
125 return (v & 0x1U) << 24U;
126}
127static inline u32 therm_config2_grad_enable_f(u32 v)
128{
129 return (v & 0x1U) << 31U;
130}
131static inline u32 therm_gate_ctrl_r(u32 i)
132{
133 return 0x00020200U + i*4U;
134}
135static inline u32 therm_gate_ctrl_eng_clk_m(void)
136{
137 return 0x3U << 0U;
138}
139static inline u32 therm_gate_ctrl_eng_clk_run_f(void)
140{
141 return 0x0U;
142}
143static inline u32 therm_gate_ctrl_eng_clk_auto_f(void)
144{
145 return 0x1U;
146}
147static inline u32 therm_gate_ctrl_eng_clk_stop_f(void)
148{
149 return 0x2U;
150}
151static inline u32 therm_gate_ctrl_blk_clk_m(void)
152{
153 return 0x3U << 2U;
154}
155static inline u32 therm_gate_ctrl_blk_clk_run_f(void)
156{
157 return 0x0U;
158}
159static inline u32 therm_gate_ctrl_blk_clk_auto_f(void)
160{
161 return 0x4U;
162}
163static inline u32 therm_gate_ctrl_eng_pwr_m(void)
164{
165 return 0x3U << 4U;
166}
167static inline u32 therm_gate_ctrl_eng_pwr_auto_f(void)
168{
169 return 0x10U;
170}
171static inline u32 therm_gate_ctrl_eng_pwr_off_v(void)
172{
173 return 0x00000002U;
174}
175static inline u32 therm_gate_ctrl_eng_pwr_off_f(void)
176{
177 return 0x20U;
178}
179static inline u32 therm_gate_ctrl_eng_idle_filt_exp_f(u32 v)
180{
181 return (v & 0x1fU) << 8U;
182}
183static inline u32 therm_gate_ctrl_eng_idle_filt_exp_m(void)
184{
185 return 0x1fU << 8U;
186}
187static inline u32 therm_gate_ctrl_eng_idle_filt_mant_f(u32 v)
188{
189 return (v & 0x7U) << 13U;
190}
191static inline u32 therm_gate_ctrl_eng_idle_filt_mant_m(void)
192{
193 return 0x7U << 13U;
194}
195static inline u32 therm_gate_ctrl_eng_delay_before_f(u32 v)
196{
197 return (v & 0xfU) << 16U;
198}
199static inline u32 therm_gate_ctrl_eng_delay_before_m(void)
200{
201 return 0xfU << 16U;
202}
203static inline u32 therm_gate_ctrl_eng_delay_after_f(u32 v)
204{
205 return (v & 0xfU) << 20U;
206}
207static inline u32 therm_gate_ctrl_eng_delay_after_m(void)
208{
209 return 0xfU << 20U;
210}
211static inline u32 therm_fecs_idle_filter_r(void)
212{
213 return 0x00020288U;
214}
215static inline u32 therm_fecs_idle_filter_value_m(void)
216{
217 return 0xffffffffU << 0U;
218}
219static inline u32 therm_hubmmu_idle_filter_r(void)
220{
221 return 0x0002028cU;
222}
223static inline u32 therm_hubmmu_idle_filter_value_m(void)
224{
225 return 0xffffffffU << 0U;
226}
227static inline u32 therm_clk_slowdown_r(u32 i)
228{
229 return 0x00020160U + i*4U;
230}
231static inline u32 therm_clk_slowdown_idle_factor_f(u32 v)
232{
233 return (v & 0x3fU) << 16U;
234}
235static inline u32 therm_clk_slowdown_idle_factor_m(void)
236{
237 return 0x3fU << 16U;
238}
239static inline u32 therm_clk_slowdown_idle_factor_v(u32 r)
240{
241 return (r >> 16U) & 0x3fU;
242}
243static inline u32 therm_clk_slowdown_idle_factor_disabled_f(void)
244{
245 return 0x0U;
246}
247static inline u32 therm_grad_stepping_table_r(u32 i)
248{
249 return 0x000202c8U + i*4U;
250}
251static inline u32 therm_grad_stepping_table_slowdown_factor0_f(u32 v)
252{
253 return (v & 0x3fU) << 0U;
254}
255static inline u32 therm_grad_stepping_table_slowdown_factor0_m(void)
256{
257 return 0x3fU << 0U;
258}
259static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by1p5_f(void)
260{
261 return 0x1U;
262}
263static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by2_f(void)
264{
265 return 0x2U;
266}
267static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by4_f(void)
268{
269 return 0x6U;
270}
271static inline u32 therm_grad_stepping_table_slowdown_factor0_fpdiv_by8_f(void)
272{
273 return 0xeU;
274}
275static inline u32 therm_grad_stepping_table_slowdown_factor1_f(u32 v)
276{
277 return (v & 0x3fU) << 6U;
278}
279static inline u32 therm_grad_stepping_table_slowdown_factor1_m(void)
280{
281 return 0x3fU << 6U;
282}
283static inline u32 therm_grad_stepping_table_slowdown_factor2_f(u32 v)
284{
285 return (v & 0x3fU) << 12U;
286}
287static inline u32 therm_grad_stepping_table_slowdown_factor2_m(void)
288{
289 return 0x3fU << 12U;
290}
291static inline u32 therm_grad_stepping_table_slowdown_factor3_f(u32 v)
292{
293 return (v & 0x3fU) << 18U;
294}
295static inline u32 therm_grad_stepping_table_slowdown_factor3_m(void)
296{
297 return 0x3fU << 18U;
298}
299static inline u32 therm_grad_stepping_table_slowdown_factor4_f(u32 v)
300{
301 return (v & 0x3fU) << 24U;
302}
303static inline u32 therm_grad_stepping_table_slowdown_factor4_m(void)
304{
305 return 0x3fU << 24U;
306}
307static inline u32 therm_grad_stepping0_r(void)
308{
309 return 0x000202c0U;
310}
311static inline u32 therm_grad_stepping0_feature_s(void)
312{
313 return 1U;
314}
315static inline u32 therm_grad_stepping0_feature_f(u32 v)
316{
317 return (v & 0x1U) << 0U;
318}
319static inline u32 therm_grad_stepping0_feature_m(void)
320{
321 return 0x1U << 0U;
322}
323static inline u32 therm_grad_stepping0_feature_v(u32 r)
324{
325 return (r >> 0U) & 0x1U;
326}
327static inline u32 therm_grad_stepping0_feature_enable_f(void)
328{
329 return 0x1U;
330}
331static inline u32 therm_grad_stepping1_r(void)
332{
333 return 0x000202c4U;
334}
335static inline u32 therm_grad_stepping1_pdiv_duration_f(u32 v)
336{
337 return (v & 0x1ffffU) << 0U;
338}
339static inline u32 therm_clk_timing_r(u32 i)
340{
341 return 0x000203c0U + i*4U;
342}
343static inline u32 therm_clk_timing_grad_slowdown_f(u32 v)
344{
345 return (v & 0x1U) << 16U;
346}
347static inline u32 therm_clk_timing_grad_slowdown_m(void)
348{
349 return 0x1U << 16U;
350}
351static inline u32 therm_clk_timing_grad_slowdown_enabled_f(void)
352{
353 return 0x10000U;
354}
355#endif
diff --git a/include/nvgpu/hw/gm20b/hw_timer_gm20b.h b/include/nvgpu/hw/gm20b/hw_timer_gm20b.h
deleted file mode 100644
index f409367..0000000
--- a/include/nvgpu/hw/gm20b/hw_timer_gm20b.h
+++ /dev/null
@@ -1,127 +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_timer_gm20b_h_
57#define _hw_timer_gm20b_h_
58
59static inline u32 timer_pri_timeout_r(void)
60{
61 return 0x00009080U;
62}
63static inline u32 timer_pri_timeout_period_f(u32 v)
64{
65 return (v & 0xffffffU) << 0U;
66}
67static inline u32 timer_pri_timeout_period_m(void)
68{
69 return 0xffffffU << 0U;
70}
71static inline u32 timer_pri_timeout_period_v(u32 r)
72{
73 return (r >> 0U) & 0xffffffU;
74}
75static inline u32 timer_pri_timeout_en_f(u32 v)
76{
77 return (v & 0x1U) << 31U;
78}
79static inline u32 timer_pri_timeout_en_m(void)
80{
81 return 0x1U << 31U;
82}
83static inline u32 timer_pri_timeout_en_v(u32 r)
84{
85 return (r >> 31U) & 0x1U;
86}
87static inline u32 timer_pri_timeout_en_en_enabled_f(void)
88{
89 return 0x80000000U;
90}
91static inline u32 timer_pri_timeout_en_en_disabled_f(void)
92{
93 return 0x0U;
94}
95static inline u32 timer_pri_timeout_save_0_r(void)
96{
97 return 0x00009084U;
98}
99static inline u32 timer_pri_timeout_save_0_fecs_tgt_v(u32 r)
100{
101 return (r >> 31U) & 0x1U;
102}
103static inline u32 timer_pri_timeout_save_0_addr_v(u32 r)
104{
105 return (r >> 2U) & 0x3fffffU;
106}
107static inline u32 timer_pri_timeout_save_0_write_v(u32 r)
108{
109 return (r >> 1U) & 0x1U;
110}
111static inline u32 timer_pri_timeout_save_1_r(void)
112{
113 return 0x00009088U;
114}
115static inline u32 timer_pri_timeout_fecs_errcode_r(void)
116{
117 return 0x0000908cU;
118}
119static inline u32 timer_time_0_r(void)
120{
121 return 0x00009400U;
122}
123static inline u32 timer_time_1_r(void)
124{
125 return 0x00009410U;
126}
127#endif
diff --git a/include/nvgpu/hw/gm20b/hw_top_gm20b.h b/include/nvgpu/hw/gm20b/hw_top_gm20b.h
deleted file mode 100644
index 6d48839..0000000
--- a/include/nvgpu/hw/gm20b/hw_top_gm20b.h
+++ /dev/null
@@ -1,235 +0,0 @@
1/*
2 * Copyright (c) 2014-2017, 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_top_gm20b_h_
57#define _hw_top_gm20b_h_
58
59static inline u32 top_num_gpcs_r(void)
60{
61 return 0x00022430U;
62}
63static inline u32 top_num_gpcs_value_v(u32 r)
64{
65 return (r >> 0U) & 0x1fU;
66}
67static inline u32 top_tpc_per_gpc_r(void)
68{
69 return 0x00022434U;
70}
71static inline u32 top_tpc_per_gpc_value_v(u32 r)
72{
73 return (r >> 0U) & 0x1fU;
74}
75static inline u32 top_num_fbps_r(void)
76{
77 return 0x00022438U;
78}
79static inline u32 top_num_fbps_value_v(u32 r)
80{
81 return (r >> 0U) & 0x1fU;
82}
83static inline u32 top_ltc_per_fbp_r(void)
84{
85 return 0x00022450U;
86}
87static inline u32 top_ltc_per_fbp_value_v(u32 r)
88{
89 return (r >> 0U) & 0x1fU;
90}
91static inline u32 top_slices_per_ltc_r(void)
92{
93 return 0x0002245cU;
94}
95static inline u32 top_slices_per_ltc_value_v(u32 r)
96{
97 return (r >> 0U) & 0x1fU;
98}
99static inline u32 top_num_ltcs_r(void)
100{
101 return 0x00022454U;
102}
103static inline u32 top_device_info_r(u32 i)
104{
105 return 0x00022700U + i*4U;
106}
107static inline u32 top_device_info__size_1_v(void)
108{
109 return 0x00000040U;
110}
111static inline u32 top_device_info_chain_v(u32 r)
112{
113 return (r >> 31U) & 0x1U;
114}
115static inline u32 top_device_info_chain_enable_v(void)
116{
117 return 0x00000001U;
118}
119static inline u32 top_device_info_engine_enum_v(u32 r)
120{
121 return (r >> 26U) & 0xfU;
122}
123static inline u32 top_device_info_runlist_enum_v(u32 r)
124{
125 return (r >> 21U) & 0xfU;
126}
127static inline u32 top_device_info_intr_enum_v(u32 r)
128{
129 return (r >> 15U) & 0x1fU;
130}
131static inline u32 top_device_info_reset_enum_v(u32 r)
132{
133 return (r >> 9U) & 0x1fU;
134}
135static inline u32 top_device_info_type_enum_v(u32 r)
136{
137 return (r >> 2U) & 0x1fffffffU;
138}
139static inline u32 top_device_info_type_enum_graphics_v(void)
140{
141 return 0x00000000U;
142}
143static inline u32 top_device_info_type_enum_graphics_f(void)
144{
145 return 0x0U;
146}
147static inline u32 top_device_info_type_enum_copy0_v(void)
148{
149 return 0x00000001U;
150}
151static inline u32 top_device_info_type_enum_copy0_f(void)
152{
153 return 0x4U;
154}
155static inline u32 top_device_info_type_enum_copy1_v(void)
156{
157 return 0x00000002U;
158}
159static inline u32 top_device_info_type_enum_copy1_f(void)
160{
161 return 0x8U;
162}
163static inline u32 top_device_info_type_enum_copy2_v(void)
164{
165 return 0x00000003U;
166}
167static inline u32 top_device_info_type_enum_copy2_f(void)
168{
169 return 0xcU;
170}
171static inline u32 top_device_info_engine_v(u32 r)
172{
173 return (r >> 5U) & 0x1U;
174}
175static inline u32 top_device_info_runlist_v(u32 r)
176{
177 return (r >> 4U) & 0x1U;
178}
179static inline u32 top_device_info_intr_v(u32 r)
180{
181 return (r >> 3U) & 0x1U;
182}
183static inline u32 top_device_info_reset_v(u32 r)
184{
185 return (r >> 2U) & 0x1U;
186}
187static inline u32 top_device_info_entry_v(u32 r)
188{
189 return (r >> 0U) & 0x3U;
190}
191static inline u32 top_device_info_entry_not_valid_v(void)
192{
193 return 0x00000000U;
194}
195static inline u32 top_device_info_entry_enum_v(void)
196{
197 return 0x00000002U;
198}
199static inline u32 top_device_info_entry_engine_type_v(void)
200{
201 return 0x00000003U;
202}
203static inline u32 top_device_info_entry_data_v(void)
204{
205 return 0x00000001U;
206}
207static inline u32 top_device_info_data_type_v(u32 r)
208{
209 return (r >> 30U) & 0x1U;
210}
211static inline u32 top_device_info_data_type_enum2_v(void)
212{
213 return 0x00000000U;
214}
215static inline u32 top_device_info_data_pri_base_v(u32 r)
216{
217 return (r >> 12U) & 0x7ffU;
218}
219static inline u32 top_device_info_data_pri_base_align_v(void)
220{
221 return 0x0000000cU;
222}
223static inline u32 top_device_info_data_fault_id_enum_v(u32 r)
224{
225 return (r >> 3U) & 0x1fU;
226}
227static inline u32 top_device_info_data_fault_id_v(u32 r)
228{
229 return (r >> 2U) & 0x1U;
230}
231static inline u32 top_device_info_data_fault_id_valid_v(void)
232{
233 return 0x00000001U;
234}
235#endif
diff --git a/include/nvgpu/hw/gm20b/hw_trim_gm20b.h b/include/nvgpu/hw/gm20b/hw_trim_gm20b.h
deleted file mode 100644
index 8f0a77a..0000000
--- a/include/nvgpu/hw/gm20b/hw_trim_gm20b.h
+++ /dev/null
@@ -1,503 +0,0 @@
1/*
2 * Copyright (c) 2014-2017, 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_trim_gm20b_h_
57#define _hw_trim_gm20b_h_
58
59static inline u32 trim_sys_gpcpll_cfg_r(void)
60{
61 return 0x00137000U;
62}
63static inline u32 trim_sys_gpcpll_cfg_enable_m(void)
64{
65 return 0x1U << 0U;
66}
67static inline u32 trim_sys_gpcpll_cfg_enable_v(u32 r)
68{
69 return (r >> 0U) & 0x1U;
70}
71static inline u32 trim_sys_gpcpll_cfg_enable_no_f(void)
72{
73 return 0x0U;
74}
75static inline u32 trim_sys_gpcpll_cfg_enable_yes_f(void)
76{
77 return 0x1U;
78}
79static inline u32 trim_sys_gpcpll_cfg_iddq_m(void)
80{
81 return 0x1U << 1U;
82}
83static inline u32 trim_sys_gpcpll_cfg_iddq_v(u32 r)
84{
85 return (r >> 1U) & 0x1U;
86}
87static inline u32 trim_sys_gpcpll_cfg_iddq_power_on_v(void)
88{
89 return 0x00000000U;
90}
91static inline u32 trim_sys_gpcpll_cfg_sync_mode_m(void)
92{
93 return 0x1U << 2U;
94}
95static inline u32 trim_sys_gpcpll_cfg_sync_mode_v(u32 r)
96{
97 return (r >> 2U) & 0x1U;
98}
99static inline u32 trim_sys_gpcpll_cfg_sync_mode_enable_f(void)
100{
101 return 0x4U;
102}
103static inline u32 trim_sys_gpcpll_cfg_sync_mode_disable_f(void)
104{
105 return 0x0U;
106}
107static inline u32 trim_sys_gpcpll_cfg_enb_lckdet_m(void)
108{
109 return 0x1U << 4U;
110}
111static inline u32 trim_sys_gpcpll_cfg_enb_lckdet_power_on_f(void)
112{
113 return 0x0U;
114}
115static inline u32 trim_sys_gpcpll_cfg_enb_lckdet_power_off_f(void)
116{
117 return 0x10U;
118}
119static inline u32 trim_sys_gpcpll_cfg_pll_lock_v(u32 r)
120{
121 return (r >> 17U) & 0x1U;
122}
123static inline u32 trim_sys_gpcpll_cfg_pll_lock_true_f(void)
124{
125 return 0x20000U;
126}
127static inline u32 trim_sys_gpcpll_coeff_r(void)
128{
129 return 0x00137004U;
130}
131static inline u32 trim_sys_gpcpll_coeff_mdiv_f(u32 v)
132{
133 return (v & 0xffU) << 0U;
134}
135static inline u32 trim_sys_gpcpll_coeff_mdiv_m(void)
136{
137 return 0xffU << 0U;
138}
139static inline u32 trim_sys_gpcpll_coeff_mdiv_v(u32 r)
140{
141 return (r >> 0U) & 0xffU;
142}
143static inline u32 trim_sys_gpcpll_coeff_ndiv_f(u32 v)
144{
145 return (v & 0xffU) << 8U;
146}
147static inline u32 trim_sys_gpcpll_coeff_ndiv_m(void)
148{
149 return 0xffU << 8U;
150}
151static inline u32 trim_sys_gpcpll_coeff_ndiv_v(u32 r)
152{
153 return (r >> 8U) & 0xffU;
154}
155static inline u32 trim_sys_gpcpll_coeff_pldiv_f(u32 v)
156{
157 return (v & 0x3fU) << 16U;
158}
159static inline u32 trim_sys_gpcpll_coeff_pldiv_m(void)
160{
161 return 0x3fU << 16U;
162}
163static inline u32 trim_sys_gpcpll_coeff_pldiv_v(u32 r)
164{
165 return (r >> 16U) & 0x3fU;
166}
167static inline u32 trim_sys_sel_vco_r(void)
168{
169 return 0x00137100U;
170}
171static inline u32 trim_sys_sel_vco_gpc2clk_out_m(void)
172{
173 return 0x1U << 0U;
174}
175static inline u32 trim_sys_sel_vco_gpc2clk_out_init_v(void)
176{
177 return 0x00000000U;
178}
179static inline u32 trim_sys_sel_vco_gpc2clk_out_init_f(void)
180{
181 return 0x0U;
182}
183static inline u32 trim_sys_sel_vco_gpc2clk_out_bypass_f(void)
184{
185 return 0x0U;
186}
187static inline u32 trim_sys_sel_vco_gpc2clk_out_vco_f(void)
188{
189 return 0x1U;
190}
191static inline u32 trim_sys_gpc2clk_out_r(void)
192{
193 return 0x00137250U;
194}
195static inline u32 trim_sys_gpc2clk_out_bypdiv_s(void)
196{
197 return 6U;
198}
199static inline u32 trim_sys_gpc2clk_out_bypdiv_f(u32 v)
200{
201 return (v & 0x3fU) << 0U;
202}
203static inline u32 trim_sys_gpc2clk_out_bypdiv_m(void)
204{
205 return 0x3fU << 0U;
206}
207static inline u32 trim_sys_gpc2clk_out_bypdiv_v(u32 r)
208{
209 return (r >> 0U) & 0x3fU;
210}
211static inline u32 trim_sys_gpc2clk_out_bypdiv_by31_f(void)
212{
213 return 0x3cU;
214}
215static inline u32 trim_sys_gpc2clk_out_vcodiv_s(void)
216{
217 return 6U;
218}
219static inline u32 trim_sys_gpc2clk_out_vcodiv_f(u32 v)
220{
221 return (v & 0x3fU) << 8U;
222}
223static inline u32 trim_sys_gpc2clk_out_vcodiv_m(void)
224{
225 return 0x3fU << 8U;
226}
227static inline u32 trim_sys_gpc2clk_out_vcodiv_v(u32 r)
228{
229 return (r >> 8U) & 0x3fU;
230}
231static inline u32 trim_sys_gpc2clk_out_vcodiv_by1_f(void)
232{
233 return 0x0U;
234}
235static inline u32 trim_sys_gpc2clk_out_sdiv14_m(void)
236{
237 return 0x1U << 31U;
238}
239static inline u32 trim_sys_gpc2clk_out_sdiv14_indiv4_mode_f(void)
240{
241 return 0x80000000U;
242}
243static inline u32 trim_gpc_clk_cntr_ncgpcclk_cfg_r(u32 i)
244{
245 return 0x00134124U + i*512U;
246}
247static inline u32 trim_gpc_clk_cntr_ncgpcclk_cfg_noofipclks_f(u32 v)
248{
249 return (v & 0x3fffU) << 0U;
250}
251static inline u32 trim_gpc_clk_cntr_ncgpcclk_cfg_write_en_asserted_f(void)
252{
253 return 0x10000U;
254}
255static inline u32 trim_gpc_clk_cntr_ncgpcclk_cfg_enable_asserted_f(void)
256{
257 return 0x100000U;
258}
259static inline u32 trim_gpc_clk_cntr_ncgpcclk_cfg_reset_asserted_f(void)
260{
261 return 0x1000000U;
262}
263static inline u32 trim_gpc_clk_cntr_ncgpcclk_cnt_r(u32 i)
264{
265 return 0x00134128U + i*512U;
266}
267static inline u32 trim_gpc_clk_cntr_ncgpcclk_cnt_value_v(u32 r)
268{
269 return (r >> 0U) & 0xfffffU;
270}
271static inline u32 trim_sys_gpcpll_cfg2_r(void)
272{
273 return 0x0013700cU;
274}
275static inline u32 trim_sys_gpcpll_cfg2_sdm_din_f(u32 v)
276{
277 return (v & 0xffU) << 0U;
278}
279static inline u32 trim_sys_gpcpll_cfg2_sdm_din_m(void)
280{
281 return 0xffU << 0U;
282}
283static inline u32 trim_sys_gpcpll_cfg2_sdm_din_v(u32 r)
284{
285 return (r >> 0U) & 0xffU;
286}
287static inline u32 trim_sys_gpcpll_cfg2_sdm_din_new_f(u32 v)
288{
289 return (v & 0xffU) << 8U;
290}
291static inline u32 trim_sys_gpcpll_cfg2_sdm_din_new_m(void)
292{
293 return 0xffU << 8U;
294}
295static inline u32 trim_sys_gpcpll_cfg2_sdm_din_new_v(u32 r)
296{
297 return (r >> 8U) & 0xffU;
298}
299static inline u32 trim_sys_gpcpll_cfg2_pll_stepa_f(u32 v)
300{
301 return (v & 0xffU) << 24U;
302}
303static inline u32 trim_sys_gpcpll_cfg2_pll_stepa_m(void)
304{
305 return 0xffU << 24U;
306}
307static inline u32 trim_sys_gpcpll_cfg3_r(void)
308{
309 return 0x00137018U;
310}
311static inline u32 trim_sys_gpcpll_cfg3_vco_ctrl_f(u32 v)
312{
313 return (v & 0x1ffU) << 0U;
314}
315static inline u32 trim_sys_gpcpll_cfg3_vco_ctrl_m(void)
316{
317 return 0x1ffU << 0U;
318}
319static inline u32 trim_sys_gpcpll_cfg3_pll_stepb_f(u32 v)
320{
321 return (v & 0xffU) << 16U;
322}
323static inline u32 trim_sys_gpcpll_cfg3_pll_stepb_m(void)
324{
325 return 0xffU << 16U;
326}
327static inline u32 trim_sys_gpcpll_cfg3_dfs_testout_v(u32 r)
328{
329 return (r >> 24U) & 0x7fU;
330}
331static inline u32 trim_sys_gpcpll_dvfs0_r(void)
332{
333 return 0x00137010U;
334}
335static inline u32 trim_sys_gpcpll_dvfs0_dfs_coeff_f(u32 v)
336{
337 return (v & 0x7fU) << 0U;
338}
339static inline u32 trim_sys_gpcpll_dvfs0_dfs_coeff_m(void)
340{
341 return 0x7fU << 0U;
342}
343static inline u32 trim_sys_gpcpll_dvfs0_dfs_coeff_v(u32 r)
344{
345 return (r >> 0U) & 0x7fU;
346}
347static inline u32 trim_sys_gpcpll_dvfs0_dfs_det_max_f(u32 v)
348{
349 return (v & 0x7fU) << 8U;
350}
351static inline u32 trim_sys_gpcpll_dvfs0_dfs_det_max_m(void)
352{
353 return 0x7fU << 8U;
354}
355static inline u32 trim_sys_gpcpll_dvfs0_dfs_det_max_v(u32 r)
356{
357 return (r >> 8U) & 0x7fU;
358}
359static inline u32 trim_sys_gpcpll_dvfs0_dfs_dc_offset_f(u32 v)
360{
361 return (v & 0x3fU) << 16U;
362}
363static inline u32 trim_sys_gpcpll_dvfs0_dfs_dc_offset_m(void)
364{
365 return 0x3fU << 16U;
366}
367static inline u32 trim_sys_gpcpll_dvfs0_dfs_dc_offset_v(u32 r)
368{
369 return (r >> 16U) & 0x3fU;
370}
371static inline u32 trim_sys_gpcpll_dvfs0_mode_m(void)
372{
373 return 0x1U << 28U;
374}
375static inline u32 trim_sys_gpcpll_dvfs0_mode_dvfspll_f(void)
376{
377 return 0x0U;
378}
379static inline u32 trim_sys_gpcpll_dvfs1_r(void)
380{
381 return 0x00137014U;
382}
383static inline u32 trim_sys_gpcpll_dvfs1_dfs_ext_det_f(u32 v)
384{
385 return (v & 0x7fU) << 0U;
386}
387static inline u32 trim_sys_gpcpll_dvfs1_dfs_ext_det_m(void)
388{
389 return 0x7fU << 0U;
390}
391static inline u32 trim_sys_gpcpll_dvfs1_dfs_ext_det_v(u32 r)
392{
393 return (r >> 0U) & 0x7fU;
394}
395static inline u32 trim_sys_gpcpll_dvfs1_dfs_ext_strb_m(void)
396{
397 return 0x1U << 7U;
398}
399static inline u32 trim_sys_gpcpll_dvfs1_dfs_ext_cal_f(u32 v)
400{
401 return (v & 0x7fU) << 8U;
402}
403static inline u32 trim_sys_gpcpll_dvfs1_dfs_ext_cal_m(void)
404{
405 return 0x7fU << 8U;
406}
407static inline u32 trim_sys_gpcpll_dvfs1_dfs_ext_cal_v(u32 r)
408{
409 return (r >> 8U) & 0x7fU;
410}
411static inline u32 trim_sys_gpcpll_dvfs1_dfs_ext_sel_m(void)
412{
413 return 0x1U << 15U;
414}
415static inline u32 trim_sys_gpcpll_dvfs1_dfs_ctrl_f(u32 v)
416{
417 return (v & 0xfffU) << 16U;
418}
419static inline u32 trim_sys_gpcpll_dvfs1_dfs_ctrl_m(void)
420{
421 return 0xfffU << 16U;
422}
423static inline u32 trim_sys_gpcpll_dvfs1_dfs_ctrl_v(u32 r)
424{
425 return (r >> 16U) & 0xfffU;
426}
427static inline u32 trim_sys_gpcpll_dvfs1_en_sdm_m(void)
428{
429 return 0x1U << 28U;
430}
431static inline u32 trim_sys_gpcpll_dvfs1_en_dfs_m(void)
432{
433 return 0x1U << 29U;
434}
435static inline u32 trim_sys_gpcpll_dvfs1_en_dfs_cal_m(void)
436{
437 return 0x1U << 30U;
438}
439static inline u32 trim_sys_gpcpll_dvfs1_dfs_cal_done_v(u32 r)
440{
441 return (r >> 31U) & 0x1U;
442}
443static inline u32 trim_sys_gpcpll_dvfs2_r(void)
444{
445 return 0x00137020U;
446}
447static inline u32 trim_sys_gpcpll_ndiv_slowdown_r(void)
448{
449 return 0x0013701cU;
450}
451static inline u32 trim_sys_gpcpll_ndiv_slowdown_slowdown_using_pll_m(void)
452{
453 return 0x1U << 22U;
454}
455static inline u32 trim_sys_gpcpll_ndiv_slowdown_slowdown_using_pll_yes_f(void)
456{
457 return 0x400000U;
458}
459static inline u32 trim_sys_gpcpll_ndiv_slowdown_slowdown_using_pll_no_f(void)
460{
461 return 0x0U;
462}
463static inline u32 trim_sys_gpcpll_ndiv_slowdown_en_dynramp_m(void)
464{
465 return 0x1U << 31U;
466}
467static inline u32 trim_sys_gpcpll_ndiv_slowdown_en_dynramp_yes_f(void)
468{
469 return 0x80000000U;
470}
471static inline u32 trim_sys_gpcpll_ndiv_slowdown_en_dynramp_no_f(void)
472{
473 return 0x0U;
474}
475static inline u32 trim_gpc_bcast_gpcpll_ndiv_slowdown_debug_r(void)
476{
477 return 0x001328a0U;
478}
479static inline u32 trim_gpc_bcast_gpcpll_ndiv_slowdown_debug_pll_dynramp_done_synced_v(u32 r)
480{
481 return (r >> 24U) & 0x1U;
482}
483static inline u32 trim_gpc_bcast_gpcpll_dvfs2_r(void)
484{
485 return 0x00132820U;
486}
487static inline u32 trim_sys_bypassctrl_r(void)
488{
489 return 0x00137340U;
490}
491static inline u32 trim_sys_bypassctrl_gpcpll_m(void)
492{
493 return 0x1U << 0U;
494}
495static inline u32 trim_sys_bypassctrl_gpcpll_bypassclk_f(void)
496{
497 return 0x1U;
498}
499static inline u32 trim_sys_bypassctrl_gpcpll_vco_f(void)
500{
501 return 0x0U;
502}
503#endif