nv20.c 11.5 KB
Newer Older
1 2 3
#include "nv20.h"
#include "regs.h"

4
#include <core/client.h>
5 6
#include <core/handle.h>
#include <engine/fifo.h>
7 8
#include <subdev/fb.h>
#include <subdev/timer.h>
9 10 11 12 13

/*******************************************************************************
 * Graphics object classes
 ******************************************************************************/

14
static struct nvkm_oclass
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
nv20_gr_sclass[] = {
	{ 0x0012, &nv04_gr_ofuncs, NULL }, /* beta1 */
	{ 0x0019, &nv04_gr_ofuncs, NULL }, /* clip */
	{ 0x0030, &nv04_gr_ofuncs, NULL }, /* null */
	{ 0x0039, &nv04_gr_ofuncs, NULL }, /* m2mf */
	{ 0x0043, &nv04_gr_ofuncs, NULL }, /* rop */
	{ 0x0044, &nv04_gr_ofuncs, NULL }, /* patt */
	{ 0x004a, &nv04_gr_ofuncs, NULL }, /* gdi */
	{ 0x0062, &nv04_gr_ofuncs, NULL }, /* surf2d */
	{ 0x0072, &nv04_gr_ofuncs, NULL }, /* beta4 */
	{ 0x0089, &nv04_gr_ofuncs, NULL }, /* sifm */
	{ 0x008a, &nv04_gr_ofuncs, NULL }, /* ifc */
	{ 0x0096, &nv04_gr_ofuncs, NULL }, /* celcius */
	{ 0x0097, &nv04_gr_ofuncs, NULL }, /* kelvin */
	{ 0x009e, &nv04_gr_ofuncs, NULL }, /* swzsurf */
	{ 0x009f, &nv04_gr_ofuncs, NULL }, /* imageblit */
31
	{},
32 33
};

34 35 36
/*******************************************************************************
 * PGRAPH context
 ******************************************************************************/
37

38
static int
39 40 41
nv20_gr_context_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
		     struct nvkm_oclass *oclass, void *data, u32 size,
		     struct nvkm_object **pobject)
42
{
43
	struct nv20_gr_chan *chan;
44
	int ret, i;
45

46 47
	ret = nvkm_gr_context_create(parent, engine, oclass, NULL, 0x37f0,
				     16, NVOBJ_FLAG_ZERO_ALLOC, &chan);
48 49 50
	*pobject = nv_object(chan);
	if (ret)
		return ret;
51

52
	chan->chid = nvkm_fifo_chan(parent)->chid;
53

54 55 56 57 58 59 60
	nv_wo32(chan, 0x0000, 0x00000001 | (chan->chid << 24));
	nv_wo32(chan, 0x033c, 0xffff0000);
	nv_wo32(chan, 0x03a0, 0x0fff0000);
	nv_wo32(chan, 0x03a4, 0x0fff0000);
	nv_wo32(chan, 0x047c, 0x00000101);
	nv_wo32(chan, 0x0490, 0x00000111);
	nv_wo32(chan, 0x04a8, 0x44400000);
61
	for (i = 0x04d4; i <= 0x04e0; i += 4)
62
		nv_wo32(chan, i, 0x00030303);
63
	for (i = 0x04f4; i <= 0x0500; i += 4)
64
		nv_wo32(chan, i, 0x00080000);
65
	for (i = 0x050c; i <= 0x0518; i += 4)
66
		nv_wo32(chan, i, 0x01012000);
67
	for (i = 0x051c; i <= 0x0528; i += 4)
68
		nv_wo32(chan, i, 0x000105b8);
69
	for (i = 0x052c; i <= 0x0538; i += 4)
70
		nv_wo32(chan, i, 0x00080008);
71
	for (i = 0x055c; i <= 0x0598; i += 4)
72 73 74 75 76 77 78
		nv_wo32(chan, i, 0x07ff0000);
	nv_wo32(chan, 0x05a4, 0x4b7fffff);
	nv_wo32(chan, 0x05fc, 0x00000001);
	nv_wo32(chan, 0x0604, 0x00004000);
	nv_wo32(chan, 0x0610, 0x00000001);
	nv_wo32(chan, 0x0618, 0x00040000);
	nv_wo32(chan, 0x061c, 0x00010000);
79
	for (i = 0x1c1c; i <= 0x248c; i += 16) {
80 81 82
		nv_wo32(chan, (i + 0), 0x10700ff9);
		nv_wo32(chan, (i + 4), 0x0436086c);
		nv_wo32(chan, (i + 8), 0x000c001b);
83
	}
84 85 86 87 88 89 90 91 92 93 94 95
	nv_wo32(chan, 0x281c, 0x3f800000);
	nv_wo32(chan, 0x2830, 0x3f800000);
	nv_wo32(chan, 0x285c, 0x40000000);
	nv_wo32(chan, 0x2860, 0x3f800000);
	nv_wo32(chan, 0x2864, 0x3f000000);
	nv_wo32(chan, 0x286c, 0x40000000);
	nv_wo32(chan, 0x2870, 0x3f800000);
	nv_wo32(chan, 0x2878, 0xbf800000);
	nv_wo32(chan, 0x2880, 0xbf800000);
	nv_wo32(chan, 0x34a4, 0x000fe000);
	nv_wo32(chan, 0x3530, 0x000003f8);
	nv_wo32(chan, 0x3540, 0x002fe000);
96
	for (i = 0x355c; i <= 0x3578; i += 4)
97 98
		nv_wo32(chan, i, 0x001c527c);
	return 0;
99 100
}

