gf100.c 57.3 KB
Newer Older
1
/*
2
 * Copyright 2012 Red Hat Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * 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 26 27 28 29
#include "gf100.h"
#include "ctxgf100.h"
#include "fuc/os.h"

#include <core/client.h>
#include <core/option.h>
30
#include <core/firmware.h>
31
#include <subdev/secboot.h>
32 33
#include <subdev/fb.h>
#include <subdev/mc.h>
34
#include <subdev/pmu.h>
35
#include <subdev/therm.h>
36
#include <subdev/timer.h>
37
#include <engine/fifo.h>
38 39

#include <nvif/class.h>
40
#include <nvif/cl9097.h>
41
#include <nvif/if900d.h>
42
#include <nvif/unpack.h>
43

44 45 46 47 48
/*******************************************************************************
 * Zero Bandwidth Clear
 ******************************************************************************/

static void
B
Ben Skeggs 已提交
49
gf100_gr_zbc_clear_color(struct gf100_gr *gr, int zbc)
50
{
51
	struct nvkm_device *device = gr->base.engine.subdev.device;
B
Ben Skeggs 已提交
52
	if (gr->zbc_color[zbc].format) {
53 54 55 56 57 58 59 60
		nvkm_wr32(device, 0x405804, gr->zbc_color[zbc].ds[0]);
		nvkm_wr32(device, 0x405808, gr->zbc_color[zbc].ds[1]);
		nvkm_wr32(device, 0x40580c, gr->zbc_color[zbc].ds[2]);
		nvkm_wr32(device, 0x405810, gr->zbc_color[zbc].ds[3]);
	}
	nvkm_wr32(device, 0x405814, gr->zbc_color[zbc].format);
	nvkm_wr32(device, 0x405820, zbc);
	nvkm_wr32(device, 0x405824, 0x00000004); /* TRIGGER | WRITE | COLOR */
61 62 63
}

static int
B
Ben Skeggs 已提交
64
gf100_gr_zbc_color_get(struct gf100_gr *gr, int format,
65
		       const u32 ds[4], const u32 l2[4])
66
{
67
	struct nvkm_ltc *ltc = gr->base.engine.subdev.device->ltc;
68 69 70
	int zbc = -ENOSPC, i;

	for (i = ltc->zbc_min; i <= ltc->zbc_max; i++) {
B
Ben Skeggs 已提交
71 72
		if (gr->zbc_color[i].format) {
			if (gr->zbc_color[i].format != format)
73
				continue;
B
Ben Skeggs 已提交
74 75
			if (memcmp(gr->zbc_color[i].ds, ds, sizeof(
				   gr->zbc_color[i].ds)))
76
				continue;
B
Ben Skeggs 已提交
77 78
			if (memcmp(gr->zbc_color[i].l2, l2, sizeof(
				   gr->zbc_color[i].l2))) {
79 80 81 82 83 84 85 86 87
				WARN_ON(1);
				return -EINVAL;
			}
			return i;
		} else {
			zbc = (zbc < 0) ? i : zbc;
		}
	}

88 89 90
	if (zbc < 0)
		return zbc;

B
Ben Skeggs 已提交
91 92 93
	memcpy(gr->zbc_color[zbc].ds, ds, sizeof(gr->zbc_color[zbc].ds));
	memcpy(gr->zbc_color[zbc].l2, l2, sizeof(gr->zbc_color[zbc].l2));
	gr->zbc_color[zbc].format = format;
94
	nvkm_ltc_zbc_color_get(ltc, zbc, l2);
B
Ben Skeggs 已提交
95
	gf100_gr_zbc_clear_color(gr, zbc);
96 97 98 99
	return zbc;
}

static void
B
Ben Skeggs 已提交
100
gf100_gr_zbc_clear_depth(struct gf100_gr *gr, int zbc)
101
{
102
	struct nvkm_device *device = gr->base.engine.subdev.device;
B
Ben Skeggs 已提交
103
	if (gr->zbc_depth[zbc].format)
104 105 106 107
		nvkm_wr32(device, 0x405818, gr->zbc_depth[zbc].ds);
	nvkm_wr32(device, 0x40581c, gr->zbc_depth[zbc].format);
	nvkm_wr32(device, 0x405820, zbc);
	nvkm_wr32(device, 0x405824, 0x00000005); /* TRIGGER | WRITE | DEPTH */
108 109 110
}

static int
B
Ben Skeggs 已提交
111
gf100_gr_zbc_depth_get(struct gf100_gr *gr, int format,
112
		       const u32 ds, const u32 l2)
113
{
114
	struct nvkm_ltc *ltc = gr->base.engine.subdev.device->ltc;
115 116 117
	int zbc = -ENOSPC, i;

	for (i = ltc->zbc_min; i <= ltc->zbc_max; i++) {
B
Ben Skeggs 已提交
118 119
		if (gr->zbc_depth[i].format) {
			if (gr->zbc_depth[i].format != format)
120
				continue;
B
Ben Skeggs 已提交
121
			if (gr->zbc_depth[i].ds != ds)
122
				continue;
B
Ben Skeggs 已提交
123
			if (gr->zbc_depth[i].l2 != l2) {
124 125 126 127 128 129 130 131 132
				WARN_ON(1);
				return -EINVAL;
			}
			return i;
		} else {
			zbc = (zbc < 0) ? i : zbc;
		}
	}

133 134 135
	if (zbc < 0)
		return zbc;

B
Ben Skeggs 已提交
136 137 138
	gr->zbc_depth[zbc].format = format;
	gr->zbc_depth[zbc].ds = ds;
	gr->zbc_depth[zbc].l2 = l2;
139
	nvkm_ltc_zbc_depth_get(ltc, zbc, l2);
B
Ben Skeggs 已提交
140
	gf100_gr_zbc_clear_depth(gr, zbc);
141 142 143
	return zbc;
}

144 145 146
/*******************************************************************************
 * Graphics object classes
 ******************************************************************************/
147 148 149 150 151 152
#define gf100_gr_object(p) container_of((p), struct gf100_gr_object, object)

struct gf100_gr_object {
	struct nvkm_object object;
	struct gf100_gr_chan *chan;
};
153

154
static int
155
gf100_fermi_mthd_zbc_color(struct nvkm_object *object, void *data, u32 size)
156
{
157
	struct gf100_gr *gr = gf100_gr(nvkm_gr(object->engine));
158 159 160
	union {
		struct fermi_a_zbc_color_v0 v0;
	} *args = data;
161
	int ret = -ENOSYS;
162

163
	if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) {
164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183
		switch (args->v0.format) {
		case FERMI_A_ZBC_COLOR_V0_FMT_ZERO:
		case FERMI_A_ZBC_COLOR_V0_FMT_UNORM_ONE:
		case FERMI_A_ZBC_COLOR_V0_FMT_RF32_GF32_BF32_AF32:
		case FERMI_A_ZBC_COLOR_V0_FMT_R16_G16_B16_A16:
		case FERMI_A_ZBC_COLOR_V0_FMT_RN16_GN16_BN16_AN16:
		case FERMI_A_ZBC_COLOR_V0_FMT_RS16_GS16_BS16_AS16:
		case FERMI_A_ZBC_COLOR_V0_FMT_RU16_GU16_BU16_AU16:
		case FERMI_A_ZBC_COLOR_V0_FMT_RF16_GF16_BF16_AF16:
		case FERMI_A_ZBC_COLOR_V0_FMT_A8R8G8B8:
		case FERMI_A_ZBC_COLOR_V0_FMT_A8RL8GL8BL8:
		case FERMI_A_ZBC_COLOR_V0_FMT_A2B10G10R10:
		case FERMI_A_ZBC_COLOR_V0_FMT_AU2BU10GU10RU10:
		case FERMI_A_ZBC_COLOR_V0_FMT_A8B8G8R8:
		case FERMI_A_ZBC_COLOR_V0_FMT_A8BL8GL8RL8:
		case FERMI_A_ZBC_COLOR_V0_FMT_AN8BN8GN8RN8:
		case FERMI_A_ZBC_COLOR_V0_FMT_AS8BS8GS8RS8:
		case FERMI_A_ZBC_COLOR_V0_FMT_AU8BU8GU8RU8:
		case FERMI_A_ZBC_COLOR_V0_FMT_A2R10G10B10:
		case FERMI_A_ZBC_COLOR_V0_FMT_BF10GF11RF11:
B
Ben Skeggs 已提交
184
			ret = gf100_gr_zbc_color_get(gr, args->v0.format,
185 186
							   args->v0.ds,
							   args->v0.l2);
187 188 189 190 191 192 193 194 195 196 197 198 199 200
			if (ret >= 0) {
				args->v0.index = ret;
				return 0;
			}
			break;
		default:
			return -EINVAL;
		}
	}

	return ret;
}

static int
201
gf100_fermi_mthd_zbc_depth(struct nvkm_object *object, void *data, u32 size)
202
{
203
	struct gf100_gr *gr = gf100_gr(nvkm_gr(object->engine));
204 205 206
	union {
		struct fermi_a_zbc_depth_v0 v0;
	} *args = data;
207
	int ret = -ENOSYS;
208

209
	if (!(ret = nvif_unpack(ret, &data, &size, args->v0, 0, 0, false))) {
210 211
		switch (args->v0.format) {
		case FERMI_A_ZBC_DEPTH_V0_FMT_FP32:
B
Ben Skeggs 已提交
212
			ret = gf100_gr_zbc_depth_get(gr, args->v0.format,
213 214
							   args->v0.ds,
							   args->v0.l2);
215 216 217 218 219 220 221 222 223 224
			return (ret >= 0) ? 0 : -ENOSPC;
		default:
			return -EINVAL;
		}
	}

	return ret;
}

static int
225
gf100_fermi_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size)
226
{
227
	nvif_ioctl(object, "fermi mthd %08x\n", mthd);
228 229
	switch (mthd) {
	case FERMI_A_ZBC_COLOR:
230
		return gf100_fermi_mthd_zbc_color(object, data, size);
231
	case FERMI_A_ZBC_DEPTH:
232
		return gf100_fermi_mthd_zbc_depth(object, data, size);
233 234 235 236 237 238
	default:
		break;
	}
	return -EINVAL;
}

239 240
const struct nvkm_object_func
gf100_fermi = {
241
	.mthd = gf100_fermi_mthd,
242 243
};

244 245
static void
gf100_gr_mthd_set_shader_exceptions(struct nvkm_device *device, u32 data)
246
{
247 248
	nvkm_wr32(device, 0x419e44, data ? 0xffffffff : 0x00000000);
	nvkm_wr32(device, 0x419e4c, data ? 0xffffffff : 0x00000000);
249 250
}

251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
static bool
gf100_gr_mthd_sw(struct nvkm_device *device, u16 class, u32 mthd, u32 data)
{
	switch (class & 0x00ff) {
	case 0x97:
	case 0xc0:
		switch (mthd) {
		case 0x1528:
			gf100_gr_mthd_set_shader_exceptions(device, data);
			return true;
		default:
			break;
		}
		break;
	default:
		break;
	}
	return false;
}
270

271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
static const struct nvkm_object_func
gf100_gr_object_func = {
};

static int
gf100_gr_object_new(const struct nvkm_oclass *oclass, void *data, u32 size,
		    struct nvkm_object **pobject)
{
	struct gf100_gr_chan *chan = gf100_gr_chan(oclass->parent);
	struct gf100_gr_object *object;

	if (!(object = kzalloc(sizeof(*object), GFP_KERNEL)))
		return -ENOMEM;
	*pobject = &object->object;

	nvkm_object_ctor(oclass->base.func ? oclass->base.func :
			 &gf100_gr_object_func, oclass, &object->object);
	object->chan = chan;
	return 0;
}

292 293 294 295 296 297 298 299 300
static int
gf100_gr_object_get(struct nvkm_gr *base, int index, struct nvkm_sclass *sclass)
{
	struct gf100_gr *gr = gf100_gr(base);
	int c = 0;

	while (gr->func->sclass[c].oclass) {
		if (c++ == index) {
			*sclass = gr->func->sclass[index];
301
			sclass->ctor = gf100_gr_object_new;
302 303 304 305 306 307
			return index;
		}
	}

	return c;
}
308 309 310 311

