gf100.c 48.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 30 31 32
#include "gf100.h"
#include "ctxgf100.h"
#include "fuc/os.h"

#include <core/client.h>
#include <core/option.h>
#include <subdev/fb.h>
#include <subdev/mc.h>
#include <subdev/timer.h>
33
#include <engine/fifo.h>
34 35 36

#include <nvif/class.h>
#include <nvif/unpack.h>
37

38 39 40 41 42
/*******************************************************************************
 * Zero Bandwidth Clear
 ******************************************************************************/

static void
B
Ben Skeggs 已提交
43
gf100_gr_zbc_clear_color(struct gf100_gr *gr, int zbc)
44
{
45
	struct nvkm_device *device = gr->base.engine.subdev.device;
B
Ben Skeggs 已提交
46
	if (gr->zbc_color[zbc].format) {
47 48 49 50 51 52 53 54
		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 */
55 56 57
}

static int
B
Ben Skeggs 已提交
58
gf100_gr_zbc_color_get(struct gf100_gr *gr, int format,
59
		       const u32 ds[4], const u32 l2[4])
60
{
B
Ben Skeggs 已提交
61
	struct nvkm_ltc *ltc = nvkm_ltc(gr);
62 63 64
	int zbc = -ENOSPC, i;

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

82 83 84
	if (zbc < 0)
		return zbc;

B
Ben Skeggs 已提交
85 86 87
	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;
88
	ltc->zbc_color_get(ltc, zbc, l2);
B
Ben Skeggs 已提交
89
	gf100_gr_zbc_clear_color(gr, zbc);
90 91 92 93
	return zbc;
}

static void
B
Ben Skeggs 已提交
94
gf100_gr_zbc_clear_depth(struct gf100_gr *gr, int zbc)
95
{
96
	struct nvkm_device *device = gr->base.engine.subdev.device;
B
Ben Skeggs 已提交
97
	if (gr->zbc_depth[zbc].format)
98 99 100 101
		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 */
102 103 104
}

static int
B
Ben Skeggs 已提交
105
gf100_gr_zbc_depth_get(struct gf100_gr *gr, int format,
106
		       const u32 ds, const u32 l2)
107
{
B
Ben Skeggs 已提交
108
	struct nvkm_ltc *ltc = nvkm_ltc(gr);
109 110 111
	int zbc = -ENOSPC, i;

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

127 128 129
	if (zbc < 0)
		return zbc;

B
Ben Skeggs 已提交
130 131 132
	gr->zbc_depth[zbc].format = format;
	gr->zbc_depth[zbc].ds = ds;
	gr->zbc_depth[zbc].l2 = l2;
133
	ltc->zbc_depth_get(ltc, zbc, l2);
B
Ben Skeggs 已提交
134
	gf100_gr_zbc_clear_depth(gr, zbc);
135 136 137
	return zbc;
}

138 139 140 141
/*******************************************************************************
 * Graphics object classes
 ******************************************************************************/

142
static int
143
gf100_fermi_mthd_zbc_color(struct nvkm_object *object, void *data, u32 size)
144
{
B
Ben Skeggs 已提交
145
	struct gf100_gr *gr = (void *)object->engine;
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
	union {
		struct fermi_a_zbc_color_v0 v0;
	} *args = data;
	int ret;

	if (nvif_unpack(args->v0, 0, 0, false)) {
		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 已提交
172
			ret = gf100_gr_zbc_color_get(gr, args->v0.format,
173 174
							   args->v0.ds,
							   args->v0.l2);
175 176 177 178 179 180 181 182 183 184 185 186 187 188
			if (ret >= 0) {
				args->v0.index = ret;
				return 0;
			}
			break;
		default:
			return -EINVAL;
		}
	}

	return ret;
}

static int
189
gf100_fermi_mthd_zbc_depth(struct nvkm_object *object, void *data, u32 size)
190
{
B
Ben Skeggs 已提交
191
	struct gf100_gr *gr = (void *)object->engine;
192 193 194 195 196 197 198 199
	union {
		struct fermi_a_zbc_depth_v0 v0;
	} *args = data;
	int ret;

	if (nvif_unpack(args->v0, 0, 0, false)) {
		switch (args->v0.format) {
		case FERMI_A_ZBC_DEPTH_V0_FMT_FP32:
B
Ben Skeggs 已提交
200
			ret = gf100_gr_zbc_depth_get(gr, args->v0.format,
201 202
							   args->v0.ds,
							   args->v0.l2);
203 204 205 206 207 208 209 210 211 212
			return (ret >= 0) ? 0 : -ENOSPC;
		default:
			return -EINVAL;
		}
	}

	return ret;
}

static int
213
gf100_fermi_mthd(struct nvkm_object *object, u32 mthd, void *data, u32 size)
214 215 216
{
	switch (mthd) {
	case FERMI_A_ZBC_COLOR:
217
		return gf100_fermi_mthd_zbc_color(object, data, size);
218
	case FERMI_A_ZBC_DEPTH:
219
		return gf100_fermi_mthd_zbc_depth(object, data, size);
220 221 222 223 224 225
	default:
		break;
	}
	return -EINVAL;
}

226 227 228 229
struct nvkm_ofuncs
gf100_fermi_ofuncs = {
	.ctor = _nvkm_object_ctor,
	.dtor = nvkm_object_destroy,
230 231
	.init = _nvkm_object_init,
	.fini = _nvkm_object_fini,
232
	.mthd = gf100_fermi_mthd,
233 234
};

235 236
static void
gf100_gr_mthd_set_shader_exceptions(struct nvkm_device *device, u32 data)
237
{
238 239
	nvkm_wr32(device, 0x419e44, data ? 0xffffffff : 0x00000000);
	nvkm_wr32(device, 0x419e4c, data ? 0xffffffff : 0x00000000);
240 241
}

242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
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;
}
261

262 263
struct nvkm_oclass
gf100_gr_sclass[] = {
264 265
	{ FERMI_TWOD_A, &nvkm_object_ofuncs },
	{ FERMI_MEMORY_TO_MEMORY_FORMAT_A, &nvkm_object_ofuncs },
266 267
	{ FERMI_A, &gf100_fermi_ofuncs },
	{ FERMI_COMPUTE_A, &nvkm_object_ofuncs },
268 269 270 271 272 273
	{}
};

/*******************************************************************************
 * PGRAPH context
 ******************************************************************************/
274

275
int
276 277 278
gf100_gr_context_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
		      struct nvkm_oclass *oclass, void *args, u32 size,
		      struct nvkm_object **pobject)
279
{
280
	struct nvkm_vm *vm = nvkm_client(parent)->vm;
B
Ben Skeggs 已提交
281 282 283
	struct gf100_gr *gr = (void *)engine;
	struct gf100_gr_data *data = gr->mmio_data;
	struct gf100_gr_mmio *mmio = gr->mmio_list;
284
	struct gf100_gr_chan *chan;
285
	struct nvkm_device *device = gr->base.engine.subdev.device;
286
	struct nvkm_gpuobj *image;
287 288
	int ret, i;

289
	/* allocate memory for context, and fill with default values */
290
	ret = nvkm_gr_context_create(parent, engine, oclass, NULL,
B
Ben Skeggs 已提交
291
				     gr->size, 0x100,
292
				     NVOBJ_FLAG_ZERO_ALLOC, &chan);
293
	*pobject = nv_object(chan);
294 295 296
	if (ret)
		return ret;

297 298 299 300
	/* 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.
	 */
301 302
	ret = nvkm_memory_new(device, NVKM_MEM_TARGET_INST, 0x1000, 0x100,
			      false, &chan->mmio);
303 304 305
	if (ret)
		return ret;

306 307
	ret = nvkm_vm_get(vm, 0x1000, 12, NV_MEM_ACCESS_RW |
			  NV_MEM_ACCESS_SYS, &chan->mmio_vma);
308 309 310
	if (ret)
		return ret;

311 312
	nvkm_memory_map(chan->mmio, &chan->mmio_vma, 0);

313
	/* allocate buffers referenced by mmio list */
B
Ben Skeggs 已提交
314
	for (i = 0; data->size && i < ARRAY_SIZE(gr->mmio_data); i++) {
315 316 317
		ret = nvkm_memory_new(device, NVKM_MEM_TARGET_INST,
				      data->size, data->align, false,
				      &chan->data[i].mem);
318 319
		if (ret)
			return ret;
320

321 322
		ret = nvkm_vm_get(vm, nvkm_memory_size(chan->data[i].mem),
				  12, data->access, &chan->data[i].vma);
323 324
		if (ret)
			return ret;
325

326
		nvkm_memory_map(chan->data[i].mem, &chan->data[i].vma, 0);
327
		data++;
328 329
	}

330
	/* finally, fill in the mmio list and point the context at it */
331
	nvkm_kmap(chan->mmio);
B
Ben Skeggs 已提交
332
	for (i = 0; mmio->addr && i < ARRAY_SIZE(gr->mmio_list); i++) {
333 334
		u32 addr = mmio->addr;
		u32 data = mmio->data;
335

336
		if (mmio->buffer >= 0) {
337
			u64 info = chan->data[mmio->buffer].vma.offset;
338 339
			data |= info >> mmio->shift;
		}
340

341 342
		nvkm_wo32(chan->mmio, chan->mmio_nr++ * 4, addr);
		nvkm_wo32(chan->mmio, chan->mmio_nr++ * 4, data);
343 344
		mmio++;
	}
345
	nvkm_done(chan->mmio);
346

347 348
	image = &chan->base.base.gpuobj;
	nvkm_kmap(image);
B
Ben Skeggs 已提交
349
	for (i = 0; i < gr->size; i += 4)
350
		nvkm_wo32(image, i, gr->data[i / 4]);
351

B
Ben Skeggs 已提交
352
	if (!gr->firmware) {
353 354
		nvkm_wo32(image, 0x00, chan->mmio_nr / 2);
		nvkm_wo32(image, 0x04, chan->mmio_vma.offset >> 8);
355
	} else {
356 357 358 359 360 361 362 363 364
		nvkm_wo32(image, 0xf4, 0);
		nvkm_wo32(image, 0xf8, 0);
		nvkm_wo32(image, 0x10, chan->mmio_nr / 2);
		nvkm_wo32(image, 0x14, lower_32_bits(chan->mmio_vma.offset));
		nvkm_wo32(image, 0x18, upper_32_bits(chan->mmio_vma.offset));
		nvkm_wo32(image, 0x1c, 1);
		nvkm_wo32(image, 0x20, 0);
		nvkm_wo32(image, 0x28, 0);
		nvkm_wo32(image, 0x2c, 0);
365
	}
366
	nvkm_done(image);
367
	return 0;
368 369
}

