intel_hdmi.c 25.3 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 27 28 29
/*
 * Copyright 2006 Dave Airlie <airlied@linux.ie>
 * Copyright © 2006-2009 Intel Corporation
 *
 * 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 AUTHORS OR COPYRIGHT HOLDERS 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:
 *	Eric Anholt <eric@anholt.net>
 *	Jesse Barnes <jesse.barnes@intel.com>
 */

#include <linux/i2c.h>
30
#include <linux/slab.h>
31 32 33 34
#include <linux/delay.h>
#include "drmP.h"
#include "drm.h"
#include "drm_crtc.h"
35
#include "drm_edid.h"
36 37 38 39
#include "intel_drv.h"
#include "i915_drm.h"
#include "i915_drv.h"

40
struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder)
C
Chris Wilson 已提交
41
{
42
	return container_of(encoder, struct intel_hdmi, base.base);
C
Chris Wilson 已提交
43 44
}

45 46 47 48 49 50
static struct intel_hdmi *intel_attached_hdmi(struct drm_connector *connector)
{
	return container_of(intel_attached_encoder(connector),
			    struct intel_hdmi, base);
}

51
void intel_dip_infoframe_csum(struct dip_infoframe *frame)
52
{
53
	uint8_t *data = (uint8_t *)frame;
54 55 56
	uint8_t sum = 0;
	unsigned i;

57 58
	frame->checksum = 0;
	frame->ecc = 0;
59

60
	for (i = 0; i < frame->len + DIP_HEADER_SIZE; i++)
61 62
		sum += data[i];

63
	frame->checksum = 0x100 - sum;
64 65
}

66
static u32 g4x_infoframe_index(struct dip_infoframe *frame)
67
{
68 69
	switch (frame->type) {
	case DIP_TYPE_AVI:
70
		return VIDEO_DIP_SELECT_AVI;
71
	case DIP_TYPE_SPD:
72
		return VIDEO_DIP_SELECT_SPD;
73 74
	default:
		DRM_DEBUG_DRIVER("unknown info frame type %d\n", frame->type);
75
		return 0;
76 77 78
	}
}

79
static u32 g4x_infoframe_enable(struct dip_infoframe *frame)
80 81 82
{
	switch (frame->type) {
	case DIP_TYPE_AVI:
83
		return VIDEO_DIP_ENABLE_AVI;
84
	case DIP_TYPE_SPD:
85
		return VIDEO_DIP_ENABLE_SPD;
86 87
	default:
		DRM_DEBUG_DRIVER("unknown info frame type %d\n", frame->type);
88
		return 0;
89 90 91
	}
}

92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
static u32 hsw_infoframe_enable(struct dip_infoframe *frame)
{
	switch (frame->type) {
	case DIP_TYPE_AVI:
		return VIDEO_DIP_ENABLE_AVI_HSW;
	case DIP_TYPE_SPD:
		return VIDEO_DIP_ENABLE_SPD_HSW;
	default:
		DRM_DEBUG_DRIVER("unknown info frame type %d\n", frame->type);
		return 0;
	}
}

static u32 hsw_infoframe_data_reg(struct dip_infoframe *frame, enum pipe pipe)
{
	switch (frame->type) {
	case DIP_TYPE_AVI:
		return HSW_TVIDEO_DIP_AVI_DATA(pipe);
	case DIP_TYPE_SPD:
		return HSW_TVIDEO_DIP_SPD_DATA(pipe);
	default:
		DRM_DEBUG_DRIVER("unknown info frame type %d\n", frame->type);
		return 0;
	}
}

118 119
static void g4x_write_infoframe(struct drm_encoder *encoder,
				struct dip_infoframe *frame)