/*******************************************************************************
 * PGRAPH context
 ******************************************************************************/
312

313 314 315
static int
gf100_gr_chan_bind(struct nvkm_object *object, struct nvkm_gpuobj *parent,
		   int align, struct nvkm_gpuobj **pgpuobj)
316
{
317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
	struct gf100_gr_chan *chan = gf100_gr_chan(object);
	struct gf100_gr *gr = chan->gr;
	int ret, i;

	ret = nvkm_gpuobj_new(gr->base.engine.subdev.device, gr->size,
			      align, false, parent, pgpuobj);
	if (ret)
		return ret;

	nvkm_kmap(*pgpuobj);
	for (i = 0; i < gr->size; i += 4)
		nvkm_wo32(*pgpuobj, i, gr->data[i / 4]);

	if (!gr->firmware) {
		nvkm_wo32(*pgpuobj, 0x00, chan->mmio_nr / 2);
332
		nvkm_wo32(*pgpuobj, 0x04, chan->mmio_vma->addr >> 8);
333 334 335 336
	} else {
		nvkm_wo32(*pgpuobj, 0xf4, 0);
		nvkm_wo32(*pgpuobj, 0xf8, 0);
		nvkm_wo32(*pgpuobj, 0x10, chan->mmio_nr / 2);
337 338
		nvkm_wo32(*pgpuobj, 0x14, lower_32_bits(chan->mmio_vma->addr));
		nvkm_wo32(*pgpuobj, 0x18, upper_32_bits(chan->mmio_vma->addr));
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
		nvkm_wo32(*pgpuobj, 0x1c, 1);
		nvkm_wo32(*pgpuobj, 0x20, 0);
		nvkm_wo32(*pgpuobj, 0x28, 0);
		nvkm_wo32(*pgpuobj, 0x2c, 0);
	}
	nvkm_done(*pgpuobj);
	return 0;
}

static void *
gf100_gr_chan_dtor(struct nvkm_object *object)
{
	struct gf100_gr_chan *chan = gf100_gr_chan(object);
	int i;

	for (i = 0; i < ARRAY_SIZE(chan->data); i++) {
355
		nvkm_vmm_put(chan->vmm, &chan->data[i].vma);
356
		nvkm_memory_unref(&chan->data[i].mem);
357 358
	}

359
	nvkm_vmm_put(chan->vmm, &chan->mmio_vma);
360
	nvkm_memory_unref(&chan->mmio);
361
	nvkm_vmm_unref(&chan->vmm);
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
	return chan;
}

static const struct nvkm_object_func
gf100_gr_chan = {
	.dtor = gf100_gr_chan_dtor,
	.bind = gf100_gr_chan_bind,
};

static int
gf100_gr_chan_new(struct nvkm_gr *base, struct nvkm_fifo_chan *fifoch,
		  const struct nvkm_oclass *oclass,
		  struct nvkm_object **pobject)
{
	struct gf100_gr *gr = gf100_gr(base);
B
Ben Skeggs 已提交
377 378
	struct gf100_gr_data *data = gr->mmio_data;
	struct gf100_gr_mmio *mmio = gr->mmio_list;
379
	struct gf100_gr_chan *chan;
380
	struct gf100_vmm_map_v0 args = { .priv = 1 };
381
	struct nvkm_device *device = gr->base.engine.subdev.device;
382 383
	int ret, i;

384 385 386 387
	if (!(chan = kzalloc(sizeof(*chan), GFP_KERNEL)))
		return -ENOMEM;
	nvkm_object_ctor(&gf100_gr_chan, oclass, &chan->object);
	chan->gr = gr;
388
	chan->vmm = nvkm_vmm_ref(fifoch->vmm);
389
	*pobject = &chan->object;
390

391 392 393 394
	/* allocate memory for a "mmio list" buffer that's used by the HUB
	 * fuc to modify some per-context register settings on first load
	 * of the context.
	 */
395 396
	ret = nvkm_memory_new(device, NVKM_MEM_TARGET_INST, 0x1000, 0x100,
			      false, &chan->mmio);
397 398 399
	if (ret)
		return ret;

400
	ret = nvkm_vmm_get(fifoch->vmm, 12, 0x1000, &chan->mmio_vma);
401 402 403
	if (ret)
		return ret;

404
	ret = nvkm_memory_map(chan->mmio, 0, fifoch->vmm,
405
			      chan->mmio_vma, &args, sizeof(args));
406 407
	if (ret)
		return ret;
408

409
	/* allocate buffers referenced by mmio list */
B
Ben Skeggs 已提交
410
	for (i = 0; data->size && i < ARRAY_SIZE(gr->mmio_data); i++) {
411 412 413
		ret = nvkm_memory_new(device, NVKM_MEM_TARGET_INST,
				      data->size, data->align, false,
				      &chan->data[i].mem);
414 415
		if (ret)
			return ret;
416

417 418 419
		ret = nvkm_vmm_get(fifoch->vmm, 12,
				   nvkm_memory_size(chan->data[i].mem),
				   &chan->data[i].vma);
420 421
		if (ret)
			return ret;
422

423 424 425 426
		args.priv = data->priv;

		ret = nvkm_memory_map(chan->data[i].mem, 0, chan->vmm,
				      chan->data[i].vma, &args, sizeof(args));
427 428 429
		if (ret)
			return ret;

430
		data++;
431 432
	}

433
	/* finally, fill in the mmio list and point the context at it */
434
	nvkm_kmap(chan->mmio);
B
Ben Skeggs 已提交
435
	for (i = 0; mmio->addr && i < ARRAY_SIZE(gr->mmio_list); i++) {
436 437
		u32 addr = mmio->addr;
		u32 data = mmio->data;
438

439
		if (mmio->buffer >= 0) {
440
			u64 info = chan->data[mmio->buffer].vma->addr;
441 442
			data |= info >> mmio->shift;
		}
443

444 445
		nvkm_wo32(chan->mmio, chan->mmio_nr++ * 4, addr);
		nvkm_wo32(chan->mmio, chan->mmio_nr++ * 4, data);
446 447
		mmio++;
	}
448
	nvkm_done(chan->mmio);
449
	return 0;
450 451
}

452
/*******************************************************************************
453
 * PGRAPH register lists
454 455
 ******************************************************************************/

456 457
const struct gf100_gr_init
gf100_gr_init_main_0[] = {
458 459 460 461 462 463 464 465 466 467 468 469 470 471
	{ 0x400080,   1, 0x04, 0x003083c2 },
	{ 0x400088,   1, 0x04, 0x00006fe7 },
	{ 0x40008c,   1, 0x04, 0x00000000 },
	{ 0x400090,   1, 0x04, 0x00000030 },
	{ 0x40013c,   1, 0x04, 0x013901f7 },
	{ 0x400140,   1, 0x04, 0x00000100 },
	{ 0x400144,   1, 0x04, 0x00000000 },
	{ 0x400148,   1, 0x04, 0x00000110 },
	{ 0x400138,   1, 0x04, 0x00000000 },
	{ 0x400130,   2, 0x04, 0x00000000 },
	{ 0x400124,   1, 0x04, 0x00000002 },
	{}
};

472 473
const struct gf100_gr_init
gf100_gr_init_fe_0[] = {
474 475 476 477 478
	{ 0x40415c,   1, 0x04, 0x00000000 },
	{ 0x404170,   1, 0x04, 0x00000000 },
	{}
};

479 480
const struct gf100_gr_init
gf100_gr_init_pri_0[] = {
481 482 483 484
	{ 0x404488,   2, 0x04, 0x00000000 },
	{}
};

485 486
const struct gf100_gr_init
gf100_gr_init_rstr2d_0[] = {
487 488 489 490
	{ 0x407808,   1, 0x04, 0x00000000 },
	{}
};

491 492
const struct gf100_gr_init
gf100_gr_init_pd_0[] = {
493 494 495 496
	{ 0x406024,   1, 0x04, 0x00000000 },
	{}
};

497 498
const struct gf100_gr_init
gf100_gr_init_ds_0[] = {
499 500 501 502 503 504
	{ 0x405844,   1, 0x04, 0x00ffffff },
	{ 0x405850,   1, 0x04, 0x00000000 },
	{ 0x405908,   1, 0x04, 0x00000000 },
	{}
};

505 506
const struct gf100_gr_init
gf100_gr_init_scc_0[] = {
507 508 509 510
	{ 0x40803c,   1, 0x04, 0x00000000 },
	{}
};

511 512
const struct gf100_gr_init
gf100_gr_init_prop_0[] = {
513
	{ 0x4184a0,   1, 0x04, 0x00000000 },
514 515 516
	{}
};

517 518
const struct gf100_gr_init
gf100_gr_init_gpc_unk_0[] = {
519 520 521 522
	{ 0x418604,   1, 0x04, 0x00000000 },
	{ 0x418680,   1, 0x04, 0x00000000 },
	{ 0x418714,   1, 0x04, 0x80000000 },
	{ 0x418384,   1, 0x04, 0x00000000 },
523 524 525
	{}
};

526 527
const struct gf100_gr_init
gf100_gr_init_setup_0[] = {
528
	{ 0x418814,   3, 0x04, 0x00000000 },
529 530 531
	{}
};

532 533
const struct gf100_gr_init
gf100_gr_init_crstr_0[] = {
534
	{ 0x418b04,   1, 0x04, 0x00000000 },
535 536 537
	{}
};

538 539
const struct gf100_gr_init
gf100_gr_init_setup_1[] = {
540 541 542 543
	{ 0x4188c8,   1, 0x04, 0x80000000 },
	{ 0x4188cc,   1, 0x04, 0x00000000 },
	{ 0x4188d0,   1, 0x04, 0x00010000 },
	{ 0x4188d4,   1, 0x04, 0x00000001 },
544 545 546
	{}
};

547 548
const struct gf100_gr_init
gf100_gr_init_zcull_0[] = {
549 550 551 552 553
	{ 0x418910,   1, 0x04, 0x00010001 },
	{ 0x418914,   1, 0x04, 0x00000301 },
	{ 0x418918,   1, 0x04, 0x00800000 },
	{ 0x418980,   1, 0x04, 0x77777770 },
	{ 0x418984,   3, 0x04, 0x77777777 },
554 555 556
	{}
};

557 558
const struct gf100_gr_init
gf100_gr_init_gpm_0[] = {
559 560
	{ 0x418c04,   1, 0x04, 0x00000000 },
	{ 0x418c88,   1, 0x04, 0x00000000 },
561 562 563
	{}
};

564 565
const struct gf100_gr_init
gf100_gr_init_gpc_unk_1[] = {
566 567 568 569
	{ 0x418d00,   1, 0x04, 0x00000000 },
	{ 0x418f08,   1, 0x04, 0x00000000 },
	{ 0x418e00,   1, 0x04, 0x00000050 },
	{ 0x418e08,   1, 0x04, 0x00000000 },
570 571 572
	{}
};

573 574
const struct gf100_gr_init
gf100_gr_init_gcc_0[] = {
575 576 577 578 579
	{ 0x41900c,   1, 0x04, 0x00000000 },
	{ 0x419018,   1, 0x04, 0x00000000 },
	{}
};

580 581
const struct gf100_gr_init
gf100_gr_init_tpccs_0[] = {
582 583
	{ 0x419d08,   2, 0x04, 0x00000000 },
	{ 0x419d10,   1, 0x04, 0x00000014 },
584 585 586
	{}
};

587 588
const struct gf100_gr_init
gf100_gr_init_tex_0[] = {
589 590 591
	{ 0x419ab0,   1, 0x04, 0x00000000 },
	{ 0x419ab8,   1, 0x04, 0x000000e7 },
	{ 0x419abc,   2, 0x04, 0x00000000 },
592 593 594
	{}
};

595 596
const struct gf100_gr_init
gf100_gr_init_pe_0[] = {
597 598 599 600
	{ 0x41980c,   3, 0x04, 0x00000000 },
	{ 0x419844,   1, 0x04, 0x00000000 },
	{ 0x41984c,   1, 0x04, 0x00005bc5 },
	{ 0x419850,   4, 0x04, 0x00000000 },
601 602 603
	{}
};