370
void
371
gf100_gr_context_dtor(struct nvkm_object *object)
372
{
373
	struct gf100_gr_chan *chan = (void *)object;
374 375
	int i;

376
	for (i = 0; i < ARRAY_SIZE(chan->data); i++) {
377 378 379 380 381
		if (chan->data[i].vma.node) {
			nvkm_vm_unmap(&chan->data[i].vma);
			nvkm_vm_put(&chan->data[i].vma);
		}
		nvkm_memory_del(&chan->data[i].mem);
382
	}
383

384 385 386 387 388
	if (chan->mmio_vma.node) {
		nvkm_vm_unmap(&chan->mmio_vma);
		nvkm_vm_put(&chan->mmio_vma);
	}
	nvkm_memory_del(&chan->mmio);
389

390
	nvkm_gr_context_destroy(&chan->base);
391 392
}

393
/*******************************************************************************
394
 * PGRAPH register lists
395 396
 ******************************************************************************/

397 398
const struct gf100_gr_init
gf100_gr_init_main_0[] = {
399 400 401 402 403 404 405 406 407 408 409 410 411 412
	{ 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 },
	{}
};

413 414
const struct gf100_gr_init
gf100_gr_init_fe_0[] = {
415 416 417 418 419
	{ 0x40415c,   1, 0x04, 0x00000000 },
	{ 0x404170,   1, 0x04, 0x00000000 },
	{}
};

420 421
const struct gf100_gr_init
gf100_gr_init_pri_0[] = {
422 423 424 425
	{ 0x404488,   2, 0x04, 0x00000000 },
	{}
};

426 427
const struct gf100_gr_init
gf100_gr_init_rstr2d_0[] = {
428 429 430 431
	{ 0x407808,   1, 0x04, 0x00000000 },
	{}
};

432 433
const struct gf100_gr_init
gf100_gr_init_pd_0[] = {
434 435 436 437
	{ 0x406024,   1, 0x04, 0x00000000 },
	{}
};

438 439
const struct gf100_gr_init
gf100_gr_init_ds_0[] = {
440 441 442 443 444 445
	{ 0x405844,   1, 0x04, 0x00ffffff },
	{ 0x405850,   1, 0x04, 0x00000000 },
	{ 0x405908,   1, 0x04, 0x00000000 },
	{}
};

446 447
const struct gf100_gr_init
gf100_gr_init_scc_0[] = {
448 449 450 451
	{ 0x40803c,   1, 0x04, 0x00000000 },
	{}
};

452 453
const struct gf100_gr_init
gf100_gr_init_prop_0[] = {
454
	{ 0x4184a0,   1, 0x04, 0x00000000 },
455 456 457
	{}
};

458 459
const struct gf100_gr_init
gf100_gr_init_gpc_unk_0[] = {
460 461 462 463
	{ 0x418604,   1, 0x04, 0x00000000 },
	{ 0x418680,   1, 0x04, 0x00000000 },
	{ 0x418714,   1, 0x04, 0x80000000 },
	{ 0x418384,   1, 0x04, 0x00000000 },
464 465 466
	{}
};

467 468
const struct gf100_gr_init
gf100_gr_init_setup_0[] = {
469
	{ 0x418814,   3, 0x04, 0x00000000 },
470 471 472
	{}
};

473 474
const struct gf100_gr_init
gf100_gr_init_crstr_0[] = {
475
	{ 0x418b04,   1, 0x04, 0x00000000 },
476 477 478
	{}
};

479 480
const struct gf100_gr_init
gf100_gr_init_setup_1[] = {
481 482 483 484
	{ 0x4188c8,   1, 0x04, 0x80000000 },
	{ 0x4188cc,   1, 0x04, 0x00000000 },
	{ 0x4188d0,   1, 0x04, 0x00010000 },
	{ 0x4188d4,   1, 0x04, 0x00000001 },
485 486 487
	{}
};

488 489
const struct gf100_gr_init
gf100_gr_init_zcull_0[] = {
490 491 492 493 494
	{ 0x418910,   1, 0x04, 0x00010001 },
	{ 0x418914,   1, 0x04, 0x00000301 },
	{ 0x418918,   1, 0x04, 0x00800000 },
	{ 0x418980,   1, 0x04, 0x77777770 },
	{ 0x418984,   3, 0x04, 0x77777777 },
495 496 497
	{}
};

498 499
const struct gf100_gr_init
gf100_gr_init_gpm_0[] = {
500 501
	{ 0x418c04,   1, 0x04, 0x00000000 },
	{ 0x418c88,   1, 0x04, 0x00000000 },
502 503 504
	{}
};

505 506
const struct gf100_gr_init
gf100_gr_init_gpc_unk_1[] = {
507 508 509 510
	{ 0x418d00,   1, 0x04, 0x00000000 },
	{ 0x418f08,   1, 0x04, 0x00000000 },
	{ 0x418e00,   1, 0x04, 0x00000050 },
	{ 0x418e08,   1, 0x04, 0x00000000 },
511 512 513
	{}
};

514 515
const struct gf100_gr_init
gf100_gr_init_gcc_0[] = {
516 517 518 519 520
	{ 0x41900c,   1, 0x04, 0x00000000 },
	{ 0x419018,   1, 0x04, 0x00000000 },
	{}
};

521 522
const struct gf100_gr_init
gf100_gr_init_tpccs_0[] = {
523 524
	{ 0x419d08,   2, 0x04, 0x00000000 },
	{ 0x419d10,   1, 0x04, 0x00000014 },
525 526 527
	{}
};

528 529
const struct gf100_gr_init
gf100_gr_init_tex_0[] = {
530 531 532
	{ 0x419ab0,   1, 0x04, 0x00000000 },
	{ 0x419ab8,   1, 0x04, 0x000000e7 },
	{ 0x419abc,   2, 0x04, 0x00000000 },
533 534 535
	{}
};

536 537
const struct gf100_gr_init
gf100_gr_init_pe_0[] = {
538 539 540 541
	{ 0x41980c,   3, 0x04, 0x00000000 },
	{ 0x419844,   1, 0x04, 0x00000000 },
	{ 0x41984c,   1, 0x04, 0x00005bc5 },
	{ 0x419850,   4, 0x04, 0x00000000 },
542 543 544
	{}
};

545 546
const struct gf100_gr_init
gf100_gr_init_l1c_0[] = {
547 548 549 550 551 552
	{ 0x419c98,   1, 0x04, 0x00000000 },
	{ 0x419ca8,   1, 0x04, 0x80000000 },
	{ 0x419cb4,   1, 0x04, 0x00000000 },
	{ 0x419cb8,   1, 0x04, 0x00008bf4 },
	{ 0x419cbc,   1, 0x04, 0x28137606 },
	{ 0x419cc0,   2, 0x04, 0x00000000 },
553 554 555
	{}
};

