1 /*
2  * Copyright 2010 Red Hat Inc.
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 COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: Ben Skeggs
23  */
24 #ifndef __NVC0_GR_H__
25 #define __NVC0_GR_H__
26 #define gf100_gr(p) container_of((p), struct gf100_gr, base)
27 #include "priv.h"
28 
29 #include <core/gpuobj.h>
30 #include <subdev/ltc.h>
31 #include <subdev/mmu.h>
32 
33 #define GPC_MAX 32
34 #define TPC_MAX (GPC_MAX * 8)
35 
36 #define ROP_BCAST(r)      (0x408800 + (r))
37 #define ROP_UNIT(u, r)    (0x410000 + (u) * 0x400 + (r))
38 #define GPC_BCAST(r)      (0x418000 + (r))
39 #define GPC_UNIT(t, r)    (0x500000 + (t) * 0x8000 + (r))
40 #define PPC_UNIT(t, m, r) (0x503000 + (t) * 0x8000 + (m) * 0x200 + (r))
41 #define TPC_UNIT(t, m, r) (0x504000 + (t) * 0x8000 + (m) * 0x800 + (r))
42 
43 struct gf100_gr_data {
44 	u32 size;
45 	u32 align;
46 	u32 access;
47 };
48 
49 struct gf100_gr_mmio {
50 	u32 addr;
51 	u32 data;
52 	u32 shift;
53 	int buffer;
54 };
55 
56 struct gf100_gr_fuc {
57 	u32 *data;
58 	u32  size;
59 };
60 
61 struct gf100_gr_zbc_color {
62 	u32 format;
63 	u32 ds[4];
64 	u32 l2[4];
65 };
66 
67 struct gf100_gr_zbc_depth {
68 	u32 format;
69 	u32 ds;
70 	u32 l2;
71 };
72 
73 struct gf100_gr {
74 	struct nvkm_gr base;
75 	const struct gf100_gr_func *func;
76 
77 	struct gf100_gr_fuc fuc409c;
78 	struct gf100_gr_fuc fuc409d;
79 	struct gf100_gr_fuc fuc41ac;
80 	struct gf100_gr_fuc fuc41ad;
81 	bool firmware;
82 
83 	/*
84 	 * Used if the register packs are loaded from NVIDIA fw instead of
85 	 * using hardcoded arrays.
86 	 */
87 	struct gf100_gr_pack *fuc_sw_nonctx;
88 	struct gf100_gr_pack *fuc_sw_ctx;
89 	struct gf100_gr_pack *fuc_bundle;
90 	struct gf100_gr_pack *fuc_method;
91 
92 	struct gf100_gr_zbc_color zbc_color[NVKM_LTC_MAX_ZBC_CNT];
93 	struct gf100_gr_zbc_depth zbc_depth[NVKM_LTC_MAX_ZBC_CNT];
94 
95 	u8 rop_nr;
96 	u8 gpc_nr;
97 	u8 tpc_nr[GPC_MAX];
98 	u8 tpc_total;
99 	u8 ppc_nr[GPC_MAX];
100 	u8 ppc_tpc_nr[GPC_MAX][4];
101 
102 	struct nvkm_memory *unk4188b4;
103 	struct nvkm_memory *unk4188b8;
104 
105 	struct gf100_gr_data mmio_data[4];
106 	struct gf100_gr_mmio mmio_list[4096/8];
107 	u32  size;
108 	u32 *data;
109 
110 	u8 magic_not_rop_nr;
111 };
112 
113 struct gf100_gr_func {
114 	const struct gf100_grctx_func *grctx;
115 	struct nvkm_sclass sclass[];
116 };
117 
118 #define gf100_gr_chan(p) container_of((p), struct gf100_gr_chan, object)
119 
120 struct gf100_gr_chan {
121 	struct nvkm_object object;
122 	struct gf100_gr *gr;
123 
124 	struct nvkm_memory *mmio;
125 	struct nvkm_vma mmio_vma;
126 	int mmio_nr;
127 
128 	struct {
129 		struct nvkm_memory *mem;
130 		struct nvkm_vma vma;
131 	} data[4];
132 };
133 
134 void gf100_gr_ctxctl_debug(struct gf100_gr *);
135 
136 void gf100_gr_dtor_fw(struct gf100_gr_fuc *);
137 int  gf100_gr_ctor_fw(struct gf100_gr *, const char *,
138 		      struct gf100_gr_fuc *);
139 u64  gf100_gr_units(struct nvkm_gr *);
140 int  gf100_gr_ctor(struct nvkm_object *, struct nvkm_object *,
141 		     struct nvkm_oclass *, void *data, u32 size,
142 		     struct nvkm_object **);
143 void gf100_gr_dtor(struct nvkm_object *);
144 int  gf100_gr_init(struct nvkm_object *);
145 void gf100_gr_zbc_init(struct gf100_gr *);
146 
147 int  gk104_gr_ctor(struct nvkm_object *, struct nvkm_object *,
148 		     struct nvkm_oclass *, void *data, u32 size,
149 		     struct nvkm_object **);
150 int  gk104_gr_init(struct nvkm_object *);
151 
152 int  gk20a_gr_ctor(struct nvkm_object *, struct nvkm_object *,
153 		     struct nvkm_oclass *, void *data, u32 size,
154 		     struct nvkm_object **);
155 void gk20a_gr_dtor(struct nvkm_object *);
156 int  gk20a_gr_init(struct nvkm_object *);
157 
158 int  gm204_gr_init(struct nvkm_object *);
159 
160 extern const struct nvkm_object_func gf100_fermi;
161 
162 extern struct nvkm_oclass gf100_gr_sclass[];
163 extern struct nvkm_oclass gf110_gr_sclass[];
164 extern struct nvkm_oclass gk110_gr_sclass[];
165 extern struct nvkm_oclass gm204_gr_sclass[];
166 
167 struct gf100_gr_init {
168 	u32 addr;
169 	u8  count;
170 	u8  pitch;
171 	u32 data;
172 };
173 
174 struct gf100_gr_pack {
175 	const struct gf100_gr_init *init;
176 	u32 type;
177 };
178 
179 #define pack_for_each_init(init, pack, head)                                   \
180 	for (pack = head; pack && pack->init; pack++)                          \
181 		  for (init = pack->init; init && init->count; init++)
182 
183 struct gf100_gr_ucode {
184 	struct gf100_gr_fuc code;
185 	struct gf100_gr_fuc data;
186 };
187 
188 extern struct gf100_gr_ucode gf100_gr_fecs_ucode;
189 extern struct gf100_gr_ucode gf100_gr_gpccs_ucode;
190 
191 extern struct gf100_gr_ucode gk110_gr_fecs_ucode;
192 extern struct gf100_gr_ucode gk110_gr_gpccs_ucode;
193 
194 struct gf100_gr_oclass {
195 	struct nvkm_oclass base;
196 	const struct gf100_gr_func *func;
197 	const struct gf100_gr_pack *mmio;
198 	struct {
199 		struct gf100_gr_ucode *ucode;
200 	} fecs;
201 	struct {
202 		struct gf100_gr_ucode *ucode;
203 	} gpccs;
204 	int ppc_nr;
205 };
206 
207 int  gf100_gr_wait_idle(struct gf100_gr *);
208 void gf100_gr_mmio(struct gf100_gr *, const struct gf100_gr_pack *);
209 void gf100_gr_icmd(struct gf100_gr *, const struct gf100_gr_pack *);
210 void gf100_gr_mthd(struct gf100_gr *, const struct gf100_gr_pack *);
211 int  gf100_gr_init_ctxctl(struct gf100_gr *);
212 
213 /* register init value lists */
214 
215 extern const struct gf100_gr_init gf100_gr_init_main_0[];
216 extern const struct gf100_gr_init gf100_gr_init_fe_0[];
217 extern const struct gf100_gr_init gf100_gr_init_pri_0[];
218 extern const struct gf100_gr_init gf100_gr_init_rstr2d_0[];
219 extern const struct gf100_gr_init gf100_gr_init_pd_0[];
220 extern const struct gf100_gr_init gf100_gr_init_ds_0[];
221 extern const struct gf100_gr_init gf100_gr_init_scc_0[];
222 extern const struct gf100_gr_init gf100_gr_init_prop_0[];
223 extern const struct gf100_gr_init gf100_gr_init_gpc_unk_0[];
224 extern const struct gf100_gr_init gf100_gr_init_setup_0[];
225 extern const struct gf100_gr_init gf100_gr_init_crstr_0[];
226 extern const struct gf100_gr_init gf100_gr_init_setup_1[];
227 extern const struct gf100_gr_init gf100_gr_init_zcull_0[];
228 extern const struct gf100_gr_init gf100_gr_init_gpm_0[];
229 extern const struct gf100_gr_init gf100_gr_init_gpc_unk_1[];
230 extern const struct gf100_gr_init gf100_gr_init_gcc_0[];
231 extern const struct gf100_gr_init gf100_gr_init_tpccs_0[];
232 extern const struct gf100_gr_init gf100_gr_init_tex_0[];
233 extern const struct gf100_gr_init gf100_gr_init_pe_0[];
234 extern const struct gf100_gr_init gf100_gr_init_l1c_0[];
235 extern const struct gf100_gr_init gf100_gr_init_wwdx_0[];
236 extern const struct gf100_gr_init gf100_gr_init_tpccs_1[];
237 extern const struct gf100_gr_init gf100_gr_init_mpc_0[];
238 extern const struct gf100_gr_init gf100_gr_init_be_0[];
239 extern const struct gf100_gr_init gf100_gr_init_fe_1[];
240 extern const struct gf100_gr_init gf100_gr_init_pe_1[];
241 
242 extern const struct gf100_gr_init gf104_gr_init_ds_0[];
243 extern const struct gf100_gr_init gf104_gr_init_tex_0[];
244 extern const struct gf100_gr_init gf104_gr_init_sm_0[];
245 
246 extern const struct gf100_gr_init gf108_gr_init_gpc_unk_0[];
247 extern const struct gf100_gr_init gf108_gr_init_setup_1[];
248 
249 extern const struct gf100_gr_init gf119_gr_init_pd_0[];
250 extern const struct gf100_gr_init gf119_gr_init_ds_0[];
251 extern const struct gf100_gr_init gf119_gr_init_prop_0[];
252 extern const struct gf100_gr_init gf119_gr_init_gpm_0[];
253 extern const struct gf100_gr_init gf119_gr_init_gpc_unk_1[];
254 extern const struct gf100_gr_init gf119_gr_init_tex_0[];
255 extern const struct gf100_gr_init gf119_gr_init_sm_0[];
256 extern const struct gf100_gr_init gf119_gr_init_fe_1[];
257 
258 extern const struct gf100_gr_init gf117_gr_init_pes_0[];
259 extern const struct gf100_gr_init gf117_gr_init_wwdx_0[];
260 extern const struct gf100_gr_init gf117_gr_init_cbm_0[];
261 
262 extern const struct gf100_gr_init gk104_gr_init_main_0[];
263 extern const struct gf100_gr_init gk104_gr_init_tpccs_0[];
264 extern const struct gf100_gr_init gk104_gr_init_pe_0[];
265 extern const struct gf100_gr_init gk104_gr_init_be_0[];
266 extern const struct gf100_gr_pack gk104_gr_pack_mmio[];
267 
268 extern const struct gf100_gr_init gk110_gr_init_fe_0[];
269 extern const struct gf100_gr_init gk110_gr_init_ds_0[];
270 extern const struct gf100_gr_init gk110_gr_init_sked_0[];
271 extern const struct gf100_gr_init gk110_gr_init_cwd_0[];
272 extern const struct gf100_gr_init gk110_gr_init_gpc_unk_1[];
273 extern const struct gf100_gr_init gk110_gr_init_tex_0[];
274 extern const struct gf100_gr_init gk110_gr_init_sm_0[];
275 
276 extern const struct gf100_gr_init gk208_gr_init_gpc_unk_0[];
277 
278 extern const struct gf100_gr_init gm107_gr_init_scc_0[];
279 extern const struct gf100_gr_init gm107_gr_init_prop_0[];
280 extern const struct gf100_gr_init gm107_gr_init_setup_1[];
281 extern const struct gf100_gr_init gm107_gr_init_zcull_0[];
282 extern const struct gf100_gr_init gm107_gr_init_gpc_unk_1[];
283 extern const struct gf100_gr_init gm107_gr_init_tex_0[];
284 extern const struct gf100_gr_init gm107_gr_init_l1c_0[];
285 extern const struct gf100_gr_init gm107_gr_init_wwdx_0[];
286 extern const struct gf100_gr_init gm107_gr_init_cbm_0[];
287 void gm107_gr_init_bios(struct gf100_gr *);
288 
289 extern const struct gf100_gr_pack gm204_gr_pack_mmio[];
290 #endif
291