120 121
{
	uint32_t *data = (uint32_t *)frame;
122 123
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
124
	u32 val = I915_READ(VIDEO_DIP_CTL);
125
	unsigned i, len = DIP_HEADER_SIZE + frame->len;
126

127
	val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
128
	val |= g4x_infoframe_index(frame);
129

130
	val &= ~g4x_infoframe_enable(frame);
131
	val |= VIDEO_DIP_ENABLE;
132

133
	I915_WRITE(VIDEO_DIP_CTL, val);
134

135
	for (i = 0; i < len; i += 4) {
136 137 138 139
		I915_WRITE(VIDEO_DIP_DATA, *data);
		data++;
	}

140
	val |= g4x_infoframe_enable(frame);
141
	val &= ~VIDEO_DIP_FREQ_MASK;
142
	val |= VIDEO_DIP_FREQ_VSYNC;
143

144
	I915_WRITE(VIDEO_DIP_CTL, val);
145 146
}

147 148 149 150 151 152
static void ibx_write_infoframe(struct drm_encoder *encoder,
				struct dip_infoframe *frame)
{
	uint32_t *data = (uint32_t *)frame;
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
153
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
154 155 156 157 158 159 160
	int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
	unsigned i, len = DIP_HEADER_SIZE + frame->len;
	u32 val = I915_READ(reg);

	intel_wait_for_vblank(dev, intel_crtc->pipe);

	val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
161
	val |= g4x_infoframe_index(frame);
162

163
	val &= ~g4x_infoframe_enable(frame);
164 165 166 167 168 169 170 171 172
	val |= VIDEO_DIP_ENABLE;

	I915_WRITE(reg, val);

	for (i = 0; i < len; i += 4) {
		I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
		data++;
	}

173
	val |= g4x_infoframe_enable(frame);
174
	val &= ~VIDEO_DIP_FREQ_MASK;
175
	val |= VIDEO_DIP_FREQ_VSYNC;
176 177 178 179 180 181

	I915_WRITE(reg, val);
}

static void cpt_write_infoframe(struct drm_encoder *encoder,
				struct dip_infoframe *frame)
182
{
183
	uint32_t *data = (uint32_t *)frame;
184 185
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
186
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
187
	int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
188
	unsigned i, len = DIP_HEADER_SIZE + frame->len;
189
	u32 val = I915_READ(reg);
190 191 192

	intel_wait_for_vblank(dev, intel_crtc->pipe);

193
	val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
194
	val |= g4x_infoframe_index(frame);
195

196 197 198 199 200
	/* The DIP control register spec says that we need to update the AVI
	 * infoframe without clearing its enable bit */
	if (frame->type == DIP_TYPE_AVI)
		val |= VIDEO_DIP_ENABLE_AVI;
	else
201
		val &= ~g4x_infoframe_enable(frame);
202

203 204 205
	val |= VIDEO_DIP_ENABLE;

	I915_WRITE(reg, val);
206 207

	for (i = 0; i < len; i += 4) {
208 209 210 211
		I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
		data++;
	}

212
	val |= g4x_infoframe_enable(frame);
213
	val &= ~VIDEO_DIP_FREQ_MASK;
214
	val |= VIDEO_DIP_FREQ_VSYNC;
215

216
	I915_WRITE(reg, val);
217
}
218 219 220 221 222 223 224

static void vlv_write_infoframe(struct drm_encoder *encoder,
				     struct dip_infoframe *frame)
{
	uint32_t *data = (uint32_t *)frame;
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
225
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
226 227
	int reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
	unsigned i, len = DIP_HEADER_SIZE + frame->len;
228
	u32 val = I915_READ(reg);
229 230 231 232

	intel_wait_for_vblank(dev, intel_crtc->pipe);

	val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
233
	val |= g4x_infoframe_index(frame);
234

235
	val &= ~g4x_infoframe_enable(frame);
236
	val |= VIDEO_DIP_ENABLE;
237

238
	I915_WRITE(reg, val);
239 240 241 242 243 244

	for (i = 0; i < len; i += 4) {
		I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
		data++;
	}

245
	val |= g4x_infoframe_enable(frame);
246
	val &= ~VIDEO_DIP_FREQ_MASK;
247
	val |= VIDEO_DIP_FREQ_VSYNC;
248

249
	I915_WRITE(reg, val);
250 251
}

252
static void hsw_write_infoframe(struct drm_encoder *encoder,
253
				struct dip_infoframe *frame)