556 557
const struct gf100_gr_init
gf100_gr_init_wwdx_0[] = {
558 559
	{ 0x419bd4,   1, 0x04, 0x00800000 },
	{ 0x419bdc,   1, 0x04, 0x00000000 },
560 561 562
	{}
};

563 564
const struct gf100_gr_init
gf100_gr_init_tpccs_1[] = {
565
	{ 0x419d2c,   1, 0x04, 0x00000000 },
566 567 568
	{}
};

569 570
const struct gf100_gr_init
gf100_gr_init_mpc_0[] = {
571
	{ 0x419c0c,   1, 0x04, 0x00000000 },
572 573 574
	{}
};

575 576
static const struct gf100_gr_init
gf100_gr_init_sm_0[] = {
577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592
	{ 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 },
	{}
};

593 594
const struct gf100_gr_init
gf100_gr_init_be_0[] = {
595 596 597 598 599 600 601 602 603 604
	{ 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 },
	{}
};

605 606
const struct gf100_gr_init
gf100_gr_init_fe_1[] = {
607 608 609 610
	{ 0x4040f0,   1, 0x04, 0x00000000 },
	{}
};

611 612
const struct gf100_gr_init
gf100_gr_init_pe_1[] = {
613 614 615 616
	{ 0x419880,   1, 0x04, 0x00000002 },
	{}
};

617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645
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 已提交
646 647 648
	{}
};

649 650 651 652
/*******************************************************************************
 * PGRAPH engine/subdev functions
 ******************************************************************************/

653
void
B
Ben Skeggs 已提交
654
gf100_gr_zbc_init(struct gf100_gr *gr)
655 656 657 658 659 660 661 662 663
{
	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 };
B
Ben Skeggs 已提交
664
	struct nvkm_ltc *ltc = nvkm_ltc(gr);
665 666
	int index;

B
Ben Skeggs 已提交
667 668 669 670 671 672 673
	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);
674 675 676
	}

	for (index = ltc->zbc_min; index <= ltc->zbc_max; index++)
B
Ben Skeggs 已提交
677
		gf100_gr_zbc_clear_color(gr, index);
678
	for (index = ltc->zbc_min; index <= ltc->zbc_max; index++)
B
Ben Skeggs 已提交
679
		gf100_gr_zbc_clear_depth(gr, index);
680 681
}

682 683 684 685 686 687
/**
 * 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 已提交
688
gf100_gr_wait_idle(struct gf100_gr *gr)
689
{
690 691
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
692 693 694 695 696 697 698 699
	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
		 */
700
		nvkm_rd32(device, 0x400700);
701

702 703 704
		gr_enabled = nvkm_rd32(device, 0x200) & 0x1000;
		ctxsw_active = nvkm_rd32(device, 0x2640) & 0x8000;
		gr_busy = nvkm_rd32(device, 0x40060c) & 0x1;
705 706 707 708 709

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

710 711 712
	nvkm_error(subdev,
		   "wait for idle timeout (en: %d, ctxsw: %d, busy: %d)\n",
		   gr_enabled, ctxsw_active, gr_busy);
713 714 715
	return -EAGAIN;
}

716
void
B
Ben Skeggs 已提交
717
gf100_gr_mmio(struct gf100_gr *gr, const struct gf100_gr_pack *p)
718
{
719
	struct nvkm_device *device = gr->base.engine.subdev.device;
720 721
	const struct gf100_gr_pack *pack;
	const struct gf100_gr_init *init;
722 723 724 725 726

	pack_for_each_init(init, pack, p) {
		u32 next = init->addr + init->count * init->pitch;
		u32 addr = init->addr;
		while (addr < next) {
727
			nvkm_wr32(device, addr, init->data);
728 729 730
			addr += init->pitch;
		}
	}
731 732 733
}

void
B
Ben Skeggs 已提交
734
gf100_gr_icmd(struct gf100_gr *gr, const struct gf100_gr_pack *p)
735
{
736
	struct nvkm_device *device = gr->base.engine.subdev.device;
737 738
	const struct gf100_gr_pack *pack;
	const struct gf100_gr_init *init;
739
	u32 data = 0;
740

741
	nvkm_wr32(device, 0x400208, 0x80000000);
742 743 744 745 746 747

	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) {
748
			nvkm_wr32(device, 0x400204, init->data);
749 750
			data = init->data;
		}
751

752
		while (addr < next) {
753
			nvkm_wr32(device, 0x400200, addr);
754 755 756 757 758
			/**
			 * Wait for GR to go idle after submitting a
			 * GO_IDLE bundle
			 */
			if ((addr & 0xffff) == 0xe100)
B
Ben Skeggs 已提交
759
				gf100_gr_wait_idle(gr);
760 761 762 763
			nvkm_msec(device, 2000,
				if (!(nvkm_rd32(device, 0x400700) & 0x00000004))
					break;
			);
764 765 766
			addr += init->pitch;
		}
	}
767

768
	nvkm_wr32(device, 0x400208, 0x00000000);
769 770 771
}

void
B
Ben Skeggs 已提交
772
gf100_gr_mthd(struct gf100_gr *gr, const struct gf100_gr_pack *p)
773
{
774
	struct nvkm_device *device = gr->base.engine.subdev.device;
775 776
	const struct gf100_gr_pack *pack;
	const struct gf100_gr_init *init;
777
	u32 data = 0;
778

779 780 781 782 783 784
	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) {
785
			nvkm_wr32(device, 0x40448c, init->data);
786 787 788 789
			data = init->data;
		}

		while (addr < next) {
790
			nvkm_wr32(device, 0x404488, ctrl | (addr << 14));
791
			addr += init->pitch;
792 793 794 795 796
		}
	}
}

u64
B
Ben Skeggs 已提交
797
gf100_gr_units(struct nvkm_gr *obj)
798
{
B
Ben Skeggs 已提交
799
	struct gf100_gr *gr = container_of(obj, typeof(*gr), base);
800 801
	u64 cfg;

B
Ben Skeggs 已提交
802 803 804
	cfg  = (u32)gr->gpc_nr;
	cfg |= (u32)gr->tpc_total << 8;
	cfg |= (u64)gr->rop_nr << 32;
805 806

	return cfg;
807 808
}

809 810 811 812 813 814 815 816 817 818 819 820
static const struct nvkm_bitfield gk104_sked_error[] = {
	{ 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" },
	{ 0x02000000, "SHARED_CONFIG_TOO_SMALL" },
	{ 0x04000000, "TOTAL_REGISTER_COUNT" },
821 822 823
	{}
};

824 825 826 827 828 829 830
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" },
831 832 833
	{}
};

834
static void
B
Ben Skeggs 已提交
835
gf100_gr_trap_gpc_rop(struct gf100_gr *gr, int gpc)
836
{
837 838 839
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
	char error[128];
840
	u32 trap[4];
841

842
	trap[0] = nvkm_rd32(device, GPC_UNIT(gpc, 0x0420)) & 0x3fffffff;
843 844 845
	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));
846

847
	nvkm_snprintbf(error, sizeof(error), gf100_gpc_rop_error, trap[0]);
848

849 850 851 852
	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);
853
	nvkm_wr32(device, GPC_UNIT(gpc, 0x0420), 0xc0000000);
854 855
}

856
static const struct nvkm_enum gf100_mp_warp_error[] = {
857 858 859 860 861 862 863 864 865 866 867 868
	{ 0x00, "NO_ERROR" },
	{ 0x01, "STACK_MISMATCH" },
	{ 0x05, "MISALIGNED_PC" },
	{ 0x08, "MISALIGNED_GPR" },
	{ 0x09, "INVALID_OPCODE" },
	{ 0x0d, "GPR_OUT_OF_BOUNDS" },
	{ 0x0e, "MEM_OUT_OF_BOUNDS" },
	{ 0x0f, "UNALIGNED_MEM_ACCESS" },
	{ 0x11, "INVALID_PARAM" },
	{}
};

869
static const struct nvkm_bitfield gf100_mp_global_error[] = {
870 871 872 873 874 875
	{ 0x00000004, "MULTIPLE_WARP_ERRORS" },
	{ 0x00000008, "OUT_OF_STACK_SPACE" },
	{}
};

static void
B
Ben Skeggs 已提交
876
gf100_gr_trap_mp(struct gf100_gr *gr, int gpc, int tpc)
877
{
878 879
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
880 881
	u32 werr = nvkm_rd32(device, TPC_UNIT(gpc, tpc, 0x648));
	u32 gerr = nvkm_rd32(device, TPC_UNIT(gpc, tpc, 0x650));
882 883
	const struct nvkm_enum *warp;
	char glob[128];
884

885 886 887 888 889 890
	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 : "");
