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 124
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
125
	u32 val = I915_READ(VIDEO_DIP_CTL);
126
	unsigned i, len = DIP_HEADER_SIZE + frame->len;
127

128
	val &= ~VIDEO_DIP_PORT_MASK;
129
	if (intel_hdmi->sdvox_reg == SDVOB)
130
		val |= VIDEO_DIP_PORT_B;
131
	else if (intel_hdmi->sdvox_reg == SDVOC)
132
		val |= VIDEO_DIP_PORT_C;
133 134 135
	else
		return;

136
	val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
137
	val |= g4x_infoframe_index(frame);
138

139
	val &= ~g4x_infoframe_enable(frame);
140
	val |= VIDEO_DIP_ENABLE;
141

142
	I915_WRITE(VIDEO_DIP_CTL, val);
143

144
	for (i = 0; i < len; i += 4) {
145 146 147 148
		I915_WRITE(VIDEO_DIP_DATA, *data);
		data++;
	}

149
	val |= g4x_infoframe_enable(frame);
150
	val &= ~VIDEO_DIP_FREQ_MASK;
151
	val |= VIDEO_DIP_FREQ_VSYNC;
152

153
	I915_WRITE(VIDEO_DIP_CTL, val);
154 155
}

156 157 158 159 160 161
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;
162
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
163
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
164 165 166 167
	int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
	unsigned i, len = DIP_HEADER_SIZE + frame->len;
	u32 val = I915_READ(reg);

168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
	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;
	}

183 184 185
	intel_wait_for_vblank(dev, intel_crtc->pipe);

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

188
	val &= ~g4x_infoframe_enable(frame);
189 190 191 192 193 194 195 196 197
	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++;
	}

198
	val |= g4x_infoframe_enable(frame);
199
	val &= ~VIDEO_DIP_FREQ_MASK;
200
	val |= VIDEO_DIP_FREQ_VSYNC;
201 202 203 204 205 206

	I915_WRITE(reg, val);
}

static void cpt_write_infoframe(struct drm_encoder *encoder,
				struct dip_infoframe *frame)
207
{
208
	uint32_t *data = (uint32_t *)frame;
209 210
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
211
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
212
	int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
213
	unsigned i, len = DIP_HEADER_SIZE + frame->len;
214
	u32 val = I915_READ(reg);
215 216 217

	intel_wait_for_vblank(dev, intel_crtc->pipe);

218
	val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
219
	val |= g4x_infoframe_index(frame);
220

221 222 223 224 225
	/* 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
226
		val &= ~g4x_infoframe_enable(frame);
227

228 229 230
	val |= VIDEO_DIP_ENABLE;

	I915_WRITE(reg, val);
231 232

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

237
	val |= g4x_infoframe_enable(frame);
238
	val &= ~VIDEO_DIP_FREQ_MASK;
239
	val |= VIDEO_DIP_FREQ_VSYNC;
240

241
	I915_WRITE(reg, val);
242
}
243 244 245 246 247 248 249

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;
250
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
251 252
	int reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
	unsigned i, len = DIP_HEADER_SIZE + frame->len;
253
	u32 val = I915_READ(reg);
254 255 256 257

	intel_wait_for_vblank(dev, intel_crtc->pipe);

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

260
	val &= ~g4x_infoframe_enable(frame);
261
	val |= VIDEO_DIP_ENABLE;
262

263
	I915_WRITE(reg, val);
264 265 266 267 268 269

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

270
	val |= g4x_infoframe_enable(frame);
271
	val &= ~VIDEO_DIP_FREQ_MASK;
272
	val |= VIDEO_DIP_FREQ_VSYNC;
273

274
	I915_WRITE(reg, val);
275 276
}

277
static void hsw_write_infoframe(struct drm_encoder *encoder,
278
				struct dip_infoframe *frame)
279
{
280 281 282 283 284 285 286 287
	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);
288

289 290 291 292 293 294 295 296 297 298 299 300
	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++;
	}
301

302 303
	val |= hsw_infoframe_enable(frame);
	I915_WRITE(ctl_reg, val);
304 305
}

306 307 308 309 310 311 312 313 314
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);
}

315
static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
P
Paulo Zanoni 已提交
316
					 struct drm_display_mode *adjusted_mode)
317 318 319 320 321 322 323
{
	struct dip_infoframe avi_if = {
		.type = DIP_TYPE_AVI,
		.ver = DIP_VERSION_AVI,
		.len = DIP_LEN_AVI,
	};

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

327
	intel_set_infoframe(encoder, &avi_if);
328 329
}

330
static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
331 332 333 334 335 336 337 338 339 340 341 342 343 344
{
	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);
}

345 346 347
static void g4x_set_infoframes(struct drm_encoder *encoder,
			       struct drm_display_mode *adjusted_mode)
{
348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371
	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;
	}

372 373 374 375 376 377 378
	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)
{
379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
	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;
	}

396 397 398 399 400 401 402
	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)
{
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
	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;
	}

420 421 422 423 424 425 426
	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)
{
427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443
	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;
	}

444 445 446 447 448 449 450
	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)
{
451 452 453 454 455 456 457 458 459 460
	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;
	}

461 462 463 464
	intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
	intel_hdmi_set_spd_infoframe(encoder);
}

465 466 467 468 469 470
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;
471
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
C
Chris Wilson 已提交
472
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
473 474
	u32 sdvox;

475
	sdvox = SDVO_ENCODING_HDMI | SDVO_BORDER_ENABLE;
476 477
	if (!HAS_PCH_SPLIT(dev))
		sdvox |= intel_hdmi->color_range;
478 479 480 481
	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;
482

483 484 485 486 487
	if (intel_crtc->bpp > 24)
		sdvox |= COLOR_FORMAT_12bpc;
	else
		sdvox |= COLOR_FORMAT_8bpc;

488 489 490 491
	/* Required on CPT */
	if (intel_hdmi->has_hdmi_sink && HAS_PCH_CPT(dev))
		sdvox |= HDMI_MODE_SELECT;

492
	if (intel_hdmi->has_audio) {
493 494
		DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
				 pipe_name(intel_crtc->pipe));
495
		sdvox |= SDVO_AUDIO_ENABLE;
496
		sdvox |= SDVO_NULL_PACKETS_DURING_VSYNC;
497
		intel_write_eld(encoder, adjusted_mode);
498
	}