254
{
255 256 257 258 259 260 261 262
	uint32_t *data = (uint32_t *)frame;
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
	u32 ctl_reg = HSW_TVIDEO_DIP_CTL(intel_crtc->pipe);
	u32 data_reg = hsw_infoframe_data_reg(frame, intel_crtc->pipe);
	unsigned int i, len = DIP_HEADER_SIZE + frame->len;
	u32 val = I915_READ(ctl_reg);
263

264 265 266 267 268 269 270 271 272 273 274 275
	if (data_reg == 0)
		return;

	intel_wait_for_vblank(dev, intel_crtc->pipe);

	val &= ~hsw_infoframe_enable(frame);
	I915_WRITE(ctl_reg, val);

	for (i = 0; i < len; i += 4) {
		I915_WRITE(data_reg + i, *data);
		data++;
	}
276

277 278
	val |= hsw_infoframe_enable(frame);
	I915_WRITE(ctl_reg, val);
279 280
}

281 282 283 284 285 286 287 288 289
static void intel_set_infoframe(struct drm_encoder *encoder,
				struct dip_infoframe *frame)
{
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);

	intel_dip_infoframe_csum(frame);
	intel_hdmi->write_infoframe(encoder, frame);
}

290
static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
P
Paulo Zanoni 已提交
291
					 struct drm_display_mode *adjusted_mode)
292 293 294 295 296 297 298
{
	struct dip_infoframe avi_if = {
		.type = DIP_TYPE_AVI,
		.ver = DIP_VERSION_AVI,
		.len = DIP_LEN_AVI,
	};

P
Paulo Zanoni 已提交
299 300 301
	if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
		avi_if.body.avi.YQ_CN_PR |= DIP_AVI_PR_2;

302
	intel_set_infoframe(encoder, &avi_if);
303 304
}

305
static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
306 307 308 309 310 311 312 313 314 315 316 317 318 319
{
	struct dip_infoframe spd_if;

	memset(&spd_if, 0, sizeof(spd_if));
	spd_if.type = DIP_TYPE_SPD;
	spd_if.ver = DIP_VERSION_SPD;
	spd_if.len = DIP_LEN_SPD;
	strcpy(spd_if.body.spd.vn, "Intel");
	strcpy(spd_if.body.spd.pd, "Integrated gfx");
	spd_if.body.spd.sdi = DIP_SPD_PC;

	intel_set_infoframe(encoder, &spd_if);
}

320 321 322
static void g4x_set_infoframes(struct drm_encoder *encoder,
			       struct drm_display_mode *adjusted_mode)
{
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
	struct drm_i915_private *dev_priv = encoder->dev->dev_private;
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
	u32 reg = VIDEO_DIP_CTL;
	u32 val = I915_READ(reg);

	/* If the registers were not initialized yet, they might be zeroes,
	 * which means we're selecting the AVI DIP and we're setting its
	 * frequency to once. This seems to really confuse the HW and make
	 * things stop working (the register spec says the AVI always needs to
	 * be sent every VSync). So here we avoid writing to the register more
	 * than we need and also explicitly select the AVI DIP and explicitly
	 * set its frequency to every VSync. Avoiding to write it twice seems to
	 * be enough to solve the problem, but being defensive shouldn't hurt us
	 * either. */
	val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;

	if (!intel_hdmi->has_hdmi_sink) {
		if (!(val & VIDEO_DIP_ENABLE))
			return;
		val &= ~VIDEO_DIP_ENABLE;
		I915_WRITE(reg, val);
		return;
	}

347 348 349 350 351 352 353 354 355 356 357 358 359 360
	val &= ~VIDEO_DIP_PORT_MASK;
	switch (intel_hdmi->sdvox_reg) {
	case SDVOB:
		val |= VIDEO_DIP_PORT_B;
		break;
	case SDVOC:
		val |= VIDEO_DIP_PORT_C;
		break;
	default:
		return;
	}

	I915_WRITE(reg, val);

361 362 363 364 365 366 367
	intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
	intel_hdmi_set_spd_infoframe(encoder);
}