604 605
const struct gf100_gr_init
gf100_gr_init_l1c_0[] = {
606 607 608 609 610 611
	{ 0x419c98,   1, 0x04, 0x00000000 },
	{ 0x419ca8,   1, 0x04, 0x80000000 },
	{ 0x419cb4,   1, 0x04, 0x00000000 },
	{ 0x419cb8,   1, 0x04, 0x00008bf4 },
	{ 0x419cbc,   1, 0x04, 0x28137606 },
	{ 0x419cc0,   2, 0x04, 0x00000000 },
612 613 614
	{}
};

615 616
const struct gf100_gr_init
gf100_gr_init_wwdx_0[] = {
617 618
	{ 0x419bd4,   1, 0x04, 0x00800000 },
	{ 0x419bdc,   1, 0x04, 0x00000000 },
619 620 621
	{}
};

622 623
const struct gf100_gr_init
gf100_gr_init_tpccs_1[] = {
624
	{ 0x419d2c,   1, 0x04, 0x00000000 },
625 626 627
	{}
};

628 629
const struct gf100_gr_init
gf100_gr_init_mpc_0[] = {
630
	{ 0x419c0c,   1, 0x04, 0x00000000 },
631 632 633
	{}
};

634 635
static const struct gf100_gr_init
gf100_gr_init_sm_0[] = {
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
	{ 0x419e00,   1, 0x04, 0x00000000 },
	{ 0x419ea0,   1, 0x04, 0x00000000 },
	{ 0x419ea4,   1, 0x04, 0x00000100 },
	{ 0x419ea8,   1, 0x04, 0x00001100 },
	{ 0x419eac,   1, 0x04, 0x11100702 },
	{ 0x419eb0,   1, 0x04, 0x00000003 },
	{ 0x419eb4,   4, 0x04, 0x00000000 },
	{ 0x419ec8,   1, 0x04, 0x06060618 },
	{ 0x419ed0,   1, 0x04, 0x0eff0e38 },
	{ 0x419ed4,   1, 0x04, 0x011104f1 },
	{ 0x419edc,   1, 0x04, 0x00000000 },
	{ 0x419f00,   1, 0x04, 0x00000000 },
	{ 0x419f2c,   1, 0x04, 0x00000000 },
	{}
};

652 653
const struct gf100_gr_init
gf100_gr_init_be_0[] = {
654 655 656 657 658 659 660 661 662 663
	{ 0x40880c,   1, 0x04, 0x00000000 },
	{ 0x408910,   9, 0x04, 0x00000000 },
	{ 0x408950,   1, 0x04, 0x00000000 },
	{ 0x408954,   1, 0x04, 0x0000ffff },
	{ 0x408984,   1, 0x04, 0x00000000 },
	{ 0x408988,   1, 0x04, 0x08040201 },
	{ 0x40898c,   1, 0x04, 0x80402010 },
	{}
};

664 665
const struct gf100_gr_init
gf100_gr_init_fe_1[] = {
666 667 668 669
	{ 0x4040f0,   1, 0x04, 0x00000000 },
	{}
};

670 671
const struct gf100_gr_init
gf100_gr_init_pe_1[] = {
672 673 674 675
	{ 0x419880,   1, 0x04, 0x00000002 },
	{}
};

676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
static const struct gf100_gr_pack
gf100_gr_pack_mmio[] = {
	{ gf100_gr_init_main_0 },
	{ gf100_gr_init_fe_0 },
	{ gf100_gr_init_pri_0 },
	{ gf100_gr_init_rstr2d_0 },
	{ gf100_gr_init_pd_0 },
	{ gf100_gr_init_ds_0 },
	{ gf100_gr_init_scc_0 },
	{ gf100_gr_init_prop_0 },
	{ gf100_gr_init_gpc_unk_0 },
	{ gf100_gr_init_setup_0 },
	{ gf100_gr_init_crstr_0 },
	{ gf100_gr_init_setup_1 },
	{ gf100_gr_init_zcull_0 },
	{ gf100_gr_init_gpm_0 },
	{ gf100_gr_init_gpc_unk_1 },
	{ gf100_gr_init_gcc_0 },
	{ gf100_gr_init_tpccs_0 },
	{ gf100_gr_init_tex_0 },
	{ gf100_gr_init_pe_0 },
	{ gf100_gr_init_l1c_0 },
	{ gf100_gr_init_wwdx_0 },
	{ gf100_gr_init_tpccs_1 },
	{ gf100_gr_init_mpc_0 },
	{ gf100_gr_init_sm_0 },
	{ gf100_gr_init_be_0 },
	{ gf100_gr_init_fe_1 },
	{ gf100_gr_init_pe_1 },
M
Maarten Lankhorst 已提交
705 706 707
	{}
};

708 709 710 711
/*******************************************************************************
 * PGRAPH engine/subdev functions
 ******************************************************************************/

712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
static bool
gf100_gr_chsw_load(struct nvkm_gr *base)
{
	struct gf100_gr *gr = gf100_gr(base);
	if (!gr->firmware) {
		u32 trace = nvkm_rd32(gr->base.engine.subdev.device, 0x40981c);
		if (trace & 0x00000040)
			return true;
	} else {
		u32 mthd = nvkm_rd32(gr->base.engine.subdev.device, 0x409808);
		if (mthd & 0x00080000)
			return true;
	}
	return false;
}

728 729 730 731 732 733 734
int
gf100_gr_rops(struct gf100_gr *gr)
{
	struct nvkm_device *device = gr->base.engine.subdev.device;
	return (nvkm_rd32(device, 0x409604) & 0x001f0000) >> 16;
}

735
void
B
Ben Skeggs 已提交
736
gf100_gr_zbc_init(struct gf100_gr *gr)
737 738 739 740 741 742 743 744 745
{
	const u32  zero[] = { 0x00000000, 0x00000000, 0x00000000, 0x00000000,
			      0x00000000, 0x00000000, 0x00000000, 0x00000000 };
	const u32   one[] = { 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000,
			      0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff };
	const u32 f32_0[] = { 0x00000000, 0x00000000, 0x00000000, 0x00000000,
			      0x00000000, 0x00000000, 0x00000000, 0x00000000 };
	const u32 f32_1[] = { 0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000,
			      0x3f800000, 0x3f800000, 0x3f800000, 0x3f800000 };
746
	struct nvkm_ltc *ltc = gr->base.engine.subdev.device->ltc;
747 748
	int index;

B
Ben Skeggs 已提交
749 750 751 752 753 754 755
	if (!gr->zbc_color[0].format) {
		gf100_gr_zbc_color_get(gr, 1,  & zero[0],   &zero[4]);
		gf100_gr_zbc_color_get(gr, 2,  &  one[0],    &one[4]);
		gf100_gr_zbc_color_get(gr, 4,  &f32_0[0],  &f32_0[4]);
		gf100_gr_zbc_color_get(gr, 4,  &f32_1[0],  &f32_1[4]);
		gf100_gr_zbc_depth_get(gr, 1, 0x00000000, 0x00000000);
		gf100_gr_zbc_depth_get(gr, 1, 0x3f800000, 0x3f800000);
756 757 758
	}

	for (index = ltc->zbc_min; index <= ltc->zbc_max; index++)
B
Ben Skeggs 已提交
759
		gf100_gr_zbc_clear_color(gr, index);
760
	for (index = ltc->zbc_min; index <= ltc->zbc_max; index++)
B
Ben Skeggs 已提交
761
		gf100_gr_zbc_clear_depth(gr, index);
762 763
}

764 765 766 767 768 769
/**
 * Wait until GR goes idle. GR is considered idle if it is disabled by the
 * MC (0x200) register, or GR is not busy and a context switch is not in
 * progress.
 */
int
B
Ben Skeggs 已提交
770
gf100_gr_wait_idle(struct gf100_gr *gr)
771
{
772 773
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
774 775 776 777 778 779 780 781
	unsigned long end_jiffies = jiffies + msecs_to_jiffies(2000);
	bool gr_enabled, ctxsw_active, gr_busy;

	do {
		/*
		 * required to make sure FIFO_ENGINE_STATUS (0x2640) is
		 * up-to-date
		 */
782
		nvkm_rd32(device, 0x400700);
783

784 785 786
		gr_enabled = nvkm_rd32(device, 0x200) & 0x1000;
		ctxsw_active = nvkm_rd32(device, 0x2640) & 0x8000;
		gr_busy = nvkm_rd32(device, 0x40060c) & 0x1;
787 788 789 790 791

		if (!gr_enabled || (!gr_busy && !ctxsw_active))
			return 0;
	} while (time_before(jiffies, end_jiffies));

792 793 794
	nvkm_error(subdev,
		   "wait for idle timeout (en: %d, ctxsw: %d, busy: %d)\n",
		   gr_enabled, ctxsw_active, gr_busy);
795 796 797
	return -EAGAIN;
}

798
void
B
Ben Skeggs 已提交
799
gf100_gr_mmio(struct gf100_gr *gr, const struct gf100_gr_pack *p)
800
{
801
	struct nvkm_device *device = gr->base.engine.subdev.device;
802 803
	const struct gf100_gr_pack *pack;
	const struct gf100_gr_init *init;
804 805 806 807 808

	pack_for_each_init(init, pack, p) {
		u32 next = init->addr + init->count * init->pitch;
		u32 addr = init->addr;
		while (addr < next) {
809
			nvkm_wr32(device, addr, init->data);
810 811 812
			addr += init->pitch;
		}
	}
813 814 815
}

void
B
Ben Skeggs 已提交
816
gf100_gr_icmd(struct gf100_gr *gr, const struct gf100_gr_pack *p)
817
{
818
	struct nvkm_device *device = gr->base.engine.subdev.device;
819 820
	const struct gf100_gr_pack *pack;
	const struct gf100_gr_init *init;
821
	u32 data = 0;
822

823
	nvkm_wr32(device, 0x400208, 0x80000000);
824 825 826 827 828 829

	pack_for_each_init(init, pack, p) {
		u32 next = init->addr + init->count * init->pitch;
		u32 addr = init->addr;

		if ((pack == p && init == p->init) || data != init->data) {
830
			nvkm_wr32(device, 0x400204, init->data);
831 832
			data = init->data;
		}
833

834
		while (addr < next) {
835
			nvkm_wr32(device, 0x400200, addr);
836 837 838 839 840
			/**
			 * Wait for GR to go idle after submitting a
			 * GO_IDLE bundle
			 */
			if ((addr & 0xffff) == 0xe100)
B
Ben Skeggs 已提交
841
				gf100_gr_wait_idle(gr);
842 843 844 845
			nvkm_msec(device, 2000,
				if (!(nvkm_rd32(device, 0x400700) & 0x00000004))
					break;
			);
846 847 848
			addr += init->pitch;
		}
	}
849

850
	nvkm_wr32(device, 0x400208, 0x00000000);
851 852 853
}

void
B
Ben Skeggs 已提交
854
gf100_gr_mthd(struct gf100_gr *gr, const struct gf100_gr_pack *p)
855
{
856
	struct nvkm_device *device = gr->base.engine.subdev.device;
857 858
	const struct gf100_gr_pack *pack;
	const struct gf100_gr_init *init;
859
	u32 data = 0;
860

861 862 863 864 865 866
	pack_for_each_init(init, pack, p) {
		u32 ctrl = 0x80000000 | pack->type;
		u32 next = init->addr + init->count * init->pitch;
		u32 addr = init->addr;

		if ((pack == p && init == p->init) || data != init->data) {
867
			nvkm_wr32(device, 0x40448c, init->data);
868 869 870 871
			data = init->data;
		}

		while (addr < next) {
872
			nvkm_wr32(device, 0x404488, ctrl | (addr << 14));
873
			addr += init->pitch;
874 875 876 877 878
		}
	}
}

