gf100.c 44.6 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 33 34 35 36 37 38
#include "gf100.h"
#include "ctxgf100.h"
#include "fuc/os.h"

#include <core/client.h>
#include <core/device.h>
#include <core/handle.h>
#include <core/option.h>
#include <engine/fifo.h>
#include <subdev/fb.h>
#include <subdev/mc.h>
#include <subdev/timer.h>

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

40 41 42 43 44
/*******************************************************************************
 * Zero Bandwidth Clear
 ******************************************************************************/

static void
45
gf100_gr_zbc_clear_color(struct gf100_gr_priv *priv, int zbc)
46 47 48 49 50 51 52 53 54 55 56 57 58
{
	if (priv->zbc_color[zbc].format) {
		nv_wr32(priv, 0x405804, priv->zbc_color[zbc].ds[0]);
		nv_wr32(priv, 0x405808, priv->zbc_color[zbc].ds[1]);
		nv_wr32(priv, 0x40580c, priv->zbc_color[zbc].ds[2]);
		nv_wr32(priv, 0x405810, priv->zbc_color[zbc].ds[3]);
	}
	nv_wr32(priv, 0x405814, priv->zbc_color[zbc].format);
	nv_wr32(priv, 0x405820, zbc);
	nv_wr32(priv, 0x405824, 0x00000004); /* TRIGGER | WRITE | COLOR */
}

static int
59 60
gf100_gr_zbc_color_get(struct gf100_gr_priv *priv, int format,
		       const u32 ds[4], const u32 l2[4])
61
{
62
	struct nvkm_ltc *ltc = nvkm_ltc(priv);
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
	int zbc = -ENOSPC, i;

	for (i = ltc->zbc_min; i <= ltc->zbc_max; i++) {
		if (priv->zbc_color[i].format) {
			if (priv->zbc_color[i].format != format)
				continue;
			if (memcmp(priv->zbc_color[i].ds, ds, sizeof(
				   priv->zbc_color[i].ds)))
				continue;
			if (memcmp(priv->zbc_color[i].l2, l2, sizeof(
				   priv->zbc_color[i].l2))) {
				WARN_ON(1);
				return -EINVAL;
			}
			return i;
		} else {
			zbc = (zbc < 0) ? i : zbc;
		}
	}

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

86 87 88 89
	memcpy(priv->zbc_color[zbc].ds, ds, sizeof(priv->zbc_color[zbc].ds));
	memcpy(priv->zbc_color[zbc].l2, l2, sizeof(priv->zbc_color[zbc].l2));
	priv->zbc_color[zbc].format = format;
	ltc->zbc_color_get(ltc, zbc, l2);
90
	gf100_gr_zbc_clear_color(priv, zbc);
91 92 93 94
	return zbc;
}

static void
95
gf100_gr_zbc_clear_depth(struct gf100_gr_priv *priv, int zbc)
96 97 98 99 100 101 102 103 104
{
	if (priv->zbc_depth[zbc].format)
		nv_wr32(priv, 0x405818, priv->zbc_depth[zbc].ds);
	nv_wr32(priv, 0x40581c, priv->zbc_depth[zbc].format);
	nv_wr32(priv, 0x405820, zbc);
	nv_wr32(priv, 0x405824, 0x00000005); /* TRIGGER | WRITE | DEPTH */
}

static int
105 106
gf100_gr_zbc_depth_get(struct gf100_gr_priv *priv, int format,
		       const u32 ds, const u32 l2)