static void ibx_set_infoframes(struct drm_encoder *encoder,
			       struct drm_display_mode *adjusted_mode)
{
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384
	struct drm_i915_private *dev_priv = encoder->dev->dev_private;
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
	u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
	u32 val = I915_READ(reg);

	/* See the big comment in g4x_set_infoframes() */
	val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;

	if (!intel_hdmi->has_hdmi_sink) {
		if (!(val & VIDEO_DIP_ENABLE))
			return;
		val &= ~VIDEO_DIP_ENABLE;
		I915_WRITE(reg, val);
		return;
	}

385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
	val &= ~VIDEO_DIP_PORT_MASK;
	switch (intel_hdmi->sdvox_reg) {
	case HDMIB:
		val |= VIDEO_DIP_PORT_B;
		break;
	case HDMIC:
		val |= VIDEO_DIP_PORT_C;
		break;
	case HDMID:
		val |= VIDEO_DIP_PORT_D;
		break;
	default:
		return;
	}

	I915_WRITE(reg, val);

402 403 404 405 406 407 408
	intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
	intel_hdmi_set_spd_infoframe(encoder);
}

static void cpt_set_infoframes(struct drm_encoder *encoder,
			       struct drm_display_mode *adjusted_mode)
{
409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
	struct drm_i915_private *dev_priv = encoder->dev->dev_private;
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
	u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
	u32 val = I915_READ(reg);

	/* See the big comment in g4x_set_infoframes() */
	val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;

	if (!intel_hdmi->has_hdmi_sink) {
		if (!(val & VIDEO_DIP_ENABLE))
			return;
		val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI);
		I915_WRITE(reg, val);
		return;
	}

426 427 428 429 430 431 432
	intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
	intel_hdmi_set_spd_infoframe(encoder);
}

static void vlv_set_infoframes(struct drm_encoder *encoder,
			       struct drm_display_mode *adjusted_mode)
{
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449
	struct drm_i915_private *dev_priv = encoder->dev->dev_private;
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
	u32 reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
	u32 val = I915_READ(reg);

	/* See the big comment in g4x_set_infoframes() */
	val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;

	if (!intel_hdmi->has_hdmi_sink) {
		if (!(val & VIDEO_DIP_ENABLE))
			return;
		val &= ~VIDEO_DIP_ENABLE;
		I915_WRITE(reg, val);
		return;
	}

450 451 452 453 454 455 456
	intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
	intel_hdmi_set_spd_infoframe(encoder);
}

static void hsw_set_infoframes(struct drm_encoder *encoder,
			       struct drm_display_mode *adjusted_mode)
{
457 458 459 460 461 462 463 464 465 466
	struct drm_i915_private *dev_priv = encoder->dev->dev_private;
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
	u32 reg = HSW_TVIDEO_DIP_CTL(intel_crtc->pipe);

	if (!intel_hdmi->has_hdmi_sink) {
		I915_WRITE(reg, 0);
		return;
	}

467 468 469 470
	intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
	intel_hdmi_set_spd_infoframe(encoder);
}

471 472 473 474 475 476
static void intel_hdmi_mode_set(struct drm_encoder *encoder,
				struct drm_display_mode *mode,
				struct drm_display_mode *adjusted_mode)
{
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
477
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
C
Chris Wilson 已提交
478
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
479 480
	u32 sdvox;

481
	sdvox = SDVO_ENCODING_HDMI | SDVO_BORDER_ENABLE;
482 483
	if (!HAS_PCH_SPLIT(dev))
		sdvox |= intel_hdmi->color_range;
484 485 486 487
	if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
		sdvox |= SDVO_VSYNC_ACTIVE_HIGH;
	if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
		sdvox |= SDVO_HSYNC_ACTIVE_HIGH;
488

489 490 491 492 493
	if (intel_crtc->bpp > 24)
		sdvox |= COLOR_FORMAT_12bpc;
	else
		sdvox |= COLOR_FORMAT_8bpc;

494 495 496 497
	/* Required on CPT */
	if (intel_hdmi->has_hdmi_sink && HAS_PCH_CPT(dev))
		sdvox |= HDMI_MODE_SELECT;

498
	if (intel_hdmi->has_audio) {
499 500
		DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
				 pipe_name(intel_crtc->pipe));
501
		sdvox |= SDVO_AUDIO_ENABLE;
502
		sdvox |= SDVO_NULL_PACKETS_DURING_VSYNC;
503
		intel_write_eld(encoder, adjusted_mode);
504
	}
