intel_hdmi.c 16.7 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"

C
Chris Wilson 已提交
40 41
struct intel_hdmi {
	struct intel_encoder base;
42
	u32 sdvox_reg;
43
	int ddc_bus;
44
	uint32_t color_range;
45
	bool has_hdmi_sink;
46
	bool has_audio;
47
	enum hdmi_force_audio force_audio;
48 49
	void (*write_infoframe)(struct drm_encoder *encoder,
				struct dip_infoframe *frame);
50 51
};

C
Chris Wilson 已提交
52 53
static struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder)
{
54
	return container_of(encoder, struct intel_hdmi, base.base);
C
Chris Wilson 已提交
55 56
}

57 58 59 60 61 62
static struct intel_hdmi *intel_attached_hdmi(struct drm_connector *connector)
{
	return container_of(intel_attached_encoder(connector),
			    struct intel_hdmi, base);
}

63
void intel_dip_infoframe_csum(struct dip_infoframe *frame)
64
{
65
	uint8_t *data = (uint8_t *)frame;
66 67 68
	uint8_t sum = 0;
	unsigned i;

69 70
	frame->checksum = 0;
	frame->ecc = 0;
71

72
	for (i = 0; i < frame->len + DIP_HEADER_SIZE; i++)
73 74
		sum += data[i];

75
	frame->checksum = 0x100 - sum;
76 77
}

78
static u32 intel_infoframe_index(struct dip_infoframe *frame)
79
{
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
	u32 flags = 0;

	switch (frame->type) {
	case DIP_TYPE_AVI:
		flags |= VIDEO_DIP_SELECT_AVI;
		break;
	case DIP_TYPE_SPD:
		flags |= VIDEO_DIP_SELECT_SPD;
		break;
	default:
		DRM_DEBUG_DRIVER("unknown info frame type %d\n", frame->type);
		break;
	}

	return flags;
}

static u32 intel_infoframe_flags(struct dip_infoframe *frame)
{
	u32 flags = 0;

	switch (frame->type) {
	case DIP_TYPE_AVI:
		flags |= VIDEO_DIP_ENABLE_AVI | VIDEO_DIP_FREQ_VSYNC;
		break;
	case DIP_TYPE_SPD:
106
		flags |= VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_FREQ_VSYNC;
107 108 109 110 111 112 113 114 115 116 117 118 119
		break;
	default:
		DRM_DEBUG_DRIVER("unknown info frame type %d\n", frame->type);
		break;
	}

	return flags;
}

static void i9xx_write_infoframe(struct drm_encoder *encoder,
				 struct dip_infoframe *frame)
{
	uint32_t *data = (uint32_t *)frame;
120 121 122
	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);
123
	u32 val = I915_READ(VIDEO_DIP_CTL);
124
	unsigned i, len = DIP_HEADER_SIZE + frame->len;
125 126 127


	/* XXX first guess at handling video port, is this corrent? */
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 138 139
	val |= intel_infoframe_index(frame);

	val |= VIDEO_DIP_ENABLE;
140

141
	I915_WRITE(VIDEO_DIP_CTL, val);
142

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

148
	val |= intel_infoframe_flags(frame);
149

150
	I915_WRITE(VIDEO_DIP_CTL, val);
151 152
}

153 154
static void ironlake_write_infoframe(struct drm_encoder *encoder,
				     struct dip_infoframe *frame)
155
{
156
	uint32_t *data = (uint32_t *)frame;
157 158 159 160 161
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct drm_crtc *crtc = encoder->crtc;
	struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
	int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
162
	unsigned i, len = DIP_HEADER_SIZE + frame->len;
163
	u32 val = I915_READ(reg);
164 165 166

	intel_wait_for_vblank(dev, intel_crtc->pipe);

167
	val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
168
	val |= intel_infoframe_index(frame);
169

170 171 172
	val |= VIDEO_DIP_ENABLE;

	I915_WRITE(reg, val);
173 174

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

179
	val |= intel_infoframe_flags(frame);
180

181
	I915_WRITE(reg, val);
182
}
183 184 185 186 187 188 189 190 191 192 193

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;
	struct drm_crtc *crtc = encoder->crtc;
	struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
	int reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
	unsigned i, len = DIP_HEADER_SIZE + frame->len;
