diff options
author | Joshua Bakita <bakitajoshua@gmail.com> | 2024-09-25 16:09:09 -0400 |
---|---|---|
committer | Joshua Bakita <bakitajoshua@gmail.com> | 2024-09-25 16:09:09 -0400 |
commit | f347fde22f1297e4f022600d201780d5ead78114 (patch) | |
tree | 76be305d6187003a1e0486ff6e91efb1062ae118 /include/nvgpu/hw/gm20b/hw_proj_gm20b.h | |
parent | 8340d234d78a7d0f46c11a584de538148b78b7cb (diff) |
Delete no-longer-needed nvgpu headersHEADmasterjbakita-wip
The dependency on these was removed in commit 8340d234.
Diffstat (limited to 'include/nvgpu/hw/gm20b/hw_proj_gm20b.h')
-rw-r--r-- | include/nvgpu/hw/gm20b/hw_proj_gm20b.h | 171 |
1 files changed, 0 insertions, 171 deletions
diff --git a/include/nvgpu/hw/gm20b/hw_proj_gm20b.h b/include/nvgpu/hw/gm20b/hw_proj_gm20b.h deleted file mode 100644 index 8129ea6..0000000 --- a/include/nvgpu/hw/gm20b/hw_proj_gm20b.h +++ /dev/null | |||
@@ -1,171 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2014-2018, NVIDIA CORPORATION. All rights reserved. | ||
3 | * | ||
4 | * Permission is hereby granted, free of charge, to any person obtaining a | ||
5 | * copy of this software and associated documentation files (the "Software"), | ||
6 | * to deal in the Software without restriction, including without limitation | ||
7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
8 | * and/or sell copies of the Software, and to permit persons to whom the | ||
9 | * Software is furnished to do so, subject to the following conditions: | ||
10 | * | ||
11 | * The above copyright notice and this permission notice shall be included in | ||
12 | * all copies or substantial portions of the Software. | ||
13 | * | ||
14 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
15 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
16 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
17 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
19 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
20 | * DEALINGS IN THE SOFTWARE. | ||
21 | */ | ||
22 | /* | ||
23 | * Function naming determines intended use: | ||
24 | * | ||
25 | * <x>_r(void) : Returns the offset for register <x>. | ||
26 | * | ||
27 | * <x>_o(void) : Returns the offset for element <x>. | ||
28 | * | ||
29 | * <x>_w(void) : Returns the word offset for word (4 byte) element <x>. | ||
30 | * | ||
31 | * <x>_<y>_s(void) : Returns size of field <y> of register <x> in bits. | ||
32 | * | ||
33 | * <x>_<y>_f(u32 v) : Returns a value based on 'v' which has been shifted | ||
34 | * and masked to place it at field <y> of register <x>. This value | ||
35 | * can be |'d with others to produce a full register value for | ||
36 | * register <x>. | ||
37 | * | ||
38 | * <x>_<y>_m(void) : Returns a mask for field <y> of register <x>. This | ||
39 | * value can be ~'d and then &'d to clear the value of field <y> for | ||
40 | * register <x>. | ||
41 | * | ||
42 | * <x>_<y>_<z>_f(void) : Returns the constant value <z> after being shifted | ||
43 | * to place it at field <y> of register <x>. This value can be |'d | ||
44 | * with others to produce a full register value for <x>. | ||
45 | * | ||
46 | * <x>_<y>_v(u32 r) : Returns the value of field <y> from a full register | ||
47 | * <x> value 'r' after being shifted to place its LSB at bit 0. | ||
48 | * This value is suitable for direct comparison with other unshifted | ||
49 | * values appropriate for use in field <y> of register <x>. | ||
50 | * | ||
51 | * <x>_<y>_<z>_v(void) : Returns the constant value for <z> defined for | ||
52 | * field <y> of register <x>. This value is suitable for direct | ||
53 | * comparison with unshifted values appropriate for use in field <y> | ||
54 | * of register <x>. | ||
55 | */ | ||
56 | #ifndef _hw_proj_gm20b_h_ | ||
57 | #define _hw_proj_gm20b_h_ | ||
58 | |||
59 | static inline u32 proj_gpc_base_v(void) | ||
60 | { | ||
61 | return 0x00500000U; | ||
62 | } | ||
63 | static inline u32 proj_gpc_shared_base_v(void) | ||
64 | { | ||
65 | return 0x00418000U; | ||
66 | } | ||
67 | static inline u32 proj_gpc_stride_v(void) | ||
68 | { | ||
69 | return 0x00008000U; | ||
70 | } | ||
71 | static inline u32 proj_gpc_priv_stride_v(void) | ||
72 | { | ||
73 | return 0x00000800U; | ||
74 | } | ||
75 | static inline u32 proj_ltc_stride_v(void) | ||
76 | { | ||
77 | return 0x00002000U; | ||
78 | } | ||
79 | static inline u32 proj_lts_stride_v(void) | ||
80 | { | ||
81 | return 0x00000200U; | ||
82 | } | ||
83 | static inline u32 proj_fbpa_stride_v(void) | ||
84 | { | ||
85 | return 0x00001000U; | ||
86 | } | ||
87 | static inline u32 proj_ppc_in_gpc_base_v(void) | ||
88 | { | ||
89 | return 0x00003000U; | ||
90 | } | ||
91 | static inline u32 proj_ppc_in_gpc_shared_base_v(void) | ||
92 | { | ||
93 | return 0x00003e00U; | ||
94 | } | ||
95 | static inline u32 proj_ppc_in_gpc_stride_v(void) | ||
96 | { | ||
97 | return 0x00000200U; | ||
98 | } | ||
99 | static inline u32 proj_rop_base_v(void) | ||
100 | { | ||
101 | return 0x00410000U; | ||
102 | } | ||
103 | static inline u32 proj_rop_shared_base_v(void) | ||
104 | { | ||
105 | return 0x00408800U; | ||
106 | } | ||
107 | static inline u32 proj_rop_stride_v(void) | ||
108 | { | ||
109 | return 0x00000400U; | ||
110 | } | ||
111 | static inline u32 proj_tpc_in_gpc_base_v(void) | ||
112 | { | ||
113 | return 0x00004000U; | ||
114 | } | ||
115 | static inline u32 proj_tpc_in_gpc_stride_v(void) | ||
116 | { | ||
117 | return 0x00000800U; | ||
118 | } | ||
119 | static inline u32 proj_tpc_in_gpc_shared_base_v(void) | ||
120 | { | ||
121 | return 0x00001800U; | ||
122 | } | ||
123 | static inline u32 proj_host_num_engines_v(void) | ||
124 | { | ||
125 | return 0x00000002U; | ||
126 | } | ||
127 | static inline u32 proj_host_num_pbdma_v(void) | ||
128 | { | ||
129 | return 0x00000001U; | ||
130 | } | ||
131 | static inline u32 proj_scal_litter_num_tpc_per_gpc_v(void) | ||
132 | { | ||
133 | return 0x00000002U; | ||
134 | } | ||
135 | static inline u32 proj_scal_litter_num_sm_per_tpc_v(void) | ||
136 | { | ||
137 | return 0x00000001U; | ||
138 | } | ||
139 | static inline u32 proj_scal_litter_num_fbps_v(void) | ||
140 | { | ||
141 | return 0x00000001U; | ||
142 | } | ||
143 | static inline u32 proj_scal_litter_num_fbpas_v(void) | ||
144 | { | ||
145 | return 0x00000001U; | ||
146 | } | ||
147 | static inline u32 proj_scal_litter_num_gpcs_v(void) | ||
148 | { | ||
149 | return 0x00000001U; | ||
150 | } | ||
151 | static inline u32 proj_scal_litter_num_pes_per_gpc_v(void) | ||
152 | { | ||
153 | return 0x00000001U; | ||
154 | } | ||
155 | static inline u32 proj_scal_litter_num_tpcs_per_pes_v(void) | ||
156 | { | ||
157 | return 0x00000002U; | ||
158 | } | ||
159 | static inline u32 proj_scal_litter_num_zcull_banks_v(void) | ||
160 | { | ||
161 | return 0x00000004U; | ||
162 | } | ||
163 | static inline u32 proj_scal_max_gpcs_v(void) | ||
164 | { | ||
165 | return 0x00000020U; | ||
166 | } | ||
167 | static inline u32 proj_scal_max_tpc_per_gpc_v(void) | ||
168 | { | ||
169 | return 0x00000008U; | ||
170 | } | ||
171 | #endif | ||