nv50_display.c 26.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * Copyright (C) 2008 Maarten Maathuis.
 * All Rights Reserved.
 *
 * 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 (including the
 * next paragraph) 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 OWNER(S) AND/OR ITS SUPPLIERS 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.
 *
 */

27
#define NOUVEAU_DMA_DEBUG (nouveau_reg_debug & NOUVEAU_REG_DEBUG_EVO)
28 29 30 31 32
#include "nv50_display.h"
#include "nouveau_crtc.h"
#include "nouveau_encoder.h"
#include "nouveau_connector.h"
#include "nouveau_fb.h"
33
#include "nouveau_fbcon.h"
34
#include <core/ramht.h>
35
#include "drm_crtc_helper.h"
36
#include "nouveau_fence.h"
37

38
static void nv50_display_isr(struct drm_device *);
39
static void nv50_display_bh(unsigned long);
40

41 42 43 44 45 46 47 48 49 50 51 52 53
static inline int
nv50_sor_nr(struct drm_device *dev)
{
	struct drm_nouveau_private *dev_priv = dev->dev_private;

	if (dev_priv->chipset  < 0x90 ||
	    dev_priv->chipset == 0x92 ||
	    dev_priv->chipset == 0xa0)
		return 2;

	return 4;
}

54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
u32
nv50_display_active_crtcs(struct drm_device *dev)
{
	struct drm_nouveau_private *dev_priv = dev->dev_private;
	u32 mask = 0;
	int i;

	if (dev_priv->chipset  < 0x90 ||
	    dev_priv->chipset == 0x92 ||
	    dev_priv->chipset == 0xa0) {
		for (i = 0; i < 2; i++)
			mask |= nv_rd32(dev, NV50_PDISPLAY_SOR_MODE_CTRL_C(i));
	} else {
		for (i = 0; i < 4; i++)
			mask |= nv_rd32(dev, NV90_PDISPLAY_SOR_MODE_CTRL_C(i));
	}

	for (i = 0; i < 3; i++)
		mask |= nv_rd32(dev, NV50_PDISPLAY_DAC_MODE_CTRL_C(i));

	return mask & 3;
}

77 78 79 80 81 82 83 84 85 86 87
int
nv50_display_early_init(struct drm_device *dev)
{
	return 0;
}

void
nv50_display_late_takedown(struct drm_device *dev)
{
}

88 89 90 91 92 93 94 95 96 97
int
nv50_display_sync(struct drm_device *dev)
{
	struct nv50_display *disp = nv50_display(dev);
	struct nouveau_channel *evo = disp->master;
	u64 start;
	int ret;

	ret = RING_SPACE(evo, 6);
	if (ret == 0) {
98
		BEGIN_NV04(evo, 0, 0x0084, 1);
99
		OUT_RING  (evo, 0x80000000);
100
		BEGIN_NV04(evo, 0, 0x0080, 1);
101
		OUT_RING  (evo, 0);
102
		BEGIN_NV04(evo, 0, 0x0084, 1);
103 104 105 106 107
		OUT_RING  (evo, 0x00000000);

		nv_wo32(disp->ntfy, 0x000, 0x00000000);
		FIRE_RING (evo);

108
		start = nv_timer_read(dev);
109 110 111
		do {
			if (nv_ro32(disp->ntfy, 0x000))
				return 0;
112
		} while (nv_timer_read(dev) - start < 2000000000ULL);
113 114 115 116 117
	}

	return -EBUSY;
}