101
int
102
nv20_gr_context_init(struct nvkm_object *object)
103
{
104 105
	struct nv20_gr_priv *priv = (void *)object->engine;
	struct nv20_gr_chan *chan = (void *)object;
106
	int ret;
107

108
	ret = nvkm_gr_context_init(&chan->base);
109 110
	if (ret)
		return ret;
111

112 113
	nv_wo32(priv->ctxtab, chan->chid * 4, nv_gpuobj(chan)->addr >> 4);
	return 0;
114 115
}

116
int
117
nv20_gr_context_fini(struct nvkm_object *object, bool suspend)
118
{
119 120
	struct nv20_gr_priv *priv = (void *)object->engine;
	struct nv20_gr_chan *chan = (void *)object;
121 122 123 124 125 126 127 128 129 130 131
	int chid = -1;

	nv_mask(priv, 0x400720, 0x00000001, 0x00000000);
	if (nv_rd32(priv, 0x400144) & 0x00010000)
		chid = (nv_rd32(priv, 0x400148) & 0x1f000000) >> 24;
	if (chan->chid == chid) {
		nv_wr32(priv, 0x400784, nv_gpuobj(chan)->addr >> 4);
		nv_wr32(priv, 0x400788, 0x00000002);
		nv_wait(priv, 0x400700, 0xffffffff, 0x00000000);
		nv_wr32(priv, 0x400144, 0x10000000);
		nv_mask(priv, 0x400148, 0xff000000, 0x1f000000);
132
	}
133
	nv_mask(priv, 0x400720, 0x00000001, 0x00000001);
134

135
	nv_wo32(priv->ctxtab, chan->chid * 4, 0x00000000);
136
	return nvkm_gr_context_fini(&chan->base, suspend);
137 138
}

139
static struct nvkm_oclass
140
nv20_gr_cclass = {
141
	.handle = NV_ENGCTX(GR, 0x20),
142
	.ofuncs = &(struct nvkm_ofuncs) {
143
		.ctor = nv20_gr_context_ctor,
144
		.dtor = _nvkm_gr_context_dtor,
145 146
		.init = nv20_gr_context_init,
		.fini = nv20_gr_context_fini,
147 148
		.rd32 = _nvkm_gr_context_rd32,
		.wr32 = _nvkm_gr_context_wr32,
149 150
	},
};
151

152 153 154
/*******************************************************************************
 * PGRAPH engine/subdev functions
 ******************************************************************************/
155 156

