intel_hdmi.c 57.0 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
#include <linux/delay.h>
32
#include <linux/hdmi.h>
33
#include <drm/drmP.h>
34
#include <drm/drm_atomic_helper.h>
35 36
#include <drm/drm_crtc.h>
#include <drm/drm_edid.h>
37
#include "intel_drv.h"
38
#include <drm/i915_drm.h>
39 40
#include "i915_drv.h"

41 42
static struct drm_device *intel_hdmi_to_dev(struct intel_hdmi *intel_hdmi)
{
43
	return hdmi_to_dig_port(intel_hdmi)->base.base.dev;
44 45
}

46 47 48
static void
assert_hdmi_port_disabled(struct intel_hdmi *intel_hdmi)
{
49
	struct drm_device *dev = intel_hdmi_to_dev(intel_hdmi);
50
	struct drm_i915_private *dev_priv = to_i915(dev);
51 52
	uint32_t enabled_bits;

P
Paulo Zanoni 已提交
53
	enabled_bits = HAS_DDI(dev) ? DDI_BUF_CTL_ENABLE : SDVO_ENABLE;
54

55
	WARN(I915_READ(intel_hdmi->hdmi_reg) & enabled_bits,
56 57 58
	     "HDMI port enabled, expecting disabled\n");
}

59
struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder)
C
Chris Wilson 已提交
60
{
61 62 63
	struct intel_digital_port *intel_dig_port =
		container_of(encoder, struct intel_digital_port, base.base);
	return &intel_dig_port->hdmi;
C
Chris Wilson 已提交
64 65
}

66 67
static struct intel_hdmi *intel_attached_hdmi(struct drm_connector *connector)
{
68
	return enc_to_intel_hdmi(&intel_attached_encoder(connector)->base);
69 70
}

71
static u32 g4x_infoframe_index(enum hdmi_infoframe_type type)
72
{
73 74
	switch (type) {
	case HDMI_INFOFRAME_TYPE_AVI:
75
		return VIDEO_DIP_SELECT_AVI;
76
	case HDMI_INFOFRAME_TYPE_SPD:
77
		return VIDEO_DIP_SELECT_SPD;
78 79
	case HDMI_INFOFRAME_TYPE_VENDOR:
		return VIDEO_DIP_SELECT_VENDOR;
80
	default:
81
		MISSING_CASE(type);
82
		return 0;
83 84 85
	}
}

86
static u32 g4x_infoframe_enable(enum hdmi_infoframe_type type)
87
{
88 89
	switch (type) {
	case HDMI_INFOFRAME_TYPE_AVI:
90
		return VIDEO_DIP_ENABLE_AVI;
91
	case HDMI_INFOFRAME_TYPE_SPD:
92
		return VIDEO_DIP_ENABLE_SPD;
93 94
	case HDMI_INFOFRAME_TYPE_VENDOR:
		return VIDEO_DIP_ENABLE_VENDOR;
95
	default:
96
		MISSING_CASE(type);
97
		return 0;
98 99 100
	}
}

101
static u32 hsw_infoframe_enable(enum hdmi_infoframe_type type)
102
{
103 104
	switch (type) {
	case HDMI_INFOFRAME_TYPE_AVI:
105
		return VIDEO_DIP_ENABLE_AVI_HSW;
106
	case HDMI_INFOFRAME_TYPE_SPD:
107
		return VIDEO_DIP_ENABLE_SPD_HSW;
108 109
	case HDMI_INFOFRAME_TYPE_VENDOR:
		return VIDEO_DIP_ENABLE_VS_HSW;
110
	default:
111
		MISSING_CASE(type);
112 113 114 115
		return 0;
	}
}

116 117 118 119 120
static i915_reg_t
hsw_dip_data_reg(struct drm_i915_private *dev_priv,
		 enum transcoder cpu_transcoder,
		 enum hdmi_infoframe_type type,
		 int i)
121
{
122 123
	switch (type) {
	case HDMI_INFOFRAME_TYPE_AVI:
124
		return HSW_TVIDEO_DIP_AVI_DATA(cpu_transcoder, i);
125
	case HDMI_INFOFRAME_TYPE_SPD:
126
		return HSW_TVIDEO_DIP_SPD_DATA(cpu_transcoder, i);
127
	case HDMI_INFOFRAME_TYPE_VENDOR:
128
		return HSW_TVIDEO_DIP_VS_DATA(cpu_transcoder, i);
129
	default:
130
		MISSING_CASE(type);
131
		return INVALID_MMIO_REG;
132 133 134
	}
}

135
static void g4x_write_infoframe(struct drm_encoder *encoder,
136
				enum hdmi_infoframe_type type,
137
				const void *frame, ssize_t len)
138
{
139
	const uint32_t *data = frame;
140
	struct drm_device *dev = encoder->dev;
141
	struct drm_i915_private *dev_priv = to_i915(dev);
142
	u32 val = I915_READ(VIDEO_DIP_CTL);
143
	int i;
144

145 146
	WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");

147
	val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
148
	val |= g4x_infoframe_index(type);
149

150
	val &= ~g4x_infoframe_enable(type);
151

152
	I915_WRITE(VIDEO_DIP_CTL, val);
153

154
	mmiowb();
155
	for (i = 0; i < len; i += 4) {
156 157 158
		I915_WRITE(VIDEO_DIP_DATA, *data);
		data++;
	}
159 160 161
	/* Write every possible data byte to force correct ECC calculation. */
	for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
		I915_WRITE(VIDEO_DIP_DATA, 0);
162
	mmiowb();
163

164
	val |= g4x_infoframe_enable(type);
165
	val &= ~VIDEO_DIP_FREQ_MASK;
166
	val |= VIDEO_DIP_FREQ_VSYNC;
167

168
	I915_WRITE(VIDEO_DIP_CTL, val);
169
	POSTING_READ(VIDEO_DIP_CTL);
170 171
}

172 173
static bool g4x_infoframe_enabled(struct drm_encoder *encoder,
				  const struct intel_crtc_state *pipe_config)