505

506 507 508 509
	if (HAS_PCH_CPT(dev))
		sdvox |= PORT_TRANS_SEL_CPT(intel_crtc->pipe);
	else if (intel_crtc->pipe == 1)
		sdvox |= SDVO_PIPE_B_SELECT;
510

C
Chris Wilson 已提交
511 512
	I915_WRITE(intel_hdmi->sdvox_reg, sdvox);
	POSTING_READ(intel_hdmi->sdvox_reg);
513

514
	intel_hdmi->set_infoframes(encoder, adjusted_mode);
515 516 517 518 519 520
}

static void intel_hdmi_dpms(struct drm_encoder *encoder, int mode)
{
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
C
Chris Wilson 已提交
521
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
522
	u32 temp;
523 524 525 526
	u32 enable_bits = SDVO_ENABLE;

	if (intel_hdmi->has_audio)
		enable_bits |= SDVO_AUDIO_ENABLE;
527

C
Chris Wilson 已提交
528
	temp = I915_READ(intel_hdmi->sdvox_reg);
529 530 531 532

	/* HW workaround, need to toggle enable bit off and on for 12bpc, but
	 * we do this anyway which shows more stable in testing.
	 */
533
	if (HAS_PCH_SPLIT(dev)) {
C
Chris Wilson 已提交
534 535
		I915_WRITE(intel_hdmi->sdvox_reg, temp & ~SDVO_ENABLE);
		POSTING_READ(intel_hdmi->sdvox_reg);
536 537 538
	}

	if (mode != DRM_MODE_DPMS_ON) {
539
		temp &= ~enable_bits;
540
	} else {
541
		temp |= enable_bits;
542
	}
543

C
Chris Wilson 已提交
544 545
	I915_WRITE(intel_hdmi->sdvox_reg, temp);
	POSTING_READ(intel_hdmi->sdvox_reg);
546 547 548 549

	/* HW workaround, need to write this twice for issue that may result
	 * in first write getting masked.
	 */
550
	if (HAS_PCH_SPLIT(dev)) {
C
Chris Wilson 已提交
551 552
		I915_WRITE(intel_hdmi->sdvox_reg, temp);
		POSTING_READ(intel_hdmi->sdvox_reg);
553
	}
554 555 556 557 558 559 560 561
}

static int intel_hdmi_mode_valid(struct drm_connector *connector,
				 struct drm_display_mode *mode)
{
	if (mode->clock > 165000)
		return MODE_CLOCK_HIGH;
	if (mode->clock < 20000)
562
		return MODE_CLOCK_LOW;
563 564 565 566 567 568 569 570 571 572 573 574 575 576

	if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
		return MODE_NO_DBLESCAN;

	return MODE_OK;
}

static bool intel_hdmi_mode_fixup(struct drm_encoder *encoder,
				  struct drm_display_mode *mode,
				  struct drm_display_mode *adjusted_mode)
{
	return true;
}

577 578 579 580 581 582 583
static bool g4x_hdmi_connected(struct intel_hdmi *intel_hdmi)
{
	struct drm_device *dev = intel_hdmi->base.base.dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	uint32_t bit;

	switch (intel_hdmi->sdvox_reg) {
584
	case SDVOB:
585 586
		bit = HDMIB_HOTPLUG_LIVE_STATUS;
		break;
587
	case SDVOC:
588 589 590 591 592 593 594 595 596 597
		bit = HDMIC_HOTPLUG_LIVE_STATUS;
		break;
	default:
		bit = 0;
		break;
	}

	return I915_READ(PORT_HOTPLUG_STAT) & bit;
}