void
157
nv20_gr_tile_prog(struct nvkm_engine *engine, int i)
158
{
159
	struct nvkm_fb_tile *tile = &nvkm_fb(engine)->tile.region[i];
B
Ben Skeggs 已提交
160
	struct nvkm_fifo *fifo = nvkm_fifo(engine);
161
	struct nv20_gr_priv *priv = (void *)engine;
162
	unsigned long flags;
163

B
Ben Skeggs 已提交
164
	fifo->pause(fifo, &flags);
165
	nv04_gr_idle(priv);
166

167 168 169
	nv_wr32(priv, NV20_PGRAPH_TLIMIT(i), tile->limit);
	nv_wr32(priv, NV20_PGRAPH_TSIZE(i), tile->pitch);
	nv_wr32(priv, NV20_PGRAPH_TILE(i), tile->addr);
170

171 172 173 174 175 176
	nv_wr32(priv, NV10_PGRAPH_RDI_INDEX, 0x00EA0030 + 4 * i);
	nv_wr32(priv, NV10_PGRAPH_RDI_DATA, tile->limit);
	nv_wr32(priv, NV10_PGRAPH_RDI_INDEX, 0x00EA0050 + 4 * i);
	nv_wr32(priv, NV10_PGRAPH_RDI_DATA, tile->pitch);
	nv_wr32(priv, NV10_PGRAPH_RDI_INDEX, 0x00EA0010 + 4 * i);
	nv_wr32(priv, NV10_PGRAPH_RDI_DATA, tile->addr);
177

178
	if (nv_device(engine)->chipset != 0x34) {
179 180 181 182
		nv_wr32(priv, NV20_PGRAPH_ZCOMP(i), tile->zcomp);
		nv_wr32(priv, NV10_PGRAPH_RDI_INDEX, 0x00ea0090 + 4 * i);
		nv_wr32(priv, NV10_PGRAPH_RDI_DATA, tile->zcomp);
	}
183

B
Ben Skeggs 已提交
184
	fifo->start(fifo, &flags);
185 186
}

187
void
188
nv20_gr_intr(struct nvkm_subdev *subdev)
189
{
190 191 192
	struct nvkm_engine *engine = nv_engine(subdev);
	struct nvkm_object *engctx;
	struct nvkm_handle *handle;
193
	struct nv20_gr_priv *priv = (void *)subdev;
194 195 196 197 198 199 200 201 202 203 204
	u32 stat = nv_rd32(priv, NV03_PGRAPH_INTR);
	u32 nsource = nv_rd32(priv, NV03_PGRAPH_NSOURCE);
	u32 nstatus = nv_rd32(priv, NV03_PGRAPH_NSTATUS);
	u32 addr = nv_rd32(priv, NV04_PGRAPH_TRAPPED_ADDR);
	u32 chid = (addr & 0x01f00000) >> 20;
	u32 subc = (addr & 0x00070000) >> 16;
	u32 mthd = (addr & 0x00001ffc);
	u32 data = nv_rd32(priv, NV04_PGRAPH_TRAPPED_DATA);
	u32 class = nv_rd32(priv, 0x400160 + subc * 4) & 0xfff;
	u32 show = stat;

205
	engctx = nvkm_engctx_get(engine, chid);
206 207
	if (stat & NV_PGRAPH_INTR_ERROR) {
		if (nsource & NV03_PGRAPH_NSOURCE_ILLEGAL_MTHD) {
208
			handle = nvkm_handle_get_class(engctx, class);
209 210
			if (handle && !nv_call(handle->object, mthd, data))
				show &= ~NV_PGRAPH_INTR_ERROR;
211
			nvkm_handle_put(handle);
212
		}
213 214
	}

215 216 217 218
	nv_wr32(priv, NV03_PGRAPH_INTR, stat);
	nv_wr32(priv, NV04_PGRAPH_FIFO, 0x00000001);

	if (show) {
219
		nv_error(priv, "%s", "");
220
		nvkm_bitfield_print(nv10_gr_intr_name, show);
M
Marcin Slusarz 已提交
221
		pr_cont(" nsource:");
222
		nvkm_bitfield_print(nv04_gr_nsource, nsource);
M
Marcin Slusarz 已提交
223
		pr_cont(" nstatus:");
224
		nvkm_bitfield_print(nv10_gr_nstatus, nstatus);
M
Marcin Slusarz 已提交
225
		pr_cont("\n");
226 227
		nv_error(priv,
			 "ch %d [%s] subc %d class 0x%04x mthd 0x%04x data 0x%08x\n",
228
			 chid, nvkm_client_name(engctx), subc, class, mthd,
229
			 data);
230
	}
231

232
	nvkm_engctx_put(engctx);
233
}
234