u64
879
gf100_gr_units(struct nvkm_gr *base)
880
{
881
	struct gf100_gr *gr = gf100_gr(base);
882 883
	u64 cfg;

B
Ben Skeggs 已提交
884 885 886
	cfg  = (u32)gr->gpc_nr;
	cfg |= (u32)gr->tpc_total << 8;
	cfg |= (u64)gr->rop_nr << 32;
887 888

	return cfg;
889 890
}

891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923
static const struct nvkm_bitfield gf100_dispatch_error[] = {
	{ 0x00000001, "INJECTED_BUNDLE_ERROR" },
	{ 0x00000002, "CLASS_SUBCH_MISMATCH" },
	{ 0x00000004, "SUBCHSW_DURING_NOTIFY" },
	{}
};

static const struct nvkm_bitfield gf100_m2mf_error[] = {
	{ 0x00000001, "PUSH_TOO_MUCH_DATA" },
	{ 0x00000002, "PUSH_NOT_ENOUGH_DATA" },
	{}
};

static const struct nvkm_bitfield gf100_unk6_error[] = {
	{ 0x00000001, "TEMP_TOO_SMALL" },
	{}
};

static const struct nvkm_bitfield gf100_ccache_error[] = {
	{ 0x00000001, "INTR" },
	{ 0x00000002, "LDCONST_OOB" },
	{}
};

static const struct nvkm_bitfield gf100_macro_error[] = {
	{ 0x00000001, "TOO_FEW_PARAMS" },
	{ 0x00000002, "TOO_MANY_PARAMS" },
	{ 0x00000004, "ILLEGAL_OPCODE" },
	{ 0x00000008, "DOUBLE_BRANCH" },
	{ 0x00000010, "WATCHDOG" },
	{}
};

924
static const struct nvkm_bitfield gk104_sked_error[] = {
925
	{ 0x00000040, "CTA_RESUME" },
926 927 928 929 930 931 932 933 934
	{ 0x00000080, "CONSTANT_BUFFER_SIZE" },
	{ 0x00000200, "LOCAL_MEMORY_SIZE_POS" },
	{ 0x00000400, "LOCAL_MEMORY_SIZE_NEG" },
	{ 0x00000800, "WARP_CSTACK_SIZE" },
	{ 0x00001000, "TOTAL_TEMP_SIZE" },
	{ 0x00002000, "REGISTER_COUNT" },
	{ 0x00040000, "TOTAL_THREADS" },
	{ 0x00100000, "PROGRAM_OFFSET" },
	{ 0x00200000, "SHARED_MEMORY_SIZE" },
935 936
	{ 0x00800000, "CTA_THREAD_DIMENSION_ZERO" },
	{ 0x01000000, "MEMORY_WINDOW_OVERLAP" },
937 938
	{ 0x02000000, "SHARED_CONFIG_TOO_SMALL" },
	{ 0x04000000, "TOTAL_REGISTER_COUNT" },
939 940 941
	{}
};

942 943 944 945 946 947 948
static const struct nvkm_bitfield gf100_gpc_rop_error[] = {
	{ 0x00000002, "RT_PITCH_OVERRUN" },
	{ 0x00000010, "RT_WIDTH_OVERRUN" },
	{ 0x00000020, "RT_HEIGHT_OVERRUN" },
	{ 0x00000080, "ZETA_STORAGE_TYPE_MISMATCH" },
	{ 0x00000100, "RT_STORAGE_TYPE_MISMATCH" },
	{ 0x00000400, "RT_LINEAR_MISMATCH" },
949 950 951
	{}
};

952
static void
B
Ben Skeggs 已提交
953
gf100_gr_trap_gpc_rop(struct gf100_gr *gr, int gpc)
954
{
955 956 957
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
	char error[128];
958
	u32 trap[4];
959

960
	trap[0] = nvkm_rd32(device, GPC_UNIT(gpc, 0x0420)) & 0x3fffffff;
961 962 963
	trap[1] = nvkm_rd32(device, GPC_UNIT(gpc, 0x0434));
	trap[2] = nvkm_rd32(device, GPC_UNIT(gpc, 0x0438));
	trap[3] = nvkm_rd32(device, GPC_UNIT(gpc, 0x043c));
964

965
	nvkm_snprintbf(error, sizeof(error), gf100_gpc_rop_error, trap[0]);
966

967 968 969 970
	nvkm_error(subdev, "GPC%d/PROP trap: %08x [%s] x = %u, y = %u, "
			   "format = %x, storage type = %x\n",
		   gpc, trap[0], error, trap[1] & 0xffff, trap[1] >> 16,
		   (trap[2] >> 8) & 0x3f, trap[3] & 0xff);
971
	nvkm_wr32(device, GPC_UNIT(gpc, 0x0420), 0xc0000000);
972 973
}

974
static const struct nvkm_enum gf100_mp_warp_error[] = {
975 976 977 978
	{ 0x01, "STACK_ERROR" },
	{ 0x02, "API_STACK_ERROR" },
	{ 0x03, "RET_EMPTY_STACK_ERROR" },
	{ 0x04, "PC_WRAP" },
979
	{ 0x05, "MISALIGNED_PC" },
980 981 982 983 984 985 986 987 988 989
	{ 0x06, "PC_OVERFLOW" },
	{ 0x07, "MISALIGNED_IMMC_ADDR" },
	{ 0x08, "MISALIGNED_REG" },
	{ 0x09, "ILLEGAL_INSTR_ENCODING" },
	{ 0x0a, "ILLEGAL_SPH_INSTR_COMBO" },
	{ 0x0b, "ILLEGAL_INSTR_PARAM" },
	{ 0x0c, "INVALID_CONST_ADDR" },
	{ 0x0d, "OOR_REG" },
	{ 0x0e, "OOR_ADDR" },
	{ 0x0f, "MISALIGNED_ADDR" },
990
	{ 0x10, "INVALID_ADDR_SPACE" },
991 992 993 994 995
	{ 0x11, "ILLEGAL_INSTR_PARAM2" },
	{ 0x12, "INVALID_CONST_ADDR_LDC" },
	{ 0x13, "GEOMETRY_SM_ERROR" },
	{ 0x14, "DIVERGENT" },
	{ 0x15, "WARP_EXIT" },
996 997 998
	{}
};

999
static const struct nvkm_bitfield gf100_mp_global_error[] = {
1000 1001
	{ 0x00000001, "SM_TO_SM_FAULT" },
	{ 0x00000002, "L1_ERROR" },
1002
	{ 0x00000004, "MULTIPLE_WARP_ERRORS" },
1003 1004 1005 1006 1007 1008 1009
	{ 0x00000008, "PHYSICAL_STACK_OVERFLOW" },
	{ 0x00000010, "BPT_INT" },
	{ 0x00000020, "BPT_PAUSE" },
	{ 0x00000040, "SINGLE_STEP_COMPLETE" },
	{ 0x20000000, "ECC_SEC_ERROR" },
	{ 0x40000000, "ECC_DED_ERROR" },
	{ 0x80000000, "TIMEOUT" },
1010 1011 1012 1013
	{}
};

static void
B
Ben Skeggs 已提交
1014
gf100_gr_trap_mp(struct gf100_gr *gr, int gpc, int tpc)
1015
{
1016 1017
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
1018 1019
	u32 werr = nvkm_rd32(device, TPC_UNIT(gpc, tpc, 0x648));
	u32 gerr = nvkm_rd32(device, TPC_UNIT(gpc, tpc, 0x650));
1020 1021
	const struct nvkm_enum *warp;
	char glob[128];
1022

1023 1024 1025 1026 1027 1028
	nvkm_snprintbf(glob, sizeof(glob), gf100_mp_global_error, gerr);
	warp = nvkm_enum_find(gf100_mp_warp_error, werr & 0xffff);

	nvkm_error(subdev, "GPC%i/TPC%i/MP trap: "
			   "global %08x [%s] warp %04x [%s]\n",
		   gpc, tpc, gerr, glob, werr, warp ? warp->name : "");
1029

1030 1031
	nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x648), 0x00000000);
	nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x650), gerr);
1032 1033
}

1034
static void
B
Ben Skeggs 已提交
1035
gf100_gr_trap_tpc(struct gf100_gr *gr, int gpc, int tpc)
1036
{
1037 1038
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
1039
	u32 stat = nvkm_rd32(device, TPC_UNIT(gpc, tpc, 0x0508));
1040 1041

	if (stat & 0x00000001) {
1042
		u32 trap = nvkm_rd32(device, TPC_UNIT(gpc, tpc, 0x0224));
1043
		nvkm_error(subdev, "GPC%d/TPC%d/TEX: %08x\n", gpc, tpc, trap);
1044
		nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x0224), 0xc0000000);
1045 1046 1047 1048
		stat &= ~0x00000001;
	}

	if (stat & 0x00000002) {
B
Ben Skeggs 已提交
1049
		gf100_gr_trap_mp(gr, gpc, tpc);
1050 1051 1052 1053
		stat &= ~0x00000002;
	}

	if (stat & 0x00000004) {
1054
		u32 trap = nvkm_rd32(device, TPC_UNIT(gpc, tpc, 0x0084));
1055
		nvkm_error(subdev, "GPC%d/TPC%d/POLY: %08x\n", gpc, tpc, trap);
1056
		nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x0084), 0xc0000000);
1057 1058 1059 1060
		stat &= ~0x00000004;
	}

	if (stat & 0x00000008) {
1061
		u32 trap = nvkm_rd32(device, TPC_UNIT(gpc, tpc, 0x048c));
1062
		nvkm_error(subdev, "GPC%d/TPC%d/L1C: %08x\n", gpc, tpc, trap);
1063
		nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x048c), 0xc0000000);
1064 1065 1066
		stat &= ~0x00000008;
	}

1067 1068 1069 1070 1071 1072 1073
	if (stat & 0x00000010) {
		u32 trap = nvkm_rd32(device, TPC_UNIT(gpc, tpc, 0x0430));
		nvkm_error(subdev, "GPC%d/TPC%d/MPC: %08x\n", gpc, tpc, trap);
		nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x0430), 0xc0000000);
		stat &= ~0x00000010;
	}

1074
	if (stat) {
1075
		nvkm_error(subdev, "GPC%d/TPC%d/%08x: unknown\n", gpc, tpc, stat);
1076 1077 1078 1079
	}
}

static void
B
Ben Skeggs 已提交
1080
gf100_gr_trap_gpc(struct gf100_gr *gr, int gpc)
1081
{
1082 1083
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
1084
	u32 stat = nvkm_rd32(device, GPC_UNIT(gpc, 0x2c90));
1085 1086 1087
	int tpc;

	if (stat & 0x00000001) {
B
Ben Skeggs 已提交
1088
		gf100_gr_trap_gpc_rop(gr, gpc);
1089 1090 1091 1092
		stat &= ~0x00000001;
	}

	if (stat & 0x00000002) {
1093
		u32 trap = nvkm_rd32(device, GPC_UNIT(gpc, 0x0900));
1094
		nvkm_error(subdev, "GPC%d/ZCULL: %08x\n", gpc, trap);
1095
		nvkm_wr32(device, GPC_UNIT(gpc, 0x0900), 0xc0000000);
1096 1097 1098 1099
		stat &= ~0x00000002;
	}

	if (stat & 0x00000004) {
1100
		u32 trap = nvkm_rd32(device, GPC_UNIT(gpc, 0x1028));
1101
		nvkm_error(subdev, "GPC%d/CCACHE: %08x\n", gpc, trap);
1102
		nvkm_wr32(device, GPC_UNIT(gpc, 0x1028), 0xc0000000);
1103 1104 1105 1106
		stat &= ~0x00000004;
	}

	if (stat & 0x00000008) {
1107
		u32 trap = nvkm_rd32(device, GPC_UNIT(gpc, 0x0824));
1108
		nvkm_error(subdev, "GPC%d/ESETUP: %08x\n", gpc, trap);
1109
		nvkm_wr32(device, GPC_UNIT(gpc, 0x0824), 0xc0000000);
1110 1111 1112
		stat &= ~0x00000009;
	}

B
Ben Skeggs 已提交
1113
	for (tpc = 0; tpc < gr->tpc_nr[gpc]; tpc++) {
1114 1115
		u32 mask = 0x00010000 << tpc;
		if (stat & mask) {
B
Ben Skeggs 已提交
1116
			gf100_gr_trap_tpc(gr, gpc, tpc);
1117
			nvkm_wr32(device, GPC_UNIT(gpc, 0x2c90), mask);
1118 1119 1120 1121 1122
			stat &= ~mask;
		}
	}

	if (stat) {
1123
		nvkm_error(subdev, "GPC%d/%08x: unknown\n", gpc, stat);
1124 1125 1126 1127
	}
}