891

892 893
	nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x648), 0x00000000);
	nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x650), gerr);
894 895
}

896
static void
B
Ben Skeggs 已提交
897
gf100_gr_trap_tpc(struct gf100_gr *gr, int gpc, int tpc)
898
{
899 900
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
901
	u32 stat = nvkm_rd32(device, TPC_UNIT(gpc, tpc, 0x0508));
902 903

	if (stat & 0x00000001) {
904
		u32 trap = nvkm_rd32(device, TPC_UNIT(gpc, tpc, 0x0224));
905
		nvkm_error(subdev, "GPC%d/TPC%d/TEX: %08x\n", gpc, tpc, trap);
906
		nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x0224), 0xc0000000);
907 908 909 910
		stat &= ~0x00000001;
	}

	if (stat & 0x00000002) {
B
Ben Skeggs 已提交
911
		gf100_gr_trap_mp(gr, gpc, tpc);
912 913 914 915
		stat &= ~0x00000002;
	}

	if (stat & 0x00000004) {
916
		u32 trap = nvkm_rd32(device, TPC_UNIT(gpc, tpc, 0x0084));
917
		nvkm_error(subdev, "GPC%d/TPC%d/POLY: %08x\n", gpc, tpc, trap);
918
		nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x0084), 0xc0000000);
919 920 921 922
		stat &= ~0x00000004;
	}

	if (stat & 0x00000008) {
923
		u32 trap = nvkm_rd32(device, TPC_UNIT(gpc, tpc, 0x048c));
924
		nvkm_error(subdev, "GPC%d/TPC%d/L1C: %08x\n", gpc, tpc, trap);
925
		nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x048c), 0xc0000000);
926 927 928 929
		stat &= ~0x00000008;
	}

	if (stat) {
930
		nvkm_error(subdev, "GPC%d/TPC%d/%08x: unknown\n", gpc, tpc, stat);
931 932 933 934
	}
}

static void
B
Ben Skeggs 已提交
935
gf100_gr_trap_gpc(struct gf100_gr *gr, int gpc)
936
{
937 938
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
939
	u32 stat = nvkm_rd32(device, GPC_UNIT(gpc, 0x2c90));
940 941 942
	int tpc;

	if (stat & 0x00000001) {
B
Ben Skeggs 已提交
943
		gf100_gr_trap_gpc_rop(gr, gpc);
944 945 946 947
		stat &= ~0x00000001;
	}

	if (stat & 0x00000002) {
948
		u32 trap = nvkm_rd32(device, GPC_UNIT(gpc, 0x0900));
949
		nvkm_error(subdev, "GPC%d/ZCULL: %08x\n", gpc, trap);
950
		nvkm_wr32(device, GPC_UNIT(gpc, 0x0900), 0xc0000000);
951 952 953 954
		stat &= ~0x00000002;
	}

	if (stat & 0x00000004) {
955
		u32 trap = nvkm_rd32(device, GPC_UNIT(gpc, 0x1028));
956
		nvkm_error(subdev, "GPC%d/CCACHE: %08x\n", gpc, trap);
957
		nvkm_wr32(device, GPC_UNIT(gpc, 0x1028), 0xc0000000);
958 959 960 961
		stat &= ~0x00000004;
	}

	if (stat & 0x00000008) {
962
		u32 trap = nvkm_rd32(device, GPC_UNIT(gpc, 0x0824));
963
		nvkm_error(subdev, "GPC%d/ESETUP: %08x\n", gpc, trap);
964
		nvkm_wr32(device, GPC_UNIT(gpc, 0x0824), 0xc0000000);
965 966 967
		stat &= ~0x00000009;
	}

B
Ben Skeggs 已提交
968
	for (tpc = 0; tpc < gr->tpc_nr[gpc]; tpc++) {
969 970
		u32 mask = 0x00010000 << tpc;
		if (stat & mask) {
B
Ben Skeggs 已提交
971
			gf100_gr_trap_tpc(gr, gpc, tpc);
972
			nvkm_wr32(device, GPC_UNIT(gpc, 0x2c90), mask);
973 974 975 976 977
			stat &= ~mask;
		}
	}

	if (stat) {
978
		nvkm_error(subdev, "GPC%d/%08x: unknown\n", gpc, stat);
979 980 981 982
	}
}

static void
B
Ben Skeggs 已提交
983
gf100_gr_trap_intr(struct gf100_gr *gr)
984
{
985 986
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
987
	u32 trap = nvkm_rd32(device, 0x400108);
988
	int rop, gpc;
989 990

	if (trap & 0x00000001) {
991
		u32 stat = nvkm_rd32(device, 0x404000);
992
		nvkm_error(subdev, "DISPATCH %08x\n", stat);
993 994
		nvkm_wr32(device, 0x404000, 0xc0000000);
		nvkm_wr32(device, 0x400108, 0x00000001);
995 996 997 998
		trap &= ~0x00000001;
	}

	if (trap & 0x00000002) {
999
		u32 stat = nvkm_rd32(device, 0x404600);
1000
		nvkm_error(subdev, "M2MF %08x\n", stat);
1001 1002
		nvkm_wr32(device, 0x404600, 0xc0000000);
		nvkm_wr32(device, 0x400108, 0x00000002);
1003 1004 1005 1006
		trap &= ~0x00000002;
	}

	if (trap & 0x00000008) {
1007
		u32 stat = nvkm_rd32(device, 0x408030);
1008
		nvkm_error(subdev, "CCACHE %08x\n", stat);
1009 1010
		nvkm_wr32(device, 0x408030, 0xc0000000);
		nvkm_wr32(device, 0x400108, 0x00000008);
1011 1012 1013 1014
		trap &= ~0x00000008;
	}

	if (trap & 0x00000010) {
1015
		u32 stat = nvkm_rd32(device, 0x405840);
1016
		nvkm_error(subdev, "SHADER %08x\n", stat);
1017 1018
		nvkm_wr32(device, 0x405840, 0xc0000000);
		nvkm_wr32(device, 0x400108, 0x00000010);
1019 1020 1021 1022
		trap &= ~0x00000010;
	}

	if (trap & 0x00000040) {
1023
		u32 stat = nvkm_rd32(device, 0x40601c);
1024
		nvkm_error(subdev, "UNK6 %08x\n", stat);
1025 1026
		nvkm_wr32(device, 0x40601c, 0xc0000000);
		nvkm_wr32(device, 0x400108, 0x00000040);
1027 1028 1029 1030
		trap &= ~0x00000040;
	}

	if (trap & 0x00000080) {
1031
		u32 stat = nvkm_rd32(device, 0x404490);
1032
		nvkm_error(subdev, "MACRO %08x\n", stat);
1033 1034
		nvkm_wr32(device, 0x404490, 0xc0000000);
		nvkm_wr32(device, 0x400108, 0x00000080);
1035 1036 1037
		trap &= ~0x00000080;
	}

1038
	if (trap & 0x00000100) {
1039 1040
		u32 stat = nvkm_rd32(device, 0x407020) & 0x3fffffff;
		char sked[128];
1041

1042 1043
		nvkm_snprintbf(sked, sizeof(sked), gk104_sked_error, stat);
		nvkm_error(subdev, "SKED: %08x [%s]\n", stat, sked);
1044

1045
		if (stat)
1046 1047
			nvkm_wr32(device, 0x407020, 0x40000000);
		nvkm_wr32(device, 0x400108, 0x00000100);
1048 1049 1050
		trap &= ~0x00000100;
	}

1051
	if (trap & 0x01000000) {
1052
		u32 stat = nvkm_rd32(device, 0x400118);
B
Ben Skeggs 已提交
1053
		for (gpc = 0; stat && gpc < gr->gpc_nr; gpc++) {
1054 1055
			u32 mask = 0x00000001 << gpc;
			if (stat & mask) {
B
Ben Skeggs 已提交
1056
				gf100_gr_trap_gpc(gr, gpc);
1057
				nvkm_wr32(device, 0x400118, mask);
1058 1059 1060
				stat &= ~mask;
			}
		}
1061
		nvkm_wr32(device, 0x400108, 0x01000000);
1062 1063 1064 1065
		trap &= ~0x01000000;
	}

	if (trap & 0x02000000) {
B
Ben Skeggs 已提交
1066
		for (rop = 0; rop < gr->rop_nr; rop++) {
1067 1068
			u32 statz = nvkm_rd32(device, ROP_UNIT(rop, 0x070));
			u32 statc = nvkm_rd32(device, ROP_UNIT(rop, 0x144));
1069
			nvkm_error(subdev, "ROP%d %08x %08x\n",
1070
				 rop, statz, statc);
1071 1072
			nvkm_wr32(device, ROP_UNIT(rop, 0x070), 0xc0000000);
			nvkm_wr32(device, ROP_UNIT(rop, 0x144), 0xc0000000);
1073
		}
1074
		nvkm_wr32(device, 0x400108, 0x02000000);
1075 1076 1077 1078
		trap &= ~0x02000000;
	}

	if (trap) {
1079
		nvkm_error(subdev, "TRAP UNHANDLED %08x\n", trap);
1080
		nvkm_wr32(device, 0x400108, trap);
1081 1082 1083
	}
}