174
{
175
	struct drm_i915_private *dev_priv = to_i915(encoder->dev);
176
	struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
177 178
	u32 val = I915_READ(VIDEO_DIP_CTL);

179 180
	if ((val & VIDEO_DIP_ENABLE) == 0)
		return false;
181

182 183 184 185 186
	if ((val & VIDEO_DIP_PORT_MASK) != VIDEO_DIP_PORT(intel_dig_port->port))
		return false;

	return val & (VIDEO_DIP_ENABLE_AVI |
		      VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
187 188
}

189
static void ibx_write_infoframe(struct drm_encoder *encoder,
190
				enum hdmi_infoframe_type type,
191
				const void *frame, ssize_t len)
192
{
193
	const uint32_t *data = frame;
194
	struct drm_device *dev = encoder->dev;
195
	struct drm_i915_private *dev_priv = to_i915(dev);
196
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
197
	i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
198
	u32 val = I915_READ(reg);
199
	int i;
200

201 202
	WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");

203
	val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
204
	val |= g4x_infoframe_index(type);
205

206
	val &= ~g4x_infoframe_enable(type);
207 208 209

	I915_WRITE(reg, val);

210
	mmiowb();
211 212 213 214
	for (i = 0; i < len; i += 4) {
		I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
		data++;
	}
215 216 217
	/* Write every possible data byte to force correct ECC calculation. */
	for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
		I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
218
	mmiowb();
219

220
	val |= g4x_infoframe_enable(type);
221
	val &= ~VIDEO_DIP_FREQ_MASK;
222
	val |= VIDEO_DIP_FREQ_VSYNC;
223 224

	I915_WRITE(reg, val);
225
	POSTING_READ(reg);
226 227
}

228 229
static bool ibx_infoframe_enabled(struct drm_encoder *encoder,
				  const struct intel_crtc_state *pipe_config)
230
{
231
	struct drm_i915_private *dev_priv = to_i915(encoder->dev);
232
	struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
233 234
	enum pipe pipe = to_intel_crtc(pipe_config->base.crtc)->pipe;
	i915_reg_t reg = TVIDEO_DIP_CTL(pipe);
235 236
	u32 val = I915_READ(reg);

237 238 239 240 241
	if ((val & VIDEO_DIP_ENABLE) == 0)
		return false;

	if ((val & VIDEO_DIP_PORT_MASK) != VIDEO_DIP_PORT(intel_dig_port->port))
		return false;
242

243 244 245
	return val & (VIDEO_DIP_ENABLE_AVI |
		      VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
		      VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
246 247
}

248
static void cpt_write_infoframe(struct drm_encoder *encoder,
249
				enum hdmi_infoframe_type type,
250
				const void *frame, ssize_t len)
251
{
252
	const uint32_t *data = frame;
253
	struct drm_device *dev = encoder->dev;
254
	struct drm_i915_private *dev_priv = to_i915(dev);
255
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
256
	i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
257
	u32 val = I915_READ(reg);
258
	int i;
259

260 261
	WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");

262
	val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
263
	val |= g4x_infoframe_index(type);
264

265 266
	/* The DIP control register spec says that we need to update the AVI
	 * infoframe without clearing its enable bit */
267 268
	if (type != HDMI_INFOFRAME_TYPE_AVI)
		val &= ~g4x_infoframe_enable(type);
269

270
	I915_WRITE(reg, val);
271

272
	mmiowb();
273
	for (i = 0; i < len; i += 4) {
274 275 276
		I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
		data++;
	}
277 278 279
	/* Write every possible data byte to force correct ECC calculation. */
	for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
		I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
280
	mmiowb();
281

282
	val |= g4x_infoframe_enable(type);
283
	val &= ~VIDEO_DIP_FREQ_MASK;
284
	val |= VIDEO_DIP_FREQ_VSYNC;
285

286
	I915_WRITE(reg, val);
287
	POSTING_READ(reg);
288
}
289

290 291
static bool cpt_infoframe_enabled(struct drm_encoder *encoder,
				  const struct intel_crtc_state *pipe_config)
292
{
293 294 295
	struct drm_i915_private *dev_priv = to_i915(encoder->dev);
	enum pipe pipe = to_intel_crtc(pipe_config->base.crtc)->pipe;
	u32 val = I915_READ(TVIDEO_DIP_CTL(pipe));
296

297 298 299 300 301 302
	if ((val & VIDEO_DIP_ENABLE) == 0)
		return false;

	return val & (VIDEO_DIP_ENABLE_AVI |
		      VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
		      VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
303 304
}

305
static void vlv_write_infoframe(struct drm_encoder *encoder,
306
				enum hdmi_infoframe_type type,
307
				const void *frame, ssize_t len)
308
{
309
	const uint32_t *data = frame;
310
	struct drm_device *dev = encoder->dev;
311
	struct drm_i915_private *dev_priv = to_i915(dev);
312
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
313
	i915_reg_t reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
314
	u32 val = I915_READ(reg);
315
	int i;
316

317 318
	WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");

319
	val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
320
	val |= g4x_infoframe_index(type);
321

322
	val &= ~g4x_infoframe_enable(type);
323

324
	I915_WRITE(reg, val);
325

326
	mmiowb();
327 328 329 330
	for (i = 0; i < len; i += 4) {
		I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
		data++;
	}
331 332 333
	/* Write every possible data byte to force correct ECC calculation. */
	for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
		I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
334
	mmiowb();
335

336
	val |= g4x_infoframe_enable(type);
337
	val &= ~VIDEO_DIP_FREQ_MASK;
338
	val |= VIDEO_DIP_FREQ_VSYNC;
339

340
	I915_WRITE(reg, val);
341
	POSTING_READ(reg);
342 343
}

344 345
static bool vlv_infoframe_enabled(struct drm_encoder *encoder,
				  const struct intel_crtc_state *pipe_config)
346
{
347
	struct drm_i915_private *dev_priv = to_i915(encoder->dev);
348
	struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
349 350
	enum pipe pipe = to_intel_crtc(pipe_config->base.crtc)->pipe;
	u32 val = I915_READ(VLV_TVIDEO_DIP_CTL(pipe));
351

352 353 354 355 356
	if ((val & VIDEO_DIP_ENABLE) == 0)
		return false;

	if ((val & VIDEO_DIP_PORT_MASK) != VIDEO_DIP_PORT(intel_dig_port->port))
		return false;
357

358 359 360
	return val & (VIDEO_DIP_ENABLE_AVI |
		      VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
		      VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
361 362
}

363
static void hsw_write_infoframe(struct drm_encoder *encoder,
364
				enum hdmi_infoframe_type type,
365
				const void *frame, ssize_t len)
366
{
367
	const uint32_t *data = frame;
368
	struct drm_device *dev = encoder->dev;
369
	struct drm_i915_private *dev_priv = to_i915(dev);
370
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
371
	enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
372 373
	i915_reg_t ctl_reg = HSW_TVIDEO_DIP_CTL(cpu_transcoder);
	i915_reg_t data_reg;
374
	int i;
375
	u32 val = I915_READ(ctl_reg);
376

377
	data_reg = hsw_dip_data_reg(dev_priv, cpu_transcoder, type, 0);
378

379
	val &= ~hsw_infoframe_enable(type);
380 381
	I915_WRITE(ctl_reg, val);

382
	mmiowb();
383
	for (i = 0; i < len; i += 4) {
384 385
		I915_WRITE(hsw_dip_data_reg(dev_priv, cpu_transcoder,
					    type, i >> 2), *data);
386 387
		data++;
	}
388 389
	/* Write every possible data byte to force correct ECC calculation. */
	for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
390 391
		I915_WRITE(hsw_dip_data_reg(dev_priv, cpu_transcoder,
					    type, i >> 2), 0);
392
	mmiowb();
393

394
	val |= hsw_infoframe_enable(type);
395
	I915_WRITE(ctl_reg, val);
396
	POSTING_READ(ctl_reg);
397 398
}

399 400
static bool hsw_infoframe_enabled(struct drm_encoder *encoder,
				  const struct intel_crtc_state *pipe_config)
401
{
402 403
	struct drm_i915_private *dev_priv = to_i915(encoder->dev);
	u32 val = I915_READ(HSW_TVIDEO_DIP_CTL(pipe_config->cpu_transcoder));
404

405 406 407
	return val & (VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_AVI_HSW |
		      VIDEO_DIP_ENABLE_GCP_HSW | VIDEO_DIP_ENABLE_VS_HSW |
		      VIDEO_DIP_ENABLE_GMP_HSW | VIDEO_DIP_ENABLE_SPD_HSW);
408 409
}

410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
/*
 * The data we write to the DIP data buffer registers is 1 byte bigger than the
 * HDMI infoframe size because of an ECC/reserved byte at position 3 (starting
 * at 0). It's also a byte used by DisplayPort so the same DIP registers can be
 * used for both technologies.
 *
 * DW0: Reserved/ECC/DP | HB2 | HB1 | HB0
 * DW1:       DB3       | DB2 | DB1 | DB0
 * DW2:       DB7       | DB6 | DB5 | DB4
 * DW3: ...
 *
 * (HB is Header Byte, DB is Data Byte)
 *
 * The hdmi pack() functions don't know about that hardware specific hole so we
 * trick them by giving an offset into the buffer and moving back the header
 * bytes by one.
 */
427 428
static void intel_write_infoframe(struct drm_encoder *encoder,
				  union hdmi_infoframe *frame)
429 430
{
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
431 432
	uint8_t buffer[VIDEO_DIP_DATA_SIZE];
	ssize_t len;
433

434 435 436 437 438 439 440 441 442 443 444
	/* see comment above for the reason for this offset */
	len = hdmi_infoframe_pack(frame, buffer + 1, sizeof(buffer) - 1);
	if (len < 0)
		return;

	/* Insert the 'hole' (see big comment above) at position 3 */
	buffer[0] = buffer[1];
	buffer[1] = buffer[2];
	buffer[2] = buffer[3];
	buffer[3] = 0;
	len++;
445

446
	intel_hdmi->write_infoframe(encoder, frame->any.type, buffer, len);
447 448
}

449
static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
450
					 const struct drm_display_mode *adjusted_mode)
451
{
452
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
453
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
454 455
	union hdmi_infoframe frame;
	int ret;
456

457 458 459 460 461 462
	ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
						       adjusted_mode);
	if (ret < 0) {
		DRM_ERROR("couldn't fill AVI infoframe\n");
		return;
	}
P
Paulo Zanoni 已提交
463

464
	if (intel_hdmi->rgb_quant_range_selectable) {
465
		if (intel_crtc->config->limited_color_range)
466 467
			frame.avi.quantization_range =
				HDMI_QUANTIZATION_RANGE_LIMITED;
468
		else
469 470
			frame.avi.quantization_range =
				HDMI_QUANTIZATION_RANGE_FULL;
471 472
	}

473
	intel_write_infoframe(encoder, &frame);
474 475
}

476
static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
477
{
478 479 480 481 482 483 484 485
	union hdmi_infoframe frame;
	int ret;

	ret = hdmi_spd_infoframe_init(&frame.spd, "Intel", "Integrated gfx");
	if (ret < 0) {
		DRM_ERROR("couldn't fill SPD infoframe\n");
		return;
	}
486

487
	frame.spd.sdi = HDMI_SPD_SDI_PC;
488

489
	intel_write_infoframe(encoder, &frame);
490 491
}

492 493
static void
intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder,
494
			      const struct drm_display_mode *adjusted_mode)
495 496 497 498 499 500 501 502 503 504 505 506
{
	union hdmi_infoframe frame;
	int ret;

	ret = drm_hdmi_vendor_infoframe_from_display_mode(&frame.vendor.hdmi,
							  adjusted_mode);
	if (ret < 0)
		return;

	intel_write_infoframe(encoder, &frame);
}

507
static void g4x_set_infoframes(struct drm_encoder *encoder,
508
			       bool enable,
509
			       const struct drm_display_mode *adjusted_mode)
510
{
511
	struct drm_i915_private *dev_priv = to_i915(encoder->dev);
512 513
	struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
	struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
514
	i915_reg_t reg = VIDEO_DIP_CTL;
515
	u32 val = I915_READ(reg);
516
	u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
517

518 519
	assert_hdmi_port_disabled(intel_hdmi);

520 521 522 523 524 525 526 527 528 529 530
	/* 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;

531
	if (!enable) {
532 533
		if (!(val & VIDEO_DIP_ENABLE))
			return;
534 535 536 537 538 539 540
		if (port != (val & VIDEO_DIP_PORT_MASK)) {
			DRM_DEBUG_KMS("video DIP still enabled on port %c\n",
				      (val & VIDEO_DIP_PORT_MASK) >> 29);
			return;
		}
		val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
			 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
541
		I915_WRITE(reg, val);
542
		POSTING_READ(reg);
543 544 545
		return;
	}

546 547
	if (port != (val & VIDEO_DIP_PORT_MASK)) {
		if (val & VIDEO_DIP_ENABLE) {
548 549 550
			DRM_DEBUG_KMS("video DIP already enabled on port %c\n",
				      (val & VIDEO_DIP_PORT_MASK) >> 29);
			return;
551 552 553 554 555
		}
		val &= ~VIDEO_DIP_PORT_MASK;
		val |= port;
	}

556
	val |= VIDEO_DIP_ENABLE;
557 558
	val &= ~(VIDEO_DIP_ENABLE_AVI |
		 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
559

560
	I915_WRITE(reg, val);
561
	POSTING_READ(reg);
562

563 564
	intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
	intel_hdmi_set_spd_infoframe(encoder);
565
	intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
566 567
}

568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586
static bool hdmi_sink_is_deep_color(struct drm_encoder *encoder)
{
	struct drm_device *dev = encoder->dev;
	struct drm_connector *connector;

	WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));

	/*
	 * HDMI cloning is only supported on g4x which doesn't
	 * support deep color or GCP infoframes anyway so no
	 * need to worry about multiple HDMI sinks here.
	 */
	list_for_each_entry(connector, &dev->mode_config.connector_list, head)
		if (connector->encoder == encoder)
			return connector->display_info.bpc > 8;

	return false;
}

587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629
/*
 * Determine if default_phase=1 can be indicated in the GCP infoframe.
 *
 * From HDMI specification 1.4a:
 * - The first pixel of each Video Data Period shall always have a pixel packing phase of 0
 * - The first pixel following each Video Data Period shall have a pixel packing phase of 0
 * - The PP bits shall be constant for all GCPs and will be equal to the last packing phase
 * - The first pixel following every transition of HSYNC or VSYNC shall have a pixel packing
 *   phase of 0
 */
static bool gcp_default_phase_possible(int pipe_bpp,
				       const struct drm_display_mode *mode)
{
	unsigned int pixels_per_group;

	switch (pipe_bpp) {
	case 30:
		/* 4 pixels in 5 clocks */
		pixels_per_group = 4;
		break;
	case 36:
		/* 2 pixels in 3 clocks */
		pixels_per_group = 2;
		break;
	case 48:
		/* 1 pixel in 2 clocks */
		pixels_per_group = 1;
		break;
	default:
		/* phase information not relevant for 8bpc */
		return false;
	}

	return mode->crtc_hdisplay % pixels_per_group == 0 &&
		mode->crtc_htotal % pixels_per_group == 0 &&
		mode->crtc_hblank_start % pixels_per_group == 0 &&
		mode->crtc_hblank_end % pixels_per_group == 0 &&
		mode->crtc_hsync_start % pixels_per_group == 0 &&
		mode->crtc_hsync_end % pixels_per_group == 0 &&
		((mode->flags & DRM_MODE_FLAG_INTERLACE) == 0 ||
		 mode->crtc_htotal/2 % pixels_per_group == 0);
}

630 631
static bool intel_hdmi_set_gcp_infoframe(struct drm_encoder *encoder)
{
632
	struct drm_i915_private *dev_priv = to_i915(encoder->dev);
633
	struct intel_crtc *crtc = to_intel_crtc(encoder->crtc);
634 635
	i915_reg_t reg;
	u32 val = 0;
636 637 638

	if (HAS_DDI(dev_priv))
		reg = HSW_TVIDEO_DIP_GCP(crtc->config->cpu_transcoder);
639
	else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
640
		reg = VLV_TVIDEO_DIP_GCP(crtc->pipe);
641
	else if (HAS_PCH_SPLIT(dev_priv))
642 643 644 645 646 647 648 649
		reg = TVIDEO_DIP_GCP(crtc->pipe);
	else
		return false;

	/* Indicate color depth whenever the sink supports deep color */
	if (hdmi_sink_is_deep_color(encoder))
		val |= GCP_COLOR_INDICATION;

650 651 652 653 654
	/* Enable default_phase whenever the display mode is suitably aligned */
	if (gcp_default_phase_possible(crtc->config->pipe_bpp,
				       &crtc->config->base.adjusted_mode))
		val |= GCP_DEFAULT_PHASE_ENABLE;

655 656 657 658 659
	I915_WRITE(reg, val);

	return val != 0;
}

660
static void ibx_set_infoframes(struct drm_encoder *encoder,
661
			       bool enable,
662
			       const struct drm_display_mode *adjusted_mode)
663
{
664
	struct drm_i915_private *dev_priv = to_i915(encoder->dev);
665
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
666 667
	struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
	struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
668
	i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
669
	u32 val = I915_READ(reg);
670
	u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
671

672 673
	assert_hdmi_port_disabled(intel_hdmi);

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

677
	if (!enable) {
678 679
		if (!(val & VIDEO_DIP_ENABLE))
			return;
680 681 682
		val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
			 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
			 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
683
		I915_WRITE(reg, val);
684
		POSTING_READ(reg);
685 686 687
		return;
	}

688
	if (port != (val & VIDEO_DIP_PORT_MASK)) {
689 690 691
		WARN(val & VIDEO_DIP_ENABLE,
		     "DIP already enabled on port %c\n",
		     (val & VIDEO_DIP_PORT_MASK) >> 29);
692 693 694 695
		val &= ~VIDEO_DIP_PORT_MASK;
		val |= port;
	}

696
	val |= VIDEO_DIP_ENABLE;
697 698 699
	val &= ~(VIDEO_DIP_ENABLE_AVI |
		 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
		 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
700

701 702 703
	if (intel_hdmi_set_gcp_infoframe(encoder))
		val |= VIDEO_DIP_ENABLE_GCP;

704
	I915_WRITE(reg, val);
705
	POSTING_READ(reg);
706

707 708
	intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
	intel_hdmi_set_spd_infoframe(encoder);
709
	intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
710 711 712
}

static void cpt_set_infoframes(struct drm_encoder *encoder,
713
			       bool enable,
714
			       const struct drm_display_mode *adjusted_mode)
715
{
716
	struct drm_i915_private *dev_priv = to_i915(encoder->dev);
717 718
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
719
	i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
720 721
	u32 val = I915_READ(reg);

722 723
	assert_hdmi_port_disabled(intel_hdmi);

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

727
	if (!enable) {
728 729
		if (!(val & VIDEO_DIP_ENABLE))
			return;
730 731 732
		val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
			 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
			 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
733
		I915_WRITE(reg, val);
734
		POSTING_READ(reg);
735 736 737
		return;
	}

738 739
	/* Set both together, unset both together: see the spec. */
	val |= VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI;
740
	val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
741
		 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
742

743 744 745
	if (intel_hdmi_set_gcp_infoframe(encoder))
		val |= VIDEO_DIP_ENABLE_GCP;

746
	I915_WRITE(reg, val);
747
	POSTING_READ(reg);
748

749 750
	intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
	intel_hdmi_set_spd_infoframe(encoder);
751
	intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
752 753 754
}

static void vlv_set_infoframes(struct drm_encoder *encoder,
755
			       bool enable,
756
			       const struct drm_display_mode *adjusted_mode)
757
{
758
	struct drm_i915_private *dev_priv = to_i915(encoder->dev);
759
	struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
760 761
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
762
	i915_reg_t reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
763
	u32 val = I915_READ(reg);
764
	u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
765

766 767
	assert_hdmi_port_disabled(intel_hdmi);

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

771
	if (!enable) {
772 773
		if (!(val & VIDEO_DIP_ENABLE))
			return;
774 775 776
		val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
			 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
			 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
777
		I915_WRITE(reg, val);
778
		POSTING_READ(reg);
779 780 781
		return;
	}

782
	if (port != (val & VIDEO_DIP_PORT_MASK)) {
783 784 785
		WARN(val & VIDEO_DIP_ENABLE,
		     "DIP already enabled on port %c\n",
		     (val & VIDEO_DIP_PORT_MASK) >> 29);
786 787 788 789
		val &= ~VIDEO_DIP_PORT_MASK;
		val |= port;
	}

790
	val |= VIDEO_DIP_ENABLE;
791 792 793
	val &= ~(VIDEO_DIP_ENABLE_AVI |
		 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
		 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
794

795 796 797
	if (intel_hdmi_set_gcp_infoframe(encoder))
		val |= VIDEO_DIP_ENABLE_GCP;

798
	I915_WRITE(reg, val);
799
	POSTING_READ(reg);
800

801 802
	intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
	intel_hdmi_set_spd_infoframe(encoder);
803
	intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
804 805 806
}

static void hsw_set_infoframes(struct drm_encoder *encoder,
807
			       bool enable,
808
			       const struct drm_display_mode *adjusted_mode)
809
{
810
	struct drm_i915_private *dev_priv = to_i915(encoder->dev);
811 812
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
813
	i915_reg_t reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config->cpu_transcoder);
814
	u32 val = I915_READ(reg);
815

816 817
	assert_hdmi_port_disabled(intel_hdmi);

818 819 820 821
	val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_AVI_HSW |
		 VIDEO_DIP_ENABLE_GCP_HSW | VIDEO_DIP_ENABLE_VS_HSW |
		 VIDEO_DIP_ENABLE_GMP_HSW | VIDEO_DIP_ENABLE_SPD_HSW);

822
	if (!enable) {
823
		I915_WRITE(reg, val);
824
		POSTING_READ(reg);
825 826 827
		return;
	}

828 829 830
	if (intel_hdmi_set_gcp_infoframe(encoder))
		val |= VIDEO_DIP_ENABLE_GCP_HSW;

831
	I915_WRITE(reg, val);
832
	POSTING_READ(reg);
833

834 835
	intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
	intel_hdmi_set_spd_infoframe(encoder);
836
	intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
837 838
}

839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854
void intel_dp_dual_mode_set_tmds_output(struct intel_hdmi *hdmi, bool enable)
{
	struct drm_i915_private *dev_priv = to_i915(intel_hdmi_to_dev(hdmi));
	struct i2c_adapter *adapter =
		intel_gmbus_get_adapter(dev_priv, hdmi->ddc_bus);

	if (hdmi->dp_dual_mode.type < DRM_DP_DUAL_MODE_TYPE2_DVI)
		return;

	DRM_DEBUG_KMS("%s DP dual mode adaptor TMDS output\n",
		      enable ? "Enabling" : "Disabling");

	drm_dp_dual_mode_set_tmds_output(hdmi->dp_dual_mode.type,
					 adapter, enable);
}

855
static void intel_hdmi_prepare(struct intel_encoder *encoder)
856
{
857
	struct drm_device *dev = encoder->base.dev;
858
	struct drm_i915_private *dev_priv = to_i915(dev);
859 860
	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
861
	const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
862
	u32 hdmi_val;
863

864 865
	intel_dp_dual_mode_set_tmds_output(intel_hdmi, true);

866
	hdmi_val = SDVO_ENCODING_HDMI;
867 868
	if (!HAS_PCH_SPLIT(dev) && crtc->config->limited_color_range)
		hdmi_val |= HDMI_COLOR_RANGE_16_235;
869
	if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
870
		hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
871
	if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
872
		hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
873

874
	if (crtc->config->pipe_bpp > 24)
875
		hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
876
	else
877
		hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
878

879
	if (crtc->config->has_hdmi_sink)
880
		hdmi_val |= HDMI_MODE_SELECT_HDMI;
881

882
	if (HAS_PCH_CPT(dev))
883
		hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
884 885
	else if (IS_CHERRYVIEW(dev))
		hdmi_val |= SDVO_PIPE_SEL_CHV(crtc->pipe);
886
	else
887
		hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
888

889 890
	I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
	POSTING_READ(intel_hdmi->hdmi_reg);
891 892
}

893 894
static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
				    enum pipe *pipe)