235
static int
236 237 238
nv20_gr_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
	     struct nvkm_oclass *oclass, void *data, u32 size,
	     struct nvkm_object **pobject)
239
{
240
	struct nv20_gr_priv *priv;
241
	int ret;
242

243
	ret = nvkm_gr_create(parent, engine, oclass, true, &priv);
244 245 246
	*pobject = nv_object(priv);
	if (ret)
		return ret;
247

248 249
	ret = nvkm_gpuobj_new(nv_object(priv), NULL, 32 * 4, 16,
			      NVOBJ_FLAG_ZERO_ALLOC, &priv->ctxtab);
250 251
	if (ret)
		return ret;
252

253
	nv_subdev(priv)->unit = 0x00001000;
254 255 256 257
	nv_subdev(priv)->intr = nv20_gr_intr;
	nv_engine(priv)->cclass = &nv20_gr_cclass;
	nv_engine(priv)->sclass = nv20_gr_sclass;
	nv_engine(priv)->tile_prog = nv20_gr_tile_prog;
258 259 260
	return 0;
}

261
void
262
nv20_gr_dtor(struct nvkm_object *object)
263
{
264
	struct nv20_gr_priv *priv = (void *)object;
265 266
	nvkm_gpuobj_ref(NULL, &priv->ctxtab);
	nvkm_gr_destroy(&priv->base);
267
}
268

