gf100.h 13.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * Copyright 2010 Red Hat Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Authors: Ben Skeggs
 */
24 25
#ifndef __GF100_GR_H__
#define __GF100_GR_H__
26 27
#define gf100_gr(p) container_of((p), struct gf100_gr, base)
#include "priv.h"
28

29
#include <core/gpuobj.h>
30
#include <subdev/ltc.h>
31
#include <subdev/mmu.h>
32
#include <engine/falcon.h>
33 34

#define GPC_MAX 32
35 36
#define TPC_MAX_PER_GPC 8
#define TPC_MAX (GPC_MAX * TPC_MAX_PER_GPC)
37 38 39 40 41 42 43 44 45 46 47

#define ROP_BCAST(r)      (0x408800 + (r))
#define ROP_UNIT(u, r)    (0x410000 + (u) * 0x400 + (r))
#define GPC_BCAST(r)      (0x418000 + (r))
#define GPC_UNIT(t, r)    (0x500000 + (t) * 0x8000 + (r))
#define PPC_UNIT(t, m, r) (0x503000 + (t) * 0x8000 + (m) * 0x200 + (r))
#define TPC_UNIT(t, m, r) (0x504000 + (t) * 0x8000 + (m) * 0x800 + (r))

struct gf100_gr_data {
	u32 size;
	u32 align;
48
	bool priv;
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
};

struct gf100_gr_mmio {
	u32 addr;
	u32 data;
	u32 shift;
	int buffer;
};

struct gf100_gr_fuc {
	u32 *data;
	u32  size;
};

struct gf100_gr_zbc_color {
	u32 format;
	u32 ds[4];
	u32 l2[4];
};

struct gf100_gr_zbc_depth {
	u32 format;
	u32 ds;
	u32 l2;
};

75 76 77 78 79 80
struct gf100_gr_zbc_stencil {
	u32 format;
	u32 ds;
	u32 l2;
};

B
Ben Skeggs 已提交
81
struct gf100_gr {
82
	const struct gf100_gr_func *func;
83
	struct nvkm_gr base;
84

85 86
	struct nvkm_falcon *fecs;
	struct nvkm_falcon *gpccs;
87 88 89 90 91 92
	struct gf100_gr_fuc fuc409c;
	struct gf100_gr_fuc fuc409d;
	struct gf100_gr_fuc fuc41ac;
	struct gf100_gr_fuc fuc41ad;
	bool firmware;

93 94
	/*
	 * Used if the register packs are loaded from NVIDIA fw instead of
95
	 * using hardcoded arrays. To be allocated with vzalloc().
96 97 98 99 100 101
	 */
	struct gf100_gr_pack *fuc_sw_nonctx;
	struct gf100_gr_pack *fuc_sw_ctx;
	struct gf100_gr_pack *fuc_bundle;
	struct gf100_gr_pack *fuc_method;

102 103
	struct gf100_gr_zbc_color zbc_color[NVKM_LTC_MAX_ZBC_CNT];
	struct gf100_gr_zbc_depth zbc_depth[NVKM_LTC_MAX_ZBC_CNT];
104
	struct gf100_gr_zbc_stencil zbc_stencil[NVKM_LTC_MAX_ZBC_CNT];
105 106 107 108

	u8 rop_nr;
	u8 gpc_nr;
	u8 tpc_nr[GPC_MAX];
109
	u8 tpc_max;
110 111
	u8 tpc_total;
	u8 ppc_nr[GPC_MAX];
112
	u8 ppc_mask[GPC_MAX];
113
	u8 ppc_tpc_mask[GPC_MAX][4];
114
	u8 ppc_tpc_nr[GPC_MAX][4];
115
	u8 ppc_tpc_min;
116
	u8 ppc_tpc_max;
117

118 119 120
	u8 screen_tile_row_offset;
	u8 tile[TPC_MAX];

121 122 123 124 125 126
	struct {
		u8 gpc;
		u8 tpc;
	} sm[TPC_MAX];
	u8 sm_nr;

127 128 129 130
	struct gf100_gr_data mmio_data[4];
	struct gf100_gr_mmio mmio_list[4096/8];
	u32  size;
	u32 *data;
131
	u32 size_zcull;
132
	u32 size_pm;
133 134
};

135 136 137 138 139 140
int gf100_gr_ctor(const struct gf100_gr_func *, struct nvkm_device *,
		  int, struct gf100_gr *);
int gf100_gr_new_(const struct gf100_gr_func *, struct nvkm_device *,
		  int, struct nvkm_gr **);
void *gf100_gr_dtor(struct nvkm_gr *);

141 142
int gf100_gr_fecs_bind_pointer(struct gf100_gr *, u32 inst);