895
{
896
	struct drm_device *dev = encoder->base.dev;
897
	struct drm_i915_private *dev_priv = to_i915(dev);
898
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
899
	enum intel_display_power_domain power_domain;
900
	u32 tmp;
901
	bool ret;
902

903
	power_domain = intel_display_port_power_domain(encoder);
904
	if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
905 906
		return false;

907 908
	ret = false;

909
	tmp = I915_READ(intel_hdmi->hdmi_reg);
910 911

	if (!(tmp & SDVO_ENABLE))
912
		goto out;
913 914 915

	if (HAS_PCH_CPT(dev))
		*pipe = PORT_TO_PIPE_CPT(tmp);
916 917
	else if (IS_CHERRYVIEW(dev))
		*pipe = SDVO_PORT_TO_PIPE_CHV(tmp);
918 919 920
	else
		*pipe = PORT_TO_PIPE(tmp);

921 922 923 924 925 926
	ret = true;

out:
	intel_display_power_put(dev_priv, power_domain);

	return ret;
927 928
}

929
static void intel_hdmi_get_config(struct intel_encoder *encoder,
930
				  struct intel_crtc_state *pipe_config)
931 932
{
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
933
	struct drm_device *dev = encoder->base.dev;
934
	struct drm_i915_private *dev_priv = to_i915(dev);
935
	u32 tmp, flags = 0;
936
	int dotclock;
937 938 939 940 941 942 943 944 945 946 947 948 949

	tmp = I915_READ(intel_hdmi->hdmi_reg);

	if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
		flags |= DRM_MODE_FLAG_PHSYNC;
	else
		flags |= DRM_MODE_FLAG_NHSYNC;

	if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
		flags |= DRM_MODE_FLAG_PVSYNC;
	else
		flags |= DRM_MODE_FLAG_NVSYNC;

950 951 952
	if (tmp & HDMI_MODE_SELECT_HDMI)
		pipe_config->has_hdmi_sink = true;

953
	if (intel_hdmi->infoframe_enabled(&encoder->base, pipe_config))
954 955
		pipe_config->has_infoframe = true;

956
	if (tmp & SDVO_AUDIO_ENABLE)
957 958
		pipe_config->has_audio = true;

959 960 961 962
	if (!HAS_PCH_SPLIT(dev) &&
	    tmp & HDMI_COLOR_RANGE_16_235)
		pipe_config->limited_color_range = true;

963
	pipe_config->base.adjusted_mode.flags |= flags;
964 965 966 967 968 969

	if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
		dotclock = pipe_config->port_clock * 2 / 3;
	else
		dotclock = pipe_config->port_clock;

970 971 972
	if (pipe_config->pixel_multiplier)
		dotclock /= pipe_config->pixel_multiplier;

973
	pipe_config->base.adjusted_mode.crtc_clock = dotclock;
974 975

	pipe_config->lane_count = 4;
976 977
}