1084
static void
B
Ben Skeggs 已提交
1085
gf100_gr_ctxctl_debug_unit(struct gf100_gr *gr, u32 base)
1086
{
1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100
	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));
1101 1102 1103
}

void
B
Ben Skeggs 已提交
1104
gf100_gr_ctxctl_debug(struct gf100_gr *gr)
1105
{
1106 1107
	struct nvkm_device *device = gr->base.engine.subdev.device;
	u32 gpcnr = nvkm_rd32(device, 0x409604) & 0xffff;
1108 1109
	u32 gpc;

B
Ben Skeggs 已提交
1110
	gf100_gr_ctxctl_debug_unit(gr, 0x409000);
1111
	for (gpc = 0; gpc < gpcnr; gpc++)
B
Ben Skeggs 已提交
1112
		gf100_gr_ctxctl_debug_unit(gr, 0x502000 + (gpc * 0x8000));
1113 1114 1115
}

static void
B
Ben Skeggs 已提交
1116
gf100_gr_ctxctl_isr(struct gf100_gr *gr)
1117
{
1118 1119
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
1120
	u32 stat = nvkm_rd32(device, 0x409c18);
1121

1122
	if (stat & 0x00000001) {
1123
		u32 code = nvkm_rd32(device, 0x409814);
1124
		if (code == E_BAD_FWMTHD) {
1125 1126
			u32 class = nvkm_rd32(device, 0x409808);
			u32  addr = nvkm_rd32(device, 0x40980c);
1127 1128
			u32  subc = (addr & 0x00070000) >> 16;
			u32  mthd = (addr & 0x00003ffc);
1129
			u32  data = nvkm_rd32(device, 0x409810);
1130

1131 1132 1133
			nvkm_error(subdev, "FECS MTHD subc %d class %04x "
					   "mthd %04x data %08x\n",
				   subc, class, mthd, data);
1134

1135
			nvkm_wr32(device, 0x409c20, 0x00000001);
1136 1137
			stat &= ~0x00000001;
		} else {
1138
			nvkm_error(subdev, "FECS ucode error %d\n", code);
1139 1140
		}
	}
1141

1142
	if (stat & 0x00080000) {
1143
		nvkm_error(subdev, "FECS watchdog timeout\n");
B
Ben Skeggs 已提交
1144
		gf100_gr_ctxctl_debug(gr);
1145
		nvkm_wr32(device, 0x409c20, 0x00080000);
1146 1147 1148 1149
		stat &= ~0x00080000;
	}

	if (stat) {
1150
		nvkm_error(subdev, "FECS %08x\n", stat);
B
Ben Skeggs 已提交
1151
		gf100_gr_ctxctl_debug(gr);
1152
		nvkm_wr32(device, 0x409c20, stat);
1153
	}
1154 1155
}

1156
static void
1157
gf100_gr_intr(struct nvkm_subdev *subdev)
1158
{
1159 1160
	struct gf100_gr *gr = (void *)subdev;
	struct nvkm_device *device = gr->base.engine.subdev.device;
1161 1162
	struct nvkm_fifo_chan *chan;
	unsigned long flags;
1163 1164 1165
	u64 inst = nvkm_rd32(device, 0x409b00) & 0x0fffffff;
	u32 stat = nvkm_rd32(device, 0x400100);
	u32 addr = nvkm_rd32(device, 0x400704);
1166 1167
	u32 mthd = (addr & 0x00003ffc);
	u32 subc = (addr & 0x00070000) >> 16;
1168 1169
	u32 data = nvkm_rd32(device, 0x400708);
	u32 code = nvkm_rd32(device, 0x400110);
1170
	u32 class;
1171 1172
	const char *name = "unknown";
	int chid = -1;
1173

1174
	chan = nvkm_fifo_chan_inst(device->fifo, (u64)inst << 12, &flags);
1175 1176 1177 1178
	if (chan) {
		name = chan->object.client->name;
		chid = chan->chid;
	}
1179

B
Ben Skeggs 已提交
1180
	if (nv_device(gr)->card_type < NV_E0 || subc < 4)
1181
		class = nvkm_rd32(device, 0x404200 + (subc * 4));
1182 1183 1184
	else
		class = 0x0000;

1185 1186 1187 1188 1189
	if (stat & 0x00000001) {
		/*
		 * notifier interrupt, only needed for cyclestats
		 * can be safely ignored
		 */
1190
		nvkm_wr32(device, 0x400100, 0x00000001);
1191 1192 1193
		stat &= ~0x00000001;
	}

1194
	if (stat & 0x00000010) {
1195
		if (!gf100_gr_mthd_sw(device, class, mthd, data)) {
1196 1197
			nvkm_error(subdev, "ILLEGAL_MTHD ch %d [%010llx %s] "
				   "subc %d class %04x mthd %04x data %08x\n",
1198 1199
				   chid, inst << 12, name, subc,
				   class, mthd, data);
1200
		}
1201
		nvkm_wr32(device, 0x400100, 0x00000010);
1202 1203 1204 1205
		stat &= ~0x00000010;
	}

	if (stat & 0x00000020) {
1206 1207
		nvkm_error(subdev, "ILLEGAL_CLASS ch %d [%010llx %s] "
			   "subc %d class %04x mthd %04x data %08x\n",
1208
			   chid, inst << 12, name, subc, class, mthd, data);
1209
		nvkm_wr32(device, 0x400100, 0x00000020);
1210 1211 1212 1213
		stat &= ~0x00000020;
	}

	if (stat & 0x00100000) {
1214 1215 1216 1217 1218
		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,
1219
			   name, subc, class, mthd, data);
1220
		nvkm_wr32(device, 0x400100, 0x00100000);
1221 1222 1223 1224
		stat &= ~0x00100000;
	}

	if (stat & 0x00200000) {
1225
		nvkm_error(subdev, "TRAP ch %d [%010llx %s]\n",
1226
			   chid, inst << 12, name);
B
Ben Skeggs 已提交
1227
		gf100_gr_trap_intr(gr);
1228
		nvkm_wr32(device, 0x400100, 0x00200000);
1229 1230 1231 1232
		stat &= ~0x00200000;
	}

	if (stat & 0x00080000) {
B
Ben Skeggs 已提交
1233
		gf100_gr_ctxctl_isr(gr);
1234
		nvkm_wr32(device, 0x400100, 0x00080000);
1235 1236 1237 1238
		stat &= ~0x00080000;
	}

	if (stat) {
1239
		nvkm_error(subdev, "intr %08x\n", stat);
1240
		nvkm_wr32(device, 0x400100, stat);
1241 1242
	}

1243
	nvkm_wr32(device, 0x400500, 0x00010001);
1244
	nvkm_fifo_chan_put(device->fifo, flags, &chan);
1245 1246
}

1247
void
B
Ben Skeggs 已提交
1248
gf100_gr_init_fw(struct gf100_gr *gr, u32 fuc_base,
1249
		 struct gf100_gr_fuc *code, struct gf100_gr_fuc *data)
1250
{
1251
	struct nvkm_device *device = gr->base.engine.subdev.device;
1252
	int i;
1253

1254
	nvkm_wr32(device, fuc_base + 0x01c0, 0x01000000);
1255
	for (i = 0; i < data->size / 4; i++)
1256
		nvkm_wr32(device, fuc_base + 0x01c4, data->data[i]);
1257

1258
	nvkm_wr32(device, fuc_base + 0x0180, 0x01000000);
1259 1260
	for (i = 0; i < code->size / 4; i++) {
		if ((i & 0x3f) == 0)
1261 1262
			nvkm_wr32(device, fuc_base + 0x0188, i >> 6);
		nvkm_wr32(device, fuc_base + 0x0184, code->data[i]);
1263
	}
1264 1265 1266

	/* code must be padded to 0x40 words */
	for (; i & 0x3f; i++)
1267
		nvkm_wr32(device, fuc_base + 0x0184, 0);
1268 1269
}