107
{
108
	struct nvkm_ltc *ltc = nvkm_ltc(priv);
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
	int zbc = -ENOSPC, i;

	for (i = ltc->zbc_min; i <= ltc->zbc_max; i++) {
		if (priv->zbc_depth[i].format) {
			if (priv->zbc_depth[i].format != format)
				continue;
			if (priv->zbc_depth[i].ds != ds)
				continue;
			if (priv->zbc_depth[i].l2 != l2) {
				WARN_ON(1);
				return -EINVAL;
			}
			return i;
		} else {
			zbc = (zbc < 0) ? i : zbc;
		}
	}

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

130 131 132 133
	priv->zbc_depth[zbc].format = format;
	priv->zbc_depth[zbc].ds = ds;
	priv->zbc_depth[zbc].l2 = l2;
	ltc->zbc_depth_get(ltc, zbc, l2);
134
	gf100_gr_zbc_clear_depth(priv, 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
{
145
	struct gf100_gr_priv *priv = (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:
172 173 174
			ret = gf100_gr_zbc_color_get(priv, args->v0.format,
							   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
{
191
	struct gf100_gr_priv *priv = (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:
200 201 202
			ret = gf100_gr_zbc_depth_get(priv, args->v0.format,
							   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 230 231 232
struct nvkm_ofuncs
gf100_fermi_ofuncs = {
	.ctor = _nvkm_object_ctor,
	.dtor = nvkm_object_destroy,
	.init = nvkm_object_init,
	.fini = nvkm_object_fini,
	.mthd = gf100_fermi_mthd,
233 234
};

235
static int
236 237
gf100_gr_set_shader_exceptions(struct nvkm_object *object, u32 mthd,
			       void *pdata, u32 size)
238
{
239
	struct gf100_gr_priv *priv = (void *)object->engine;
240 241 242 243 244 245 246 247 248
	if (size >= sizeof(u32)) {
		u32 data = *(u32 *)pdata ? 0xffffffff : 0x00000000;
		nv_wr32(priv, 0x419e44, data);
		nv_wr32(priv, 0x419e4c, data);
		return 0;
	}
	return -EINVAL;
}

249 250 251
struct nvkm_omthds
gf100_gr_9097_omthds[] = {
	{ 0x1528, 0x1528, gf100_gr_set_shader_exceptions },
252 253 254
	{}
};

255 256 257
struct nvkm_omthds
gf100_gr_90c0_omthds[] = {
	{ 0x1528, 0x1528, gf100_gr_set_shader_exceptions },
258 259 260
	{}
};

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

/*******************************************************************************
 * PGRAPH context
 ******************************************************************************/
273

274
int
275 276 277
gf100_gr_context_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
		      struct nvkm_oclass *oclass, void *args, u32 size,
		      struct nvkm_object **pobject)
278
{
279 280 281 282 283
	struct nvkm_vm *vm = nvkm_client(parent)->vm;
	struct gf100_gr_priv *priv = (void *)engine;
	struct gf100_gr_data *data = priv->mmio_data;
	struct gf100_gr_mmio *mmio = priv->mmio_list;
	struct gf100_gr_chan *chan;
284 285
	int ret, i;

286
	/* allocate memory for context, and fill with default values */
287 288 289
	ret = nvkm_gr_context_create(parent, engine, oclass, NULL,
				     priv->size, 0x100,
				     NVOBJ_FLAG_ZERO_ALLOC, &chan);
290
	*pobject = nv_object(chan);
291 292 293
	if (ret)
		return ret;

294 295 296 297
	/* 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.
	 */
298 299
	ret = nvkm_gpuobj_new(nv_object(chan), NULL, 0x1000, 0x100, 0,
			      &chan->mmio);
300 301 302
	if (ret)
		return ret;

303 304 305
	ret = nvkm_gpuobj_map_vm(nv_gpuobj(chan->mmio), vm,
				 NV_MEM_ACCESS_RW | NV_MEM_ACCESS_SYS,
				 &chan->mmio_vma);
306 307 308
	if (ret)
		return ret;

309 310
	/* allocate buffers referenced by mmio list */
	for (i = 0; data->size && i < ARRAY_SIZE(priv->mmio_data); i++) {
311 312
		ret = nvkm_gpuobj_new(nv_object(chan), NULL, data->size,
				      data->align, 0, &chan->data[i].mem);
313 314
		if (ret)
			return ret;
315

316 317
		ret = nvkm_gpuobj_map_vm(chan->data[i].mem, vm, data->access,
					 &chan->data[i].vma);
318 319
		if (ret)
			return ret;
320

321
		data++;
322 323
	}

324 325 326 327
	/* finally, fill in the mmio list and point the context at it */
	for (i = 0; mmio->addr && i < ARRAY_SIZE(priv->mmio_list); i++) {
		u32 addr = mmio->addr;
		u32 data = mmio->data;
328

329
		if (mmio->buffer >= 0) {
330
			u64 info = chan->data[mmio->buffer].vma.offset;
331 332
			data |= info >> mmio->shift;
		}
333

334 335
		nv_wo32(chan->mmio, chan->mmio_nr++ * 4, addr);
		nv_wo32(chan->mmio, chan->mmio_nr++ * 4, data);
336 337
		mmio++;
	}
338

339
	for (i = 0; i < priv->size; i += 4)
340
		nv_wo32(chan, i, priv->data[i / 4]);
341

342
	if (!priv->firmware) {
343 344
		nv_wo32(chan, 0x00, chan->mmio_nr / 2);
		nv_wo32(chan, 0x04, chan->mmio_vma.offset >> 8);
345
	} else {
346 347 348 349 350 351 352 353 354
		nv_wo32(chan, 0xf4, 0);
		nv_wo32(chan, 0xf8, 0);
		nv_wo32(chan, 0x10, chan->mmio_nr / 2);
		nv_wo32(chan, 0x14, lower_32_bits(chan->mmio_vma.offset));
		nv_wo32(chan, 0x18, upper_32_bits(chan->mmio_vma.offset));
		nv_wo32(chan, 0x1c, 1);
		nv_wo32(chan, 0x20, 0);
		nv_wo32(chan, 0x28, 0);
		nv_wo32(chan, 0x2c, 0);
355
	}
356

357
	return 0;
358 359
}

360
void
361
gf100_gr_context_dtor(struct nvkm_object *object)
362
{
363
	struct gf100_gr_chan *chan = (void *)object;
364 365
	int i;

366
	for (i = 0; i < ARRAY_SIZE(chan->data); i++) {
367 368
		nvkm_gpuobj_unmap(&chan->data[i].vma);
		nvkm_gpuobj_ref(NULL, &chan->data[i].mem);
369
	}
370

371 372
	nvkm_gpuobj_unmap(&chan->mmio_vma);
	nvkm_gpuobj_ref(NULL, &chan->mmio);
373

374
	nvkm_gr_context_destroy(&chan->base);
375 376
}

377
/*******************************************************************************
378
 * PGRAPH register lists
379 380
 ******************************************************************************/

381 382
const struct gf100_gr_init
gf100_gr_init_main_0[] = {
383 384 385 386 387 388 389 390 391 392 393 394 395 396
	{ 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 },
	{}
};

397 398
const struct gf100_gr_init
gf100_gr_init_fe_0[] = {
399 400 401 402 403
	{ 0x40415c,   1, 0x04, 0x00000000 },
	{ 0x404170,   1, 0x04, 0x00000000 },
	{}
};

404 405
const struct gf100_gr_init
gf100_gr_init_pri_0[] = {
406 407 408 409
	{ 0x404488,   2, 0x04, 0x00000000 },
	{}
};

410 411
const struct gf100_gr_init
gf100_gr_init_rstr2d_0[] = {
412 413 414 415
	{ 0x407808,   1, 0x04, 0x00000000 },
	{}
};

416 417
const struct gf100_gr_init
gf100_gr_init_pd_0[] = {
418 419 420 421
	{ 0x406024,   1, 0x04, 0x00000000 },
	{}
};

422 423
const struct gf100_gr_init
gf100_gr_init_ds_0[] = {
424 425 426 427 428 429
	{ 0x405844,   1, 0x04, 0x00ffffff },
	{ 0x405850,   1, 0x04, 0x00000000 },
	{ 0x405908,   1, 0x04, 0x00000000 },
	{}
};

430 431
const struct gf100_gr_init
gf100_gr_init_scc_0[] = {
432 433 434 435
	{ 0x40803c,   1, 0x04, 0x00000000 },
	{}
};

436 437
const struct gf100_gr_init
gf100_gr_init_prop_0[] = {
438
	{ 0x4184a0,   1, 0x04, 0x00000000 },
439 440 441
	{}
};

442 443
const struct gf100_gr_init
gf100_gr_init_gpc_unk_0[] = {
444 445 446 447
	{ 0x418604,   1, 0x04, 0x00000000 },
	{ 0x418680,   1, 0x04, 0x00000000 },
	{ 0x418714,   1, 0x04, 0x80000000 },
	{ 0x418384,   1, 0x04, 0x00000000 },
448 449 450
	{}
};

451 452
const struct gf100_gr_init
gf100_gr_init_setup_0[] = {
453
	{ 0x418814,   3, 0x04, 0x00000000 },
454 455 456
	{}
};

457 458
const struct gf100_gr_init
gf100_gr_init_crstr_0[] = {
459
	{ 0x418b04,   1, 0x04, 0x00000000 },
460 461 462
	{}
};

463 464
const struct gf100_gr_init
gf100_gr_init_setup_1[] = {
465 466 467 468
	{ 0x4188c8,   1, 0x04, 0x80000000 },
	{ 0x4188cc,   1, 0x04, 0x00000000 },
	{ 0x4188d0,   1, 0x04, 0x00010000 },
	{ 0x4188d4,   1, 0x04, 0x00000001 },
469 470 471
	{}
};

472 473
const struct gf100_gr_init
gf100_gr_init_zcull_0[] = {
474 475 476 477 478
	{ 0x418910,   1, 0x04, 0x00010001 },
	{ 0x418914,   1, 0x04, 0x00000301 },
	{ 0x418918,   1, 0x04, 0x00800000 },
	{ 0x418980,   1, 0x04, 0x77777770 },
	{ 0x418984,   3, 0x04, 0x77777777 },
479 480 481
	{}
};

482 483
const struct gf100_gr_init
gf100_gr_init_gpm_0[] = {
484 485
	{ 0x418c04,   1, 0x04, 0x00000000 },
	{ 0x418c88,   1, 0x04, 0x00000000 },
486 487 488
	{}
};

489 490
const struct gf100_gr_init
gf100_gr_init_gpc_unk_1[] = {
491 492 493 494
	{ 0x418d00,   1, 0x04, 0x00000000 },
	{ 0x418f08,   1, 0x04, 0x00000000 },
	{ 0x418e00,   1, 0x04, 0x00000050 },
	{ 0x418e08,   1, 0x04, 0x00000000 },
495 496 497
	{}
};

498 499
const struct gf100_gr_init
gf100_gr_init_gcc_0[] = {
500 501 502 503 504
	{ 0x41900c,   1, 0x04, 0x00000000 },
	{ 0x419018,   1, 0x04, 0x00000000 },
	{}
};

505 506
const struct gf100_gr_init
gf100_gr_init_tpccs_0[] = {
507 508
	{ 0x419d08,   2, 0x04, 0x00000000 },
	{ 0x419d10,   1, 0x04, 0x00000014 },
509 510 511
	{}
};

512 513
const struct gf100_gr_init
gf100_gr_init_tex_0[] = {
514 515 516
	{ 0x419ab0,   1, 0x04, 0x00000000 },
	{ 0x419ab8,   1, 0x04, 0x000000e7 },
	{ 0x419abc,   2, 0x04, 0x00000000 },
517 518 519
	{}
};

520 521
const struct gf100_gr_init
gf100_gr_init_pe_0[] = {
522 523 524 525
	{ 0x41980c,   3, 0x04, 0x00000000 },
	{ 0x419844,   1, 0x04, 0x00000000 },
	{ 0x41984c,   1, 0x04, 0x00005bc5 },
	{ 0x419850,   4, 0x04, 0x00000000 },
526 527 528
	{}
};

529 530
const struct gf100_gr_init
gf100_gr_init_l1c_0[] = {
531 532 533 534 535 536
	{ 0x419c98,   1, 0x04, 0x00000000 },
	{ 0x419ca8,   1, 0x04, 0x80000000 },
	{ 0x419cb4,   1, 0x04, 0x00000000 },
	{ 0x419cb8,   1, 0x04, 0x00008bf4 },
	{ 0x419cbc,   1, 0x04, 0x28137606 },
	{ 0x419cc0,   2, 0x04, 0x00000000 },
537 538 539
	{}
};

540 541
const struct gf100_gr_init
gf100_gr_init_wwdx_0[] = {
542 543
	{ 0x419bd4,   1, 0x04, 0x00800000 },
	{ 0x419bdc,   1, 0x04, 0x00000000 },
544 545 546
	{}
};

547 548
const struct gf100_gr_init
gf100_gr_init_tpccs_1[] = {
549
	{ 0x419d2c,   1, 0x04, 0x00000000 },
550 551 552
	{}
};

553 554
const struct gf100_gr_init
gf100_gr_init_mpc_0[] = {
555
	{ 0x419c0c,   1, 0x04, 0x00000000 },
556 557 558
	{}
};

559 560
static const struct gf100_gr_init
gf100_gr_init_sm_0[] = {
561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
	{ 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 },
	{}
};

577 578
const struct gf100_gr_init
gf100_gr_init_be_0[] = {
579 580 581 582 583 584 585 586 587 588
	{ 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 },
	{}
};

589 590
const struct gf100_gr_init
gf100_gr_init_fe_1[] = {
591 592 593 594
	{ 0x4040f0,   1, 0x04, 0x00000000 },
	{}
};

595 596
const struct gf100_gr_init
gf100_gr_init_pe_1[] = {
597 598 599 600
	{ 0x419880,   1, 0x04, 0x00000002 },
	{}
};

601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
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 已提交
630 631 632
	{}
};

633 634 635 636
/*******************************************************************************
 * PGRAPH engine/subdev functions
 ******************************************************************************/

637
void
638
gf100_gr_zbc_init(struct gf100_gr_priv *priv)
639 640 641 642 643 644 645 646 647
{
	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 };
648
	struct nvkm_ltc *ltc = nvkm_ltc(priv);
649 650 651
	int index;

	if (!priv->zbc_color[0].format) {
652 653 654 655 656 657
		gf100_gr_zbc_color_get(priv, 1,  & zero[0],   &zero[4]);
		gf100_gr_zbc_color_get(priv, 2,  &  one[0],    &one[4]);
		gf100_gr_zbc_color_get(priv, 4,  &f32_0[0],  &f32_0[4]);
		gf100_gr_zbc_color_get(priv, 4,  &f32_1[0],  &f32_1[4]);
		gf100_gr_zbc_depth_get(priv, 1, 0x00000000, 0x00000000);
		gf100_gr_zbc_depth_get(priv, 1, 0x3f800000, 0x3f800000);
658 659 660
	}

	for (index = ltc->zbc_min; index <= ltc->zbc_max; index++)
661
		gf100_gr_zbc_clear_color(priv, index);
662
	for (index = ltc->zbc_min; index <= ltc->zbc_max; index++)
663
		gf100_gr_zbc_clear_depth(priv, index);
664 665
}

666
void
667
gf100_gr_mmio(struct gf100_gr_priv *priv, const struct gf100_gr_pack *p)
668
{
669 670
	const struct gf100_gr_pack *pack;
	const struct gf100_gr_init *init;
671 672 673 674 675

	pack_for_each_init(init, pack, p) {
		u32 next = init->addr + init->count * init->pitch;
		u32 addr = init->addr;
		while (addr < next) {
676 677 678 679
			nv_wr32(priv, addr, init->data);
			addr += init->pitch;
		}
	}
680 681 682
}

void
683
gf100_gr_icmd(struct gf100_gr_priv *priv, const struct gf100_gr_pack *p)
684
{
685 686
	const struct gf100_gr_pack *pack;
	const struct gf100_gr_init *init;
687
	u32 data = 0;
688 689

	nv_wr32(priv, 0x400208, 0x80000000);
690 691 692 693 694 695

	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) {
696 697 698
			nv_wr32(priv, 0x400204, init->data);
			data = init->data;
		}
699

700
		while (addr < next) {
701
			nv_wr32(priv, 0x400200, addr);
702
			nv_wait(priv, 0x400700, 0x00000002, 0x00000000);
703 704 705
			addr += init->pitch;
		}
	}
706

707 708 709 710
	nv_wr32(priv, 0x400208, 0x00000000);
}

void
711
gf100_gr_mthd(struct gf100_gr_priv *priv, const struct gf100_gr_pack *p)
712
{
713 714
	const struct gf100_gr_pack *pack;
	const struct gf100_gr_init *init;
715
	u32 data = 0;
716

717 718 719 720 721 722 723 724 725 726 727 728 729
	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) {
			nv_wr32(priv, 0x40448c, init->data);
			data = init->data;
		}

		while (addr < next) {
			nv_wr32(priv, 0x404488, ctrl | (addr << 14));
			addr += init->pitch;
730 731 732 733 734
		}
	}
}

u64
735
gf100_gr_units(struct nvkm_gr *gr)
736
{
737
	struct gf100_gr_priv *priv = (void *)gr;
738 739 740 741 742 743 744
	u64 cfg;

	cfg  = (u32)priv->gpc_nr;
	cfg |= (u32)priv->tpc_total << 8;
	cfg |= (u64)priv->rop_nr << 32;

	return cfg;
745 746
}

747
static const struct nvkm_enum gk104_sked_error[] = {
748 749 750 751 752 753 754 755 756 757 758 759 760 761
	{ 7, "CONSTANT_BUFFER_SIZE" },
	{ 9, "LOCAL_MEMORY_SIZE_POS" },
	{ 10, "LOCAL_MEMORY_SIZE_NEG" },
	{ 11, "WARP_CSTACK_SIZE" },
	{ 12, "TOTAL_TEMP_SIZE" },
	{ 13, "REGISTER_COUNT" },
	{ 18, "TOTAL_THREADS" },
	{ 20, "PROGRAM_OFFSET" },
	{ 21, "SHARED_MEMORY_SIZE" },
	{ 25, "SHARED_CONFIG_TOO_SMALL" },
	{ 26, "TOTAL_REGISTER_COUNT" },
	{}
};

762
static const struct nvkm_enum gf100_gpc_rop_error[] = {
763 764 765 766 767 768 769 770 771
	{ 1, "RT_PITCH_OVERRUN" },
	{ 4, "RT_WIDTH_OVERRUN" },
	{ 5, "RT_HEIGHT_OVERRUN" },
	{ 7, "ZETA_STORAGE_TYPE_MISMATCH" },
	{ 8, "RT_STORAGE_TYPE_MISMATCH" },
	{ 10, "RT_LINEAR_MISMATCH" },
	{}
};

772
static void
773
gf100_gr_trap_gpc_rop(struct gf100_gr_priv *priv, int gpc)
774
{
775 776
	u32 trap[4];
	int i;
777

778 779 780 781
	trap[0] = nv_rd32(priv, GPC_UNIT(gpc, 0x0420));
	trap[1] = nv_rd32(priv, GPC_UNIT(gpc, 0x0434));
	trap[2] = nv_rd32(priv, GPC_UNIT(gpc, 0x0438));
	trap[3] = nv_rd32(priv, GPC_UNIT(gpc, 0x043c));
782

783 784 785 786 787
	nv_error(priv, "GPC%d/PROP trap:", gpc);
	for (i = 0; i <= 29; ++i) {
		if (!(trap[0] & (1 << i)))
			continue;
		pr_cont(" ");
788
		nvkm_enum_print(gf100_gpc_rop_error, i);
789 790 791 792 793 794 795
	}
	pr_cont("\n");

	nv_error(priv, "x = %u, y = %u, format = %x, storage type = %x\n",
		 trap[1] & 0xffff, trap[1] >> 16, (trap[2] >> 8) & 0x3f,
		 trap[3] & 0xff);
	nv_wr32(priv, GPC_UNIT(gpc, 0x0420), 0xc0000000);
796 797
}

798
static const struct nvkm_enum gf100_mp_warp_error[] = {
799 800 801 802 803 804 805 806 807 808 809 810
	{ 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" },
	{}
};

811
static const struct nvkm_bitfield gf100_mp_global_error[] = {
812 813 814 815 816 817
	{ 0x00000004, "MULTIPLE_WARP_ERRORS" },
	{ 0x00000008, "OUT_OF_STACK_SPACE" },
	{}
};

static void
818
gf100_gr_trap_mp(struct gf100_gr_priv *priv, int gpc, int tpc)
819 820 821 822 823
{
	u32 werr = nv_rd32(priv, TPC_UNIT(gpc, tpc, 0x648));
	u32 gerr = nv_rd32(priv, TPC_UNIT(gpc, tpc, 0x650));

	nv_error(priv, "GPC%i/TPC%i/MP trap:", gpc, tpc);
824
	nvkm_bitfield_print(gf100_mp_global_error, gerr);
825 826
	if (werr) {
		pr_cont(" ");
827
		nvkm_enum_print(gf100_mp_warp_error, werr & 0xffff);
828 829 830 831 832 833 834
	}
	pr_cont("\n");

	nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x648), 0x00000000);
	nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x650), gerr);
}