118 119 120
int
nv50_display_init(struct drm_device *dev)
{
121
	struct nouveau_channel *evo;
122
	int ret, i;
123
	u32 val;
124

125
	NV_DEBUG_KMS(dev, "\n");
126 127

	nv_wr32(dev, 0x00610184, nv_rd32(dev, 0x00614004));
128

129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
	/*
	 * I think the 0x006101XX range is some kind of main control area
	 * that enables things.
	 */
	/* CRTC? */
	for (i = 0; i < 2; i++) {
		val = nv_rd32(dev, 0x00616100 + (i * 0x800));
		nv_wr32(dev, 0x00610190 + (i * 0x10), val);
		val = nv_rd32(dev, 0x00616104 + (i * 0x800));
		nv_wr32(dev, 0x00610194 + (i * 0x10), val);
		val = nv_rd32(dev, 0x00616108 + (i * 0x800));
		nv_wr32(dev, 0x00610198 + (i * 0x10), val);
		val = nv_rd32(dev, 0x0061610c + (i * 0x800));
		nv_wr32(dev, 0x0061019c + (i * 0x10), val);
	}
144

145 146 147 148 149
	/* DAC */
	for (i = 0; i < 3; i++) {
		val = nv_rd32(dev, 0x0061a000 + (i * 0x800));
		nv_wr32(dev, 0x006101d0 + (i * 0x04), val);
	}
150

151
	/* SOR */
152
	for (i = 0; i < nv50_sor_nr(dev); i++) {
153 154 155
		val = nv_rd32(dev, 0x0061c000 + (i * 0x800));
		nv_wr32(dev, 0x006101e0 + (i * 0x04), val);
	}
156

157
	/* EXT */
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
	for (i = 0; i < 3; i++) {
		val = nv_rd32(dev, 0x0061e000 + (i * 0x800));
		nv_wr32(dev, 0x006101f0 + (i * 0x04), val);
	}

	for (i = 0; i < 3; i++) {
		nv_wr32(dev, NV50_PDISPLAY_DAC_DPMS_CTRL(i), 0x00550000 |
			NV50_PDISPLAY_DAC_DPMS_CTRL_PENDING);
		nv_wr32(dev, NV50_PDISPLAY_DAC_CLK_CTRL1(i), 0x00000001);
	}

	/* The precise purpose is unknown, i suspect it has something to do
	 * with text mode.
	 */
	if (nv_rd32(dev, NV50_PDISPLAY_INTR_1) & 0x100) {
		nv_wr32(dev, NV50_PDISPLAY_INTR_1, 0x100);
		nv_wr32(dev, 0x006194e8, nv_rd32(dev, 0x006194e8) & ~1);
175
		if (!nv_wait(dev, 0x006194e8, 2, 0)) {
176 177 178 179 180 181 182
			NV_ERROR(dev, "timeout: (0x6194e8 & 2) != 0\n");
			NV_ERROR(dev, "0x6194e8 = 0x%08x\n",
						nv_rd32(dev, 0x6194e8));
			return -EBUSY;
		}
	}

183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207
	for (i = 0; i < 2; i++) {
		nv_wr32(dev, NV50_PDISPLAY_CURSOR_CURSOR_CTRL2(i), 0x2000);
		if (!nv_wait(dev, NV50_PDISPLAY_CURSOR_CURSOR_CTRL2(i),
			     NV50_PDISPLAY_CURSOR_CURSOR_CTRL2_STATUS, 0)) {
			NV_ERROR(dev, "timeout: CURSOR_CTRL2_STATUS == 0\n");
			NV_ERROR(dev, "CURSOR_CTRL2 = 0x%08x\n",
				 nv_rd32(dev, NV50_PDISPLAY_CURSOR_CURSOR_CTRL2(i)));
			return -EBUSY;
		}

		nv_wr32(dev, NV50_PDISPLAY_CURSOR_CURSOR_CTRL2(i),
			NV50_PDISPLAY_CURSOR_CURSOR_CTRL2_ON);
		if (!nv_wait(dev, NV50_PDISPLAY_CURSOR_CURSOR_CTRL2(i),
			     NV50_PDISPLAY_CURSOR_CURSOR_CTRL2_STATUS,
			     NV50_PDISPLAY_CURSOR_CURSOR_CTRL2_STATUS_ACTIVE)) {
			NV_ERROR(dev, "timeout: "
				      "CURSOR_CTRL2_STATUS_ACTIVE(%d)\n", i);
			NV_ERROR(dev, "CURSOR_CTRL2(%d) = 0x%08x\n", i,
				 nv_rd32(dev, NV50_PDISPLAY_CURSOR_CURSOR_CTRL2(i)));
			return -EBUSY;
		}
	}

	nv_wr32(dev, NV50_PDISPLAY_PIO_CTRL, 0x00000000);
	nv_mask(dev, NV50_PDISPLAY_INTR_0, 0x00000000, 0x00000000);
208
	nv_wr32(dev, NV50_PDISPLAY_INTR_EN_0, 0x00000000);
209
	nv_mask(dev, NV50_PDISPLAY_INTR_1, 0x00000000, 0x00000000);
210 211 212 213
	nv_wr32(dev, NV50_PDISPLAY_INTR_EN_1,
		     NV50_PDISPLAY_INTR_EN_1_CLK_UNK10 |
		     NV50_PDISPLAY_INTR_EN_1_CLK_UNK20 |
		     NV50_PDISPLAY_INTR_EN_1_CLK_UNK40);
214

215
	ret = nv50_evo_init(dev);
216 217
	if (ret)
		return ret;
218
	evo = nv50_display(dev)->master;
219

220
	nv_wr32(dev, NV50_PDISPLAY_OBJECTS, (evo->ramin->addr >> 8) | 9);
221

222
	ret = RING_SPACE(evo, 3);
223 224
	if (ret)
		return ret;
225
	BEGIN_NV04(evo, 0, NV50_EVO_UNK84, 2);
226 227
	OUT_RING  (evo, NV50_EVO_UNK84_NOTIFY_DISABLED);
	OUT_RING  (evo, NvEvoSync);
228

229
	return nv50_display_sync(dev);
230 231
}