269
int
270
nv20_gr_init(struct nvkm_object *object)
271
{
272
	struct nvkm_engine *engine = nv_engine(object);
273
	struct nv20_gr_priv *priv = (void *)engine;
B
Ben Skeggs 已提交
274
	struct nvkm_fb *fb = nvkm_fb(object);
275 276
	u32 tmp, vramsz;
	int ret, i;
277

278
	ret = nvkm_gr_init(&priv->base);
279 280
	if (ret)
		return ret;
281

282
	nv_wr32(priv, NV20_PGRAPH_CHANNEL_CTX_TABLE, priv->ctxtab->addr >> 4);
283

284 285 286 287 288 289 290 291 292 293
	if (nv_device(priv)->chipset == 0x20) {
		nv_wr32(priv, NV10_PGRAPH_RDI_INDEX, 0x003d0000);
		for (i = 0; i < 15; i++)
			nv_wr32(priv, NV10_PGRAPH_RDI_DATA, 0x00000000);
		nv_wait(priv, 0x400700, 0xffffffff, 0x00000000);
	} else {
		nv_wr32(priv, NV10_PGRAPH_RDI_INDEX, 0x02c80000);
		for (i = 0; i < 32; i++)
			nv_wr32(priv, NV10_PGRAPH_RDI_DATA, 0x00000000);
		nv_wait(priv, 0x400700, 0xffffffff, 0x00000000);
294 295
	}

296 297
	nv_wr32(priv, NV03_PGRAPH_INTR   , 0xFFFFFFFF);
	nv_wr32(priv, NV03_PGRAPH_INTR_EN, 0xFFFFFFFF);
298

299 300 301 302 303 304
	nv_wr32(priv, NV04_PGRAPH_DEBUG_0, 0xFFFFFFFF);
	nv_wr32(priv, NV04_PGRAPH_DEBUG_0, 0x00000000);
	nv_wr32(priv, NV04_PGRAPH_DEBUG_1, 0x00118700);
	nv_wr32(priv, NV04_PGRAPH_DEBUG_3, 0xF3CE0475); /* 0x4 = auto ctx switch */
	nv_wr32(priv, NV10_PGRAPH_DEBUG_4, 0x00000000);
	nv_wr32(priv, 0x40009C           , 0x00000040);
305

306 307 308 309 310 311 312
	if (nv_device(priv)->chipset >= 0x25) {
		nv_wr32(priv, 0x400890, 0x00a8cfff);
		nv_wr32(priv, 0x400610, 0x304B1FB6);
		nv_wr32(priv, 0x400B80, 0x1cbd3883);
		nv_wr32(priv, 0x400B84, 0x44000000);
		nv_wr32(priv, 0x400098, 0x40000080);
		nv_wr32(priv, 0x400B88, 0x000000ff);
313

314 315 316 317 318 319 320 321 322 323
	} else {
		nv_wr32(priv, 0x400880, 0x0008c7df);
		nv_wr32(priv, 0x400094, 0x00000005);
		nv_wr32(priv, 0x400B80, 0x45eae20e);
		nv_wr32(priv, 0x400B84, 0x24000000);
		nv_wr32(priv, 0x400098, 0x00000040);
		nv_wr32(priv, NV10_PGRAPH_RDI_INDEX, 0x00E00038);
		nv_wr32(priv, NV10_PGRAPH_RDI_DATA , 0x00000030);
		nv_wr32(priv, NV10_PGRAPH_RDI_INDEX, 0x00E10038);
		nv_wr32(priv, NV10_PGRAPH_RDI_DATA , 0x00000030);
324
	}
325

326
	/* Turn all the tiling regions off. */
B
Ben Skeggs 已提交
327
	for (i = 0; i < fb->tile.regions; i++)
328
		engine->tile_prog(engine, i);
329

330 331 332
	nv_wr32(priv, 0x4009a0, nv_rd32(priv, 0x100324));
	nv_wr32(priv, NV10_PGRAPH_RDI_INDEX, 0x00EA000C);
	nv_wr32(priv, NV10_PGRAPH_RDI_DATA, nv_rd32(priv, 0x100324));
333

334 335
	nv_wr32(priv, NV10_PGRAPH_CTX_CONTROL, 0x10000100);
	nv_wr32(priv, NV10_PGRAPH_STATE      , 0xFFFFFFFF);
336

337 338 339 340
	tmp = nv_rd32(priv, NV10_PGRAPH_SURFACE) & 0x0007ff00;
	nv_wr32(priv, NV10_PGRAPH_SURFACE, tmp);
	tmp = nv_rd32(priv, NV10_PGRAPH_SURFACE) | 0x00020100;
	nv_wr32(priv, NV10_PGRAPH_SURFACE, tmp);
341

342
	/* begin RAM config */
A
Alexandre Courbot 已提交
343
	vramsz = nv_device_resource_len(nv_device(priv), 0) - 1;
344 345 346 347 348 349 350 351 352 353
	nv_wr32(priv, 0x4009A4, nv_rd32(priv, 0x100200));
	nv_wr32(priv, 0x4009A8, nv_rd32(priv, 0x100204));
	nv_wr32(priv, NV10_PGRAPH_RDI_INDEX, 0x00EA0000);
	nv_wr32(priv, NV10_PGRAPH_RDI_DATA , nv_rd32(priv, 0x100200));
	nv_wr32(priv, NV10_PGRAPH_RDI_INDEX, 0x00EA0004);
	nv_wr32(priv, NV10_PGRAPH_RDI_DATA , nv_rd32(priv, 0x100204));
	nv_wr32(priv, 0x400820, 0);
	nv_wr32(priv, 0x400824, 0);
	nv_wr32(priv, 0x400864, vramsz - 1);
	nv_wr32(priv, 0x400868, vramsz - 1);
354

355 356 357
	/* interesting.. the below overwrites some of the tile setup above.. */
	nv_wr32(priv, 0x400B20, 0x00000000);
	nv_wr32(priv, 0x400B04, 0xFFFFFFFF);
358

359 360 361 362
	nv_wr32(priv, NV03_PGRAPH_ABS_UCLIP_XMIN, 0);
	nv_wr32(priv, NV03_PGRAPH_ABS_UCLIP_YMIN, 0);
	nv_wr32(priv, NV03_PGRAPH_ABS_UCLIP_XMAX, 0x7fff);
	nv_wr32(priv, NV03_PGRAPH_ABS_UCLIP_YMAX, 0x7fff);
363 364
	return 0;
}
365

366
struct nvkm_oclass
367
nv20_gr_oclass = {
368
	.handle = NV_ENGINE(GR, 0x20),
369
	.ofuncs = &(struct nvkm_ofuncs) {
370 371 372
		.ctor = nv20_gr_ctor,
		.dtor = nv20_gr_dtor,
		.init = nv20_gr_init,
373
		.fini = _nvkm_gr_fini,
374 375
	},
};