static void
B
Ben Skeggs 已提交
1128
gf100_gr_trap_intr(struct gf100_gr *gr)
1129
{
1130 1131
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
1132
	char error[128];
1133
	u32 trap = nvkm_rd32(device, 0x400108);
1134
	int rop, gpc;
1135 1136

	if (trap & 0x00000001) {
1137
		u32 stat = nvkm_rd32(device, 0x404000);
1138 1139 1140 1141

		nvkm_snprintbf(error, sizeof(error), gf100_dispatch_error,
			       stat & 0x3fffffff);
		nvkm_error(subdev, "DISPATCH %08x [%s]\n", stat, error);
1142 1143
		nvkm_wr32(device, 0x404000, 0xc0000000);
		nvkm_wr32(device, 0x400108, 0x00000001);
1144 1145 1146 1147
		trap &= ~0x00000001;
	}

	if (trap & 0x00000002) {
1148
		u32 stat = nvkm_rd32(device, 0x404600);
1149 1150 1151 1152 1153

		nvkm_snprintbf(error, sizeof(error), gf100_m2mf_error,
			       stat & 0x3fffffff);
		nvkm_error(subdev, "M2MF %08x [%s]\n", stat, error);

1154 1155
		nvkm_wr32(device, 0x404600, 0xc0000000);
		nvkm_wr32(device, 0x400108, 0x00000002);
1156 1157 1158 1159
		trap &= ~0x00000002;
	}

	if (trap & 0x00000008) {
1160
		u32 stat = nvkm_rd32(device, 0x408030);
1161

1162
		nvkm_snprintbf(error, sizeof(error), gf100_ccache_error,
1163 1164
			       stat & 0x3fffffff);
		nvkm_error(subdev, "CCACHE %08x [%s]\n", stat, error);
1165 1166
		nvkm_wr32(device, 0x408030, 0xc0000000);
		nvkm_wr32(device, 0x400108, 0x00000008);
1167 1168 1169 1170
		trap &= ~0x00000008;
	}

	if (trap & 0x00000010) {
1171
		u32 stat = nvkm_rd32(device, 0x405840);
1172 1173
		nvkm_error(subdev, "SHADER %08x, sph: 0x%06x, stage: 0x%02x\n",
			   stat, stat & 0xffffff, (stat >> 24) & 0x3f);
1174 1175
		nvkm_wr32(device, 0x405840, 0xc0000000);
		nvkm_wr32(device, 0x400108, 0x00000010);
1176 1177 1178 1179
		trap &= ~0x00000010;
	}

	if (trap & 0x00000040) {
1180
		u32 stat = nvkm_rd32(device, 0x40601c);
1181 1182 1183 1184 1185

		nvkm_snprintbf(error, sizeof(error), gf100_unk6_error,
			       stat & 0x3fffffff);
		nvkm_error(subdev, "UNK6 %08x [%s]\n", stat, error);

1186 1187
		nvkm_wr32(device, 0x40601c, 0xc0000000);
		nvkm_wr32(device, 0x400108, 0x00000040);
1188 1189 1190 1191
		trap &= ~0x00000040;
	}

	if (trap & 0x00000080) {
1192
		u32 stat = nvkm_rd32(device, 0x404490);
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202
		u32 pc = nvkm_rd32(device, 0x404494);
		u32 op = nvkm_rd32(device, 0x40449c);

		nvkm_snprintbf(error, sizeof(error), gf100_macro_error,
			       stat & 0x1fffffff);
		nvkm_error(subdev, "MACRO %08x [%s], pc: 0x%03x%s, op: 0x%08x\n",
			   stat, error, pc & 0x7ff,
			   (pc & 0x10000000) ? "" : " (invalid)",
			   op);

1203 1204
		nvkm_wr32(device, 0x404490, 0xc0000000);
		nvkm_wr32(device, 0x400108, 0x00000080);
1205 1206 1207
		trap &= ~0x00000080;
	}

1208
	if (trap & 0x00000100) {
1209
		u32 stat = nvkm_rd32(device, 0x407020) & 0x3fffffff;
1210

1211 1212
		nvkm_snprintbf(error, sizeof(error), gk104_sked_error, stat);
		nvkm_error(subdev, "SKED: %08x [%s]\n", stat, error);
1213

1214
		if (stat)
1215 1216
			nvkm_wr32(device, 0x407020, 0x40000000);
		nvkm_wr32(device, 0x400108, 0x00000100);
1217 1218 1219
		trap &= ~0x00000100;
	}

1220
	if (trap & 0x01000000) {
1221
		u32 stat = nvkm_rd32(device, 0x400118);
B
Ben Skeggs 已提交
1222
		for (gpc = 0; stat && gpc < gr->gpc_nr; gpc++) {
1223 1224
			u32 mask = 0x00000001 << gpc;
			if (stat & mask) {
B
Ben Skeggs 已提交
1225
				gf100_gr_trap_gpc(gr, gpc);
1226
				nvkm_wr32(device, 0x400118, mask);
1227 1228 1229
				stat &= ~mask;
			}
		}
1230
		nvkm_wr32(device, 0x400108, 0x01000000);
1231 1232 1233 1234
		trap &= ~0x01000000;
	}

	if (trap & 0x02000000) {
B
Ben Skeggs 已提交
1235
		for (rop = 0; rop < gr->rop_nr; rop++) {
1236 1237
			u32 statz = nvkm_rd32(device, ROP_UNIT(rop, 0x070));
			u32 statc = nvkm_rd32(device, ROP_UNIT(rop, 0x144));
1238
			nvkm_error(subdev, "ROP%d %08x %08x\n",
1239
				 rop, statz, statc);
1240 1241
			nvkm_wr32(device, ROP_UNIT(rop, 0x070), 0xc0000000);
			nvkm_wr32(device, ROP_UNIT(rop, 0x144), 0xc0000000);
1242
		}
1243
		nvkm_wr32(device, 0x400108, 0x02000000);
1244 1245 1246 1247
		trap &= ~0x02000000;
	}

	if (trap) {
1248
		nvkm_error(subdev, "TRAP UNHANDLED %08x\n", trap);
1249
		nvkm_wr32(device, 0x400108, trap);
1250 1251 1252
	}
}

1253
static void
B
Ben Skeggs 已提交
1254
gf100_gr_ctxctl_debug_unit(struct gf100_gr *gr, u32 base)
1255
{
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
	nvkm_error(subdev, "%06x - done %08x\n", base,
		   nvkm_rd32(device, base + 0x400));
	nvkm_error(subdev, "%06x - stat %08x %08x %08x %08x\n", base,
		   nvkm_rd32(device, base + 0x800),
		   nvkm_rd32(device, base + 0x804),
		   nvkm_rd32(device, base + 0x808),
		   nvkm_rd32(device, base + 0x80c));
	nvkm_error(subdev, "%06x - stat %08x %08x %08x %08x\n", base,
		   nvkm_rd32(device, base + 0x810),
		   nvkm_rd32(device, base + 0x814),
		   nvkm_rd32(device, base + 0x818),
		   nvkm_rd32(device, base + 0x81c));
1270 1271 1272
}

void
B
Ben Skeggs 已提交
1273
gf100_gr_ctxctl_debug(struct gf100_gr *gr)
1274
{
1275 1276
	struct nvkm_device *device = gr->base.engine.subdev.device;
	u32 gpcnr = nvkm_rd32(device, 0x409604) & 0xffff;
1277 1278
	u32 gpc;

B
Ben Skeggs 已提交
1279
	gf100_gr_ctxctl_debug_unit(gr, 0x409000);
1280
	for (gpc = 0; gpc < gpcnr; gpc++)
B
Ben Skeggs 已提交
1281
		gf100_gr_ctxctl_debug_unit(gr, 0x502000 + (gpc * 0x8000));
1282 1283 1284
}

static void
B
Ben Skeggs 已提交
1285
gf100_gr_ctxctl_isr(struct gf100_gr *gr)
1286
{
1287 1288
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
1289
	u32 stat = nvkm_rd32(device, 0x409c18);
1290

1291
	if (!gr->firmware && (stat & 0x00000001)) {
1292
		u32 code = nvkm_rd32(device, 0x409814);
1293
		if (code == E_BAD_FWMTHD) {
1294 1295
			u32 class = nvkm_rd32(device, 0x409808);
			u32  addr = nvkm_rd32(device, 0x40980c);
1296 1297
			u32  subc = (addr & 0x00070000) >> 16;
			u32  mthd = (addr & 0x00003ffc);
1298
			u32  data = nvkm_rd32(device, 0x409810);
1299

1300 1301 1302
			nvkm_error(subdev, "FECS MTHD subc %d class %04x "
					   "mthd %04x data %08x\n",
				   subc, class, mthd, data);
1303
		} else {
1304
			nvkm_error(subdev, "FECS ucode error %d\n", code);
1305
		}
1306 1307
		nvkm_wr32(device, 0x409c20, 0x00000001);
		stat &= ~0x00000001;
1308
	}
1309

1310
	if (!gr->firmware && (stat & 0x00080000)) {
1311
		nvkm_error(subdev, "FECS watchdog timeout\n");
B
Ben Skeggs 已提交
1312
		gf100_gr_ctxctl_debug(gr);
1313
		nvkm_wr32(device, 0x409c20, 0x00080000);
1314 1315 1316 1317
		stat &= ~0x00080000;
	}

	if (stat) {
1318
		nvkm_error(subdev, "FECS %08x\n", stat);
B
Ben Skeggs 已提交
1319
		gf100_gr_ctxctl_debug(gr);
1320
		nvkm_wr32(device, 0x409c20, stat);
1321
	}
1322 1323
}