232 233
void
nv50_display_fini(struct drm_device *dev)
234
{
235
	struct nv50_display *disp = nv50_display(dev);
236
	struct nouveau_channel *evo = disp->master;
237 238 239
	struct drm_crtc *drm_crtc;
	int ret, i;

240
	NV_DEBUG_KMS(dev, "\n");
241 242 243 244 245 246 247

	list_for_each_entry(drm_crtc, &dev->mode_config.crtc_list, head) {
		struct nouveau_crtc *crtc = nouveau_crtc(drm_crtc);

		nv50_crtc_blank(crtc, true);
	}

248
	ret = RING_SPACE(evo, 2);
249
	if (ret == 0) {
250
		BEGIN_NV04(evo, 0, NV50_EVO_UPDATE, 1);
251
		OUT_RING(evo, 0);
252
	}
253
	FIRE_RING(evo);
254 255 256 257 258 259 260 261 262 263 264 265

	/* Almost like ack'ing a vblank interrupt, maybe in the spirit of
	 * cleaning up?
	 */
	list_for_each_entry(drm_crtc, &dev->mode_config.crtc_list, head) {
		struct nouveau_crtc *crtc = nouveau_crtc(drm_crtc);
		uint32_t mask = NV50_PDISPLAY_INTR_1_VBLANK_CRTC_(crtc->index);

		if (!crtc->base.enabled)
			continue;

		nv_wr32(dev, NV50_PDISPLAY_INTR_1, mask);
266
		if (!nv_wait(dev, NV50_PDISPLAY_INTR_1, mask, mask)) {
267 268 269 270 271 272 273
			NV_ERROR(dev, "timeout: (0x610024 & 0x%08x) == "
				      "0x%08x\n", mask, mask);
			NV_ERROR(dev, "0x610024 = 0x%08x\n",
				 nv_rd32(dev, NV50_PDISPLAY_INTR_1));
		}
	}

274 275 276 277 278 279 280 281 282 283
	for (i = 0; i < 2; i++) {
		nv_wr32(dev, NV50_PDISPLAY_CURSOR_CURSOR_CTRL2(i), 0);
		if (!nv_wait(dev, NV50_PDISPLAY_CURSOR_CURSOR_CTRL2(i),
			     NV50_PDISPLAY_CURSOR_CURSOR_CTRL2_STATUS, 0)) {
			NV_ERROR(dev, "timeout: CURSOR_CTRL2_STATUS == 0\n");
			NV_ERROR(dev, "CURSOR_CTRL2 = 0x%08x\n",
				 nv_rd32(dev, NV50_PDISPLAY_CURSOR_CURSOR_CTRL2(i)));
		}
	}

284
	nv50_evo_fini(dev);
285 286

	for (i = 0; i < 3; i++) {
287
		if (!nv_wait(dev, NV50_PDISPLAY_SOR_DPMS_STATE(i),
288 289 290 291 292 293 294 295
			     NV50_PDISPLAY_SOR_DPMS_STATE_WAIT, 0)) {
			NV_ERROR(dev, "timeout: SOR_DPMS_STATE_WAIT(%d) == 0\n", i);
			NV_ERROR(dev, "SOR_DPMS_STATE(%d) = 0x%08x\n", i,
				  nv_rd32(dev, NV50_PDISPLAY_SOR_DPMS_STATE(i)));
		}
	}

	/* disable interrupts. */
296
	nv_wr32(dev, NV50_PDISPLAY_INTR_EN_1, 0x00000000);
297 298
}

299 300
int
nv50_display_create(struct drm_device *dev)
301 302
{
	struct drm_nouveau_private *dev_priv = dev->dev_private;
303
	struct dcb_table *dcb = &dev_priv->vbios.dcb;
304
	struct drm_connector *connector, *ct;
305
	struct nv50_display *priv;
306
	int ret, i;
307

308
	NV_DEBUG_KMS(dev, "\n");
309

310 311 312 313 314
	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
	if (!priv)
		return -ENOMEM;
	dev_priv->engine.display.priv = priv;

315
	/* Create CRTC objects */
316 317 318 319 320
	for (i = 0; i < 2; i++) {
		ret = nv50_crtc_create(dev, i);
		if (ret)
			return ret;
	}
321 322 323

	/* We setup the encoders from the BIOS table */
	for (i = 0 ; i < dcb->entries; i++) {
324
		struct dcb_output *entry = &dcb->entry[i];
325 326 327 328 329 330 331

		if (entry->location != DCB_LOC_ON_CHIP) {
			NV_WARN(dev, "Off-chip encoder %d/%d unsupported\n",
				entry->type, ffs(entry->or) - 1);
			continue;
		}

332 333 334 335
		connector = nouveau_connector_create(dev, entry->connector);
		if (IS_ERR(connector))
			continue;

336
		switch (entry->type) {
337 338 339
		case DCB_OUTPUT_TMDS:
		case DCB_OUTPUT_LVDS:
		case DCB_OUTPUT_DP:
340
			nv50_sor_create(connector, entry);
341
			break;
342
		case DCB_OUTPUT_ANALOG:
343
			nv50_dac_create(connector, entry);
344 345 346 347 348 349 350
			break;
		default:
			NV_WARN(dev, "DCB encoder %d unknown\n", entry->type);
			continue;
		}
	}

351 352 353 354 355 356 357
	list_for_each_entry_safe(connector, ct,
				 &dev->mode_config.connector_list, head) {
		if (!connector->encoder_ids[0]) {
			NV_WARN(dev, "%s has no encoders, removing\n",
				drm_get_connector_name(connector));
			connector->funcs->destroy(connector);
		}
358 359
	}

360
	tasklet_init(&priv->tasklet, nv50_display_bh, (unsigned long)dev);
361
	nouveau_irq_register(dev, 26, nv50_display_isr);
362 363 364 365 366 367 368

	ret = nv50_evo_create(dev);
	if (ret) {
		nv50_display_destroy(dev);
		return ret;
	}

369 370 371
	return 0;
}

372 373
void
nv50_display_destroy(struct drm_device *dev)
374
{
375
	struct nv50_display *disp = nv50_display(dev);
376

377
	NV_DEBUG_KMS(dev, "\n");
378

379
	nv50_evo_destroy(dev);
380
	nouveau_irq_unregister(dev, 26);
381
	kfree(disp);
382 383
}

384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
void
nv50_display_flip_stop(struct drm_crtc *crtc)
{
	struct nv50_display *disp = nv50_display(crtc->dev);
	struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
	struct nv50_display_crtc *dispc = &disp->crtc[nv_crtc->index];
	struct nouveau_channel *evo = dispc->sync;
	int ret;

	ret = RING_SPACE(evo, 8);
	if (ret) {
		WARN_ON(1);
		return;
	}

399
	BEGIN_NV04(evo, 0, 0x0084, 1);
400
	OUT_RING  (evo, 0x00000000);
401
	BEGIN_NV04(evo, 0, 0x0094, 1);
402
	OUT_RING  (evo, 0x00000000);
403
	BEGIN_NV04(evo, 0, 0x00c0, 1);
404
	OUT_RING  (evo, 0x00000000);
405
	BEGIN_NV04(evo, 0, 0x0080, 1);
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421
	OUT_RING  (evo, 0x00000000);
	FIRE_RING (evo);
}