835
static void
836
gf100_gr_trap_tpc(struct gf100_gr_priv *priv, int gpc, int tpc)
837 838 839 840 841 842 843 844 845 846 847
{
	u32 stat = nv_rd32(priv, TPC_UNIT(gpc, tpc, 0x0508));

	if (stat & 0x00000001) {
		u32 trap = nv_rd32(priv, TPC_UNIT(gpc, tpc, 0x0224));
		nv_error(priv, "GPC%d/TPC%d/TEX: 0x%08x\n", gpc, tpc, trap);
		nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x0224), 0xc0000000);
		stat &= ~0x00000001;
	}

	if (stat & 0x00000002) {
848
		gf100_gr_trap_mp(priv, gpc, tpc);
849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871
		stat &= ~0x00000002;
	}

	if (stat & 0x00000004) {
		u32 trap = nv_rd32(priv, TPC_UNIT(gpc, tpc, 0x0084));
		nv_error(priv, "GPC%d/TPC%d/POLY: 0x%08x\n", gpc, tpc, trap);
		nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x0084), 0xc0000000);
		stat &= ~0x00000004;
	}

	if (stat & 0x00000008) {
		u32 trap = nv_rd32(priv, TPC_UNIT(gpc, tpc, 0x048c));
		nv_error(priv, "GPC%d/TPC%d/L1C: 0x%08x\n", gpc, tpc, trap);
		nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x048c), 0xc0000000);
		stat &= ~0x00000008;
	}

	if (stat) {
		nv_error(priv, "GPC%d/TPC%d/0x%08x: unknown\n", gpc, tpc, stat);
	}
}