194
	u32 val = I915_READ(reg);
195 196 197 198

	intel_wait_for_vblank(dev, intel_crtc->pipe);

	val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
199 200 201
	val |= intel_infoframe_index(frame);

	val |= VIDEO_DIP_ENABLE;
202

203
	I915_WRITE(reg, val);
204 205 206 207 208 209

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

210
	val |= intel_infoframe_flags(frame);
211

212
	I915_WRITE(reg, val);
213 214
}

215 216 217 218 219 220 221 222 223 224 225 226
static void intel_set_infoframe(struct drm_encoder *encoder,
				struct dip_infoframe *frame)
{
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);

	if (!intel_hdmi->has_hdmi_sink)
		return;

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

P
Paulo Zanoni 已提交
227 228
static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
					 struct drm_display_mode *adjusted_mode)
229 230 231 232 233 234 235
{
	struct dip_infoframe avi_if = {
		.type = DIP_TYPE_AVI,
		.ver = DIP_VERSION_AVI,
		.len = DIP_LEN_AVI,
	};

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

239
	intel_set_infoframe(encoder, &avi_if);
240 241
}

242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
{
	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);
}

257 258 259 260 261 262 263 264
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;
	struct drm_crtc *crtc = encoder->crtc;
	struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
C
Chris Wilson 已提交
265
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
266 267
	u32 sdvox;

268
	sdvox = SDVO_ENCODING_HDMI | SDVO_BORDER_ENABLE;
269 270
	if (!HAS_PCH_SPLIT(dev))
		sdvox |= intel_hdmi->color_range;
271 272 273 274
	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;
275

276 277 278 279 280
	if (intel_crtc->bpp > 24)
		sdvox |= COLOR_FORMAT_12bpc;
	else
		sdvox |= COLOR_FORMAT_8bpc;

281 282 283 284
	/* Required on CPT */
	if (intel_hdmi->has_hdmi_sink && HAS_PCH_CPT(dev))
		sdvox |= HDMI_MODE_SELECT;

285
	if (intel_hdmi->has_audio) {
286 287
		DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
				 pipe_name(intel_crtc->pipe));
288
		sdvox |= SDVO_AUDIO_ENABLE;
289
		sdvox |= SDVO_NULL_PACKETS_DURING_VSYNC;
290
		intel_write_eld(encoder, adjusted_mode);
291
	}
292

293 294 295 296
	if (HAS_PCH_CPT(dev))
		sdvox |= PORT_TRANS_SEL_CPT(intel_crtc->pipe);
	else if (intel_crtc->pipe == 1)
		sdvox |= SDVO_PIPE_B_SELECT;
297

C
Chris Wilson 已提交
298 299
	I915_WRITE(intel_hdmi->sdvox_reg, sdvox);
	POSTING_READ(intel_hdmi->sdvox_reg);
300

P
Paulo Zanoni 已提交
301
	intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
302
	intel_hdmi_set_spd_infoframe(encoder);
303 304 305 306 307 308
}

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 已提交
309
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
310
	u32 temp;
311 312 313 314
	u32 enable_bits = SDVO_ENABLE;

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

C
Chris Wilson 已提交
316
	temp = I915_READ(intel_hdmi->sdvox_reg);
317 318 319 320

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

	if (mode != DRM_MODE_DPMS_ON) {
327
		temp &= ~enable_bits;
328
	} else {
329
		temp |= enable_bits;
330
	}
331

C
Chris Wilson 已提交
332 333
	I915_WRITE(intel_hdmi->sdvox_reg, temp);
	POSTING_READ(intel_hdmi->sdvox_reg);
334 335 336 337

	/* HW workaround, need to write this twice for issue that may result
	 * in first write getting masked.
	 */