int
nv50_display_flip_next(struct drm_crtc *crtc, struct drm_framebuffer *fb,
		       struct nouveau_channel *chan)
{
	struct drm_nouveau_private *dev_priv = crtc->dev->dev_private;
	struct nouveau_framebuffer *nv_fb = nouveau_framebuffer(fb);
	struct nv50_display *disp = nv50_display(crtc->dev);
	struct nouveau_crtc *nv_crtc = nouveau_crtc(crtc);
	struct nv50_display_crtc *dispc = &disp->crtc[nv_crtc->index];
	struct nouveau_channel *evo = dispc->sync;
	int ret;

422
	ret = RING_SPACE(evo, chan ? 25 : 27);
423 424 425 426 427 428 429 430 431 432 433 434
	if (unlikely(ret))
		return ret;

	/* synchronise with the rendering channel, if necessary */
	if (likely(chan)) {
		ret = RING_SPACE(chan, 10);
		if (ret) {
			WIND_RING(evo);
			return ret;
		}

		if (dev_priv->chipset < 0xc0) {
435
			BEGIN_NV04(chan, 0, 0x0060, 2);
436 437
			OUT_RING  (chan, NvEvoSema0 + nv_crtc->index);
			OUT_RING  (chan, dispc->sem.offset);
438
			BEGIN_NV04(chan, 0, 0x006c, 1);
439
			OUT_RING  (chan, 0xf00d0000 | dispc->sem.value);
440
			BEGIN_NV04(chan, 0, 0x0064, 2);
441 442
			OUT_RING  (chan, dispc->sem.offset ^ 0x10);
			OUT_RING  (chan, 0x74b1e000);
443
			BEGIN_NV04(chan, 0, 0x0060, 1);
444 445 446 447 448
			if (dev_priv->chipset < 0x84)
				OUT_RING  (chan, NvSema);
			else
				OUT_RING  (chan, chan->vram_handle);
		} else {
449
			u64 offset = nvc0_fence_crtc(chan, nv_crtc->index);
450
			offset += dispc->sem.offset;
451
			BEGIN_NVC0(chan, 0, 0x0010, 4);
452 453 454 455
			OUT_RING  (chan, upper_32_bits(offset));
			OUT_RING  (chan, lower_32_bits(offset));
			OUT_RING  (chan, 0xf00d0000 | dispc->sem.value);
			OUT_RING  (chan, 0x1002);
456
			BEGIN_NVC0(chan, 0, 0x0010, 4);
457 458 459 460 461 462 463 464 465 466 467 468
			OUT_RING  (chan, upper_32_bits(offset));
			OUT_RING  (chan, lower_32_bits(offset ^ 0x10));
			OUT_RING  (chan, 0x74b1e000);
			OUT_RING  (chan, 0x1001);
		}
		FIRE_RING (chan);
	} else {
		nouveau_bo_wr32(dispc->sem.bo, dispc->sem.offset / 4,
				0xf00d0000 | dispc->sem.value);
	}

	/* queue the flip on the crtc's "display sync" channel */
469
	BEGIN_NV04(evo, 0, 0x0100, 1);
470
	OUT_RING  (evo, 0xfffe0000);
471
	if (chan) {
472
		BEGIN_NV04(evo, 0, 0x0084, 1);
473 474
		OUT_RING  (evo, 0x00000100);
	} else {
475
		BEGIN_NV04(evo, 0, 0x0084, 1);
476 477 478 479
		OUT_RING  (evo, 0x00000010);
		/* allows gamma somehow, PDISP will bitch at you if
		 * you don't wait for vblank before changing this..
		 */
480
		BEGIN_NV04(evo, 0, 0x00e0, 1);
481 482
		OUT_RING  (evo, 0x40000000);
	}
483
	BEGIN_NV04(evo, 0, 0x0088, 4);
484 485 486 487
	OUT_RING  (evo, dispc->sem.offset);
	OUT_RING  (evo, 0xf00d0000 | dispc->sem.value);
	OUT_RING  (evo, 0x74b1e000);
	OUT_RING  (evo, NvEvoSync);
488
	BEGIN_NV04(evo, 0, 0x00a0, 2);
489 490
	OUT_RING  (evo, 0x00000000);
	OUT_RING  (evo, 0x00000000);
491
	BEGIN_NV04(evo, 0, 0x00c0, 1);
492
	OUT_RING  (evo, nv_fb->r_dma);
493
	BEGIN_NV04(evo, 0, 0x0110, 2);
494 495
	OUT_RING  (evo, 0x00000000);
	OUT_RING  (evo, 0x00000000);
496
	BEGIN_NV04(evo, 0, 0x0800, 5);
497
	OUT_RING  (evo, nv_fb->nvbo->bo.offset >> 8);
498 499 500 501
	OUT_RING  (evo, 0);
	OUT_RING  (evo, (fb->height << 16) | fb->width);
	OUT_RING  (evo, nv_fb->r_pitch);
	OUT_RING  (evo, nv_fb->r_format);
502
	BEGIN_NV04(evo, 0, 0x0080, 1);
503 504 505 506 507 508 509 510
	OUT_RING  (evo, 0x00000000);
	FIRE_RING (evo);

	dispc->sem.offset ^= 0x10;
	dispc->sem.value++;
	return 0;
}

511
static u16
512
nv50_display_script_select(struct drm_device *dev, struct dcb_output *dcb,
513
			   u32 mc, int pxclk)