static void
872
gf100_gr_trap_gpc(struct gf100_gr_priv *priv, int gpc)
873 874 875 876 877
{
	u32 stat = nv_rd32(priv, GPC_UNIT(gpc, 0x2c90));
	int tpc;

	if (stat & 0x00000001) {
878
		gf100_gr_trap_gpc_rop(priv, gpc);
879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905
		stat &= ~0x00000001;
	}

	if (stat & 0x00000002) {
		u32 trap = nv_rd32(priv, GPC_UNIT(gpc, 0x0900));
		nv_error(priv, "GPC%d/ZCULL: 0x%08x\n", gpc, trap);
		nv_wr32(priv, GPC_UNIT(gpc, 0x0900), 0xc0000000);
		stat &= ~0x00000002;
	}

	if (stat & 0x00000004) {
		u32 trap = nv_rd32(priv, GPC_UNIT(gpc, 0x1028));
		nv_error(priv, "GPC%d/CCACHE: 0x%08x\n", gpc, trap);
		nv_wr32(priv, GPC_UNIT(gpc, 0x1028), 0xc0000000);
		stat &= ~0x00000004;
	}

	if (stat & 0x00000008) {
		u32 trap = nv_rd32(priv, GPC_UNIT(gpc, 0x0824));
		nv_error(priv, "GPC%d/ESETUP: 0x%08x\n", gpc, trap);
		nv_wr32(priv, GPC_UNIT(gpc, 0x0824), 0xc0000000);
		stat &= ~0x00000009;
	}

	for (tpc = 0; tpc < priv->tpc_nr[gpc]; tpc++) {
		u32 mask = 0x00010000 << tpc;
		if (stat & mask) {
906
			gf100_gr_trap_tpc(priv, gpc, tpc);
907 908 909 910 911 912 913 914 915 916 917
			nv_wr32(priv, GPC_UNIT(gpc, 0x2c90), mask);
			stat &= ~mask;
		}
	}

	if (stat) {
		nv_error(priv, "GPC%d/0x%08x: unknown\n", gpc, stat);
	}
}

static void
918
gf100_gr_trap_intr(struct gf100_gr_priv *priv)
919 920
{
	u32 trap = nv_rd32(priv, 0x400108);
921
	int rop, gpc, i;
922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970

	if (trap & 0x00000001) {
		u32 stat = nv_rd32(priv, 0x404000);
		nv_error(priv, "DISPATCH 0x%08x\n", stat);
		nv_wr32(priv, 0x404000, 0xc0000000);
		nv_wr32(priv, 0x400108, 0x00000001);
		trap &= ~0x00000001;
	}

	if (trap & 0x00000002) {
		u32 stat = nv_rd32(priv, 0x404600);
		nv_error(priv, "M2MF 0x%08x\n", stat);
		nv_wr32(priv, 0x404600, 0xc0000000);
		nv_wr32(priv, 0x400108, 0x00000002);
		trap &= ~0x00000002;
	}

	if (trap & 0x00000008) {
		u32 stat = nv_rd32(priv, 0x408030);
		nv_error(priv, "CCACHE 0x%08x\n", stat);
		nv_wr32(priv, 0x408030, 0xc0000000);
		nv_wr32(priv, 0x400108, 0x00000008);
		trap &= ~0x00000008;
	}

	if (trap & 0x00000010) {
		u32 stat = nv_rd32(priv, 0x405840);
		nv_error(priv, "SHADER 0x%08x\n", stat);
		nv_wr32(priv, 0x405840, 0xc0000000);
		nv_wr32(priv, 0x400108, 0x00000010);
		trap &= ~0x00000010;
	}

	if (trap & 0x00000040) {
		u32 stat = nv_rd32(priv, 0x40601c);
		nv_error(priv, "UNK6 0x%08x\n", stat);
		nv_wr32(priv, 0x40601c, 0xc0000000);
		nv_wr32(priv, 0x400108, 0x00000040);
		trap &= ~0x00000040;
	}

	if (trap & 0x00000080) {
		u32 stat = nv_rd32(priv, 0x404490);
		nv_error(priv, "MACRO 0x%08x\n", stat);
		nv_wr32(priv, 0x404490, 0xc0000000);
		nv_wr32(priv, 0x400108, 0x00000080);
		trap &= ~0x00000080;
	}

971 972 973 974 975 976 977 978
	if (trap & 0x00000100) {
		u32 stat = nv_rd32(priv, 0x407020);

		nv_error(priv, "SKED:");
		for (i = 0; i <= 29; ++i) {
			if (!(stat & (1 << i)))
				continue;
			pr_cont(" ");
979
			nvkm_enum_print(gk104_sked_error, i);
980 981 982 983 984 985 986 987 988
		}
		pr_cont("\n");

		if (stat & 0x3fffffff)
			nv_wr32(priv, 0x407020, 0x40000000);
		nv_wr32(priv, 0x400108, 0x00000100);
		trap &= ~0x00000100;
	}

989 990 991 992 993
	if (trap & 0x01000000) {
		u32 stat = nv_rd32(priv, 0x400118);
		for (gpc = 0; stat && gpc < priv->gpc_nr; gpc++) {
			u32 mask = 0x00000001 << gpc;
			if (stat & mask) {
994
				gf100_gr_trap_gpc(priv, gpc);
995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
				nv_wr32(priv, 0x400118, mask);
				stat &= ~mask;
			}
		}
		nv_wr32(priv, 0x400108, 0x01000000);
		trap &= ~0x01000000;
	}

	if (trap & 0x02000000) {
		for (rop = 0; rop < priv->rop_nr; rop++) {
			u32 statz = nv_rd32(priv, ROP_UNIT(rop, 0x070));
			u32 statc = nv_rd32(priv, ROP_UNIT(rop, 0x144));
			nv_error(priv, "ROP%d 0x%08x 0x%08x\n",
				 rop, statz, statc);
			nv_wr32(priv, ROP_UNIT(rop, 0x070), 0xc0000000);
			nv_wr32(priv, ROP_UNIT(rop, 0x144), 0xc0000000);
		}
		nv_wr32(priv, 0x400108, 0x02000000);
		trap &= ~0x02000000;
	}

	if (trap) {
		nv_error(priv, "TRAP UNHANDLED 0x%08x\n", trap);
		nv_wr32(priv, 0x400108, trap);
	}
}