598
static enum drm_connector_status
599
intel_hdmi_detect(struct drm_connector *connector, bool force)
600
{
601
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
602 603
	struct drm_i915_private *dev_priv = connector->dev->dev_private;
	struct edid *edid;
604
	enum drm_connector_status status = connector_status_disconnected;
605

606 607 608
	if (IS_G4X(connector->dev) && !g4x_hdmi_connected(intel_hdmi))
		return status;

C
Chris Wilson 已提交
609
	intel_hdmi->has_hdmi_sink = false;
610
	intel_hdmi->has_audio = false;
611
	edid = drm_get_edid(connector,
612 613
			    intel_gmbus_get_adapter(dev_priv,
						    intel_hdmi->ddc_bus));
614

615
	if (edid) {
616
		if (edid->input & DRM_EDID_INPUT_DIGITAL) {
617
			status = connector_status_connected;
618 619 620
			if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
				intel_hdmi->has_hdmi_sink =
						drm_detect_hdmi_monitor(edid);
621
			intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
622
		}
623
		connector->display_info.raw_edid = NULL;
624
		kfree(edid);
625
	}
626

627
	if (status == connector_status_connected) {
628 629 630
		if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
			intel_hdmi->has_audio =
				(intel_hdmi->force_audio == HDMI_AUDIO_ON);
631 632
	}

633
	return status;
634 635 636 637
}

static int intel_hdmi_get_modes(struct drm_connector *connector)
{
638
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
639
	struct drm_i915_private *dev_priv = connector->dev->dev_private;
640 641 642 643 644

	/* We should parse the EDID data and find out if it's an HDMI sink so
	 * we can send audio to it.
	 */

645
	return intel_ddc_get_modes(connector,
646 647
				   intel_gmbus_get_adapter(dev_priv,
							   intel_hdmi->ddc_bus));
648 649
}

650 651 652 653 654 655 656 657 658
static bool
intel_hdmi_detect_audio(struct drm_connector *connector)
{
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
	struct drm_i915_private *dev_priv = connector->dev->dev_private;
	struct edid *edid;
	bool has_audio = false;

	edid = drm_get_edid(connector,
659 660
			    intel_gmbus_get_adapter(dev_priv,
						    intel_hdmi->ddc_bus));
661 662 663 664 665 666 667 668 669 670 671
	if (edid) {
		if (edid->input & DRM_EDID_INPUT_DIGITAL)
			has_audio = drm_detect_monitor_audio(edid);

		connector->display_info.raw_edid = NULL;
		kfree(edid);
	}

	return has_audio;
}

672 673
static int
intel_hdmi_set_property(struct drm_connector *connector,
674 675
			struct drm_property *property,
			uint64_t val)
676 677
{
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
678
	struct drm_i915_private *dev_priv = connector->dev->dev_private;
679 680 681 682 683 684
	int ret;

	ret = drm_connector_property_set_value(connector, property, val);
	if (ret)
		return ret;

685
	if (property == dev_priv->force_audio_property) {
686
		enum hdmi_force_audio i = val;
687 688 689
		bool has_audio;

		if (i == intel_hdmi->force_audio)
690 691
			return 0;

692
		intel_hdmi->force_audio = i;
693

694
		if (i == HDMI_AUDIO_AUTO)
695 696
			has_audio = intel_hdmi_detect_audio(connector);
		else
697
			has_audio = (i == HDMI_AUDIO_ON);
698

699 700
		if (i == HDMI_AUDIO_OFF_DVI)
			intel_hdmi->has_hdmi_sink = 0;
701

702
		intel_hdmi->has_audio = has_audio;
703 704 705
		goto done;
	}

706 707 708 709 710 711 712 713
	if (property == dev_priv->broadcast_rgb_property) {
		if (val == !!intel_hdmi->color_range)
			return 0;

		intel_hdmi->color_range = val ? SDVO_COLOR_RANGE_16_235 : 0;
		goto done;
	}

714 715 716 717 718 719 720 721 722 723 724 725 726
	return -EINVAL;

done:
	if (intel_hdmi->base.base.crtc) {
		struct drm_crtc *crtc = intel_hdmi->base.base.crtc;
		drm_crtc_helper_set_mode(crtc, &crtc->mode,
					 crtc->x, crtc->y,
					 crtc->fb);
	}

	return 0;
}