978 979 980 981 982 983 984 985 986 987
static void intel_enable_hdmi_audio(struct intel_encoder *encoder)
{
	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);

	WARN_ON(!crtc->config->has_hdmi_sink);
	DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
			 pipe_name(crtc->pipe));
	intel_audio_codec_enable(encoder);
}

988
static void g4x_enable_hdmi(struct intel_encoder *encoder)
989
{
990
	struct drm_device *dev = encoder->base.dev;
991
	struct drm_i915_private *dev_priv = to_i915(dev);
992
	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
993
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
994 995
	u32 temp;

996
	temp = I915_READ(intel_hdmi->hdmi_reg);
997

998 999 1000
	temp |= SDVO_ENABLE;
	if (crtc->config->has_audio)
		temp |= SDVO_AUDIO_ENABLE;
1001

1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
	I915_WRITE(intel_hdmi->hdmi_reg, temp);
	POSTING_READ(intel_hdmi->hdmi_reg);

	if (crtc->config->has_audio)
		intel_enable_hdmi_audio(encoder);
}

static void ibx_enable_hdmi(struct intel_encoder *encoder)
{
	struct drm_device *dev = encoder->base.dev;
1012
	struct drm_i915_private *dev_priv = to_i915(dev);
1013 1014 1015 1016 1017
	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
	u32 temp;

	temp = I915_READ(intel_hdmi->hdmi_reg);
1018

1019 1020 1021
	temp |= SDVO_ENABLE;
	if (crtc->config->has_audio)
		temp |= SDVO_AUDIO_ENABLE;
1022

1023 1024 1025 1026 1027 1028
	/*
	 * HW workaround, need to write this twice for issue
	 * that may result in first write getting masked.
	 */
	I915_WRITE(intel_hdmi->hdmi_reg, temp);
	POSTING_READ(intel_hdmi->hdmi_reg);
1029 1030
	I915_WRITE(intel_hdmi->hdmi_reg, temp);
	POSTING_READ(intel_hdmi->hdmi_reg);
1031

1032 1033 1034 1035 1036 1037
	/*
	 * HW workaround, need to toggle enable bit off and on
	 * for 12bpc with pixel repeat.
	 *
	 * FIXME: BSpec says this should be done at the end of
	 * of the modeset sequence, so not sure if this isn't too soon.
1038
	 */
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049
	if (crtc->config->pipe_bpp > 24 &&
	    crtc->config->pixel_multiplier > 1) {
		I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
		POSTING_READ(intel_hdmi->hdmi_reg);

		/*
		 * HW workaround, need to write this twice for issue
		 * that may result in first write getting masked.
		 */
		I915_WRITE(intel_hdmi->hdmi_reg, temp);
		POSTING_READ(intel_hdmi->hdmi_reg);
1050 1051
		I915_WRITE(intel_hdmi->hdmi_reg, temp);
		POSTING_READ(intel_hdmi->hdmi_reg);
1052
	}
1053

1054
	if (crtc->config->has_audio)
1055 1056 1057 1058 1059 1060
		intel_enable_hdmi_audio(encoder);
}