1022
static void
1023
gf100_gr_ctxctl_debug_unit(struct gf100_gr_priv *priv, u32 base)
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
{
	nv_error(priv, "%06x - done 0x%08x\n", base,
		 nv_rd32(priv, base + 0x400));
	nv_error(priv, "%06x - stat 0x%08x 0x%08x 0x%08x 0x%08x\n", base,
		 nv_rd32(priv, base + 0x800), nv_rd32(priv, base + 0x804),
		 nv_rd32(priv, base + 0x808), nv_rd32(priv, base + 0x80c));
	nv_error(priv, "%06x - stat 0x%08x 0x%08x 0x%08x 0x%08x\n", base,
		 nv_rd32(priv, base + 0x810), nv_rd32(priv, base + 0x814),
		 nv_rd32(priv, base + 0x818), nv_rd32(priv, base + 0x81c));
}

void
1036
gf100_gr_ctxctl_debug(struct gf100_gr_priv *priv)
1037 1038 1039 1040
{
	u32 gpcnr = nv_rd32(priv, 0x409604) & 0xffff;
	u32 gpc;

1041
	gf100_gr_ctxctl_debug_unit(priv, 0x409000);
1042
	for (gpc = 0; gpc < gpcnr; gpc++)
1043
		gf100_gr_ctxctl_debug_unit(priv, 0x502000 + (gpc * 0x8000));
1044 1045 1046
}

static void
1047
gf100_gr_ctxctl_isr(struct gf100_gr_priv *priv)
1048
{
1049
	u32 stat = nv_rd32(priv, 0x409c18);
1050

1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
	if (stat & 0x00000001) {
		u32 code = nv_rd32(priv, 0x409814);
		if (code == E_BAD_FWMTHD) {
			u32 class = nv_rd32(priv, 0x409808);
			u32  addr = nv_rd32(priv, 0x40980c);
			u32  subc = (addr & 0x00070000) >> 16;
			u32  mthd = (addr & 0x00003ffc);
			u32  data = nv_rd32(priv, 0x409810);

			nv_error(priv, "FECS MTHD subc %d class 0x%04x "
				       "mthd 0x%04x data 0x%08x\n",
				 subc, class, mthd, data);

			nv_wr32(priv, 0x409c20, 0x00000001);
			stat &= ~0x00000001;
		} else {
			nv_error(priv, "FECS ucode error %d\n", code);
		}
	}
1070

1071 1072
	if (stat & 0x00080000) {
		nv_error(priv, "FECS watchdog timeout\n");
1073
		gf100_gr_ctxctl_debug(priv);
1074 1075 1076 1077 1078 1079
		nv_wr32(priv, 0x409c20, 0x00080000);
		stat &= ~0x00080000;
	}

	if (stat) {
		nv_error(priv, "FECS 0x%08x\n", stat);
1080
		gf100_gr_ctxctl_debug(priv);
1081 1082
		nv_wr32(priv, 0x409c20, stat);
	}
1083 1084
}

1085
static void
1086
gf100_gr_intr(struct nvkm_subdev *subdev)
1087
{
1088 1089 1090 1091 1092
	struct nvkm_fifo *pfifo = nvkm_fifo(subdev);
	struct nvkm_engine *engine = nv_engine(subdev);
	struct nvkm_object *engctx;
	struct nvkm_handle *handle;
	struct gf100_gr_priv *priv = (void *)subdev;
1093
	u64 inst = nv_rd32(priv, 0x409b00) & 0x0fffffff;
1094 1095 1096 1097 1098 1099 1100
	u32 stat = nv_rd32(priv, 0x400100);
	u32 addr = nv_rd32(priv, 0x400704);
	u32 mthd = (addr & 0x00003ffc);
	u32 subc = (addr & 0x00070000) >> 16;
	u32 data = nv_rd32(priv, 0x400708);
	u32 code = nv_rd32(priv, 0x400110);
	u32 class = nv_rd32(priv, 0x404200 + (subc * 4));
1101 1102
	int chid;

1103
	engctx = nvkm_engctx_get(engine, inst);
1104
	chid   = pfifo->chid(pfifo, engctx);
1105

1106 1107 1108 1109 1110 1111 1112 1113 1114
	if (stat & 0x00000001) {
		/*
		 * notifier interrupt, only needed for cyclestats
		 * can be safely ignored
		 */
		nv_wr32(priv, 0x400100, 0x00000001);
		stat &= ~0x00000001;
	}

1115
	if (stat & 0x00000010) {
1116
		handle = nvkm_handle_get_class(engctx, class);
1117
		if (!handle || nv_call(handle->object, mthd, data)) {
1118 1119
			nv_error(priv,
				 "ILLEGAL_MTHD ch %d [0x%010llx %s] subc %d class 0x%04x mthd 0x%04x data 0x%08x\n",
1120
				 chid, inst << 12, nvkm_client_name(engctx),
1121
				 subc, class, mthd, data);
1122
		}
1123
		nvkm_handle_put(handle);
1124 1125 1126 1127 1128
		nv_wr32(priv, 0x400100, 0x00000010);
		stat &= ~0x00000010;
	}

	if (stat & 0x00000020) {
1129 1130
		nv_error(priv,
			 "ILLEGAL_CLASS ch %d [0x%010llx %s] subc %d class 0x%04x mthd 0x%04x data 0x%08x\n",
1131
			 chid, inst << 12, nvkm_client_name(engctx), subc,
1132
			 class, mthd, data);
1133 1134 1135 1136 1137 1138
		nv_wr32(priv, 0x400100, 0x00000020);
		stat &= ~0x00000020;
	}

	if (stat & 0x00100000) {
		nv_error(priv, "DATA_ERROR [");
1139
		nvkm_enum_print(nv50_data_error_names, code);
1140
		pr_cont("] ch %d [0x%010llx %s] subc %d class 0x%04x mthd 0x%04x data 0x%08x\n",
1141
			chid, inst << 12, nvkm_client_name(engctx), subc,
1142
			class, mthd, data);
1143 1144 1145 1146 1147
		nv_wr32(priv, 0x400100, 0x00100000);
		stat &= ~0x00100000;
	}

	if (stat & 0x00200000) {
1148
		nv_error(priv, "TRAP ch %d [0x%010llx %s]\n", chid, inst << 12,
1149 1150
			 nvkm_client_name(engctx));
		gf100_gr_trap_intr(priv);
1151 1152 1153 1154 1155
		nv_wr32(priv, 0x400100, 0x00200000);
		stat &= ~0x00200000;
	}

	if (stat & 0x00080000) {
1156
		gf100_gr_ctxctl_isr(priv);
1157 1158 1159 1160 1161 1162 1163 1164 1165 1166
		nv_wr32(priv, 0x400100, 0x00080000);
		stat &= ~0x00080000;
	}

	if (stat) {
		nv_error(priv, "unknown stat 0x%08x\n", stat);
		nv_wr32(priv, 0x400100, stat);
	}

	nv_wr32(priv, 0x400500, 0x00010001);
1167
	nvkm_engctx_put(engctx);
1168 1169
}