143 144 145
struct gf100_gr_func_zbc {
	void (*clear_color)(struct gf100_gr *, int zbc);
	void (*clear_depth)(struct gf100_gr *, int zbc);
146 147 148
	int (*stencil_get)(struct gf100_gr *, int format,
			   const u32 ds, const u32 l2);
	void (*clear_stencil)(struct gf100_gr *, int zbc);
149 150
};

151
struct gf100_gr_func {
152
	void (*dtor)(struct gf100_gr *);
153
	void (*oneinit_tiles)(struct gf100_gr *);
154
	void (*oneinit_sm_id)(struct gf100_gr *);
155
	int (*init)(struct gf100_gr *);
156
	void (*init_419bd8)(struct gf100_gr *);
157
	void (*init_gpc_mmu)(struct gf100_gr *);
158
	void (*init_r405a14)(struct gf100_gr *);
159
	void (*init_bios)(struct gf100_gr *);
160
	void (*init_vsc_stream_master)(struct gf100_gr *);
161
	void (*init_zcull)(struct gf100_gr *);
162
	void (*init_num_active_ltcs)(struct gf100_gr *);
163
	void (*init_rop_active_fbps)(struct gf100_gr *);
164
	void (*init_bios_2)(struct gf100_gr *);
165
	void (*init_swdx_pes_mask)(struct gf100_gr *);
166
	void (*init_fecs_exceptions)(struct gf100_gr *);
167
	void (*init_ds_hww_esr_2)(struct gf100_gr *);
168
	void (*init_40601c)(struct gf100_gr *);
169
	void (*init_sked_hww_esr)(struct gf100_gr *);
170
	void (*init_419cc0)(struct gf100_gr *);
171
	void (*init_419eb4)(struct gf100_gr *);
172
	void (*init_419c9c)(struct gf100_gr *);
173
	void (*init_ppc_exceptions)(struct gf100_gr *);
174
	void (*init_tex_hww_esr)(struct gf100_gr *, int gpc, int tpc);
175
	void (*init_504430)(struct gf100_gr *, int gpc, int tpc);
176
	void (*init_shader_exceptions)(struct gf100_gr *, int gpc, int tpc);
177
	void (*init_400054)(struct gf100_gr *);
178
	void (*init_4188a4)(struct gf100_gr *);
179
	void (*trap_mp)(struct gf100_gr *, int gpc, int tpc);
180 181 182 183 184 185 186 187
	void (*set_hww_esr_report_mask)(struct gf100_gr *);
	const struct gf100_gr_pack *mmio;
	struct {
		struct gf100_gr_ucode *ucode;
	} fecs;
	struct {
		struct gf100_gr_ucode *ucode;
	} gpccs;
188
	int (*rops)(struct gf100_gr *);
189 190
	int gpc_nr;
	int tpc_nr;
191
	int ppc_nr;
192
	const struct gf100_grctx_func *grctx;
193
	const struct nvkm_therm_clkgate_pack *clkgate_pack;
194
	const struct gf100_gr_func_zbc *zbc;
195 196 197
	struct nvkm_sclass sclass[];
};

198
int gf100_gr_rops(struct gf100_gr *);
199
void gf100_gr_oneinit_tiles(struct gf100_gr *);
200
void gf100_gr_oneinit_sm_id(struct gf100_gr *);
201 202
int gf100_gr_init(struct gf100_gr *);
void gf100_gr_init_vsc_stream_master(struct gf100_gr *);
203
void gf100_gr_init_zcull(struct gf100_gr *);
204
void gf100_gr_init_num_active_ltcs(struct gf100_gr *);
205
void gf100_gr_init_fecs_exceptions(struct gf100_gr *);
206
void gf100_gr_init_40601c(struct gf100_gr *);
207
void gf100_gr_init_419cc0(struct gf100_gr *);
208
void gf100_gr_init_419eb4(struct gf100_gr *);
209
void gf100_gr_init_tex_hww_esr(struct gf100_gr *, int, int);
210
void gf100_gr_init_shader_exceptions(struct gf100_gr *, int, int);
211
void gf100_gr_init_400054(struct gf100_gr *);
212
extern const struct gf100_gr_func_zbc gf100_gr_zbc;
213 214

void gf117_gr_init_zcull(struct gf100_gr *);
215

216
void gk104_gr_init_vsc_stream_master(struct gf100_gr *);
217
void gk104_gr_init_rop_active_fbps(struct gf100_gr *);
218
void gk104_gr_init_ppc_exceptions(struct gf100_gr *);
219
void gk104_gr_init_sked_hww_esr(struct gf100_gr *);
220

221 222
void gk110_gr_init_419eb4(struct gf100_gr *);

223
void gm107_gr_init_504430(struct gf100_gr *, int, int);
224
void gm107_gr_init_shader_exceptions(struct gf100_gr *, int, int);
225
void gm107_gr_init_400054(struct gf100_gr *);
226