1324
static void
1325
gf100_gr_intr(struct nvkm_gr *base)
1326
{
1327 1328 1329
	struct gf100_gr *gr = gf100_gr(base);
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
1330 1331
	struct nvkm_fifo_chan *chan;
	unsigned long flags;
1332 1333 1334
	u64 inst = nvkm_rd32(device, 0x409b00) & 0x0fffffff;
	u32 stat = nvkm_rd32(device, 0x400100);
	u32 addr = nvkm_rd32(device, 0x400704);
1335 1336
	u32 mthd = (addr & 0x00003ffc);
	u32 subc = (addr & 0x00070000) >> 16;
1337 1338
	u32 data = nvkm_rd32(device, 0x400708);
	u32 code = nvkm_rd32(device, 0x400110);
1339
	u32 class;
1340 1341
	const char *name = "unknown";
	int chid = -1;
1342

1343
	chan = nvkm_fifo_chan_inst(device->fifo, (u64)inst << 12, &flags);
1344 1345 1346 1347
	if (chan) {
		name = chan->object.client->name;
		chid = chan->chid;
	}
1348

1349
	if (device->card_type < NV_E0 || subc < 4)
1350
		class = nvkm_rd32(device, 0x404200 + (subc * 4));
1351 1352 1353
	else
		class = 0x0000;

1354 1355 1356 1357 1358
	if (stat & 0x00000001) {
		/*
		 * notifier interrupt, only needed for cyclestats
		 * can be safely ignored
		 */
1359
		nvkm_wr32(device, 0x400100, 0x00000001);
1360 1361 1362
		stat &= ~0x00000001;
	}

1363
	if (stat & 0x00000010) {
1364
		if (!gf100_gr_mthd_sw(device, class, mthd, data)) {
1365 1366
			nvkm_error(subdev, "ILLEGAL_MTHD ch %d [%010llx %s] "
				   "subc %d class %04x mthd %04x data %08x\n",
1367 1368
				   chid, inst << 12, name, subc,
				   class, mthd, data);
1369
		}
1370
		nvkm_wr32(device, 0x400100, 0x00000010);
1371 1372 1373 1374
		stat &= ~0x00000010;
	}

	if (stat & 0x00000020) {
1375 1376
		nvkm_error(subdev, "ILLEGAL_CLASS ch %d [%010llx %s] "
			   "subc %d class %04x mthd %04x data %08x\n",
1377
			   chid, inst << 12, name, subc, class, mthd, data);
1378
		nvkm_wr32(device, 0x400100, 0x00000020);
1379 1380 1381 1382
		stat &= ~0x00000020;
	}

	if (stat & 0x00100000) {
1383 1384 1385 1386 1387
		const struct nvkm_enum *en =
			nvkm_enum_find(nv50_data_error_names, code);
		nvkm_error(subdev, "DATA_ERROR %08x [%s] ch %d [%010llx %s] "
				   "subc %d class %04x mthd %04x data %08x\n",
			   code, en ? en->name : "", chid, inst << 12,
1388
			   name, subc, class, mthd, data);
1389
		nvkm_wr32(device, 0x400100, 0x00100000);
1390 1391 1392 1393
		stat &= ~0x00100000;
	}

	if (stat & 0x00200000) {
1394
		nvkm_error(subdev, "TRAP ch %d [%010llx %s]\n",
1395
			   chid, inst << 12, name);
B
Ben Skeggs 已提交
1396
		gf100_gr_trap_intr(gr);
1397
		nvkm_wr32(device, 0x400100, 0x00200000);
1398 1399 1400 1401
		stat &= ~0x00200000;
	}

	if (stat & 0x00080000) {
B
Ben Skeggs 已提交
1402
		gf100_gr_ctxctl_isr(gr);
1403
		nvkm_wr32(device, 0x400100, 0x00080000);
1404 1405 1406 1407
		stat &= ~0x00080000;
	}

	if (stat) {
1408
		nvkm_error(subdev, "intr %08x\n", stat);
1409
		nvkm_wr32(device, 0x400100, stat);
1410 1411
	}

1412
	nvkm_wr32(device, 0x400500, 0x00010001);
1413
	nvkm_fifo_chan_put(device->fifo, flags, &chan);
1414 1415
}

1416
static void
1417
gf100_gr_init_fw(struct nvkm_falcon *falcon,
1418
		 struct gf100_gr_fuc *code, struct gf100_gr_fuc *data)
1419
{
1420 1421
	nvkm_falcon_load_dmem(falcon, data->data, 0x0, data->size, 0);
	nvkm_falcon_load_imem(falcon, code->data, 0x0, code->size, 0, 0, false);
1422 1423
}

1424
static void
B
Ben Skeggs 已提交
1425
gf100_gr_init_csdata(struct gf100_gr *gr,
1426 1427
		     const struct gf100_gr_pack *pack,
		     u32 falcon, u32 starstar, u32 base)
1428
{
1429
	struct nvkm_device *device = gr->base.engine.subdev.device;
1430 1431
	const struct gf100_gr_pack *iter;
	const struct gf100_gr_init *init;
1432
	u32 addr = ~0, prev = ~0, xfer = 0;
1433 1434
	u32 star, temp;

1435 1436 1437
	nvkm_wr32(device, falcon + 0x01c0, 0x02000000 + starstar);
	star = nvkm_rd32(device, falcon + 0x01c4);
	temp = nvkm_rd32(device, falcon + 0x01c4);
1438 1439
	if (temp > star)
		star = temp;
1440
	nvkm_wr32(device, falcon + 0x01c0, 0x01000000 + star);
1441

1442 1443 1444 1445 1446 1447 1448
	pack_for_each_init(init, iter, pack) {
		u32 head = init->addr - base;
		u32 tail = head + init->count * init->pitch;
		while (head < tail) {
			if (head != prev + 4 || xfer >= 32) {
				if (xfer) {
					u32 data = ((--xfer << 26) | addr);
1449
					nvkm_wr32(device, falcon + 0x01c4, data);
1450 1451 1452 1453
					star += 4;
				}
				addr = head;
				xfer = 0;
1454
			}
1455 1456 1457
			prev = head;
			xfer = xfer + 1;
			head = head + init->pitch;
1458
		}
1459
	}
1460

1461 1462 1463
	nvkm_wr32(device, falcon + 0x01c4, (--xfer << 26) | addr);
	nvkm_wr32(device, falcon + 0x01c0, 0x01000004 + starstar);
	nvkm_wr32(device, falcon + 0x01c4, star + 4);
1464 1465
}

1466 1467 1468
/* Initialize context from an external (secure or not) firmware */
static int
gf100_gr_init_ctxctl_ext(struct gf100_gr *gr)
1469
{
1470 1471
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
1472
	struct nvkm_secboot *sb = device->secboot;
1473
	u32 secboot_mask = 0;
1474

1475 1476
	/* load fuc microcode */
	nvkm_mc_unk260(device, 0);
1477

1478 1479
	/* securely-managed falcons must be reset using secure boot */
	if (nvkm_secboot_is_managed(sb, NVKM_SECBOOT_FALCON_FECS))
1480
		secboot_mask |= BIT(NVKM_SECBOOT_FALCON_FECS);
1481
	else
1482
		gf100_gr_init_fw(gr->fecs, &gr->fuc409c, &gr->fuc409d);
1483

1484
	if (nvkm_secboot_is_managed(sb, NVKM_SECBOOT_FALCON_GPCCS))
1485
		secboot_mask |= BIT(NVKM_SECBOOT_FALCON_GPCCS);
1486
	else
1487
		gf100_gr_init_fw(gr->gpccs, &gr->fuc41ac, &gr->fuc41ad);
1488 1489 1490 1491 1492 1493

	if (secboot_mask != 0) {
		int ret = nvkm_secboot_reset(sb, secboot_mask);
		if (ret)
			return ret;
	}
1494

1495 1496 1497 1498 1499 1500 1501
	nvkm_mc_unk260(device, 1);

	/* start both of them running */
	nvkm_wr32(device, 0x409840, 0xffffffff);
	nvkm_wr32(device, 0x41a10c, 0x00000000);
	nvkm_wr32(device, 0x40910c, 0x00000000);

1502 1503 1504
	nvkm_falcon_start(gr->gpccs);
	nvkm_falcon_start(gr->fecs);

1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
	if (nvkm_msec(device, 2000,
		if (nvkm_rd32(device, 0x409800) & 0x00000001)
			break;
	) < 0)
		return -EBUSY;

	nvkm_wr32(device, 0x409840, 0xffffffff);
	nvkm_wr32(device, 0x409500, 0x7fffffff);
	nvkm_wr32(device, 0x409504, 0x00000021);

	nvkm_wr32(device, 0x409840, 0xffffffff);
	nvkm_wr32(device, 0x409500, 0x00000000);
	nvkm_wr32(device, 0x409504, 0x00000010);
	if (nvkm_msec(device, 2000,
		if ((gr->size = nvkm_rd32(device, 0x409800)))
			break;
	) < 0)
		return -EBUSY;

	nvkm_wr32(device, 0x409840, 0xffffffff);
	nvkm_wr32(device, 0x409500, 0x00000000);
	nvkm_wr32(device, 0x409504, 0x00000016);
	if (nvkm_msec(device, 2000,
		if (nvkm_rd32(device, 0x409800))
			break;
	) < 0)
		return -EBUSY;
B
Ben Skeggs 已提交
1532

1533 1534 1535 1536 1537 1538 1539 1540
	nvkm_wr32(device, 0x409840, 0xffffffff);
	nvkm_wr32(device, 0x409500, 0x00000000);
	nvkm_wr32(device, 0x409504, 0x00000025);
	if (nvkm_msec(device, 2000,
		if (nvkm_rd32(device, 0x409800))
			break;
	) < 0)
		return -EBUSY;
B
Ben Skeggs 已提交
1541

1542 1543 1544 1545
	if (device->chipset >= 0xe0) {
		nvkm_wr32(device, 0x409800, 0x00000000);
		nvkm_wr32(device, 0x409500, 0x00000001);
		nvkm_wr32(device, 0x409504, 0x00000030);
1546
		if (nvkm_msec(device, 2000,
1547
			if (nvkm_rd32(device, 0x409800))
1548 1549
				break;
		) < 0)
1550
			return -EBUSY;
1551

1552 1553 1554 1555
		nvkm_wr32(device, 0x409810, 0xb00095c8);
		nvkm_wr32(device, 0x409800, 0x00000000);
		nvkm_wr32(device, 0x409500, 0x00000001);
		nvkm_wr32(device, 0x409504, 0x00000031);
1556 1557 1558 1559
		if (nvkm_msec(device, 2000,
			if (nvkm_rd32(device, 0x409800))
				break;
		) < 0)
1560 1561
			return -EBUSY;

1562 1563 1564 1565
		nvkm_wr32(device, 0x409810, 0x00080420);
		nvkm_wr32(device, 0x409800, 0x00000000);
		nvkm_wr32(device, 0x409500, 0x00000001);
		nvkm_wr32(device, 0x409504, 0x00000032);
1566 1567 1568 1569
		if (nvkm_msec(device, 2000,
			if (nvkm_rd32(device, 0x409800))
				break;
		) < 0)
1570 1571
			return -EBUSY;

1572 1573 1574 1575
		nvkm_wr32(device, 0x409614, 0x00000070);
		nvkm_wr32(device, 0x409614, 0x00000770);
		nvkm_wr32(device, 0x40802c, 0x00000001);
	}
1576

1577 1578 1579 1580 1581
	if (gr->data == NULL) {
		int ret = gf100_grctx_generate(gr);
		if (ret) {
			nvkm_error(subdev, "failed to construct context\n");
			return ret;
1582
		}
1583
	}
1584

1585 1586 1587 1588 1589 1590 1591 1592 1593
	return 0;
}

static int
gf100_gr_init_ctxctl_int(struct gf100_gr *gr)
{
	const struct gf100_grctx_func *grctx = gr->func->grctx;
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
1594

1595
	if (!gr->func->fecs.ucode) {
1596
		return -ENOSYS;
1597
	}
1598

1599
	/* load HUB microcode */
1600
	nvkm_mc_unk260(device, 0);
1601 1602 1603 1604
	nvkm_falcon_load_dmem(gr->fecs, gr->func->fecs.ucode->data.data, 0x0,
			      gr->func->fecs.ucode->data.size, 0);
	nvkm_falcon_load_imem(gr->fecs, gr->func->fecs.ucode->code.data, 0x0,
			      gr->func->fecs.ucode->code.size, 0, 0, false);
1605 1606

	/* load GPC microcode */
1607 1608 1609 1610
	nvkm_falcon_load_dmem(gr->gpccs, gr->func->gpccs.ucode->data.data, 0x0,
			      gr->func->gpccs.ucode->data.size, 0);
	nvkm_falcon_load_imem(gr->gpccs, gr->func->gpccs.ucode->code.data, 0x0,
			      gr->func->gpccs.ucode->code.size, 0, 0, false);
1611
	nvkm_mc_unk260(device, 1);
1612

1613
	/* load register lists */
1614 1615 1616 1617
	gf100_gr_init_csdata(gr, grctx->hub, 0x409000, 0x000, 0x000000);
	gf100_gr_init_csdata(gr, grctx->gpc, 0x41a000, 0x000, 0x418000);
	gf100_gr_init_csdata(gr, grctx->tpc, 0x41a000, 0x004, 0x419800);
	gf100_gr_init_csdata(gr, grctx->ppc, 0x41a000, 0x008, 0x41be00);
1618

1619
	/* start HUB ucode running, it'll init the GPCs */
1620 1621
	nvkm_wr32(device, 0x40910c, 0x00000000);
	nvkm_wr32(device, 0x409100, 0x00000002);
1622 1623 1624 1625
	if (nvkm_msec(device, 2000,
		if (nvkm_rd32(device, 0x409800) & 0x80000000)
			break;
	) < 0) {
B
Ben Skeggs 已提交
1626
		gf100_gr_ctxctl_debug(gr);
1627 1628 1629
		return -EBUSY;
	}

1630
	gr->size = nvkm_rd32(device, 0x409804);
B
Ben Skeggs 已提交
1631 1632
	if (gr->data == NULL) {
		int ret = gf100_grctx_generate(gr);
1633
		if (ret) {
1634
			nvkm_error(subdev, "failed to construct context\n");
1635 1636
			return ret;
		}
1637 1638 1639
	}

	return 0;
1640 1641
}