static void cpt_enable_hdmi(struct intel_encoder *encoder)
{
	struct drm_device *dev = encoder->base.dev;
1061
	struct drm_i915_private *dev_priv = to_i915(dev);
1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089
	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
	enum pipe pipe = crtc->pipe;
	u32 temp;

	temp = I915_READ(intel_hdmi->hdmi_reg);

	temp |= SDVO_ENABLE;
	if (crtc->config->has_audio)
		temp |= SDVO_AUDIO_ENABLE;

	/*
	 * WaEnableHDMI8bpcBefore12bpc:snb,ivb
	 *
	 * The procedure for 12bpc is as follows:
	 * 1. disable HDMI clock gating
	 * 2. enable HDMI with 8bpc
	 * 3. enable HDMI with 12bpc
	 * 4. enable HDMI clock gating
	 */

	if (crtc->config->pipe_bpp > 24) {
		I915_WRITE(TRANS_CHICKEN1(pipe),
			   I915_READ(TRANS_CHICKEN1(pipe)) |
			   TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE);

		temp &= ~SDVO_COLOR_FORMAT_MASK;
		temp |= SDVO_COLOR_FORMAT_8bpc;
1090
	}
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108

	I915_WRITE(intel_hdmi->hdmi_reg, temp);
	POSTING_READ(intel_hdmi->hdmi_reg);

	if (crtc->config->pipe_bpp > 24) {
		temp &= ~SDVO_COLOR_FORMAT_MASK;
		temp |= HDMI_COLOR_FORMAT_12bpc;

		I915_WRITE(intel_hdmi->hdmi_reg, temp);
		POSTING_READ(intel_hdmi->hdmi_reg);

		I915_WRITE(TRANS_CHICKEN1(pipe),
			   I915_READ(TRANS_CHICKEN1(pipe)) &
			   ~TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE);
	}

	if (crtc->config->has_audio)
		intel_enable_hdmi_audio(encoder);
1109
}
1110

1111 1112
static void vlv_enable_hdmi(struct intel_encoder *encoder)
{
1113 1114 1115 1116 1117
}

static void intel_disable_hdmi(struct intel_encoder *encoder)
{
	struct drm_device *dev = encoder->base.dev;
1118
	struct drm_i915_private *dev_priv = to_i915(dev);
1119
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1120
	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1121 1122
	u32 temp;

1123
	temp = I915_READ(intel_hdmi->hdmi_reg);
1124

1125
	temp &= ~(SDVO_ENABLE | SDVO_AUDIO_ENABLE);
1126 1127
	I915_WRITE(intel_hdmi->hdmi_reg, temp);
	POSTING_READ(intel_hdmi->hdmi_reg);
1128 1129 1130 1131 1132 1133 1134

	/*
	 * HW workaround for IBX, we need to move the port
	 * to transcoder A after disabling it to allow the
	 * matching DP port to be enabled on transcoder A.
	 */
	if (HAS_PCH_IBX(dev) && crtc->pipe == PIPE_B) {
1135 1136 1137 1138 1139 1140 1141
		/*
		 * We get CPU/PCH FIFO underruns on the other pipe when
		 * doing the workaround. Sweep them under the rug.
		 */
		intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, false);
		intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, false);

1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155
		temp &= ~SDVO_PIPE_B_SELECT;
		temp |= SDVO_ENABLE;
		/*
		 * HW workaround, need to write this twice for issue
		 * that may result in first write getting masked.
		 */
		I915_WRITE(intel_hdmi->hdmi_reg, temp);
		POSTING_READ(intel_hdmi->hdmi_reg);
		I915_WRITE(intel_hdmi->hdmi_reg, temp);
		POSTING_READ(intel_hdmi->hdmi_reg);

		temp &= ~SDVO_ENABLE;
		I915_WRITE(intel_hdmi->hdmi_reg, temp);
		POSTING_READ(intel_hdmi->hdmi_reg);
1156

1157
		intel_wait_for_vblank_if_active(&dev_priv->drm, PIPE_A);
1158 1159
		intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, true);
		intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, true);
1160
	}
1161

1162
	intel_hdmi->set_infoframes(&encoder->base, false, NULL);
1163 1164

	intel_dp_dual_mode_set_tmds_output(intel_hdmi, false);
1165 1166
}

1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
static void g4x_disable_hdmi(struct intel_encoder *encoder)
{
	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);

	if (crtc->config->has_audio)
		intel_audio_codec_disable(encoder);

	intel_disable_hdmi(encoder);
}

static void pch_disable_hdmi(struct intel_encoder *encoder)
{
	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);

	if (crtc->config->has_audio)
		intel_audio_codec_disable(encoder);
}

static void pch_post_disable_hdmi(struct intel_encoder *encoder)
{
	intel_disable_hdmi(encoder);
}

1190
static int intel_hdmi_source_max_tmds_clock(struct drm_i915_private *dev_priv)
1191
{
1192
	if (IS_G4X(dev_priv))
1193
		return 165000;
1194
	else if (IS_HASWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 8)
1195 1196 1197 1198 1199
		return 300000;
	else
		return 225000;
}

1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
static int hdmi_port_clock_limit(struct intel_hdmi *hdmi,
				 bool respect_downstream_limits)
{
	struct drm_device *dev = intel_hdmi_to_dev(hdmi);
	int max_tmds_clock = intel_hdmi_source_max_tmds_clock(to_i915(dev));

	if (respect_downstream_limits) {
		if (hdmi->dp_dual_mode.max_tmds_clock)
			max_tmds_clock = min(max_tmds_clock,
					     hdmi->dp_dual_mode.max_tmds_clock);
		if (!hdmi->has_hdmi_sink)
			max_tmds_clock = min(max_tmds_clock, 165000);
	}

	return max_tmds_clock;
}

1217 1218
static enum drm_mode_status
hdmi_port_clock_valid(struct intel_hdmi *hdmi,
1219
		      int clock, bool respect_downstream_limits)
1220 1221 1222 1223 1224
{
	struct drm_device *dev = intel_hdmi_to_dev(hdmi);

	if (clock < 25000)
		return MODE_CLOCK_LOW;
1225
	if (clock > hdmi_port_clock_limit(hdmi, respect_downstream_limits))
1226 1227
		return MODE_CLOCK_HIGH;

1228 1229 1230 1231 1232 1233
	/* BXT DPLL can't generate 223-240 MHz */
	if (IS_BROXTON(dev) && clock > 223333 && clock < 240000)
		return MODE_CLOCK_RANGE;

	/* CHV DPLL can't generate 216-240 MHz */
	if (IS_CHERRYVIEW(dev) && clock > 216000 && clock < 240000)
1234 1235 1236 1237 1238
		return MODE_CLOCK_RANGE;

	return MODE_OK;
}

1239 1240 1241
static enum drm_mode_status
intel_hdmi_mode_valid(struct drm_connector *connector,
		      struct drm_display_mode *mode)
1242
{
1243 1244 1245 1246
	struct intel_hdmi *hdmi = intel_attached_hdmi(connector);
	struct drm_device *dev = intel_hdmi_to_dev(hdmi);
	enum drm_mode_status status;
	int clock;
M
Mika Kahola 已提交
1247
	int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
1248 1249 1250

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

1252
	clock = mode->clock;
M
Mika Kahola 已提交
1253 1254 1255 1256 1257 1258 1259

	if ((mode->flags & DRM_MODE_FLAG_3D_MASK) == DRM_MODE_FLAG_3D_FRAME_PACKING)
		clock *= 2;

	if (clock > max_dotclk)
		return MODE_CLOCK_HIGH;

1260 1261 1262
	if (mode->flags & DRM_MODE_FLAG_DBLCLK)
		clock *= 2;

1263 1264
	/* check if we can do 8bpc */
	status = hdmi_port_clock_valid(hdmi, clock, true);
1265

1266 1267 1268
	/* if we can't do 8bpc we may still be able to do 12bpc */
	if (!HAS_GMCH_DISPLAY(dev) && status != MODE_OK)
		status = hdmi_port_clock_valid(hdmi, clock * 3 / 2, true);
1269

1270
	return status;
1271 1272
}

1273
static bool hdmi_12bpc_possible(struct intel_crtc_state *crtc_state)
1274
{
1275
	struct drm_device *dev = crtc_state->base.crtc->dev;
1276

1277
	if (HAS_GMCH_DISPLAY(dev))
1278 1279 1280 1281 1282 1283
		return false;

	/*
	 * HDMI 12bpc affects the clocks, so it's only possible
	 * when not cloning with other encoder types.
	 */
1284
	return crtc_state->output_types == 1 << INTEL_OUTPUT_HDMI;
1285 1286
}