1270
static void
B
Ben Skeggs 已提交
1271
gf100_gr_init_csdata(struct gf100_gr *gr,
1272 1273
		     const struct gf100_gr_pack *pack,
		     u32 falcon, u32 starstar, u32 base)
1274
{
1275
	struct nvkm_device *device = gr->base.engine.subdev.device;
1276 1277
	const struct gf100_gr_pack *iter;
	const struct gf100_gr_init *init;
1278
	u32 addr = ~0, prev = ~0, xfer = 0;
1279 1280
	u32 star, temp;

1281 1282 1283
	nvkm_wr32(device, falcon + 0x01c0, 0x02000000 + starstar);
	star = nvkm_rd32(device, falcon + 0x01c4);
	temp = nvkm_rd32(device, falcon + 0x01c4);
1284 1285
	if (temp > star)
		star = temp;
1286
	nvkm_wr32(device, falcon + 0x01c0, 0x01000000 + star);
1287

1288 1289 1290 1291 1292 1293 1294
	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);
1295
					nvkm_wr32(device, falcon + 0x01c4, data);
1296 1297 1298 1299
					star += 4;
				}
				addr = head;
				xfer = 0;
1300
			}
1301 1302 1303
			prev = head;
			xfer = xfer + 1;
			head = head + init->pitch;
1304
		}
1305
	}
1306

1307 1308 1309
	nvkm_wr32(device, falcon + 0x01c4, (--xfer << 26) | addr);
	nvkm_wr32(device, falcon + 0x01c0, 0x01000004 + starstar);
	nvkm_wr32(device, falcon + 0x01c4, star + 4);
1310 1311
}

1312
int
B
Ben Skeggs 已提交
1313
gf100_gr_init_ctxctl(struct gf100_gr *gr)
1314
{
1315 1316
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
B
Ben Skeggs 已提交
1317 1318
	struct gf100_gr_oclass *oclass = (void *)nv_object(gr)->oclass;
	struct gf100_grctx_oclass *cclass = (void *)nv_engine(gr)->cclass;
1319
	int i;
1320

B
Ben Skeggs 已提交
1321
	if (gr->firmware) {
1322
		/* load fuc microcode */
B
Ben Skeggs 已提交
1323 1324 1325 1326 1327 1328
		nvkm_mc(gr)->unk260(nvkm_mc(gr), 0);
		gf100_gr_init_fw(gr, 0x409000, &gr->fuc409c,
						 &gr->fuc409d);
		gf100_gr_init_fw(gr, 0x41a000, &gr->fuc41ac,
						 &gr->fuc41ad);
		nvkm_mc(gr)->unk260(nvkm_mc(gr), 1);
1329

1330
		/* start both of them running */
1331 1332 1333 1334 1335
		nvkm_wr32(device, 0x409840, 0xffffffff);
		nvkm_wr32(device, 0x41a10c, 0x00000000);
		nvkm_wr32(device, 0x40910c, 0x00000000);
		nvkm_wr32(device, 0x41a100, 0x00000002);
		nvkm_wr32(device, 0x409100, 0x00000002);
1336 1337 1338 1339 1340
		if (nvkm_msec(device, 2000,
			if (nvkm_rd32(device, 0x409800) & 0x00000001)
				break;
		) < 0)
			return -EBUSY;
B
Ben Skeggs 已提交
1341

1342 1343 1344
		nvkm_wr32(device, 0x409840, 0xffffffff);
		nvkm_wr32(device, 0x409500, 0x7fffffff);
		nvkm_wr32(device, 0x409504, 0x00000021);
B
Ben Skeggs 已提交
1345

1346 1347 1348
		nvkm_wr32(device, 0x409840, 0xffffffff);
		nvkm_wr32(device, 0x409500, 0x00000000);
		nvkm_wr32(device, 0x409504, 0x00000010);
1349 1350 1351 1352
		if (nvkm_msec(device, 2000,
			if ((gr->size = nvkm_rd32(device, 0x409800)))
				break;
		) < 0)
1353
			return -EBUSY;
1354

1355 1356 1357
		nvkm_wr32(device, 0x409840, 0xffffffff);
		nvkm_wr32(device, 0x409500, 0x00000000);
		nvkm_wr32(device, 0x409504, 0x00000016);
1358 1359 1360 1361
		if (nvkm_msec(device, 2000,
			if (nvkm_rd32(device, 0x409800))
				break;
		) < 0)
1362 1363
			return -EBUSY;

1364 1365 1366
		nvkm_wr32(device, 0x409840, 0xffffffff);
		nvkm_wr32(device, 0x409500, 0x00000000);
		nvkm_wr32(device, 0x409504, 0x00000025);
1367 1368 1369 1370
		if (nvkm_msec(device, 2000,
			if (nvkm_rd32(device, 0x409800))
				break;
		) < 0)
1371 1372
			return -EBUSY;

B
Ben Skeggs 已提交
1373
		if (nv_device(gr)->chipset >= 0xe0) {
1374 1375 1376
			nvkm_wr32(device, 0x409800, 0x00000000);
			nvkm_wr32(device, 0x409500, 0x00000001);
			nvkm_wr32(device, 0x409504, 0x00000030);
1377 1378 1379 1380
			if (nvkm_msec(device, 2000,
				if (nvkm_rd32(device, 0x409800))
					break;
			) < 0)
1381 1382
				return -EBUSY;

1383 1384 1385 1386
			nvkm_wr32(device, 0x409810, 0xb00095c8);
			nvkm_wr32(device, 0x409800, 0x00000000);
			nvkm_wr32(device, 0x409500, 0x00000001);
			nvkm_wr32(device, 0x409504, 0x00000031);
1387 1388 1389 1390
			if (nvkm_msec(device, 2000,
				if (nvkm_rd32(device, 0x409800))
					break;
			) < 0)
1391 1392
				return -EBUSY;

1393 1394 1395 1396
			nvkm_wr32(device, 0x409810, 0x00080420);
			nvkm_wr32(device, 0x409800, 0x00000000);
			nvkm_wr32(device, 0x409500, 0x00000001);
			nvkm_wr32(device, 0x409504, 0x00000032);
1397 1398 1399 1400
			if (nvkm_msec(device, 2000,
				if (nvkm_rd32(device, 0x409800))
					break;
			) < 0)
1401 1402
				return -EBUSY;

1403 1404 1405
			nvkm_wr32(device, 0x409614, 0x00000070);
			nvkm_wr32(device, 0x409614, 0x00000770);
			nvkm_wr32(device, 0x40802c, 0x00000001);
1406 1407
		}

B
Ben Skeggs 已提交
1408 1409
		if (gr->data == NULL) {
			int ret = gf100_grctx_generate(gr);
1410
			if (ret) {
1411
				nvkm_error(subdev, "failed to construct context\n");
1412 1413 1414 1415 1416
				return ret;
			}
		}

		return 0;
1417 1418 1419
	} else
	if (!oclass->fecs.ucode) {
		return -ENOSYS;
1420
	}
1421

1422
	/* load HUB microcode */
B
Ben Skeggs 已提交
1423
	nvkm_mc(gr)->unk260(nvkm_mc(gr), 0);
1424
	nvkm_wr32(device, 0x4091c0, 0x01000000);
1425
	for (i = 0; i < oclass->fecs.ucode->data.size / 4; i++)
1426
		nvkm_wr32(device, 0x4091c4, oclass->fecs.ucode->data.data[i]);
1427

1428
	nvkm_wr32(device, 0x409180, 0x01000000);
1429
	for (i = 0; i < oclass->fecs.ucode->code.size / 4; i++) {
1430
		if ((i & 0x3f) == 0)
1431 1432
			nvkm_wr32(device, 0x409188, i >> 6);
		nvkm_wr32(device, 0x409184, oclass->fecs.ucode->code.data[i]);
1433 1434 1435
	}

	/* load GPC microcode */
1436
	nvkm_wr32(device, 0x41a1c0, 0x01000000);
1437
	for (i = 0; i < oclass->gpccs.ucode->data.size / 4; i++)
1438
		nvkm_wr32(device, 0x41a1c4, oclass->gpccs.ucode->data.data[i]);
1439

1440
	nvkm_wr32(device, 0x41a180, 0x01000000);
1441
	for (i = 0; i < oclass->gpccs.ucode->code.size / 4; i++) {
1442
		if ((i & 0x3f) == 0)
1443 1444
			nvkm_wr32(device, 0x41a188, i >> 6);
		nvkm_wr32(device, 0x41a184, oclass->gpccs.ucode->code.data[i]);
1445
	}
B
Ben Skeggs 已提交
1446
	nvkm_mc(gr)->unk260(nvkm_mc(gr), 1);
1447

1448
	/* load register lists */
B
Ben Skeggs 已提交
1449 1450 1451 1452
	gf100_gr_init_csdata(gr, cclass->hub, 0x409000, 0x000, 0x000000);
	gf100_gr_init_csdata(gr, cclass->gpc, 0x41a000, 0x000, 0x418000);
	gf100_gr_init_csdata(gr, cclass->tpc, 0x41a000, 0x004, 0x419800);
	gf100_gr_init_csdata(gr, cclass->ppc, 0x41a000, 0x008, 0x41be00);
1453

1454
	/* start HUB ucode running, it'll init the GPCs */
1455 1456
	nvkm_wr32(device, 0x40910c, 0x00000000);
	nvkm_wr32(device, 0x409100, 0x00000002);
1457 1458 1459 1460
	if (nvkm_msec(device, 2000,
		if (nvkm_rd32(device, 0x409800) & 0x80000000)
			break;
	) < 0) {
B
Ben Skeggs 已提交
1461
		gf100_gr_ctxctl_debug(gr);
1462 1463 1464
		return -EBUSY;
	}

1465
	gr->size = nvkm_rd32(device, 0x409804);
B
Ben Skeggs 已提交
1466 1467
	if (gr->data == NULL) {
		int ret = gf100_grctx_generate(gr);
1468
		if (ret) {
1469
			nvkm_error(subdev, "failed to construct context\n");
1470 1471
			return ret;
		}
1472 1473 1474
	}

	return 0;
1475 1476
}