1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
int
gf100_gr_init_ctxctl(struct gf100_gr *gr)
{
	int ret;

	if (gr->firmware)
		ret = gf100_gr_init_ctxctl_ext(gr);
	else
		ret = gf100_gr_init_ctxctl_int(gr);

	return ret;
}

1655 1656 1657 1658
static int
gf100_gr_oneinit(struct nvkm_gr *base)
{
	struct gf100_gr *gr = gf100_gr(base);
1659 1660
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
1661
	int i, j;
1662 1663 1664 1665 1666 1667 1668 1669 1670
	int ret;

	ret = nvkm_falcon_v1_new(subdev, "FECS", 0x409000, &gr->fecs);
	if (ret)
		return ret;

	ret = nvkm_falcon_v1_new(subdev, "GPCCS", 0x41a000, &gr->gpccs);
	if (ret)
		return ret;
1671 1672 1673

	nvkm_pmu_pgob(device->pmu, false);

1674 1675
	gr->rop_nr = gr->func->rops(gr);
	gr->gpc_nr = nvkm_rd32(device, 0x409604) & 0x0000001f;
1676 1677 1678 1679 1680 1681
	for (i = 0; i < gr->gpc_nr; i++) {
		gr->tpc_nr[i]  = nvkm_rd32(device, GPC_UNIT(i, 0x2608));
		gr->tpc_total += gr->tpc_nr[i];
		gr->ppc_nr[i]  = gr->func->ppc_nr;
		for (j = 0; j < gr->ppc_nr[i]; j++) {
			u8 mask = nvkm_rd32(device, GPC_UNIT(i, 0x0c30 + (j * 4)));
1682 1683
			if (mask)
				gr->ppc_mask[i] |= (1 << j);
1684 1685 1686 1687 1688 1689 1690 1691
			gr->ppc_tpc_nr[i][j] = hweight8(mask);
		}
	}

	/*XXX: these need figuring out... though it might not even matter */
	switch (device->chipset) {
	case 0xc0:
		if (gr->tpc_total == 11) { /* 465, 3/4/4/0, 4 */
1692
			gr->screen_tile_row_offset = 0x07;
1693 1694
		} else
		if (gr->tpc_total == 14) { /* 470, 3/3/4/4, 5 */
1695
			gr->screen_tile_row_offset = 0x05;
1696 1697
		} else
		if (gr->tpc_total == 15) { /* 480, 3/4/4/4, 6 */
1698
			gr->screen_tile_row_offset = 0x06;
1699 1700 1701
		}
		break;
	case 0xc3: /* 450, 4/0/0/0, 2 */
1702
		gr->screen_tile_row_offset = 0x03;
1703 1704
		break;
	case 0xc4: /* 460, 3/4/0/0, 4 */
1705
		gr->screen_tile_row_offset = 0x01;
1706 1707
		break;
	case 0xc1: /* 2/0/0/0, 1 */
1708
		gr->screen_tile_row_offset = 0x01;
1709 1710
		break;
	case 0xc8: /* 4/4/3/4, 5 */
1711
		gr->screen_tile_row_offset = 0x06;
1712 1713
		break;
	case 0xce: /* 4/4/0/0, 4 */
1714
		gr->screen_tile_row_offset = 0x03;
1715 1716
		break;
	case 0xcf: /* 4/0/0/0, 3 */
1717
		gr->screen_tile_row_offset = 0x03;
1718 1719 1720 1721 1722
		break;
	case 0xd7:
	case 0xd9: /* 1/0/0/0, 1 */
	case 0xea: /* gk20a */
	case 0x12b: /* gm20b */
1723
		gr->screen_tile_row_offset = 0x01;
1724 1725 1726 1727 1728 1729
		break;
	}

	return 0;
}

1730
static int
1731 1732 1733
gf100_gr_init_(struct nvkm_gr *base)
{
	struct gf100_gr *gr = gf100_gr(base);
1734 1735 1736
	struct nvkm_subdev *subdev = &base->engine.subdev;
	u32 ret;

1737
	nvkm_pmu_pgob(gr->base.engine.subdev.device->pmu, false);
1738 1739 1740 1741 1742 1743 1744 1745 1746

	ret = nvkm_falcon_get(gr->fecs, subdev);
	if (ret)
		return ret;

	ret = nvkm_falcon_get(gr->gpccs, subdev);
	if (ret)
		return ret;

1747 1748 1749
	return gr->func->init(gr);
}

1750 1751 1752 1753 1754 1755 1756 1757 1758 1759
static int
gf100_gr_fini_(struct nvkm_gr *base, bool suspend)
{
	struct gf100_gr *gr = gf100_gr(base);
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	nvkm_falcon_put(gr->gpccs, subdev);
	nvkm_falcon_put(gr->fecs, subdev);
	return 0;
}

1760 1761 1762 1763 1764 1765 1766
void
gf100_gr_dtor_fw(struct gf100_gr_fuc *fuc)
{
	kfree(fuc->data);
	fuc->data = NULL;
}

1767 1768 1769 1770 1771 1772
static void
gf100_gr_dtor_init(struct gf100_gr_pack *pack)
{
	vfree(pack);
}

1773 1774 1775 1776 1777 1778 1779 1780 1781
void *
gf100_gr_dtor(struct nvkm_gr *base)
{
	struct gf100_gr *gr = gf100_gr(base);

	if (gr->func->dtor)
		gr->func->dtor(gr);
	kfree(gr->data);

1782 1783 1784
	nvkm_falcon_del(&gr->gpccs);
	nvkm_falcon_del(&gr->fecs);

1785 1786 1787 1788 1789
	gf100_gr_dtor_fw(&gr->fuc409c);
	gf100_gr_dtor_fw(&gr->fuc409d);
	gf100_gr_dtor_fw(&gr->fuc41ac);
	gf100_gr_dtor_fw(&gr->fuc41ad);

1790 1791 1792 1793 1794
	gf100_gr_dtor_init(gr->fuc_bundle);
	gf100_gr_dtor_init(gr->fuc_method);
	gf100_gr_dtor_init(gr->fuc_sw_ctx);
	gf100_gr_dtor_init(gr->fuc_sw_nonctx);

1795 1796 1797 1798 1799 1800 1801 1802
	return gr;
}

static const struct nvkm_gr_func
gf100_gr_ = {
	.dtor = gf100_gr_dtor,
	.oneinit = gf100_gr_oneinit,
	.init = gf100_gr_init_,
1803
	.fini = gf100_gr_fini_,
1804 1805 1806 1807
	.intr = gf100_gr_intr,
	.units = gf100_gr_units,
	.chan_new = gf100_gr_chan_new,
	.object_get = gf100_gr_object_get,
1808
	.chsw_load = gf100_gr_chsw_load,
1809 1810
};

1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854
int
gf100_gr_ctor_fw_legacy(struct gf100_gr *gr, const char *fwname,
			struct gf100_gr_fuc *fuc, int ret)
{
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
	const struct firmware *fw;
	char f[32];

	/* see if this firmware has a legacy path */
	if (!strcmp(fwname, "fecs_inst"))
		fwname = "fuc409c";
	else if (!strcmp(fwname, "fecs_data"))
		fwname = "fuc409d";
	else if (!strcmp(fwname, "gpccs_inst"))
		fwname = "fuc41ac";
	else if (!strcmp(fwname, "gpccs_data"))
		fwname = "fuc41ad";
	else {
		/* nope, let's just return the error we got */
		nvkm_error(subdev, "failed to load %s\n", fwname);
		return ret;
	}

	/* yes, try to load from the legacy path */
	nvkm_debug(subdev, "%s: falling back to legacy path\n", fwname);

	snprintf(f, sizeof(f), "nouveau/nv%02x_%s", device->chipset, fwname);
	ret = request_firmware(&fw, f, device->dev);
	if (ret) {
		snprintf(f, sizeof(f), "nouveau/%s", fwname);
		ret = request_firmware(&fw, f, device->dev);
		if (ret) {
			nvkm_error(subdev, "failed to load %s\n", fwname);
			return ret;
		}
	}

	fuc->size = fw->size;
	fuc->data = kmemdup(fw->data, fuc->size, GFP_KERNEL);
	release_firmware(fw);
	return (fuc->data != NULL) ? 0 : -ENOMEM;
}

1855 1856 1857 1858 1859 1860 1861 1862 1863
int
gf100_gr_ctor_fw(struct gf100_gr *gr, const char *fwname,
		 struct gf100_gr_fuc *fuc)
{
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
	const struct firmware *fw;
	int ret;

1864
	ret = nvkm_firmware_get(device, fwname, &fw);
1865 1866 1867 1868 1869 1870
	if (ret) {
		ret = gf100_gr_ctor_fw_legacy(gr, fwname, fuc, ret);
		if (ret)
			return -ENODEV;
		return 0;
	}
1871 1872 1873

	fuc->size = fw->size;
	fuc->data = kmemdup(fw->data, fuc->size, GFP_KERNEL);
1874
	nvkm_firmware_put(fw);
1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885
	return (fuc->data != NULL) ? 0 : -ENOMEM;
}

int
gf100_gr_ctor(const struct gf100_gr_func *func, struct nvkm_device *device,
	      int index, struct gf100_gr *gr)
{
	gr->func = func;
	gr->firmware = nvkm_boolopt(device->cfgopt, "NvGrUseFW",
				    func->fecs.ucode == NULL);

1886 1887 1888
	return nvkm_gr_ctor(&gf100_gr_, device, index,
			    gr->firmware || func->fecs.ucode != NULL,
			    &gr->base);
1889 1890
}

1891
int
1892 1893 1894 1895
gf100_gr_new_(const struct gf100_gr_func *func, struct nvkm_device *device,
	      int index, struct nvkm_gr **pgr)
{
	struct gf100_gr *gr;
1896 1897
	int ret;

1898 1899 1900
	if (!(gr = kzalloc(sizeof(*gr), GFP_KERNEL)))
		return -ENOMEM;
	*pgr = &gr->base;
1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914

	ret = gf100_gr_ctor(func, device, index, gr);
	if (ret)
		return ret;

	if (gr->firmware) {
		if (gf100_gr_ctor_fw(gr, "fecs_inst", &gr->fuc409c) ||
		    gf100_gr_ctor_fw(gr, "fecs_data", &gr->fuc409d) ||
		    gf100_gr_ctor_fw(gr, "gpccs_inst", &gr->fuc41ac) ||
		    gf100_gr_ctor_fw(gr, "gpccs_data", &gr->fuc41ad))
			return -ENODEV;
	}

	return 0;
1915 1916
}

1917
void
1918 1919 1920 1921 1922 1923 1924 1925 1926
gf100_gr_init_shader_exceptions(struct gf100_gr *gr, int gpc, int tpc)
{
	struct nvkm_device *device = gr->base.engine.subdev.device;
	nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x644), 0x001ffffe);
	nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x64c), 0x0000000f);
}

void
gf100_gr_init_tex_hww_esr(struct gf100_gr *gr, int gpc, int tpc)
1927 1928 1929 1930 1931
{
	struct nvkm_device *device = gr->base.engine.subdev.device;
	nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x224), 0xc0000000);
}

1932 1933 1934 1935 1936 1937 1938
void
gf100_gr_init_419eb4(struct gf100_gr *gr)
{
	struct nvkm_device *device = gr->base.engine.subdev.device;
	nvkm_mask(device, 0x419eb4, 0x00001000, 0x00001000);
}