727 728 729 730
static void intel_hdmi_destroy(struct drm_connector *connector)
{
	drm_sysfs_connector_remove(connector);
	drm_connector_cleanup(connector);
731
	kfree(connector);
732 733
}

734 735 736 737 738 739 740 741
static const struct drm_encoder_helper_funcs intel_hdmi_helper_funcs_hsw = {
	.dpms = intel_ddi_dpms,
	.mode_fixup = intel_hdmi_mode_fixup,
	.prepare = intel_encoder_prepare,
	.mode_set = intel_ddi_mode_set,
	.commit = intel_encoder_commit,
};

742 743 744 745 746 747 748 749 750
static const struct drm_encoder_helper_funcs intel_hdmi_helper_funcs = {
	.dpms = intel_hdmi_dpms,
	.mode_fixup = intel_hdmi_mode_fixup,
	.prepare = intel_encoder_prepare,
	.mode_set = intel_hdmi_mode_set,
	.commit = intel_encoder_commit,
};

static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
751
	.dpms = drm_helper_connector_dpms,
752 753
	.detect = intel_hdmi_detect,
	.fill_modes = drm_helper_probe_single_connector_modes,
754
	.set_property = intel_hdmi_set_property,
755 756 757 758 759 760
	.destroy = intel_hdmi_destroy,
};

static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
	.get_modes = intel_hdmi_get_modes,
	.mode_valid = intel_hdmi_mode_valid,
761
	.best_encoder = intel_best_encoder,
762 763 764
};

static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
C
Chris Wilson 已提交
765
	.destroy = intel_encoder_destroy,
766 767
};

768 769 770
static void
intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
{
771
	intel_attach_force_audio_property(connector);
772
	intel_attach_broadcast_rgb_property(connector);
773 774
}

775 776 777 778
void intel_hdmi_init(struct drm_device *dev, int sdvox_reg)
{
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct drm_connector *connector;
779
	struct intel_encoder *intel_encoder;
780
	struct intel_connector *intel_connector;
C
Chris Wilson 已提交
781
	struct intel_hdmi *intel_hdmi;
782
	int i;
783

C
Chris Wilson 已提交
784 785
	intel_hdmi = kzalloc(sizeof(struct intel_hdmi), GFP_KERNEL);
	if (!intel_hdmi)
786
		return;
787 788 789

	intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
	if (!intel_connector) {
C
Chris Wilson 已提交
790
		kfree(intel_hdmi);
791 792 793
		return;
	}

C
Chris Wilson 已提交
794
	intel_encoder = &intel_hdmi->base;
795 796 797
	drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
			 DRM_MODE_ENCODER_TMDS);

798
	connector = &intel_connector->base;
799
	drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
800
			   DRM_MODE_CONNECTOR_HDMIA);
801 802
	drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);

803
	intel_encoder->type = INTEL_OUTPUT_HDMI;
804

805
	connector->polled = DRM_CONNECTOR_POLL_HPD;
806
	connector->interlace_allowed = 1;
807
	connector->doublescan_allowed = 0;
J
Jesse Barnes 已提交
808
	intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
809 810

	/* Set up the DDC bus. */