1287
bool intel_hdmi_compute_config(struct intel_encoder *encoder,
1288
			       struct intel_crtc_state *pipe_config)
1289
{
1290 1291
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
	struct drm_device *dev = encoder->base.dev;
1292
	struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
1293 1294
	int clock_8bpc = pipe_config->base.adjusted_mode.crtc_clock;
	int clock_12bpc = clock_8bpc * 3 / 2;
1295
	int desired_bpp;
1296

1297 1298
	pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink;

1299 1300 1301
	if (pipe_config->has_hdmi_sink)
		pipe_config->has_infoframe = true;

1302 1303
	if (intel_hdmi->color_range_auto) {
		/* See CEA-861-E - 5.1 Default Encoding Parameters */
1304 1305 1306 1307 1308 1309
		pipe_config->limited_color_range =
			pipe_config->has_hdmi_sink &&
			drm_match_cea_mode(adjusted_mode) > 1;
	} else {
		pipe_config->limited_color_range =
			intel_hdmi->limited_color_range;
1310 1311
	}

1312 1313
	if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK) {
		pipe_config->pixel_multiplier = 2;
1314
		clock_8bpc *= 2;
1315
		clock_12bpc *= 2;
1316 1317
	}

1318 1319 1320
	if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
		pipe_config->has_pch_encoder = true;

1321 1322 1323
	if (pipe_config->has_hdmi_sink && intel_hdmi->has_audio)
		pipe_config->has_audio = true;

1324 1325 1326
	/*
	 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
	 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
1327 1328
	 * outputs. We also need to check that the higher clock still fits
	 * within limits.
1329
	 */
1330
	if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink &&
1331
	    hdmi_port_clock_valid(intel_hdmi, clock_12bpc, true) == MODE_OK &&
1332
	    hdmi_12bpc_possible(pipe_config)) {
1333 1334
		DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
		desired_bpp = 12*3;
1335 1336

		/* Need to adjust the port link by 1.5x for 12bpc. */
1337
		pipe_config->port_clock = clock_12bpc;
1338
	} else {
1339 1340
		DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
		desired_bpp = 8*3;
1341 1342

		pipe_config->port_clock = clock_8bpc;
1343 1344 1345 1346 1347
	}

	if (!pipe_config->bw_constrained) {
		DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
		pipe_config->pipe_bpp = desired_bpp;
1348 1349
	}

1350 1351 1352
	if (hdmi_port_clock_valid(intel_hdmi, pipe_config->port_clock,
				  false) != MODE_OK) {
		DRM_DEBUG_KMS("unsupported HDMI clock, rejecting mode\n");
1353 1354 1355
		return false;
	}

1356 1357 1358
	/* Set user selected PAR to incoming mode's member */
	adjusted_mode->picture_aspect_ratio = intel_hdmi->aspect_ratio;

1359 1360
	pipe_config->lane_count = 4;

1361 1362 1363
	return true;
}

1364 1365
static void
intel_hdmi_unset_edid(struct drm_connector *connector)
1366
{
1367
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1368

1369 1370 1371 1372
	intel_hdmi->has_hdmi_sink = false;
	intel_hdmi->has_audio = false;
	intel_hdmi->rgb_quant_range_selectable = false;

1373 1374 1375
	intel_hdmi->dp_dual_mode.type = DRM_DP_DUAL_MODE_NONE;
	intel_hdmi->dp_dual_mode.max_tmds_clock = 0;

1376 1377 1378 1379
	kfree(to_intel_connector(connector)->detect_edid);
	to_intel_connector(connector)->detect_edid = NULL;
}

1380
static void
1381
intel_hdmi_dp_dual_mode_detect(struct drm_connector *connector, bool has_edid)
1382 1383 1384
{
	struct drm_i915_private *dev_priv = to_i915(connector->dev);
	struct intel_hdmi *hdmi = intel_attached_hdmi(connector);
1385
	enum port port = hdmi_to_dig_port(hdmi)->port;
1386 1387 1388 1389
	struct i2c_adapter *adapter =
		intel_gmbus_get_adapter(dev_priv, hdmi->ddc_bus);
	enum drm_dp_dual_mode_type type = drm_dp_dual_mode_detect(adapter);

1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412
	/*
	 * Type 1 DVI adaptors are not required to implement any
	 * registers, so we can't always detect their presence.
	 * Ideally we should be able to check the state of the
	 * CONFIG1 pin, but no such luck on our hardware.
	 *
	 * The only method left to us is to check the VBT to see
	 * if the port is a dual mode capable DP port. But let's
	 * only do that when we sucesfully read the EDID, to avoid
	 * confusing log messages about DP dual mode adaptors when
	 * there's nothing connected to the port.
	 */
	if (type == DRM_DP_DUAL_MODE_UNKNOWN) {
		if (has_edid &&
		    intel_bios_is_port_dp_dual_mode(dev_priv, port)) {
			DRM_DEBUG_KMS("Assuming DP dual mode adaptor presence based on VBT\n");
			type = DRM_DP_DUAL_MODE_TYPE1_DVI;
		} else {
			type = DRM_DP_DUAL_MODE_NONE;
		}
	}

	if (type == DRM_DP_DUAL_MODE_NONE)
1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
		return;

	hdmi->dp_dual_mode.type = type;
	hdmi->dp_dual_mode.max_tmds_clock =
		drm_dp_dual_mode_max_tmds_clock(type, adapter);

	DRM_DEBUG_KMS("DP dual mode adaptor (%s) detected (max TMDS clock: %d kHz)\n",
		      drm_dp_get_dual_mode_type_name(type),
		      hdmi->dp_dual_mode.max_tmds_clock);
}

1424
static bool
1425
intel_hdmi_set_edid(struct drm_connector *connector, bool force)
1426 1427 1428
{
	struct drm_i915_private *dev_priv = to_i915(connector->dev);
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1429
	struct edid *edid = NULL;
1430
	bool connected = false;
1431

1432 1433
	if (force) {
		intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);
1434

1435 1436 1437
		edid = drm_get_edid(connector,
				    intel_gmbus_get_adapter(dev_priv,
				    intel_hdmi->ddc_bus));
1438

1439
		intel_hdmi_dp_dual_mode_detect(connector, edid != NULL);
1440

1441 1442
		intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS);
	}
1443

1444 1445 1446 1447 1448 1449
	to_intel_connector(connector)->detect_edid = edid;
	if (edid && edid->input & DRM_EDID_INPUT_DIGITAL) {
		intel_hdmi->rgb_quant_range_selectable =
			drm_rgb_quant_range_selectable(edid);

		intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
1450 1451
		if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
			intel_hdmi->has_audio =
1452 1453 1454 1455 1456 1457 1458
				intel_hdmi->force_audio == HDMI_AUDIO_ON;

		if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
			intel_hdmi->has_hdmi_sink =
				drm_detect_hdmi_monitor(edid);

		connected = true;
1459 1460
	}

1461 1462 1463
	return connected;
}

1464 1465
static enum drm_connector_status
intel_hdmi_detect(struct drm_connector *connector, bool force)
1466
{
1467 1468 1469
	enum drm_connector_status status;
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
	struct drm_i915_private *dev_priv = to_i915(connector->dev);
1470
	bool live_status = false;
1471
	unsigned int try;
1472

1473 1474 1475
	DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
		      connector->base.id, connector->name);

1476 1477
	intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);

1478
	for (try = 0; !live_status && try < 9; try++) {
1479 1480
		if (try)
			msleep(10);
1481 1482 1483 1484
		live_status = intel_digital_port_connected(dev_priv,
				hdmi_to_dig_port(intel_hdmi));
	}

1485 1486 1487 1488 1489 1490 1491 1492 1493 1494
	if (!live_status) {
		DRM_DEBUG_KMS("HDMI live status down\n");
		/*
		 * Live status register is not reliable on all intel platforms.
		 * So consider live_status only for certain platforms, for
		 * others, read EDID to determine presence of sink.
		 */
		if (INTEL_INFO(dev_priv)->gen < 7 || IS_IVYBRIDGE(dev_priv))
			live_status = true;
	}
1495

1496
	intel_hdmi_unset_edid(connector);
1497

1498
	if (intel_hdmi_set_edid(connector, live_status)) {
1499 1500 1501 1502
		struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);

		hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
		status = connector_status_connected;
1503
	} else
1504
		status = connector_status_disconnected;
1505

1506 1507
	intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS);

1508
	return status;
1509 1510
}

1511 1512
static void
intel_hdmi_force(struct drm_connector *connector)
1513
{
1514
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1515

1516 1517
	DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
		      connector->base.id, connector->name);
1518

1519
	intel_hdmi_unset_edid(connector);
1520

1521 1522
	if (connector->status != connector_status_connected)
		return;
1523

1524
	intel_hdmi_set_edid(connector, true);
1525 1526
	hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
}
1527