1170
void
1171 1172
gf100_gr_init_fw(struct gf100_gr_priv *priv, u32 fuc_base,
		 struct gf100_gr_fuc *code, struct gf100_gr_fuc *data)
1173
{
1174
	int i;
1175

1176 1177 1178
	nv_wr32(priv, fuc_base + 0x01c0, 0x01000000);
	for (i = 0; i < data->size / 4; i++)
		nv_wr32(priv, fuc_base + 0x01c4, data->data[i]);
1179

1180 1181 1182 1183 1184 1185
	nv_wr32(priv, fuc_base + 0x0180, 0x01000000);
	for (i = 0; i < code->size / 4; i++) {
		if ((i & 0x3f) == 0)
			nv_wr32(priv, fuc_base + 0x0188, i >> 6);
		nv_wr32(priv, fuc_base + 0x0184, code->data[i]);
	}
1186 1187 1188 1189

	/* code must be padded to 0x40 words */
	for (; i & 0x3f; i++)
		nv_wr32(priv, fuc_base + 0x0184, 0);
1190 1191
}

1192
static void
1193 1194 1195
gf100_gr_init_csdata(struct gf100_gr_priv *priv,
		     const struct gf100_gr_pack *pack,
		     u32 falcon, u32 starstar, u32 base)
1196
{
1197 1198
	const struct gf100_gr_pack *iter;
	const struct gf100_gr_init *init;
1199
	u32 addr = ~0, prev = ~0, xfer = 0;
1200 1201 1202 1203 1204 1205 1206 1207 1208
	u32 star, temp;

	nv_wr32(priv, falcon + 0x01c0, 0x02000000 + starstar);
	star = nv_rd32(priv, falcon + 0x01c4);
	temp = nv_rd32(priv, falcon + 0x01c4);
	if (temp > star)
		star = temp;
	nv_wr32(priv, falcon + 0x01c0, 0x01000000 + star);

1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220
	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);
					nv_wr32(priv, falcon + 0x01c4, data);
					star += 4;
				}
				addr = head;
				xfer = 0;
1221
			}
1222 1223 1224
			prev = head;
			xfer = xfer + 1;
			head = head + init->pitch;
1225
		}
1226
	}
1227

1228
	nv_wr32(priv, falcon + 0x01c4, (--xfer << 26) | addr);
1229
	nv_wr32(priv, falcon + 0x01c0, 0x01000004 + starstar);
1230
	nv_wr32(priv, falcon + 0x01c4, star + 4);
1231 1232
}

1233
int
1234
gf100_gr_init_ctxctl(struct gf100_gr_priv *priv)
1235
{
1236 1237
	struct gf100_gr_oclass *oclass = (void *)nv_object(priv)->oclass;
	struct gf100_grctx_oclass *cclass = (void *)nv_engine(priv)->cclass;
1238
	int i;
1239

1240 1241
	if (priv->firmware) {
		/* load fuc microcode */
1242 1243 1244 1245 1246 1247
		nvkm_mc(priv)->unk260(nvkm_mc(priv), 0);
		gf100_gr_init_fw(priv, 0x409000, &priv->fuc409c,
						 &priv->fuc409d);
		gf100_gr_init_fw(priv, 0x41a000, &priv->fuc41ac,
						 &priv->fuc41ad);
		nvkm_mc(priv)->unk260(nvkm_mc(priv), 1);
1248

1249 1250 1251 1252 1253 1254 1255 1256
		/* start both of them running */
		nv_wr32(priv, 0x409840, 0xffffffff);
		nv_wr32(priv, 0x41a10c, 0x00000000);
		nv_wr32(priv, 0x40910c, 0x00000000);
		nv_wr32(priv, 0x41a100, 0x00000002);
		nv_wr32(priv, 0x409100, 0x00000002);
		if (!nv_wait(priv, 0x409800, 0x00000001, 0x00000001))
			nv_warn(priv, "0x409800 wait failed\n");
1257

1258 1259 1260
		nv_wr32(priv, 0x409840, 0xffffffff);
		nv_wr32(priv, 0x409500, 0x7fffffff);
		nv_wr32(priv, 0x409504, 0x00000021);
1261

1262 1263 1264 1265 1266 1267 1268 1269
		nv_wr32(priv, 0x409840, 0xffffffff);
		nv_wr32(priv, 0x409500, 0x00000000);
		nv_wr32(priv, 0x409504, 0x00000010);
		if (!nv_wait_ne(priv, 0x409800, 0xffffffff, 0x00000000)) {
			nv_error(priv, "fuc09 req 0x10 timeout\n");
			return -EBUSY;
		}
		priv->size = nv_rd32(priv, 0x409800);
1270

1271 1272 1273 1274 1275
		nv_wr32(priv, 0x409840, 0xffffffff);
		nv_wr32(priv, 0x409500, 0x00000000);
		nv_wr32(priv, 0x409504, 0x00000016);
		if (!nv_wait_ne(priv, 0x409800, 0xffffffff, 0x00000000)) {
			nv_error(priv, "fuc09 req 0x16 timeout\n");
1276 1277 1278
			return -EBUSY;
		}

1279 1280 1281 1282 1283
		nv_wr32(priv, 0x409840, 0xffffffff);
		nv_wr32(priv, 0x409500, 0x00000000);
		nv_wr32(priv, 0x409504, 0x00000025);
		if (!nv_wait_ne(priv, 0x409800, 0xffffffff, 0x00000000)) {
			nv_error(priv, "fuc09 req 0x25 timeout\n");
1284 1285 1286
			return -EBUSY;
		}

1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318
		if (nv_device(priv)->chipset >= 0xe0) {
			nv_wr32(priv, 0x409800, 0x00000000);
			nv_wr32(priv, 0x409500, 0x00000001);
			nv_wr32(priv, 0x409504, 0x00000030);
			if (!nv_wait_ne(priv, 0x409800, 0xffffffff, 0x00000000)) {
				nv_error(priv, "fuc09 req 0x30 timeout\n");
				return -EBUSY;
			}

			nv_wr32(priv, 0x409810, 0xb00095c8);
			nv_wr32(priv, 0x409800, 0x00000000);
			nv_wr32(priv, 0x409500, 0x00000001);
			nv_wr32(priv, 0x409504, 0x00000031);
			if (!nv_wait_ne(priv, 0x409800, 0xffffffff, 0x00000000)) {
				nv_error(priv, "fuc09 req 0x31 timeout\n");
				return -EBUSY;
			}

			nv_wr32(priv, 0x409810, 0x00080420);
			nv_wr32(priv, 0x409800, 0x00000000);
			nv_wr32(priv, 0x409500, 0x00000001);
			nv_wr32(priv, 0x409504, 0x00000032);
			if (!nv_wait_ne(priv, 0x409800, 0xffffffff, 0x00000000)) {
				nv_error(priv, "fuc09 req 0x32 timeout\n");
				return -EBUSY;
			}

			nv_wr32(priv, 0x409614, 0x00000070);
			nv_wr32(priv, 0x409614, 0x00000770);
			nv_wr32(priv, 0x40802c, 0x00000001);
		}

1319
		if (priv->data == NULL) {
1320
			int ret = gf100_grctx_generate(priv);
1321 1322 1323 1324 1325 1326 1327
			if (ret) {
				nv_error(priv, "failed to construct context\n");
				return ret;
			}
		}

		return 0;
1328 1329 1330
	} else
	if (!oclass->fecs.ucode) {
		return -ENOSYS;
1331
	}
1332

1333
	/* load HUB microcode */
1334
	nvkm_mc(priv)->unk260(nvkm_mc(priv), 0);
1335
	nv_wr32(priv, 0x4091c0, 0x01000000);
1336 1337
	for (i = 0; i < oclass->fecs.ucode->data.size / 4; i++)
		nv_wr32(priv, 0x4091c4, oclass->fecs.ucode->data.data[i]);
1338

1339
	nv_wr32(priv, 0x409180, 0x01000000);
1340
	for (i = 0; i < oclass->fecs.ucode->code.size / 4; i++) {
1341
		if ((i & 0x3f) == 0)
1342
			nv_wr32(priv, 0x409188, i >> 6);
1343
		nv_wr32(priv, 0x409184, oclass->fecs.ucode->code.data[i]);
1344 1345 1346
	}

	/* load GPC microcode */
1347
	nv_wr32(priv, 0x41a1c0, 0x01000000);
1348 1349
	for (i = 0; i < oclass->gpccs.ucode->data.size / 4; i++)
		nv_wr32(priv, 0x41a1c4, oclass->gpccs.ucode->data.data[i]);
1350

1351
	nv_wr32(priv, 0x41a180, 0x01000000);
1352
	for (i = 0; i < oclass->gpccs.ucode->code.size / 4; i++) {
1353
		if ((i & 0x3f) == 0)
1354
			nv_wr32(priv, 0x41a188, i >> 6);
1355
		nv_wr32(priv, 0x41a184, oclass->gpccs.ucode->code.data[i]);
1356
	}
1357
	nvkm_mc(priv)->unk260(nvkm_mc(priv), 1);
1358

1359
	/* load register lists */
1360 1361 1362 1363
	gf100_gr_init_csdata(priv, cclass->hub, 0x409000, 0x000, 0x000000);
	gf100_gr_init_csdata(priv, cclass->gpc, 0x41a000, 0x000, 0x418000);
	gf100_gr_init_csdata(priv, cclass->tpc, 0x41a000, 0x004, 0x419800);
	gf100_gr_init_csdata(priv, cclass->ppc, 0x41a000, 0x008, 0x41be00);
1364

1365
	/* start HUB ucode running, it'll init the GPCs */
1366 1367 1368 1369
	nv_wr32(priv, 0x40910c, 0x00000000);
	nv_wr32(priv, 0x409100, 0x00000002);
	if (!nv_wait(priv, 0x409800, 0x80000000, 0x80000000)) {
		nv_error(priv, "HUB_INIT timed out\n");
1370
		gf100_gr_ctxctl_debug(priv);
1371 1372 1373
		return -EBUSY;
	}

1374
	priv->size = nv_rd32(priv, 0x409804);
1375
	if (priv->data == NULL) {
1376
		int ret = gf100_grctx_generate(priv);
1377
		if (ret) {
1378
			nv_error(priv, "failed to construct context\n");
1379 1380
			return ret;
		}
1381 1382 1383
	}

	return 0;
1384 1385
}