811
	if (sdvox_reg == SDVOB) {
812
		intel_encoder->clone_mask = (1 << INTEL_HDMIB_CLONE_BIT);
813
		intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
814
		dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
815
	} else if (sdvox_reg == SDVOC) {
816
		intel_encoder->clone_mask = (1 << INTEL_HDMIC_CLONE_BIT);
817
		intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
818
		dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
819
	} else if (sdvox_reg == HDMIB) {
820
		intel_encoder->clone_mask = (1 << INTEL_HDMID_CLONE_BIT);
821
		intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
822
		dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
823
	} else if (sdvox_reg == HDMIC) {
824
		intel_encoder->clone_mask = (1 << INTEL_HDMIE_CLONE_BIT);
825
		intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
826
		dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
827
	} else if (sdvox_reg == HDMID) {
828
		intel_encoder->clone_mask = (1 << INTEL_HDMIF_CLONE_BIT);
829
		intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
830
		dev_priv->hotplug_supported_mask |= HDMID_HOTPLUG_INT_STATUS;
831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848
	} else if (sdvox_reg == DDI_BUF_CTL(PORT_B)) {
		DRM_DEBUG_DRIVER("LPT: detected output on DDI B\n");
		intel_encoder->clone_mask = (1 << INTEL_HDMIB_CLONE_BIT);
		intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
		intel_hdmi->ddi_port = PORT_B;
		dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
	} else if (sdvox_reg == DDI_BUF_CTL(PORT_C)) {
		DRM_DEBUG_DRIVER("LPT: detected output on DDI C\n");
		intel_encoder->clone_mask = (1 << INTEL_HDMIC_CLONE_BIT);
		intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
		intel_hdmi->ddi_port = PORT_C;
		dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
	} else if (sdvox_reg == DDI_BUF_CTL(PORT_D)) {
		DRM_DEBUG_DRIVER("LPT: detected output on DDI D\n");
		intel_encoder->clone_mask = (1 << INTEL_HDMID_CLONE_BIT);
		intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
		intel_hdmi->ddi_port = PORT_D;
		dev_priv->hotplug_supported_mask |= HDMID_HOTPLUG_INT_STATUS;
849 850 851 852
	} else {
		/* If we got an unknown sdvox_reg, things are pretty much broken
		 * in a way that we should let the kernel know about it */
		BUG();
853
	}
854

C
Chris Wilson 已提交
855
	intel_hdmi->sdvox_reg = sdvox_reg;
856

857
	if (!HAS_PCH_SPLIT(dev)) {
858
		intel_hdmi->write_infoframe = g4x_write_infoframe;
859
		intel_hdmi->set_infoframes = g4x_set_infoframes;
860
		I915_WRITE(VIDEO_DIP_CTL, 0);
861 862
	} else if (IS_VALLEYVIEW(dev)) {
		intel_hdmi->write_infoframe = vlv_write_infoframe;
863
		intel_hdmi->set_infoframes = vlv_set_infoframes;
864 865
		for_each_pipe(i)
			I915_WRITE(VLV_TVIDEO_DIP_CTL(i), 0);
866 867 868 869 870
	} else if (IS_HASWELL(dev)) {
		/* FIXME: Haswell has a new set of DIP frame registers, but we are
		 * just doing the minimal required for HDMI to work at this stage.
		 */
		intel_hdmi->write_infoframe = hsw_write_infoframe;
871
		intel_hdmi->set_infoframes = hsw_set_infoframes;
872 873
		for_each_pipe(i)
			I915_WRITE(HSW_TVIDEO_DIP_CTL(i), 0);
874 875
	} else if (HAS_PCH_IBX(dev)) {
		intel_hdmi->write_infoframe = ibx_write_infoframe;
876
		intel_hdmi->set_infoframes = ibx_set_infoframes;
877 878 879 880
		for_each_pipe(i)
			I915_WRITE(TVIDEO_DIP_CTL(i), 0);
	} else {
		intel_hdmi->write_infoframe = cpt_write_infoframe;
881
		intel_hdmi->set_infoframes = cpt_set_infoframes;
882 883 884
		for_each_pipe(i)
			I915_WRITE(TVIDEO_DIP_CTL(i), 0);
	}
885

886 887 888 889
	if (IS_HASWELL(dev))
		drm_encoder_helper_add(&intel_encoder->base, &intel_hdmi_helper_funcs_hsw);
	else
		drm_encoder_helper_add(&intel_encoder->base, &intel_hdmi_helper_funcs);
890

891 892
	intel_hdmi_add_properties(intel_hdmi, connector);

893
	intel_connector_attach_encoder(intel_connector, intel_encoder);
894 895 896 897 898 899 900 901 902 903 904
	drm_sysfs_connector_add(connector);

	/* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
	 * 0xd.  Failure to do so will result in spurious interrupts being
	 * generated on the port when a cable is not attached.
	 */
	if (IS_G4X(dev) && !IS_GM45(dev)) {
		u32 temp = I915_READ(PEG_BAND_GAP_DATA);
		I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
	}
}