499

500 501 502 503
	if (HAS_PCH_CPT(dev))
		sdvox |= PORT_TRANS_SEL_CPT(intel_crtc->pipe);
	else if (intel_crtc->pipe == 1)
		sdvox |= SDVO_PIPE_B_SELECT;
504

C
Chris Wilson 已提交
505 506
	I915_WRITE(intel_hdmi->sdvox_reg, sdvox);
	POSTING_READ(intel_hdmi->sdvox_reg);
507

508
	intel_hdmi->set_infoframes(encoder, adjusted_mode);
509 510 511 512 513 514
}

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 已提交
515
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
516
	u32 temp;
517 518 519 520
	u32 enable_bits = SDVO_ENABLE;

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

C
Chris Wilson 已提交
522
	temp = I915_READ(intel_hdmi->sdvox_reg);
523 524 525 526

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

	if (mode != DRM_MODE_DPMS_ON) {
533
		temp &= ~enable_bits;
534
	} else {
535
		temp |= enable_bits;
536
	}
537

C
Chris Wilson 已提交
538 539
	I915_WRITE(intel_hdmi->sdvox_reg, temp);
	POSTING_READ(intel_hdmi->sdvox_reg);
540 541 542 543

	/* HW workaround, need to write this twice for issue that may result
	 * in first write getting masked.
	 */
544
	if (HAS_PCH_SPLIT(dev)) {
C
Chris Wilson 已提交
545 546
		I915_WRITE(intel_hdmi->sdvox_reg, temp);
		POSTING_READ(intel_hdmi->sdvox_reg);
547
	}
548 549 550 551 552 553 554 555
}

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)
556
		return MODE_CLOCK_LOW;
557 558 559 560 561 562 563 564 565 566 567 568 569 570

	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;
}

571 572 573 574 575 576 577
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) {
578
	case SDVOB:
579 580
		bit = HDMIB_HOTPLUG_LIVE_STATUS;
		break;
581
	case SDVOC:
582 583 584 585 586 587 588 589 590 591
		bit = HDMIC_HOTPLUG_LIVE_STATUS;
		break;
	default:
		bit = 0;
		break;
	}

	return I915_READ(PORT_HOTPLUG_STAT) & bit;
}