1386
int
1387
gf100_gr_init(struct nvkm_object *object)
1388
{
1389 1390
	struct gf100_gr_oclass *oclass = (void *)object->oclass;
	struct gf100_gr_priv *priv = (void *)object;
1391 1392 1393 1394 1395
	const u32 magicgpc918 = DIV_ROUND_UP(0x00800000, priv->tpc_total);
	u32 data[TPC_MAX / 8] = {};
	u8  tpcnr[GPC_MAX];
	int gpc, tpc, rop;
	int ret, i;
1396

1397
	ret = nvkm_gr_init(&priv->base);
1398 1399 1400
	if (ret)
		return ret;

1401 1402 1403 1404 1405 1406 1407 1408 1409
	nv_wr32(priv, GPC_BCAST(0x0880), 0x00000000);
	nv_wr32(priv, GPC_BCAST(0x08a4), 0x00000000);
	nv_wr32(priv, GPC_BCAST(0x0888), 0x00000000);
	nv_wr32(priv, GPC_BCAST(0x088c), 0x00000000);
	nv_wr32(priv, GPC_BCAST(0x0890), 0x00000000);
	nv_wr32(priv, GPC_BCAST(0x0894), 0x00000000);
	nv_wr32(priv, GPC_BCAST(0x08b4), priv->unk4188b4->addr >> 8);
	nv_wr32(priv, GPC_BCAST(0x08b8), priv->unk4188b8->addr >> 8);

1410
	gf100_gr_mmio(priv, oclass->mmio);
1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434

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

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

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

	for (gpc = 0; gpc < priv->gpc_nr; gpc++) {
		nv_wr32(priv, GPC_UNIT(gpc, 0x0914),
			priv->magic_not_rop_nr << 8 | priv->tpc_nr[gpc]);
		nv_wr32(priv, GPC_UNIT(gpc, 0x0910), 0x00040000 |
			priv->tpc_total);
		nv_wr32(priv, GPC_UNIT(gpc, 0x0918), magicgpc918);
	}

M
Maarten Lankhorst 已提交
1435 1436 1437 1438 1439
	if (nv_device(priv)->chipset != 0xd7)
		nv_wr32(priv, GPC_BCAST(0x1bd4), magicgpc918);
	else
		nv_wr32(priv, GPC_BCAST(0x3fd4), magicgpc918);

1440
	nv_wr32(priv, GPC_BCAST(0x08ac), nv_rd32(priv, 0x100800));
1441 1442

	nv_wr32(priv, 0x400500, 0x00010001);
1443

1444 1445 1446
	nv_wr32(priv, 0x400100, 0xffffffff);
	nv_wr32(priv, 0x40013c, 0xffffffff);

1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
	nv_wr32(priv, 0x409c24, 0x000f0000);
	nv_wr32(priv, 0x404000, 0xc0000000);
	nv_wr32(priv, 0x404600, 0xc0000000);
	nv_wr32(priv, 0x408030, 0xc0000000);
	nv_wr32(priv, 0x40601c, 0xc0000000);
	nv_wr32(priv, 0x404490, 0xc0000000);
	nv_wr32(priv, 0x406018, 0xc0000000);
	nv_wr32(priv, 0x405840, 0xc0000000);
	nv_wr32(priv, 0x405844, 0x00ffffff);
	nv_mask(priv, 0x419cc0, 0x00000008, 0x00000008);
	nv_mask(priv, 0x419eb4, 0x00001000, 0x00001000);

	for (gpc = 0; gpc < priv->gpc_nr; gpc++) {
		nv_wr32(priv, GPC_UNIT(gpc, 0x0420), 0xc0000000);
		nv_wr32(priv, GPC_UNIT(gpc, 0x0900), 0xc0000000);
		nv_wr32(priv, GPC_UNIT(gpc, 0x1028), 0xc0000000);
		nv_wr32(priv, GPC_UNIT(gpc, 0x0824), 0xc0000000);
		for (tpc = 0; tpc < priv->tpc_nr[gpc]; tpc++) {
			nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x508), 0xffffffff);
			nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x50c), 0xffffffff);
			nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x224), 0xc0000000);
			nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x48c), 0xc0000000);
			nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x084), 0xc0000000);
			nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x644), 0x001ffffe);
			nv_wr32(priv, TPC_UNIT(gpc, tpc, 0x64c), 0x0000000f);
		}
		nv_wr32(priv, GPC_UNIT(gpc, 0x2c90), 0xffffffff);
		nv_wr32(priv, GPC_UNIT(gpc, 0x2c94), 0xffffffff);
	}

	for (rop = 0; rop < priv->rop_nr; rop++) {
		nv_wr32(priv, ROP_UNIT(rop, 0x144), 0xc0000000);
		nv_wr32(priv, ROP_UNIT(rop, 0x070), 0xc0000000);
		nv_wr32(priv, ROP_UNIT(rop, 0x204), 0xffffffff);
		nv_wr32(priv, ROP_UNIT(rop, 0x208), 0xffffffff);
	}
1483 1484 1485 1486 1487 1488 1489

	nv_wr32(priv, 0x400108, 0xffffffff);
	nv_wr32(priv, 0x400138, 0xffffffff);
	nv_wr32(priv, 0x400118, 0xffffffff);
	nv_wr32(priv, 0x400130, 0xffffffff);
	nv_wr32(priv, 0x40011c, 0xffffffff);
	nv_wr32(priv, 0x400134, 0xffffffff);