338
	if (HAS_PCH_SPLIT(dev)) {
C
Chris Wilson 已提交
339 340
		I915_WRITE(intel_hdmi->sdvox_reg, temp);
		POSTING_READ(intel_hdmi->sdvox_reg);
341
	}
342 343 344 345 346 347 348 349
}

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)
350
		return MODE_CLOCK_LOW;
351 352 353 354 355 356 357 358 359 360 361 362 363 364

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

365
static enum drm_connector_status
366
intel_hdmi_detect(struct drm_connector *connector, bool force)
367
{
368
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
369 370
	struct drm_i915_private *dev_priv = connector->dev->dev_private;
	struct edid *edid;
371
	enum drm_connector_status status = connector_status_disconnected;
372

C
Chris Wilson 已提交
373
	intel_hdmi->has_hdmi_sink = false;
374
	intel_hdmi->has_audio = false;
375
	edid = drm_get_edid(connector,
376 377
			    intel_gmbus_get_adapter(dev_priv,
						    intel_hdmi->ddc_bus));
378

379
	if (edid) {
380
		if (edid->input & DRM_EDID_INPUT_DIGITAL) {
381
			status = connector_status_connected;
382 383 384
			if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
				intel_hdmi->has_hdmi_sink =
						drm_detect_hdmi_monitor(edid);
385
			intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
386
		}
387
		connector->display_info.raw_edid = NULL;
388
		kfree(edid);
389
	}
390

391
	if (status == connector_status_connected) {
392 393 394
		if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
			intel_hdmi->has_audio =
				(intel_hdmi->force_audio == HDMI_AUDIO_ON);
395 396
	}

397
	return status;
398 399 400 401
}

static int intel_hdmi_get_modes(struct drm_connector *connector)
{
402
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
403
	struct drm_i915_private *dev_priv = connector->dev->dev_private;
404 405 406 407 408

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

409
	return intel_ddc_get_modes(connector,
410 411
				   intel_gmbus_get_adapter(dev_priv,
							   intel_hdmi->ddc_bus));
412 413
}

414 415 416 417 418 419 420 421 422
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,
423 424
			    intel_gmbus_get_adapter(dev_priv,
						    intel_hdmi->ddc_bus));
425 426 427 428 429 430 431 432 433 434 435
	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;
}

436 437 438 439 440 441
static int
intel_hdmi_set_property(struct drm_connector *connector,
		      struct drm_property *property,
		      uint64_t val)
{
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
442
	struct drm_i915_private *dev_priv = connector->dev->dev_private;
443 444 445 446 447 448
	int ret;

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

449
	if (property == dev_priv->force_audio_property) {
450
		enum hdmi_force_audio i = val;
451 452 453
		bool has_audio;

		if (i == intel_hdmi->force_audio)
454 455
			return 0;

456
		intel_hdmi->force_audio = i;
457

458
		if (i == HDMI_AUDIO_AUTO)
459 460
			has_audio = intel_hdmi_detect_audio(connector);
		else
461
			has_audio = (i == HDMI_AUDIO_ON);
462

463 464
		if (i == HDMI_AUDIO_OFF_DVI)
			intel_hdmi->has_hdmi_sink = 0;
465

466
		intel_hdmi->has_audio = has_audio;
467 468 469
		goto done;
	}

470 471 472 473 474 475 476 477
	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;
	}

478 479 480 481 482 483 484 485 486 487 488 489 490
	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;
}

491 492 493 494
static void intel_hdmi_destroy(struct drm_connector *connector)
{
	drm_sysfs_connector_remove(connector);
	drm_connector_cleanup(connector);
495
	kfree(connector);
496 497 498 499 500 501 502 503 504 505 506
}

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 = {
507
	.dpms = drm_helper_connector_dpms,
508 509
	.detect = intel_hdmi_detect,
	.fill_modes = drm_helper_probe_single_connector_modes,
510
	.set_property = intel_hdmi_set_property,
511 512 513 514 515 516
	.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,
517
	.best_encoder = intel_best_encoder,
518 519 520
};