592
static enum drm_connector_status
593
intel_hdmi_detect(struct drm_connector *connector, bool force)
594
{
595
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
596 597
	struct drm_i915_private *dev_priv = connector->dev->dev_private;
	struct edid *edid;
598
	enum drm_connector_status status = connector_status_disconnected;
599

600 601 602
	if (IS_G4X(connector->dev) && !g4x_hdmi_connected(intel_hdmi))
		return status;

C
Chris Wilson 已提交
603
	intel_hdmi->has_hdmi_sink = false;
604
	intel_hdmi->has_audio = false;
605
	edid = drm_get_edid(connector,
606 607
			    intel_gmbus_get_adapter(dev_priv,
						    intel_hdmi->ddc_bus));
608

609
	if (edid) {
610
		if (edid->input & DRM_EDID_INPUT_DIGITAL) {
611
			status = connector_status_connected;
612 613 614
			if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
				intel_hdmi->has_hdmi_sink =
						drm_detect_hdmi_monitor(edid);
615
			intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
616
		}
617
		connector->display_info.raw_edid = NULL;
618
		kfree(edid);
619
	}
620

621
	if (status == connector_status_connected) {
622 623 624
		if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
			intel_hdmi->has_audio =
				(intel_hdmi->force_audio == HDMI_AUDIO_ON);
625 626
	}

627
	return status;
628 629 630 631
}

static int intel_hdmi_get_modes(struct drm_connector *connector)
{
632
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
633
	struct drm_i915_private *dev_priv = connector->dev->dev_private;
634 635 636 637 638

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

639
	return intel_ddc_get_modes(connector,
640 641
				   intel_gmbus_get_adapter(dev_priv,
							   intel_hdmi->ddc_bus));
642 643
}

644 645 646 647 648 649 650 651 652
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,
653 654
			    intel_gmbus_get_adapter(dev_priv,
						    intel_hdmi->ddc_bus));
655 656 657 658 659 660 661 662 663 664 665
	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;
}

666 667
static int
intel_hdmi_set_property(struct drm_connector *connector,
668 669
			struct drm_property *property,
			uint64_t val)
670 671
{
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
672
	struct drm_i915_private *dev_priv = connector->dev->dev_private;
673 674 675 676 677 678
	int ret;

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

679
	if (property == dev_priv->force_audio_property) {
680
		enum hdmi_force_audio i = val;
681 682 683
		bool has_audio;

		if (i == intel_hdmi->force_audio)
684 685
			return 0;

686
		intel_hdmi->force_audio = i;
687

688
		if (i == HDMI_AUDIO_AUTO)
689 690
			has_audio = intel_hdmi_detect_audio(connector);
		else
691
			has_audio = (i == HDMI_AUDIO_ON);
692

693 694
		if (i == HDMI_AUDIO_OFF_DVI)
			intel_hdmi->has_hdmi_sink = 0;
695

696
		intel_hdmi->has_audio = has_audio;
697 698 699
		goto done;
	}

700 701 702 703 704 705 706 707
	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;
	}

708 709 710 711 712 713 714 715 716 717 718 719 720
	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;
}

721 722 723 724
static void intel_hdmi_destroy(struct drm_connector *connector)
{
	drm_sysfs_connector_remove(connector);
	drm_connector_cleanup(connector);
725
	kfree(connector);
726 727
}

728 729 730 731 732 733 734 735
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,
};

736 737 738 739 740 741 742 743 744
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 = {
745
	.dpms = drm_helper_connector_dpms,
746 747
	.detect = intel_hdmi_detect,
	.fill_modes = drm_helper_probe_single_connector_modes,
748
	.set_property = intel_hdmi_set_property,
749 750 751 752 753 754
	.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,
755
	.best_encoder = intel_best_encoder,
756 757 758
};

static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
C
Chris Wilson 已提交
759
	.destroy = intel_encoder_destroy,
760 761
};

762 763 764
static void
intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
{
765
	intel_attach_force_audio_property(connector);
766
	intel_attach_broadcast_rgb_property(connector);
767 768
}