1477
int
1478
gf100_gr_init(struct nvkm_object *object)
1479
{
B
Ben Skeggs 已提交
1480
	struct gf100_gr *gr = (void *)object;
1481 1482
	struct nvkm_device *device = gr->base.engine.subdev.device;
	struct gf100_gr_oclass *oclass = (void *)object->oclass;
B
Ben Skeggs 已提交
1483
	const u32 magicgpc918 = DIV_ROUND_UP(0x00800000, gr->tpc_total);
1484 1485 1486 1487
	u32 data[TPC_MAX / 8] = {};
	u8  tpcnr[GPC_MAX];
	int gpc, tpc, rop;
	int ret, i;
1488

B
Ben Skeggs 已提交
1489
	ret = nvkm_gr_init(&gr->base);
1490 1491 1492
	if (ret)
		return ret;

1493 1494 1495 1496 1497 1498
	nvkm_wr32(device, GPC_BCAST(0x0880), 0x00000000);
	nvkm_wr32(device, GPC_BCAST(0x08a4), 0x00000000);
	nvkm_wr32(device, GPC_BCAST(0x0888), 0x00000000);
	nvkm_wr32(device, GPC_BCAST(0x088c), 0x00000000);
	nvkm_wr32(device, GPC_BCAST(0x0890), 0x00000000);
	nvkm_wr32(device, GPC_BCAST(0x0894), 0x00000000);
1499 1500
	nvkm_wr32(device, GPC_BCAST(0x08b4), nvkm_memory_addr(gr->unk4188b4) >> 8);
	nvkm_wr32(device, GPC_BCAST(0x08b8), nvkm_memory_addr(gr->unk4188b8) >> 8);
1501

B
Ben Skeggs 已提交
1502
	gf100_gr_mmio(gr, oclass->mmio);
1503

B
Ben Skeggs 已提交
1504 1505
	memcpy(tpcnr, gr->tpc_nr, sizeof(gr->tpc_nr));
	for (i = 0, gpc = -1; i < gr->tpc_total; i++) {
1506
		do {
B
Ben Skeggs 已提交
1507
			gpc = (gpc + 1) % gr->gpc_nr;
1508
		} while (!tpcnr[gpc]);
B
Ben Skeggs 已提交
1509
		tpc = gr->tpc_nr[gpc] - tpcnr[gpc]--;
1510 1511 1512 1513

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

1514 1515 1516 1517
	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]);
1518

B
Ben Skeggs 已提交
1519
	for (gpc = 0; gpc < gr->gpc_nr; gpc++) {
1520
		nvkm_wr32(device, GPC_UNIT(gpc, 0x0914),
B
Ben Skeggs 已提交
1521
			gr->magic_not_rop_nr << 8 | gr->tpc_nr[gpc]);
1522
		nvkm_wr32(device, GPC_UNIT(gpc, 0x0910), 0x00040000 |
B
Ben Skeggs 已提交
1523
			gr->tpc_total);
1524
		nvkm_wr32(device, GPC_UNIT(gpc, 0x0918), magicgpc918);
1525 1526
	}

B
Ben Skeggs 已提交
1527
	if (nv_device(gr)->chipset != 0xd7)
1528
		nvkm_wr32(device, GPC_BCAST(0x1bd4), magicgpc918);
M
Maarten Lankhorst 已提交
1529
	else
1530
		nvkm_wr32(device, GPC_BCAST(0x3fd4), magicgpc918);
B
Ben Skeggs 已提交
1531

1532
	nvkm_wr32(device, GPC_BCAST(0x08ac), nvkm_rd32(device, 0x100800));
B
Ben Skeggs 已提交
1533

1534
	nvkm_wr32(device, 0x400500, 0x00010001);
B
Ben Skeggs 已提交
1535

1536 1537
	nvkm_wr32(device, 0x400100, 0xffffffff);
	nvkm_wr32(device, 0x40013c, 0xffffffff);
B
Ben Skeggs 已提交
1538

1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549
	nvkm_wr32(device, 0x409c24, 0x000f0000);
	nvkm_wr32(device, 0x404000, 0xc0000000);
	nvkm_wr32(device, 0x404600, 0xc0000000);
	nvkm_wr32(device, 0x408030, 0xc0000000);
	nvkm_wr32(device, 0x40601c, 0xc0000000);
	nvkm_wr32(device, 0x404490, 0xc0000000);
	nvkm_wr32(device, 0x406018, 0xc0000000);
	nvkm_wr32(device, 0x405840, 0xc0000000);
	nvkm_wr32(device, 0x405844, 0x00ffffff);
	nvkm_mask(device, 0x419cc0, 0x00000008, 0x00000008);
	nvkm_mask(device, 0x419eb4, 0x00001000, 0x00001000);
B
Ben Skeggs 已提交
1550 1551

	for (gpc = 0; gpc < gr->gpc_nr; gpc++) {
1552 1553 1554 1555
		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 已提交
1556
		for (tpc = 0; tpc < gr->tpc_nr[gpc]; tpc++) {
1557 1558 1559 1560 1561 1562 1563
			nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x508), 0xffffffff);
			nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x50c), 0xffffffff);
			nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x224), 0xc0000000);
			nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x48c), 0xc0000000);
			nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x084), 0xc0000000);
			nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x644), 0x001ffffe);
			nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x64c), 0x0000000f);
1564
		}
1565 1566
		nvkm_wr32(device, GPC_UNIT(gpc, 0x2c90), 0xffffffff);
		nvkm_wr32(device, GPC_UNIT(gpc, 0x2c94), 0xffffffff);
1567 1568
	}

B
Ben Skeggs 已提交
1569
	for (rop = 0; rop < gr->rop_nr; rop++) {
1570 1571 1572 1573
		nvkm_wr32(device, ROP_UNIT(rop, 0x144), 0xc0000000);
		nvkm_wr32(device, ROP_UNIT(rop, 0x070), 0xc0000000);
		nvkm_wr32(device, ROP_UNIT(rop, 0x204), 0xffffffff);
		nvkm_wr32(device, ROP_UNIT(rop, 0x208), 0xffffffff);
1574
	}
1575

1576 1577 1578 1579 1580 1581
	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);
1582

1583
	nvkm_wr32(device, 0x400054, 0x34ce3464);
1584

B
Ben Skeggs 已提交
1585
	gf100_gr_zbc_init(gr);
1586

B
Ben Skeggs 已提交
1587
	return gf100_gr_init_ctxctl(gr);
1588 1589
}

1590
void
1591
gf100_gr_dtor_fw(struct gf100_gr_fuc *fuc)
1592 1593 1594 1595 1596 1597
{
	kfree(fuc->data);
	fuc->data = NULL;
}

int
B
Ben Skeggs 已提交
1598
gf100_gr_ctor_fw(struct gf100_gr *gr, const char *fwname,
1599
		 struct gf100_gr_fuc *fuc)