1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952
void
gf100_gr_init_419cc0(struct gf100_gr *gr)
{
	struct nvkm_device *device = gr->base.engine.subdev.device;
	int gpc, tpc;

	nvkm_mask(device, 0x419cc0, 0x00000008, 0x00000008);

	for (gpc = 0; gpc < gr->gpc_nr; gpc++) {
		for (tpc = 0; tpc < gr->tpc_nr[gpc]; tpc++)
			nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x48c), 0xc0000000);
	}
}

1953 1954 1955 1956 1957 1958
void
gf100_gr_init_40601c(struct gf100_gr *gr)
{
	nvkm_wr32(gr->base.engine.subdev.device, 0x40601c, 0xc0000000);
}

1959 1960 1961 1962 1963 1964 1965
void
gf100_gr_init_fecs_exceptions(struct gf100_gr *gr)
{
	const u32 data = gr->firmware ? 0x000e0000 : 0x000e0001;
	nvkm_wr32(gr->base.engine.subdev.device, 0x409c24, data);
}

1966 1967 1968 1969 1970 1971
void
gf100_gr_init_gpc_mmu(struct gf100_gr *gr)
{
	struct nvkm_device *device = gr->base.engine.subdev.device;
	struct nvkm_fb *fb = device->fb;

1972
	nvkm_wr32(device, 0x418880, nvkm_rd32(device, 0x100c80) & 0x00000001);
1973
	nvkm_wr32(device, 0x4188a4, 0x03000000);
1974 1975 1976 1977 1978 1979 1980 1981
	nvkm_wr32(device, 0x418888, 0x00000000);
	nvkm_wr32(device, 0x41888c, 0x00000000);
	nvkm_wr32(device, 0x418890, 0x00000000);
	nvkm_wr32(device, 0x418894, 0x00000000);
	nvkm_wr32(device, 0x4188b4, nvkm_memory_addr(fb->mmu_wr) >> 8);
	nvkm_wr32(device, 0x4188b8, nvkm_memory_addr(fb->mmu_rd) >> 8);
}

1982 1983 1984 1985 1986 1987 1988
void
gf100_gr_init_num_active_ltcs(struct gf100_gr *gr)
{
	struct nvkm_device *device = gr->base.engine.subdev.device;
	nvkm_wr32(device, GPC_BCAST(0x08ac), nvkm_rd32(device, 0x100800));
}

1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016
void
gf100_gr_init_zcull(struct gf100_gr *gr)
{
	struct nvkm_device *device = gr->base.engine.subdev.device;
	const u32 magicgpc918 = DIV_ROUND_UP(0x00800000, gr->tpc_total);
	u32 data[TPC_MAX / 8] = {};
	u8  tpcnr[GPC_MAX];
	int gpc, tpc;
	int i;

	memcpy(tpcnr, gr->tpc_nr, sizeof(gr->tpc_nr));
	for (i = 0, gpc = -1; i < gr->tpc_total; i++) {
		do {
			gpc = (gpc + 1) % gr->gpc_nr;
		} while (!tpcnr[gpc]);
		tpc = gr->tpc_nr[gpc] - tpcnr[gpc]--;

		data[i / 8] |= tpc << ((i % 8) * 4);
	}

	nvkm_wr32(device, GPC_BCAST(0x0980), data[0]);
	nvkm_wr32(device, GPC_BCAST(0x0984), data[1]);
	nvkm_wr32(device, GPC_BCAST(0x0988), data[2]);
	nvkm_wr32(device, GPC_BCAST(0x098c), data[3]);

	nvkm_wr32(device, GPC_BCAST(0x1bd4), magicgpc918);
}

2017 2018 2019 2020 2021 2022 2023
void
gf100_gr_init_vsc_stream_master(struct gf100_gr *gr)
{
	struct nvkm_device *device = gr->base.engine.subdev.device;
	nvkm_mask(device, TPC_UNIT(0, 0, 0x05c), 0x00000001, 0x00000001);
}

2024 2025
int
gf100_gr_init(struct gf100_gr *gr)
2026
{
2027
	struct nvkm_device *device = gr->base.engine.subdev.device;
2028
	int gpc, tpc, rop;
2029

2030
	gr->func->init_gpc_mmu(gr);
2031

2032 2033 2034 2035
	if (gr->fuc_sw_nonctx)
		gf100_gr_mmio(gr, gr->fuc_sw_nonctx);
	else
		gf100_gr_mmio(gr, gr->func->mmio);
2036

2037 2038 2039
	if (gr->func->init_r405a14)
		gr->func->init_r405a14(gr);

2040 2041 2042
	if (gr->func->clkgate_pack)
		nvkm_therm_clkgate_init(device->therm, gr->func->clkgate_pack);

2043 2044 2045
	if (gr->func->init_bios)
		gr->func->init_bios(gr);

2046
	gr->func->init_vsc_stream_master(gr);
2047
	gr->func->init_zcull(gr);
2048
	gr->func->init_num_active_ltcs(gr);
2049 2050
	if (gr->func->init_rop_active_fbps)
		gr->func->init_rop_active_fbps(gr);
2051 2052
	if (gr->func->init_bios_2)
		gr->func->init_bios_2(gr);
2053 2054
	if (gr->func->init_swdx_pes_mask)
		gr->func->init_swdx_pes_mask(gr);
B
Ben Skeggs 已提交
2055

2056
	nvkm_wr32(device, 0x400500, 0x00010001);
B
Ben Skeggs 已提交
2057

2058 2059
	nvkm_wr32(device, 0x400100, 0xffffffff);
	nvkm_wr32(device, 0x40013c, 0xffffffff);
2060
	nvkm_wr32(device, 0x400124, 0x00000002);
B
Ben Skeggs 已提交
2061

2062
	gr->func->init_fecs_exceptions(gr);
2063 2064
	if (gr->func->init_ds_hww_esr_2)
		gr->func->init_ds_hww_esr_2(gr);
2065

2066 2067 2068
	nvkm_wr32(device, 0x404000, 0xc0000000);
	nvkm_wr32(device, 0x404600, 0xc0000000);
	nvkm_wr32(device, 0x408030, 0xc0000000);
2069 2070 2071 2072

	if (gr->func->init_40601c)
		gr->func->init_40601c(gr);

2073 2074
	nvkm_wr32(device, 0x404490, 0xc0000000);
	nvkm_wr32(device, 0x406018, 0xc0000000);
2075 2076 2077 2078

	if (gr->func->init_sked_hww_esr)
		gr->func->init_sked_hww_esr(gr);

2079 2080
	nvkm_wr32(device, 0x405840, 0xc0000000);
	nvkm_wr32(device, 0x405844, 0x00ffffff);
2081 2082 2083

	if (gr->func->init_419cc0)
		gr->func->init_419cc0(gr);
2084 2085
	if (gr->func->init_419eb4)
		gr->func->init_419eb4(gr);
2086 2087
	if (gr->func->init_419c9c)
		gr->func->init_419c9c(gr);
B
Ben Skeggs 已提交
2088

2089 2090 2091
	if (gr->func->init_ppc_exceptions)
		gr->func->init_ppc_exceptions(gr);

B
Ben Skeggs 已提交
2092
	for (gpc = 0; gpc < gr->gpc_nr; gpc++) {
2093 2094 2095 2096
		nvkm_wr32(device, GPC_UNIT(gpc, 0x0420), 0xc0000000);
		nvkm_wr32(device, GPC_UNIT(gpc, 0x0900), 0xc0000000);
		nvkm_wr32(device, GPC_UNIT(gpc, 0x1028), 0xc0000000);
		nvkm_wr32(device, GPC_UNIT(gpc, 0x0824), 0xc0000000);
B
Ben Skeggs 已提交
2097
		for (tpc = 0; tpc < gr->tpc_nr[gpc]; tpc++) {
2098 2099
			nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x508), 0xffffffff);
			nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x50c), 0xffffffff);
2100 2101
			if (gr->func->init_tex_hww_esr)
				gr->func->init_tex_hww_esr(gr, gpc, tpc);
2102
			nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x084), 0xc0000000);
2103 2104
			if (gr->func->init_504430)
				gr->func->init_504430(gr, gpc, tpc);
2105
			gr->func->init_shader_exceptions(gr, gpc, tpc);
2106
		}
2107 2108
		nvkm_wr32(device, GPC_UNIT(gpc, 0x2c90), 0xffffffff);
		nvkm_wr32(device, GPC_UNIT(gpc, 0x2c94), 0xffffffff);
2109 2110
	}

B
Ben Skeggs 已提交
2111
	for (rop = 0; rop < gr->rop_nr; rop++) {
2112 2113
		nvkm_wr32(device, ROP_UNIT(rop, 0x144), 0x40000000);
		nvkm_wr32(device, ROP_UNIT(rop, 0x070), 0x40000000);
2114 2115
		nvkm_wr32(device, ROP_UNIT(rop, 0x204), 0xffffffff);
		nvkm_wr32(device, ROP_UNIT(rop, 0x208), 0xffffffff);
2116
	}
2117

2118 2119 2120 2121 2122 2123
	nvkm_wr32(device, 0x400108, 0xffffffff);
	nvkm_wr32(device, 0x400138, 0xffffffff);
	nvkm_wr32(device, 0x400118, 0xffffffff);
	nvkm_wr32(device, 0x400130, 0xffffffff);
	nvkm_wr32(device, 0x40011c, 0xffffffff);
	nvkm_wr32(device, 0x400134, 0xffffffff);
2124

2125
	nvkm_wr32(device, 0x400054, 0x34ce3464);
2126

B
Ben Skeggs 已提交
2127
	gf100_gr_zbc_init(gr);
2128

B
Ben Skeggs 已提交
2129
	return gf100_gr_init_ctxctl(gr);
2130 2131
}

2132
#include "fuc/hubgf100.fuc3.h"
2133

2134 2135 2136 2137 2138 2139
struct gf100_gr_ucode
gf100_gr_fecs_ucode = {
	.code.data = gf100_grhub_code,
	.code.size = sizeof(gf100_grhub_code),
	.data.data = gf100_grhub_data,
	.data.size = sizeof(gf100_grhub_data),
2140 2141
};

2142
#include "fuc/gpcgf100.fuc3.h"
2143

2144 2145 2146 2147 2148 2149
struct gf100_gr_ucode
gf100_gr_gpccs_ucode = {
	.code.data = gf100_grgpc_code,
	.code.size = sizeof(gf100_grgpc_code),
	.data.data = gf100_grgpc_data,
	.data.size = sizeof(gf100_grgpc_data),
2150 2151
};

2152 2153
static const struct gf100_gr_func
gf100_gr = {
2154
	.init = gf100_gr_init,
2155
	.init_gpc_mmu = gf100_gr_init_gpc_mmu,
2156
	.init_vsc_stream_master = gf100_gr_init_vsc_stream_master,
2157
	.init_zcull = gf100_gr_init_zcull,
2158
	.init_num_active_ltcs = gf100_gr_init_num_active_ltcs,
2159
	.init_fecs_exceptions = gf100_gr_init_fecs_exceptions,
2160
	.init_40601c = gf100_gr_init_40601c,
2161
	.init_419cc0 = gf100_gr_init_419cc0,
2162
	.init_419eb4 = gf100_gr_init_419eb4,
2163
	.init_tex_hww_esr = gf100_gr_init_tex_hww_esr,
2164
	.init_shader_exceptions = gf100_gr_init_shader_exceptions,
2165 2166 2167
	.mmio = gf100_gr_pack_mmio,
	.fecs.ucode = &gf100_gr_fecs_ucode,
	.gpccs.ucode = &gf100_gr_gpccs_ucode,
2168
	.rops = gf100_gr_rops,
2169 2170 2171 2172 2173 2174 2175 2176 2177 2178
	.grctx = &gf100_grctx,
	.sclass = {
		{ -1, -1, FERMI_TWOD_A },
		{ -1, -1, FERMI_MEMORY_TO_MEMORY_FORMAT_A },
		{ -1, -1, FERMI_A, &gf100_fermi },
		{ -1, -1, FERMI_COMPUTE_A },
		{}
	}
};

2179 2180 2181 2182 2183
int
gf100_gr_new(struct nvkm_device *device, int index, struct nvkm_gr **pgr)
{
	return gf100_gr_new_(&gf100_gr, device, index, pgr);
}