1528 1529 1530 1531 1532 1533 1534
static int intel_hdmi_get_modes(struct drm_connector *connector)
{
	struct edid *edid;

	edid = to_intel_connector(connector)->detect_edid;
	if (edid == NULL)
		return 0;
1535

1536
	return intel_connector_update_modes(connector, edid);
1537 1538
}

1539 1540 1541 1542
static bool
intel_hdmi_detect_audio(struct drm_connector *connector)
{
	bool has_audio = false;
1543
	struct edid *edid;
1544

1545 1546 1547
	edid = to_intel_connector(connector)->detect_edid;
	if (edid && edid->input & DRM_EDID_INPUT_DIGITAL)
		has_audio = drm_detect_monitor_audio(edid);
1548

1549 1550 1551
	return has_audio;
}

1552 1553
static int
intel_hdmi_set_property(struct drm_connector *connector,
1554 1555
			struct drm_property *property,
			uint64_t val)
1556 1557
{
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1558 1559
	struct intel_digital_port *intel_dig_port =
		hdmi_to_dig_port(intel_hdmi);
1560
	struct drm_i915_private *dev_priv = to_i915(connector->dev);
1561 1562
	int ret;

1563
	ret = drm_object_property_set_value(&connector->base, property, val);
1564 1565 1566
	if (ret)
		return ret;

1567
	if (property == dev_priv->force_audio_property) {
1568
		enum hdmi_force_audio i = val;
1569 1570 1571
		bool has_audio;

		if (i == intel_hdmi->force_audio)
1572 1573
			return 0;

1574
		intel_hdmi->force_audio = i;
1575

1576
		if (i == HDMI_AUDIO_AUTO)
1577 1578
			has_audio = intel_hdmi_detect_audio(connector);
		else
1579
			has_audio = (i == HDMI_AUDIO_ON);
1580

1581 1582
		if (i == HDMI_AUDIO_OFF_DVI)
			intel_hdmi->has_hdmi_sink = 0;
1583

1584
		intel_hdmi->has_audio = has_audio;
1585 1586 1587
		goto done;
	}

1588
	if (property == dev_priv->broadcast_rgb_property) {
1589
		bool old_auto = intel_hdmi->color_range_auto;
1590
		bool old_range = intel_hdmi->limited_color_range;
1591

1592 1593 1594 1595 1596 1597
		switch (val) {
		case INTEL_BROADCAST_RGB_AUTO:
			intel_hdmi->color_range_auto = true;
			break;
		case INTEL_BROADCAST_RGB_FULL:
			intel_hdmi->color_range_auto = false;
1598
			intel_hdmi->limited_color_range = false;
1599 1600 1601
			break;
		case INTEL_BROADCAST_RGB_LIMITED:
			intel_hdmi->color_range_auto = false;
1602
			intel_hdmi->limited_color_range = true;
1603 1604 1605 1606
			break;
		default:
			return -EINVAL;
		}
1607 1608

		if (old_auto == intel_hdmi->color_range_auto &&
1609
		    old_range == intel_hdmi->limited_color_range)
1610 1611
			return 0;

1612 1613 1614
		goto done;
	}

1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631
	if (property == connector->dev->mode_config.aspect_ratio_property) {
		switch (val) {
		case DRM_MODE_PICTURE_ASPECT_NONE:
			intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
			break;
		case DRM_MODE_PICTURE_ASPECT_4_3:
			intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_4_3;
			break;
		case DRM_MODE_PICTURE_ASPECT_16_9:
			intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_16_9;
			break;
		default:
			return -EINVAL;
		}
		goto done;
	}

1632 1633 1634
	return -EINVAL;

done:
1635 1636
	if (intel_dig_port->base.base.crtc)
		intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
1637 1638 1639 1640

	return 0;
}

1641 1642 1643 1644
static void intel_hdmi_pre_enable(struct intel_encoder *encoder)
{
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
1645
	const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
1646

1647 1648
	intel_hdmi_prepare(encoder);

1649
	intel_hdmi->set_infoframes(&encoder->base,
1650
				   intel_crtc->config->has_hdmi_sink,
1651
				   adjusted_mode);
1652 1653
}

1654
static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
1655 1656
{
	struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1657
	struct intel_hdmi *intel_hdmi = &dport->hdmi;
1658
	struct drm_device *dev = encoder->base.dev;
1659
	struct drm_i915_private *dev_priv = to_i915(dev);
1660 1661
	struct intel_crtc *intel_crtc =
		to_intel_crtc(encoder->base.crtc);
1662
	const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
1663 1664

	vlv_phy_pre_encoder_enable(encoder);
1665

1666 1667 1668 1669
	/* HDMI 1.0V-2dB */
	vlv_set_phy_signal_level(encoder, 0x2b245f5f, 0x00002000, 0x5578b83a,
				 0x2b247878);

1670
	intel_hdmi->set_infoframes(&encoder->base,
1671
				   intel_crtc->config->has_hdmi_sink,
1672
				   adjusted_mode);
1673

1674
	g4x_enable_hdmi(encoder);
1675

1676
	vlv_wait_port_ready(dev_priv, dport, 0x0);
1677 1678
}

1679
static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
1680
{
1681 1682
	intel_hdmi_prepare(encoder);

1683
	vlv_phy_pre_pll_enable(encoder);
1684 1685
}

1686 1687
static void chv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
{
1688 1689
	intel_hdmi_prepare(encoder);

1690
	chv_phy_pre_pll_enable(encoder);
1691 1692
}

1693 1694
static void chv_hdmi_post_pll_disable(struct intel_encoder *encoder)
{
1695
	chv_phy_post_pll_disable(encoder);
1696 1697
}

1698
static void vlv_hdmi_post_disable(struct intel_encoder *encoder)
1699 1700
{
	/* Reset lanes to avoid HDMI flicker (VLV w/a) */
1701
	vlv_phy_reset_lanes(encoder);
1702 1703
}

1704 1705 1706
static void chv_hdmi_post_disable(struct intel_encoder *encoder)
{
	struct drm_device *dev = encoder->base.dev;
1707
	struct drm_i915_private *dev_priv = to_i915(dev);
1708

V
Ville Syrjälä 已提交
1709
	mutex_lock(&dev_priv->sb_lock);
1710

1711 1712
	/* Assert data lane reset */
	chv_data_lane_soft_reset(encoder, true);
1713

V
Ville Syrjälä 已提交
1714
	mutex_unlock(&dev_priv->sb_lock);
1715 1716
}

1717 1718 1719
static void chv_hdmi_pre_enable(struct intel_encoder *encoder)
{
	struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1720
	struct intel_hdmi *intel_hdmi = &dport->hdmi;
1721
	struct drm_device *dev = encoder->base.dev;
1722
	struct drm_i915_private *dev_priv = to_i915(dev);
1723 1724
	struct intel_crtc *intel_crtc =
		to_intel_crtc(encoder->base.crtc);
1725
	const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
1726

1727
	chv_phy_pre_encoder_enable(encoder);
1728

1729 1730
	/* FIXME: Program the support xxx V-dB */
	/* Use 800mV-0dB */
1731
	chv_set_phy_signal_level(encoder, 128, 102, false);
1732

1733
	intel_hdmi->set_infoframes(&encoder->base,
1734
				   intel_crtc->config->has_hdmi_sink,
1735 1736
				   adjusted_mode);

1737
	g4x_enable_hdmi(encoder);
1738

1739
	vlv_wait_port_ready(dev_priv, dport, 0x0);
1740 1741

	/* Second common lane will stay alive on its own now */
1742
	chv_phy_release_cl2_override(encoder);
1743 1744
}

1745 1746
static void intel_hdmi_destroy(struct drm_connector *connector)
{
1747
	kfree(to_intel_connector(connector)->detect_edid);
1748
	drm_connector_cleanup(connector);
1749
	kfree(connector);
1750 1751 1752
}

static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
1753
	.dpms = drm_atomic_helper_connector_dpms,
1754
	.detect = intel_hdmi_detect,
1755
	.force = intel_hdmi_force,
1756
	.fill_modes = drm_helper_probe_single_connector_modes,
1757
	.set_property = intel_hdmi_set_property,
1758
	.atomic_get_property = intel_connector_atomic_get_property,
1759
	.late_register = intel_connector_register,
1760
	.early_unregister = intel_connector_unregister,
1761
	.destroy = intel_hdmi_destroy,
1762
	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
1763
	.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
1764 1765 1766 1767 1768 1769 1770 1771
};

static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
	.get_modes = intel_hdmi_get_modes,
	.mode_valid = intel_hdmi_mode_valid,
};

static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
C
Chris Wilson 已提交
1772
	.destroy = intel_encoder_destroy,
1773 1774
};

1775 1776 1777
static void
intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
{
1778
	intel_attach_force_audio_property(connector);
1779
	intel_attach_broadcast_rgb_property(connector);
1780
	intel_hdmi->color_range_auto = true;
1781 1782
	intel_attach_aspect_ratio_property(connector);
	intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
1783 1784
}

P
Paulo Zanoni 已提交
1785 1786
void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
			       struct intel_connector *intel_connector)