514 515
{
	struct drm_nouveau_private *dev_priv = dev->dev_private;
516 517
	struct nouveau_connector *nv_connector = NULL;
	struct drm_encoder *encoder;
518
	struct nvbios *bios = &dev_priv->vbios;
519
	u32 script = 0, or;
520

521 522 523
	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
		struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);

524
		if (nv_encoder->dcb != dcb)
525 526 527 528 529 530
			continue;

		nv_connector = nouveau_encoder_connector_get(nv_encoder);
		break;
	}

531 532
	or = ffs(dcb->or) - 1;
	switch (dcb->type) {
533
	case DCB_OUTPUT_LVDS:
534
		script = (mc >> 8) & 0xf;
535
		if (bios->fp_no_ddc) {
536 537 538 539 540
			if (bios->fp.dual_link)
				script |= 0x0100;
			if (bios->fp.if_is_24bit)
				script |= 0x0200;
		} else {
541 542
			/* determine number of lvds links */
			if (nv_connector && nv_connector->edid &&
543
			    nv_connector->type == DCB_CONNECTOR_LVDS_SPWG) {
544 545 546 547
				/* http://www.spwg.org */
				if (((u8 *)nv_connector->edid)[121] == 2)
					script |= 0x0100;
			} else
548 549
			if (pxclk >= bios->fp.duallink_transition_clk) {
				script |= 0x0100;
550 551 552 553
			}

			/* determine panel depth */
			if (script & 0x0100) {
554 555
				if (bios->fp.strapless_is_24bit & 2)
					script |= 0x0200;
556 557 558 559
			} else {
				if (bios->fp.strapless_is_24bit & 1)
					script |= 0x0200;
			}
560 561 562 563 564

			if (nv_connector && nv_connector->edid &&
			    (nv_connector->edid->revision >= 4) &&
			    (nv_connector->edid->input & 0x70) >= 0x20)
				script |= 0x0200;
565 566 567 568 569 570 571 572 573
		}

		if (nouveau_uscript_lvds >= 0) {
			NV_INFO(dev, "override script 0x%04x with 0x%04x "
				     "for output LVDS-%d\n", script,
				     nouveau_uscript_lvds, or);
			script = nouveau_uscript_lvds;
		}
		break;
574
	case DCB_OUTPUT_TMDS:
575 576 577 578 579 580 581 582 583 584 585
		script = (mc >> 8) & 0xf;
		if (pxclk >= 165000)
			script |= 0x0100;

		if (nouveau_uscript_tmds >= 0) {
			NV_INFO(dev, "override script 0x%04x with 0x%04x "
				     "for output TMDS-%d\n", script,
				     nouveau_uscript_tmds, or);
			script = nouveau_uscript_tmds;
		}
		break;
586
	case DCB_OUTPUT_DP:
587 588
		script = (mc >> 8) & 0xf;
		break;
589
	case DCB_OUTPUT_ANALOG:
590 591 592 593 594 595 596 597 598 599 600 601 602
		script = 0xff;
		break;
	default:
		NV_ERROR(dev, "modeset on unsupported output type!\n");
		break;
	}

	return script;
}

static void
nv50_display_vblank_crtc_handler(struct drm_device *dev, int crtc)
{
603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626
	struct drm_nouveau_private *dev_priv = dev->dev_private;
	struct nouveau_software_priv *psw = nv_engine(dev, NVOBJ_ENGINE_SW);
	struct nouveau_software_chan *pch, *tmp;

	list_for_each_entry_safe(pch, tmp, &psw->vblank, vblank.list) {
		if (pch->vblank.head != crtc)
			continue;

		spin_lock(&psw->peephole_lock);
		nv_wr32(dev, 0x001704, pch->vblank.channel);
		nv_wr32(dev, 0x001710, 0x80000000 | pch->vblank.ctxdma);
		if (dev_priv->chipset == 0x50) {
			nv_wr32(dev, 0x001570, pch->vblank.offset);
			nv_wr32(dev, 0x001574, pch->vblank.value);
		} else {
			nv_wr32(dev, 0x060010, pch->vblank.offset);
			nv_wr32(dev, 0x060014, pch->vblank.value);
		}
		spin_unlock(&psw->peephole_lock);

		list_del(&pch->vblank.list);
		drm_vblank_put(dev, crtc);
	}

627
	drm_handle_vblank(dev, crtc);
628 629 630 631 632 633 634 635 636 637 638
}

static void
nv50_display_vblank_handler(struct drm_device *dev, uint32_t intr)
{
	if (intr & NV50_PDISPLAY_INTR_1_VBLANK_CRTC_0)
		nv50_display_vblank_crtc_handler(dev, 0);

	if (intr & NV50_PDISPLAY_INTR_1_VBLANK_CRTC_1)
		nv50_display_vblank_crtc_handler(dev, 1);

639
	nv_wr32(dev, NV50_PDISPLAY_INTR_1, NV50_PDISPLAY_INTR_1_VBLANK_CRTC);
640 641 642 643 644
}