static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
C
Chris Wilson 已提交
521
	.destroy = intel_encoder_destroy,
522 523
};

524 525 526
static void
intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
{
527
	intel_attach_force_audio_property(connector);
528
	intel_attach_broadcast_rgb_property(connector);
529 530
}

531 532 533 534
void intel_hdmi_init(struct drm_device *dev, int sdvox_reg)
{
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct drm_connector *connector;
535
	struct intel_encoder *intel_encoder;
536
	struct intel_connector *intel_connector;
C
Chris Wilson 已提交
537
	struct intel_hdmi *intel_hdmi;
538
	int i;
539

C
Chris Wilson 已提交
540 541
	intel_hdmi = kzalloc(sizeof(struct intel_hdmi), GFP_KERNEL);
	if (!intel_hdmi)
542
		return;
543 544 545

	intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
	if (!intel_connector) {
C
Chris Wilson 已提交
546
		kfree(intel_hdmi);
547 548 549
		return;
	}

C
Chris Wilson 已提交
550
	intel_encoder = &intel_hdmi->base;
551 552 553
	drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
			 DRM_MODE_ENCODER_TMDS);

554
	connector = &intel_connector->base;
555
	drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
556
			   DRM_MODE_CONNECTOR_HDMIA);
557 558
	drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);

559
	intel_encoder->type = INTEL_OUTPUT_HDMI;
560

561
	connector->polled = DRM_CONNECTOR_POLL_HPD;
562
	connector->interlace_allowed = 1;
563
	connector->doublescan_allowed = 0;
J
Jesse Barnes 已提交
564
	intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
565 566

	/* Set up the DDC bus. */
567
	if (sdvox_reg == SDVOB) {
568
		intel_encoder->clone_mask = (1 << INTEL_HDMIB_CLONE_BIT);
569
		intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
570
		dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
571
	} else if (sdvox_reg == SDVOC) {
572
		intel_encoder->clone_mask = (1 << INTEL_HDMIC_CLONE_BIT);
573
		intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
574
		dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
575
	} else if (sdvox_reg == HDMIB) {
576
		intel_encoder->clone_mask = (1 << INTEL_HDMID_CLONE_BIT);
577
		intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
578
		dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
579
	} else if (sdvox_reg == HDMIC) {
580
		intel_encoder->clone_mask = (1 << INTEL_HDMIE_CLONE_BIT);
581
		intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
582
		dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
583
	} else if (sdvox_reg == HDMID) {
584
		intel_encoder->clone_mask = (1 << INTEL_HDMIF_CLONE_BIT);
585
		intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
586
		dev_priv->hotplug_supported_mask |= HDMID_HOTPLUG_INT_STATUS;
587
	}
588

C
Chris Wilson 已提交
589
	intel_hdmi->sdvox_reg = sdvox_reg;
590

591
	if (!HAS_PCH_SPLIT(dev)) {
592
		intel_hdmi->write_infoframe = i9xx_write_infoframe;
593
		I915_WRITE(VIDEO_DIP_CTL, 0);
594 595 596 597 598
	} else if (IS_VALLEYVIEW(dev)) {
		intel_hdmi->write_infoframe = vlv_write_infoframe;
		for_each_pipe(i)
			I915_WRITE(VLV_TVIDEO_DIP_CTL(i), 0);
	}  else {
599
		intel_hdmi->write_infoframe = ironlake_write_infoframe;
600 601 602
		for_each_pipe(i)
			I915_WRITE(TVIDEO_DIP_CTL(i), 0);
	}
603

604
	drm_encoder_helper_add(&intel_encoder->base, &intel_hdmi_helper_funcs);
605

606 607
	intel_hdmi_add_properties(intel_hdmi, connector);

608
	intel_connector_attach_encoder(intel_connector, intel_encoder);
609 610 611 612 613 614 615 616 617 618 619
	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);
	}
}