1600
{
1601 1602
	struct nvkm_subdev *subdev = &gr->base.engine.subdev;
	struct nvkm_device *device = subdev->device;
1603
	const struct firmware *fw;
1604 1605
	char f[64];
	char cname[16];
1606
	int ret;
1607 1608 1609
	int i;

	/* Convert device name to lowercase */
1610
	strncpy(cname, device->chip->name, sizeof(cname));
1611 1612 1613 1614 1615 1616
	cname[sizeof(cname) - 1] = '\0';
	i = strlen(cname);
	while (i) {
		--i;
		cname[i] = tolower(cname[i]);
	}
1617

1618
	snprintf(f, sizeof(f), "nvidia/%s/%s.bin", cname, fwname);
A
Alexandre Courbot 已提交
1619
	ret = request_firmware(&fw, f, nv_device_base(device));
1620
	if (ret) {
1621
		nvkm_error(subdev, "failed to load %s\n", fwname);
1622
		return ret;
1623 1624 1625 1626 1627 1628 1629 1630 1631
	}

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

void
1632
gf100_gr_dtor(struct nvkm_object *object)
1633
{
B
Ben Skeggs 已提交
1634
	struct gf100_gr *gr = (void *)object;
1635

B
Ben Skeggs 已提交
1636
	kfree(gr->data);
1637

B
Ben Skeggs 已提交
1638 1639 1640 1641
	gf100_gr_dtor_fw(&gr->fuc409c);
	gf100_gr_dtor_fw(&gr->fuc409d);
	gf100_gr_dtor_fw(&gr->fuc41ac);
	gf100_gr_dtor_fw(&gr->fuc41ad);
1642

1643 1644
	nvkm_memory_del(&gr->unk4188b8);
	nvkm_memory_del(&gr->unk4188b4);
1645

B
Ben Skeggs 已提交
1646
	nvkm_gr_destroy(&gr->base);
1647 1648 1649
}

int
1650 1651 1652
gf100_gr_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
	      struct nvkm_oclass *bclass, void *data, u32 size,
	      struct nvkm_object **pobject)
1653
{
1654
	struct gf100_gr_oclass *oclass = (void *)bclass;
1655
	struct nvkm_device *device = (void *)parent;
B
Ben Skeggs 已提交
1656
	struct gf100_gr *gr;
1657
	bool use_ext_fw, enable;
1658
	int ret, i, j;
1659

1660 1661
	use_ext_fw = nvkm_boolopt(device->cfgopt, "NvGrUseFW",
				  oclass->fecs.ucode == NULL);
1662 1663
	enable = use_ext_fw || oclass->fecs.ucode != NULL;

B
Ben Skeggs 已提交
1664 1665
	ret = nvkm_gr_create(parent, engine, bclass, enable, &gr);
	*pobject = nv_object(gr);
1666 1667 1668
	if (ret)
		return ret;

B
Ben Skeggs 已提交
1669 1670
	nv_subdev(gr)->unit = 0x08001000;
	nv_subdev(gr)->intr = gf100_gr_intr;
1671

B
Ben Skeggs 已提交
1672
	gr->base.units = gf100_gr_units;
1673

1674
	if (use_ext_fw) {
1675
		nvkm_info(&gr->base.engine.subdev, "using external firmware\n");
B
Ben Skeggs 已提交
1676 1677 1678 1679
		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))
1680
			return -ENODEV;
B
Ben Skeggs 已提交
1681
		gr->firmware = true;
1682 1683
	}

1684
	ret = nvkm_memory_new(device, NVKM_MEM_TARGET_INST, 0x1000, 256, false,
B
Ben Skeggs 已提交
1685
			      &gr->unk4188b4);
1686 1687
	if (ret)
		return ret;
1688

1689
	ret = nvkm_memory_new(device, NVKM_MEM_TARGET_INST, 0x1000, 256, false,
B
Ben Skeggs 已提交
1690
			      &gr->unk4188b8);
1691
	if (ret)
1692 1693
		return ret;

1694 1695 1696 1697 1698 1699 1700 1701 1702
	nvkm_kmap(gr->unk4188b4);
	for (i = 0; i < 0x1000; i += 4)
		nvkm_wo32(gr->unk4188b4, i, 0x00000010);
	nvkm_done(gr->unk4188b4);

	nvkm_kmap(gr->unk4188b8);
	for (i = 0; i < 0x1000; i += 4)
		nvkm_wo32(gr->unk4188b8, i, 0x00000010);
	nvkm_done(gr->unk4188b8);
B
Ben Skeggs 已提交
1703

1704 1705
	gr->rop_nr = (nvkm_rd32(device, 0x409604) & 0x001f0000) >> 16;
	gr->gpc_nr =  nvkm_rd32(device, 0x409604) & 0x0000001f;
B
Ben Skeggs 已提交
1706
	for (i = 0; i < gr->gpc_nr; i++) {
1707
		gr->tpc_nr[i]  = nvkm_rd32(device, GPC_UNIT(i, 0x2608));
B
Ben Skeggs 已提交
1708 1709 1710
		gr->tpc_total += gr->tpc_nr[i];
		gr->ppc_nr[i]  = oclass->ppc_nr;
		for (j = 0; j < gr->ppc_nr[i]; j++) {
1711
			u8 mask = nvkm_rd32(device, GPC_UNIT(i, 0x0c30 + (j * 4)));
B
Ben Skeggs 已提交
1712
			gr->ppc_tpc_nr[i][j] = hweight8(mask);
1713
		}
1714 1715 1716
	}

	/*XXX: these need figuring out... though it might not even matter */
B
Ben Skeggs 已提交
1717
	switch (nv_device(gr)->chipset) {
1718
	case 0xc0:
B
Ben Skeggs 已提交
1719 1720
		if (gr->tpc_total == 11) { /* 465, 3/4/4/0, 4 */
			gr->magic_not_rop_nr = 0x07;
1721
		} else
B
Ben Skeggs 已提交
1722 1723
		if (gr->tpc_total == 14) { /* 470, 3/3/4/4, 5 */
			gr->magic_not_rop_nr = 0x05;
1724
		} else
B
Ben Skeggs 已提交
1725 1726
		if (gr->tpc_total == 15) { /* 480, 3/4/4/4, 6 */
			gr->magic_not_rop_nr = 0x06;
1727 1728 1729
		}
		break;
	case 0xc3: /* 450, 4/0/0/0, 2 */
B
Ben Skeggs 已提交
1730
		gr->magic_not_rop_nr = 0x03;
1731 1732
		break;
	case 0xc4: /* 460, 3/4/0/0, 4 */
B
Ben Skeggs 已提交
1733
		gr->magic_not_rop_nr = 0x01;
1734 1735
		break;
	case 0xc1: /* 2/0/0/0, 1 */
B
Ben Skeggs 已提交
1736
		gr->magic_not_rop_nr = 0x01;
1737 1738
		break;
	case 0xc8: /* 4/4/3/4, 5 */
B
Ben Skeggs 已提交
1739
		gr->magic_not_rop_nr = 0x06;
1740 1741
		break;
	case 0xce: /* 4/4/0/0, 4 */
B
Ben Skeggs 已提交
1742
		gr->magic_not_rop_nr = 0x03;
1743 1744
		break;
	case 0xcf: /* 4/0/0/0, 3 */
B
Ben Skeggs 已提交
1745
		gr->magic_not_rop_nr = 0x03;
1746
		break;
M
Maarten Lankhorst 已提交
1747
	case 0xd7:
1748
	case 0xd9: /* 1/0/0/0, 1 */
1749
	case 0xea: /* gk20a */
1750
	case 0x12b: /* gm20b */
B
Ben Skeggs 已提交
1751
		gr->magic_not_rop_nr = 0x01;
1752 1753 1754
		break;
	}

B
Ben Skeggs 已提交
1755 1756
	nv_engine(gr)->cclass = *oclass->cclass;
	nv_engine(gr)->sclass =  oclass->sclass;
1757 1758 1759
	return 0;
}

1760
#include "fuc/hubgf100.fuc3.h"
1761

1762 1763 1764 1765 1766 1767
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),
1768 1769
};

1770
#include "fuc/gpcgf100.fuc3.h"
1771

1772 1773 1774 1775 1776 1777
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),
1778 1779
};

1780 1781
struct nvkm_oclass *
gf100_gr_oclass = &(struct gf100_gr_oclass) {
1782
	.base.handle = NV_ENGINE(GR, 0xc0),
1783 1784 1785 1786 1787
	.base.ofuncs = &(struct nvkm_ofuncs) {
		.ctor = gf100_gr_ctor,
		.dtor = gf100_gr_dtor,
		.init = gf100_gr_init,
		.fini = _nvkm_gr_fini,
1788
	},
1789 1790 1791 1792 1793
	.cclass = &gf100_grctx_oclass,
	.sclass =  gf100_gr_sclass,
	.mmio = gf100_gr_pack_mmio,
	.fecs.ucode = &gf100_gr_fecs_ucode,
	.gpccs.ucode = &gf100_gr_gpccs_ucode,
1794
}.base;