static void
nv50_display_unk10_handler(struct drm_device *dev)
{
645
	struct drm_nouveau_private *dev_priv = dev->dev_private;
646
	struct nv50_display *disp = nv50_display(dev);
647
	u32 unk30 = nv_rd32(dev, 0x610030), mc;
648
	int i, crtc, or = 0, type = DCB_OUTPUT_ANY;
649

650
	NV_DEBUG_KMS(dev, "0x610030: 0x%08x\n", unk30);
651
	disp->irq.dcb = NULL;
652 653 654

	nv_wr32(dev, 0x619494, nv_rd32(dev, 0x619494) & ~8);

655 656 657 658 659 660 661 662 663 664 665
	/* Determine which CRTC we're dealing with, only 1 ever will be
	 * signalled at the same time with the current nouveau code.
	 */
	crtc = ffs((unk30 & 0x00000060) >> 5) - 1;
	if (crtc < 0)
		goto ack;

	/* Nothing needs to be done for the encoder */
	crtc = ffs((unk30 & 0x00000180) >> 7) - 1;
	if (crtc < 0)
		goto ack;
666

667
	/* Find which encoder was connected to the CRTC */
668
	for (i = 0; type == DCB_OUTPUT_ANY && i < 3; i++) {
669 670 671 672 673 674
		mc = nv_rd32(dev, NV50_PDISPLAY_DAC_MODE_CTRL_C(i));
		NV_DEBUG_KMS(dev, "DAC-%d mc: 0x%08x\n", i, mc);
		if (!(mc & (1 << crtc)))
			continue;

		switch ((mc & 0x00000f00) >> 8) {
675 676
		case 0: type = DCB_OUTPUT_ANALOG; break;
		case 1: type = DCB_OUTPUT_TV; break;
677 678 679 680 681 682 683 684
		default:
			NV_ERROR(dev, "invalid mc, DAC-%d: 0x%08x\n", i, mc);
			goto ack;
		}

		or = i;
	}

685
	for (i = 0; type == DCB_OUTPUT_ANY && i < nv50_sor_nr(dev); i++) {
686 687 688 689 690 691 692 693 694 695 696 697
		if (dev_priv->chipset  < 0x90 ||
		    dev_priv->chipset == 0x92 ||
		    dev_priv->chipset == 0xa0)
			mc = nv_rd32(dev, NV50_PDISPLAY_SOR_MODE_CTRL_C(i));
		else
			mc = nv_rd32(dev, NV90_PDISPLAY_SOR_MODE_CTRL_C(i));

		NV_DEBUG_KMS(dev, "SOR-%d mc: 0x%08x\n", i, mc);
		if (!(mc & (1 << crtc)))
			continue;

		switch ((mc & 0x00000f00) >> 8) {
698 699 700 701 702 703
		case 0: type = DCB_OUTPUT_LVDS; break;
		case 1: type = DCB_OUTPUT_TMDS; break;
		case 2: type = DCB_OUTPUT_TMDS; break;
		case 5: type = DCB_OUTPUT_TMDS; break;
		case 8: type = DCB_OUTPUT_DP; break;
		case 9: type = DCB_OUTPUT_DP; break;
704 705 706 707 708 709 710 711 712
		default:
			NV_ERROR(dev, "invalid mc, SOR-%d: 0x%08x\n", i, mc);
			goto ack;
		}

		or = i;
	}

	/* There was no encoder to disable */
713
	if (type == DCB_OUTPUT_ANY)
714 715 716 717
		goto ack;

	/* Disable the encoder */
	for (i = 0; i < dev_priv->vbios.dcb.entries; i++) {
718
		struct dcb_output *dcb = &dev_priv->vbios.dcb.entry[i];
719 720

		if (dcb->type == type && (dcb->or & (1 << or))) {
721
			nouveau_bios_run_display_table(dev, 0, -1, dcb, -1);
722
			disp->irq.dcb = dcb;
723 724 725 726 727
			goto ack;
		}
	}

	NV_ERROR(dev, "no dcb for %d %d 0x%08x\n", or, type, mc);
728 729 730 731 732 733 734 735
ack:
	nv_wr32(dev, NV50_PDISPLAY_INTR_1, NV50_PDISPLAY_INTR_1_CLK_UNK10);
	nv_wr32(dev, 0x610030, 0x80000000);
}