1787
{
1788 1789 1790 1791
	struct drm_connector *connector = &intel_connector->base;
	struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
	struct intel_encoder *intel_encoder = &intel_dig_port->base;
	struct drm_device *dev = intel_encoder->base.dev;
1792
	struct drm_i915_private *dev_priv = to_i915(dev);
1793
	enum port port = intel_dig_port->port;
X
Xiong Zhang 已提交
1794
	uint8_t alternate_ddc_pin;
1795

1796 1797 1798
	DRM_DEBUG_KMS("Adding HDMI connector on port %c\n",
		      port_name(port));

1799 1800 1801 1802 1803
	if (WARN(intel_dig_port->max_lanes < 4,
		 "Not enough lanes (%d) for HDMI on port %c\n",
		 intel_dig_port->max_lanes, port_name(port)))
		return;

1804
	drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
1805
			   DRM_MODE_CONNECTOR_HDMIA);
1806 1807
	drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);

1808
	connector->interlace_allowed = 1;
1809
	connector->doublescan_allowed = 0;
1810
	connector->stereo_allowed = 1;
1811

1812 1813
	switch (port) {
	case PORT_B:
J
Jani Nikula 已提交
1814 1815 1816 1817
		if (IS_BROXTON(dev_priv))
			intel_hdmi->ddc_bus = GMBUS_PIN_1_BXT;
		else
			intel_hdmi->ddc_bus = GMBUS_PIN_DPB;
1818 1819 1820 1821
		/*
		 * On BXT A0/A1, sw needs to activate DDIA HPD logic and
		 * interrupts to check the external panel connection.
		 */
1822
		if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1))
1823 1824 1825
			intel_encoder->hpd_pin = HPD_PORT_A;
		else
			intel_encoder->hpd_pin = HPD_PORT_B;
1826 1827
		break;
	case PORT_C:
J
Jani Nikula 已提交
1828 1829 1830 1831
		if (IS_BROXTON(dev_priv))
			intel_hdmi->ddc_bus = GMBUS_PIN_2_BXT;
		else
			intel_hdmi->ddc_bus = GMBUS_PIN_DPC;
1832
		intel_encoder->hpd_pin = HPD_PORT_C;
1833 1834
		break;
	case PORT_D:
J
Jani Nikula 已提交
1835 1836 1837
		if (WARN_ON(IS_BROXTON(dev_priv)))
			intel_hdmi->ddc_bus = GMBUS_PIN_DISABLED;
		else if (IS_CHERRYVIEW(dev_priv))
1838
			intel_hdmi->ddc_bus = GMBUS_PIN_DPD_CHV;
1839
		else
1840
			intel_hdmi->ddc_bus = GMBUS_PIN_DPD;
1841
		intel_encoder->hpd_pin = HPD_PORT_D;
1842
		break;
X
Xiong Zhang 已提交
1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862
	case PORT_E:
		/* On SKL PORT E doesn't have seperate GMBUS pin
		 *  We rely on VBT to set a proper alternate GMBUS pin. */
		alternate_ddc_pin =
			dev_priv->vbt.ddi_port_info[PORT_E].alternate_ddc_pin;
		switch (alternate_ddc_pin) {
		case DDC_PIN_B:
			intel_hdmi->ddc_bus = GMBUS_PIN_DPB;
			break;
		case DDC_PIN_C:
			intel_hdmi->ddc_bus = GMBUS_PIN_DPC;
			break;
		case DDC_PIN_D:
			intel_hdmi->ddc_bus = GMBUS_PIN_DPD;
			break;
		default:
			MISSING_CASE(alternate_ddc_pin);
		}
		intel_encoder->hpd_pin = HPD_PORT_E;
		break;
1863
	case PORT_A:
1864
		intel_encoder->hpd_pin = HPD_PORT_A;
1865 1866
		/* Internal port only for eDP. */
	default:
1867
		BUG();
1868
	}
1869

1870
	if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
1871
		intel_hdmi->write_infoframe = vlv_write_infoframe;
1872
		intel_hdmi->set_infoframes = vlv_set_infoframes;
1873
		intel_hdmi->infoframe_enabled = vlv_infoframe_enabled;
1874
	} else if (IS_G4X(dev)) {
1875 1876
		intel_hdmi->write_infoframe = g4x_write_infoframe;
		intel_hdmi->set_infoframes = g4x_set_infoframes;
1877
		intel_hdmi->infoframe_enabled = g4x_infoframe_enabled;
1878
	} else if (HAS_DDI(dev)) {
1879
		intel_hdmi->write_infoframe = hsw_write_infoframe;
1880
		intel_hdmi->set_infoframes = hsw_set_infoframes;
1881
		intel_hdmi->infoframe_enabled = hsw_infoframe_enabled;
1882 1883
	} else if (HAS_PCH_IBX(dev)) {
		intel_hdmi->write_infoframe = ibx_write_infoframe;
1884
		intel_hdmi->set_infoframes = ibx_set_infoframes;
1885
		intel_hdmi->infoframe_enabled = ibx_infoframe_enabled;
1886 1887
	} else {
		intel_hdmi->write_infoframe = cpt_write_infoframe;
1888
		intel_hdmi->set_infoframes = cpt_set_infoframes;
1889
		intel_hdmi->infoframe_enabled = cpt_infoframe_enabled;
1890
	}
1891

P
Paulo Zanoni 已提交
1892
	if (HAS_DDI(dev))
1893 1894 1895
		intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
	else
		intel_connector->get_hw_state = intel_connector_get_hw_state;
1896 1897 1898 1899

	intel_hdmi_add_properties(intel_hdmi, connector);

	intel_connector_attach_encoder(intel_connector, intel_encoder);
1900
	intel_hdmi->attached_connector = intel_connector;
1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911

	/* 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);
	}
}

1912 1913
void intel_hdmi_init(struct drm_device *dev,
		     i915_reg_t hdmi_reg, enum port port)
1914 1915 1916 1917 1918
{
	struct intel_digital_port *intel_dig_port;
	struct intel_encoder *intel_encoder;
	struct intel_connector *intel_connector;

1919
	intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
1920 1921 1922
	if (!intel_dig_port)
		return;

1923
	intel_connector = intel_connector_alloc();
1924 1925 1926 1927 1928 1929 1930 1931
	if (!intel_connector) {
		kfree(intel_dig_port);
		return;
	}

	intel_encoder = &intel_dig_port->base;

	drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
1932
			 DRM_MODE_ENCODER_TMDS, "HDMI %c", port_name(port));
P
Paulo Zanoni 已提交
1933

1934
	intel_encoder->compute_config = intel_hdmi_compute_config;
1935 1936 1937 1938 1939 1940
	if (HAS_PCH_SPLIT(dev)) {
		intel_encoder->disable = pch_disable_hdmi;
		intel_encoder->post_disable = pch_post_disable_hdmi;
	} else {
		intel_encoder->disable = g4x_disable_hdmi;
	}
P
Paulo Zanoni 已提交
1941
	intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
1942
	intel_encoder->get_config = intel_hdmi_get_config;
1943
	if (IS_CHERRYVIEW(dev)) {
1944
		intel_encoder->pre_pll_enable = chv_hdmi_pre_pll_enable;
1945 1946
		intel_encoder->pre_enable = chv_hdmi_pre_enable;
		intel_encoder->enable = vlv_enable_hdmi;
1947
		intel_encoder->post_disable = chv_hdmi_post_disable;
1948
		intel_encoder->post_pll_disable = chv_hdmi_post_pll_disable;
1949
	} else if (IS_VALLEYVIEW(dev)) {
1950 1951
		intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
		intel_encoder->pre_enable = vlv_hdmi_pre_enable;
1952
		intel_encoder->enable = vlv_enable_hdmi;
1953
		intel_encoder->post_disable = vlv_hdmi_post_disable;
1954
	} else {
1955
		intel_encoder->pre_enable = intel_hdmi_pre_enable;
1956 1957
		if (HAS_PCH_CPT(dev))
			intel_encoder->enable = cpt_enable_hdmi;
1958 1959
		else if (HAS_PCH_IBX(dev))
			intel_encoder->enable = ibx_enable_hdmi;
1960
		else
1961
			intel_encoder->enable = g4x_enable_hdmi;
1962
	}
1963

1964
	intel_encoder->type = INTEL_OUTPUT_HDMI;
1965 1966 1967 1968 1969 1970 1971 1972
	if (IS_CHERRYVIEW(dev)) {
		if (port == PORT_D)
			intel_encoder->crtc_mask = 1 << 2;
		else
			intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
	} else {
		intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
	}
1973
	intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
1974 1975 1976 1977 1978 1979 1980
	/*
	 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
	 * to work on real hardware. And since g4x can send infoframes to
	 * only one port anyway, nothing is lost by allowing it.
	 */
	if (IS_G4X(dev))
		intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
1981

1982
	intel_dig_port->port = port;
1983
	intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
1984
	intel_dig_port->dp.output_reg = INVALID_MMIO_REG;
1985
	intel_dig_port->max_lanes = 4;
1986

1987
	intel_hdmi_init_connector(intel_dig_port, intel_connector);
1988
}