769 770 771 772
void intel_hdmi_init(struct drm_device *dev, int sdvox_reg)
{
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct drm_connector *connector;
773
	struct intel_encoder *intel_encoder;
774
	struct intel_connector *intel_connector;
C
Chris Wilson 已提交
775
	struct intel_hdmi *intel_hdmi;
776
	int i;
777

C
Chris Wilson 已提交
778 779
	intel_hdmi = kzalloc(sizeof(struct intel_hdmi), GFP_KERNEL);
	if (!intel_hdmi)
780
		return;
781 782 783

	intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
	if (!intel_connector) {
C
Chris Wilson 已提交
784
		kfree(intel_hdmi);
785 786 787
		return;
	}

C
Chris Wilson 已提交
788
	intel_encoder = &intel_hdmi->base;
789 790 791
	drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
			 DRM_MODE_ENCODER_TMDS);

792
	connector = &intel_connector->base;
793
	drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
794
			   DRM_MODE_CONNECTOR_HDMIA);
795 796
	drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);

797
	intel_encoder->type = INTEL_OUTPUT_HDMI;
798

799
	connector->polled = DRM_CONNECTOR_POLL_HPD;
800
	connector->interlace_allowed = 1;
801
	connector->doublescan_allowed = 0;
J
Jesse Barnes 已提交
802
	intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
803 804

	/* Set up the DDC bus. */
805
	if (sdvox_reg == SDVOB) {
806
		intel_encoder->clone_mask = (1 << INTEL_HDMIB_CLONE_BIT);
807
		intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
808
		dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
809
	} else if (sdvox_reg == SDVOC) {
810
		intel_encoder->clone_mask = (1 << INTEL_HDMIC_CLONE_BIT);
811
		intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
812
		dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
813
	} else if (sdvox_reg == HDMIB) {
814
		intel_encoder->clone_mask = (1 << INTEL_HDMID_CLONE_BIT);
815
		intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
816
		dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
817
	} else if (sdvox_reg == HDMIC) {
818
		intel_encoder->clone_mask = (1 << INTEL_HDMIE_CLONE_BIT);
819
		intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
820
		dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
821
	} else if (sdvox_reg == HDMID) {
822
		intel_encoder->clone_mask = (1 << INTEL_HDMIF_CLONE_BIT);
823
		intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
824
		dev_priv->hotplug_supported_mask |= HDMID_HOTPLUG_INT_STATUS;
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842
	} 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;
843 844 845 846
	} 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();
847
	}
848

C
Chris Wilson 已提交
849
	intel_hdmi->sdvox_reg = sdvox_reg;
850

851
	if (!HAS_PCH_SPLIT(dev)) {
852
		intel_hdmi->write_infoframe = g4x_write_infoframe;
853
		intel_hdmi->set_infoframes = g4x_set_infoframes;
854
		I915_WRITE(VIDEO_DIP_CTL, 0);
855 856
	} else if (IS_VALLEYVIEW(dev)) {
		intel_hdmi->write_infoframe = vlv_write_infoframe;
857
		intel_hdmi->set_infoframes = vlv_set_infoframes;
858 859
		for_each_pipe(i)
			I915_WRITE(VLV_TVIDEO_DIP_CTL(i), 0);
860 861 862 863 864
	} 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;
865
		intel_hdmi->set_infoframes = hsw_set_infoframes;
866 867
		for_each_pipe(i)
			I915_WRITE(HSW_TVIDEO_DIP_CTL(i), 0);
868 869
	} else if (HAS_PCH_IBX(dev)) {
		intel_hdmi->write_infoframe = ibx_write_infoframe;
870
		intel_hdmi->set_infoframes = ibx_set_infoframes;
871 872 873 874
		for_each_pipe(i)
			I915_WRITE(TVIDEO_DIP_CTL(i), 0);
	} else {
		intel_hdmi->write_infoframe = cpt_write_infoframe;
875
		intel_hdmi->set_infoframes = cpt_set_infoframes;
876 877 878
		for_each_pipe(i)
			I915_WRITE(TVIDEO_DIP_CTL(i), 0);
	}
879

880 881 882 883
	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);
884

885 886
	intel_hdmi_add_properties(intel_hdmi, connector);

887
	intel_connector_attach_encoder(intel_connector, intel_encoder);
888 889 890 891 892 893 894 895 896 897 898
	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);
	}
}