1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __NVKM_GRCTX_NVC0_H__
3 #define __NVKM_GRCTX_NVC0_H__
8 struct gf100_gr_data
*data
;
9 struct gf100_gr_mmio
*mmio
;
15 int gf100_grctx_mmio_data(struct gf100_grctx
*, u32 size
, u32 align
, bool priv
);
16 void gf100_grctx_mmio_item(struct gf100_grctx
*, u32 addr
, u32 data
, int s
, int);
18 #define mmio_vram(a,b,c,d) gf100_grctx_mmio_data((a), (b), (c), (d))
19 #define mmio_refn(a,b,c,d,e) gf100_grctx_mmio_item((a), (b), (c), (d), (e))
20 #define mmio_skip(a,b,c) mmio_refn((a), (b), (c), -1, -1)
21 #define mmio_wr32(a,b,c) mmio_refn((a), (b), (c), 0, -1)
23 struct gf100_grctx_func
{
24 /* main context generation function */
25 void (*main
)(struct gf100_gr
*, struct gf100_grctx
*);
26 /* context-specific modify-on-first-load list generation function */
27 void (*unkn
)(struct gf100_gr
*);
28 /* mmio context data */
29 const struct gf100_gr_pack
*hub
;
30 const struct gf100_gr_pack
*gpc
;
31 const struct gf100_gr_pack
*zcull
;
32 const struct gf100_gr_pack
*tpc
;
33 const struct gf100_gr_pack
*ppc
;
34 /* indirect context data, generated with icmds/mthds */
35 const struct gf100_gr_pack
*icmd
;
36 const struct gf100_gr_pack
*mthd
;
37 /* bundle circular buffer */
38 void (*bundle
)(struct gf100_grctx
*);
40 u32 bundle_min_gpm_fifo_depth
;
41 u32 bundle_token_limit
;
43 void (*pagepool
)(struct gf100_grctx
*);
45 /* attribute(/alpha) circular buffer */
46 void (*attrib
)(struct gf100_grctx
*);
53 extern const struct gf100_grctx_func gf100_grctx
;
54 int gf100_grctx_generate(struct gf100_gr
*);
55 void gf100_grctx_generate_main(struct gf100_gr
*, struct gf100_grctx
*);
56 void gf100_grctx_generate_bundle(struct gf100_grctx
*);
57 void gf100_grctx_generate_pagepool(struct gf100_grctx
*);
58 void gf100_grctx_generate_attrib(struct gf100_grctx
*);
59 void gf100_grctx_generate_unkn(struct gf100_gr
*);
60 void gf100_grctx_generate_tpcid(struct gf100_gr
*);
61 void gf100_grctx_generate_r406028(struct gf100_gr
*);
62 void gf100_grctx_generate_r4060a8(struct gf100_gr
*);
63 void gf100_grctx_generate_r418bb8(struct gf100_gr
*);
64 void gf100_grctx_generate_r406800(struct gf100_gr
*);
66 extern const struct gf100_grctx_func gf108_grctx
;
67 void gf108_grctx_generate_attrib(struct gf100_grctx
*);
68 void gf108_grctx_generate_unkn(struct gf100_gr
*);
70 extern const struct gf100_grctx_func gf104_grctx
;
71 extern const struct gf100_grctx_func gf110_grctx
;
73 extern const struct gf100_grctx_func gf117_grctx
;
74 void gf117_grctx_generate_attrib(struct gf100_grctx
*);
76 extern const struct gf100_grctx_func gf119_grctx
;
78 extern const struct gf100_grctx_func gk104_grctx
;
79 extern const struct gf100_grctx_func gk20a_grctx
;
80 void gk104_grctx_generate_main(struct gf100_gr
*, struct gf100_grctx
*);
81 void gk104_grctx_generate_bundle(struct gf100_grctx
*);
82 void gk104_grctx_generate_pagepool(struct gf100_grctx
*);
83 void gk104_grctx_generate_unkn(struct gf100_gr
*);
84 void gk104_grctx_generate_r418bb8(struct gf100_gr
*);
86 void gm107_grctx_generate_bundle(struct gf100_grctx
*);
87 void gm107_grctx_generate_pagepool(struct gf100_grctx
*);
88 void gm107_grctx_generate_attrib(struct gf100_grctx
*);
90 extern const struct gf100_grctx_func gk110_grctx
;
91 extern const struct gf100_grctx_func gk110b_grctx
;
92 extern const struct gf100_grctx_func gk208_grctx
;
94 extern const struct gf100_grctx_func gm107_grctx
;
95 void gm107_grctx_generate_bundle(struct gf100_grctx
*);
96 void gm107_grctx_generate_pagepool(struct gf100_grctx
*);
97 void gm107_grctx_generate_attrib(struct gf100_grctx
*);
99 extern const struct gf100_grctx_func gm200_grctx
;
100 void gm200_grctx_generate_tpcid(struct gf100_gr
*);
101 void gm200_grctx_generate_405b60(struct gf100_gr
*);
103 extern const struct gf100_grctx_func gm20b_grctx
;
105 extern const struct gf100_grctx_func gp100_grctx
;
106 void gp100_grctx_generate_main(struct gf100_gr
*, struct gf100_grctx
*);
107 void gp100_grctx_generate_pagepool(struct gf100_grctx
*);
109 extern const struct gf100_grctx_func gp102_grctx
;
110 void gp102_grctx_generate_attrib(struct gf100_grctx
*);
112 extern const struct gf100_grctx_func gp107_grctx
;
114 /* context init value lists */
116 extern const struct gf100_gr_pack gf100_grctx_pack_icmd
[];
118 extern const struct gf100_gr_pack gf100_grctx_pack_mthd
[];
119 extern const struct gf100_gr_init gf100_grctx_init_902d_0
[];
120 extern const struct gf100_gr_init gf100_grctx_init_9039_0
[];
121 extern const struct gf100_gr_init gf100_grctx_init_90c0_0
[];
123 extern const struct gf100_gr_pack gf100_grctx_pack_hub
[];
124 extern const struct gf100_gr_init gf100_grctx_init_main_0
[];
125 extern const struct gf100_gr_init gf100_grctx_init_fe_0
[];
126 extern const struct gf100_gr_init gf100_grctx_init_pri_0
[];
127 extern const struct gf100_gr_init gf100_grctx_init_memfmt_0
[];
128 extern const struct gf100_gr_init gf100_grctx_init_rstr2d_0
[];
129 extern const struct gf100_gr_init gf100_grctx_init_scc_0
[];
131 extern const struct gf100_gr_pack gf100_grctx_pack_gpc
[];
132 extern const struct gf100_gr_init gf100_grctx_init_gpc_unk_0
[];
133 extern const struct gf100_gr_init gf100_grctx_init_prop_0
[];
134 extern const struct gf100_gr_init gf100_grctx_init_gpc_unk_1
[];
135 extern const struct gf100_gr_init gf100_grctx_init_zcull_0
[];
136 extern const struct gf100_gr_init gf100_grctx_init_crstr_0
[];
137 extern const struct gf100_gr_init gf100_grctx_init_gpm_0
[];
138 extern const struct gf100_gr_init gf100_grctx_init_gcc_0
[];
140 extern const struct gf100_gr_pack gf100_grctx_pack_zcull
[];
142 extern const struct gf100_gr_pack gf100_grctx_pack_tpc
[];
143 extern const struct gf100_gr_init gf100_grctx_init_pe_0
[];
144 extern const struct gf100_gr_init gf100_grctx_init_wwdx_0
[];
145 extern const struct gf100_gr_init gf100_grctx_init_mpc_0
[];
146 extern const struct gf100_gr_init gf100_grctx_init_tpccs_0
[];
148 extern const struct gf100_gr_init gf104_grctx_init_tex_0
[];
149 extern const struct gf100_gr_init gf104_grctx_init_l1c_0
[];
150 extern const struct gf100_gr_init gf104_grctx_init_sm_0
[];
152 extern const struct gf100_gr_init gf108_grctx_init_9097_0
[];
154 extern const struct gf100_gr_init gf108_grctx_init_gpm_0
[];
156 extern const struct gf100_gr_init gf108_grctx_init_pe_0
[];
157 extern const struct gf100_gr_init gf108_grctx_init_wwdx_0
[];
158 extern const struct gf100_gr_init gf108_grctx_init_tpccs_0
[];
160 extern const struct gf100_gr_init gf110_grctx_init_9197_0
[];
161 extern const struct gf100_gr_init gf110_grctx_init_9297_0
[];
163 extern const struct gf100_gr_pack gf119_grctx_pack_icmd
[];
165 extern const struct gf100_gr_pack gf119_grctx_pack_mthd
[];
167 extern const struct gf100_gr_init gf119_grctx_init_fe_0
[];
168 extern const struct gf100_gr_init gf119_grctx_init_be_0
[];
170 extern const struct gf100_gr_init gf119_grctx_init_prop_0
[];
171 extern const struct gf100_gr_init gf119_grctx_init_gpc_unk_1
[];
172 extern const struct gf100_gr_init gf119_grctx_init_crstr_0
[];
174 extern const struct gf100_gr_init gf119_grctx_init_sm_0
[];
176 extern const struct gf100_gr_init gf117_grctx_init_pe_0
[];
178 extern const struct gf100_gr_init gf117_grctx_init_wwdx_0
[];
180 extern const struct gf100_gr_init gk104_grctx_init_memfmt_0
[];
181 extern const struct gf100_gr_init gk104_grctx_init_ds_0
[];
182 extern const struct gf100_gr_init gk104_grctx_init_scc_0
[];
184 extern const struct gf100_gr_init gk104_grctx_init_gpm_0
[];
186 extern const struct gf100_gr_init gk104_grctx_init_pes_0
[];
188 extern const struct gf100_gr_pack gk104_grctx_pack_hub
[];
189 extern const struct gf100_gr_pack gk104_grctx_pack_gpc
[];
190 extern const struct gf100_gr_pack gk104_grctx_pack_tpc
[];
191 extern const struct gf100_gr_pack gk104_grctx_pack_ppc
[];
192 extern const struct gf100_gr_pack gk104_grctx_pack_icmd
[];
193 extern const struct gf100_gr_init gk104_grctx_init_a097_0
[];
195 extern const struct gf100_gr_pack gk110_grctx_pack_icmd
[];
197 extern const struct gf100_gr_pack gk110_grctx_pack_mthd
[];
199 extern const struct gf100_gr_pack gk110_grctx_pack_hub
[];
200 extern const struct gf100_gr_init gk110_grctx_init_pri_0
[];
201 extern const struct gf100_gr_init gk110_grctx_init_cwd_0
[];
203 extern const struct gf100_gr_pack gk110_grctx_pack_gpc
[];
204 extern const struct gf100_gr_init gk110_grctx_init_gpc_unk_2
[];
206 extern const struct gf100_gr_init gk110_grctx_init_tex_0
[];
207 extern const struct gf100_gr_init gk110_grctx_init_mpc_0
[];
208 extern const struct gf100_gr_init gk110_grctx_init_l1c_0
[];
210 extern const struct gf100_gr_pack gk110_grctx_pack_ppc
[];
212 extern const struct gf100_gr_init gk208_grctx_init_rstr2d_0
[];
214 extern const struct gf100_gr_init gk208_grctx_init_prop_0
[];
215 extern const struct gf100_gr_init gk208_grctx_init_crstr_0
[];
217 extern const struct gf100_gr_init gm107_grctx_init_gpc_unk_0
[];
218 extern const struct gf100_gr_init gm107_grctx_init_wwdx_0
[];