aboutsummaryrefslogtreecommitdiffstats
path: root/include/nvgpu/hw/gp106
diff options
context:
space:
mode:
Diffstat (limited to 'include/nvgpu/hw/gp106')
-rw-r--r--include/nvgpu/hw/gp106/hw_bus_gp106.h223
-rw-r--r--include/nvgpu/hw/gp106/hw_ccsr_gp106.h163
-rw-r--r--include/nvgpu/hw/gp106/hw_ce_gp106.h87
-rw-r--r--include/nvgpu/hw/gp106/hw_ctxsw_prog_gp106.h295
-rw-r--r--include/nvgpu/hw/gp106/hw_falcon_gp106.h603
-rw-r--r--include/nvgpu/hw/gp106/hw_fb_gp106.h563
-rw-r--r--include/nvgpu/hw/gp106/hw_fbpa_gp106.h67
-rw-r--r--include/nvgpu/hw/gp106/hw_fifo_gp106.h695
-rw-r--r--include/nvgpu/hw/gp106/hw_flush_gp106.h187
-rw-r--r--include/nvgpu/hw/gp106/hw_fuse_gp106.h275
-rw-r--r--include/nvgpu/hw/gp106/hw_gc6_gp106.h62
-rw-r--r--include/nvgpu/hw/gp106/hw_gmmu_gp106.h331
-rw-r--r--include/nvgpu/hw/gp106/hw_gr_gp106.h4167
-rw-r--r--include/nvgpu/hw/gp106/hw_ltc_gp106.h559
-rw-r--r--include/nvgpu/hw/gp106/hw_mc_gp106.h251
-rw-r--r--include/nvgpu/hw/gp106/hw_pbdma_gp106.h535
-rw-r--r--include/nvgpu/hw/gp106/hw_perf_gp106.h219
-rw-r--r--include/nvgpu/hw/gp106/hw_pram_gp106.h63
-rw-r--r--include/nvgpu/hw/gp106/hw_pri_ringmaster_gp106.h151
-rw-r--r--include/nvgpu/hw/gp106/hw_pri_ringstation_gpc_gp106.h79
-rw-r--r--include/nvgpu/hw/gp106/hw_pri_ringstation_sys_gp106.h91
-rw-r--r--include/nvgpu/hw/gp106/hw_proj_gp106.h179
-rw-r--r--include/nvgpu/hw/gp106/hw_psec_gp106.h615
-rw-r--r--include/nvgpu/hw/gp106/hw_pwr_gp106.h895
-rw-r--r--include/nvgpu/hw/gp106/hw_ram_gp106.h507
-rw-r--r--include/nvgpu/hw/gp106/hw_therm_gp106.h183
-rw-r--r--include/nvgpu/hw/gp106/hw_timer_gp106.h115
-rw-r--r--include/nvgpu/hw/gp106/hw_top_gp106.h255
-rw-r--r--include/nvgpu/hw/gp106/hw_trim_gp106.h195
-rw-r--r--include/nvgpu/hw/gp106/hw_xp_gp106.h143
-rw-r--r--include/nvgpu/hw/gp106/hw_xve_gp106.h207
31 files changed, 0 insertions, 12960 deletions
diff --git a/include/nvgpu/hw/gp106/hw_bus_gp106.h b/include/nvgpu/hw/gp106/hw_bus_gp106.h
deleted file mode 100644
index ce3aafd..0000000
--- a/include/nvgpu/hw/gp106/hw_bus_gp106.h
+++ /dev/null
@@ -1,223 +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_bus_gp106_h_
57#define _hw_bus_gp106_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/gp106/hw_ccsr_gp106.h b/include/nvgpu/hw/gp106/hw_ccsr_gp106.h
deleted file mode 100644
index cd63777..0000000
--- a/include/nvgpu/hw/gp106/hw_ccsr_gp106.h
+++ /dev/null
@@ -1,163 +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_ccsr_gp106_h_
57#define _hw_ccsr_gp106_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 0x00001000U;
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 0x00001000U;
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/gp106/hw_ce_gp106.h b/include/nvgpu/hw/gp106/hw_ce_gp106.h
deleted file mode 100644
index 8892f42..0000000
--- a/include/nvgpu/hw/gp106/hw_ce_gp106.h
+++ /dev/null
@@ -1,87 +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_ce_gp106_h_
57#define _hw_ce_gp106_h_
58
59static inline u32 ce_intr_status_r(u32 i)
60{
61 return 0x00104410U + i*128U;
62}
63static inline u32 ce_intr_status_blockpipe_pending_f(void)
64{
65 return 0x1U;
66}
67static inline u32 ce_intr_status_blockpipe_reset_f(void)
68{
69 return 0x1U;
70}
71static inline u32 ce_intr_status_nonblockpipe_pending_f(void)
72{
73 return 0x2U;
74}
75static inline u32 ce_intr_status_nonblockpipe_reset_f(void)
76{
77 return 0x2U;
78}
79static inline u32 ce_intr_status_launcherr_pending_f(void)
80{
81 return 0x4U;
82}
83static inline u32 ce_intr_status_launcherr_reset_f(void)
84{
85 return 0x4U;
86}
87#endif
diff --git a/include/nvgpu/hw/gp106/hw_ctxsw_prog_gp106.h b/include/nvgpu/hw/gp106/hw_ctxsw_prog_gp106.h
deleted file mode 100644
index 3387d23..0000000
--- a/include/nvgpu/hw/gp106/hw_ctxsw_prog_gp106.h
+++ /dev/null
@@ -1,295 +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_ctxsw_prog_gp106_h_
57#define _hw_ctxsw_prog_gp106_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_patch_count_o(void)
68{
69 return 0x00000010U;
70}
71static inline u32 ctxsw_prog_main_image_patch_adr_lo_o(void)
72{
73 return 0x00000014U;
74}
75static inline u32 ctxsw_prog_main_image_patch_adr_hi_o(void)
76{
77 return 0x00000018U;
78}
79static inline u32 ctxsw_prog_main_image_zcull_o(void)
80{
81 return 0x0000001cU;
82}
83static inline u32 ctxsw_prog_main_image_zcull_mode_no_ctxsw_v(void)
84{
85 return 0x00000001U;
86}
87static inline u32 ctxsw_prog_main_image_zcull_mode_separate_buffer_v(void)
88{
89 return 0x00000002U;
90}
91static inline u32 ctxsw_prog_main_image_zcull_ptr_o(void)
92{
93 return 0x00000020U;
94}
95static inline u32 ctxsw_prog_main_image_pm_o(void)
96{
97 return 0x00000028U;
98}
99static inline u32 ctxsw_prog_main_image_pm_mode_m(void)
100{
101 return 0x7U << 0U;
102}
103static inline u32 ctxsw_prog_main_image_pm_mode_no_ctxsw_f(void)
104{
105 return 0x0U;
106}
107static inline u32 ctxsw_prog_main_image_pm_smpc_mode_m(void)
108{
109 return 0x7U << 3U;
110}
111static inline u32 ctxsw_prog_main_image_pm_smpc_mode_ctxsw_f(void)
112{
113 return 0x8U;
114}
115static inline u32 ctxsw_prog_main_image_pm_smpc_mode_no_ctxsw_f(void)
116{
117 return 0x0U;
118}
119static inline u32 ctxsw_prog_main_image_pm_ptr_o(void)
120{
121 return 0x0000002cU;
122}
123static inline u32 ctxsw_prog_main_image_num_save_ops_o(void)
124{
125 return 0x000000f4U;
126}
127static inline u32 ctxsw_prog_main_image_num_wfi_save_ops_o(void)
128{
129 return 0x000000d0U;
130}
131static inline u32 ctxsw_prog_main_image_num_cta_save_ops_o(void)
132{
133 return 0x000000d4U;
134}
135static inline u32 ctxsw_prog_main_image_num_gfxp_save_ops_o(void)
136{
137 return 0x000000d8U;
138}
139static inline u32 ctxsw_prog_main_image_num_cilp_save_ops_o(void)
140{
141 return 0x000000dcU;
142}
143static inline u32 ctxsw_prog_main_image_num_restore_ops_o(void)
144{
145 return 0x000000f8U;
146}
147static inline u32 ctxsw_prog_main_image_magic_value_o(void)
148{
149 return 0x000000fcU;
150}
151static inline u32 ctxsw_prog_main_image_magic_value_v_value_v(void)
152{
153 return 0x600dc0deU;
154}
155static inline u32 ctxsw_prog_local_priv_register_ctl_o(void)
156{
157 return 0x0000000cU;
158}
159static inline u32 ctxsw_prog_local_priv_register_ctl_offset_v(u32 r)
160{
161 return (r >> 0U) & 0xffffU;
162}
163static inline u32 ctxsw_prog_local_image_ppc_info_o(void)
164{
165 return 0x000000f4U;
166}
167static inline u32 ctxsw_prog_local_image_ppc_info_num_ppcs_v(u32 r)
168{
169 return (r >> 0U) & 0xffffU;
170}
171static inline u32 ctxsw_prog_local_image_ppc_info_ppc_mask_v(u32 r)
172{
173 return (r >> 16U) & 0xffffU;
174}
175static inline u32 ctxsw_prog_local_image_num_tpcs_o(void)
176{
177 return 0x000000f8U;
178}
179static inline u32 ctxsw_prog_local_magic_value_o(void)
180{
181 return 0x000000fcU;
182}
183static inline u32 ctxsw_prog_local_magic_value_v_value_v(void)
184{
185 return 0xad0becabU;
186}
187static inline u32 ctxsw_prog_main_extended_buffer_ctl_o(void)
188{
189 return 0x000000ecU;
190}
191static inline u32 ctxsw_prog_main_extended_buffer_ctl_offset_v(u32 r)
192{
193 return (r >> 0U) & 0xffffU;
194}
195static inline u32 ctxsw_prog_main_extended_buffer_ctl_size_v(u32 r)
196{
197 return (r >> 16U) & 0xffU;
198}
199static inline u32 ctxsw_prog_extended_buffer_segments_size_in_bytes_v(void)
200{
201 return 0x00000100U;
202}
203static inline u32 ctxsw_prog_extended_marker_size_in_bytes_v(void)
204{
205 return 0x00000004U;
206}
207static inline u32 ctxsw_prog_extended_sm_dsm_perf_counter_register_stride_v(void)
208{
209 return 0x00000000U;
210}
211static inline u32 ctxsw_prog_extended_sm_dsm_perf_counter_control_register_stride_v(void)
212{
213 return 0x00000002U;
214}
215static inline u32 ctxsw_prog_main_image_priv_access_map_config_o(void)
216{
217 return 0x000000a0U;
218}
219static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_s(void)
220{
221 return 2U;
222}
223static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_f(u32 v)
224{
225 return (v & 0x3U) << 0U;
226}
227static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_m(void)
228{
229 return 0x3U << 0U;
230}
231static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_v(u32 r)
232{
233 return (r >> 0U) & 0x3U;
234}
235static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_allow_all_f(void)
236{
237 return 0x0U;
238}
239static inline u32 ctxsw_prog_main_image_priv_access_map_config_mode_use_map_f(void)
240{
241 return 0x2U;
242}
243static inline u32 ctxsw_prog_main_image_priv_access_map_addr_lo_o(void)
244{
245 return 0x000000a4U;
246}
247static inline u32 ctxsw_prog_main_image_priv_access_map_addr_hi_o(void)
248{
249 return 0x000000a8U;
250}
251static inline u32 ctxsw_prog_main_image_misc_options_o(void)
252{
253 return 0x0000003cU;
254}
255static inline u32 ctxsw_prog_main_image_misc_options_verif_features_m(void)
256{
257 return 0x1U << 3U;
258}
259static inline u32 ctxsw_prog_main_image_misc_options_verif_features_disabled_f(void)
260{
261 return 0x0U;
262}
263static inline u32 ctxsw_prog_main_image_graphics_preemption_options_o(void)
264{
265 return 0x00000080U;
266}
267static inline u32 ctxsw_prog_main_image_graphics_preemption_options_control_f(u32 v)
268{
269 return (v & 0x3U) << 0U;
270}
271static inline u32 ctxsw_prog_main_image_graphics_preemption_options_control_gfxp_f(void)
272{
273 return 0x1U;
274}
275static inline u32 ctxsw_prog_main_image_full_preemption_ptr_o(void)
276{
277 return 0x00000068U;
278}
279static inline u32 ctxsw_prog_main_image_compute_preemption_options_o(void)
280{
281 return 0x00000084U;
282}
283static inline u32 ctxsw_prog_main_image_compute_preemption_options_control_f(u32 v)
284{
285 return (v & 0x3U) << 0U;
286}
287static inline u32 ctxsw_prog_main_image_compute_preemption_options_control_cta_f(void)
288{
289 return 0x1U;
290}
291static inline u32 ctxsw_prog_main_image_compute_preemption_options_control_cilp_f(void)
292{
293 return 0x2U;
294}
295#endif
diff --git a/include/nvgpu/hw/gp106/hw_falcon_gp106.h b/include/nvgpu/hw/gp106/hw_falcon_gp106.h
deleted file mode 100644
index d899e3f..0000000
--- a/include/nvgpu/hw/gp106/hw_falcon_gp106.h
+++ /dev/null
@@ -1,603 +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_gp106_h_
57#define _hw_falcon_gp106_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_dmatrfbase1_r(void)
420{
421 return 0x00000128U;
422}
423static inline u32 falcon_falcon_dmatrfmoffs_r(void)
424{
425 return 0x00000114U;
426}
427static inline u32 falcon_falcon_dmatrfcmd_r(void)
428{
429 return 0x00000118U;
430}
431static inline u32 falcon_falcon_dmatrfcmd_imem_f(u32 v)
432{
433 return (v & 0x1U) << 4U;
434}
435static inline u32 falcon_falcon_dmatrfcmd_write_f(u32 v)
436{
437 return (v & 0x1U) << 5U;
438}
439static inline u32 falcon_falcon_dmatrfcmd_size_f(u32 v)
440{
441 return (v & 0x7U) << 8U;
442}
443static inline u32 falcon_falcon_dmatrfcmd_ctxdma_f(u32 v)
444{
445 return (v & 0x7U) << 12U;
446}
447static inline u32 falcon_falcon_dmatrffboffs_r(void)
448{
449 return 0x0000011cU;
450}
451static inline u32 falcon_falcon_imctl_debug_r(void)
452{
453 return 0x0000015cU;
454}
455static inline u32 falcon_falcon_imctl_debug_addr_blk_f(u32 v)
456{
457 return (v & 0xffffffU) << 0U;
458}
459static inline u32 falcon_falcon_imctl_debug_cmd_f(u32 v)
460{
461 return (v & 0x7U) << 24U;
462}
463static inline u32 falcon_falcon_imstat_r(void)
464{
465 return 0x00000144U;
466}
467static inline u32 falcon_falcon_traceidx_r(void)
468{
469 return 0x00000148U;
470}
471static inline u32 falcon_falcon_traceidx_maxidx_v(u32 r)
472{
473 return (r >> 16U) & 0xffU;
474}
475static inline u32 falcon_falcon_traceidx_idx_f(u32 v)
476{
477 return (v & 0xffU) << 0U;
478}
479static inline u32 falcon_falcon_tracepc_r(void)
480{
481 return 0x0000014cU;
482}
483static inline u32 falcon_falcon_tracepc_pc_v(u32 r)
484{
485 return (r >> 0U) & 0xffffffU;
486}
487static inline u32 falcon_falcon_exterraddr_r(void)
488{
489 return 0x00000168U;
490}
491static inline u32 falcon_falcon_exterrstat_r(void)
492{
493 return 0x0000016cU;
494}
495static inline u32 falcon_falcon_exterrstat_valid_m(void)
496{
497 return 0x1U << 31U;
498}
499static inline u32 falcon_falcon_exterrstat_valid_v(u32 r)
500{
501 return (r >> 31U) & 0x1U;
502}
503static inline u32 falcon_falcon_exterrstat_valid_true_v(void)
504{
505 return 0x00000001U;
506}
507static inline u32 falcon_falcon_icd_cmd_r(void)
508{
509 return 0x00000200U;
510}
511static inline u32 falcon_falcon_icd_cmd_opc_s(void)
512{
513 return 4U;
514}
515static inline u32 falcon_falcon_icd_cmd_opc_f(u32 v)
516{
517 return (v & 0xfU) << 0U;
518}
519static inline u32 falcon_falcon_icd_cmd_opc_m(void)
520{
521 return 0xfU << 0U;
522}
523static inline u32 falcon_falcon_icd_cmd_opc_v(u32 r)
524{
525 return (r >> 0U) & 0xfU;
526}
527static inline u32 falcon_falcon_icd_cmd_opc_rreg_f(void)
528{
529 return 0x8U;
530}
531static inline u32 falcon_falcon_icd_cmd_opc_rstat_f(void)
532{
533 return 0xeU;
534}
535static inline u32 falcon_falcon_icd_cmd_idx_f(u32 v)
536{
537 return (v & 0x1fU) << 8U;
538}
539static inline u32 falcon_falcon_icd_rdata_r(void)
540{
541 return 0x0000020cU;
542}
543static inline u32 falcon_falcon_dmemc_r(u32 i)
544{
545 return 0x000001c0U + i*8U;
546}
547static inline u32 falcon_falcon_dmemc_offs_f(u32 v)
548{
549 return (v & 0x3fU) << 2U;
550}
551static inline u32 falcon_falcon_dmemc_offs_m(void)
552{
553 return 0x3fU << 2U;
554}
555static inline u32 falcon_falcon_dmemc_blk_f(u32 v)
556{
557 return (v & 0xffU) << 8U;
558}
559static inline u32 falcon_falcon_dmemc_blk_m(void)
560{
561 return 0xffU << 8U;
562}
563static inline u32 falcon_falcon_dmemc_aincw_f(u32 v)
564{
565 return (v & 0x1U) << 24U;
566}
567static inline u32 falcon_falcon_dmemc_aincr_f(u32 v)
568{
569 return (v & 0x1U) << 25U;
570}
571static inline u32 falcon_falcon_dmemd_r(u32 i)
572{
573 return 0x000001c4U + i*8U;
574}
575static inline u32 falcon_falcon_debug1_r(void)
576{
577 return 0x00000090U;
578}
579static inline u32 falcon_falcon_debug1_ctxsw_mode_s(void)
580{
581 return 1U;
582}
583static inline u32 falcon_falcon_debug1_ctxsw_mode_f(u32 v)
584{
585 return (v & 0x1U) << 16U;
586}
587static inline u32 falcon_falcon_debug1_ctxsw_mode_m(void)
588{
589 return 0x1U << 16U;
590}
591static inline u32 falcon_falcon_debug1_ctxsw_mode_v(u32 r)
592{
593 return (r >> 16U) & 0x1U;
594}
595static inline u32 falcon_falcon_debug1_ctxsw_mode_init_f(void)
596{
597 return 0x0U;
598}
599static inline u32 falcon_falcon_debuginfo_r(void)
600{
601 return 0x00000094U;
602}
603#endif
diff --git a/include/nvgpu/hw/gp106/hw_fb_gp106.h b/include/nvgpu/hw/gp106/hw_fb_gp106.h
deleted file mode 100644
index 1c2a1ac..0000000
--- a/include/nvgpu/hw/gp106/hw_fb_gp106.h
+++ /dev/null
@@ -1,563 +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_fb_gp106_h_
57#define _hw_fb_gp106_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_priv_mmu_phy_secure_r(void)
80{
81 return 0x00100ce4U;
82}
83static inline u32 fb_mmu_invalidate_pdb_r(void)
84{
85 return 0x00100cb8U;
86}
87static inline u32 fb_mmu_invalidate_pdb_aperture_vid_mem_f(void)
88{
89 return 0x0U;
90}
91static inline u32 fb_mmu_invalidate_pdb_aperture_sys_mem_f(void)
92{
93 return 0x2U;
94}
95static inline u32 fb_mmu_invalidate_pdb_addr_f(u32 v)
96{
97 return (v & 0xfffffffU) << 4U;
98}
99static inline u32 fb_mmu_invalidate_r(void)
100{
101 return 0x00100cbcU;
102}
103static inline u32 fb_mmu_invalidate_all_va_true_f(void)
104{
105 return 0x1U;
106}
107static inline u32 fb_mmu_invalidate_all_pdb_true_f(void)
108{
109 return 0x2U;
110}
111static inline u32 fb_mmu_invalidate_hubtlb_only_s(void)
112{
113 return 1U;
114}
115static inline u32 fb_mmu_invalidate_hubtlb_only_f(u32 v)
116{
117 return (v & 0x1U) << 2U;
118}
119static inline u32 fb_mmu_invalidate_hubtlb_only_m(void)
120{
121 return 0x1U << 2U;
122}
123static inline u32 fb_mmu_invalidate_hubtlb_only_v(u32 r)
124{
125 return (r >> 2U) & 0x1U;
126}
127static inline u32 fb_mmu_invalidate_hubtlb_only_true_f(void)
128{
129 return 0x4U;
130}
131static inline u32 fb_mmu_invalidate_replay_s(void)
132{
133 return 3U;
134}
135static inline u32 fb_mmu_invalidate_replay_f(u32 v)
136{
137 return (v & 0x7U) << 3U;
138}
139static inline u32 fb_mmu_invalidate_replay_m(void)
140{
141 return 0x7U << 3U;
142}
143static inline u32 fb_mmu_invalidate_replay_v(u32 r)
144{
145 return (r >> 3U) & 0x7U;
146}
147static inline u32 fb_mmu_invalidate_replay_none_f(void)
148{
149 return 0x0U;
150}
151static inline u32 fb_mmu_invalidate_replay_start_f(void)
152{
153 return 0x8U;
154}
155static inline u32 fb_mmu_invalidate_replay_start_ack_all_f(void)
156{
157 return 0x10U;
158}
159static inline u32 fb_mmu_invalidate_replay_cancel_targeted_f(void)
160{
161 return 0x18U;
162}
163static inline u32 fb_mmu_invalidate_replay_cancel_global_f(void)
164{
165 return 0x20U;
166}
167static inline u32 fb_mmu_invalidate_replay_cancel_f(void)
168{
169 return 0x20U;
170}
171static inline u32 fb_mmu_invalidate_sys_membar_s(void)
172{
173 return 1U;
174}
175static inline u32 fb_mmu_invalidate_sys_membar_f(u32 v)
176{
177 return (v & 0x1U) << 6U;
178}
179static inline u32 fb_mmu_invalidate_sys_membar_m(void)
180{
181 return 0x1U << 6U;
182}
183static inline u32 fb_mmu_invalidate_sys_membar_v(u32 r)
184{
185 return (r >> 6U) & 0x1U;
186}
187static inline u32 fb_mmu_invalidate_sys_membar_true_f(void)
188{
189 return 0x40U;
190}
191static inline u32 fb_mmu_invalidate_ack_s(void)
192{
193 return 2U;
194}
195static inline u32 fb_mmu_invalidate_ack_f(u32 v)
196{
197 return (v & 0x3U) << 7U;
198}
199static inline u32 fb_mmu_invalidate_ack_m(void)
200{
201 return 0x3U << 7U;
202}
203static inline u32 fb_mmu_invalidate_ack_v(u32 r)
204{
205 return (r >> 7U) & 0x3U;
206}
207static inline u32 fb_mmu_invalidate_ack_ack_none_required_f(void)
208{
209 return 0x0U;
210}
211static inline u32 fb_mmu_invalidate_ack_ack_intranode_f(void)
212{
213 return 0x100U;
214}
215static inline u32 fb_mmu_invalidate_ack_ack_globally_f(void)
216{
217 return 0x80U;
218}
219static inline u32 fb_mmu_invalidate_cancel_client_id_s(void)
220{
221 return 6U;
222}
223static inline u32 fb_mmu_invalidate_cancel_client_id_f(u32 v)
224{
225 return (v & 0x3fU) << 9U;
226}
227static inline u32 fb_mmu_invalidate_cancel_client_id_m(void)
228{
229 return 0x3fU << 9U;
230}
231static inline u32 fb_mmu_invalidate_cancel_client_id_v(u32 r)
232{
233 return (r >> 9U) & 0x3fU;
234}
235static inline u32 fb_mmu_invalidate_cancel_gpc_id_s(void)
236{
237 return 5U;
238}
239static inline u32 fb_mmu_invalidate_cancel_gpc_id_f(u32 v)
240{
241 return (v & 0x1fU) << 15U;
242}
243static inline u32 fb_mmu_invalidate_cancel_gpc_id_m(void)
244{
245 return 0x1fU << 15U;
246}
247static inline u32 fb_mmu_invalidate_cancel_gpc_id_v(u32 r)
248{
249 return (r >> 15U) & 0x1fU;
250}
251static inline u32 fb_mmu_invalidate_cancel_client_type_s(void)
252{
253 return 1U;
254}
255static inline u32 fb_mmu_invalidate_cancel_client_type_f(u32 v)
256{
257 return (v & 0x1U) << 20U;
258}
259static inline u32 fb_mmu_invalidate_cancel_client_type_m(void)
260{
261 return 0x1U << 20U;
262}
263static inline u32 fb_mmu_invalidate_cancel_client_type_v(u32 r)
264{
265 return (r >> 20U) & 0x1U;
266}
267static inline u32 fb_mmu_invalidate_cancel_client_type_gpc_f(void)
268{
269 return 0x0U;
270}
271static inline u32 fb_mmu_invalidate_cancel_client_type_hub_f(void)
272{
273 return 0x100000U;
274}
275static inline u32 fb_mmu_invalidate_cancel_cache_level_s(void)
276{
277 return 3U;
278}
279static inline u32 fb_mmu_invalidate_cancel_cache_level_f(u32 v)
280{
281 return (v & 0x7U) << 24U;
282}
283static inline u32 fb_mmu_invalidate_cancel_cache_level_m(void)
284{
285 return 0x7U << 24U;
286}
287static inline u32 fb_mmu_invalidate_cancel_cache_level_v(u32 r)
288{
289 return (r >> 24U) & 0x7U;
290}
291static inline u32 fb_mmu_invalidate_cancel_cache_level_all_f(void)
292{
293 return 0x0U;
294}
295static inline u32 fb_mmu_invalidate_cancel_cache_level_pte_only_f(void)
296{
297 return 0x1000000U;
298}
299static inline u32 fb_mmu_invalidate_cancel_cache_level_up_to_pde0_f(void)
300{
301 return 0x2000000U;
302}
303static inline u32 fb_mmu_invalidate_cancel_cache_level_up_to_pde1_f(void)
304{
305 return 0x3000000U;
306}
307static inline u32 fb_mmu_invalidate_cancel_cache_level_up_to_pde2_f(void)
308{
309 return 0x4000000U;
310}
311static inline u32 fb_mmu_invalidate_cancel_cache_level_up_to_pde3_f(void)
312{
313 return 0x5000000U;
314}
315static inline u32 fb_mmu_invalidate_cancel_cache_level_up_to_pde4_f(void)
316{
317 return 0x6000000U;
318}
319static inline u32 fb_mmu_invalidate_cancel_cache_level_up_to_pde5_f(void)
320{
321 return 0x7000000U;
322}
323static inline u32 fb_mmu_invalidate_trigger_s(void)
324{
325 return 1U;
326}
327static inline u32 fb_mmu_invalidate_trigger_f(u32 v)
328{
329 return (v & 0x1U) << 31U;
330}
331static inline u32 fb_mmu_invalidate_trigger_m(void)
332{
333 return 0x1U << 31U;
334}
335static inline u32 fb_mmu_invalidate_trigger_v(u32 r)
336{
337 return (r >> 31U) & 0x1U;
338}
339static inline u32 fb_mmu_invalidate_trigger_true_f(void)
340{
341 return 0x80000000U;
342}
343static inline u32 fb_mmu_debug_wr_r(void)
344{
345 return 0x00100cc8U;
346}
347static inline u32 fb_mmu_debug_wr_aperture_s(void)
348{
349 return 2U;
350}
351static inline u32 fb_mmu_debug_wr_aperture_f(u32 v)
352{
353 return (v & 0x3U) << 0U;
354}
355static inline u32 fb_mmu_debug_wr_aperture_m(void)
356{
357 return 0x3U << 0U;
358}
359static inline u32 fb_mmu_debug_wr_aperture_v(u32 r)
360{
361 return (r >> 0U) & 0x3U;
362}
363static inline u32 fb_mmu_debug_wr_aperture_vid_mem_f(void)
364{
365 return 0x0U;
366}
367static inline u32 fb_mmu_debug_wr_aperture_sys_mem_coh_f(void)
368{
369 return 0x2U;
370}
371static inline u32 fb_mmu_debug_wr_aperture_sys_mem_ncoh_f(void)
372{
373 return 0x3U;
374}
375static inline u32 fb_mmu_debug_wr_vol_false_f(void)
376{
377 return 0x0U;
378}
379static inline u32 fb_mmu_debug_wr_vol_true_v(void)
380{
381 return 0x00000001U;
382}
383static inline u32 fb_mmu_debug_wr_vol_true_f(void)
384{
385 return 0x4U;
386}
387static inline u32 fb_mmu_debug_wr_addr_f(u32 v)
388{
389 return (v & 0xfffffffU) << 4U;
390}
391static inline u32 fb_mmu_debug_wr_addr_alignment_v(void)
392{
393 return 0x0000000cU;
394}
395static inline u32 fb_mmu_debug_rd_r(void)
396{
397 return 0x00100cccU;
398}
399static inline u32 fb_mmu_debug_rd_aperture_vid_mem_f(void)
400{
401 return 0x0U;
402}
403static inline u32 fb_mmu_debug_rd_aperture_sys_mem_coh_f(void)
404{
405 return 0x2U;
406}
407static inline u32 fb_mmu_debug_rd_aperture_sys_mem_ncoh_f(void)
408{
409 return 0x3U;
410}
411static inline u32 fb_mmu_debug_rd_vol_false_f(void)
412{
413 return 0x0U;
414}
415static inline u32 fb_mmu_debug_rd_addr_f(u32 v)
416{
417 return (v & 0xfffffffU) << 4U;
418}
419static inline u32 fb_mmu_debug_rd_addr_alignment_v(void)
420{
421 return 0x0000000cU;
422}
423static inline u32 fb_mmu_debug_ctrl_r(void)
424{
425 return 0x00100cc4U;
426}
427static inline u32 fb_mmu_debug_ctrl_debug_v(u32 r)
428{
429 return (r >> 16U) & 0x1U;
430}
431static inline u32 fb_mmu_debug_ctrl_debug_m(void)
432{
433 return 0x1U << 16U;
434}
435static inline u32 fb_mmu_debug_ctrl_debug_enabled_v(void)
436{
437 return 0x00000001U;
438}
439static inline u32 fb_mmu_debug_ctrl_debug_enabled_f(void)
440{
441 return 0x10000U;
442}
443static inline u32 fb_mmu_debug_ctrl_debug_disabled_v(void)
444{
445 return 0x00000000U;
446}
447static inline u32 fb_mmu_debug_ctrl_debug_disabled_f(void)
448{
449 return 0x0U;
450}
451static inline u32 fb_mmu_priv_level_mask_r(void)
452{
453 return 0x00100cdcU;
454}
455static inline u32 fb_mmu_priv_level_mask_write_violation_m(void)
456{
457 return 0x1U << 7U;
458}
459static inline u32 fb_niso_flush_sysmem_addr_r(void)
460{
461 return 0x00100c10U;
462}
463static inline u32 fb_mmu_local_memory_range_r(void)
464{
465 return 0x00100ce0U;
466}
467static inline u32 fb_mmu_local_memory_range_lower_scale_v(u32 r)
468{
469 return (r >> 0U) & 0xfU;
470}
471static inline u32 fb_mmu_local_memory_range_lower_mag_v(u32 r)
472{
473 return (r >> 4U) & 0x3fU;
474}
475static inline u32 fb_mmu_local_memory_range_ecc_mode_v(u32 r)
476{
477 return (r >> 30U) & 0x1U;
478}
479static inline u32 fb_fbpa_fbio_delay_r(void)
480{
481 return 0x009a065cU;
482}
483static inline u32 fb_fbpa_fbio_delay_src_f(u32 v)
484{
485 return (v & 0xfU) << 0U;
486}
487static inline u32 fb_fbpa_fbio_delay_src_m(void)
488{
489 return 0xfU << 0U;
490}
491static inline u32 fb_fbpa_fbio_delay_src_v(u32 r)
492{
493 return (r >> 0U) & 0xfU;
494}
495static inline u32 fb_fbpa_fbio_delay_src_max_v(void)
496{
497 return 0x00000002U;
498}
499static inline u32 fb_fbpa_fbio_delay_priv_f(u32 v)
500{
501 return (v & 0xfU) << 4U;
502}
503static inline u32 fb_fbpa_fbio_delay_priv_m(void)
504{
505 return 0xfU << 4U;
506}
507static inline u32 fb_fbpa_fbio_delay_priv_v(u32 r)
508{
509 return (r >> 4U) & 0xfU;
510}
511static inline u32 fb_fbpa_fbio_delay_priv_max_v(void)
512{
513 return 0x00000002U;
514}
515static inline u32 fb_fbpa_fbio_cmd_delay_r(void)
516{
517 return 0x009a08e0U;
518}
519static inline u32 fb_fbpa_fbio_cmd_delay_cmd_src_f(u32 v)
520{
521 return (v & 0xfU) << 0U;
522}
523static inline u32 fb_fbpa_fbio_cmd_delay_cmd_src_m(void)
524{
525 return 0xfU << 0U;
526}
527static inline u32 fb_fbpa_fbio_cmd_delay_cmd_src_v(u32 r)
528{
529 return (r >> 0U) & 0xfU;
530}
531static inline u32 fb_fbpa_fbio_cmd_delay_cmd_src_max_v(void)
532{
533 return 0x00000001U;
534}
535static inline u32 fb_fbpa_fbio_cmd_delay_cmd_priv_f(u32 v)
536{
537 return (v & 0xfU) << 4U;
538}
539static inline u32 fb_fbpa_fbio_cmd_delay_cmd_priv_m(void)
540{
541 return 0xfU << 4U;
542}
543static inline u32 fb_fbpa_fbio_cmd_delay_cmd_priv_v(u32 r)
544{
545 return (r >> 4U) & 0xfU;
546}
547static inline u32 fb_fbpa_fbio_cmd_delay_cmd_priv_max_v(void)
548{
549 return 0x00000001U;
550}
551static inline u32 fb_niso_scrub_status_r(void)
552{
553 return 0x00100b20U;
554}
555static inline u32 fb_niso_scrub_status_flag_v(u32 r)
556{
557 return (r >> 0U) & 0x1U;
558}
559static inline u32 fb_fbpa_fbio_iref_byte_rx_ctrl_r(void)
560{
561 return 0x009a0eb0U;
562}
563#endif
diff --git a/include/nvgpu/hw/gp106/hw_fbpa_gp106.h b/include/nvgpu/hw/gp106/hw_fbpa_gp106.h
deleted file mode 100644
index 797a40c..0000000
--- a/include/nvgpu/hw/gp106/hw_fbpa_gp106.h
+++ /dev/null
@@ -1,67 +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_fbpa_gp106_h_
57#define _hw_fbpa_gp106_h_
58
59static inline u32 fbpa_cstatus_r(void)
60{
61 return 0x009a020cU;
62}
63static inline u32 fbpa_cstatus_ramamount_v(u32 r)
64{
65 return (r >> 0U) & 0x1ffffU;
66}
67#endif
diff --git a/include/nvgpu/hw/gp106/hw_fifo_gp106.h b/include/nvgpu/hw/gp106/hw_fifo_gp106.h
deleted file mode 100644
index 804e9e4..0000000
--- a/include/nvgpu/hw/gp106/hw_fifo_gp106.h
+++ /dev/null
@@ -1,695 +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_fifo_gp106_h_
57#define _hw_fifo_gp106_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 0x00000007U;
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 0x00000007U;
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_replayable_fault_error_pending_f(void)
200{
201 return 0x2000000U;
202}
203static inline u32 fifo_intr_0_dropped_mmu_fault_pending_f(void)
204{
205 return 0x8000000U;
206}
207static inline u32 fifo_intr_0_dropped_mmu_fault_reset_f(void)
208{
209 return 0x8000000U;
210}
211static inline u32 fifo_intr_0_mmu_fault_pending_f(void)
212{
213 return 0x10000000U;
214}
215static inline u32 fifo_intr_0_pbdma_intr_pending_f(void)
216{
217 return 0x20000000U;
218}
219static inline u32 fifo_intr_0_runlist_event_pending_f(void)
220{
221 return 0x40000000U;
222}
223static inline u32 fifo_intr_0_channel_intr_pending_f(void)
224{
225 return 0x80000000U;
226}
227static inline u32 fifo_intr_en_0_r(void)
228{
229 return 0x00002140U;
230}
231static inline u32 fifo_intr_en_0_sched_error_f(u32 v)
232{
233 return (v & 0x1U) << 8U;
234}
235static inline u32 fifo_intr_en_0_sched_error_m(void)
236{
237 return 0x1U << 8U;
238}
239static inline u32 fifo_intr_en_0_mmu_fault_f(u32 v)
240{
241 return (v & 0x1U) << 28U;
242}
243static inline u32 fifo_intr_en_0_mmu_fault_m(void)
244{
245 return 0x1U << 28U;
246}
247static inline u32 fifo_intr_en_1_r(void)
248{
249 return 0x00002528U;
250}
251static inline u32 fifo_intr_bind_error_r(void)
252{
253 return 0x0000252cU;
254}
255static inline u32 fifo_intr_sched_error_r(void)
256{
257 return 0x0000254cU;
258}
259static inline u32 fifo_intr_sched_error_code_f(u32 v)
260{
261 return (v & 0xffU) << 0U;
262}
263static inline u32 fifo_intr_sched_error_code_ctxsw_timeout_v(void)
264{
265 return 0x0000000aU;
266}
267static inline u32 fifo_intr_chsw_error_r(void)
268{
269 return 0x0000256cU;
270}
271static inline u32 fifo_intr_mmu_fault_id_r(void)
272{
273 return 0x0000259cU;
274}
275static inline u32 fifo_intr_mmu_fault_eng_id_graphics_v(void)
276{
277 return 0x00000000U;
278}
279static inline u32 fifo_intr_mmu_fault_eng_id_graphics_f(void)
280{
281 return 0x0U;
282}
283static inline u32 fifo_intr_mmu_fault_inst_r(u32 i)
284{
285 return 0x00002800U + i*16U;
286}
287static inline u32 fifo_intr_mmu_fault_inst_ptr_v(u32 r)
288{
289 return (r >> 0U) & 0xfffffffU;
290}
291static inline u32 fifo_intr_mmu_fault_inst_ptr_align_shift_v(void)
292{
293 return 0x0000000cU;
294}
295static inline u32 fifo_intr_mmu_fault_lo_r(u32 i)
296{
297 return 0x00002804U + i*16U;
298}
299static inline u32 fifo_intr_mmu_fault_hi_r(u32 i)
300{
301 return 0x00002808U + i*16U;
302}
303static inline u32 fifo_intr_mmu_fault_info_r(u32 i)
304{
305 return 0x0000280cU + i*16U;
306}
307static inline u32 fifo_intr_mmu_fault_info_type_v(u32 r)
308{
309 return (r >> 0U) & 0x1fU;
310}
311static inline u32 fifo_intr_mmu_fault_info_client_type_v(u32 r)
312{
313 return (r >> 20U) & 0x1U;
314}
315static inline u32 fifo_intr_mmu_fault_info_client_type_gpc_v(void)
316{
317 return 0x00000000U;
318}
319static inline u32 fifo_intr_mmu_fault_info_client_type_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) & 0x7fU;
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 0x00000004U;
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 0x00000009U;
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 0x00000004U;
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}
571static inline u32 fifo_replay_fault_buffer_lo_r(void)
572{
573 return 0x00002a70U;
574}
575static inline u32 fifo_replay_fault_buffer_lo_enable_v(u32 r)
576{
577 return (r >> 0U) & 0x1U;
578}
579static inline u32 fifo_replay_fault_buffer_lo_enable_true_v(void)
580{
581 return 0x00000001U;
582}
583static inline u32 fifo_replay_fault_buffer_lo_enable_false_v(void)
584{
585 return 0x00000000U;
586}
587static inline u32 fifo_replay_fault_buffer_lo_base_f(u32 v)
588{
589 return (v & 0xfffffU) << 12U;
590}
591static inline u32 fifo_replay_fault_buffer_lo_base_reset_v(void)
592{
593 return 0x00000000U;
594}
595static inline u32 fifo_replay_fault_buffer_hi_r(void)
596{
597 return 0x00002a74U;
598}
599static inline u32 fifo_replay_fault_buffer_hi_base_f(u32 v)
600{
601 return (v & 0xffU) << 0U;
602}
603static inline u32 fifo_replay_fault_buffer_hi_base_reset_v(void)
604{
605 return 0x00000000U;
606}
607static inline u32 fifo_replay_fault_buffer_size_r(void)
608{
609 return 0x00002a78U;
610}
611static inline u32 fifo_replay_fault_buffer_size_hw_f(u32 v)
612{
613 return (v & 0x3fffU) << 0U;
614}
615static inline u32 fifo_replay_fault_buffer_size_hw_entries_v(void)
616{
617 return 0x00001200U;
618}
619static inline u32 fifo_replay_fault_buffer_get_r(void)
620{
621 return 0x00002a7cU;
622}
623static inline u32 fifo_replay_fault_buffer_get_offset_hw_f(u32 v)
624{
625 return (v & 0x3fffU) << 0U;
626}
627static inline u32 fifo_replay_fault_buffer_get_offset_hw_init_v(void)
628{
629 return 0x00000000U;
630}
631static inline u32 fifo_replay_fault_buffer_put_r(void)
632{
633 return 0x00002a80U;
634}
635static inline u32 fifo_replay_fault_buffer_put_offset_hw_f(u32 v)
636{
637 return (v & 0x3fffU) << 0U;
638}
639static inline u32 fifo_replay_fault_buffer_put_offset_hw_init_v(void)
640{
641 return 0x00000000U;
642}
643static inline u32 fifo_replay_fault_buffer_info_r(void)
644{
645 return 0x00002a84U;
646}
647static inline u32 fifo_replay_fault_buffer_info_overflow_f(u32 v)
648{
649 return (v & 0x1U) << 0U;
650}
651static inline u32 fifo_replay_fault_buffer_info_overflow_false_v(void)
652{
653 return 0x00000000U;
654}
655static inline u32 fifo_replay_fault_buffer_info_overflow_true_v(void)
656{
657 return 0x00000001U;
658}
659static inline u32 fifo_replay_fault_buffer_info_overflow_clear_v(void)
660{
661 return 0x00000001U;
662}
663static inline u32 fifo_replay_fault_buffer_info_write_nack_f(u32 v)
664{
665 return (v & 0x1U) << 24U;
666}
667static inline u32 fifo_replay_fault_buffer_info_write_nack_false_v(void)
668{
669 return 0x00000000U;
670}
671static inline u32 fifo_replay_fault_buffer_info_write_nack_true_v(void)
672{
673 return 0x00000001U;
674}
675static inline u32 fifo_replay_fault_buffer_info_write_nack_clear_v(void)
676{
677 return 0x00000001U;
678}
679static inline u32 fifo_replay_fault_buffer_info_fault_while_buffer_disabled_f(u32 v)
680{
681 return (v & 0x1U) << 28U;
682}
683static inline u32 fifo_replay_fault_buffer_info_fault_while_buffer_disabled_false_v(void)
684{
685 return 0x00000000U;
686}
687static inline u32 fifo_replay_fault_buffer_info_fault_while_buffer_disabled_true_v(void)
688{
689 return 0x00000001U;
690}
691static inline u32 fifo_replay_fault_buffer_info_fault_while_buffer_disabled_clear_v(void)
692{
693 return 0x00000001U;
694}
695#endif
diff --git a/include/nvgpu/hw/gp106/hw_flush_gp106.h b/include/nvgpu/hw/gp106/hw_flush_gp106.h
deleted file mode 100644
index c4e1c32..0000000
--- a/include/nvgpu/hw/gp106/hw_flush_gp106.h
+++ /dev/null
@@ -1,187 +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_flush_gp106_h_
57#define _hw_flush_gp106_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/gp106/hw_fuse_gp106.h b/include/nvgpu/hw/gp106/hw_fuse_gp106.h
deleted file mode 100644
index bfb19b9..0000000
--- a/include/nvgpu/hw/gp106/hw_fuse_gp106.h
+++ /dev/null
@@ -1,275 +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_fuse_gp106_h_
57#define _hw_fuse_gp106_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_vin_cal_fuse_rev_r(void)
140{
141 return 0x0002164cU;
142}
143static inline u32 fuse_vin_cal_fuse_rev_data_v(u32 r)
144{
145 return (r >> 0U) & 0x3U;
146}
147static inline u32 fuse_vin_cal_gpc0_r(void)
148{
149 return 0x00021650U;
150}
151static inline u32 fuse_vin_cal_gpc0_icpt_int_data_s(void)
152{
153 return 12U;
154}
155static inline u32 fuse_vin_cal_gpc0_icpt_int_data_v(u32 r)
156{
157 return (r >> 16U) & 0xfffU;
158}
159static inline u32 fuse_vin_cal_gpc0_icpt_frac_data_s(void)
160{
161 return 2U;
162}
163static inline u32 fuse_vin_cal_gpc0_icpt_frac_data_v(u32 r)
164{
165 return (r >> 14U) & 0x3U;
166}
167static inline u32 fuse_vin_cal_gpc0_slope_int_data_s(void)
168{
169 return 4U;
170}
171static inline u32 fuse_vin_cal_gpc0_slope_int_data_v(u32 r)
172{
173 return (r >> 10U) & 0xfU;
174}
175static inline u32 fuse_vin_cal_gpc0_slope_frac_data_s(void)
176{
177 return 10U;
178}
179static inline u32 fuse_vin_cal_gpc0_slope_frac_data_v(u32 r)
180{
181 return (r >> 0U) & 0x3ffU;
182}
183static inline u32 fuse_vin_cal_gpc1_delta_r(void)
184{
185 return 0x00021654U;
186}
187static inline u32 fuse_vin_cal_gpc1_delta_icpt_int_data_s(void)
188{
189 return 8U;
190}
191static inline u32 fuse_vin_cal_gpc1_delta_icpt_int_data_v(u32 r)
192{
193 return (r >> 14U) & 0xffU;
194}
195static inline u32 fuse_vin_cal_gpc1_delta_icpt_frac_data_s(void)
196{
197 return 2U;
198}
199static inline u32 fuse_vin_cal_gpc1_delta_icpt_frac_data_v(u32 r)
200{
201 return (r >> 12U) & 0x3U;
202}
203static inline u32 fuse_vin_cal_gpc1_delta_icpt_sign_data_s(void)
204{
205 return 1U;
206}
207static inline u32 fuse_vin_cal_gpc1_delta_icpt_sign_data_v(u32 r)
208{
209 return (r >> 22U) & 0x1U;
210}
211static inline u32 fuse_vin_cal_gpc1_delta_slope_int_data_s(void)
212{
213 return 1U;
214}
215static inline u32 fuse_vin_cal_gpc1_delta_slope_int_data_v(u32 r)
216{
217 return (r >> 10U) & 0x1U;
218}
219static inline u32 fuse_vin_cal_gpc1_delta_slope_frac_data_s(void)
220{
221 return 10U;
222}
223static inline u32 fuse_vin_cal_gpc1_delta_slope_frac_data_v(u32 r)
224{
225 return (r >> 0U) & 0x3ffU;
226}
227static inline u32 fuse_vin_cal_gpc1_delta_slope_sign_data_s(void)
228{
229 return 1U;
230}
231static inline u32 fuse_vin_cal_gpc1_delta_slope_sign_data_v(u32 r)
232{
233 return (r >> 11U) & 0x1U;
234}
235static inline u32 fuse_vin_cal_gpc2_delta_r(void)
236{
237 return 0x00021658U;
238}
239static inline u32 fuse_vin_cal_gpc3_delta_r(void)
240{
241 return 0x0002165cU;
242}
243static inline u32 fuse_vin_cal_gpc4_delta_r(void)
244{
245 return 0x00021660U;
246}
247static inline u32 fuse_vin_cal_gpc5_delta_r(void)
248{
249 return 0x00021664U;
250}
251static inline u32 fuse_vin_cal_shared_delta_r(void)
252{
253 return 0x00021668U;
254}
255static inline u32 fuse_vin_cal_sram_delta_r(void)
256{
257 return 0x0002166cU;
258}
259static inline u32 fuse_vin_cal_sram_delta_icpt_int_data_s(void)
260{
261 return 9U;
262}
263static inline u32 fuse_vin_cal_sram_delta_icpt_int_data_v(u32 r)
264{
265 return (r >> 13U) & 0x1ffU;
266}
267static inline u32 fuse_vin_cal_sram_delta_icpt_frac_data_s(void)
268{
269 return 1U;
270}
271static inline u32 fuse_vin_cal_sram_delta_icpt_frac_data_v(u32 r)
272{
273 return (r >> 12U) & 0x1U;
274}
275#endif
diff --git a/include/nvgpu/hw/gp106/hw_gc6_gp106.h b/include/nvgpu/hw/gp106/hw_gc6_gp106.h
deleted file mode 100644
index 91e9d7b..0000000
--- a/include/nvgpu/hw/gp106/hw_gc6_gp106.h
+++ /dev/null
@@ -1,62 +0,0 @@
1/*
2 * Copyright (c) 2016, 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_gc6_gp106_h_
57#define _hw_gc6_gp106_h_
58static inline u32 gc6_sci_strap_r(void)
59{
60 return 0x00010ebb0;
61}
62#endif
diff --git a/include/nvgpu/hw/gp106/hw_gmmu_gp106.h b/include/nvgpu/hw/gp106/hw_gmmu_gp106.h
deleted file mode 100644
index 8369001..0000000
--- a/include/nvgpu/hw/gp106/hw_gmmu_gp106.h
+++ /dev/null
@@ -1,331 +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_gmmu_gp106_h_
57#define _hw_gmmu_gp106_h_
58
59static inline u32 gmmu_new_pde_is_pte_w(void)
60{
61 return 0U;
62}
63static inline u32 gmmu_new_pde_is_pte_false_f(void)
64{
65 return 0x0U;
66}
67static inline u32 gmmu_new_pde_aperture_w(void)
68{
69 return 0U;
70}
71static inline u32 gmmu_new_pde_aperture_invalid_f(void)
72{
73 return 0x0U;
74}
75static inline u32 gmmu_new_pde_aperture_video_memory_f(void)
76{
77 return 0x2U;
78}
79static inline u32 gmmu_new_pde_aperture_sys_mem_coh_f(void)
80{
81 return 0x4U;
82}
83static inline u32 gmmu_new_pde_aperture_sys_mem_ncoh_f(void)
84{
85 return 0x6U;
86}
87static inline u32 gmmu_new_pde_address_sys_f(u32 v)
88{
89 return (v & 0xffffffU) << 8U;
90}
91static inline u32 gmmu_new_pde_address_sys_w(void)
92{
93 return 0U;
94}
95static inline u32 gmmu_new_pde_vol_w(void)
96{
97 return 0U;
98}
99static inline u32 gmmu_new_pde_vol_true_f(void)
100{
101 return 0x8U;
102}
103static inline u32 gmmu_new_pde_vol_false_f(void)
104{
105 return 0x0U;
106}
107static inline u32 gmmu_new_pde_address_shift_v(void)
108{
109 return 0x0000000cU;
110}
111static inline u32 gmmu_new_pde__size_v(void)
112{
113 return 0x00000008U;
114}
115static inline u32 gmmu_new_dual_pde_is_pte_w(void)
116{
117 return 0U;
118}
119static inline u32 gmmu_new_dual_pde_is_pte_false_f(void)
120{
121 return 0x0U;
122}
123static inline u32 gmmu_new_dual_pde_aperture_big_w(void)
124{
125 return 0U;
126}
127static inline u32 gmmu_new_dual_pde_aperture_big_invalid_f(void)
128{
129 return 0x0U;
130}
131static inline u32 gmmu_new_dual_pde_aperture_big_video_memory_f(void)
132{
133 return 0x2U;
134}
135static inline u32 gmmu_new_dual_pde_aperture_big_sys_mem_coh_f(void)
136{
137 return 0x4U;
138}
139static inline u32 gmmu_new_dual_pde_aperture_big_sys_mem_ncoh_f(void)
140{
141 return 0x6U;
142}
143static inline u32 gmmu_new_dual_pde_address_big_sys_f(u32 v)
144{
145 return (v & 0xfffffffU) << 4U;
146}
147static inline u32 gmmu_new_dual_pde_address_big_sys_w(void)
148{
149 return 0U;
150}
151static inline u32 gmmu_new_dual_pde_aperture_small_w(void)
152{
153 return 2U;
154}
155static inline u32 gmmu_new_dual_pde_aperture_small_invalid_f(void)
156{
157 return 0x0U;
158}
159static inline u32 gmmu_new_dual_pde_aperture_small_video_memory_f(void)
160{
161 return 0x2U;
162}
163static inline u32 gmmu_new_dual_pde_aperture_small_sys_mem_coh_f(void)
164{
165 return 0x4U;
166}
167static inline u32 gmmu_new_dual_pde_aperture_small_sys_mem_ncoh_f(void)
168{
169 return 0x6U;
170}
171static inline u32 gmmu_new_dual_pde_vol_small_w(void)
172{
173 return 2U;
174}
175static inline u32 gmmu_new_dual_pde_vol_small_true_f(void)
176{
177 return 0x8U;
178}
179static inline u32 gmmu_new_dual_pde_vol_small_false_f(void)
180{
181 return 0x0U;
182}
183static inline u32 gmmu_new_dual_pde_vol_big_w(void)
184{
185 return 0U;
186}
187static inline u32 gmmu_new_dual_pde_vol_big_true_f(void)
188{
189 return 0x8U;
190}
191static inline u32 gmmu_new_dual_pde_vol_big_false_f(void)
192{
193 return 0x0U;
194}
195static inline u32 gmmu_new_dual_pde_address_small_sys_f(u32 v)
196{
197 return (v & 0xffffffU) << 8U;
198}
199static inline u32 gmmu_new_dual_pde_address_small_sys_w(void)
200{
201 return 2U;
202}
203static inline u32 gmmu_new_dual_pde_address_shift_v(void)
204{
205 return 0x0000000cU;
206}
207static inline u32 gmmu_new_dual_pde_address_big_shift_v(void)
208{
209 return 0x00000008U;
210}
211static inline u32 gmmu_new_dual_pde__size_v(void)
212{
213 return 0x00000010U;
214}
215static inline u32 gmmu_new_pte__size_v(void)
216{
217 return 0x00000008U;
218}
219static inline u32 gmmu_new_pte_valid_w(void)
220{
221 return 0U;
222}
223static inline u32 gmmu_new_pte_valid_true_f(void)
224{
225 return 0x1U;
226}
227static inline u32 gmmu_new_pte_valid_false_f(void)
228{
229 return 0x0U;
230}
231static inline u32 gmmu_new_pte_privilege_w(void)
232{
233 return 0U;
234}
235static inline u32 gmmu_new_pte_privilege_true_f(void)
236{
237 return 0x20U;
238}
239static inline u32 gmmu_new_pte_privilege_false_f(void)
240{
241 return 0x0U;
242}
243static inline u32 gmmu_new_pte_address_sys_f(u32 v)
244{
245 return (v & 0xffffffU) << 8U;
246}
247static inline u32 gmmu_new_pte_address_sys_w(void)
248{
249 return 0U;
250}
251static inline u32 gmmu_new_pte_address_vid_f(u32 v)
252{
253 return (v & 0xffffffU) << 8U;
254}
255static inline u32 gmmu_new_pte_address_vid_w(void)
256{
257 return 0U;
258}
259static inline u32 gmmu_new_pte_vol_w(void)
260{
261 return 0U;
262}
263static inline u32 gmmu_new_pte_vol_true_f(void)
264{
265 return 0x8U;
266}
267static inline u32 gmmu_new_pte_vol_false_f(void)
268{
269 return 0x0U;
270}
271static inline u32 gmmu_new_pte_aperture_w(void)
272{
273 return 0U;
274}
275static inline u32 gmmu_new_pte_aperture_video_memory_f(void)
276{
277 return 0x0U;
278}
279static inline u32 gmmu_new_pte_aperture_sys_mem_coh_f(void)
280{
281 return 0x4U;
282}
283static inline u32 gmmu_new_pte_aperture_sys_mem_ncoh_f(void)
284{
285 return 0x6U;
286}
287static inline u32 gmmu_new_pte_read_only_w(void)
288{
289 return 0U;
290}
291static inline u32 gmmu_new_pte_read_only_true_f(void)
292{
293 return 0x40U;
294}
295static inline u32 gmmu_new_pte_comptagline_f(u32 v)
296{
297 return (v & 0x3ffffU) << 4U;
298}
299static inline u32 gmmu_new_pte_comptagline_w(void)
300{
301 return 1U;
302}
303static inline u32 gmmu_new_pte_kind_f(u32 v)
304{
305 return (v & 0xffU) << 24U;
306}
307static inline u32 gmmu_new_pte_kind_w(void)
308{
309 return 1U;
310}
311static inline u32 gmmu_new_pte_address_shift_v(void)
312{
313 return 0x0000000cU;
314}
315static inline u32 gmmu_pte_kind_f(u32 v)
316{
317 return (v & 0xffU) << 4U;
318}
319static inline u32 gmmu_pte_kind_w(void)
320{
321 return 1U;
322}
323static inline u32 gmmu_pte_kind_invalid_v(void)
324{
325 return 0x000000ffU;
326}
327static inline u32 gmmu_pte_kind_pitch_v(void)
328{
329 return 0x00000000U;
330}
331#endif
diff --git a/include/nvgpu/hw/gp106/hw_gr_gp106.h b/include/nvgpu/hw/gp106/hw_gr_gp106.h
deleted file mode 100644
index ac82901..0000000
--- a/include/nvgpu/hw/gp106/hw_gr_gp106.h
+++ /dev/null
@@ -1,4167 +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_gr_gp106_h_
57#define _hw_gr_gp106_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) & 0xfffU;
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_activity_4_gpc0_s(void)
388{
389 return 3U;
390}
391static inline u32 gr_activity_4_gpc0_f(u32 v)
392{
393 return (v & 0x7U) << 0U;
394}
395static inline u32 gr_activity_4_gpc0_m(void)
396{
397 return 0x7U << 0U;
398}
399static inline u32 gr_activity_4_gpc0_v(u32 r)
400{
401 return (r >> 0U) & 0x7U;
402}
403static inline u32 gr_activity_4_gpc0_empty_v(void)
404{
405 return 0x00000000U;
406}
407static inline u32 gr_activity_4_gpc0_preempted_v(void)
408{
409 return 0x00000004U;
410}
411static inline u32 gr_pri_gpc0_gcc_dbg_r(void)
412{
413 return 0x00501000U;
414}
415static inline u32 gr_pri_gpcs_gcc_dbg_r(void)
416{
417 return 0x00419000U;
418}
419static inline u32 gr_pri_gpcs_gcc_dbg_invalidate_m(void)
420{
421 return 0x1U << 1U;
422}
423static inline u32 gr_pri_gpc0_tpc0_sm_cache_control_r(void)
424{
425 return 0x005046a4U;
426}
427static inline u32 gr_pri_gpcs_tpcs_sm_cache_control_r(void)
428{
429 return 0x00419ea4U;
430}
431static inline u32 gr_pri_gpcs_tpcs_sm_cache_control_invalidate_cache_m(void)
432{
433 return 0x1U << 0U;
434}
435static inline u32 gr_pri_sked_activity_r(void)
436{
437 return 0x00407054U;
438}
439static inline u32 gr_pri_gpc0_gpccs_gpc_activity0_r(void)
440{
441 return 0x00502c80U;
442}
443static inline u32 gr_pri_gpc0_gpccs_gpc_activity1_r(void)
444{
445 return 0x00502c84U;
446}
447static inline u32 gr_pri_gpc0_gpccs_gpc_activity2_r(void)
448{
449 return 0x00502c88U;
450}
451static inline u32 gr_pri_gpc0_gpccs_gpc_activity3_r(void)
452{
453 return 0x00502c8cU;
454}
455static inline u32 gr_pri_gpc0_tpc0_tpccs_tpc_activity_0_r(void)
456{
457 return 0x00504500U;
458}
459static inline u32 gr_pri_gpc0_tpc1_tpccs_tpc_activity_0_r(void)
460{
461 return 0x00504d00U;
462}
463static inline u32 gr_pri_gpc0_tpcs_tpccs_tpc_activity_0_r(void)
464{
465 return 0x00501d00U;
466}
467static inline u32 gr_pri_gpcs_gpccs_gpc_activity_0_r(void)
468{
469 return 0x0041ac80U;
470}
471static inline u32 gr_pri_gpcs_gpccs_gpc_activity_1_r(void)
472{
473 return 0x0041ac84U;
474}
475static inline u32 gr_pri_gpcs_gpccs_gpc_activity_2_r(void)
476{
477 return 0x0041ac88U;
478}
479static inline u32 gr_pri_gpcs_gpccs_gpc_activity_3_r(void)
480{
481 return 0x0041ac8cU;
482}
483static inline u32 gr_pri_gpcs_tpc0_tpccs_tpc_activity_0_r(void)
484{
485 return 0x0041c500U;
486}
487static inline u32 gr_pri_gpcs_tpc1_tpccs_tpc_activity_0_r(void)
488{
489 return 0x0041cd00U;
490}
491static inline u32 gr_pri_gpcs_tpcs_tpccs_tpc_activity_0_r(void)
492{
493 return 0x00419d00U;
494}
495static inline u32 gr_pri_be0_becs_be_activity0_r(void)
496{
497 return 0x00410200U;
498}
499static inline u32 gr_pri_be1_becs_be_activity0_r(void)
500{
501 return 0x00410600U;
502}
503static inline u32 gr_pri_bes_becs_be_activity0_r(void)
504{
505 return 0x00408a00U;
506}
507static inline u32 gr_pri_ds_mpipe_status_r(void)
508{
509 return 0x00405858U;
510}
511static inline u32 gr_pri_fe_go_idle_info_r(void)
512{
513 return 0x00404194U;
514}
515static inline u32 gr_pri_gpc0_tpc0_tex_m_tex_subunits_status_r(void)
516{
517 return 0x00504238U;
518}
519static inline u32 gr_pri_gpc0_tpc0_sm_lrf_ecc_status_r(void)
520{
521 return 0x005046b8U;
522}
523static inline u32 gr_pri_gpc0_tpc0_sm_lrf_ecc_status_single_err_detected_qrfdp0_pending_f(void)
524{
525 return 0x10U;
526}
527static inline u32 gr_pri_gpc0_tpc0_sm_lrf_ecc_status_single_err_detected_qrfdp1_pending_f(void)
528{
529 return 0x20U;
530}
531static inline u32 gr_pri_gpc0_tpc0_sm_lrf_ecc_status_single_err_detected_qrfdp2_pending_f(void)
532{
533 return 0x40U;
534}
535static inline u32 gr_pri_gpc0_tpc0_sm_lrf_ecc_status_single_err_detected_qrfdp3_pending_f(void)
536{
537 return 0x80U;
538}
539static inline u32 gr_pri_gpc0_tpc0_sm_lrf_ecc_status_double_err_detected_qrfdp0_pending_f(void)
540{
541 return 0x100U;
542}
543static inline u32 gr_pri_gpc0_tpc0_sm_lrf_ecc_status_double_err_detected_qrfdp1_pending_f(void)
544{
545 return 0x200U;
546}
547static inline u32 gr_pri_gpc0_tpc0_sm_lrf_ecc_status_double_err_detected_qrfdp2_pending_f(void)
548{
549 return 0x400U;
550}
551static inline u32 gr_pri_gpc0_tpc0_sm_lrf_ecc_status_double_err_detected_qrfdp3_pending_f(void)
552{
553 return 0x800U;
554}
555static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_status_r(void)
556{
557 return 0x005044a0U;
558}
559static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_status_single_err_corrected_shm0_pending_f(void)
560{
561 return 0x1U;
562}
563static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_status_single_err_corrected_shm1_pending_f(void)
564{
565 return 0x2U;
566}
567static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_status_single_err_detected_shm0_pending_f(void)
568{
569 return 0x10U;
570}
571static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_status_single_err_detected_shm1_pending_f(void)
572{
573 return 0x20U;
574}
575static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_status_double_err_detected_shm0_pending_f(void)
576{
577 return 0x100U;
578}
579static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_status_double_err_detected_shm1_pending_f(void)
580{
581 return 0x200U;
582}
583static inline u32 gr_pri_gpc0_tpc0_sm_lrf_ecc_single_err_count_r(void)
584{
585 return 0x005046bcU;
586}
587static inline u32 gr_pri_gpc0_tpc0_sm_lrf_ecc_double_err_count_r(void)
588{
589 return 0x005046c0U;
590}
591static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_err_count_r(void)
592{
593 return 0x005044a4U;
594}
595static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_err_count_single_corrected_m(void)
596{
597 return 0xffU << 0U;
598}
599static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_err_count_single_corrected_v(u32 r)
600{
601 return (r >> 0U) & 0xffU;
602}
603static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_err_count_single_detected_m(void)
604{
605 return 0xffU << 8U;
606}
607static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_err_count_single_detected_v(u32 r)
608{
609 return (r >> 8U) & 0xffU;
610}
611static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_err_count_double_detected_m(void)
612{
613 return 0xffU << 16U;
614}
615static inline u32 gr_pri_gpc0_tpc0_sm_shm_ecc_err_count_double_detected_v(u32 r)
616{
617 return (r >> 16U) & 0xffU;
618}
619static inline u32 gr_pri_gpc0_tpc0_tex_m_routing_r(void)
620{
621 return 0x005042c4U;
622}
623static inline u32 gr_pri_gpc0_tpc0_tex_m_routing_sel_default_f(void)
624{
625 return 0x0U;
626}
627static inline u32 gr_pri_gpc0_tpc0_tex_m_routing_sel_pipe0_f(void)
628{
629 return 0x1U;
630}
631static inline u32 gr_pri_gpc0_tpc0_tex_m_routing_sel_pipe1_f(void)
632{
633 return 0x2U;
634}
635static inline u32 gr_pri_be0_crop_status1_r(void)
636{
637 return 0x00410134U;
638}
639static inline u32 gr_pri_bes_crop_status1_r(void)
640{
641 return 0x00408934U;
642}
643static inline u32 gr_pri_be0_zrop_status_r(void)
644{
645 return 0x00410048U;
646}
647static inline u32 gr_pri_be0_zrop_status2_r(void)
648{
649 return 0x0041004cU;
650}
651static inline u32 gr_pri_bes_zrop_status_r(void)
652{
653 return 0x00408848U;
654}
655static inline u32 gr_pri_bes_zrop_status2_r(void)
656{
657 return 0x0040884cU;
658}
659static inline u32 gr_pipe_bundle_address_r(void)
660{
661 return 0x00400200U;
662}
663static inline u32 gr_pipe_bundle_address_value_v(u32 r)
664{
665 return (r >> 0U) & 0xffffU;
666}
667static inline u32 gr_pipe_bundle_data_r(void)
668{
669 return 0x00400204U;
670}
671static inline u32 gr_pipe_bundle_config_r(void)
672{
673 return 0x00400208U;
674}
675static inline u32 gr_pipe_bundle_config_override_pipe_mode_disabled_f(void)
676{
677 return 0x0U;
678}
679static inline u32 gr_pipe_bundle_config_override_pipe_mode_enabled_f(void)
680{
681 return 0x80000000U;
682}
683static inline u32 gr_fe_hww_esr_r(void)
684{
685 return 0x00404000U;
686}
687static inline u32 gr_fe_hww_esr_reset_active_f(void)
688{
689 return 0x40000000U;
690}
691static inline u32 gr_fe_hww_esr_en_enable_f(void)
692{
693 return 0x80000000U;
694}
695static inline u32 gr_fe_hww_esr_info_r(void)
696{
697 return 0x004041b0U;
698}
699static inline u32 gr_fe_go_idle_timeout_r(void)
700{
701 return 0x00404154U;
702}
703static inline u32 gr_fe_go_idle_timeout_count_f(u32 v)
704{
705 return (v & 0xffffffffU) << 0U;
706}
707static inline u32 gr_fe_go_idle_timeout_count_disabled_f(void)
708{
709 return 0x0U;
710}
711static inline u32 gr_fe_go_idle_timeout_count_prod_f(void)
712{
713 return 0x1800U;
714}
715static inline u32 gr_fe_object_table_r(u32 i)
716{
717 return 0x00404200U + i*4U;
718}
719static inline u32 gr_fe_object_table_nvclass_v(u32 r)
720{
721 return (r >> 0U) & 0xffffU;
722}
723static inline u32 gr_fe_tpc_fs_r(void)
724{
725 return 0x004041c4U;
726}
727static inline u32 gr_pri_mme_shadow_raw_index_r(void)
728{
729 return 0x00404488U;
730}
731static inline u32 gr_pri_mme_shadow_raw_index_write_trigger_f(void)
732{
733 return 0x80000000U;
734}
735static inline u32 gr_pri_mme_shadow_raw_data_r(void)
736{
737 return 0x0040448cU;
738}
739static inline u32 gr_mme_hww_esr_r(void)
740{
741 return 0x00404490U;
742}
743static inline u32 gr_mme_hww_esr_reset_active_f(void)
744{
745 return 0x40000000U;
746}
747static inline u32 gr_mme_hww_esr_en_enable_f(void)
748{
749 return 0x80000000U;
750}
751static inline u32 gr_mme_hww_esr_info_r(void)
752{
753 return 0x00404494U;
754}
755static inline u32 gr_memfmt_hww_esr_r(void)
756{
757 return 0x00404600U;
758}
759static inline u32 gr_memfmt_hww_esr_reset_active_f(void)
760{
761 return 0x40000000U;
762}
763static inline u32 gr_memfmt_hww_esr_en_enable_f(void)
764{
765 return 0x80000000U;
766}
767static inline u32 gr_fecs_cpuctl_r(void)
768{
769 return 0x00409100U;
770}
771static inline u32 gr_fecs_cpuctl_startcpu_f(u32 v)
772{
773 return (v & 0x1U) << 1U;
774}
775static inline u32 gr_fecs_cpuctl_alias_r(void)
776{
777 return 0x00409130U;
778}
779static inline u32 gr_fecs_cpuctl_alias_startcpu_f(u32 v)
780{
781 return (v & 0x1U) << 1U;
782}
783static inline u32 gr_fecs_dmactl_r(void)
784{
785 return 0x0040910cU;
786}
787static inline u32 gr_fecs_dmactl_require_ctx_f(u32 v)
788{
789 return (v & 0x1U) << 0U;
790}
791static inline u32 gr_fecs_dmactl_dmem_scrubbing_m(void)
792{
793 return 0x1U << 1U;
794}
795static inline u32 gr_fecs_dmactl_imem_scrubbing_m(void)
796{
797 return 0x1U << 2U;
798}
799static inline u32 gr_fecs_os_r(void)
800{
801 return 0x00409080U;
802}
803static inline u32 gr_fecs_idlestate_r(void)
804{
805 return 0x0040904cU;
806}
807static inline u32 gr_fecs_mailbox0_r(void)
808{
809 return 0x00409040U;
810}
811static inline u32 gr_fecs_mailbox1_r(void)
812{
813 return 0x00409044U;
814}
815static inline u32 gr_fecs_irqstat_r(void)
816{
817 return 0x00409008U;
818}
819static inline u32 gr_fecs_irqmode_r(void)
820{
821 return 0x0040900cU;
822}
823static inline u32 gr_fecs_irqmask_r(void)
824{
825 return 0x00409018U;
826}
827static inline u32 gr_fecs_irqdest_r(void)
828{
829 return 0x0040901cU;
830}
831static inline u32 gr_fecs_curctx_r(void)
832{
833 return 0x00409050U;
834}
835static inline u32 gr_fecs_nxtctx_r(void)
836{
837 return 0x00409054U;
838}
839static inline u32 gr_fecs_engctl_r(void)
840{
841 return 0x004090a4U;
842}
843static inline u32 gr_fecs_debug1_r(void)
844{
845 return 0x00409090U;
846}
847static inline u32 gr_fecs_debuginfo_r(void)
848{
849 return 0x00409094U;
850}
851static inline u32 gr_fecs_icd_cmd_r(void)
852{
853 return 0x00409200U;
854}
855static inline u32 gr_fecs_icd_cmd_opc_s(void)
856{
857 return 4U;
858}
859static inline u32 gr_fecs_icd_cmd_opc_f(u32 v)
860{
861 return (v & 0xfU) << 0U;
862}
863static inline u32 gr_fecs_icd_cmd_opc_m(void)
864{
865 return 0xfU << 0U;
866}
867static inline u32 gr_fecs_icd_cmd_opc_v(u32 r)
868{
869 return (r >> 0U) & 0xfU;
870}
871static inline u32 gr_fecs_icd_cmd_opc_rreg_f(void)
872{
873 return 0x8U;
874}
875static inline u32 gr_fecs_icd_cmd_opc_rstat_f(void)
876{
877 return 0xeU;
878}
879static inline u32 gr_fecs_icd_cmd_idx_f(u32 v)
880{
881 return (v & 0x1fU) << 8U;
882}
883static inline u32 gr_fecs_icd_rdata_r(void)
884{
885 return 0x0040920cU;
886}
887static inline u32 gr_fecs_imemc_r(u32 i)
888{
889 return 0x00409180U + i*16U;
890}
891static inline u32 gr_fecs_imemc_offs_f(u32 v)
892{
893 return (v & 0x3fU) << 2U;
894}
895static inline u32 gr_fecs_imemc_blk_f(u32 v)
896{
897 return (v & 0xffU) << 8U;
898}
899static inline u32 gr_fecs_imemc_aincw_f(u32 v)
900{
901 return (v & 0x1U) << 24U;
902}
903static inline u32 gr_fecs_imemd_r(u32 i)
904{
905 return 0x00409184U + i*16U;
906}
907static inline u32 gr_fecs_imemt_r(u32 i)
908{
909 return 0x00409188U + i*16U;
910}
911static inline u32 gr_fecs_imemt_tag_f(u32 v)
912{
913 return (v & 0xffffU) << 0U;
914}
915static inline u32 gr_fecs_dmemc_r(u32 i)
916{
917 return 0x004091c0U + i*8U;
918}
919static inline u32 gr_fecs_dmemc_offs_s(void)
920{
921 return 6U;
922}
923static inline u32 gr_fecs_dmemc_offs_f(u32 v)
924{
925 return (v & 0x3fU) << 2U;
926}
927static inline u32 gr_fecs_dmemc_offs_m(void)
928{
929 return 0x3fU << 2U;
930}
931static inline u32 gr_fecs_dmemc_offs_v(u32 r)
932{
933 return (r >> 2U) & 0x3fU;
934}
935static inline u32 gr_fecs_dmemc_blk_f(u32 v)
936{
937 return (v & 0xffU) << 8U;
938}
939static inline u32 gr_fecs_dmemc_aincw_f(u32 v)
940{
941 return (v & 0x1U) << 24U;
942}
943static inline u32 gr_fecs_dmemd_r(u32 i)
944{
945 return 0x004091c4U + i*8U;
946}
947static inline u32 gr_fecs_dmatrfbase_r(void)
948{
949 return 0x00409110U;
950}
951static inline u32 gr_fecs_dmatrfmoffs_r(void)
952{
953 return 0x00409114U;
954}
955static inline u32 gr_fecs_dmatrffboffs_r(void)
956{
957 return 0x0040911cU;
958}
959static inline u32 gr_fecs_dmatrfcmd_r(void)
960{
961 return 0x00409118U;
962}
963static inline u32 gr_fecs_dmatrfcmd_imem_f(u32 v)
964{
965 return (v & 0x1U) << 4U;
966}
967static inline u32 gr_fecs_dmatrfcmd_write_f(u32 v)
968{
969 return (v & 0x1U) << 5U;
970}
971static inline u32 gr_fecs_dmatrfcmd_size_f(u32 v)
972{
973 return (v & 0x7U) << 8U;
974}
975static inline u32 gr_fecs_dmatrfcmd_ctxdma_f(u32 v)
976{
977 return (v & 0x7U) << 12U;
978}
979static inline u32 gr_fecs_bootvec_r(void)
980{
981 return 0x00409104U;
982}
983static inline u32 gr_fecs_bootvec_vec_f(u32 v)
984{
985 return (v & 0xffffffffU) << 0U;
986}
987static inline u32 gr_fecs_falcon_hwcfg_r(void)
988{
989 return 0x00409108U;
990}
991static inline u32 gr_gpcs_gpccs_falcon_hwcfg_r(void)
992{
993 return 0x0041a108U;
994}
995static inline u32 gr_fecs_falcon_rm_r(void)
996{
997 return 0x00409084U;
998}
999static inline u32 gr_fecs_current_ctx_r(void)
1000{
1001 return 0x00409b00U;
1002}
1003static inline u32 gr_fecs_current_ctx_ptr_f(u32 v)
1004{
1005 return (v & 0xfffffffU) << 0U;
1006}
1007static inline u32 gr_fecs_current_ctx_ptr_v(u32 r)
1008{
1009 return (r >> 0U) & 0xfffffffU;
1010}
1011static inline u32 gr_fecs_current_ctx_target_s(void)
1012{
1013 return 2U;
1014}
1015static inline u32 gr_fecs_current_ctx_target_f(u32 v)
1016{
1017 return (v & 0x3U) << 28U;
1018}
1019static inline u32 gr_fecs_current_ctx_target_m(void)
1020{
1021 return 0x3U << 28U;
1022}
1023static inline u32 gr_fecs_current_ctx_target_v(u32 r)
1024{
1025 return (r >> 28U) & 0x3U;
1026}
1027static inline u32 gr_fecs_current_ctx_target_vid_mem_f(void)
1028{
1029 return 0x0U;
1030}
1031static inline u32 gr_fecs_current_ctx_target_sys_mem_coh_f(void)
1032{
1033 return 0x20000000U;
1034}
1035static inline u32 gr_fecs_current_ctx_target_sys_mem_ncoh_f(void)
1036{
1037 return 0x30000000U;
1038}
1039static inline u32 gr_fecs_current_ctx_valid_s(void)
1040{
1041 return 1U;
1042}
1043static inline u32 gr_fecs_current_ctx_valid_f(u32 v)
1044{
1045 return (v & 0x1U) << 31U;
1046}
1047static inline u32 gr_fecs_current_ctx_valid_m(void)
1048{
1049 return 0x1U << 31U;
1050}
1051static inline u32 gr_fecs_current_ctx_valid_v(u32 r)
1052{
1053 return (r >> 31U) & 0x1U;
1054}
1055static inline u32 gr_fecs_current_ctx_valid_false_f(void)
1056{
1057 return 0x0U;
1058}
1059static inline u32 gr_fecs_method_data_r(void)
1060{
1061 return 0x00409500U;
1062}
1063static inline u32 gr_fecs_method_push_r(void)
1064{
1065 return 0x00409504U;
1066}
1067static inline u32 gr_fecs_method_push_adr_f(u32 v)
1068{
1069 return (v & 0xfffU) << 0U;
1070}
1071static inline u32 gr_fecs_method_push_adr_bind_pointer_v(void)
1072{
1073 return 0x00000003U;
1074}
1075static inline u32 gr_fecs_method_push_adr_bind_pointer_f(void)
1076{
1077 return 0x3U;
1078}
1079static inline u32 gr_fecs_method_push_adr_discover_image_size_v(void)
1080{
1081 return 0x00000010U;
1082}
1083static inline u32 gr_fecs_method_push_adr_wfi_golden_save_v(void)
1084{
1085 return 0x00000009U;
1086}
1087static inline u32 gr_fecs_method_push_adr_restore_golden_v(void)
1088{
1089 return 0x00000015U;
1090}
1091static inline u32 gr_fecs_method_push_adr_discover_zcull_image_size_v(void)
1092{
1093 return 0x00000016U;
1094}
1095static inline u32 gr_fecs_method_push_adr_discover_pm_image_size_v(void)
1096{
1097 return 0x00000025U;
1098}
1099static inline u32 gr_fecs_method_push_adr_discover_reglist_image_size_v(void)
1100{
1101 return 0x00000030U;
1102}
1103static inline u32 gr_fecs_method_push_adr_set_reglist_bind_instance_v(void)
1104{
1105 return 0x00000031U;
1106}
1107static inline u32 gr_fecs_method_push_adr_set_reglist_virtual_address_v(void)
1108{
1109 return 0x00000032U;
1110}
1111static inline u32 gr_fecs_method_push_adr_stop_ctxsw_v(void)
1112{
1113 return 0x00000038U;
1114}
1115static inline u32 gr_fecs_method_push_adr_start_ctxsw_v(void)
1116{
1117 return 0x00000039U;
1118}
1119static inline u32 gr_fecs_method_push_adr_set_watchdog_timeout_f(void)
1120{
1121 return 0x21U;
1122}
1123static inline u32 gr_fecs_method_push_adr_discover_preemption_image_size_v(void)
1124{
1125 return 0x0000001aU;
1126}
1127static inline u32 gr_fecs_method_push_adr_halt_pipeline_v(void)
1128{
1129 return 0x00000004U;
1130}
1131static inline u32 gr_fecs_host_int_status_r(void)
1132{
1133 return 0x00409c18U;
1134}
1135static inline u32 gr_fecs_host_int_status_fault_during_ctxsw_f(u32 v)
1136{
1137 return (v & 0x1U) << 16U;
1138}
1139static inline u32 gr_fecs_host_int_status_umimp_firmware_method_f(u32 v)
1140{
1141 return (v & 0x1U) << 17U;
1142}
1143static inline u32 gr_fecs_host_int_status_umimp_illegal_method_f(u32 v)
1144{
1145 return (v & 0x1U) << 18U;
1146}
1147static inline u32 gr_fecs_host_int_clear_r(void)
1148{
1149 return 0x00409c20U;
1150}
1151static inline u32 gr_fecs_host_int_enable_r(void)
1152{
1153 return 0x00409c24U;
1154}
1155static inline u32 gr_fecs_host_int_enable_fault_during_ctxsw_enable_f(void)
1156{
1157 return 0x10000U;
1158}
1159static inline u32 gr_fecs_host_int_enable_umimp_firmware_method_enable_f(void)
1160{
1161 return 0x20000U;
1162}
1163static inline u32 gr_fecs_host_int_enable_umimp_illegal_method_enable_f(void)
1164{
1165 return 0x40000U;
1166}
1167static inline u32 gr_fecs_host_int_enable_watchdog_enable_f(void)
1168{
1169 return 0x80000U;
1170}
1171static inline u32 gr_fecs_ctxsw_reset_ctl_r(void)
1172{
1173 return 0x00409614U;
1174}
1175static inline u32 gr_fecs_ctxsw_reset_ctl_sys_halt_disabled_f(void)
1176{
1177 return 0x0U;
1178}
1179static inline u32 gr_fecs_ctxsw_reset_ctl_gpc_halt_disabled_f(void)
1180{
1181 return 0x0U;
1182}
1183static inline u32 gr_fecs_ctxsw_reset_ctl_be_halt_disabled_f(void)
1184{
1185 return 0x0U;
1186}
1187static inline u32 gr_fecs_ctxsw_reset_ctl_sys_engine_reset_disabled_f(void)
1188{
1189 return 0x10U;
1190}
1191static inline u32 gr_fecs_ctxsw_reset_ctl_gpc_engine_reset_disabled_f(void)
1192{
1193 return 0x20U;
1194}
1195static inline u32 gr_fecs_ctxsw_reset_ctl_be_engine_reset_disabled_f(void)
1196{
1197 return 0x40U;
1198}
1199static inline u32 gr_fecs_ctxsw_reset_ctl_sys_context_reset_enabled_f(void)
1200{
1201 return 0x0U;
1202}
1203static inline u32 gr_fecs_ctxsw_reset_ctl_sys_context_reset_disabled_f(void)
1204{
1205 return 0x100U;
1206}
1207static inline u32 gr_fecs_ctxsw_reset_ctl_gpc_context_reset_enabled_f(void)
1208{
1209 return 0x0U;
1210}
1211static inline u32 gr_fecs_ctxsw_reset_ctl_gpc_context_reset_disabled_f(void)
1212{
1213 return 0x200U;
1214}
1215static inline u32 gr_fecs_ctxsw_reset_ctl_be_context_reset_s(void)
1216{
1217 return 1U;
1218}
1219static inline u32 gr_fecs_ctxsw_reset_ctl_be_context_reset_f(u32 v)
1220{
1221 return (v & 0x1U) << 10U;
1222}
1223static inline u32 gr_fecs_ctxsw_reset_ctl_be_context_reset_m(void)
1224{
1225 return 0x1U << 10U;
1226}
1227static inline u32 gr_fecs_ctxsw_reset_ctl_be_context_reset_v(u32 r)
1228{
1229 return (r >> 10U) & 0x1U;
1230}
1231static inline u32 gr_fecs_ctxsw_reset_ctl_be_context_reset_enabled_f(void)
1232{
1233 return 0x0U;
1234}
1235static inline u32 gr_fecs_ctxsw_reset_ctl_be_context_reset_disabled_f(void)
1236{
1237 return 0x400U;
1238}
1239static inline u32 gr_fecs_ctx_state_store_major_rev_id_r(void)
1240{
1241 return 0x0040960cU;
1242}
1243static inline u32 gr_fecs_ctxsw_mailbox_r(u32 i)
1244{
1245 return 0x00409800U + i*4U;
1246}
1247static inline u32 gr_fecs_ctxsw_mailbox__size_1_v(void)
1248{
1249 return 0x00000010U;
1250}
1251static inline u32 gr_fecs_ctxsw_mailbox_value_f(u32 v)
1252{
1253 return (v & 0xffffffffU) << 0U;
1254}
1255static inline u32 gr_fecs_ctxsw_mailbox_value_pass_v(void)
1256{
1257 return 0x00000001U;
1258}
1259static inline u32 gr_fecs_ctxsw_mailbox_value_fail_v(void)
1260{
1261 return 0x00000002U;
1262}
1263static inline u32 gr_fecs_ctxsw_mailbox_set_r(u32 i)
1264{
1265 return 0x004098c0U + i*4U;
1266}
1267static inline u32 gr_fecs_ctxsw_mailbox_set_value_f(u32 v)
1268{
1269 return (v & 0xffffffffU) << 0U;
1270}
1271static inline u32 gr_fecs_ctxsw_mailbox_clear_r(u32 i)
1272{
1273 return 0x00409840U + i*4U;
1274}
1275static inline u32 gr_fecs_ctxsw_mailbox_clear_value_f(u32 v)
1276{
1277 return (v & 0xffffffffU) << 0U;
1278}
1279static inline u32 gr_fecs_fs_r(void)
1280{
1281 return 0x00409604U;
1282}
1283static inline u32 gr_fecs_fs_num_available_gpcs_s(void)
1284{
1285 return 5U;
1286}
1287static inline u32 gr_fecs_fs_num_available_gpcs_f(u32 v)
1288{
1289 return (v & 0x1fU) << 0U;
1290}
1291static inline u32 gr_fecs_fs_num_available_gpcs_m(void)
1292{
1293 return 0x1fU << 0U;
1294}
1295static inline u32 gr_fecs_fs_num_available_gpcs_v(u32 r)
1296{
1297 return (r >> 0U) & 0x1fU;
1298}
1299static inline u32 gr_fecs_fs_num_available_fbps_s(void)
1300{
1301 return 5U;
1302}
1303static inline u32 gr_fecs_fs_num_available_fbps_f(u32 v)
1304{
1305 return (v & 0x1fU) << 16U;
1306}
1307static inline u32 gr_fecs_fs_num_available_fbps_m(void)
1308{
1309 return 0x1fU << 16U;
1310}
1311static inline u32 gr_fecs_fs_num_available_fbps_v(u32 r)
1312{
1313 return (r >> 16U) & 0x1fU;
1314}
1315static inline u32 gr_fecs_cfg_r(void)
1316{
1317 return 0x00409620U;
1318}
1319static inline u32 gr_fecs_cfg_imem_sz_v(u32 r)
1320{
1321 return (r >> 0U) & 0xffU;
1322}
1323static inline u32 gr_fecs_rc_lanes_r(void)
1324{
1325 return 0x00409880U;
1326}
1327static inline u32 gr_fecs_rc_lanes_num_chains_s(void)
1328{
1329 return 6U;
1330}
1331static inline u32 gr_fecs_rc_lanes_num_chains_f(u32 v)
1332{
1333 return (v & 0x3fU) << 0U;
1334}
1335static inline u32 gr_fecs_rc_lanes_num_chains_m(void)
1336{
1337 return 0x3fU << 0U;
1338}
1339static inline u32 gr_fecs_rc_lanes_num_chains_v(u32 r)
1340{
1341 return (r >> 0U) & 0x3fU;
1342}
1343static inline u32 gr_fecs_ctxsw_status_1_r(void)
1344{
1345 return 0x00409400U;
1346}
1347static inline u32 gr_fecs_ctxsw_status_1_arb_busy_s(void)
1348{
1349 return 1U;
1350}
1351static inline u32 gr_fecs_ctxsw_status_1_arb_busy_f(u32 v)
1352{
1353 return (v & 0x1U) << 12U;
1354}
1355static inline u32 gr_fecs_ctxsw_status_1_arb_busy_m(void)
1356{
1357 return 0x1U << 12U;
1358}
1359static inline u32 gr_fecs_ctxsw_status_1_arb_busy_v(u32 r)
1360{
1361 return (r >> 12U) & 0x1U;
1362}
1363static inline u32 gr_fecs_arb_ctx_adr_r(void)
1364{
1365 return 0x00409a24U;
1366}
1367static inline u32 gr_fecs_new_ctx_r(void)
1368{
1369 return 0x00409b04U;
1370}
1371static inline u32 gr_fecs_new_ctx_ptr_s(void)
1372{
1373 return 28U;
1374}
1375static inline u32 gr_fecs_new_ctx_ptr_f(u32 v)
1376{
1377 return (v & 0xfffffffU) << 0U;
1378}
1379static inline u32 gr_fecs_new_ctx_ptr_m(void)
1380{
1381 return 0xfffffffU << 0U;
1382}
1383static inline u32 gr_fecs_new_ctx_ptr_v(u32 r)
1384{
1385 return (r >> 0U) & 0xfffffffU;
1386}
1387static inline u32 gr_fecs_new_ctx_target_s(void)
1388{
1389 return 2U;
1390}
1391static inline u32 gr_fecs_new_ctx_target_f(u32 v)
1392{
1393 return (v & 0x3U) << 28U;
1394}
1395static inline u32 gr_fecs_new_ctx_target_m(void)
1396{
1397 return 0x3U << 28U;
1398}
1399static inline u32 gr_fecs_new_ctx_target_v(u32 r)
1400{
1401 return (r >> 28U) & 0x3U;
1402}
1403static inline u32 gr_fecs_new_ctx_target_vid_mem_f(void)
1404{
1405 return 0x0U;
1406}
1407static inline u32 gr_fecs_new_ctx_target_sys_mem_ncoh_f(void)
1408{
1409 return 0x30000000U;
1410}
1411static inline u32 gr_fecs_new_ctx_target_sys_mem_coh_f(void)
1412{
1413 return 0x20000000U;
1414}
1415static inline u32 gr_fecs_new_ctx_valid_s(void)
1416{
1417 return 1U;
1418}
1419static inline u32 gr_fecs_new_ctx_valid_f(u32 v)
1420{
1421 return (v & 0x1U) << 31U;
1422}
1423static inline u32 gr_fecs_new_ctx_valid_m(void)
1424{
1425 return 0x1U << 31U;
1426}
1427static inline u32 gr_fecs_new_ctx_valid_v(u32 r)
1428{
1429 return (r >> 31U) & 0x1U;
1430}
1431static inline u32 gr_fecs_arb_ctx_ptr_r(void)
1432{
1433 return 0x00409a0cU;
1434}
1435static inline u32 gr_fecs_arb_ctx_ptr_ptr_s(void)
1436{
1437 return 28U;
1438}
1439static inline u32 gr_fecs_arb_ctx_ptr_ptr_f(u32 v)
1440{
1441 return (v & 0xfffffffU) << 0U;
1442}
1443static inline u32 gr_fecs_arb_ctx_ptr_ptr_m(void)
1444{
1445 return 0xfffffffU << 0U;
1446}
1447static inline u32 gr_fecs_arb_ctx_ptr_ptr_v(u32 r)
1448{
1449 return (r >> 0U) & 0xfffffffU;
1450}
1451static inline u32 gr_fecs_arb_ctx_ptr_target_s(void)
1452{
1453 return 2U;
1454}
1455static inline u32 gr_fecs_arb_ctx_ptr_target_f(u32 v)
1456{
1457 return (v & 0x3U) << 28U;
1458}
1459static inline u32 gr_fecs_arb_ctx_ptr_target_m(void)
1460{
1461 return 0x3U << 28U;
1462}
1463static inline u32 gr_fecs_arb_ctx_ptr_target_v(u32 r)
1464{
1465 return (r >> 28U) & 0x3U;
1466}
1467static inline u32 gr_fecs_arb_ctx_ptr_target_vid_mem_f(void)
1468{
1469 return 0x0U;
1470}
1471static inline u32 gr_fecs_arb_ctx_ptr_target_sys_mem_ncoh_f(void)
1472{
1473 return 0x30000000U;
1474}
1475static inline u32 gr_fecs_arb_ctx_ptr_target_sys_mem_coh_f(void)
1476{
1477 return 0x20000000U;
1478}
1479static inline u32 gr_fecs_arb_ctx_cmd_r(void)
1480{
1481 return 0x00409a10U;
1482}
1483static inline u32 gr_fecs_arb_ctx_cmd_cmd_s(void)
1484{
1485 return 5U;
1486}
1487static inline u32 gr_fecs_arb_ctx_cmd_cmd_f(u32 v)
1488{
1489 return (v & 0x1fU) << 0U;
1490}
1491static inline u32 gr_fecs_arb_ctx_cmd_cmd_m(void)
1492{
1493 return 0x1fU << 0U;
1494}
1495static inline u32 gr_fecs_arb_ctx_cmd_cmd_v(u32 r)
1496{
1497 return (r >> 0U) & 0x1fU;
1498}
1499static inline u32 gr_fecs_ctxsw_status_fe_0_r(void)
1500{
1501 return 0x00409c00U;
1502}
1503static inline u32 gr_gpc0_gpccs_ctxsw_status_gpc_0_r(void)
1504{
1505 return 0x00502c04U;
1506}
1507static inline u32 gr_gpc0_gpccs_ctxsw_status_1_r(void)
1508{
1509 return 0x00502400U;
1510}
1511static inline u32 gr_gpc0_gpccs_ctxsw_mailbox__size_1_v(void)
1512{
1513 return 0x00000010U;
1514}
1515static inline u32 gr_fecs_ctxsw_idlestate_r(void)
1516{
1517 return 0x00409420U;
1518}
1519static inline u32 gr_fecs_feature_override_ecc_r(void)
1520{
1521 return 0x00409658U;
1522}
1523static inline u32 gr_gpc0_gpccs_ctxsw_idlestate_r(void)
1524{
1525 return 0x00502420U;
1526}
1527static inline u32 gr_rstr2d_gpc_map0_r(void)
1528{
1529 return 0x0040780cU;
1530}
1531static inline u32 gr_rstr2d_gpc_map1_r(void)
1532{
1533 return 0x00407810U;
1534}
1535static inline u32 gr_rstr2d_gpc_map2_r(void)
1536{
1537 return 0x00407814U;
1538}
1539static inline u32 gr_rstr2d_gpc_map3_r(void)
1540{
1541 return 0x00407818U;
1542}
1543static inline u32 gr_rstr2d_gpc_map4_r(void)
1544{
1545 return 0x0040781cU;
1546}
1547static inline u32 gr_rstr2d_gpc_map5_r(void)
1548{
1549 return 0x00407820U;
1550}
1551static inline u32 gr_rstr2d_map_table_cfg_r(void)
1552{
1553 return 0x004078bcU;
1554}
1555static inline u32 gr_rstr2d_map_table_cfg_row_offset_f(u32 v)
1556{
1557 return (v & 0xffU) << 0U;
1558}
1559static inline u32 gr_rstr2d_map_table_cfg_num_entries_f(u32 v)
1560{
1561 return (v & 0xffU) << 8U;
1562}
1563static inline u32 gr_pd_hww_esr_r(void)
1564{
1565 return 0x00406018U;
1566}
1567static inline u32 gr_pd_hww_esr_reset_active_f(void)
1568{
1569 return 0x40000000U;
1570}
1571static inline u32 gr_pd_hww_esr_en_enable_f(void)
1572{
1573 return 0x80000000U;
1574}
1575static inline u32 gr_pd_num_tpc_per_gpc_r(u32 i)
1576{
1577 return 0x00406028U + i*4U;
1578}
1579static inline u32 gr_pd_num_tpc_per_gpc__size_1_v(void)
1580{
1581 return 0x00000004U;
1582}
1583static inline u32 gr_pd_num_tpc_per_gpc_count0_f(u32 v)
1584{
1585 return (v & 0xfU) << 0U;
1586}
1587static inline u32 gr_pd_num_tpc_per_gpc_count1_f(u32 v)
1588{
1589 return (v & 0xfU) << 4U;
1590}
1591static inline u32 gr_pd_num_tpc_per_gpc_count2_f(u32 v)
1592{
1593 return (v & 0xfU) << 8U;
1594}
1595static inline u32 gr_pd_num_tpc_per_gpc_count3_f(u32 v)
1596{
1597 return (v & 0xfU) << 12U;
1598}
1599static inline u32 gr_pd_num_tpc_per_gpc_count4_f(u32 v)
1600{
1601 return (v & 0xfU) << 16U;
1602}
1603static inline u32 gr_pd_num_tpc_per_gpc_count5_f(u32 v)
1604{
1605 return (v & 0xfU) << 20U;
1606}
1607static inline u32 gr_pd_num_tpc_per_gpc_count6_f(u32 v)
1608{
1609 return (v & 0xfU) << 24U;
1610}
1611static inline u32 gr_pd_num_tpc_per_gpc_count7_f(u32 v)
1612{
1613 return (v & 0xfU) << 28U;
1614}
1615static inline u32 gr_pd_ab_dist_cfg0_r(void)
1616{
1617 return 0x004064c0U;
1618}
1619static inline u32 gr_pd_ab_dist_cfg0_timeslice_enable_en_f(void)
1620{
1621 return 0x80000000U;
1622}
1623static inline u32 gr_pd_ab_dist_cfg0_timeslice_enable_dis_f(void)
1624{
1625 return 0x0U;
1626}
1627static inline u32 gr_pd_ab_dist_cfg1_r(void)
1628{
1629 return 0x004064c4U;
1630}
1631static inline u32 gr_pd_ab_dist_cfg1_max_batches_init_f(void)
1632{
1633 return 0xffffU;
1634}
1635static inline u32 gr_pd_ab_dist_cfg1_max_output_f(u32 v)
1636{
1637 return (v & 0xffffU) << 16U;
1638}
1639static inline u32 gr_pd_ab_dist_cfg1_max_output_granularity_v(void)
1640{
1641 return 0x00000080U;
1642}
1643static inline u32 gr_pd_ab_dist_cfg2_r(void)
1644{
1645 return 0x004064c8U;
1646}
1647static inline u32 gr_pd_ab_dist_cfg2_token_limit_f(u32 v)
1648{
1649 return (v & 0x1fffU) << 0U;
1650}
1651static inline u32 gr_pd_ab_dist_cfg2_token_limit_init_v(void)
1652{
1653 return 0x00000900U;
1654}
1655static inline u32 gr_pd_ab_dist_cfg2_state_limit_f(u32 v)
1656{
1657 return (v & 0x1fffU) << 16U;
1658}
1659static inline u32 gr_pd_ab_dist_cfg2_state_limit_scc_bundle_granularity_v(void)
1660{
1661 return 0x00000020U;
1662}
1663static inline u32 gr_pd_ab_dist_cfg2_state_limit_min_gpm_fifo_depths_v(void)
1664{
1665 return 0x00000900U;
1666}
1667static inline u32 gr_pd_dist_skip_table_r(u32 i)
1668{
1669 return 0x004064d0U + i*4U;
1670}
1671static inline u32 gr_pd_dist_skip_table__size_1_v(void)
1672{
1673 return 0x00000008U;
1674}
1675static inline u32 gr_pd_dist_skip_table_gpc_4n0_mask_f(u32 v)
1676{
1677 return (v & 0xffU) << 0U;
1678}
1679static inline u32 gr_pd_dist_skip_table_gpc_4n1_mask_f(u32 v)
1680{
1681 return (v & 0xffU) << 8U;
1682}
1683static inline u32 gr_pd_dist_skip_table_gpc_4n2_mask_f(u32 v)
1684{
1685 return (v & 0xffU) << 16U;
1686}
1687static inline u32 gr_pd_dist_skip_table_gpc_4n3_mask_f(u32 v)
1688{
1689 return (v & 0xffU) << 24U;
1690}
1691static inline u32 gr_ds_debug_r(void)
1692{
1693 return 0x00405800U;
1694}
1695static inline u32 gr_ds_debug_timeslice_mode_disable_f(void)
1696{
1697 return 0x0U;
1698}
1699static inline u32 gr_ds_debug_timeslice_mode_enable_f(void)
1700{
1701 return 0x8000000U;
1702}
1703static inline u32 gr_ds_zbc_color_r_r(void)
1704{
1705 return 0x00405804U;
1706}
1707static inline u32 gr_ds_zbc_color_r_val_f(u32 v)
1708{
1709 return (v & 0xffffffffU) << 0U;
1710}
1711static inline u32 gr_ds_zbc_color_g_r(void)
1712{
1713 return 0x00405808U;
1714}
1715static inline u32 gr_ds_zbc_color_g_val_f(u32 v)
1716{
1717 return (v & 0xffffffffU) << 0U;
1718}
1719static inline u32 gr_ds_zbc_color_b_r(void)
1720{
1721 return 0x0040580cU;
1722}
1723static inline u32 gr_ds_zbc_color_b_val_f(u32 v)
1724{
1725 return (v & 0xffffffffU) << 0U;
1726}
1727static inline u32 gr_ds_zbc_color_a_r(void)
1728{
1729 return 0x00405810U;
1730}
1731static inline u32 gr_ds_zbc_color_a_val_f(u32 v)
1732{
1733 return (v & 0xffffffffU) << 0U;
1734}
1735static inline u32 gr_ds_zbc_color_fmt_r(void)
1736{
1737 return 0x00405814U;
1738}
1739static inline u32 gr_ds_zbc_color_fmt_val_f(u32 v)
1740{
1741 return (v & 0x7fU) << 0U;
1742}
1743static inline u32 gr_ds_zbc_color_fmt_val_invalid_f(void)
1744{
1745 return 0x0U;
1746}
1747static inline u32 gr_ds_zbc_color_fmt_val_zero_v(void)
1748{
1749 return 0x00000001U;
1750}
1751static inline u32 gr_ds_zbc_color_fmt_val_unorm_one_v(void)
1752{
1753 return 0x00000002U;
1754}
1755static inline u32 gr_ds_zbc_color_fmt_val_rf32_gf32_bf32_af32_v(void)
1756{
1757 return 0x00000004U;
1758}
1759static inline u32 gr_ds_zbc_color_fmt_val_a8_b8_g8_r8_v(void)
1760{
1761 return 0x00000028U;
1762}
1763static inline u32 gr_ds_zbc_z_r(void)
1764{
1765 return 0x00405818U;
1766}
1767static inline u32 gr_ds_zbc_z_val_s(void)
1768{
1769 return 32U;
1770}
1771static inline u32 gr_ds_zbc_z_val_f(u32 v)
1772{
1773 return (v & 0xffffffffU) << 0U;
1774}
1775static inline u32 gr_ds_zbc_z_val_m(void)
1776{
1777 return 0xffffffffU << 0U;
1778}
1779static inline u32 gr_ds_zbc_z_val_v(u32 r)
1780{
1781 return (r >> 0U) & 0xffffffffU;
1782}
1783static inline u32 gr_ds_zbc_z_val__init_v(void)
1784{
1785 return 0x00000000U;
1786}
1787static inline u32 gr_ds_zbc_z_val__init_f(void)
1788{
1789 return 0x0U;
1790}
1791static inline u32 gr_ds_zbc_z_fmt_r(void)
1792{
1793 return 0x0040581cU;
1794}
1795static inline u32 gr_ds_zbc_z_fmt_val_f(u32 v)
1796{
1797 return (v & 0x1U) << 0U;
1798}
1799static inline u32 gr_ds_zbc_z_fmt_val_invalid_f(void)
1800{
1801 return 0x0U;
1802}
1803static inline u32 gr_ds_zbc_z_fmt_val_fp32_v(void)
1804{
1805 return 0x00000001U;
1806}
1807static inline u32 gr_ds_zbc_tbl_index_r(void)
1808{
1809 return 0x00405820U;
1810}
1811static inline u32 gr_ds_zbc_tbl_index_val_f(u32 v)
1812{
1813 return (v & 0xfU) << 0U;
1814}
1815static inline u32 gr_ds_zbc_tbl_ld_r(void)
1816{
1817 return 0x00405824U;
1818}
1819static inline u32 gr_ds_zbc_tbl_ld_select_c_f(void)
1820{
1821 return 0x0U;
1822}
1823static inline u32 gr_ds_zbc_tbl_ld_select_z_f(void)
1824{
1825 return 0x1U;
1826}
1827static inline u32 gr_ds_zbc_tbl_ld_action_write_f(void)
1828{
1829 return 0x0U;
1830}
1831static inline u32 gr_ds_zbc_tbl_ld_trigger_active_f(void)
1832{
1833 return 0x4U;
1834}
1835static inline u32 gr_ds_tga_constraintlogic_beta_r(void)
1836{
1837 return 0x00405830U;
1838}
1839static inline u32 gr_ds_tga_constraintlogic_beta_cbsize_f(u32 v)
1840{
1841 return (v & 0x3fffffU) << 0U;
1842}
1843static inline u32 gr_ds_tga_constraintlogic_alpha_r(void)
1844{
1845 return 0x0040585cU;
1846}
1847static inline u32 gr_ds_tga_constraintlogic_alpha_cbsize_f(u32 v)
1848{
1849 return (v & 0xffffU) << 0U;
1850}
1851static inline u32 gr_ds_hww_esr_r(void)
1852{
1853 return 0x00405840U;
1854}
1855static inline u32 gr_ds_hww_esr_reset_s(void)
1856{
1857 return 1U;
1858}
1859static inline u32 gr_ds_hww_esr_reset_f(u32 v)
1860{
1861 return (v & 0x1U) << 30U;
1862}
1863static inline u32 gr_ds_hww_esr_reset_m(void)
1864{
1865 return 0x1U << 30U;
1866}
1867static inline u32 gr_ds_hww_esr_reset_v(u32 r)
1868{
1869 return (r >> 30U) & 0x1U;
1870}
1871static inline u32 gr_ds_hww_esr_reset_task_v(void)
1872{
1873 return 0x00000001U;
1874}
1875static inline u32 gr_ds_hww_esr_reset_task_f(void)
1876{
1877 return 0x40000000U;
1878}
1879static inline u32 gr_ds_hww_esr_en_enabled_f(void)
1880{
1881 return 0x80000000U;
1882}
1883static inline u32 gr_ds_hww_esr_2_r(void)
1884{
1885 return 0x00405848U;
1886}
1887static inline u32 gr_ds_hww_esr_2_reset_s(void)
1888{
1889 return 1U;
1890}
1891static inline u32 gr_ds_hww_esr_2_reset_f(u32 v)
1892{
1893 return (v & 0x1U) << 30U;
1894}
1895static inline u32 gr_ds_hww_esr_2_reset_m(void)
1896{
1897 return 0x1U << 30U;
1898}
1899static inline u32 gr_ds_hww_esr_2_reset_v(u32 r)
1900{
1901 return (r >> 30U) & 0x1U;
1902}
1903static inline u32 gr_ds_hww_esr_2_reset_task_v(void)
1904{
1905 return 0x00000001U;
1906}
1907static inline u32 gr_ds_hww_esr_2_reset_task_f(void)
1908{
1909 return 0x40000000U;
1910}
1911static inline u32 gr_ds_hww_esr_2_en_enabled_f(void)
1912{
1913 return 0x80000000U;
1914}
1915static inline u32 gr_ds_hww_report_mask_r(void)
1916{
1917 return 0x00405844U;
1918}
1919static inline u32 gr_ds_hww_report_mask_sph0_err_report_f(void)
1920{
1921 return 0x1U;
1922}
1923static inline u32 gr_ds_hww_report_mask_sph1_err_report_f(void)
1924{
1925 return 0x2U;
1926}
1927static inline u32 gr_ds_hww_report_mask_sph2_err_report_f(void)
1928{
1929 return 0x4U;
1930}
1931static inline u32 gr_ds_hww_report_mask_sph3_err_report_f(void)
1932{
1933 return 0x8U;
1934}
1935static inline u32 gr_ds_hww_report_mask_sph4_err_report_f(void)
1936{
1937 return 0x10U;
1938}
1939static inline u32 gr_ds_hww_report_mask_sph5_err_report_f(void)
1940{
1941 return 0x20U;
1942}
1943static inline u32 gr_ds_hww_report_mask_sph6_err_report_f(void)
1944{
1945 return 0x40U;
1946}
1947static inline u32 gr_ds_hww_report_mask_sph7_err_report_f(void)
1948{
1949 return 0x80U;
1950}
1951static inline u32 gr_ds_hww_report_mask_sph8_err_report_f(void)
1952{
1953 return 0x100U;
1954}
1955static inline u32 gr_ds_hww_report_mask_sph9_err_report_f(void)
1956{
1957 return 0x200U;
1958}
1959static inline u32 gr_ds_hww_report_mask_sph10_err_report_f(void)
1960{
1961 return 0x400U;
1962}
1963static inline u32 gr_ds_hww_report_mask_sph11_err_report_f(void)
1964{
1965 return 0x800U;
1966}
1967static inline u32 gr_ds_hww_report_mask_sph12_err_report_f(void)
1968{
1969 return 0x1000U;
1970}
1971static inline u32 gr_ds_hww_report_mask_sph13_err_report_f(void)
1972{
1973 return 0x2000U;
1974}
1975static inline u32 gr_ds_hww_report_mask_sph14_err_report_f(void)
1976{
1977 return 0x4000U;
1978}
1979static inline u32 gr_ds_hww_report_mask_sph15_err_report_f(void)
1980{
1981 return 0x8000U;
1982}
1983static inline u32 gr_ds_hww_report_mask_sph16_err_report_f(void)
1984{
1985 return 0x10000U;
1986}
1987static inline u32 gr_ds_hww_report_mask_sph17_err_report_f(void)
1988{
1989 return 0x20000U;
1990}
1991static inline u32 gr_ds_hww_report_mask_sph18_err_report_f(void)
1992{
1993 return 0x40000U;
1994}
1995static inline u32 gr_ds_hww_report_mask_sph19_err_report_f(void)
1996{
1997 return 0x80000U;
1998}
1999static inline u32 gr_ds_hww_report_mask_sph20_err_report_f(void)
2000{
2001 return 0x100000U;
2002}
2003static inline u32 gr_ds_hww_report_mask_sph21_err_report_f(void)
2004{
2005 return 0x200000U;
2006}
2007static inline u32 gr_ds_hww_report_mask_sph22_err_report_f(void)
2008{
2009 return 0x400000U;
2010}
2011static inline u32 gr_ds_hww_report_mask_sph23_err_report_f(void)
2012{
2013 return 0x800000U;
2014}
2015static inline u32 gr_ds_hww_report_mask_2_r(void)
2016{
2017 return 0x0040584cU;
2018}
2019static inline u32 gr_ds_hww_report_mask_2_sph24_err_report_f(void)
2020{
2021 return 0x1U;
2022}
2023static inline u32 gr_ds_num_tpc_per_gpc_r(u32 i)
2024{
2025 return 0x00405870U + i*4U;
2026}
2027static inline u32 gr_scc_bundle_cb_base_r(void)
2028{
2029 return 0x00408004U;
2030}
2031static inline u32 gr_scc_bundle_cb_base_addr_39_8_f(u32 v)
2032{
2033 return (v & 0xffffffffU) << 0U;
2034}
2035static inline u32 gr_scc_bundle_cb_base_addr_39_8_align_bits_v(void)
2036{
2037 return 0x00000008U;
2038}
2039static inline u32 gr_scc_bundle_cb_size_r(void)
2040{
2041 return 0x00408008U;
2042}
2043static inline u32 gr_scc_bundle_cb_size_div_256b_f(u32 v)
2044{
2045 return (v & 0x7ffU) << 0U;
2046}
2047static inline u32 gr_scc_bundle_cb_size_div_256b__prod_v(void)
2048{
2049 return 0x00000030U;
2050}
2051static inline u32 gr_scc_bundle_cb_size_div_256b_byte_granularity_v(void)
2052{
2053 return 0x00000100U;
2054}
2055static inline u32 gr_scc_bundle_cb_size_valid_false_v(void)
2056{
2057 return 0x00000000U;
2058}
2059static inline u32 gr_scc_bundle_cb_size_valid_false_f(void)
2060{
2061 return 0x0U;
2062}
2063static inline u32 gr_scc_bundle_cb_size_valid_true_f(void)
2064{
2065 return 0x80000000U;
2066}
2067static inline u32 gr_scc_pagepool_base_r(void)
2068{
2069 return 0x0040800cU;
2070}
2071static inline u32 gr_scc_pagepool_base_addr_39_8_f(u32 v)
2072{
2073 return (v & 0xffffffffU) << 0U;
2074}
2075static inline u32 gr_scc_pagepool_base_addr_39_8_align_bits_v(void)
2076{
2077 return 0x00000008U;
2078}
2079static inline u32 gr_scc_pagepool_r(void)
2080{
2081 return 0x00408010U;
2082}
2083static inline u32 gr_scc_pagepool_total_pages_f(u32 v)
2084{
2085 return (v & 0x3ffU) << 0U;
2086}
2087static inline u32 gr_scc_pagepool_total_pages_hwmax_v(void)
2088{
2089 return 0x00000000U;
2090}
2091static inline u32 gr_scc_pagepool_total_pages_hwmax_value_v(void)
2092{
2093 return 0x00000200U;
2094}
2095static inline u32 gr_scc_pagepool_total_pages_byte_granularity_v(void)
2096{
2097 return 0x00000100U;
2098}
2099static inline u32 gr_scc_pagepool_max_valid_pages_s(void)
2100{
2101 return 10U;
2102}
2103static inline u32 gr_scc_pagepool_max_valid_pages_f(u32 v)
2104{
2105 return (v & 0x3ffU) << 10U;
2106}
2107static inline u32 gr_scc_pagepool_max_valid_pages_m(void)
2108{
2109 return 0x3ffU << 10U;
2110}
2111static inline u32 gr_scc_pagepool_max_valid_pages_v(u32 r)
2112{
2113 return (r >> 10U) & 0x3ffU;
2114}
2115static inline u32 gr_scc_pagepool_valid_true_f(void)
2116{
2117 return 0x80000000U;
2118}
2119static inline u32 gr_scc_init_r(void)
2120{
2121 return 0x0040802cU;
2122}
2123static inline u32 gr_scc_init_ram_trigger_f(void)
2124{
2125 return 0x1U;
2126}
2127static inline u32 gr_scc_hww_esr_r(void)
2128{
2129 return 0x00408030U;
2130}
2131static inline u32 gr_scc_hww_esr_reset_active_f(void)
2132{
2133 return 0x40000000U;
2134}
2135static inline u32 gr_scc_hww_esr_en_enable_f(void)
2136{
2137 return 0x80000000U;
2138}
2139static inline u32 gr_sked_hww_esr_r(void)
2140{
2141 return 0x00407020U;
2142}
2143static inline u32 gr_sked_hww_esr_reset_active_f(void)
2144{
2145 return 0x40000000U;
2146}
2147static inline u32 gr_cwd_fs_r(void)
2148{
2149 return 0x00405b00U;
2150}
2151static inline u32 gr_cwd_fs_num_gpcs_f(u32 v)
2152{
2153 return (v & 0xffU) << 0U;
2154}
2155static inline u32 gr_cwd_fs_num_tpcs_f(u32 v)
2156{
2157 return (v & 0xffU) << 8U;
2158}
2159static inline u32 gr_cwd_gpc_tpc_id_r(u32 i)
2160{
2161 return 0x00405b60U + i*4U;
2162}
2163static inline u32 gr_cwd_gpc_tpc_id_tpc0_s(void)
2164{
2165 return 4U;
2166}
2167static inline u32 gr_cwd_gpc_tpc_id_tpc0_f(u32 v)
2168{
2169 return (v & 0xfU) << 0U;
2170}
2171static inline u32 gr_cwd_gpc_tpc_id_gpc0_s(void)
2172{
2173 return 4U;
2174}
2175static inline u32 gr_cwd_gpc_tpc_id_gpc0_f(u32 v)
2176{
2177 return (v & 0xfU) << 4U;
2178}
2179static inline u32 gr_cwd_gpc_tpc_id_tpc1_f(u32 v)
2180{
2181 return (v & 0xfU) << 8U;
2182}
2183static inline u32 gr_cwd_sm_id_r(u32 i)
2184{
2185 return 0x00405ba0U + i*4U;
2186}
2187static inline u32 gr_cwd_sm_id__size_1_v(void)
2188{
2189 return 0x00000010U;
2190}
2191static inline u32 gr_cwd_sm_id_tpc0_f(u32 v)
2192{
2193 return (v & 0xffU) << 0U;
2194}
2195static inline u32 gr_cwd_sm_id_tpc1_f(u32 v)
2196{
2197 return (v & 0xffU) << 8U;
2198}
2199static inline u32 gr_gpc0_fs_gpc_r(void)
2200{
2201 return 0x00502608U;
2202}
2203static inline u32 gr_gpc0_fs_gpc_num_available_tpcs_v(u32 r)
2204{
2205 return (r >> 0U) & 0x1fU;
2206}
2207static inline u32 gr_gpc0_fs_gpc_num_available_zculls_v(u32 r)
2208{
2209 return (r >> 16U) & 0x1fU;
2210}
2211static inline u32 gr_gpc0_cfg_r(void)
2212{
2213 return 0x00502620U;
2214}
2215static inline u32 gr_gpc0_cfg_imem_sz_v(u32 r)
2216{
2217 return (r >> 0U) & 0xffU;
2218}
2219static inline u32 gr_gpccs_rc_lanes_r(void)
2220{
2221 return 0x00502880U;
2222}
2223static inline u32 gr_gpccs_rc_lanes_num_chains_s(void)
2224{
2225 return 6U;
2226}
2227static inline u32 gr_gpccs_rc_lanes_num_chains_f(u32 v)
2228{
2229 return (v & 0x3fU) << 0U;
2230}
2231static inline u32 gr_gpccs_rc_lanes_num_chains_m(void)
2232{
2233 return 0x3fU << 0U;
2234}
2235static inline u32 gr_gpccs_rc_lanes_num_chains_v(u32 r)
2236{
2237 return (r >> 0U) & 0x3fU;
2238}
2239static inline u32 gr_gpccs_rc_lane_size_r(void)
2240{
2241 return 0x00502910U;
2242}
2243static inline u32 gr_gpccs_rc_lane_size_v_s(void)
2244{
2245 return 24U;
2246}
2247static inline u32 gr_gpccs_rc_lane_size_v_f(u32 v)
2248{
2249 return (v & 0xffffffU) << 0U;
2250}
2251static inline u32 gr_gpccs_rc_lane_size_v_m(void)
2252{
2253 return 0xffffffU << 0U;
2254}
2255static inline u32 gr_gpccs_rc_lane_size_v_v(u32 r)
2256{
2257 return (r >> 0U) & 0xffffffU;
2258}
2259static inline u32 gr_gpccs_rc_lane_size_v_0_v(void)
2260{
2261 return 0x00000000U;
2262}
2263static inline u32 gr_gpccs_rc_lane_size_v_0_f(void)
2264{
2265 return 0x0U;
2266}
2267static inline u32 gr_gpc0_zcull_fs_r(void)
2268{
2269 return 0x00500910U;
2270}
2271static inline u32 gr_gpc0_zcull_fs_num_sms_f(u32 v)
2272{
2273 return (v & 0x1ffU) << 0U;
2274}
2275static inline u32 gr_gpc0_zcull_fs_num_active_banks_f(u32 v)
2276{
2277 return (v & 0xfU) << 16U;
2278}
2279static inline u32 gr_gpc0_zcull_ram_addr_r(void)
2280{
2281 return 0x00500914U;
2282}
2283static inline u32 gr_gpc0_zcull_ram_addr_tiles_per_hypertile_row_per_gpc_f(u32 v)
2284{
2285 return (v & 0xfU) << 0U;
2286}
2287static inline u32 gr_gpc0_zcull_ram_addr_row_offset_f(u32 v)
2288{
2289 return (v & 0xfU) << 8U;
2290}
2291static inline u32 gr_gpc0_zcull_sm_num_rcp_r(void)
2292{
2293 return 0x00500918U;
2294}
2295static inline u32 gr_gpc0_zcull_sm_num_rcp_conservative_f(u32 v)
2296{
2297 return (v & 0xffffffU) << 0U;
2298}
2299static inline u32 gr_gpc0_zcull_sm_num_rcp_conservative__max_v(void)
2300{
2301 return 0x00800000U;
2302}
2303static inline u32 gr_gpc0_zcull_total_ram_size_r(void)
2304{
2305 return 0x00500920U;
2306}
2307static inline u32 gr_gpc0_zcull_total_ram_size_num_aliquots_f(u32 v)
2308{
2309 return (v & 0xffffU) << 0U;
2310}
2311static inline u32 gr_gpc0_zcull_zcsize_r(u32 i)
2312{
2313 return 0x00500a04U + i*32U;
2314}
2315static inline u32 gr_gpc0_zcull_zcsize_height_subregion__multiple_v(void)
2316{
2317 return 0x00000040U;
2318}
2319static inline u32 gr_gpc0_zcull_zcsize_width_subregion__multiple_v(void)
2320{
2321 return 0x00000010U;
2322}
2323static inline u32 gr_gpc0_gpm_pd_sm_id_r(u32 i)
2324{
2325 return 0x00500c10U + i*4U;
2326}
2327static inline u32 gr_gpc0_gpm_pd_sm_id_id_f(u32 v)
2328{
2329 return (v & 0xffU) << 0U;
2330}
2331static inline u32 gr_gpc0_gpm_pd_pes_tpc_id_mask_r(u32 i)
2332{
2333 return 0x00500c30U + i*4U;
2334}
2335static inline u32 gr_gpc0_gpm_pd_pes_tpc_id_mask_mask_v(u32 r)
2336{
2337 return (r >> 0U) & 0xffU;
2338}
2339static inline u32 gr_gpc0_tpc0_pe_cfg_smid_r(void)
2340{
2341 return 0x00504088U;
2342}
2343static inline u32 gr_gpc0_tpc0_pe_cfg_smid_value_f(u32 v)
2344{
2345 return (v & 0xffffU) << 0U;
2346}
2347static inline u32 gr_gpc0_tpc0_sm_cfg_r(void)
2348{
2349 return 0x00504698U;
2350}
2351static inline u32 gr_gpc0_tpc0_sm_cfg_sm_id_f(u32 v)
2352{
2353 return (v & 0xffffU) << 0U;
2354}
2355static inline u32 gr_gpc0_tpc0_sm_arch_r(void)
2356{
2357 return 0x0050469cU;
2358}
2359static inline u32 gr_gpc0_tpc0_sm_arch_warp_count_v(u32 r)
2360{
2361 return (r >> 0U) & 0xffU;
2362}
2363static inline u32 gr_gpc0_tpc0_sm_arch_spa_version_v(u32 r)
2364{
2365 return (r >> 8U) & 0xfffU;
2366}
2367static inline u32 gr_gpc0_tpc0_sm_arch_sm_version_v(u32 r)
2368{
2369 return (r >> 20U) & 0xfffU;
2370}
2371static inline u32 gr_gpc0_ppc0_pes_vsc_strem_r(void)
2372{
2373 return 0x00503018U;
2374}
2375static inline u32 gr_gpc0_ppc0_pes_vsc_strem_master_pe_m(void)
2376{
2377 return 0x1U << 0U;
2378}
2379static inline u32 gr_gpc0_ppc0_pes_vsc_strem_master_pe_true_f(void)
2380{
2381 return 0x1U;
2382}
2383static inline u32 gr_gpc0_ppc0_cbm_beta_cb_size_r(void)
2384{
2385 return 0x005030c0U;
2386}
2387static inline u32 gr_gpc0_ppc0_cbm_beta_cb_size_v_f(u32 v)
2388{
2389 return (v & 0x3fffffU) << 0U;
2390}
2391static inline u32 gr_gpc0_ppc0_cbm_beta_cb_size_v_m(void)
2392{
2393 return 0x3fffffU << 0U;
2394}
2395static inline u32 gr_gpc0_ppc0_cbm_beta_cb_size_v_default_v(void)
2396{
2397 return 0x00000320U;
2398}
2399static inline u32 gr_gpc0_ppc0_cbm_beta_cb_size_v_gfxp_v(void)
2400{
2401 return 0x00000ba8U;
2402}
2403static inline u32 gr_gpc0_ppc0_cbm_beta_cb_size_v_granularity_v(void)
2404{
2405 return 0x00000020U;
2406}
2407static inline u32 gr_gpc0_ppc0_cbm_beta_cb_offset_r(void)
2408{
2409 return 0x005030f4U;
2410}
2411static inline u32 gr_gpc0_ppc0_cbm_alpha_cb_size_r(void)
2412{
2413 return 0x005030e4U;
2414}
2415static inline u32 gr_gpc0_ppc0_cbm_alpha_cb_size_v_f(u32 v)
2416{
2417 return (v & 0xffffU) << 0U;
2418}
2419static inline u32 gr_gpc0_ppc0_cbm_alpha_cb_size_v_m(void)
2420{
2421 return 0xffffU << 0U;
2422}
2423static inline u32 gr_gpc0_ppc0_cbm_alpha_cb_size_v_default_v(void)
2424{
2425 return 0x00000800U;
2426}
2427static inline u32 gr_gpc0_ppc0_cbm_alpha_cb_size_v_granularity_v(void)
2428{
2429 return 0x00000020U;
2430}
2431static inline u32 gr_gpc0_ppc0_cbm_alpha_cb_offset_r(void)
2432{
2433 return 0x005030f8U;
2434}
2435static inline u32 gr_gpc0_ppc0_cbm_beta_steady_state_cb_size_r(void)
2436{
2437 return 0x005030f0U;
2438}
2439static inline u32 gr_gpc0_ppc0_cbm_beta_steady_state_cb_size_v_f(u32 v)
2440{
2441 return (v & 0x3fffffU) << 0U;
2442}
2443static inline u32 gr_gpc0_ppc0_cbm_beta_steady_state_cb_size_v_default_v(void)
2444{
2445 return 0x00000320U;
2446}
2447static inline u32 gr_gpcs_tpcs_tex_rm_cb_0_r(void)
2448{
2449 return 0x00419b00U;
2450}
2451static inline u32 gr_gpcs_tpcs_tex_rm_cb_0_base_addr_43_12_f(u32 v)
2452{
2453 return (v & 0xffffffffU) << 0U;
2454}
2455static inline u32 gr_gpcs_tpcs_tex_rm_cb_1_r(void)
2456{
2457 return 0x00419b04U;
2458}
2459static inline u32 gr_gpcs_tpcs_tex_rm_cb_1_size_div_128b_s(void)
2460{
2461 return 21U;
2462}
2463static inline u32 gr_gpcs_tpcs_tex_rm_cb_1_size_div_128b_f(u32 v)
2464{
2465 return (v & 0x1fffffU) << 0U;
2466}
2467static inline u32 gr_gpcs_tpcs_tex_rm_cb_1_size_div_128b_m(void)
2468{
2469 return 0x1fffffU << 0U;
2470}
2471static inline u32 gr_gpcs_tpcs_tex_rm_cb_1_size_div_128b_v(u32 r)
2472{
2473 return (r >> 0U) & 0x1fffffU;
2474}
2475static inline u32 gr_gpcs_tpcs_tex_rm_cb_1_size_div_128b_granularity_f(void)
2476{
2477 return 0x80U;
2478}
2479static inline u32 gr_gpcs_tpcs_tex_rm_cb_1_valid_s(void)
2480{
2481 return 1U;
2482}
2483static inline u32 gr_gpcs_tpcs_tex_rm_cb_1_valid_f(u32 v)
2484{
2485 return (v & 0x1U) << 31U;
2486}
2487static inline u32 gr_gpcs_tpcs_tex_rm_cb_1_valid_m(void)
2488{
2489 return 0x1U << 31U;
2490}
2491static inline u32 gr_gpcs_tpcs_tex_rm_cb_1_valid_v(u32 r)
2492{
2493 return (r >> 31U) & 0x1U;
2494}
2495static inline u32 gr_gpcs_tpcs_tex_rm_cb_1_valid_true_f(void)
2496{
2497 return 0x80000000U;
2498}
2499static inline u32 gr_gpccs_falcon_addr_r(void)
2500{
2501 return 0x0041a0acU;
2502}
2503static inline u32 gr_gpccs_falcon_addr_lsb_s(void)
2504{
2505 return 6U;
2506}
2507static inline u32 gr_gpccs_falcon_addr_lsb_f(u32 v)
2508{
2509 return (v & 0x3fU) << 0U;
2510}
2511static inline u32 gr_gpccs_falcon_addr_lsb_m(void)
2512{
2513 return 0x3fU << 0U;
2514}
2515static inline u32 gr_gpccs_falcon_addr_lsb_v(u32 r)
2516{
2517 return (r >> 0U) & 0x3fU;
2518}
2519static inline u32 gr_gpccs_falcon_addr_lsb_init_v(void)
2520{
2521 return 0x00000000U;
2522}
2523static inline u32 gr_gpccs_falcon_addr_lsb_init_f(void)
2524{
2525 return 0x0U;
2526}
2527static inline u32 gr_gpccs_falcon_addr_msb_s(void)
2528{
2529 return 6U;
2530}
2531static inline u32 gr_gpccs_falcon_addr_msb_f(u32 v)
2532{
2533 return (v & 0x3fU) << 6U;
2534}
2535static inline u32 gr_gpccs_falcon_addr_msb_m(void)
2536{
2537 return 0x3fU << 6U;
2538}
2539static inline u32 gr_gpccs_falcon_addr_msb_v(u32 r)
2540{
2541 return (r >> 6U) & 0x3fU;
2542}
2543static inline u32 gr_gpccs_falcon_addr_msb_init_v(void)
2544{
2545 return 0x00000000U;
2546}
2547static inline u32 gr_gpccs_falcon_addr_msb_init_f(void)
2548{
2549 return 0x0U;
2550}
2551static inline u32 gr_gpccs_falcon_addr_ext_s(void)
2552{
2553 return 12U;
2554}
2555static inline u32 gr_gpccs_falcon_addr_ext_f(u32 v)
2556{
2557 return (v & 0xfffU) << 0U;
2558}
2559static inline u32 gr_gpccs_falcon_addr_ext_m(void)
2560{
2561 return 0xfffU << 0U;
2562}
2563static inline u32 gr_gpccs_falcon_addr_ext_v(u32 r)
2564{
2565 return (r >> 0U) & 0xfffU;
2566}
2567static inline u32 gr_gpccs_cpuctl_r(void)
2568{
2569 return 0x0041a100U;
2570}
2571static inline u32 gr_gpccs_cpuctl_startcpu_f(u32 v)
2572{
2573 return (v & 0x1U) << 1U;
2574}
2575static inline u32 gr_gpccs_dmactl_r(void)
2576{
2577 return 0x0041a10cU;
2578}
2579static inline u32 gr_gpccs_dmactl_require_ctx_f(u32 v)
2580{
2581 return (v & 0x1U) << 0U;
2582}
2583static inline u32 gr_gpccs_dmactl_dmem_scrubbing_m(void)
2584{
2585 return 0x1U << 1U;
2586}
2587static inline u32 gr_gpccs_dmactl_imem_scrubbing_m(void)
2588{
2589 return 0x1U << 2U;
2590}
2591static inline u32 gr_gpccs_imemc_r(u32 i)
2592{
2593 return 0x0041a180U + i*16U;
2594}
2595static inline u32 gr_gpccs_imemc_offs_f(u32 v)
2596{
2597 return (v & 0x3fU) << 2U;
2598}
2599static inline u32 gr_gpccs_imemc_blk_f(u32 v)
2600{
2601 return (v & 0xffU) << 8U;
2602}
2603static inline u32 gr_gpccs_imemc_aincw_f(u32 v)
2604{
2605 return (v & 0x1U) << 24U;
2606}
2607static inline u32 gr_gpccs_imemd_r(u32 i)
2608{
2609 return 0x0041a184U + i*16U;
2610}
2611static inline u32 gr_gpccs_imemt_r(u32 i)
2612{
2613 return 0x0041a188U + i*16U;
2614}
2615static inline u32 gr_gpccs_imemt__size_1_v(void)
2616{
2617 return 0x00000004U;
2618}
2619static inline u32 gr_gpccs_imemt_tag_f(u32 v)
2620{
2621 return (v & 0xffffU) << 0U;
2622}
2623static inline u32 gr_gpccs_dmemc_r(u32 i)
2624{
2625 return 0x0041a1c0U + i*8U;
2626}
2627static inline u32 gr_gpccs_dmemc_offs_f(u32 v)
2628{
2629 return (v & 0x3fU) << 2U;
2630}
2631static inline u32 gr_gpccs_dmemc_blk_f(u32 v)
2632{
2633 return (v & 0xffU) << 8U;
2634}
2635static inline u32 gr_gpccs_dmemc_aincw_f(u32 v)
2636{
2637 return (v & 0x1U) << 24U;
2638}
2639static inline u32 gr_gpccs_dmemd_r(u32 i)
2640{
2641 return 0x0041a1c4U + i*8U;
2642}
2643static inline u32 gr_gpccs_ctxsw_mailbox_r(u32 i)
2644{
2645 return 0x0041a800U + i*4U;
2646}
2647static inline u32 gr_gpccs_ctxsw_mailbox_value_f(u32 v)
2648{
2649 return (v & 0xffffffffU) << 0U;
2650}
2651static inline u32 gr_gpcs_swdx_bundle_cb_base_r(void)
2652{
2653 return 0x00418e24U;
2654}
2655static inline u32 gr_gpcs_swdx_bundle_cb_base_addr_39_8_s(void)
2656{
2657 return 32U;
2658}
2659static inline u32 gr_gpcs_swdx_bundle_cb_base_addr_39_8_f(u32 v)
2660{
2661 return (v & 0xffffffffU) << 0U;
2662}
2663static inline u32 gr_gpcs_swdx_bundle_cb_base_addr_39_8_m(void)
2664{
2665 return 0xffffffffU << 0U;
2666}
2667static inline u32 gr_gpcs_swdx_bundle_cb_base_addr_39_8_v(u32 r)
2668{
2669 return (r >> 0U) & 0xffffffffU;
2670}
2671static inline u32 gr_gpcs_swdx_bundle_cb_base_addr_39_8_init_v(void)
2672{
2673 return 0x00000000U;
2674}
2675static inline u32 gr_gpcs_swdx_bundle_cb_base_addr_39_8_init_f(void)
2676{
2677 return 0x0U;
2678}
2679static inline u32 gr_gpcs_swdx_bundle_cb_size_r(void)
2680{
2681 return 0x00418e28U;
2682}
2683static inline u32 gr_gpcs_swdx_bundle_cb_size_div_256b_s(void)
2684{
2685 return 11U;
2686}
2687static inline u32 gr_gpcs_swdx_bundle_cb_size_div_256b_f(u32 v)
2688{
2689 return (v & 0x7ffU) << 0U;
2690}
2691static inline u32 gr_gpcs_swdx_bundle_cb_size_div_256b_m(void)
2692{
2693 return 0x7ffU << 0U;
2694}
2695static inline u32 gr_gpcs_swdx_bundle_cb_size_div_256b_v(u32 r)
2696{
2697 return (r >> 0U) & 0x7ffU;
2698}
2699static inline u32 gr_gpcs_swdx_bundle_cb_size_div_256b_init_v(void)
2700{
2701 return 0x00000030U;
2702}
2703static inline u32 gr_gpcs_swdx_bundle_cb_size_div_256b_init_f(void)
2704{
2705 return 0x30U;
2706}
2707static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_s(void)
2708{
2709 return 1U;
2710}
2711static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_f(u32 v)
2712{
2713 return (v & 0x1U) << 31U;
2714}
2715static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_m(void)
2716{
2717 return 0x1U << 31U;
2718}
2719static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_v(u32 r)
2720{
2721 return (r >> 31U) & 0x1U;
2722}
2723static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_false_v(void)
2724{
2725 return 0x00000000U;
2726}
2727static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_false_f(void)
2728{
2729 return 0x0U;
2730}
2731static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_true_v(void)
2732{
2733 return 0x00000001U;
2734}
2735static inline u32 gr_gpcs_swdx_bundle_cb_size_valid_true_f(void)
2736{
2737 return 0x80000000U;
2738}
2739static inline u32 gr_gpc0_swdx_rm_spill_buffer_size_r(void)
2740{
2741 return 0x005001dcU;
2742}
2743static inline u32 gr_gpc0_swdx_rm_spill_buffer_size_256b_f(u32 v)
2744{
2745 return (v & 0xffffU) << 0U;
2746}
2747static inline u32 gr_gpc0_swdx_rm_spill_buffer_size_256b_default_v(void)
2748{
2749 return 0x00000de0U;
2750}
2751static inline u32 gr_gpc0_swdx_rm_spill_buffer_size_256b_byte_granularity_v(void)
2752{
2753 return 0x00000100U;
2754}
2755static inline u32 gr_gpc0_swdx_rm_spill_buffer_addr_r(void)
2756{
2757 return 0x005001d8U;
2758}
2759static inline u32 gr_gpc0_swdx_rm_spill_buffer_addr_39_8_f(u32 v)
2760{
2761 return (v & 0xffffffffU) << 0U;
2762}
2763static inline u32 gr_gpc0_swdx_rm_spill_buffer_addr_39_8_align_bits_v(void)
2764{
2765 return 0x00000008U;
2766}
2767static inline u32 gr_gpcs_swdx_beta_cb_ctrl_r(void)
2768{
2769 return 0x004181e4U;
2770}
2771static inline u32 gr_gpcs_swdx_beta_cb_ctrl_cbes_reserve_f(u32 v)
2772{
2773 return (v & 0xfffU) << 0U;
2774}
2775static inline u32 gr_gpcs_swdx_beta_cb_ctrl_cbes_reserve_gfxp_v(void)
2776{
2777 return 0x00000100U;
2778}
2779static inline u32 gr_gpcs_ppcs_cbm_beta_cb_ctrl_r(void)
2780{
2781 return 0x0041befcU;
2782}
2783static inline u32 gr_gpcs_ppcs_cbm_beta_cb_ctrl_cbes_reserve_f(u32 v)
2784{
2785 return (v & 0xfffU) << 0U;
2786}
2787static inline u32 gr_gpcs_swdx_tc_beta_cb_size_r(u32 i)
2788{
2789 return 0x00418ea0U + i*4U;
2790}
2791static inline u32 gr_gpcs_swdx_tc_beta_cb_size_v_f(u32 v)
2792{
2793 return (v & 0x3fffffU) << 0U;
2794}
2795static inline u32 gr_gpcs_swdx_tc_beta_cb_size_v_m(void)
2796{
2797 return 0x3fffffU << 0U;
2798}
2799static inline u32 gr_gpcs_swdx_dss_zbc_color_r_r(u32 i)
2800{
2801 return 0x00418010U + i*4U;
2802}
2803static inline u32 gr_gpcs_swdx_dss_zbc_color_r_val_f(u32 v)
2804{
2805 return (v & 0xffffffffU) << 0U;
2806}
2807static inline u32 gr_gpcs_swdx_dss_zbc_color_g_r(u32 i)
2808{
2809 return 0x0041804cU + i*4U;
2810}
2811static inline u32 gr_gpcs_swdx_dss_zbc_color_g_val_f(u32 v)
2812{
2813 return (v & 0xffffffffU) << 0U;
2814}
2815static inline u32 gr_gpcs_swdx_dss_zbc_color_b_r(u32 i)
2816{
2817 return 0x00418088U + i*4U;
2818}
2819static inline u32 gr_gpcs_swdx_dss_zbc_color_b_val_f(u32 v)
2820{
2821 return (v & 0xffffffffU) << 0U;
2822}
2823static inline u32 gr_gpcs_swdx_dss_zbc_color_a_r(u32 i)
2824{
2825 return 0x004180c4U + i*4U;
2826}
2827static inline u32 gr_gpcs_swdx_dss_zbc_color_a_val_f(u32 v)
2828{
2829 return (v & 0xffffffffU) << 0U;
2830}
2831static inline u32 gr_gpcs_swdx_dss_zbc_c_01_to_04_format_r(void)
2832{
2833 return 0x00500100U;
2834}
2835static inline u32 gr_gpcs_swdx_dss_zbc_z_r(u32 i)
2836{
2837 return 0x00418110U + i*4U;
2838}
2839static inline u32 gr_gpcs_swdx_dss_zbc_z_val_f(u32 v)
2840{
2841 return (v & 0xffffffffU) << 0U;
2842}
2843static inline u32 gr_gpcs_swdx_dss_zbc_z_01_to_04_format_r(void)
2844{
2845 return 0x0050014cU;
2846}
2847static inline u32 gr_gpcs_setup_attrib_cb_base_r(void)
2848{
2849 return 0x00418810U;
2850}
2851static inline u32 gr_gpcs_setup_attrib_cb_base_addr_39_12_f(u32 v)
2852{
2853 return (v & 0xfffffffU) << 0U;
2854}
2855static inline u32 gr_gpcs_setup_attrib_cb_base_addr_39_12_align_bits_v(void)
2856{
2857 return 0x0000000cU;
2858}
2859static inline u32 gr_gpcs_setup_attrib_cb_base_valid_true_f(void)
2860{
2861 return 0x80000000U;
2862}
2863static inline u32 gr_crstr_gpc_map0_r(void)
2864{
2865 return 0x00418b08U;
2866}
2867static inline u32 gr_crstr_gpc_map0_tile0_f(u32 v)
2868{
2869 return (v & 0x7U) << 0U;
2870}
2871static inline u32 gr_crstr_gpc_map0_tile1_f(u32 v)
2872{
2873 return (v & 0x7U) << 5U;
2874}
2875static inline u32 gr_crstr_gpc_map0_tile2_f(u32 v)
2876{
2877 return (v & 0x7U) << 10U;
2878}
2879static inline u32 gr_crstr_gpc_map0_tile3_f(u32 v)
2880{
2881 return (v & 0x7U) << 15U;
2882}
2883static inline u32 gr_crstr_gpc_map0_tile4_f(u32 v)
2884{
2885 return (v & 0x7U) << 20U;
2886}
2887static inline u32 gr_crstr_gpc_map0_tile5_f(u32 v)
2888{
2889 return (v & 0x7U) << 25U;
2890}
2891static inline u32 gr_crstr_gpc_map1_r(void)
2892{
2893 return 0x00418b0cU;
2894}
2895static inline u32 gr_crstr_gpc_map1_tile6_f(u32 v)
2896{
2897 return (v & 0x7U) << 0U;
2898}
2899static inline u32 gr_crstr_gpc_map1_tile7_f(u32 v)
2900{
2901 return (v & 0x7U) << 5U;
2902}
2903static inline u32 gr_crstr_gpc_map1_tile8_f(u32 v)
2904{
2905 return (v & 0x7U) << 10U;
2906}
2907static inline u32 gr_crstr_gpc_map1_tile9_f(u32 v)
2908{
2909 return (v & 0x7U) << 15U;
2910}
2911static inline u32 gr_crstr_gpc_map1_tile10_f(u32 v)
2912{
2913 return (v & 0x7U) << 20U;
2914}
2915static inline u32 gr_crstr_gpc_map1_tile11_f(u32 v)
2916{
2917 return (v & 0x7U) << 25U;
2918}
2919static inline u32 gr_crstr_gpc_map2_r(void)
2920{
2921 return 0x00418b10U;
2922}
2923static inline u32 gr_crstr_gpc_map2_tile12_f(u32 v)
2924{
2925 return (v & 0x7U) << 0U;
2926}
2927static inline u32 gr_crstr_gpc_map2_tile13_f(u32 v)
2928{
2929 return (v & 0x7U) << 5U;
2930}
2931static inline u32 gr_crstr_gpc_map2_tile14_f(u32 v)
2932{
2933 return (v & 0x7U) << 10U;
2934}
2935static inline u32 gr_crstr_gpc_map2_tile15_f(u32 v)
2936{
2937 return (v & 0x7U) << 15U;
2938}
2939static inline u32 gr_crstr_gpc_map2_tile16_f(u32 v)
2940{
2941 return (v & 0x7U) << 20U;
2942}
2943static inline u32 gr_crstr_gpc_map2_tile17_f(u32 v)
2944{
2945 return (v & 0x7U) << 25U;
2946}
2947static inline u32 gr_crstr_gpc_map3_r(void)
2948{
2949 return 0x00418b14U;
2950}
2951static inline u32 gr_crstr_gpc_map3_tile18_f(u32 v)
2952{
2953 return (v & 0x7U) << 0U;
2954}
2955static inline u32 gr_crstr_gpc_map3_tile19_f(u32 v)
2956{
2957 return (v & 0x7U) << 5U;
2958}
2959static inline u32 gr_crstr_gpc_map3_tile20_f(u32 v)
2960{
2961 return (v & 0x7U) << 10U;
2962}
2963static inline u32 gr_crstr_gpc_map3_tile21_f(u32 v)
2964{
2965 return (v & 0x7U) << 15U;
2966}
2967static inline u32 gr_crstr_gpc_map3_tile22_f(u32 v)
2968{
2969 return (v & 0x7U) << 20U;
2970}
2971static inline u32 gr_crstr_gpc_map3_tile23_f(u32 v)
2972{
2973 return (v & 0x7U) << 25U;
2974}
2975static inline u32 gr_crstr_gpc_map4_r(void)
2976{
2977 return 0x00418b18U;
2978}
2979static inline u32 gr_crstr_gpc_map4_tile24_f(u32 v)
2980{
2981 return (v & 0x7U) << 0U;
2982}
2983static inline u32 gr_crstr_gpc_map4_tile25_f(u32 v)
2984{
2985 return (v & 0x7U) << 5U;
2986}
2987static inline u32 gr_crstr_gpc_map4_tile26_f(u32 v)
2988{
2989 return (v & 0x7U) << 10U;
2990}
2991static inline u32 gr_crstr_gpc_map4_tile27_f(u32 v)
2992{
2993 return (v & 0x7U) << 15U;
2994}
2995static inline u32 gr_crstr_gpc_map4_tile28_f(u32 v)
2996{
2997 return (v & 0x7U) << 20U;
2998}
2999static inline u32 gr_crstr_gpc_map4_tile29_f(u32 v)
3000{
3001 return (v & 0x7U) << 25U;
3002}
3003static inline u32 gr_crstr_gpc_map5_r(void)
3004{
3005 return 0x00418b1cU;
3006}
3007static inline u32 gr_crstr_gpc_map5_tile30_f(u32 v)
3008{
3009 return (v & 0x7U) << 0U;
3010}
3011static inline u32 gr_crstr_gpc_map5_tile31_f(u32 v)
3012{
3013 return (v & 0x7U) << 5U;
3014}
3015static inline u32 gr_crstr_gpc_map5_tile32_f(u32 v)
3016{
3017 return (v & 0x7U) << 10U;
3018}
3019static inline u32 gr_crstr_gpc_map5_tile33_f(u32 v)
3020{
3021 return (v & 0x7U) << 15U;
3022}
3023static inline u32 gr_crstr_gpc_map5_tile34_f(u32 v)
3024{
3025 return (v & 0x7U) << 20U;
3026}
3027static inline u32 gr_crstr_gpc_map5_tile35_f(u32 v)
3028{
3029 return (v & 0x7U) << 25U;
3030}
3031static inline u32 gr_crstr_map_table_cfg_r(void)
3032{
3033 return 0x00418bb8U;
3034}
3035static inline u32 gr_crstr_map_table_cfg_row_offset_f(u32 v)
3036{
3037 return (v & 0xffU) << 0U;
3038}
3039static inline u32 gr_crstr_map_table_cfg_num_entries_f(u32 v)
3040{
3041 return (v & 0xffU) << 8U;
3042}
3043static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_r(void)
3044{
3045 return 0x00418980U;
3046}
3047static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_0_f(u32 v)
3048{
3049 return (v & 0x7U) << 0U;
3050}
3051static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_1_f(u32 v)
3052{
3053 return (v & 0x7U) << 4U;
3054}
3055static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_2_f(u32 v)
3056{
3057 return (v & 0x7U) << 8U;
3058}
3059static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_3_f(u32 v)
3060{
3061 return (v & 0x7U) << 12U;
3062}
3063static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_4_f(u32 v)
3064{
3065 return (v & 0x7U) << 16U;
3066}
3067static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_5_f(u32 v)
3068{
3069 return (v & 0x7U) << 20U;
3070}
3071static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_6_f(u32 v)
3072{
3073 return (v & 0x7U) << 24U;
3074}
3075static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map0_tile_7_f(u32 v)
3076{
3077 return (v & 0x7U) << 28U;
3078}
3079static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_r(void)
3080{
3081 return 0x00418984U;
3082}
3083static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_8_f(u32 v)
3084{
3085 return (v & 0x7U) << 0U;
3086}
3087static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_9_f(u32 v)
3088{
3089 return (v & 0x7U) << 4U;
3090}
3091static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_10_f(u32 v)
3092{
3093 return (v & 0x7U) << 8U;
3094}
3095static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_11_f(u32 v)
3096{
3097 return (v & 0x7U) << 12U;
3098}
3099static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_12_f(u32 v)
3100{
3101 return (v & 0x7U) << 16U;
3102}
3103static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_13_f(u32 v)
3104{
3105 return (v & 0x7U) << 20U;
3106}
3107static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_14_f(u32 v)
3108{
3109 return (v & 0x7U) << 24U;
3110}
3111static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map1_tile_15_f(u32 v)
3112{
3113 return (v & 0x7U) << 28U;
3114}
3115static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_r(void)
3116{
3117 return 0x00418988U;
3118}
3119static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_16_f(u32 v)
3120{
3121 return (v & 0x7U) << 0U;
3122}
3123static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_17_f(u32 v)
3124{
3125 return (v & 0x7U) << 4U;
3126}
3127static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_18_f(u32 v)
3128{
3129 return (v & 0x7U) << 8U;
3130}
3131static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_19_f(u32 v)
3132{
3133 return (v & 0x7U) << 12U;
3134}
3135static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_20_f(u32 v)
3136{
3137 return (v & 0x7U) << 16U;
3138}
3139static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_21_f(u32 v)
3140{
3141 return (v & 0x7U) << 20U;
3142}
3143static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_22_f(u32 v)
3144{
3145 return (v & 0x7U) << 24U;
3146}
3147static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_23_s(void)
3148{
3149 return 3U;
3150}
3151static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_23_f(u32 v)
3152{
3153 return (v & 0x7U) << 28U;
3154}
3155static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_23_m(void)
3156{
3157 return 0x7U << 28U;
3158}
3159static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map2_tile_23_v(u32 r)
3160{
3161 return (r >> 28U) & 0x7U;
3162}
3163static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_r(void)
3164{
3165 return 0x0041898cU;
3166}
3167static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_24_f(u32 v)
3168{
3169 return (v & 0x7U) << 0U;
3170}
3171static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_25_f(u32 v)
3172{
3173 return (v & 0x7U) << 4U;
3174}
3175static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_26_f(u32 v)
3176{
3177 return (v & 0x7U) << 8U;
3178}
3179static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_27_f(u32 v)
3180{
3181 return (v & 0x7U) << 12U;
3182}
3183static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_28_f(u32 v)
3184{
3185 return (v & 0x7U) << 16U;
3186}
3187static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_29_f(u32 v)
3188{
3189 return (v & 0x7U) << 20U;
3190}
3191static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_30_f(u32 v)
3192{
3193 return (v & 0x7U) << 24U;
3194}
3195static inline u32 gr_gpcs_zcull_sm_in_gpc_number_map3_tile_31_f(u32 v)
3196{
3197 return (v & 0x7U) << 28U;
3198}
3199static inline u32 gr_gpcs_gpm_pd_cfg_r(void)
3200{
3201 return 0x00418c6cU;
3202}
3203static inline u32 gr_gpcs_gpm_pd_cfg_timeslice_mode_disable_f(void)
3204{
3205 return 0x0U;
3206}
3207static inline u32 gr_gpcs_gpm_pd_cfg_timeslice_mode_enable_f(void)
3208{
3209 return 0x1U;
3210}
3211static inline u32 gr_gpcs_gcc_pagepool_base_r(void)
3212{
3213 return 0x00419004U;
3214}
3215static inline u32 gr_gpcs_gcc_pagepool_base_addr_39_8_f(u32 v)
3216{
3217 return (v & 0xffffffffU) << 0U;
3218}
3219static inline u32 gr_gpcs_gcc_pagepool_r(void)
3220{
3221 return 0x00419008U;
3222}
3223static inline u32 gr_gpcs_gcc_pagepool_total_pages_f(u32 v)
3224{
3225 return (v & 0x3ffU) << 0U;
3226}
3227static inline u32 gr_gpcs_tpcs_pe_vaf_r(void)
3228{
3229 return 0x0041980cU;
3230}
3231static inline u32 gr_gpcs_tpcs_pe_vaf_fast_mode_switch_true_f(void)
3232{
3233 return 0x10U;
3234}
3235static inline u32 gr_gpcs_tpcs_pe_pin_cb_global_base_addr_r(void)
3236{
3237 return 0x00419848U;
3238}
3239static inline u32 gr_gpcs_tpcs_pe_pin_cb_global_base_addr_v_f(u32 v)
3240{
3241 return (v & 0xfffffffU) << 0U;
3242}
3243static inline u32 gr_gpcs_tpcs_pe_pin_cb_global_base_addr_valid_f(u32 v)
3244{
3245 return (v & 0x1U) << 28U;
3246}
3247static inline u32 gr_gpcs_tpcs_pe_pin_cb_global_base_addr_valid_true_f(void)
3248{
3249 return 0x10000000U;
3250}
3251static inline u32 gr_gpcs_tpcs_mpc_vtg_debug_r(void)
3252{
3253 return 0x00419c00U;
3254}
3255static inline u32 gr_gpcs_tpcs_mpc_vtg_debug_timeslice_mode_disabled_f(void)
3256{
3257 return 0x0U;
3258}
3259static inline u32 gr_gpcs_tpcs_mpc_vtg_debug_timeslice_mode_enabled_f(void)
3260{
3261 return 0x8U;
3262}
3263static inline u32 gr_gpcs_tpcs_mpc_vtg_cb_global_base_addr_r(void)
3264{
3265 return 0x00419c2cU;
3266}
3267static inline u32 gr_gpcs_tpcs_mpc_vtg_cb_global_base_addr_v_f(u32 v)
3268{
3269 return (v & 0xfffffffU) << 0U;
3270}
3271static inline u32 gr_gpcs_tpcs_mpc_vtg_cb_global_base_addr_valid_f(u32 v)
3272{
3273 return (v & 0x1U) << 28U;
3274}
3275static inline u32 gr_gpcs_tpcs_mpc_vtg_cb_global_base_addr_valid_true_f(void)
3276{
3277 return 0x10000000U;
3278}
3279static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_r(void)
3280{
3281 return 0x00419e44U;
3282}
3283static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_stack_error_report_f(void)
3284{
3285 return 0x2U;
3286}
3287static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_api_stack_error_report_f(void)
3288{
3289 return 0x4U;
3290}
3291static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_ret_empty_stack_error_report_f(void)
3292{
3293 return 0x8U;
3294}
3295static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_pc_wrap_report_f(void)
3296{
3297 return 0x10U;
3298}
3299static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_misaligned_pc_report_f(void)
3300{
3301 return 0x20U;
3302}
3303static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_pc_overflow_report_f(void)
3304{
3305 return 0x40U;
3306}
3307static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_misaligned_immc_addr_report_f(void)
3308{
3309 return 0x80U;
3310}
3311static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_misaligned_reg_report_f(void)
3312{
3313 return 0x100U;
3314}
3315static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_illegal_instr_encoding_report_f(void)
3316{
3317 return 0x200U;
3318}
3319static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_illegal_sph_instr_combo_report_f(void)
3320{
3321 return 0x400U;
3322}
3323static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_illegal_instr_param_report_f(void)
3324{
3325 return 0x800U;
3326}
3327static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_invalid_const_addr_report_f(void)
3328{
3329 return 0x1000U;
3330}
3331static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_oor_reg_report_f(void)
3332{
3333 return 0x2000U;
3334}
3335static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_oor_addr_report_f(void)
3336{
3337 return 0x4000U;
3338}
3339static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_misaligned_addr_report_f(void)
3340{
3341 return 0x8000U;
3342}
3343static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_invalid_addr_space_report_f(void)
3344{
3345 return 0x10000U;
3346}
3347static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_illegal_instr_param2_report_f(void)
3348{
3349 return 0x20000U;
3350}
3351static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_invalid_const_addr_ldc_report_f(void)
3352{
3353 return 0x40000U;
3354}
3355static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_mmu_fault_report_f(void)
3356{
3357 return 0x800000U;
3358}
3359static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_stack_overflow_report_f(void)
3360{
3361 return 0x400000U;
3362}
3363static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_geometry_sm_error_report_f(void)
3364{
3365 return 0x80000U;
3366}
3367static inline u32 gr_gpcs_tpcs_sm_hww_warp_esr_report_mask_divergent_report_f(void)
3368{
3369 return 0x100000U;
3370}
3371static inline u32 gr_gpc0_tpc0_sm_hww_warp_esr_report_mask_r(void)
3372{
3373 return 0x00504644U;
3374}
3375static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_r(void)
3376{
3377 return 0x00419e4cU;
3378}
3379static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_sm_to_sm_fault_report_f(void)
3380{
3381 return 0x1U;
3382}
3383static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_l1_error_report_f(void)
3384{
3385 return 0x2U;
3386}
3387static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_multiple_warp_errors_report_f(void)
3388{
3389 return 0x4U;
3390}
3391static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_physical_stack_overflow_error_report_f(void)
3392{
3393 return 0x8U;
3394}
3395static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_bpt_int_report_f(void)
3396{
3397 return 0x10U;
3398}
3399static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_ecc_sec_error_report_f(void)
3400{
3401 return 0x20000000U;
3402}
3403static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_ecc_ded_error_report_f(void)
3404{
3405 return 0x40000000U;
3406}
3407static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_bpt_pause_report_f(void)
3408{
3409 return 0x20U;
3410}
3411static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_report_mask_single_step_complete_report_f(void)
3412{
3413 return 0x40U;
3414}
3415static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_report_mask_r(void)
3416{
3417 return 0x0050464cU;
3418}
3419static inline u32 gr_gpcs_tpcs_tpccs_tpc_exception_en_r(void)
3420{
3421 return 0x00419d0cU;
3422}
3423static inline u32 gr_gpcs_tpcs_tpccs_tpc_exception_en_sm_enabled_f(void)
3424{
3425 return 0x2U;
3426}
3427static inline u32 gr_gpcs_tpcs_tpccs_tpc_exception_en_tex_enabled_f(void)
3428{
3429 return 0x1U;
3430}
3431static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_en_r(void)
3432{
3433 return 0x0050450cU;
3434}
3435static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_en_sm_v(u32 r)
3436{
3437 return (r >> 1U) & 0x1U;
3438}
3439static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_en_sm_enabled_f(void)
3440{
3441 return 0x2U;
3442}
3443static inline u32 gr_gpcs_gpccs_gpc_exception_en_r(void)
3444{
3445 return 0x0041ac94U;
3446}
3447static inline u32 gr_gpcs_gpccs_gpc_exception_en_tpc_f(u32 v)
3448{
3449 return (v & 0xffU) << 16U;
3450}
3451static inline u32 gr_gpc0_gpccs_gpc_exception_r(void)
3452{
3453 return 0x00502c90U;
3454}
3455static inline u32 gr_gpc0_gpccs_gpc_exception_gcc_v(u32 r)
3456{
3457 return (r >> 2U) & 0x1U;
3458}
3459static inline u32 gr_gpc0_gpccs_gpc_exception_tpc_v(u32 r)
3460{
3461 return (r >> 16U) & 0xffU;
3462}
3463static inline u32 gr_gpc0_gpccs_gpc_exception_tpc_0_pending_v(void)
3464{
3465 return 0x00000001U;
3466}
3467static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_r(void)
3468{
3469 return 0x00504508U;
3470}
3471static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_tex_v(u32 r)
3472{
3473 return (r >> 0U) & 0x1U;
3474}
3475static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_tex_pending_v(void)
3476{
3477 return 0x00000001U;
3478}
3479static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_sm_v(u32 r)
3480{
3481 return (r >> 1U) & 0x1U;
3482}
3483static inline u32 gr_gpc0_tpc0_tpccs_tpc_exception_sm_pending_v(void)
3484{
3485 return 0x00000001U;
3486}
3487static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_r(void)
3488{
3489 return 0x00504610U;
3490}
3491static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_debugger_mode_m(void)
3492{
3493 return 0x1U << 0U;
3494}
3495static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_debugger_mode_v(u32 r)
3496{
3497 return (r >> 0U) & 0x1U;
3498}
3499static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_debugger_mode_on_v(void)
3500{
3501 return 0x00000001U;
3502}
3503static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_debugger_mode_on_f(void)
3504{
3505 return 0x1U;
3506}
3507static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_debugger_mode_off_v(void)
3508{
3509 return 0x00000000U;
3510}
3511static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_debugger_mode_off_f(void)
3512{
3513 return 0x0U;
3514}
3515static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_trigger_enable_f(void)
3516{
3517 return 0x80000000U;
3518}
3519static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_trigger_disable_f(void)
3520{
3521 return 0x0U;
3522}
3523static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_run_trigger_task_f(void)
3524{
3525 return 0x40000000U;
3526}
3527static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_warp_m(void)
3528{
3529 return 0x1U << 1U;
3530}
3531static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_warp_v(u32 r)
3532{
3533 return (r >> 1U) & 0x1U;
3534}
3535static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_warp_disable_f(void)
3536{
3537 return 0x0U;
3538}
3539static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_sm_m(void)
3540{
3541 return 0x1U << 2U;
3542}
3543static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_sm_v(u32 r)
3544{
3545 return (r >> 2U) & 0x1U;
3546}
3547static inline u32 gr_gpc0_tpc0_sm_dbgr_control0_stop_on_any_sm_disable_f(void)
3548{
3549 return 0x0U;
3550}
3551static inline u32 gr_gpc0_tpc0_sm_warp_valid_mask_r(void)
3552{
3553 return 0x00504614U;
3554}
3555static inline u32 gr_gpc0_tpc0_sm_warp_valid_mask_1_r(void)
3556{
3557 return 0x00504618U;
3558}
3559static inline u32 gr_gpc0_tpc0_sm_dbgr_bpt_pause_mask_r(void)
3560{
3561 return 0x00504624U;
3562}
3563static inline u32 gr_gpc0_tpc0_sm_dbgr_bpt_pause_mask_1_r(void)
3564{
3565 return 0x00504628U;
3566}
3567static inline u32 gr_gpc0_tpc0_sm_dbgr_bpt_trap_mask_r(void)
3568{
3569 return 0x00504634U;
3570}
3571static inline u32 gr_gpc0_tpc0_sm_dbgr_bpt_trap_mask_1_r(void)
3572{
3573 return 0x00504638U;
3574}
3575static inline u32 gr_gpcs_tpcs_sm_dbgr_bpt_pause_mask_r(void)
3576{
3577 return 0x00419e24U;
3578}
3579static inline u32 gr_gpcs_tpcs_sm_dbgr_bpt_pause_mask_stop_on_any_warp_disable_v(void)
3580{
3581 return 0x00000000U;
3582}
3583static inline u32 gr_gpcs_tpcs_sm_dbgr_bpt_pause_mask_stop_on_any_sm_disable_v(void)
3584{
3585 return 0x00000000U;
3586}
3587static inline u32 gr_gpc0_tpc0_sm_dbgr_status0_r(void)
3588{
3589 return 0x0050460cU;
3590}
3591static inline u32 gr_gpc0_tpc0_sm_dbgr_status0_sm_in_trap_mode_v(u32 r)
3592{
3593 return (r >> 0U) & 0x1U;
3594}
3595static inline u32 gr_gpc0_tpc0_sm_dbgr_status0_locked_down_v(u32 r)
3596{
3597 return (r >> 4U) & 0x1U;
3598}
3599static inline u32 gr_gpc0_tpc0_sm_dbgr_status0_locked_down_true_v(void)
3600{
3601 return 0x00000001U;
3602}
3603static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_r(void)
3604{
3605 return 0x00419e50U;
3606}
3607static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_bpt_int_pending_f(void)
3608{
3609 return 0x10U;
3610}
3611static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_bpt_pause_pending_f(void)
3612{
3613 return 0x20U;
3614}
3615static inline u32 gr_gpcs_tpcs_sm_hww_global_esr_single_step_complete_pending_f(void)
3616{
3617 return 0x40U;
3618}
3619static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_r(void)
3620{
3621 return 0x00504650U;
3622}
3623static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_bpt_int_pending_f(void)
3624{
3625 return 0x10U;
3626}
3627static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_ecc_sec_error_pending_f(void)
3628{
3629 return 0x20000000U;
3630}
3631static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_ecc_ded_error_pending_f(void)
3632{
3633 return 0x40000000U;
3634}
3635static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_bpt_pause_pending_f(void)
3636{
3637 return 0x20U;
3638}
3639static inline u32 gr_gpc0_tpc0_sm_hww_global_esr_single_step_complete_pending_f(void)
3640{
3641 return 0x40U;
3642}
3643static inline u32 gr_gpc0_tpc0_tex_m_hww_esr_r(void)
3644{
3645 return 0x00504224U;
3646}
3647static inline u32 gr_gpc0_tpc0_tex_m_hww_esr_intr_pending_f(void)
3648{
3649 return 0x1U;
3650}
3651static inline u32 gr_gpc0_tpc0_sm_hww_warp_esr_r(void)
3652{
3653 return 0x00504648U;
3654}
3655static inline u32 gr_gpc0_tpc0_sm_hww_warp_esr_error_v(u32 r)
3656{
3657 return (r >> 0U) & 0xffffU;
3658}
3659static inline u32 gr_gpc0_tpc0_sm_hww_warp_esr_error_none_v(void)
3660{
3661 return 0x00000000U;
3662}
3663static inline u32 gr_gpc0_tpc0_sm_hww_warp_esr_error_none_f(void)
3664{
3665 return 0x0U;
3666}
3667static inline u32 gr_gpc0_tpc0_sm_halfctl_ctrl_r(void)
3668{
3669 return 0x00504770U;
3670}
3671static inline u32 gr_gpcs_tpcs_sm_halfctl_ctrl_r(void)
3672{
3673 return 0x00419f70U;
3674}
3675static inline u32 gr_gpcs_tpcs_sm_halfctl_ctrl_sctl_read_quad_ctl_m(void)
3676{
3677 return 0x1U << 4U;
3678}
3679static inline u32 gr_gpcs_tpcs_sm_halfctl_ctrl_sctl_read_quad_ctl_f(u32 v)
3680{
3681 return (v & 0x1U) << 4U;
3682}
3683static inline u32 gr_gpc0_tpc0_sm_debug_sfe_control_r(void)
3684{
3685 return 0x0050477cU;
3686}
3687static inline u32 gr_gpcs_tpcs_sm_debug_sfe_control_r(void)
3688{
3689 return 0x00419f7cU;
3690}
3691static inline u32 gr_gpcs_tpcs_sm_debug_sfe_control_read_half_ctl_m(void)
3692{
3693 return 0x1U << 0U;
3694}
3695static inline u32 gr_gpcs_tpcs_sm_debug_sfe_control_read_half_ctl_f(u32 v)
3696{
3697 return (v & 0x1U) << 0U;
3698}
3699static inline u32 gr_gpcs_tpcs_pes_vsc_vpc_r(void)
3700{
3701 return 0x0041be08U;
3702}
3703static inline u32 gr_gpcs_tpcs_pes_vsc_vpc_fast_mode_switch_true_f(void)
3704{
3705 return 0x4U;
3706}
3707static inline u32 gr_ppcs_wwdx_map_gpc_map0_r(void)
3708{
3709 return 0x0041bf00U;
3710}
3711static inline u32 gr_ppcs_wwdx_map_gpc_map1_r(void)
3712{
3713 return 0x0041bf04U;
3714}
3715static inline u32 gr_ppcs_wwdx_map_gpc_map2_r(void)
3716{
3717 return 0x0041bf08U;
3718}
3719static inline u32 gr_ppcs_wwdx_map_gpc_map3_r(void)
3720{
3721 return 0x0041bf0cU;
3722}
3723static inline u32 gr_ppcs_wwdx_map_gpc_map4_r(void)
3724{
3725 return 0x0041bf10U;
3726}
3727static inline u32 gr_ppcs_wwdx_map_gpc_map5_r(void)
3728{
3729 return 0x0041bf14U;
3730}
3731static inline u32 gr_ppcs_wwdx_map_table_cfg_r(void)
3732{
3733 return 0x0041bfd0U;
3734}
3735static inline u32 gr_ppcs_wwdx_map_table_cfg_row_offset_f(u32 v)
3736{
3737 return (v & 0xffU) << 0U;
3738}
3739static inline u32 gr_ppcs_wwdx_map_table_cfg_num_entries_f(u32 v)
3740{
3741 return (v & 0xffU) << 8U;
3742}
3743static inline u32 gr_ppcs_wwdx_map_table_cfg_normalized_num_entries_f(u32 v)
3744{
3745 return (v & 0x1fU) << 16U;
3746}
3747static inline u32 gr_ppcs_wwdx_map_table_cfg_normalized_shift_value_f(u32 v)
3748{
3749 return (v & 0x7U) << 21U;
3750}
3751static inline u32 gr_ppcs_wwdx_map_table_cfg_coeff5_mod_value_f(u32 v)
3752{
3753 return (v & 0x1fU) << 24U;
3754}
3755static inline u32 gr_gpcs_ppcs_wwdx_sm_num_rcp_r(void)
3756{
3757 return 0x0041bfd4U;
3758}
3759static inline u32 gr_gpcs_ppcs_wwdx_sm_num_rcp_conservative_f(u32 v)
3760{
3761 return (v & 0xffffffU) << 0U;
3762}
3763static inline u32 gr_ppcs_wwdx_map_table_cfg2_r(void)
3764{
3765 return 0x0041bfe4U;
3766}
3767static inline u32 gr_ppcs_wwdx_map_table_cfg2_coeff6_mod_value_f(u32 v)
3768{
3769 return (v & 0x1fU) << 0U;
3770}
3771static inline u32 gr_ppcs_wwdx_map_table_cfg2_coeff7_mod_value_f(u32 v)
3772{
3773 return (v & 0x1fU) << 5U;
3774}
3775static inline u32 gr_ppcs_wwdx_map_table_cfg2_coeff8_mod_value_f(u32 v)
3776{
3777 return (v & 0x1fU) << 10U;
3778}
3779static inline u32 gr_ppcs_wwdx_map_table_cfg2_coeff9_mod_value_f(u32 v)
3780{
3781 return (v & 0x1fU) << 15U;
3782}
3783static inline u32 gr_ppcs_wwdx_map_table_cfg2_coeff10_mod_value_f(u32 v)
3784{
3785 return (v & 0x1fU) << 20U;
3786}
3787static inline u32 gr_ppcs_wwdx_map_table_cfg2_coeff11_mod_value_f(u32 v)
3788{
3789 return (v & 0x1fU) << 25U;
3790}
3791static inline u32 gr_bes_zrop_settings_r(void)
3792{
3793 return 0x00408850U;
3794}
3795static inline u32 gr_bes_zrop_settings_num_active_ltcs_f(u32 v)
3796{
3797 return (v & 0xfU) << 0U;
3798}
3799static inline u32 gr_be0_crop_debug3_r(void)
3800{
3801 return 0x00410108U;
3802}
3803static inline u32 gr_bes_crop_debug3_r(void)
3804{
3805 return 0x00408908U;
3806}
3807static inline u32 gr_bes_crop_debug3_comp_vdc_4to2_disable_m(void)
3808{
3809 return 0x1U << 31U;
3810}
3811static inline u32 gr_bes_crop_debug3_blendopt_read_suppress_m(void)
3812{
3813 return 0x1U << 1U;
3814}
3815static inline u32 gr_bes_crop_debug3_blendopt_read_suppress_disabled_f(void)
3816{
3817 return 0x0U;
3818}
3819static inline u32 gr_bes_crop_debug3_blendopt_read_suppress_enabled_f(void)
3820{
3821 return 0x2U;
3822}
3823static inline u32 gr_bes_crop_debug3_blendopt_fill_override_m(void)
3824{
3825 return 0x1U << 2U;
3826}
3827static inline u32 gr_bes_crop_debug3_blendopt_fill_override_disabled_f(void)
3828{
3829 return 0x0U;
3830}
3831static inline u32 gr_bes_crop_debug3_blendopt_fill_override_enabled_f(void)
3832{
3833 return 0x4U;
3834}
3835static inline u32 gr_bes_crop_debug4_r(void)
3836{
3837 return 0x0040894cU;
3838}
3839static inline u32 gr_bes_crop_debug4_clamp_fp_blend_m(void)
3840{
3841 return 0x1U << 18U;
3842}
3843static inline u32 gr_bes_crop_debug4_clamp_fp_blend_to_inf_f(void)
3844{
3845 return 0x0U;
3846}
3847static inline u32 gr_bes_crop_debug4_clamp_fp_blend_to_maxval_f(void)
3848{
3849 return 0x40000U;
3850}
3851static inline u32 gr_bes_crop_settings_r(void)
3852{
3853 return 0x00408958U;
3854}
3855static inline u32 gr_bes_crop_settings_num_active_ltcs_f(u32 v)
3856{
3857 return (v & 0xfU) << 0U;
3858}
3859static inline u32 gr_zcull_bytes_per_aliquot_per_gpu_v(void)
3860{
3861 return 0x00000020U;
3862}
3863static inline u32 gr_zcull_save_restore_header_bytes_per_gpc_v(void)
3864{
3865 return 0x00000020U;
3866}
3867static inline u32 gr_zcull_save_restore_subregion_header_bytes_per_gpc_v(void)
3868{
3869 return 0x000000c0U;
3870}
3871static inline u32 gr_zcull_subregion_qty_v(void)
3872{
3873 return 0x00000010U;
3874}
3875static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control_sel0_r(void)
3876{
3877 return 0x00504604U;
3878}
3879static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control_sel1_r(void)
3880{
3881 return 0x00504608U;
3882}
3883static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control0_r(void)
3884{
3885 return 0x0050465cU;
3886}
3887static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control1_r(void)
3888{
3889 return 0x00504660U;
3890}
3891static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control2_r(void)
3892{
3893 return 0x00504664U;
3894}
3895static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control3_r(void)
3896{
3897 return 0x00504668U;
3898}
3899static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control4_r(void)
3900{
3901 return 0x0050466cU;
3902}
3903static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_control5_r(void)
3904{
3905 return 0x00504658U;
3906}
3907static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter0_control_r(void)
3908{
3909 return 0x00504730U;
3910}
3911static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter1_control_r(void)
3912{
3913 return 0x00504734U;
3914}
3915static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter2_control_r(void)
3916{
3917 return 0x00504738U;
3918}
3919static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter3_control_r(void)
3920{
3921 return 0x0050473cU;
3922}
3923static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter4_control_r(void)
3924{
3925 return 0x00504740U;
3926}
3927static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter5_control_r(void)
3928{
3929 return 0x00504744U;
3930}
3931static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter6_control_r(void)
3932{
3933 return 0x00504748U;
3934}
3935static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter7_control_r(void)
3936{
3937 return 0x0050474cU;
3938}
3939static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_status_s1_r(void)
3940{
3941 return 0x00504678U;
3942}
3943static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter_status1_r(void)
3944{
3945 return 0x00504694U;
3946}
3947static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter0_s0_r(void)
3948{
3949 return 0x005046f0U;
3950}
3951static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter0_s1_r(void)
3952{
3953 return 0x00504700U;
3954}
3955static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter1_s0_r(void)
3956{
3957 return 0x005046f4U;
3958}
3959static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter1_s1_r(void)
3960{
3961 return 0x00504704U;
3962}
3963static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter2_s0_r(void)
3964{
3965 return 0x005046f8U;
3966}
3967static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter2_s1_r(void)
3968{
3969 return 0x00504708U;
3970}
3971static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter3_s0_r(void)
3972{
3973 return 0x005046fcU;
3974}
3975static inline u32 gr_pri_gpc0_tpc0_sm_dsm_perf_counter3_s1_r(void)
3976{
3977 return 0x0050470cU;
3978}
3979static inline u32 gr_fe_pwr_mode_r(void)
3980{
3981 return 0x00404170U;
3982}
3983static inline u32 gr_fe_pwr_mode_mode_auto_f(void)
3984{
3985 return 0x0U;
3986}
3987static inline u32 gr_fe_pwr_mode_mode_force_on_f(void)
3988{
3989 return 0x2U;
3990}
3991static inline u32 gr_fe_pwr_mode_req_v(u32 r)
3992{
3993 return (r >> 4U) & 0x1U;
3994}
3995static inline u32 gr_fe_pwr_mode_req_send_f(void)
3996{
3997 return 0x10U;
3998}
3999static inline u32 gr_fe_pwr_mode_req_done_v(void)
4000{
4001 return 0x00000000U;
4002}
4003static inline u32 gr_gpcs_pri_mmu_ctrl_r(void)
4004{
4005 return 0x00418880U;
4006}
4007static inline u32 gr_gpcs_pri_mmu_ctrl_vm_pg_size_m(void)
4008{
4009 return 0x1U << 0U;
4010}
4011static inline u32 gr_gpcs_pri_mmu_ctrl_use_pdb_big_page_size_m(void)
4012{
4013 return 0x1U << 11U;
4014}
4015static inline u32 gr_gpcs_pri_mmu_ctrl_vol_fault_m(void)
4016{
4017 return 0x1U << 1U;
4018}
4019static inline u32 gr_gpcs_pri_mmu_ctrl_comp_fault_m(void)
4020{
4021 return 0x1U << 2U;
4022}
4023static inline u32 gr_gpcs_pri_mmu_ctrl_miss_gran_m(void)
4024{
4025 return 0x3U << 3U;
4026}
4027static inline u32 gr_gpcs_pri_mmu_ctrl_cache_mode_m(void)
4028{
4029 return 0x3U << 5U;
4030}
4031static inline u32 gr_gpcs_pri_mmu_ctrl_mmu_aperture_m(void)
4032{
4033 return 0x3U << 28U;
4034}
4035static inline u32 gr_gpcs_pri_mmu_ctrl_mmu_vol_m(void)
4036{
4037 return 0x1U << 30U;
4038}
4039static inline u32 gr_gpcs_pri_mmu_ctrl_mmu_disable_m(void)
4040{
4041 return 0x1U << 31U;
4042}
4043static inline u32 gr_gpcs_pri_mmu_pm_unit_mask_r(void)
4044{
4045 return 0x00418890U;
4046}
4047static inline u32 gr_gpcs_pri_mmu_pm_req_mask_r(void)
4048{
4049 return 0x00418894U;
4050}
4051static inline u32 gr_gpcs_pri_mmu_debug_ctrl_r(void)
4052{
4053 return 0x004188b0U;
4054}
4055static inline u32 gr_gpcs_pri_mmu_debug_ctrl_debug_v(u32 r)
4056{
4057 return (r >> 16U) & 0x1U;
4058}
4059static inline u32 gr_gpcs_pri_mmu_debug_ctrl_debug_enabled_v(void)
4060{
4061 return 0x00000001U;
4062}
4063static inline u32 gr_gpcs_pri_mmu_debug_wr_r(void)
4064{
4065 return 0x004188b4U;
4066}
4067static inline u32 gr_gpcs_pri_mmu_debug_rd_r(void)
4068{
4069 return 0x004188b8U;
4070}
4071static inline u32 gr_gpcs_mmu_num_active_ltcs_r(void)
4072{
4073 return 0x004188acU;
4074}
4075static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_r(void)
4076{
4077 return 0x00419e10U;
4078}
4079static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_debugger_mode_f(u32 v)
4080{
4081 return (v & 0x1U) << 0U;
4082}
4083static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_debugger_mode_on_v(void)
4084{
4085 return 0x00000001U;
4086}
4087static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_stop_trigger_m(void)
4088{
4089 return 0x1U << 31U;
4090}
4091static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_stop_trigger_v(u32 r)
4092{
4093 return (r >> 31U) & 0x1U;
4094}
4095static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_stop_trigger_enable_f(void)
4096{
4097 return 0x80000000U;
4098}
4099static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_stop_trigger_disable_f(void)
4100{
4101 return 0x0U;
4102}
4103static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_run_trigger_m(void)
4104{
4105 return 0x1U << 30U;
4106}
4107static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_run_trigger_v(u32 r)
4108{
4109 return (r >> 30U) & 0x1U;
4110}
4111static inline u32 gr_gpcs_tpcs_sm_dbgr_control0_run_trigger_task_f(void)
4112{
4113 return 0x40000000U;
4114}
4115static inline u32 gr_fe_gfxp_wfi_timeout_r(void)
4116{
4117 return 0x004041c0U;
4118}
4119static inline u32 gr_fe_gfxp_wfi_timeout_count_f(u32 v)
4120{
4121 return (v & 0xffffffffU) << 0U;
4122}
4123static inline u32 gr_fe_gfxp_wfi_timeout_count_disabled_f(void)
4124{
4125 return 0x0U;
4126}
4127static inline u32 gr_gpcs_tpcs_sm_texio_control_r(void)
4128{
4129 return 0x00419c84U;
4130}
4131static inline u32 gr_gpcs_tpcs_sm_texio_control_oor_addr_check_mode_f(u32 v)
4132{
4133 return (v & 0x7U) << 8U;
4134}
4135static inline u32 gr_gpcs_tpcs_sm_texio_control_oor_addr_check_mode_m(void)
4136{
4137 return 0x7U << 8U;
4138}
4139static inline u32 gr_gpcs_tpcs_sm_texio_control_oor_addr_check_mode_arm_63_48_match_f(void)
4140{
4141 return 0x100U;
4142}
4143static inline u32 gr_gpcs_tpcs_sm_disp_ctrl_r(void)
4144{
4145 return 0x00419f78U;
4146}
4147static inline u32 gr_gpcs_tpcs_sm_disp_ctrl_re_suppress_m(void)
4148{
4149 return 0x3U << 11U;
4150}
4151static inline u32 gr_gpcs_tpcs_sm_disp_ctrl_re_suppress_disable_f(void)
4152{
4153 return 0x1000U;
4154}
4155static inline u32 gr_gpcs_tc_debug0_r(void)
4156{
4157 return 0x00418708U;
4158}
4159static inline u32 gr_gpcs_tc_debug0_limit_coalesce_buffer_size_f(u32 v)
4160{
4161 return (v & 0x1ffU) << 0U;
4162}
4163static inline u32 gr_gpcs_tc_debug0_limit_coalesce_buffer_size_m(void)
4164{
4165 return 0x1ffU << 0U;
4166}
4167#endif
diff --git a/include/nvgpu/hw/gp106/hw_ltc_gp106.h b/include/nvgpu/hw/gp106/hw_ltc_gp106.h
deleted file mode 100644
index e4e87aa..0000000
--- a/include/nvgpu/hw/gp106/hw_ltc_gp106.h
+++ /dev/null
@@ -1,559 +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_ltc_gp106_h_
57#define _hw_ltc_gp106_h_
58
59static inline u32 ltc_ltcs_lts0_cbc_ctrl1_r(void)
60{
61 return 0x0014046cU;
62}
63static inline u32 ltc_ltc0_lts0_dstg_cfg0_r(void)
64{
65 return 0x00140518U;
66}
67static inline u32 ltc_ltcs_ltss_dstg_cfg0_r(void)
68{
69 return 0x0017e318U;
70}
71static inline u32 ltc_ltcs_ltss_dstg_cfg0_vdc_4to2_disable_m(void)
72{
73 return 0x1U << 15U;
74}
75static inline u32 ltc_ltc0_lts0_tstg_cfg1_r(void)
76{
77 return 0x00140494U;
78}
79static inline u32 ltc_ltc0_lts0_tstg_cfg1_active_ways_v(u32 r)
80{
81 return (r >> 0U) & 0xffffU;
82}
83static inline u32 ltc_ltc0_lts0_tstg_cfg1_active_sets_v(u32 r)
84{
85 return (r >> 16U) & 0x3U;
86}
87static inline u32 ltc_ltc0_lts0_tstg_cfg1_active_sets_all_v(void)
88{
89 return 0x00000000U;
90}
91static inline u32 ltc_ltc0_lts0_tstg_cfg1_active_sets_half_v(void)
92{
93 return 0x00000001U;
94}
95static inline u32 ltc_ltc0_lts0_tstg_cfg1_active_sets_quarter_v(void)
96{
97 return 0x00000002U;
98}
99static inline u32 ltc_ltcs_ltss_cbc_ctrl1_r(void)
100{
101 return 0x0017e26cU;
102}
103static inline u32 ltc_ltcs_ltss_cbc_ctrl1_clean_active_f(void)
104{
105 return 0x1U;
106}
107static inline u32 ltc_ltcs_ltss_cbc_ctrl1_invalidate_active_f(void)
108{
109 return 0x2U;
110}
111static inline u32 ltc_ltcs_ltss_cbc_ctrl1_clear_v(u32 r)
112{
113 return (r >> 2U) & 0x1U;
114}
115static inline u32 ltc_ltcs_ltss_cbc_ctrl1_clear_active_v(void)
116{
117 return 0x00000001U;
118}
119static inline u32 ltc_ltcs_ltss_cbc_ctrl1_clear_active_f(void)
120{
121 return 0x4U;
122}
123static inline u32 ltc_ltc0_lts0_cbc_ctrl1_r(void)
124{
125 return 0x0014046cU;
126}
127static inline u32 ltc_ltcs_ltss_cbc_ctrl2_r(void)
128{
129 return 0x0017e270U;
130}
131static inline u32 ltc_ltcs_ltss_cbc_ctrl2_clear_lower_bound_f(u32 v)
132{
133 return (v & 0x3ffffU) << 0U;
134}
135static inline u32 ltc_ltcs_ltss_cbc_ctrl3_r(void)
136{
137 return 0x0017e274U;
138}
139static inline u32 ltc_ltcs_ltss_cbc_ctrl3_clear_upper_bound_f(u32 v)
140{
141 return (v & 0x3ffffU) << 0U;
142}
143static inline u32 ltc_ltcs_ltss_cbc_ctrl3_clear_upper_bound_init_v(void)
144{
145 return 0x0003ffffU;
146}
147static inline u32 ltc_ltcs_ltss_cbc_base_r(void)
148{
149 return 0x0017e278U;
150}
151static inline u32 ltc_ltcs_ltss_cbc_base_alignment_shift_v(void)
152{
153 return 0x0000000bU;
154}
155static inline u32 ltc_ltcs_ltss_cbc_base_address_v(u32 r)
156{
157 return (r >> 0U) & 0x3ffffffU;
158}
159static inline u32 ltc_ltcs_ltss_cbc_num_active_ltcs_r(void)
160{
161 return 0x0017e27cU;
162}
163static inline u32 ltc_ltcs_misc_ltc_num_active_ltcs_r(void)
164{
165 return 0x0017e000U;
166}
167static inline u32 ltc_ltcs_ltss_cbc_param_r(void)
168{
169 return 0x0017e280U;
170}
171static inline u32 ltc_ltcs_ltss_cbc_param_comptags_per_cache_line_v(u32 r)
172{
173 return (r >> 0U) & 0xffffU;
174}
175static inline u32 ltc_ltcs_ltss_cbc_param_cache_line_size_v(u32 r)
176{
177 return (r >> 24U) & 0xfU;
178}
179static inline u32 ltc_ltcs_ltss_cbc_param_slices_per_ltc_v(u32 r)
180{
181 return (r >> 28U) & 0xfU;
182}
183static inline u32 ltc_ltcs_ltss_cbc_param2_r(void)
184{
185 return 0x0017e3f4U;
186}
187static inline u32 ltc_ltcs_ltss_cbc_param2_gobs_per_comptagline_per_slice_v(u32 r)
188{
189 return (r >> 0U) & 0xffffU;
190}
191static inline u32 ltc_ltcs_ltss_tstg_set_mgmt_r(void)
192{
193 return 0x0017e2acU;
194}
195static inline u32 ltc_ltcs_ltss_tstg_set_mgmt_max_ways_evict_last_f(u32 v)
196{
197 return (v & 0x1fU) << 16U;
198}
199static inline u32 ltc_ltcs_ltss_dstg_zbc_index_r(void)
200{
201 return 0x0017e338U;
202}
203static inline u32 ltc_ltcs_ltss_dstg_zbc_index_address_f(u32 v)
204{
205 return (v & 0xfU) << 0U;
206}
207static inline u32 ltc_ltcs_ltss_dstg_zbc_color_clear_value_r(u32 i)
208{
209 return 0x0017e33cU + i*4U;
210}
211static inline u32 ltc_ltcs_ltss_dstg_zbc_color_clear_value__size_1_v(void)
212{
213 return 0x00000004U;
214}
215static inline u32 ltc_ltcs_ltss_dstg_zbc_depth_clear_value_r(void)
216{
217 return 0x0017e34cU;
218}
219static inline u32 ltc_ltcs_ltss_dstg_zbc_depth_clear_value_field_s(void)
220{
221 return 32U;
222}
223static inline u32 ltc_ltcs_ltss_dstg_zbc_depth_clear_value_field_f(u32 v)
224{
225 return (v & 0xffffffffU) << 0U;
226}
227static inline u32 ltc_ltcs_ltss_dstg_zbc_depth_clear_value_field_m(void)
228{
229 return 0xffffffffU << 0U;
230}
231static inline u32 ltc_ltcs_ltss_dstg_zbc_depth_clear_value_field_v(u32 r)
232{
233 return (r >> 0U) & 0xffffffffU;
234}
235static inline u32 ltc_ltcs_ltss_tstg_set_mgmt_2_r(void)
236{
237 return 0x0017e2b0U;
238}
239static inline u32 ltc_ltcs_ltss_tstg_set_mgmt_2_l2_bypass_mode_enabled_f(void)
240{
241 return 0x10000000U;
242}
243static inline u32 ltc_ltcs_ltss_g_elpg_r(void)
244{
245 return 0x0017e214U;
246}
247static inline u32 ltc_ltcs_ltss_g_elpg_flush_v(u32 r)
248{
249 return (r >> 0U) & 0x1U;
250}
251static inline u32 ltc_ltcs_ltss_g_elpg_flush_pending_v(void)
252{
253 return 0x00000001U;
254}
255static inline u32 ltc_ltcs_ltss_g_elpg_flush_pending_f(void)
256{
257 return 0x1U;
258}
259static inline u32 ltc_ltc0_ltss_g_elpg_r(void)
260{
261 return 0x00140214U;
262}
263static inline u32 ltc_ltc0_ltss_g_elpg_flush_v(u32 r)
264{
265 return (r >> 0U) & 0x1U;
266}
267static inline u32 ltc_ltc0_ltss_g_elpg_flush_pending_v(void)
268{
269 return 0x00000001U;
270}
271static inline u32 ltc_ltc0_ltss_g_elpg_flush_pending_f(void)
272{
273 return 0x1U;
274}
275static inline u32 ltc_ltc1_ltss_g_elpg_r(void)
276{
277 return 0x00142214U;
278}
279static inline u32 ltc_ltc1_ltss_g_elpg_flush_v(u32 r)
280{
281 return (r >> 0U) & 0x1U;
282}
283static inline u32 ltc_ltc1_ltss_g_elpg_flush_pending_v(void)
284{
285 return 0x00000001U;
286}
287static inline u32 ltc_ltc1_ltss_g_elpg_flush_pending_f(void)
288{
289 return 0x1U;
290}
291static inline u32 ltc_ltcs_ltss_intr_r(void)
292{
293 return 0x0017e20cU;
294}
295static inline u32 ltc_ltcs_ltss_intr_ecc_sec_error_pending_f(void)
296{
297 return 0x100U;
298}
299static inline u32 ltc_ltcs_ltss_intr_ecc_ded_error_pending_f(void)
300{
301 return 0x200U;
302}
303static inline u32 ltc_ltcs_ltss_intr_en_evicted_cb_m(void)
304{
305 return 0x1U << 20U;
306}
307static inline u32 ltc_ltcs_ltss_intr_en_illegal_compstat_access_m(void)
308{
309 return 0x1U << 30U;
310}
311static inline u32 ltc_ltcs_ltss_intr_en_ecc_sec_error_enabled_f(void)
312{
313 return 0x1000000U;
314}
315static inline u32 ltc_ltcs_ltss_intr_en_ecc_ded_error_enabled_f(void)
316{
317 return 0x2000000U;
318}
319static inline u32 ltc_ltc0_lts0_intr_r(void)
320{
321 return 0x0014040cU;
322}
323static inline u32 ltc_ltc0_lts0_dstg_ecc_report_r(void)
324{
325 return 0x0014051cU;
326}
327static inline u32 ltc_ltc0_lts0_dstg_ecc_report_sec_count_m(void)
328{
329 return 0xffU << 0U;
330}
331static inline u32 ltc_ltc0_lts0_dstg_ecc_report_sec_count_v(u32 r)
332{
333 return (r >> 0U) & 0xffU;
334}
335static inline u32 ltc_ltc0_lts0_dstg_ecc_report_ded_count_m(void)
336{
337 return 0xffU << 16U;
338}
339static inline u32 ltc_ltc0_lts0_dstg_ecc_report_ded_count_v(u32 r)
340{
341 return (r >> 16U) & 0xffU;
342}
343static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_r(void)
344{
345 return 0x0017e2a0U;
346}
347static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_v(u32 r)
348{
349 return (r >> 0U) & 0x1U;
350}
351static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_pending_v(void)
352{
353 return 0x00000001U;
354}
355static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_pending_f(void)
356{
357 return 0x1U;
358}
359static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_max_cycles_between_invalidates_v(u32 r)
360{
361 return (r >> 8U) & 0xfU;
362}
363static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_max_cycles_between_invalidates_3_v(void)
364{
365 return 0x00000003U;
366}
367static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_max_cycles_between_invalidates_3_f(void)
368{
369 return 0x300U;
370}
371static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_last_class_v(u32 r)
372{
373 return (r >> 28U) & 0x1U;
374}
375static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_last_class_true_v(void)
376{
377 return 0x00000001U;
378}
379static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_last_class_true_f(void)
380{
381 return 0x10000000U;
382}
383static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_normal_class_v(u32 r)
384{
385 return (r >> 29U) & 0x1U;
386}
387static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_normal_class_true_v(void)
388{
389 return 0x00000001U;
390}
391static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_normal_class_true_f(void)
392{
393 return 0x20000000U;
394}
395static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_first_class_v(u32 r)
396{
397 return (r >> 30U) & 0x1U;
398}
399static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_first_class_true_v(void)
400{
401 return 0x00000001U;
402}
403static inline u32 ltc_ltcs_ltss_tstg_cmgmt0_invalidate_evict_first_class_true_f(void)
404{
405 return 0x40000000U;
406}
407static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_r(void)
408{
409 return 0x0017e2a4U;
410}
411static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_v(u32 r)
412{
413 return (r >> 0U) & 0x1U;
414}
415static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_pending_v(void)
416{
417 return 0x00000001U;
418}
419static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_pending_f(void)
420{
421 return 0x1U;
422}
423static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_max_cycles_between_cleans_v(u32 r)
424{
425 return (r >> 8U) & 0xfU;
426}
427static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_max_cycles_between_cleans_3_v(void)
428{
429 return 0x00000003U;
430}
431static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_max_cycles_between_cleans_3_f(void)
432{
433 return 0x300U;
434}
435static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_wait_for_fb_to_pull_v(u32 r)
436{
437 return (r >> 16U) & 0x1U;
438}
439static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_wait_for_fb_to_pull_true_v(void)
440{
441 return 0x00000001U;
442}
443static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_wait_for_fb_to_pull_true_f(void)
444{
445 return 0x10000U;
446}
447static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_last_class_v(u32 r)
448{
449 return (r >> 28U) & 0x1U;
450}
451static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_last_class_true_v(void)
452{
453 return 0x00000001U;
454}
455static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_last_class_true_f(void)
456{
457 return 0x10000000U;
458}
459static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_normal_class_v(u32 r)
460{
461 return (r >> 29U) & 0x1U;
462}
463static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_normal_class_true_v(void)
464{
465 return 0x00000001U;
466}
467static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_normal_class_true_f(void)
468{
469 return 0x20000000U;
470}
471static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_first_class_v(u32 r)
472{
473 return (r >> 30U) & 0x1U;
474}
475static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_first_class_true_v(void)
476{
477 return 0x00000001U;
478}
479static inline u32 ltc_ltcs_ltss_tstg_cmgmt1_clean_evict_first_class_true_f(void)
480{
481 return 0x40000000U;
482}
483static inline u32 ltc_ltc0_ltss_tstg_cmgmt0_r(void)
484{
485 return 0x001402a0U;
486}
487static inline u32 ltc_ltc0_ltss_tstg_cmgmt0_invalidate_v(u32 r)
488{
489 return (r >> 0U) & 0x1U;
490}
491static inline u32 ltc_ltc0_ltss_tstg_cmgmt0_invalidate_pending_v(void)
492{
493 return 0x00000001U;
494}
495static inline u32 ltc_ltc0_ltss_tstg_cmgmt0_invalidate_pending_f(void)
496{
497 return 0x1U;
498}
499static inline u32 ltc_ltc0_ltss_tstg_cmgmt1_r(void)
500{
501 return 0x001402a4U;
502}
503static inline u32 ltc_ltc0_ltss_tstg_cmgmt1_clean_v(u32 r)
504{
505 return (r >> 0U) & 0x1U;
506}
507static inline u32 ltc_ltc0_ltss_tstg_cmgmt1_clean_pending_v(void)
508{
509 return 0x00000001U;
510}
511static inline u32 ltc_ltc0_ltss_tstg_cmgmt1_clean_pending_f(void)
512{
513 return 0x1U;
514}
515static inline u32 ltc_ltc1_ltss_tstg_cmgmt0_r(void)
516{
517 return 0x001422a0U;
518}
519static inline u32 ltc_ltc1_ltss_tstg_cmgmt0_invalidate_v(u32 r)
520{
521 return (r >> 0U) & 0x1U;
522}
523static inline u32 ltc_ltc1_ltss_tstg_cmgmt0_invalidate_pending_v(void)
524{
525 return 0x00000001U;
526}
527static inline u32 ltc_ltc1_ltss_tstg_cmgmt0_invalidate_pending_f(void)
528{
529 return 0x1U;
530}
531static inline u32 ltc_ltc1_ltss_tstg_cmgmt1_r(void)
532{
533 return 0x001422a4U;
534}
535static inline u32 ltc_ltc1_ltss_tstg_cmgmt1_clean_v(u32 r)
536{
537 return (r >> 0U) & 0x1U;
538}
539static inline u32 ltc_ltc1_ltss_tstg_cmgmt1_clean_pending_v(void)
540{
541 return 0x00000001U;
542}
543static inline u32 ltc_ltc1_ltss_tstg_cmgmt1_clean_pending_f(void)
544{
545 return 0x1U;
546}
547static inline u32 ltc_ltc0_lts0_tstg_info_1_r(void)
548{
549 return 0x0014058cU;
550}
551static inline u32 ltc_ltc0_lts0_tstg_info_1_slice_size_in_kb_v(u32 r)
552{
553 return (r >> 0U) & 0xffffU;
554}
555static inline u32 ltc_ltc0_lts0_tstg_info_1_slices_per_l2_v(u32 r)
556{
557 return (r >> 16U) & 0x1fU;
558}
559#endif
diff --git a/include/nvgpu/hw/gp106/hw_mc_gp106.h b/include/nvgpu/hw/gp106/hw_mc_gp106.h
deleted file mode 100644
index 349e2d7..0000000
--- a/include/nvgpu/hw/gp106/hw_mc_gp106.h
+++ /dev/null
@@ -1,251 +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_mc_gp106_h_
57#define _hw_mc_gp106_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_replayable_fault_pending_f(void)
88{
89 return 0x200U;
90}
91static inline u32 mc_intr_pgraph_pending_f(void)
92{
93 return 0x1000U;
94}
95static inline u32 mc_intr_pmu_pending_f(void)
96{
97 return 0x1000000U;
98}
99static inline u32 mc_intr_ltc_pending_f(void)
100{
101 return 0x2000000U;
102}
103static inline u32 mc_intr_priv_ring_pending_f(void)
104{
105 return 0x40000000U;
106}
107static inline u32 mc_intr_pbus_pending_f(void)
108{
109 return 0x10000000U;
110}
111static inline u32 mc_intr_en_r(u32 i)
112{
113 return 0x00000140U + i*4U;
114}
115static inline u32 mc_intr_en_set_r(u32 i)
116{
117 return 0x00000160U + i*4U;
118}
119static inline u32 mc_intr_en_clear_r(u32 i)
120{
121 return 0x00000180U + i*4U;
122}
123static inline u32 mc_enable_r(void)
124{
125 return 0x00000200U;
126}
127static inline u32 mc_enable_xbar_enabled_f(void)
128{
129 return 0x4U;
130}
131static inline u32 mc_enable_l2_enabled_f(void)
132{
133 return 0x8U;
134}
135static inline u32 mc_enable_pmedia_s(void)
136{
137 return 1U;
138}
139static inline u32 mc_enable_pmedia_f(u32 v)
140{
141 return (v & 0x1U) << 4U;
142}
143static inline u32 mc_enable_pmedia_m(void)
144{
145 return 0x1U << 4U;
146}
147static inline u32 mc_enable_pmedia_v(u32 r)
148{
149 return (r >> 4U) & 0x1U;
150}
151static inline u32 mc_enable_priv_ring_enabled_f(void)
152{
153 return 0x20U;
154}
155static inline u32 mc_enable_ce0_m(void)
156{
157 return 0x1U << 6U;
158}
159static inline u32 mc_enable_pfifo_enabled_f(void)
160{
161 return 0x100U;
162}
163static inline u32 mc_enable_pgraph_enabled_f(void)
164{
165 return 0x1000U;
166}
167static inline u32 mc_enable_pwr_v(u32 r)
168{
169 return (r >> 13U) & 0x1U;
170}
171static inline u32 mc_enable_pwr_disabled_v(void)
172{
173 return 0x00000000U;
174}
175static inline u32 mc_enable_pwr_enabled_f(void)
176{
177 return 0x2000U;
178}
179static inline u32 mc_enable_pfb_enabled_f(void)
180{
181 return 0x100000U;
182}
183static inline u32 mc_enable_ce2_m(void)
184{
185 return 0x1U << 21U;
186}
187static inline u32 mc_enable_ce2_enabled_f(void)
188{
189 return 0x200000U;
190}
191static inline u32 mc_enable_blg_enabled_f(void)
192{
193 return 0x8000000U;
194}
195static inline u32 mc_enable_perfmon_enabled_f(void)
196{
197 return 0x10000000U;
198}
199static inline u32 mc_enable_hub_enabled_f(void)
200{
201 return 0x20000000U;
202}
203static inline u32 mc_intr_ltc_r(void)
204{
205 return 0x000001c0U;
206}
207static inline u32 mc_enable_pb_r(void)
208{
209 return 0x00000204U;
210}
211static inline u32 mc_enable_pb_0_s(void)
212{
213 return 1U;
214}
215static inline u32 mc_enable_pb_0_f(u32 v)
216{
217 return (v & 0x1U) << 0U;
218}
219static inline u32 mc_enable_pb_0_m(void)
220{
221 return 0x1U << 0U;
222}
223static inline u32 mc_enable_pb_0_v(u32 r)
224{
225 return (r >> 0U) & 0x1U;
226}
227static inline u32 mc_enable_pb_0_enabled_v(void)
228{
229 return 0x00000001U;
230}
231static inline u32 mc_enable_pb_sel_f(u32 v, u32 i)
232{
233 return (v & 0x1U) << (0U + i*1U);
234}
235static inline u32 mc_elpg_enable_r(void)
236{
237 return 0x0000020cU;
238}
239static inline u32 mc_elpg_enable_xbar_enabled_f(void)
240{
241 return 0x4U;
242}
243static inline u32 mc_elpg_enable_pfb_enabled_f(void)
244{
245 return 0x100000U;
246}
247static inline u32 mc_elpg_enable_hub_enabled_f(void)
248{
249 return 0x20000000U;
250}
251#endif
diff --git a/include/nvgpu/hw/gp106/hw_pbdma_gp106.h b/include/nvgpu/hw/gp106/hw_pbdma_gp106.h
deleted file mode 100644
index 1005c5a..0000000
--- a/include/nvgpu/hw/gp106/hw_pbdma_gp106.h
+++ /dev/null
@@ -1,535 +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_pbdma_gp106_h_
57#define _hw_pbdma_gp106_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 0x00000004U;
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_max_f(void)
280{
281 return 0x7800U;
282}
283static inline u32 pbdma_acquire_timeout_man_max_f(void)
284{
285 return 0x7fff8000U;
286}
287static inline u32 pbdma_acquire_timeout_en_disable_f(void)
288{
289 return 0x0U;
290}
291static inline u32 pbdma_status_r(u32 i)
292{
293 return 0x00040100U + i*8192U;
294}
295static inline u32 pbdma_channel_r(u32 i)
296{
297 return 0x00040120U + i*8192U;
298}
299static inline u32 pbdma_signature_r(u32 i)
300{
301 return 0x00040010U + i*8192U;
302}
303static inline u32 pbdma_signature_hw_valid_f(void)
304{
305 return 0xfaceU;
306}
307static inline u32 pbdma_signature_sw_zero_f(void)
308{
309 return 0x0U;
310}
311static inline u32 pbdma_userd_r(u32 i)
312{
313 return 0x00040008U + i*8192U;
314}
315static inline u32 pbdma_userd_target_vid_mem_f(void)
316{
317 return 0x0U;
318}
319static inline u32 pbdma_userd_target_sys_mem_coh_f(void)
320{
321 return 0x2U;
322}
323static inline u32 pbdma_userd_target_sys_mem_ncoh_f(void)
324{
325 return 0x3U;
326}
327static inline u32 pbdma_userd_addr_f(u32 v)
328{
329 return (v & 0x7fffffU) << 9U;
330}
331static inline u32 pbdma_userd_hi_r(u32 i)
332{
333 return 0x0004000cU + i*8192U;
334}
335static inline u32 pbdma_userd_hi_addr_f(u32 v)
336{
337 return (v & 0xffU) << 0U;
338}
339static inline u32 pbdma_config_r(u32 i)
340{
341 return 0x000400f4U + i*8192U;
342}
343static inline u32 pbdma_config_auth_level_privileged_f(void)
344{
345 return 0x100U;
346}
347static inline u32 pbdma_hce_ctrl_r(u32 i)
348{
349 return 0x000400e4U + i*8192U;
350}
351static inline u32 pbdma_hce_ctrl_hce_priv_mode_yes_f(void)
352{
353 return 0x20U;
354}
355static inline u32 pbdma_intr_0_r(u32 i)
356{
357 return 0x00040108U + i*8192U;
358}
359static inline u32 pbdma_intr_0_memreq_v(u32 r)
360{
361 return (r >> 0U) & 0x1U;
362}
363static inline u32 pbdma_intr_0_memreq_pending_f(void)
364{
365 return 0x1U;
366}
367static inline u32 pbdma_intr_0_memack_timeout_pending_f(void)
368{
369 return 0x2U;
370}
371static inline u32 pbdma_intr_0_memack_extra_pending_f(void)
372{
373 return 0x4U;
374}
375static inline u32 pbdma_intr_0_memdat_timeout_pending_f(void)
376{
377 return 0x8U;
378}
379static inline u32 pbdma_intr_0_memdat_extra_pending_f(void)
380{
381 return 0x10U;
382}
383static inline u32 pbdma_intr_0_memflush_pending_f(void)
384{
385 return 0x20U;
386}
387static inline u32 pbdma_intr_0_memop_pending_f(void)
388{
389 return 0x40U;
390}
391static inline u32 pbdma_intr_0_lbconnect_pending_f(void)
392{
393 return 0x80U;
394}
395static inline u32 pbdma_intr_0_lbreq_pending_f(void)
396{
397 return 0x100U;
398}
399static inline u32 pbdma_intr_0_lback_timeout_pending_f(void)
400{
401 return 0x200U;
402}
403static inline u32 pbdma_intr_0_lback_extra_pending_f(void)
404{
405 return 0x400U;
406}
407static inline u32 pbdma_intr_0_lbdat_timeout_pending_f(void)
408{
409 return 0x800U;
410}
411static inline u32 pbdma_intr_0_lbdat_extra_pending_f(void)
412{
413 return 0x1000U;
414}
415static inline u32 pbdma_intr_0_gpfifo_pending_f(void)
416{
417 return 0x2000U;
418}
419static inline u32 pbdma_intr_0_gpptr_pending_f(void)
420{
421 return 0x4000U;
422}
423static inline u32 pbdma_intr_0_gpentry_pending_f(void)
424{
425 return 0x8000U;
426}
427static inline u32 pbdma_intr_0_gpcrc_pending_f(void)
428{
429 return 0x10000U;
430}
431static inline u32 pbdma_intr_0_pbptr_pending_f(void)
432{
433 return 0x20000U;
434}
435static inline u32 pbdma_intr_0_pbentry_pending_f(void)
436{
437 return 0x40000U;
438}
439static inline u32 pbdma_intr_0_pbcrc_pending_f(void)
440{
441 return 0x80000U;
442}
443static inline u32 pbdma_intr_0_xbarconnect_pending_f(void)
444{
445 return 0x100000U;
446}
447static inline u32 pbdma_intr_0_method_pending_f(void)
448{
449 return 0x200000U;
450}
451static inline u32 pbdma_intr_0_methodcrc_pending_f(void)
452{
453 return 0x400000U;
454}
455static inline u32 pbdma_intr_0_device_pending_f(void)
456{
457 return 0x800000U;
458}
459static inline u32 pbdma_intr_0_semaphore_pending_f(void)
460{
461 return 0x2000000U;
462}
463static inline u32 pbdma_intr_0_acquire_pending_f(void)
464{
465 return 0x4000000U;
466}
467static inline u32 pbdma_intr_0_pri_pending_f(void)
468{
469 return 0x8000000U;
470}
471static inline u32 pbdma_intr_0_no_ctxsw_seg_pending_f(void)
472{
473 return 0x20000000U;
474}
475static inline u32 pbdma_intr_0_pbseg_pending_f(void)
476{
477 return 0x40000000U;
478}
479static inline u32 pbdma_intr_0_signature_pending_f(void)
480{
481 return 0x80000000U;
482}
483static inline u32 pbdma_intr_1_r(u32 i)
484{
485 return 0x00040148U + i*8192U;
486}
487static inline u32 pbdma_intr_en_0_r(u32 i)
488{
489 return 0x0004010cU + i*8192U;
490}
491static inline u32 pbdma_intr_en_0_lbreq_enabled_f(void)
492{
493 return 0x100U;
494}
495static inline u32 pbdma_intr_en_1_r(u32 i)
496{
497 return 0x0004014cU + i*8192U;
498}
499static inline u32 pbdma_intr_stall_r(u32 i)
500{
501 return 0x0004013cU + i*8192U;
502}
503static inline u32 pbdma_intr_stall_lbreq_enabled_f(void)
504{
505 return 0x100U;
506}
507static inline u32 pbdma_intr_stall_1_r(u32 i)
508{
509 return 0x00040140U + i*8192U;
510}
511static inline u32 pbdma_intr_stall_1_hce_illegal_op_enabled_f(void)
512{
513 return 0x1U;
514}
515static inline u32 pbdma_udma_nop_r(void)
516{
517 return 0x00000008U;
518}
519static inline u32 pbdma_runlist_timeslice_r(u32 i)
520{
521 return 0x000400f8U + i*8192U;
522}
523static inline u32 pbdma_runlist_timeslice_timeout_128_f(void)
524{
525 return 0x80U;
526}
527static inline u32 pbdma_runlist_timeslice_timescale_3_f(void)
528{
529 return 0x3000U;
530}
531static inline u32 pbdma_runlist_timeslice_enable_true_f(void)
532{
533 return 0x10000000U;
534}
535#endif
diff --git a/include/nvgpu/hw/gp106/hw_perf_gp106.h b/include/nvgpu/hw/gp106/hw_perf_gp106.h
deleted file mode 100644
index 334cd20..0000000
--- a/include/nvgpu/hw/gp106/hw_perf_gp106.h
+++ /dev/null
@@ -1,219 +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_perf_gp106_h_
57#define _hw_perf_gp106_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/gp106/hw_pram_gp106.h b/include/nvgpu/hw/gp106/hw_pram_gp106.h
deleted file mode 100644
index 7e33e71..0000000
--- a/include/nvgpu/hw/gp106/hw_pram_gp106.h
+++ /dev/null
@@ -1,63 +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_pram_gp106_h_
57#define _hw_pram_gp106_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/gp106/hw_pri_ringmaster_gp106.h b/include/nvgpu/hw/gp106/hw_pri_ringmaster_gp106.h
deleted file mode 100644
index efdedc3..0000000
--- a/include/nvgpu/hw/gp106/hw_pri_ringmaster_gp106.h
+++ /dev/null
@@ -1,151 +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_pri_ringmaster_gp106_h_
57#define _hw_pri_ringmaster_gp106_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_status1_r(void)
112{
113 return 0x0012005cU;
114}
115static inline u32 pri_ringmaster_global_ctl_r(void)
116{
117 return 0x00120060U;
118}
119static inline u32 pri_ringmaster_global_ctl_ring_reset_asserted_f(void)
120{
121 return 0x1U;
122}
123static inline u32 pri_ringmaster_global_ctl_ring_reset_deasserted_f(void)
124{
125 return 0x0U;
126}
127static inline u32 pri_ringmaster_enum_fbp_r(void)
128{
129 return 0x00120074U;
130}
131static inline u32 pri_ringmaster_enum_fbp_count_v(u32 r)
132{
133 return (r >> 0U) & 0x1fU;
134}
135static inline u32 pri_ringmaster_enum_gpc_r(void)
136{
137 return 0x00120078U;
138}
139static inline u32 pri_ringmaster_enum_gpc_count_v(u32 r)
140{
141 return (r >> 0U) & 0x1fU;
142}
143static inline u32 pri_ringmaster_enum_ltc_r(void)
144{
145 return 0x0012006cU;
146}
147static inline u32 pri_ringmaster_enum_ltc_count_v(u32 r)
148{
149 return (r >> 0U) & 0x1fU;
150}
151#endif
diff --git a/include/nvgpu/hw/gp106/hw_pri_ringstation_gpc_gp106.h b/include/nvgpu/hw/gp106/hw_pri_ringstation_gpc_gp106.h
deleted file mode 100644
index 711938d..0000000
--- a/include/nvgpu/hw/gp106/hw_pri_ringstation_gpc_gp106.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_gp106_h_
57#define _hw_pri_ringstation_gpc_gp106_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/gp106/hw_pri_ringstation_sys_gp106.h b/include/nvgpu/hw/gp106/hw_pri_ringstation_sys_gp106.h
deleted file mode 100644
index a3a1447..0000000
--- a/include/nvgpu/hw/gp106/hw_pri_ringstation_sys_gp106.h
+++ /dev/null
@@ -1,91 +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_pri_ringstation_sys_gp106_h_
57#define _hw_pri_ringstation_sys_gp106_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/gp106/hw_proj_gp106.h b/include/nvgpu/hw/gp106/hw_proj_gp106.h
deleted file mode 100644
index 866bc7b..0000000
--- a/include/nvgpu/hw/gp106/hw_proj_gp106.h
+++ /dev/null
@@ -1,179 +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_proj_gp106_h_
57#define _hw_proj_gp106_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_base_v(void)
84{
85 return 0x00900000U;
86}
87static inline u32 proj_fbpa_shared_base_v(void)
88{
89 return 0x009a0000U;
90}
91static inline u32 proj_fbpa_stride_v(void)
92{
93 return 0x00004000U;
94}
95static inline u32 proj_ppc_in_gpc_base_v(void)
96{
97 return 0x00003000U;
98}
99static inline u32 proj_ppc_in_gpc_shared_base_v(void)
100{
101 return 0x00003e00U;
102}
103static inline u32 proj_ppc_in_gpc_stride_v(void)
104{
105 return 0x00000200U;
106}
107static inline u32 proj_rop_base_v(void)
108{
109 return 0x00410000U;
110}
111static inline u32 proj_rop_shared_base_v(void)
112{
113 return 0x00408800U;
114}
115static inline u32 proj_rop_stride_v(void)
116{
117 return 0x00000400U;
118}
119static inline u32 proj_tpc_in_gpc_base_v(void)
120{
121 return 0x00004000U;
122}
123static inline u32 proj_tpc_in_gpc_stride_v(void)
124{
125 return 0x00000800U;
126}
127static inline u32 proj_tpc_in_gpc_shared_base_v(void)
128{
129 return 0x00001800U;
130}
131static inline u32 proj_host_num_engines_v(void)
132{
133 return 0x00000009U;
134}
135static inline u32 proj_host_num_pbdma_v(void)
136{
137 return 0x00000004U;
138}
139static inline u32 proj_scal_litter_num_tpc_per_gpc_v(void)
140{
141 return 0x00000005U;
142}
143static inline u32 proj_scal_litter_num_sm_per_tpc_v(void)
144{
145 return 0x00000001U;
146}
147static inline u32 proj_scal_litter_num_fbps_v(void)
148{
149 return 0x00000006U;
150}
151static inline u32 proj_scal_litter_num_fbpas_v(void)
152{
153 return 0x00000006U;
154}
155static inline u32 proj_scal_litter_num_gpcs_v(void)
156{
157 return 0x00000006U;
158}
159static inline u32 proj_scal_litter_num_pes_per_gpc_v(void)
160{
161 return 0x00000003U;
162}
163static inline u32 proj_scal_litter_num_tpcs_per_pes_v(void)
164{
165 return 0x00000002U;
166}
167static inline u32 proj_scal_litter_num_zcull_banks_v(void)
168{
169 return 0x00000004U;
170}
171static inline u32 proj_scal_max_gpcs_v(void)
172{
173 return 0x00000020U;
174}
175static inline u32 proj_scal_max_tpc_per_gpc_v(void)
176{
177 return 0x00000008U;
178}
179#endif
diff --git a/include/nvgpu/hw/gp106/hw_psec_gp106.h b/include/nvgpu/hw/gp106/hw_psec_gp106.h
deleted file mode 100644
index b91c09b..0000000
--- a/include/nvgpu/hw/gp106/hw_psec_gp106.h
+++ /dev/null
@@ -1,615 +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_psec_gp106_h_
57#define _hw_psec_gp106_h_
58
59static inline u32 psec_falcon_irqsset_r(void)
60{
61 return 0x00087000U;
62}
63static inline u32 psec_falcon_irqsset_swgen0_set_f(void)
64{
65 return 0x40U;
66}
67static inline u32 psec_falcon_irqsclr_r(void)
68{
69 return 0x00087004U;
70}
71static inline u32 psec_falcon_irqstat_r(void)
72{
73 return 0x00087008U;
74}
75static inline u32 psec_falcon_irqstat_halt_true_f(void)
76{
77 return 0x10U;
78}
79static inline u32 psec_falcon_irqstat_exterr_true_f(void)
80{
81 return 0x20U;
82}
83static inline u32 psec_falcon_irqstat_swgen0_true_f(void)
84{
85 return 0x40U;
86}
87static inline u32 psec_falcon_irqmode_r(void)
88{
89 return 0x0008700cU;
90}
91static inline u32 psec_falcon_irqmset_r(void)
92{
93 return 0x00087010U;
94}
95static inline u32 psec_falcon_irqmset_gptmr_f(u32 v)
96{
97 return (v & 0x1U) << 0U;
98}
99static inline u32 psec_falcon_irqmset_wdtmr_f(u32 v)
100{
101 return (v & 0x1U) << 1U;
102}
103static inline u32 psec_falcon_irqmset_mthd_f(u32 v)
104{
105 return (v & 0x1U) << 2U;
106}
107static inline u32 psec_falcon_irqmset_ctxsw_f(u32 v)
108{
109 return (v & 0x1U) << 3U;
110}
111static inline u32 psec_falcon_irqmset_halt_f(u32 v)
112{
113 return (v & 0x1U) << 4U;
114}
115static inline u32 psec_falcon_irqmset_exterr_f(u32 v)
116{
117 return (v & 0x1U) << 5U;
118}
119static inline u32 psec_falcon_irqmset_swgen0_f(u32 v)
120{
121 return (v & 0x1U) << 6U;
122}
123static inline u32 psec_falcon_irqmset_swgen1_f(u32 v)
124{
125 return (v & 0x1U) << 7U;
126}
127static inline u32 psec_falcon_irqmclr_r(void)
128{
129 return 0x00087014U;
130}
131static inline u32 psec_falcon_irqmclr_gptmr_f(u32 v)
132{
133 return (v & 0x1U) << 0U;
134}
135static inline u32 psec_falcon_irqmclr_wdtmr_f(u32 v)
136{
137 return (v & 0x1U) << 1U;
138}
139static inline u32 psec_falcon_irqmclr_mthd_f(u32 v)
140{
141 return (v & 0x1U) << 2U;
142}
143static inline u32 psec_falcon_irqmclr_ctxsw_f(u32 v)
144{
145 return (v & 0x1U) << 3U;
146}
147static inline u32 psec_falcon_irqmclr_halt_f(u32 v)
148{
149 return (v & 0x1U) << 4U;
150}
151static inline u32 psec_falcon_irqmclr_exterr_f(u32 v)
152{
153 return (v & 0x1U) << 5U;
154}
155static inline u32 psec_falcon_irqmclr_swgen0_f(u32 v)
156{
157 return (v & 0x1U) << 6U;
158}
159static inline u32 psec_falcon_irqmclr_swgen1_f(u32 v)
160{
161 return (v & 0x1U) << 7U;
162}
163static inline u32 psec_falcon_irqmclr_ext_f(u32 v)
164{
165 return (v & 0xffU) << 8U;
166}
167static inline u32 psec_falcon_irqmask_r(void)
168{
169 return 0x00087018U;
170}
171static inline u32 psec_falcon_irqdest_r(void)
172{
173 return 0x0008701cU;
174}
175static inline u32 psec_falcon_irqdest_host_gptmr_f(u32 v)
176{
177 return (v & 0x1U) << 0U;
178}
179static inline u32 psec_falcon_irqdest_host_wdtmr_f(u32 v)
180{
181 return (v & 0x1U) << 1U;
182}
183static inline u32 psec_falcon_irqdest_host_mthd_f(u32 v)
184{
185 return (v & 0x1U) << 2U;
186}
187static inline u32 psec_falcon_irqdest_host_ctxsw_f(u32 v)
188{
189 return (v & 0x1U) << 3U;
190}
191static inline u32 psec_falcon_irqdest_host_halt_f(u32 v)
192{
193 return (v & 0x1U) << 4U;
194}
195static inline u32 psec_falcon_irqdest_host_exterr_f(u32 v)
196{
197 return (v & 0x1U) << 5U;
198}
199static inline u32 psec_falcon_irqdest_host_swgen0_f(u32 v)
200{
201 return (v & 0x1U) << 6U;
202}
203static inline u32 psec_falcon_irqdest_host_swgen1_f(u32 v)
204{
205 return (v & 0x1U) << 7U;
206}
207static inline u32 psec_falcon_irqdest_host_ext_f(u32 v)
208{
209 return (v & 0xffU) << 8U;
210}
211static inline u32 psec_falcon_irqdest_target_gptmr_f(u32 v)
212{
213 return (v & 0x1U) << 16U;
214}
215static inline u32 psec_falcon_irqdest_target_wdtmr_f(u32 v)
216{
217 return (v & 0x1U) << 17U;
218}
219static inline u32 psec_falcon_irqdest_target_mthd_f(u32 v)
220{
221 return (v & 0x1U) << 18U;
222}
223static inline u32 psec_falcon_irqdest_target_ctxsw_f(u32 v)
224{
225 return (v & 0x1U) << 19U;
226}
227static inline u32 psec_falcon_irqdest_target_halt_f(u32 v)
228{
229 return (v & 0x1U) << 20U;
230}
231static inline u32 psec_falcon_irqdest_target_exterr_f(u32 v)
232{
233 return (v & 0x1U) << 21U;
234}
235static inline u32 psec_falcon_irqdest_target_swgen0_f(u32 v)
236{
237 return (v & 0x1U) << 22U;
238}
239static inline u32 psec_falcon_irqdest_target_swgen1_f(u32 v)
240{
241 return (v & 0x1U) << 23U;
242}
243static inline u32 psec_falcon_irqdest_target_ext_f(u32 v)
244{
245 return (v & 0xffU) << 24U;
246}
247static inline u32 psec_falcon_curctx_r(void)
248{
249 return 0x00087050U;
250}
251static inline u32 psec_falcon_nxtctx_r(void)
252{
253 return 0x00087054U;
254}
255static inline u32 psec_falcon_mailbox0_r(void)
256{
257 return 0x00087040U;
258}
259static inline u32 psec_falcon_mailbox1_r(void)
260{
261 return 0x00087044U;
262}
263static inline u32 psec_falcon_itfen_r(void)
264{
265 return 0x00087048U;
266}
267static inline u32 psec_falcon_itfen_ctxen_enable_f(void)
268{
269 return 0x1U;
270}
271static inline u32 psec_falcon_idlestate_r(void)
272{
273 return 0x0008704cU;
274}
275static inline u32 psec_falcon_idlestate_falcon_busy_v(u32 r)
276{
277 return (r >> 0U) & 0x1U;
278}
279static inline u32 psec_falcon_idlestate_ext_busy_v(u32 r)
280{
281 return (r >> 1U) & 0x7fffU;
282}
283static inline u32 psec_falcon_os_r(void)
284{
285 return 0x00087080U;
286}
287static inline u32 psec_falcon_engctl_r(void)
288{
289 return 0x000870a4U;
290}
291static inline u32 psec_falcon_cpuctl_r(void)
292{
293 return 0x00087100U;
294}
295static inline u32 psec_falcon_cpuctl_startcpu_f(u32 v)
296{
297 return (v & 0x1U) << 1U;
298}
299static inline u32 psec_falcon_cpuctl_halt_intr_f(u32 v)
300{
301 return (v & 0x1U) << 4U;
302}
303static inline u32 psec_falcon_cpuctl_halt_intr_m(void)
304{
305 return 0x1U << 4U;
306}
307static inline u32 psec_falcon_cpuctl_halt_intr_v(u32 r)
308{
309 return (r >> 4U) & 0x1U;
310}
311static inline u32 psec_falcon_cpuctl_cpuctl_alias_en_f(u32 v)
312{
313 return (v & 0x1U) << 6U;
314}
315static inline u32 psec_falcon_cpuctl_cpuctl_alias_en_m(void)
316{
317 return 0x1U << 6U;
318}
319static inline u32 psec_falcon_cpuctl_cpuctl_alias_en_v(u32 r)
320{
321 return (r >> 6U) & 0x1U;
322}
323static inline u32 psec_falcon_cpuctl_alias_r(void)
324{
325 return 0x00087130U;
326}
327static inline u32 psec_falcon_cpuctl_alias_startcpu_f(u32 v)
328{
329 return (v & 0x1U) << 1U;
330}
331static inline u32 psec_falcon_imemc_r(u32 i)
332{
333 return 0x00087180U + i*16U;
334}
335static inline u32 psec_falcon_imemc_offs_f(u32 v)
336{
337 return (v & 0x3fU) << 2U;
338}
339static inline u32 psec_falcon_imemc_blk_f(u32 v)
340{
341 return (v & 0xffU) << 8U;
342}
343static inline u32 psec_falcon_imemc_aincw_f(u32 v)
344{
345 return (v & 0x1U) << 24U;
346}
347static inline u32 psec_falcon_imemd_r(u32 i)
348{
349 return 0x00087184U + i*16U;
350}
351static inline u32 psec_falcon_imemt_r(u32 i)
352{
353 return 0x00087188U + i*16U;
354}
355static inline u32 psec_falcon_sctl_r(void)
356{
357 return 0x00087240U;
358}
359static inline u32 psec_falcon_mmu_phys_sec_r(void)
360{
361 return 0x00100ce4U;
362}
363static inline u32 psec_falcon_bootvec_r(void)
364{
365 return 0x00087104U;
366}
367static inline u32 psec_falcon_bootvec_vec_f(u32 v)
368{
369 return (v & 0xffffffffU) << 0U;
370}
371static inline u32 psec_falcon_dmactl_r(void)
372{
373 return 0x0008710cU;
374}
375static inline u32 psec_falcon_dmactl_dmem_scrubbing_m(void)
376{
377 return 0x1U << 1U;
378}
379static inline u32 psec_falcon_dmactl_imem_scrubbing_m(void)
380{
381 return 0x1U << 2U;
382}
383static inline u32 psec_falcon_dmactl_require_ctx_f(u32 v)
384{
385 return (v & 0x1U) << 0U;
386}
387static inline u32 psec_falcon_hwcfg_r(void)
388{
389 return 0x00087108U;
390}
391static inline u32 psec_falcon_hwcfg_imem_size_v(u32 r)
392{
393 return (r >> 0U) & 0x1ffU;
394}
395static inline u32 psec_falcon_hwcfg_dmem_size_v(u32 r)
396{
397 return (r >> 9U) & 0x1ffU;
398}
399static inline u32 psec_falcon_dmatrfbase_r(void)
400{
401 return 0x00087110U;
402}
403static inline u32 psec_falcon_dmatrfbase1_r(void)
404{
405 return 0x00087128U;
406}
407static inline u32 psec_falcon_dmatrfmoffs_r(void)
408{
409 return 0x00087114U;
410}
411static inline u32 psec_falcon_dmatrfcmd_r(void)
412{
413 return 0x00087118U;
414}
415static inline u32 psec_falcon_dmatrfcmd_imem_f(u32 v)
416{
417 return (v & 0x1U) << 4U;
418}
419static inline u32 psec_falcon_dmatrfcmd_write_f(u32 v)
420{
421 return (v & 0x1U) << 5U;
422}
423static inline u32 psec_falcon_dmatrfcmd_size_f(u32 v)
424{
425 return (v & 0x7U) << 8U;
426}
427static inline u32 psec_falcon_dmatrfcmd_ctxdma_f(u32 v)
428{
429 return (v & 0x7U) << 12U;
430}
431static inline u32 psec_falcon_dmatrffboffs_r(void)
432{
433 return 0x0008711cU;
434}
435static inline u32 psec_falcon_exterraddr_r(void)
436{
437 return 0x00087168U;
438}
439static inline u32 psec_falcon_exterrstat_r(void)
440{
441 return 0x0008716cU;
442}
443static inline u32 psec_falcon_exterrstat_valid_m(void)
444{
445 return 0x1U << 31U;
446}
447static inline u32 psec_falcon_exterrstat_valid_v(u32 r)
448{
449 return (r >> 31U) & 0x1U;
450}
451static inline u32 psec_falcon_exterrstat_valid_true_v(void)
452{
453 return 0x00000001U;
454}
455static inline u32 psec_sec2_falcon_icd_cmd_r(void)
456{
457 return 0x00087200U;
458}
459static inline u32 psec_sec2_falcon_icd_cmd_opc_s(void)
460{
461 return 4U;
462}
463static inline u32 psec_sec2_falcon_icd_cmd_opc_f(u32 v)
464{
465 return (v & 0xfU) << 0U;
466}
467static inline u32 psec_sec2_falcon_icd_cmd_opc_m(void)
468{
469 return 0xfU << 0U;
470}
471static inline u32 psec_sec2_falcon_icd_cmd_opc_v(u32 r)
472{
473 return (r >> 0U) & 0xfU;
474}
475static inline u32 psec_sec2_falcon_icd_cmd_opc_rreg_f(void)
476{
477 return 0x8U;
478}
479static inline u32 psec_sec2_falcon_icd_cmd_opc_rstat_f(void)
480{
481 return 0xeU;
482}
483static inline u32 psec_sec2_falcon_icd_cmd_idx_f(u32 v)
484{
485 return (v & 0x1fU) << 8U;
486}
487static inline u32 psec_sec2_falcon_icd_rdata_r(void)
488{
489 return 0x0008720cU;
490}
491static inline u32 psec_falcon_dmemc_r(u32 i)
492{
493 return 0x000871c0U + i*8U;
494}
495static inline u32 psec_falcon_dmemc_offs_f(u32 v)
496{
497 return (v & 0x3fU) << 2U;
498}
499static inline u32 psec_falcon_dmemc_offs_m(void)
500{
501 return 0x3fU << 2U;
502}
503static inline u32 psec_falcon_dmemc_blk_f(u32 v)
504{
505 return (v & 0xffU) << 8U;
506}
507static inline u32 psec_falcon_dmemc_blk_m(void)
508{
509 return 0xffU << 8U;
510}
511static inline u32 psec_falcon_dmemc_aincw_f(u32 v)
512{
513 return (v & 0x1U) << 24U;
514}
515static inline u32 psec_falcon_dmemc_aincr_f(u32 v)
516{
517 return (v & 0x1U) << 25U;
518}
519static inline u32 psec_falcon_dmemd_r(u32 i)
520{
521 return 0x000871c4U + i*8U;
522}
523static inline u32 psec_falcon_debug1_r(void)
524{
525 return 0x00087090U;
526}
527static inline u32 psec_falcon_debug1_ctxsw_mode_s(void)
528{
529 return 1U;
530}
531static inline u32 psec_falcon_debug1_ctxsw_mode_f(u32 v)
532{
533 return (v & 0x1U) << 16U;
534}
535static inline u32 psec_falcon_debug1_ctxsw_mode_m(void)
536{
537 return 0x1U << 16U;
538}
539static inline u32 psec_falcon_debug1_ctxsw_mode_v(u32 r)
540{
541 return (r >> 16U) & 0x1U;
542}
543static inline u32 psec_falcon_debug1_ctxsw_mode_init_f(void)
544{
545 return 0x0U;
546}
547static inline u32 psec_fbif_transcfg_r(u32 i)
548{
549 return 0x00087600U + i*4U;
550}
551static inline u32 psec_fbif_transcfg_target_local_fb_f(void)
552{
553 return 0x0U;
554}
555static inline u32 psec_fbif_transcfg_target_coherent_sysmem_f(void)
556{
557 return 0x1U;
558}
559static inline u32 psec_fbif_transcfg_target_noncoherent_sysmem_f(void)
560{
561 return 0x2U;
562}
563static inline u32 psec_fbif_transcfg_mem_type_s(void)
564{
565 return 1U;
566}
567static inline u32 psec_fbif_transcfg_mem_type_f(u32 v)
568{
569 return (v & 0x1U) << 2U;
570}
571static inline u32 psec_fbif_transcfg_mem_type_m(void)
572{
573 return 0x1U << 2U;
574}
575static inline u32 psec_fbif_transcfg_mem_type_v(u32 r)
576{
577 return (r >> 2U) & 0x1U;
578}
579static inline u32 psec_fbif_transcfg_mem_type_virtual_f(void)
580{
581 return 0x0U;
582}
583static inline u32 psec_fbif_transcfg_mem_type_physical_f(void)
584{
585 return 0x4U;
586}
587static inline u32 psec_falcon_engine_r(void)
588{
589 return 0x000873c0U;
590}
591static inline u32 psec_falcon_engine_reset_true_f(void)
592{
593 return 0x1U;
594}
595static inline u32 psec_falcon_engine_reset_false_f(void)
596{
597 return 0x0U;
598}
599static inline u32 psec_fbif_ctl_r(void)
600{
601 return 0x00087624U;
602}
603static inline u32 psec_fbif_ctl_allow_phys_no_ctx_init_f(void)
604{
605 return 0x0U;
606}
607static inline u32 psec_fbif_ctl_allow_phys_no_ctx_disallow_f(void)
608{
609 return 0x0U;
610}
611static inline u32 psec_fbif_ctl_allow_phys_no_ctx_allow_f(void)
612{
613 return 0x80U;
614}
615#endif
diff --git a/include/nvgpu/hw/gp106/hw_pwr_gp106.h b/include/nvgpu/hw/gp106/hw_pwr_gp106.h
deleted file mode 100644
index 2e75fa6..0000000
--- a/include/nvgpu/hw/gp106/hw_pwr_gp106.h
+++ /dev/null
@@ -1,895 +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_pwr_gp106_h_
57#define _hw_pwr_gp106_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_dmactl_require_ctx_f(u32 v)
400{
401 return (v & 0x1U) << 0U;
402}
403static inline u32 pwr_falcon_hwcfg_r(void)
404{
405 return 0x0010a108U;
406}
407static inline u32 pwr_falcon_hwcfg_imem_size_v(u32 r)
408{
409 return (r >> 0U) & 0x1ffU;
410}
411static inline u32 pwr_falcon_hwcfg_dmem_size_v(u32 r)
412{
413 return (r >> 9U) & 0x1ffU;
414}
415static inline u32 pwr_falcon_dmatrfbase_r(void)
416{
417 return 0x0010a110U;
418}
419static inline u32 pwr_falcon_dmatrfbase1_r(void)
420{
421 return 0x0010a128U;
422}
423static inline u32 pwr_falcon_dmatrfmoffs_r(void)
424{
425 return 0x0010a114U;
426}
427static inline u32 pwr_falcon_dmatrfcmd_r(void)
428{
429 return 0x0010a118U;
430}
431static inline u32 pwr_falcon_dmatrfcmd_imem_f(u32 v)
432{
433 return (v & 0x1U) << 4U;
434}
435static inline u32 pwr_falcon_dmatrfcmd_write_f(u32 v)
436{
437 return (v & 0x1U) << 5U;
438}
439static inline u32 pwr_falcon_dmatrfcmd_size_f(u32 v)
440{
441 return (v & 0x7U) << 8U;
442}
443static inline u32 pwr_falcon_dmatrfcmd_ctxdma_f(u32 v)
444{
445 return (v & 0x7U) << 12U;
446}
447static inline u32 pwr_falcon_dmatrffboffs_r(void)
448{
449 return 0x0010a11cU;
450}
451static inline u32 pwr_falcon_exterraddr_r(void)
452{
453 return 0x0010a168U;
454}
455static inline u32 pwr_falcon_exterrstat_r(void)
456{
457 return 0x0010a16cU;
458}
459static inline u32 pwr_falcon_exterrstat_valid_m(void)
460{
461 return 0x1U << 31U;
462}
463static inline u32 pwr_falcon_exterrstat_valid_v(u32 r)
464{
465 return (r >> 31U) & 0x1U;
466}
467static inline u32 pwr_falcon_exterrstat_valid_true_v(void)
468{
469 return 0x00000001U;
470}
471static inline u32 pwr_pmu_falcon_icd_cmd_r(void)
472{
473 return 0x0010a200U;
474}
475static inline u32 pwr_pmu_falcon_icd_cmd_opc_s(void)
476{
477 return 4U;
478}
479static inline u32 pwr_pmu_falcon_icd_cmd_opc_f(u32 v)
480{
481 return (v & 0xfU) << 0U;
482}
483static inline u32 pwr_pmu_falcon_icd_cmd_opc_m(void)
484{
485 return 0xfU << 0U;
486}
487static inline u32 pwr_pmu_falcon_icd_cmd_opc_v(u32 r)
488{
489 return (r >> 0U) & 0xfU;
490}
491static inline u32 pwr_pmu_falcon_icd_cmd_opc_rreg_f(void)
492{
493 return 0x8U;
494}
495static inline u32 pwr_pmu_falcon_icd_cmd_opc_rstat_f(void)
496{
497 return 0xeU;
498}
499static inline u32 pwr_pmu_falcon_icd_cmd_idx_f(u32 v)
500{
501 return (v & 0x1fU) << 8U;
502}
503static inline u32 pwr_pmu_falcon_icd_rdata_r(void)
504{
505 return 0x0010a20cU;
506}
507static inline u32 pwr_falcon_dmemc_r(u32 i)
508{
509 return 0x0010a1c0U + i*8U;
510}
511static inline u32 pwr_falcon_dmemc_offs_f(u32 v)
512{
513 return (v & 0x3fU) << 2U;
514}
515static inline u32 pwr_falcon_dmemc_offs_m(void)
516{
517 return 0x3fU << 2U;
518}
519static inline u32 pwr_falcon_dmemc_blk_f(u32 v)
520{
521 return (v & 0xffU) << 8U;
522}
523static inline u32 pwr_falcon_dmemc_blk_m(void)
524{
525 return 0xffU << 8U;
526}
527static inline u32 pwr_falcon_dmemc_aincw_f(u32 v)
528{
529 return (v & 0x1U) << 24U;
530}
531static inline u32 pwr_falcon_dmemc_aincr_f(u32 v)
532{
533 return (v & 0x1U) << 25U;
534}
535static inline u32 pwr_falcon_dmemd_r(u32 i)
536{
537 return 0x0010a1c4U + i*8U;
538}
539static inline u32 pwr_pmu_new_instblk_r(void)
540{
541 return 0x0010a480U;
542}
543static inline u32 pwr_pmu_new_instblk_ptr_f(u32 v)
544{
545 return (v & 0xfffffffU) << 0U;
546}
547static inline u32 pwr_pmu_new_instblk_target_fb_f(void)
548{
549 return 0x0U;
550}
551static inline u32 pwr_pmu_new_instblk_target_sys_coh_f(void)
552{
553 return 0x20000000U;
554}
555static inline u32 pwr_pmu_new_instblk_target_sys_ncoh_f(void)
556{
557 return 0x30000000U;
558}
559static inline u32 pwr_pmu_new_instblk_valid_f(u32 v)
560{
561 return (v & 0x1U) << 30U;
562}
563static inline u32 pwr_pmu_mutex_id_r(void)
564{
565 return 0x0010a488U;
566}
567static inline u32 pwr_pmu_mutex_id_value_v(u32 r)
568{
569 return (r >> 0U) & 0xffU;
570}
571static inline u32 pwr_pmu_mutex_id_value_init_v(void)
572{
573 return 0x00000000U;
574}
575static inline u32 pwr_pmu_mutex_id_value_not_avail_v(void)
576{
577 return 0x000000ffU;
578}
579static inline u32 pwr_pmu_mutex_id_release_r(void)
580{
581 return 0x0010a48cU;
582}
583static inline u32 pwr_pmu_mutex_id_release_value_f(u32 v)
584{
585 return (v & 0xffU) << 0U;
586}
587static inline u32 pwr_pmu_mutex_id_release_value_m(void)
588{
589 return 0xffU << 0U;
590}
591static inline u32 pwr_pmu_mutex_id_release_value_init_v(void)
592{
593 return 0x00000000U;
594}
595static inline u32 pwr_pmu_mutex_id_release_value_init_f(void)
596{
597 return 0x0U;
598}
599static inline u32 pwr_pmu_mutex_r(u32 i)
600{
601 return 0x0010a580U + i*4U;
602}
603static inline u32 pwr_pmu_mutex__size_1_v(void)
604{
605 return 0x00000010U;
606}
607static inline u32 pwr_pmu_mutex_value_f(u32 v)
608{
609 return (v & 0xffU) << 0U;
610}
611static inline u32 pwr_pmu_mutex_value_v(u32 r)
612{
613 return (r >> 0U) & 0xffU;
614}
615static inline u32 pwr_pmu_mutex_value_initial_lock_f(void)
616{
617 return 0x0U;
618}
619static inline u32 pwr_pmu_queue_head_r(u32 i)
620{
621 return 0x0010a4a0U + i*4U;
622}
623static inline u32 pwr_pmu_queue_head__size_1_v(void)
624{
625 return 0x00000004U;
626}
627static inline u32 pwr_pmu_queue_head_address_f(u32 v)
628{
629 return (v & 0xffffffffU) << 0U;
630}
631static inline u32 pwr_pmu_queue_head_address_v(u32 r)
632{
633 return (r >> 0U) & 0xffffffffU;
634}
635static inline u32 pwr_pmu_queue_tail_r(u32 i)
636{
637 return 0x0010a4b0U + i*4U;
638}
639static inline u32 pwr_pmu_queue_tail__size_1_v(void)
640{
641 return 0x00000004U;
642}
643static inline u32 pwr_pmu_queue_tail_address_f(u32 v)
644{
645 return (v & 0xffffffffU) << 0U;
646}
647static inline u32 pwr_pmu_queue_tail_address_v(u32 r)
648{
649 return (r >> 0U) & 0xffffffffU;
650}
651static inline u32 pwr_pmu_msgq_head_r(void)
652{
653 return 0x0010a4c8U;
654}
655static inline u32 pwr_pmu_msgq_head_val_f(u32 v)
656{
657 return (v & 0xffffffffU) << 0U;
658}
659static inline u32 pwr_pmu_msgq_head_val_v(u32 r)
660{
661 return (r >> 0U) & 0xffffffffU;
662}
663static inline u32 pwr_pmu_msgq_tail_r(void)
664{
665 return 0x0010a4ccU;
666}
667static inline u32 pwr_pmu_msgq_tail_val_f(u32 v)
668{
669 return (v & 0xffffffffU) << 0U;
670}
671static inline u32 pwr_pmu_msgq_tail_val_v(u32 r)
672{
673 return (r >> 0U) & 0xffffffffU;
674}
675static inline u32 pwr_pmu_idle_mask_r(u32 i)
676{
677 return 0x0010a504U + i*16U;
678}
679static inline u32 pwr_pmu_idle_mask_gr_enabled_f(void)
680{
681 return 0x1U;
682}
683static inline u32 pwr_pmu_idle_mask_ce_2_enabled_f(void)
684{
685 return 0x200000U;
686}
687static inline u32 pwr_pmu_idle_count_r(u32 i)
688{
689 return 0x0010a508U + i*16U;
690}
691static inline u32 pwr_pmu_idle_count_value_f(u32 v)
692{
693 return (v & 0x7fffffffU) << 0U;
694}
695static inline u32 pwr_pmu_idle_count_value_v(u32 r)
696{
697 return (r >> 0U) & 0x7fffffffU;
698}
699static inline u32 pwr_pmu_idle_count_reset_f(u32 v)
700{
701 return (v & 0x1U) << 31U;
702}
703static inline u32 pwr_pmu_idle_ctrl_r(u32 i)
704{
705 return 0x0010a50cU + i*16U;
706}
707static inline u32 pwr_pmu_idle_ctrl_value_m(void)
708{
709 return 0x3U << 0U;
710}
711static inline u32 pwr_pmu_idle_ctrl_value_busy_f(void)
712{
713 return 0x2U;
714}
715static inline u32 pwr_pmu_idle_ctrl_value_always_f(void)
716{
717 return 0x3U;
718}
719static inline u32 pwr_pmu_idle_ctrl_filter_m(void)
720{
721 return 0x1U << 2U;
722}
723static inline u32 pwr_pmu_idle_ctrl_filter_disabled_f(void)
724{
725 return 0x0U;
726}
727static inline u32 pwr_pmu_idle_threshold_r(u32 i)
728{
729 return 0x0010a8a0U + i*4U;
730}
731static inline u32 pwr_pmu_idle_threshold_value_f(u32 v)
732{
733 return (v & 0x7fffffffU) << 0U;
734}
735static inline u32 pwr_pmu_idle_intr_r(void)
736{
737 return 0x0010a9e8U;
738}
739static inline u32 pwr_pmu_idle_intr_en_f(u32 v)
740{
741 return (v & 0x1U) << 0U;
742}
743static inline u32 pwr_pmu_idle_intr_en_disabled_v(void)
744{
745 return 0x00000000U;
746}
747static inline u32 pwr_pmu_idle_intr_en_enabled_v(void)
748{
749 return 0x00000001U;
750}
751static inline u32 pwr_pmu_idle_intr_status_r(void)
752{
753 return 0x0010a9ecU;
754}
755static inline u32 pwr_pmu_idle_intr_status_intr_f(u32 v)
756{
757 return (v & 0x1U) << 0U;
758}
759static inline u32 pwr_pmu_idle_intr_status_intr_m(void)
760{
761 return U32(0x1U) << 0U;
762}
763static inline u32 pwr_pmu_idle_intr_status_intr_v(u32 r)
764{
765 return (r >> 0U) & 0x1U;
766}
767static inline u32 pwr_pmu_idle_intr_status_intr_pending_v(void)
768{
769 return 0x00000001U;
770}
771static inline u32 pwr_pmu_idle_intr_status_intr_clear_v(void)
772{
773 return 0x00000001U;
774}
775static inline u32 pwr_pmu_idle_mask_supp_r(u32 i)
776{
777 return 0x0010a9f0U + i*8U;
778}
779static inline u32 pwr_pmu_idle_mask_1_supp_r(u32 i)
780{
781 return 0x0010a9f4U + i*8U;
782}
783static inline u32 pwr_pmu_idle_ctrl_supp_r(u32 i)
784{
785 return 0x0010aa30U + i*8U;
786}
787static inline u32 pwr_pmu_debug_r(u32 i)
788{
789 return 0x0010a5c0U + i*4U;
790}
791static inline u32 pwr_pmu_debug__size_1_v(void)
792{
793 return 0x00000004U;
794}
795static inline u32 pwr_pmu_mailbox_r(u32 i)
796{
797 return 0x0010a450U + i*4U;
798}
799static inline u32 pwr_pmu_mailbox__size_1_v(void)
800{
801 return 0x0000000cU;
802}
803static inline u32 pwr_pmu_bar0_addr_r(void)
804{
805 return 0x0010a7a0U;
806}
807static inline u32 pwr_pmu_bar0_data_r(void)
808{
809 return 0x0010a7a4U;
810}
811static inline u32 pwr_pmu_bar0_ctl_r(void)
812{
813 return 0x0010a7acU;
814}
815static inline u32 pwr_pmu_bar0_timeout_r(void)
816{
817 return 0x0010a7a8U;
818}
819static inline u32 pwr_pmu_bar0_fecs_error_r(void)
820{
821 return 0x0010a988U;
822}
823static inline u32 pwr_pmu_bar0_error_status_r(void)
824{
825 return 0x0010a7b0U;
826}
827static inline u32 pwr_pmu_pg_idlefilth_r(u32 i)
828{
829 return 0x0010a6c0U + i*4U;
830}
831static inline u32 pwr_pmu_pg_ppuidlefilth_r(u32 i)
832{
833 return 0x0010a6e8U + i*4U;
834}
835static inline u32 pwr_pmu_pg_idle_cnt_r(u32 i)
836{
837 return 0x0010a710U + i*4U;
838}
839static inline u32 pwr_pmu_pg_intren_r(u32 i)
840{
841 return 0x0010a760U + i*4U;
842}
843static inline u32 pwr_fbif_transcfg_r(u32 i)
844{
845 return 0x0010ae00U + i*4U;
846}
847static inline u32 pwr_fbif_transcfg_target_local_fb_f(void)
848{
849 return 0x0U;
850}
851static inline u32 pwr_fbif_transcfg_target_coherent_sysmem_f(void)
852{
853 return 0x1U;
854}
855static inline u32 pwr_fbif_transcfg_target_noncoherent_sysmem_f(void)
856{
857 return 0x2U;
858}
859static inline u32 pwr_fbif_transcfg_mem_type_s(void)
860{
861 return 1U;
862}
863static inline u32 pwr_fbif_transcfg_mem_type_f(u32 v)
864{
865 return (v & 0x1U) << 2U;
866}
867static inline u32 pwr_fbif_transcfg_mem_type_m(void)
868{
869 return 0x1U << 2U;
870}
871static inline u32 pwr_fbif_transcfg_mem_type_v(u32 r)
872{
873 return (r >> 2U) & 0x1U;
874}
875static inline u32 pwr_fbif_transcfg_mem_type_virtual_f(void)
876{
877 return 0x0U;
878}
879static inline u32 pwr_fbif_transcfg_mem_type_physical_f(void)
880{
881 return 0x4U;
882}
883static inline u32 pwr_falcon_engine_r(void)
884{
885 return 0x0010a3c0U;
886}
887static inline u32 pwr_falcon_engine_reset_true_f(void)
888{
889 return 0x1U;
890}
891static inline u32 pwr_falcon_engine_reset_false_f(void)
892{
893 return 0x0U;
894}
895#endif
diff --git a/include/nvgpu/hw/gp106/hw_ram_gp106.h b/include/nvgpu/hw/gp106/hw_ram_gp106.h
deleted file mode 100644
index 1de8aa2..0000000
--- a/include/nvgpu/hw/gp106/hw_ram_gp106.h
+++ /dev/null
@@ -1,507 +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_ram_gp106_h_
57#define _hw_ram_gp106_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_page_dir_base_fault_replay_tex_f(u32 v)
96{
97 return (v & 0x1U) << 4U;
98}
99static inline u32 ram_in_page_dir_base_fault_replay_tex_m(void)
100{
101 return 0x1U << 4U;
102}
103static inline u32 ram_in_page_dir_base_fault_replay_tex_w(void)
104{
105 return 128U;
106}
107static inline u32 ram_in_page_dir_base_fault_replay_tex_true_f(void)
108{
109 return 0x10U;
110}
111static inline u32 ram_in_page_dir_base_fault_replay_gcc_f(u32 v)
112{
113 return (v & 0x1U) << 5U;
114}
115static inline u32 ram_in_page_dir_base_fault_replay_gcc_m(void)
116{
117 return 0x1U << 5U;
118}
119static inline u32 ram_in_page_dir_base_fault_replay_gcc_w(void)
120{
121 return 128U;
122}
123static inline u32 ram_in_page_dir_base_fault_replay_gcc_true_f(void)
124{
125 return 0x20U;
126}
127static inline u32 ram_in_use_ver2_pt_format_f(u32 v)
128{
129 return (v & 0x1U) << 10U;
130}
131static inline u32 ram_in_use_ver2_pt_format_m(void)
132{
133 return 0x1U << 10U;
134}
135static inline u32 ram_in_use_ver2_pt_format_w(void)
136{
137 return 128U;
138}
139static inline u32 ram_in_use_ver2_pt_format_true_f(void)
140{
141 return 0x400U;
142}
143static inline u32 ram_in_use_ver2_pt_format_false_f(void)
144{
145 return 0x0U;
146}
147static inline u32 ram_in_big_page_size_f(u32 v)
148{
149 return (v & 0x1U) << 11U;
150}
151static inline u32 ram_in_big_page_size_m(void)
152{
153 return 0x1U << 11U;
154}
155static inline u32 ram_in_big_page_size_w(void)
156{
157 return 128U;
158}
159static inline u32 ram_in_big_page_size_128kb_f(void)
160{
161 return 0x0U;
162}
163static inline u32 ram_in_big_page_size_64kb_f(void)
164{
165 return 0x800U;
166}
167static inline u32 ram_in_page_dir_base_lo_f(u32 v)
168{
169 return (v & 0xfffffU) << 12U;
170}
171static inline u32 ram_in_page_dir_base_lo_w(void)
172{
173 return 128U;
174}
175static inline u32 ram_in_page_dir_base_hi_f(u32 v)
176{
177 return (v & 0xffffffffU) << 0U;
178}
179static inline u32 ram_in_page_dir_base_hi_w(void)
180{
181 return 129U;
182}
183static inline u32 ram_in_adr_limit_lo_f(u32 v)
184{
185 return (v & 0xfffffU) << 12U;
186}
187static inline u32 ram_in_adr_limit_lo_w(void)
188{
189 return 130U;
190}
191static inline u32 ram_in_adr_limit_hi_f(u32 v)
192{
193 return (v & 0xffffffffU) << 0U;
194}
195static inline u32 ram_in_adr_limit_hi_w(void)
196{
197 return 131U;
198}
199static inline u32 ram_in_engine_cs_w(void)
200{
201 return 132U;
202}
203static inline u32 ram_in_engine_cs_wfi_v(void)
204{
205 return 0x00000000U;
206}
207static inline u32 ram_in_engine_cs_wfi_f(void)
208{
209 return 0x0U;
210}
211static inline u32 ram_in_engine_cs_fg_v(void)
212{
213 return 0x00000001U;
214}
215static inline u32 ram_in_engine_cs_fg_f(void)
216{
217 return 0x8U;
218}
219static inline u32 ram_in_gr_cs_w(void)
220{
221 return 132U;
222}
223static inline u32 ram_in_gr_cs_wfi_f(void)
224{
225 return 0x0U;
226}
227static inline u32 ram_in_gr_wfi_target_w(void)
228{
229 return 132U;
230}
231static inline u32 ram_in_gr_wfi_mode_w(void)
232{
233 return 132U;
234}
235static inline u32 ram_in_gr_wfi_mode_physical_v(void)
236{
237 return 0x00000000U;
238}
239static inline u32 ram_in_gr_wfi_mode_physical_f(void)
240{
241 return 0x0U;
242}
243static inline u32 ram_in_gr_wfi_mode_virtual_v(void)
244{
245 return 0x00000001U;
246}
247static inline u32 ram_in_gr_wfi_mode_virtual_f(void)
248{
249 return 0x4U;
250}
251static inline u32 ram_in_gr_wfi_ptr_lo_f(u32 v)
252{
253 return (v & 0xfffffU) << 12U;
254}
255static inline u32 ram_in_gr_wfi_ptr_lo_w(void)
256{
257 return 132U;
258}
259static inline u32 ram_in_gr_wfi_ptr_hi_f(u32 v)
260{
261 return (v & 0xffU) << 0U;
262}
263static inline u32 ram_in_gr_wfi_ptr_hi_w(void)
264{
265 return 133U;
266}
267static inline u32 ram_in_base_shift_v(void)
268{
269 return 0x0000000cU;
270}
271static inline u32 ram_in_alloc_size_v(void)
272{
273 return 0x00001000U;
274}
275static inline u32 ram_fc_size_val_v(void)
276{
277 return 0x00000200U;
278}
279static inline u32 ram_fc_gp_put_w(void)
280{
281 return 0U;
282}
283static inline u32 ram_fc_userd_w(void)
284{
285 return 2U;
286}
287static inline u32 ram_fc_userd_hi_w(void)
288{
289 return 3U;
290}
291static inline u32 ram_fc_signature_w(void)
292{
293 return 4U;
294}
295static inline u32 ram_fc_gp_get_w(void)
296{
297 return 5U;
298}
299static inline u32 ram_fc_pb_get_w(void)
300{
301 return 6U;
302}
303static inline u32 ram_fc_pb_get_hi_w(void)
304{
305 return 7U;
306}
307static inline u32 ram_fc_pb_top_level_get_w(void)
308{
309 return 8U;
310}
311static inline u32 ram_fc_pb_top_level_get_hi_w(void)
312{
313 return 9U;
314}
315static inline u32 ram_fc_acquire_w(void)
316{
317 return 12U;
318}
319static inline u32 ram_fc_semaphorea_w(void)
320{
321 return 14U;
322}
323static inline u32 ram_fc_semaphoreb_w(void)
324{
325 return 15U;
326}
327static inline u32 ram_fc_semaphorec_w(void)
328{
329 return 16U;
330}
331static inline u32 ram_fc_semaphored_w(void)
332{
333 return 17U;
334}
335static inline u32 ram_fc_gp_base_w(void)
336{
337 return 18U;
338}
339static inline u32 ram_fc_gp_base_hi_w(void)
340{
341 return 19U;
342}
343static inline u32 ram_fc_gp_fetch_w(void)
344{
345 return 20U;
346}
347static inline u32 ram_fc_pb_fetch_w(void)
348{
349 return 21U;
350}
351static inline u32 ram_fc_pb_fetch_hi_w(void)
352{
353 return 22U;
354}
355static inline u32 ram_fc_pb_put_w(void)
356{
357 return 23U;
358}
359static inline u32 ram_fc_pb_put_hi_w(void)
360{
361 return 24U;
362}
363static inline u32 ram_fc_pb_header_w(void)
364{
365 return 33U;
366}
367static inline u32 ram_fc_pb_count_w(void)
368{
369 return 34U;
370}
371static inline u32 ram_fc_subdevice_w(void)
372{
373 return 37U;
374}
375static inline u32 ram_fc_formats_w(void)
376{
377 return 39U;
378}
379static inline u32 ram_fc_target_w(void)
380{
381 return 43U;
382}
383static inline u32 ram_fc_hce_ctrl_w(void)
384{
385 return 57U;
386}
387static inline u32 ram_fc_chid_w(void)
388{
389 return 58U;
390}
391static inline u32 ram_fc_chid_id_f(u32 v)
392{
393 return (v & 0xfffU) << 0U;
394}
395static inline u32 ram_fc_chid_id_w(void)
396{
397 return 0U;
398}
399static inline u32 ram_fc_config_w(void)
400{
401 return 61U;
402}
403static inline u32 ram_fc_runlist_timeslice_w(void)
404{
405 return 62U;
406}
407static inline u32 ram_userd_base_shift_v(void)
408{
409 return 0x00000009U;
410}
411static inline u32 ram_userd_chan_size_v(void)
412{
413 return 0x00000200U;
414}
415static inline u32 ram_userd_put_w(void)
416{
417 return 16U;
418}
419static inline u32 ram_userd_get_w(void)
420{
421 return 17U;
422}
423static inline u32 ram_userd_ref_w(void)
424{
425 return 18U;
426}
427static inline u32 ram_userd_put_hi_w(void)
428{
429 return 19U;
430}
431static inline u32 ram_userd_ref_threshold_w(void)
432{
433 return 20U;
434}
435static inline u32 ram_userd_top_level_get_w(void)
436{
437 return 22U;
438}
439static inline u32 ram_userd_top_level_get_hi_w(void)
440{
441 return 23U;
442}
443static inline u32 ram_userd_get_hi_w(void)
444{
445 return 24U;
446}
447static inline u32 ram_userd_gp_get_w(void)
448{
449 return 34U;
450}
451static inline u32 ram_userd_gp_put_w(void)
452{
453 return 35U;
454}
455static inline u32 ram_userd_gp_top_level_get_w(void)
456{
457 return 22U;
458}
459static inline u32 ram_userd_gp_top_level_get_hi_w(void)
460{
461 return 23U;
462}
463static inline u32 ram_rl_entry_size_v(void)
464{
465 return 0x00000008U;
466}
467static inline u32 ram_rl_entry_chid_f(u32 v)
468{
469 return (v & 0xfffU) << 0U;
470}
471static inline u32 ram_rl_entry_id_f(u32 v)
472{
473 return (v & 0xfffU) << 0U;
474}
475static inline u32 ram_rl_entry_type_f(u32 v)
476{
477 return (v & 0x1U) << 13U;
478}
479static inline u32 ram_rl_entry_type_chid_f(void)
480{
481 return 0x0U;
482}
483static inline u32 ram_rl_entry_type_tsg_f(void)
484{
485 return 0x2000U;
486}
487static inline u32 ram_rl_entry_timeslice_scale_f(u32 v)
488{
489 return (v & 0xfU) << 14U;
490}
491static inline u32 ram_rl_entry_timeslice_scale_3_f(void)
492{
493 return 0xc000U;
494}
495static inline u32 ram_rl_entry_timeslice_timeout_f(u32 v)
496{
497 return (v & 0xffU) << 18U;
498}
499static inline u32 ram_rl_entry_timeslice_timeout_128_f(void)
500{
501 return 0x2000000U;
502}
503static inline u32 ram_rl_entry_tsg_length_f(u32 v)
504{
505 return (v & 0x3fU) << 26U;
506}
507#endif
diff --git a/include/nvgpu/hw/gp106/hw_therm_gp106.h b/include/nvgpu/hw/gp106/hw_therm_gp106.h
deleted file mode 100644
index ee58032..0000000
--- a/include/nvgpu/hw/gp106/hw_therm_gp106.h
+++ /dev/null
@@ -1,183 +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_therm_gp106_h_
57#define _hw_therm_gp106_h_
58
59static inline u32 therm_temp_sensor_tsense_r(void)
60{
61 return 0x00020460U;
62}
63static inline u32 therm_temp_sensor_tsense_fixed_point_f(u32 v)
64{
65 return (v & 0x3fffU) << 3U;
66}
67static inline u32 therm_temp_sensor_tsense_fixed_point_m(void)
68{
69 return 0x3fffU << 3U;
70}
71static inline u32 therm_temp_sensor_tsense_fixed_point_v(u32 r)
72{
73 return (r >> 3U) & 0x3fffU;
74}
75static inline u32 therm_temp_sensor_tsense_fixed_point_min_v(void)
76{
77 return 0x00003b00U;
78}
79static inline u32 therm_temp_sensor_tsense_fixed_point_max_v(void)
80{
81 return 0x000010e0U;
82}
83static inline u32 therm_temp_sensor_tsense_state_f(u32 v)
84{
85 return (v & 0x3U) << 29U;
86}
87static inline u32 therm_temp_sensor_tsense_state_m(void)
88{
89 return 0x3U << 29U;
90}
91static inline u32 therm_temp_sensor_tsense_state_v(u32 r)
92{
93 return (r >> 29U) & 0x3U;
94}
95static inline u32 therm_temp_sensor_tsense_state_valid_v(void)
96{
97 return 0x00000001U;
98}
99static inline u32 therm_temp_sensor_tsense_state_shadow_v(void)
100{
101 return 0x00000002U;
102}
103static inline u32 therm_gate_ctrl_r(u32 i)
104{
105 return 0x00020200U + i*4U;
106}
107static inline u32 therm_gate_ctrl_eng_clk_m(void)
108{
109 return 0x3U << 0U;
110}
111static inline u32 therm_gate_ctrl_eng_clk_run_f(void)
112{
113 return 0x0U;
114}
115static inline u32 therm_gate_ctrl_eng_clk_auto_f(void)
116{
117 return 0x1U;
118}
119static inline u32 therm_gate_ctrl_eng_clk_stop_f(void)
120{
121 return 0x2U;
122}
123static inline u32 therm_gate_ctrl_blk_clk_m(void)
124{
125 return 0x3U << 2U;
126}
127static inline u32 therm_gate_ctrl_blk_clk_run_f(void)
128{
129 return 0x0U;
130}
131static inline u32 therm_gate_ctrl_blk_clk_auto_f(void)
132{
133 return 0x4U;
134}
135static inline u32 therm_gate_ctrl_eng_idle_filt_exp_f(u32 v)
136{
137 return (v & 0x1fU) << 8U;
138}
139static inline u32 therm_gate_ctrl_eng_idle_filt_exp_m(void)
140{
141 return 0x1fU << 8U;
142}
143static inline u32 therm_gate_ctrl_eng_idle_filt_mant_f(u32 v)
144{
145 return (v & 0x7U) << 13U;
146}
147static inline u32 therm_gate_ctrl_eng_idle_filt_mant_m(void)
148{
149 return 0x7U << 13U;
150}
151static inline u32 therm_gate_ctrl_eng_delay_before_f(u32 v)
152{
153 return (v & 0xfU) << 16U;
154}
155static inline u32 therm_gate_ctrl_eng_delay_before_m(void)
156{
157 return 0xfU << 16U;
158}
159static inline u32 therm_gate_ctrl_eng_delay_after_f(u32 v)
160{
161 return (v & 0xfU) << 20U;
162}
163static inline u32 therm_gate_ctrl_eng_delay_after_m(void)
164{
165 return 0xfU << 20U;
166}
167static inline u32 therm_fecs_idle_filter_r(void)
168{
169 return 0x00020288U;
170}
171static inline u32 therm_fecs_idle_filter_value_m(void)
172{
173 return 0xffffffffU << 0U;
174}
175static inline u32 therm_hubmmu_idle_filter_r(void)
176{
177 return 0x0002028cU;
178}
179static inline u32 therm_hubmmu_idle_filter_value_m(void)
180{
181 return 0xffffffffU << 0U;
182}
183#endif
diff --git a/include/nvgpu/hw/gp106/hw_timer_gp106.h b/include/nvgpu/hw/gp106/hw_timer_gp106.h
deleted file mode 100644
index 7fd722f..0000000
--- a/include/nvgpu/hw/gp106/hw_timer_gp106.h
+++ /dev/null
@@ -1,115 +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_timer_gp106_h_
57#define _hw_timer_gp106_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_1_r(void)
100{
101 return 0x00009088U;
102}
103static inline u32 timer_pri_timeout_fecs_errcode_r(void)
104{
105 return 0x0000908cU;
106}
107static inline u32 timer_time_0_r(void)
108{
109 return 0x00009400U;
110}
111static inline u32 timer_time_1_r(void)
112{
113 return 0x00009410U;
114}
115#endif
diff --git a/include/nvgpu/hw/gp106/hw_top_gp106.h b/include/nvgpu/hw/gp106/hw_top_gp106.h
deleted file mode 100644
index 749f66e..0000000
--- a/include/nvgpu/hw/gp106/hw_top_gp106.h
+++ /dev/null
@@ -1,255 +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_top_gp106_h_
57#define _hw_top_gp106_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_num_fbpas_r(void)
84{
85 return 0x0002243cU;
86}
87static inline u32 top_num_fbpas_value_v(u32 r)
88{
89 return (r >> 0U) & 0x1fU;
90}
91static inline u32 top_ltc_per_fbp_r(void)
92{
93 return 0x00022450U;
94}
95static inline u32 top_ltc_per_fbp_value_v(u32 r)
96{
97 return (r >> 0U) & 0x1fU;
98}
99static inline u32 top_slices_per_ltc_r(void)
100{
101 return 0x0002245cU;
102}
103static inline u32 top_slices_per_ltc_value_v(u32 r)
104{
105 return (r >> 0U) & 0x1fU;
106}
107static inline u32 top_num_ltcs_r(void)
108{
109 return 0x00022454U;
110}
111static inline u32 top_device_info_r(u32 i)
112{
113 return 0x00022700U + i*4U;
114}
115static inline u32 top_device_info__size_1_v(void)
116{
117 return 0x00000040U;
118}
119static inline u32 top_device_info_chain_v(u32 r)
120{
121 return (r >> 31U) & 0x1U;
122}
123static inline u32 top_device_info_chain_enable_v(void)
124{
125 return 0x00000001U;
126}
127static inline u32 top_device_info_engine_enum_v(u32 r)
128{
129 return (r >> 26U) & 0xfU;
130}
131static inline u32 top_device_info_runlist_enum_v(u32 r)
132{
133 return (r >> 21U) & 0xfU;
134}
135static inline u32 top_device_info_intr_enum_v(u32 r)
136{
137 return (r >> 15U) & 0x1fU;
138}
139static inline u32 top_device_info_reset_enum_v(u32 r)
140{
141 return (r >> 9U) & 0x1fU;
142}
143static inline u32 top_device_info_type_enum_v(u32 r)
144{
145 return (r >> 2U) & 0x1fffffffU;
146}
147static inline u32 top_device_info_type_enum_graphics_v(void)
148{
149 return 0x00000000U;
150}
151static inline u32 top_device_info_type_enum_graphics_f(void)
152{
153 return 0x0U;
154}
155static inline u32 top_device_info_type_enum_copy0_v(void)
156{
157 return 0x00000001U;
158}
159static inline u32 top_device_info_type_enum_copy0_f(void)
160{
161 return 0x4U;
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_type_enum_lce_v(void)
172{
173 return 0x00000013U;
174}
175static inline u32 top_device_info_type_enum_lce_f(void)
176{
177 return 0x4cU;
178}
179static inline u32 top_device_info_engine_v(u32 r)
180{
181 return (r >> 5U) & 0x1U;
182}
183static inline u32 top_device_info_runlist_v(u32 r)
184{
185 return (r >> 4U) & 0x1U;
186}
187static inline u32 top_device_info_intr_v(u32 r)
188{
189 return (r >> 3U) & 0x1U;
190}
191static inline u32 top_device_info_reset_v(u32 r)
192{
193 return (r >> 2U) & 0x1U;
194}
195static inline u32 top_device_info_entry_v(u32 r)
196{
197 return (r >> 0U) & 0x3U;
198}
199static inline u32 top_device_info_entry_not_valid_v(void)
200{
201 return 0x00000000U;
202}
203static inline u32 top_device_info_entry_enum_v(void)
204{
205 return 0x00000002U;
206}
207static inline u32 top_device_info_entry_engine_type_v(void)
208{
209 return 0x00000003U;
210}
211static inline u32 top_device_info_entry_data_v(void)
212{
213 return 0x00000001U;
214}
215static inline u32 top_device_info_data_type_v(u32 r)
216{
217 return (r >> 30U) & 0x1U;
218}
219static inline u32 top_device_info_data_type_enum2_v(void)
220{
221 return 0x00000000U;
222}
223static inline u32 top_device_info_data_inst_id_v(u32 r)
224{
225 return (r >> 26U) & 0xfU;
226}
227static inline u32 top_device_info_data_pri_base_v(u32 r)
228{
229 return (r >> 12U) & 0xfffU;
230}
231static inline u32 top_device_info_data_pri_base_align_v(void)
232{
233 return 0x0000000cU;
234}
235static inline u32 top_device_info_data_fault_id_enum_v(u32 r)
236{
237 return (r >> 3U) & 0x1fU;
238}
239static inline u32 top_device_info_data_fault_id_v(u32 r)
240{
241 return (r >> 2U) & 0x1U;
242}
243static inline u32 top_device_info_data_fault_id_valid_v(void)
244{
245 return 0x00000001U;
246}
247static inline u32 top_scratch1_r(void)
248{
249 return 0x0002240cU;
250}
251static inline u32 top_scratch1_devinit_completed_v(u32 r)
252{
253 return (r >> 1U) & 0x1U;
254}
255#endif
diff --git a/include/nvgpu/hw/gp106/hw_trim_gp106.h b/include/nvgpu/hw/gp106/hw_trim_gp106.h
deleted file mode 100644
index cebb6d4..0000000
--- a/include/nvgpu/hw/gp106/hw_trim_gp106.h
+++ /dev/null
@@ -1,195 +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_trim_gp106_h_
57#define _hw_trim_gp106_h_
58
59static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_r(void)
60{
61 return 0x00132924U;
62}
63static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_noofipclks_s(void)
64{
65 return 16U;
66}
67static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_noofipclks_f(u32 v)
68{
69 return (v & 0xffffU) << 0U;
70}
71static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_noofipclks_m(void)
72{
73 return 0xffffU << 0U;
74}
75static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_noofipclks_v(u32 r)
76{
77 return (r >> 0U) & 0xffffU;
78}
79static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_write_en_s(void)
80{
81 return 1U;
82}
83static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_write_en_f(u32 v)
84{
85 return (v & 0x1U) << 16U;
86}
87static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_write_en_m(void)
88{
89 return 0x1U << 16U;
90}
91static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_write_en_v(u32 r)
92{
93 return (r >> 16U) & 0x1U;
94}
95static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_write_en_deasserted_f(void)
96{
97 return 0x0U;
98}
99static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_write_en_asserted_f(void)
100{
101 return 0x10000U;
102}
103static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_enable_s(void)
104{
105 return 1U;
106}
107static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_enable_f(u32 v)
108{
109 return (v & 0x1U) << 20U;
110}
111static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_enable_m(void)
112{
113 return 0x1U << 20U;
114}
115static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_enable_v(u32 r)
116{
117 return (r >> 20U) & 0x1U;
118}
119static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_enable_deasserted_f(void)
120{
121 return 0x0U;
122}
123static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_enable_asserted_f(void)
124{
125 return 0x100000U;
126}
127static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_reset_s(void)
128{
129 return 1U;
130}
131static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_reset_f(u32 v)
132{
133 return (v & 0x1U) << 24U;
134}
135static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_reset_m(void)
136{
137 return 0x1U << 24U;
138}
139static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_reset_v(u32 r)
140{
141 return (r >> 24U) & 0x1U;
142}
143static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_reset_deasserted_f(void)
144{
145 return 0x0U;
146}
147static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_reset_asserted_f(void)
148{
149 return 0x1000000U;
150}
151static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cfg_source_gpc2clk_f(void)
152{
153 return 0x70000000U;
154}
155static inline u32 trim_gpc_bcast_clk_cntr_ncgpcclk_cnt_r(void)
156{
157 return 0x00132928U;
158}
159static inline u32 trim_fbpa_bcast_clk_cntr_ncltcclk_cfg_r(void)
160{
161 return 0x00132128U;
162}
163static inline u32 trim_fbpa_bcast_clk_cntr_ncltcclk_cfg_source_dramdiv4_rec_clk1_f(void)
164{
165 return 0x30000000U;
166}
167static inline u32 trim_fbpa_bcast_clk_cntr_ncltcclk_cnt_r(void)
168{
169 return 0x0013212cU;
170}
171static inline u32 trim_sys_clk_cntr_ncltcpll_cfg_r(void)
172{
173 return 0x001373c0U;
174}
175static inline u32 trim_sys_clk_cntr_ncltcpll_cfg_source_xbar2clk_f(void)
176{
177 return 0x20000000U;
178}
179static inline u32 trim_sys_clk_cntr_ncltcpll_cnt_r(void)
180{
181 return 0x001373c4U;
182}
183static inline u32 trim_sys_clk_cntr_ncsyspll_cfg_r(void)
184{
185 return 0x001373b0U;
186}
187static inline u32 trim_sys_clk_cntr_ncsyspll_cfg_source_sys2clk_f(void)
188{
189 return 0x0U;
190}
191static inline u32 trim_sys_clk_cntr_ncsyspll_cnt_r(void)
192{
193 return 0x001373b4U;
194}
195#endif
diff --git a/include/nvgpu/hw/gp106/hw_xp_gp106.h b/include/nvgpu/hw/gp106/hw_xp_gp106.h
deleted file mode 100644
index f6c843c..0000000
--- a/include/nvgpu/hw/gp106/hw_xp_gp106.h
+++ /dev/null
@@ -1,143 +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_xp_gp106_h_
57#define _hw_xp_gp106_h_
58
59static inline u32 xp_dl_mgr_r(u32 i)
60{
61 return 0x0008b8c0U + i*4U;
62}
63static inline u32 xp_dl_mgr_safe_timing_f(u32 v)
64{
65 return (v & 0x1U) << 2U;
66}
67static inline u32 xp_pl_link_config_r(u32 i)
68{
69 return 0x0008c040U + i*4U;
70}
71static inline u32 xp_pl_link_config_ltssm_status_f(u32 v)
72{
73 return (v & 0x1U) << 4U;
74}
75static inline u32 xp_pl_link_config_ltssm_status_idle_v(void)
76{
77 return 0x00000000U;
78}
79static inline u32 xp_pl_link_config_ltssm_directive_f(u32 v)
80{
81 return (v & 0xfU) << 0U;
82}
83static inline u32 xp_pl_link_config_ltssm_directive_m(void)
84{
85 return 0xfU << 0U;
86}
87static inline u32 xp_pl_link_config_ltssm_directive_normal_operations_v(void)
88{
89 return 0x00000000U;
90}
91static inline u32 xp_pl_link_config_ltssm_directive_change_speed_v(void)
92{
93 return 0x00000001U;
94}
95static inline u32 xp_pl_link_config_max_link_rate_f(u32 v)
96{
97 return (v & 0x3U) << 18U;
98}
99static inline u32 xp_pl_link_config_max_link_rate_m(void)
100{
101 return 0x3U << 18U;
102}
103static inline u32 xp_pl_link_config_max_link_rate_2500_mtps_v(void)
104{
105 return 0x00000002U;
106}
107static inline u32 xp_pl_link_config_max_link_rate_5000_mtps_v(void)
108{
109 return 0x00000001U;
110}
111static inline u32 xp_pl_link_config_max_link_rate_8000_mtps_v(void)
112{
113 return 0x00000000U;
114}
115static inline u32 xp_pl_link_config_target_tx_width_f(u32 v)
116{
117 return (v & 0x7U) << 20U;
118}
119static inline u32 xp_pl_link_config_target_tx_width_m(void)
120{
121 return 0x7U << 20U;
122}
123static inline u32 xp_pl_link_config_target_tx_width_x1_v(void)
124{
125 return 0x00000007U;
126}
127static inline u32 xp_pl_link_config_target_tx_width_x2_v(void)
128{
129 return 0x00000006U;
130}
131static inline u32 xp_pl_link_config_target_tx_width_x4_v(void)
132{
133 return 0x00000005U;
134}
135static inline u32 xp_pl_link_config_target_tx_width_x8_v(void)
136{
137 return 0x00000004U;
138}
139static inline u32 xp_pl_link_config_target_tx_width_x16_v(void)
140{
141 return 0x00000000U;
142}
143#endif
diff --git a/include/nvgpu/hw/gp106/hw_xve_gp106.h b/include/nvgpu/hw/gp106/hw_xve_gp106.h
deleted file mode 100644
index e61d13f..0000000
--- a/include/nvgpu/hw/gp106/hw_xve_gp106.h
+++ /dev/null
@@ -1,207 +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_xve_gp106_h_
57#define _hw_xve_gp106_h_
58
59static inline u32 xve_rom_ctrl_r(void)
60{
61 return 0x00000050U;
62}
63static inline u32 xve_rom_ctrl_rom_shadow_f(u32 v)
64{
65 return (v & 0x1U) << 0U;
66}
67static inline u32 xve_rom_ctrl_rom_shadow_disabled_f(void)
68{
69 return 0x0U;
70}
71static inline u32 xve_rom_ctrl_rom_shadow_enabled_f(void)
72{
73 return 0x1U;
74}
75static inline u32 xve_link_control_status_r(void)
76{
77 return 0x00000088U;
78}
79static inline u32 xve_link_control_status_link_speed_m(void)
80{
81 return 0xfU << 16U;
82}
83static inline u32 xve_link_control_status_link_speed_v(u32 r)
84{
85 return (r >> 16U) & 0xfU;
86}
87static inline u32 xve_link_control_status_link_speed_link_speed_2p5_v(void)
88{
89 return 0x00000001U;
90}
91static inline u32 xve_link_control_status_link_speed_link_speed_5p0_v(void)
92{
93 return 0x00000002U;
94}
95static inline u32 xve_link_control_status_link_speed_link_speed_8p0_v(void)
96{
97 return 0x00000003U;
98}
99static inline u32 xve_link_control_status_link_width_m(void)
100{
101 return 0x3fU << 20U;
102}
103static inline u32 xve_link_control_status_link_width_v(u32 r)
104{
105 return (r >> 20U) & 0x3fU;
106}
107static inline u32 xve_link_control_status_link_width_x1_v(void)
108{
109 return 0x00000001U;
110}
111static inline u32 xve_link_control_status_link_width_x2_v(void)
112{
113 return 0x00000002U;
114}
115static inline u32 xve_link_control_status_link_width_x4_v(void)
116{
117 return 0x00000004U;
118}
119static inline u32 xve_link_control_status_link_width_x8_v(void)
120{
121 return 0x00000008U;
122}
123static inline u32 xve_link_control_status_link_width_x16_v(void)
124{
125 return 0x00000010U;
126}
127static inline u32 xve_priv_xv_r(void)
128{
129 return 0x00000150U;
130}
131static inline u32 xve_priv_xv_cya_l0s_enable_f(u32 v)
132{
133 return (v & 0x1U) << 7U;
134}
135static inline u32 xve_priv_xv_cya_l0s_enable_m(void)
136{
137 return 0x1U << 7U;
138}
139static inline u32 xve_priv_xv_cya_l0s_enable_v(u32 r)
140{
141 return (r >> 7U) & 0x1U;
142}
143static inline u32 xve_priv_xv_cya_l1_enable_f(u32 v)
144{
145 return (v & 0x1U) << 8U;
146}
147static inline u32 xve_priv_xv_cya_l1_enable_m(void)
148{
149 return 0x1U << 8U;
150}
151static inline u32 xve_priv_xv_cya_l1_enable_v(u32 r)
152{
153 return (r >> 8U) & 0x1U;
154}
155static inline u32 xve_cya_2_r(void)
156{
157 return 0x00000704U;
158}
159static inline u32 xve_reset_r(void)
160{
161 return 0x00000718U;
162}
163static inline u32 xve_reset_reset_m(void)
164{
165 return 0x1U << 0U;
166}
167static inline u32 xve_reset_gpu_on_sw_reset_m(void)
168{
169 return 0x1U << 1U;
170}
171static inline u32 xve_reset_counter_en_m(void)
172{
173 return 0x1U << 2U;
174}
175static inline u32 xve_reset_counter_val_f(u32 v)
176{
177 return (v & 0x7ffU) << 4U;
178}
179static inline u32 xve_reset_counter_val_m(void)
180{
181 return 0x7ffU << 4U;
182}
183static inline u32 xve_reset_counter_val_v(u32 r)
184{
185 return (r >> 4U) & 0x7ffU;
186}
187static inline u32 xve_reset_clock_on_sw_reset_m(void)
188{
189 return 0x1U << 15U;
190}
191static inline u32 xve_reset_clock_counter_en_m(void)
192{
193 return 0x1U << 16U;
194}
195static inline u32 xve_reset_clock_counter_val_f(u32 v)
196{
197 return (v & 0x7ffU) << 17U;
198}
199static inline u32 xve_reset_clock_counter_val_m(void)
200{
201 return 0x7ffU << 17U;
202}
203static inline u32 xve_reset_clock_counter_val_v(u32 r)
204{
205 return (r >> 17U) & 0x7ffU;
206}
207#endif