227 228
int gk20a_gr_init(struct gf100_gr *);

229
void gm200_gr_oneinit_tiles(struct gf100_gr *);
230
void gm200_gr_oneinit_sm_id(struct gf100_gr *);
231
int gm200_gr_rops(struct gf100_gr *);
232
void gm200_gr_init_num_active_ltcs(struct gf100_gr *);
233
void gm200_gr_init_ds_hww_esr_2(struct gf100_gr *);
234

235
void gp100_gr_init_rop_active_fbps(struct gf100_gr *);
236
void gp100_gr_init_fecs_exceptions(struct gf100_gr *);
237
void gp100_gr_init_shader_exceptions(struct gf100_gr *, int, int);
238 239
void gp100_gr_zbc_clear_color(struct gf100_gr *, int);
void gp100_gr_zbc_clear_depth(struct gf100_gr *, int);
240

241
void gp102_gr_init_swdx_pes_mask(struct gf100_gr *);
242
extern const struct gf100_gr_func_zbc gp102_gr_zbc;
243

244
#define gf100_gr_chan(p) container_of((p), struct gf100_gr_chan, object)
245
#include <core/object.h>
246

247
struct gf100_gr_chan {
248 249
	struct nvkm_object object;
	struct gf100_gr *gr;
250
	struct nvkm_vmm *vmm;
251

252
	struct nvkm_memory *mmio;
253
	struct nvkm_vma *mmio_vma;
254
	int mmio_nr;
255

256
	struct {
257
		struct nvkm_memory *mem;
258
		struct nvkm_vma *vma;
259 260 261
	} data[4];
};

B
Ben Skeggs 已提交
262
void gf100_gr_ctxctl_debug(struct gf100_gr *);
263

264
void gf100_gr_dtor_fw(struct gf100_gr_fuc *);
B
Ben Skeggs 已提交
265
int  gf100_gr_ctor_fw(struct gf100_gr *, const char *,
266
		      struct gf100_gr_fuc *);
267
u64  gf100_gr_units(struct nvkm_gr *);
B
Ben Skeggs 已提交
268
void gf100_gr_zbc_init(struct gf100_gr *);
269

270
extern const struct nvkm_object_func gf100_fermi;
271 272 273 274

struct gf100_gr_init {
	u32 addr;
	u8  count;
275
	u32 pitch;
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
	u32 data;
};

struct gf100_gr_pack {
	const struct gf100_gr_init *init;
	u32 type;
};

#define pack_for_each_init(init, pack, head)                                   \
	for (pack = head; pack && pack->init; pack++)                          \
		  for (init = pack->init; init && init->count; init++)

struct gf100_gr_ucode {
	struct gf100_gr_fuc code;
	struct gf100_gr_fuc data;
};

extern struct gf100_gr_ucode gf100_gr_fecs_ucode;
extern struct gf100_gr_ucode gf100_gr_gpccs_ucode;

extern struct gf100_gr_ucode gk110_gr_fecs_ucode;
extern struct gf100_gr_ucode gk110_gr_gpccs_ucode;

B
Ben Skeggs 已提交
299 300 301 302 303
int  gf100_gr_wait_idle(struct gf100_gr *);
void gf100_gr_mmio(struct gf100_gr *, const struct gf100_gr_pack *);
void gf100_gr_icmd(struct gf100_gr *, const struct gf100_gr_pack *);
void gf100_gr_mthd(struct gf100_gr *, const struct gf100_gr_pack *);
int  gf100_gr_init_ctxctl(struct gf100_gr *);
304

305 306 307 308 309 310 311 312
/* external bundles loading functions */
int gk20a_gr_av_to_init(struct gf100_gr *, const char *,
			struct gf100_gr_pack **);
int gk20a_gr_aiv_to_init(struct gf100_gr *, const char *,
			 struct gf100_gr_pack **);
int gk20a_gr_av_to_method(struct gf100_gr *, const char *,
			  struct gf100_gr_pack **);

313 314 315
int gm200_gr_new_(const struct gf100_gr_func *, struct nvkm_device *, int,
		  struct nvkm_gr **);

316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
/* register init value lists */