static void
nv50_display_unk20_handler(struct drm_device *dev)
{
736
	struct drm_nouveau_private *dev_priv = dev->dev_private;
737
	struct nv50_display *disp = nv50_display(dev);
738
	u32 unk30 = nv_rd32(dev, 0x610030), tmp, pclk, script, mc = 0;
739 740
	struct dcb_output *dcb;
	int i, crtc, or = 0, type = DCB_OUTPUT_ANY;
741

742
	NV_DEBUG_KMS(dev, "0x610030: 0x%08x\n", unk30);
743
	dcb = disp->irq.dcb;
744
	if (dcb) {
745
		nouveau_bios_run_display_table(dev, 0, -2, dcb, -1);
746
		disp->irq.dcb = NULL;
747 748 749 750 751 752 753
	}

	/* CRTC clock change requested? */
	crtc = ffs((unk30 & 0x00000600) >> 9) - 1;
	if (crtc >= 0) {
		pclk  = nv_rd32(dev, NV50_PDISPLAY_CRTC_P(crtc, CLOCK));
		pclk &= 0x003fffff;
754 755
		if (pclk)
			nv50_crtc_set_clock(dev, crtc, pclk);
756 757 758 759 760 761 762 763 764

		tmp = nv_rd32(dev, NV50_PDISPLAY_CRTC_CLK_CTRL2(crtc));
		tmp &= ~0x000000f;
		nv_wr32(dev, NV50_PDISPLAY_CRTC_CLK_CTRL2(crtc), tmp);
	}

	/* Nothing needs to be done for the encoder */
	crtc = ffs((unk30 & 0x00000180) >> 7) - 1;
	if (crtc < 0)
765
		goto ack;
766
	pclk  = nv_rd32(dev, NV50_PDISPLAY_CRTC_P(crtc, CLOCK)) & 0x003fffff;
767

768
	/* Find which encoder is connected to the CRTC */
769
	for (i = 0; type == DCB_OUTPUT_ANY && i < 3; i++) {
770 771 772 773
		mc = nv_rd32(dev, NV50_PDISPLAY_DAC_MODE_CTRL_P(i));
		NV_DEBUG_KMS(dev, "DAC-%d mc: 0x%08x\n", i, mc);
		if (!(mc & (1 << crtc)))
			continue;
774

775
		switch ((mc & 0x00000f00) >> 8) {
776 777
		case 0: type = DCB_OUTPUT_ANALOG; break;
		case 1: type = DCB_OUTPUT_TV; break;
778 779 780 781 782 783 784 785
		default:
			NV_ERROR(dev, "invalid mc, DAC-%d: 0x%08x\n", i, mc);
			goto ack;
		}

		or = i;
	}

786
	for (i = 0; type == DCB_OUTPUT_ANY && i < nv50_sor_nr(dev); i++) {
787 788 789 790 791 792 793 794 795 796 797 798
		if (dev_priv->chipset  < 0x90 ||
		    dev_priv->chipset == 0x92 ||
		    dev_priv->chipset == 0xa0)
			mc = nv_rd32(dev, NV50_PDISPLAY_SOR_MODE_CTRL_P(i));
		else
			mc = nv_rd32(dev, NV90_PDISPLAY_SOR_MODE_CTRL_P(i));

		NV_DEBUG_KMS(dev, "SOR-%d mc: 0x%08x\n", i, mc);
		if (!(mc & (1 << crtc)))
			continue;

		switch ((mc & 0x00000f00) >> 8) {
799 800 801 802 803 804
		case 0: type = DCB_OUTPUT_LVDS; break;
		case 1: type = DCB_OUTPUT_TMDS; break;
		case 2: type = DCB_OUTPUT_TMDS; break;
		case 5: type = DCB_OUTPUT_TMDS; break;
		case 8: type = DCB_OUTPUT_DP; break;
		case 9: type = DCB_OUTPUT_DP; break;
805 806 807 808
		default:
			NV_ERROR(dev, "invalid mc, SOR-%d: 0x%08x\n", i, mc);
			goto ack;
		}
809

810 811
		or = i;
	}
812

813
	if (type == DCB_OUTPUT_ANY)
814
		goto ack;
815

816 817 818 819 820 821
	/* Enable the encoder */
	for (i = 0; i < dev_priv->vbios.dcb.entries; i++) {
		dcb = &dev_priv->vbios.dcb.entry[i];
		if (dcb->type == type && (dcb->or & (1 << or)))
			break;
	}
822

823 824 825 826 827 828
	if (i == dev_priv->vbios.dcb.entries) {
		NV_ERROR(dev, "no dcb for %d %d 0x%08x\n", or, type, mc);
		goto ack;
	}

	script = nv50_display_script_select(dev, dcb, mc, pclk);
829
	nouveau_bios_run_display_table(dev, script, pclk, dcb, -1);
830

831
	if (type == DCB_OUTPUT_DP) {
832 833
		int link = !(dcb->dpconf.sor.link & 1);
		if ((mc & 0x000f0000) == 0x00020000)
834
			nv50_sor_dp_calc_tu(dev, or, link, pclk, 18);
835
		else
836
			nv50_sor_dp_calc_tu(dev, or, link, pclk, 24);
837
	}
838

839
	if (dcb->type != DCB_OUTPUT_ANALOG) {
840 841 842 843 844 845 846 847 848
		tmp = nv_rd32(dev, NV50_PDISPLAY_SOR_CLK_CTRL2(or));
		tmp &= ~0x00000f0f;
		if (script & 0x0100)
			tmp |= 0x00000101;
		nv_wr32(dev, NV50_PDISPLAY_SOR_CLK_CTRL2(or), tmp);
	} else {
		nv_wr32(dev, NV50_PDISPLAY_DAC_CLK_CTRL2(or), 0);
	}

849 850 851
	disp->irq.dcb = dcb;
	disp->irq.pclk = pclk;
	disp->irq.script = script;
852

853 854 855 856 857
ack:
	nv_wr32(dev, NV50_PDISPLAY_INTR_1, NV50_PDISPLAY_INTR_1_CLK_UNK20);
	nv_wr32(dev, 0x610030, 0x80000000);
}

858 859 860 861 862 863 864 865 866
/* If programming a TMDS output on a SOR that can also be configured for
 * DisplayPort, make sure NV50_SOR_DP_CTRL_ENABLE is forced off.
 *
 * It looks like the VBIOS TMDS scripts make an attempt at this, however,
 * the VBIOS scripts on at least one board I have only switch it off on
 * link 0, causing a blank display if the output has previously been
 * programmed for DisplayPort.
 */
static void
867
nv50_display_unk40_dp_set_tmds(struct drm_device *dev, struct dcb_output *dcb)
868 869 870 871 872
{
	int or = ffs(dcb->or) - 1, link = !(dcb->dpconf.sor.link & 1);
	struct drm_encoder *encoder;
	u32 tmp;

873
	if (dcb->type != DCB_OUTPUT_TMDS)
874 875 876 877 878
		return;

	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
		struct nouveau_encoder *nv_encoder = nouveau_encoder(encoder);

879
		if (nv_encoder->dcb->type == DCB_OUTPUT_DP &&
880 881 882 883 884 885 886 887 888
		    nv_encoder->dcb->or & (1 << or)) {
			tmp  = nv_rd32(dev, NV50_SOR_DP_CTRL(or, link));
			tmp &= ~NV50_SOR_DP_CTRL_ENABLED;
			nv_wr32(dev, NV50_SOR_DP_CTRL(or, link), tmp);
			break;
		}
	}
}