1490

1491
	nv_wr32(priv, 0x400054, 0x34ce3464);
1492

1493
	gf100_gr_zbc_init(priv);
1494

1495
	return gf100_gr_init_ctxctl(priv);
1496 1497 1498
}

static void
1499
gf100_gr_dtor_fw(struct gf100_gr_fuc *fuc)
1500 1501 1502 1503 1504 1505
{
	kfree(fuc->data);
	fuc->data = NULL;
}

int
1506 1507
gf100_gr_ctor_fw(struct gf100_gr_priv *priv, const char *fwname,
		 struct gf100_gr_fuc *fuc)
1508
{
1509
	struct nvkm_device *device = nv_device(priv);
1510 1511 1512 1513 1514
	const struct firmware *fw;
	char f[32];
	int ret;

	snprintf(f, sizeof(f), "nouveau/nv%02x_%s", device->chipset, fwname);
A
Alexandre Courbot 已提交
1515
	ret = request_firmware(&fw, f, nv_device_base(device));
1516 1517
	if (ret) {
		snprintf(f, sizeof(f), "nouveau/%s", fwname);
A
Alexandre Courbot 已提交
1518
		ret = request_firmware(&fw, f, nv_device_base(device));
1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
		if (ret) {
			nv_error(priv, "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;
}

void
1532
gf100_gr_dtor(struct nvkm_object *object)
1533
{
1534
	struct gf100_gr_priv *priv = (void *)object;
1535 1536 1537

	kfree(priv->data);

1538 1539 1540 1541
	gf100_gr_dtor_fw(&priv->fuc409c);
	gf100_gr_dtor_fw(&priv->fuc409d);
	gf100_gr_dtor_fw(&priv->fuc41ac);
	gf100_gr_dtor_fw(&priv->fuc41ad);
1542

1543 1544
	nvkm_gpuobj_ref(NULL, &priv->unk4188b8);
	nvkm_gpuobj_ref(NULL, &priv->unk4188b4);
1545

1546
	nvkm_gr_destroy(&priv->base);
1547 1548 1549
}

int
1550 1551 1552
gf100_gr_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
	      struct nvkm_oclass *bclass, void *data, u32 size,
	      struct nvkm_object **pobject)
1553
{
1554 1555 1556
	struct gf100_gr_oclass *oclass = (void *)bclass;
	struct nvkm_device *device = nv_device(parent);
	struct gf100_gr_priv *priv;
1557
	bool use_ext_fw, enable;
1558
	int ret, i, j;
1559

1560 1561
	use_ext_fw = nvkm_boolopt(device->cfgopt, "NvGrUseFW",
				  oclass->fecs.ucode == NULL);
1562 1563
	enable = use_ext_fw || oclass->fecs.ucode != NULL;

1564
	ret = nvkm_gr_create(parent, engine, bclass, enable, &priv);
1565 1566 1567 1568
	*pobject = nv_object(priv);
	if (ret)
		return ret;

1569
	nv_subdev(priv)->unit = 0x08001000;
1570
	nv_subdev(priv)->intr = gf100_gr_intr;
1571

1572
	priv->base.units = gf100_gr_units;
1573

1574
	if (use_ext_fw) {
1575
		nv_info(priv, "using external firmware\n");
1576 1577 1578 1579
		if (gf100_gr_ctor_fw(priv, "fuc409c", &priv->fuc409c) ||
		    gf100_gr_ctor_fw(priv, "fuc409d", &priv->fuc409d) ||
		    gf100_gr_ctor_fw(priv, "fuc41ac", &priv->fuc41ac) ||
		    gf100_gr_ctor_fw(priv, "fuc41ad", &priv->fuc41ad))
1580
			return -ENODEV;
1581 1582 1583
		priv->firmware = true;
	}

1584 1585
	ret = nvkm_gpuobj_new(nv_object(priv), NULL, 0x1000, 256, 0,
			      &priv->unk4188b4);
1586 1587
	if (ret)
		return ret;
1588

1589 1590
	ret = nvkm_gpuobj_new(nv_object(priv), NULL, 0x1000, 256, 0,
			      &priv->unk4188b8);
1591
	if (ret)
1592 1593
		return ret;

1594 1595 1596 1597 1598 1599 1600 1601 1602 1603
	for (i = 0; i < 0x1000; i += 4) {
		nv_wo32(priv->unk4188b4, i, 0x00000010);
		nv_wo32(priv->unk4188b8, i, 0x00000010);
	}

	priv->rop_nr = (nv_rd32(priv, 0x409604) & 0x001f0000) >> 16;
	priv->gpc_nr =  nv_rd32(priv, 0x409604) & 0x0000001f;
	for (i = 0; i < priv->gpc_nr; i++) {
		priv->tpc_nr[i]  = nv_rd32(priv, GPC_UNIT(i, 0x2608));
		priv->tpc_total += priv->tpc_nr[i];
1604 1605 1606 1607 1608
		priv->ppc_nr[i]  = oclass->ppc_nr;
		for (j = 0; j < priv->ppc_nr[i]; j++) {
			u8 mask = nv_rd32(priv, GPC_UNIT(i, 0x0c30 + (j * 4)));
			priv->ppc_tpc_nr[i][j] = hweight8(mask);
		}
1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641
	}

	/*XXX: these need figuring out... though it might not even matter */
	switch (nv_device(priv)->chipset) {
	case 0xc0:
		if (priv->tpc_total == 11) { /* 465, 3/4/4/0, 4 */
			priv->magic_not_rop_nr = 0x07;
		} else
		if (priv->tpc_total == 14) { /* 470, 3/3/4/4, 5 */
			priv->magic_not_rop_nr = 0x05;
		} else
		if (priv->tpc_total == 15) { /* 480, 3/4/4/4, 6 */
			priv->magic_not_rop_nr = 0x06;
		}
		break;
	case 0xc3: /* 450, 4/0/0/0, 2 */
		priv->magic_not_rop_nr = 0x03;
		break;
	case 0xc4: /* 460, 3/4/0/0, 4 */
		priv->magic_not_rop_nr = 0x01;
		break;
	case 0xc1: /* 2/0/0/0, 1 */
		priv->magic_not_rop_nr = 0x01;
		break;
	case 0xc8: /* 4/4/3/4, 5 */
		priv->magic_not_rop_nr = 0x06;
		break;
	case 0xce: /* 4/4/0/0, 4 */
		priv->magic_not_rop_nr = 0x03;
		break;
	case 0xcf: /* 4/0/0/0, 3 */
		priv->magic_not_rop_nr = 0x03;
		break;
M
Maarten Lankhorst 已提交
1642
	case 0xd7:
1643 1644 1645 1646 1647 1648 1649
	case 0xd9: /* 1/0/0/0, 1 */
		priv->magic_not_rop_nr = 0x01;
		break;
	}

	nv_engine(priv)->cclass = *oclass->cclass;
	nv_engine(priv)->sclass =  oclass->sclass;
1650 1651 1652
	return 0;
}

1653
#include "fuc/hubgf100.fuc3.h"
1654

1655 1656 1657 1658 1659 1660
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),
1661 1662
};

1663
#include "fuc/gpcgf100.fuc3.h"
1664

1665 1666 1667 1668 1669 1670
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),
1671 1672
};

1673 1674
struct nvkm_oclass *
gf100_gr_oclass = &(struct gf100_gr_oclass) {
1675
	.base.handle = NV_ENGINE(GR, 0xc0),
1676 1677 1678 1679 1680
	.base.ofuncs = &(struct nvkm_ofuncs) {
		.ctor = gf100_gr_ctor,
		.dtor = gf100_gr_dtor,
		.init = gf100_gr_init,
		.fini = _nvkm_gr_fini,
1681
	},
1682 1683 1684 1685 1686
	.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,
1687
}.base;