extern const struct gf100_gr_init gf100_gr_init_main_0[];
extern const struct gf100_gr_init gf100_gr_init_fe_0[];
extern const struct gf100_gr_init gf100_gr_init_pri_0[];
extern const struct gf100_gr_init gf100_gr_init_rstr2d_0[];
extern const struct gf100_gr_init gf100_gr_init_pd_0[];
extern const struct gf100_gr_init gf100_gr_init_ds_0[];
extern const struct gf100_gr_init gf100_gr_init_scc_0[];
extern const struct gf100_gr_init gf100_gr_init_prop_0[];
extern const struct gf100_gr_init gf100_gr_init_gpc_unk_0[];
extern const struct gf100_gr_init gf100_gr_init_setup_0[];
extern const struct gf100_gr_init gf100_gr_init_crstr_0[];
extern const struct gf100_gr_init gf100_gr_init_setup_1[];
extern const struct gf100_gr_init gf100_gr_init_zcull_0[];
extern const struct gf100_gr_init gf100_gr_init_gpm_0[];
extern const struct gf100_gr_init gf100_gr_init_gpc_unk_1[];
extern const struct gf100_gr_init gf100_gr_init_gcc_0[];
extern const struct gf100_gr_init gf100_gr_init_tpccs_0[];
extern const struct gf100_gr_init gf100_gr_init_tex_0[];
extern const struct gf100_gr_init gf100_gr_init_pe_0[];
extern const struct gf100_gr_init gf100_gr_init_l1c_0[];
extern const struct gf100_gr_init gf100_gr_init_wwdx_0[];
extern const struct gf100_gr_init gf100_gr_init_tpccs_1[];
extern const struct gf100_gr_init gf100_gr_init_mpc_0[];
extern const struct gf100_gr_init gf100_gr_init_be_0[];
extern const struct gf100_gr_init gf100_gr_init_fe_1[];
extern const struct gf100_gr_init gf100_gr_init_pe_1[];
344
void gf100_gr_init_gpc_mmu(struct gf100_gr *);
345
void gf100_gr_trap_mp(struct gf100_gr *, int, int);
346 347
extern const struct nvkm_bitfield gf100_mp_global_error[];
extern const struct nvkm_enum gf100_mp_warp_error[];
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369

extern const struct gf100_gr_init gf104_gr_init_ds_0[];
extern const struct gf100_gr_init gf104_gr_init_tex_0[];
extern const struct gf100_gr_init gf104_gr_init_sm_0[];

extern const struct gf100_gr_init gf108_gr_init_gpc_unk_0[];
extern const struct gf100_gr_init gf108_gr_init_setup_1[];

extern const struct gf100_gr_init gf119_gr_init_pd_0[];
extern const struct gf100_gr_init gf119_gr_init_ds_0[];
extern const struct gf100_gr_init gf119_gr_init_prop_0[];
extern const struct gf100_gr_init gf119_gr_init_gpm_0[];
extern const struct gf100_gr_init gf119_gr_init_gpc_unk_1[];
extern const struct gf100_gr_init gf119_gr_init_tex_0[];
extern const struct gf100_gr_init gf119_gr_init_sm_0[];
extern const struct gf100_gr_init gf119_gr_init_fe_1[];

extern const struct gf100_gr_init gf117_gr_init_pes_0[];
extern const struct gf100_gr_init gf117_gr_init_wwdx_0[];
extern const struct gf100_gr_init gf117_gr_init_cbm_0[];

extern const struct gf100_gr_init gk104_gr_init_main_0[];
370
extern const struct gf100_gr_init gk104_gr_init_gpc_unk_2[];
371 372 373 374 375 376 377 378 379 380 381 382 383 384
extern const struct gf100_gr_init gk104_gr_init_tpccs_0[];
extern const struct gf100_gr_init gk104_gr_init_pe_0[];
extern const struct gf100_gr_init gk104_gr_init_be_0[];
extern const struct gf100_gr_pack gk104_gr_pack_mmio[];

extern const struct gf100_gr_init gk110_gr_init_fe_0[];
extern const struct gf100_gr_init gk110_gr_init_ds_0[];
extern const struct gf100_gr_init gk110_gr_init_sked_0[];
extern const struct gf100_gr_init gk110_gr_init_cwd_0[];
extern const struct gf100_gr_init gk110_gr_init_gpc_unk_1[];
extern const struct gf100_gr_init gk110_gr_init_tex_0[];
extern const struct gf100_gr_init gk110_gr_init_sm_0[];

extern const struct gf100_gr_init gk208_gr_init_gpc_unk_0[];
385 386 387 388 389 390 391 392 393 394

extern const struct gf100_gr_init gm107_gr_init_scc_0[];
extern const struct gf100_gr_init gm107_gr_init_prop_0[];
extern const struct gf100_gr_init gm107_gr_init_setup_1[];
extern const struct gf100_gr_init gm107_gr_init_zcull_0[];
extern const struct gf100_gr_init gm107_gr_init_gpc_unk_1[];
extern const struct gf100_gr_init gm107_gr_init_tex_0[];
extern const struct gf100_gr_init gm107_gr_init_l1c_0[];
extern const struct gf100_gr_init gm107_gr_init_wwdx_0[];
extern const struct gf100_gr_init gm107_gr_init_cbm_0[];
B
Ben Skeggs 已提交
395
void gm107_gr_init_bios(struct gf100_gr *);
396 397

void gm200_gr_init_gpc_mmu(struct gf100_gr *);
398
#endif