889 890 891
static void
nv50_display_unk40_handler(struct drm_device *dev)
{
892
	struct nv50_display *disp = nv50_display(dev);
893
	struct dcb_output *dcb = disp->irq.dcb;
894 895
	u16 script = disp->irq.script;
	u32 unk30 = nv_rd32(dev, 0x610030), pclk = disp->irq.pclk;
896

897
	NV_DEBUG_KMS(dev, "0x610030: 0x%08x\n", unk30);
898
	disp->irq.dcb = NULL;
899
	if (!dcb)
900 901
		goto ack;

902
	nouveau_bios_run_display_table(dev, script, -pclk, dcb, -1);
903 904
	nv50_display_unk40_dp_set_tmds(dev, dcb);

905 906 907 908 909 910
ack:
	nv_wr32(dev, NV50_PDISPLAY_INTR_1, NV50_PDISPLAY_INTR_1_CLK_UNK40);
	nv_wr32(dev, 0x610030, 0x80000000);
	nv_wr32(dev, 0x619494, nv_rd32(dev, 0x619494) | 8);
}

911 912
static void
nv50_display_bh(unsigned long data)
913
{
914
	struct drm_device *dev = (struct drm_device *)data;
915 916 917 918 919

	for (;;) {
		uint32_t intr0 = nv_rd32(dev, NV50_PDISPLAY_INTR_0);
		uint32_t intr1 = nv_rd32(dev, NV50_PDISPLAY_INTR_1);

920
		NV_DEBUG_KMS(dev, "PDISPLAY_INTR_BH 0x%08x 0x%08x\n", intr0, intr1);
921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939

		if (intr1 & NV50_PDISPLAY_INTR_1_CLK_UNK10)
			nv50_display_unk10_handler(dev);
		else
		if (intr1 & NV50_PDISPLAY_INTR_1_CLK_UNK20)
			nv50_display_unk20_handler(dev);
		else
		if (intr1 & NV50_PDISPLAY_INTR_1_CLK_UNK40)
			nv50_display_unk40_handler(dev);
		else
			break;
	}

	nv_wr32(dev, NV03_PMC_INTR_EN_0, 1);
}

static void
nv50_display_error_handler(struct drm_device *dev)
{
940 941 942
	u32 channels = (nv_rd32(dev, NV50_PDISPLAY_INTR_0) & 0x001f0000) >> 16;
	u32 addr, data;
	int chid;
943

944 945 946
	for (chid = 0; chid < 5; chid++) {
		if (!(channels & (1 << chid)))
			continue;
947

948 949 950 951 952 953
		nv_wr32(dev, NV50_PDISPLAY_INTR_0, 0x00010000 << chid);
		addr = nv_rd32(dev, NV50_PDISPLAY_TRAPPED_ADDR(chid));
		data = nv_rd32(dev, NV50_PDISPLAY_TRAPPED_DATA(chid));
		NV_ERROR(dev, "EvoCh %d Mthd 0x%04x Data 0x%08x "
			      "(0x%04x 0x%02x)\n", chid,
			 addr & 0xffc, data, addr >> 16, (addr >> 12) & 0xf);
954

955 956
		nv_wr32(dev, NV50_PDISPLAY_TRAPPED_ADDR(chid), 0x90000000);
	}
957 958
}

959 960
static void
nv50_display_isr(struct drm_device *dev)
961
{
962
	struct nv50_display *disp = nv50_display(dev);
963 964 965 966 967 968 969
	uint32_t delayed = 0;

	while (nv_rd32(dev, NV50_PMC_INTR_0) & NV50_PMC_INTR_0_DISPLAY) {
		uint32_t intr0 = nv_rd32(dev, NV50_PDISPLAY_INTR_0);
		uint32_t intr1 = nv_rd32(dev, NV50_PDISPLAY_INTR_1);
		uint32_t clock;

970
		NV_DEBUG_KMS(dev, "PDISPLAY_INTR 0x%08x 0x%08x\n", intr0, intr1);
971 972 973 974

		if (!intr0 && !(intr1 & ~delayed))
			break;

975
		if (intr0 & 0x001f0000) {
976
			nv50_display_error_handler(dev);
977
			intr0 &= ~0x001f0000;
978 979 980 981 982 983 984 985 986 987 988 989
		}

		if (intr1 & NV50_PDISPLAY_INTR_1_VBLANK_CRTC) {
			nv50_display_vblank_handler(dev, intr1);
			intr1 &= ~NV50_PDISPLAY_INTR_1_VBLANK_CRTC;
		}

		clock = (intr1 & (NV50_PDISPLAY_INTR_1_CLK_UNK10 |
				  NV50_PDISPLAY_INTR_1_CLK_UNK20 |
				  NV50_PDISPLAY_INTR_1_CLK_UNK40));
		if (clock) {
			nv_wr32(dev, NV03_PMC_INTR_EN_0, 0);
990
			tasklet_schedule(&disp->tasklet);
991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006
			delayed |= clock;
			intr1 &= ~clock;
		}

		if (intr0) {
			NV_ERROR(dev, "unknown PDISPLAY_INTR_0: 0x%08x\n", intr0);
			nv_wr32(dev, NV50_PDISPLAY_INTR_0, intr0);
		}

		if (intr1) {
			NV_ERROR(dev,
				 "unknown PDISPLAY_INTR_1: 0x%08x\n", intr1);
			nv_wr32(dev, NV50_PDISPLAY_INTR_1, intr1);
		}
	}
}