intel_hdmi.c 58.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 989 990
static void g4x_enable_hdmi(struct intel_encoder *encoder,
			    struct intel_crtc_state *pipe_config,
			    struct drm_connector_state *conn_state)
991
{
992
	struct drm_device *dev = encoder->base.dev;
993
	struct drm_i915_private *dev_priv = to_i915(dev);
994
	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
995
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
996 997
	u32 temp;

998
	temp = I915_READ(intel_hdmi->hdmi_reg);
999

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

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

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

1011 1012 1013
static void ibx_enable_hdmi(struct intel_encoder *encoder,
			    struct intel_crtc_state *pipe_config,
			    struct drm_connector_state *conn_state)
1014 1015
{
	struct drm_device *dev = encoder->base.dev;
1016
	struct drm_i915_private *dev_priv = to_i915(dev);
1017 1018 1019 1020 1021
	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);
1022

1023 1024 1025
	temp |= SDVO_ENABLE;
	if (crtc->config->has_audio)
		temp |= SDVO_AUDIO_ENABLE;
1026

1027 1028 1029 1030 1031 1032
	/*
	 * 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);
1033 1034
	I915_WRITE(intel_hdmi->hdmi_reg, temp);
	POSTING_READ(intel_hdmi->hdmi_reg);
1035

1036 1037 1038 1039 1040 1041
	/*
	 * 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.
1042
	 */
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
	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);
1054 1055
		I915_WRITE(intel_hdmi->hdmi_reg, temp);
		POSTING_READ(intel_hdmi->hdmi_reg);
1056
	}
1057

1058
	if (crtc->config->has_audio)
1059 1060 1061
		intel_enable_hdmi_audio(encoder);
}

1062 1063 1064
static void cpt_enable_hdmi(struct intel_encoder *encoder,
			    struct intel_crtc_state *pipe_config,
			    struct drm_connector_state *conn_state)
1065 1066
{
	struct drm_device *dev = encoder->base.dev;
1067
	struct drm_i915_private *dev_priv = to_i915(dev);
1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
	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;
1096
	}
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114

	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);
1115
}
1116

1117 1118 1119
static void vlv_enable_hdmi(struct intel_encoder *encoder,
			    struct intel_crtc_state *pipe_config,
			    struct drm_connector_state *conn_state)
1120
{
1121 1122
}

1123 1124 1125
static void intel_disable_hdmi(struct intel_encoder *encoder,
			       struct intel_crtc_state *old_crtc_state,
			       struct drm_connector_state *old_conn_state)
1126 1127
{
	struct drm_device *dev = encoder->base.dev;
1128
	struct drm_i915_private *dev_priv = to_i915(dev);
1129
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1130
	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1131 1132
	u32 temp;

1133
	temp = I915_READ(intel_hdmi->hdmi_reg);
1134

1135
	temp &= ~(SDVO_ENABLE | SDVO_AUDIO_ENABLE);
1136 1137
	I915_WRITE(intel_hdmi->hdmi_reg, temp);
	POSTING_READ(intel_hdmi->hdmi_reg);
1138 1139 1140 1141 1142 1143 1144

	/*
	 * 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) {
1145 1146 1147 1148 1149 1150 1151
		/*
		 * 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);

1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
		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);
1166

1167
		intel_wait_for_vblank_if_active(&dev_priv->drm, PIPE_A);
1168 1169
		intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, true);
		intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, true);
1170
	}
1171

1172
	intel_hdmi->set_infoframes(&encoder->base, false, NULL);
1173 1174

	intel_dp_dual_mode_set_tmds_output(intel_hdmi, false);
1175 1176
}

1177 1178 1179
static void g4x_disable_hdmi(struct intel_encoder *encoder,
			     struct intel_crtc_state *old_crtc_state,
			     struct drm_connector_state *old_conn_state)
1180 1181 1182 1183 1184 1185
{
	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);

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

1186
	intel_disable_hdmi(encoder, old_crtc_state, old_conn_state);
1187 1188
}

1189 1190 1191
static void pch_disable_hdmi(struct intel_encoder *encoder,
			     struct intel_crtc_state *old_crtc_state,
			     struct drm_connector_state *old_conn_state)
1192 1193 1194 1195 1196 1197 1198
{
	struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);

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

1199 1200 1201
static void pch_post_disable_hdmi(struct intel_encoder *encoder,
				  struct intel_crtc_state *old_crtc_state,
				  struct drm_connector_state *old_conn_state)
1202
{
1203
	intel_disable_hdmi(encoder, old_crtc_state, old_conn_state);
1204 1205
}

1206
static int intel_hdmi_source_max_tmds_clock(struct drm_i915_private *dev_priv)
1207
{
1208
	if (IS_G4X(dev_priv))
1209
		return 165000;
1210
	else if (IS_HASWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 8)
1211 1212 1213 1214 1215
		return 300000;
	else
		return 225000;
}

1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232
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;
}

1233 1234
static enum drm_mode_status
hdmi_port_clock_valid(struct intel_hdmi *hdmi,
1235
		      int clock, bool respect_downstream_limits)
1236 1237 1238 1239 1240
{
	struct drm_device *dev = intel_hdmi_to_dev(hdmi);

	if (clock < 25000)
		return MODE_CLOCK_LOW;
1241
	if (clock > hdmi_port_clock_limit(hdmi, respect_downstream_limits))
1242 1243
		return MODE_CLOCK_HIGH;

1244 1245 1246 1247 1248 1249
	/* 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)
1250 1251 1252 1253 1254
		return MODE_CLOCK_RANGE;

	return MODE_OK;
}

1255 1256 1257
static enum drm_mode_status
intel_hdmi_mode_valid(struct drm_connector *connector,
		      struct drm_display_mode *mode)
1258
{
1259 1260 1261 1262
	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 已提交
1263
	int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
1264 1265 1266

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

1268
	clock = mode->clock;
M
Mika Kahola 已提交
1269 1270 1271 1272 1273 1274 1275

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

	if (clock > max_dotclk)
		return MODE_CLOCK_HIGH;

1276 1277 1278
	if (mode->flags & DRM_MODE_FLAG_DBLCLK)
		clock *= 2;

1279 1280
	/* check if we can do 8bpc */
	status = hdmi_port_clock_valid(hdmi, clock, true);
1281

1282 1283 1284
	/* 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);
1285

1286
	return status;
1287 1288
}

1289
static bool hdmi_12bpc_possible(struct intel_crtc_state *crtc_state)
1290
{
1291
	struct drm_device *dev = crtc_state->base.crtc->dev;
1292

1293
	if (HAS_GMCH_DISPLAY(dev))
1294 1295 1296 1297 1298 1299
		return false;

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

1303
bool intel_hdmi_compute_config(struct intel_encoder *encoder,
1304 1305
			       struct intel_crtc_state *pipe_config,
			       struct drm_connector_state *conn_state)
1306
{
1307 1308
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
	struct drm_device *dev = encoder->base.dev;
1309
	struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
1310 1311
	int clock_8bpc = pipe_config->base.adjusted_mode.crtc_clock;
	int clock_12bpc = clock_8bpc * 3 / 2;
1312
	int desired_bpp;
1313

1314 1315
	pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink;

1316 1317 1318
	if (pipe_config->has_hdmi_sink)
		pipe_config->has_infoframe = true;

1319 1320
	if (intel_hdmi->color_range_auto) {
		/* See CEA-861-E - 5.1 Default Encoding Parameters */
1321 1322 1323 1324 1325 1326
		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;
1327 1328
	}

1329 1330
	if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK) {
		pipe_config->pixel_multiplier = 2;
1331
		clock_8bpc *= 2;
1332
		clock_12bpc *= 2;
1333 1334
	}

1335 1336 1337
	if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
		pipe_config->has_pch_encoder = true;

1338 1339 1340
	if (pipe_config->has_hdmi_sink && intel_hdmi->has_audio)
		pipe_config->has_audio = true;

1341 1342 1343
	/*
	 * 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
1344 1345
	 * outputs. We also need to check that the higher clock still fits
	 * within limits.
1346
	 */
1347
	if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink &&
1348
	    hdmi_port_clock_valid(intel_hdmi, clock_12bpc, true) == MODE_OK &&
1349
	    hdmi_12bpc_possible(pipe_config)) {
1350 1351
		DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
		desired_bpp = 12*3;
1352 1353

		/* Need to adjust the port link by 1.5x for 12bpc. */
1354
		pipe_config->port_clock = clock_12bpc;
1355
	} else {
1356 1357
		DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
		desired_bpp = 8*3;
1358 1359

		pipe_config->port_clock = clock_8bpc;
1360 1361 1362 1363 1364
	}

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

1367 1368 1369
	if (hdmi_port_clock_valid(intel_hdmi, pipe_config->port_clock,
				  false) != MODE_OK) {
		DRM_DEBUG_KMS("unsupported HDMI clock, rejecting mode\n");
1370 1371 1372
		return false;
	}

1373 1374 1375
	/* Set user selected PAR to incoming mode's member */
	adjusted_mode->picture_aspect_ratio = intel_hdmi->aspect_ratio;

1376 1377
	pipe_config->lane_count = 4;

1378 1379 1380
	return true;
}

1381 1382
static void
intel_hdmi_unset_edid(struct drm_connector *connector)
1383
{
1384
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1385

1386 1387 1388 1389
	intel_hdmi->has_hdmi_sink = false;
	intel_hdmi->has_audio = false;
	intel_hdmi->rgb_quant_range_selectable = false;

1390 1391 1392
	intel_hdmi->dp_dual_mode.type = DRM_DP_DUAL_MODE_NONE;
	intel_hdmi->dp_dual_mode.max_tmds_clock = 0;

1393 1394 1395 1396
	kfree(to_intel_connector(connector)->detect_edid);
	to_intel_connector(connector)->detect_edid = NULL;
}

1397
static void
1398
intel_hdmi_dp_dual_mode_detect(struct drm_connector *connector, bool has_edid)
1399 1400 1401
{
	struct drm_i915_private *dev_priv = to_i915(connector->dev);
	struct intel_hdmi *hdmi = intel_attached_hdmi(connector);
1402
	enum port port = hdmi_to_dig_port(hdmi)->port;
1403 1404 1405 1406
	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);

1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429
	/*
	 * 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)
1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440
		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);
}

1441
static bool
1442
intel_hdmi_set_edid(struct drm_connector *connector)
1443 1444 1445
{
	struct drm_i915_private *dev_priv = to_i915(connector->dev);
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1446
	struct edid *edid;
1447
	bool connected = false;
1448

1449
	intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);
1450

1451 1452 1453
	edid = drm_get_edid(connector,
			    intel_gmbus_get_adapter(dev_priv,
			    intel_hdmi->ddc_bus));
1454

1455
	intel_hdmi_dp_dual_mode_detect(connector, edid != NULL);
1456

1457
	intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS);
1458

1459 1460 1461 1462 1463 1464
	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);
1465 1466
		if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
			intel_hdmi->has_audio =
1467 1468 1469 1470 1471 1472 1473
				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;
1474 1475
	}

1476 1477 1478
	return connected;
}

1479 1480
static enum drm_connector_status
intel_hdmi_detect(struct drm_connector *connector, bool force)
1481
{
1482 1483
	enum drm_connector_status status;
	struct drm_i915_private *dev_priv = to_i915(connector->dev);
1484

1485 1486 1487
	DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
		      connector->base.id, connector->name);

1488 1489
	intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);

1490
	intel_hdmi_unset_edid(connector);
1491

1492
	if (intel_hdmi_set_edid(connector)) {
1493 1494 1495 1496
		struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);

		hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
		status = connector_status_connected;
1497
	} else
1498
		status = connector_status_disconnected;
1499

1500 1501
	intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS);

1502
	return status;
1503 1504
}

1505 1506
static void
intel_hdmi_force(struct drm_connector *connector)
1507
{
1508
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1509

1510 1511
	DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
		      connector->base.id, connector->name);
1512

1513
	intel_hdmi_unset_edid(connector);
1514

1515 1516
	if (connector->status != connector_status_connected)
		return;
1517

1518
	intel_hdmi_set_edid(connector);
1519 1520
	hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
}
1521

1522 1523 1524 1525 1526 1527 1528
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;
1529

1530
	return intel_connector_update_modes(connector, edid);
1531 1532
}

1533 1534 1535 1536
static bool
intel_hdmi_detect_audio(struct drm_connector *connector)
{
	bool has_audio = false;
1537
	struct edid *edid;
1538

1539 1540 1541
	edid = to_intel_connector(connector)->detect_edid;
	if (edid && edid->input & DRM_EDID_INPUT_DIGITAL)
		has_audio = drm_detect_monitor_audio(edid);
1542

1543 1544 1545
	return has_audio;
}

1546 1547
static int
intel_hdmi_set_property(struct drm_connector *connector,
1548 1549
			struct drm_property *property,
			uint64_t val)
1550 1551
{
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1552 1553
	struct intel_digital_port *intel_dig_port =
		hdmi_to_dig_port(intel_hdmi);
1554
	struct drm_i915_private *dev_priv = to_i915(connector->dev);
1555 1556
	int ret;

1557
	ret = drm_object_property_set_value(&connector->base, property, val);
1558 1559 1560
	if (ret)
		return ret;

1561
	if (property == dev_priv->force_audio_property) {
1562
		enum hdmi_force_audio i = val;
1563 1564 1565
		bool has_audio;

		if (i == intel_hdmi->force_audio)
1566 1567
			return 0;

1568
		intel_hdmi->force_audio = i;
1569

1570
		if (i == HDMI_AUDIO_AUTO)
1571 1572
			has_audio = intel_hdmi_detect_audio(connector);
		else
1573
			has_audio = (i == HDMI_AUDIO_ON);
1574

1575 1576
		if (i == HDMI_AUDIO_OFF_DVI)
			intel_hdmi->has_hdmi_sink = 0;
1577

1578
		intel_hdmi->has_audio = has_audio;
1579 1580 1581
		goto done;
	}

1582
	if (property == dev_priv->broadcast_rgb_property) {
1583
		bool old_auto = intel_hdmi->color_range_auto;
1584
		bool old_range = intel_hdmi->limited_color_range;
1585

1586 1587 1588 1589 1590 1591
		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;
1592
			intel_hdmi->limited_color_range = false;
1593 1594 1595
			break;
		case INTEL_BROADCAST_RGB_LIMITED:
			intel_hdmi->color_range_auto = false;
1596
			intel_hdmi->limited_color_range = true;
1597 1598 1599 1600
			break;
		default:
			return -EINVAL;
		}
1601 1602

		if (old_auto == intel_hdmi->color_range_auto &&
1603
		    old_range == intel_hdmi->limited_color_range)
1604 1605
			return 0;

1606 1607 1608
		goto done;
	}

1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625
	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;
	}

1626 1627 1628
	return -EINVAL;

done:
1629 1630
	if (intel_dig_port->base.base.crtc)
		intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
1631 1632 1633 1634

	return 0;
}

1635 1636 1637
static void intel_hdmi_pre_enable(struct intel_encoder *encoder,
				  struct intel_crtc_state *pipe_config,
				  struct drm_connector_state *conn_state)
1638 1639 1640
{
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
	struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
1641
	const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
1642

1643 1644
	intel_hdmi_prepare(encoder);

1645
	intel_hdmi->set_infoframes(&encoder->base,
1646
				   intel_crtc->config->has_hdmi_sink,
1647
				   adjusted_mode);
1648 1649
}

1650 1651 1652
static void vlv_hdmi_pre_enable(struct intel_encoder *encoder,
				struct intel_crtc_state *pipe_config,
				struct drm_connector_state *conn_state)
1653 1654
{
	struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1655
	struct intel_hdmi *intel_hdmi = &dport->hdmi;
1656
	struct drm_device *dev = encoder->base.dev;
1657
	struct drm_i915_private *dev_priv = to_i915(dev);
1658 1659
	struct intel_crtc *intel_crtc =
		to_intel_crtc(encoder->base.crtc);
1660
	const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
1661 1662

	vlv_phy_pre_encoder_enable(encoder);
1663

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

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

1672
	g4x_enable_hdmi(encoder, pipe_config, conn_state);
1673

1674
	vlv_wait_port_ready(dev_priv, dport, 0x0);
1675 1676
}

1677 1678 1679
static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder,
				    struct intel_crtc_state *pipe_config,
				    struct drm_connector_state *conn_state)
1680
{
1681 1682
	intel_hdmi_prepare(encoder);

1683
	vlv_phy_pre_pll_enable(encoder);
1684 1685
}

1686 1687 1688
static void chv_hdmi_pre_pll_enable(struct intel_encoder *encoder,
				    struct intel_crtc_state *pipe_config,
				    struct drm_connector_state *conn_state)
1689
{
1690 1691
	intel_hdmi_prepare(encoder);

1692
	chv_phy_pre_pll_enable(encoder);
1693 1694
}

1695 1696 1697
static void chv_hdmi_post_pll_disable(struct intel_encoder *encoder,
				      struct intel_crtc_state *old_crtc_state,
				      struct drm_connector_state *old_conn_state)
1698
{
1699
	chv_phy_post_pll_disable(encoder);
1700 1701
}

1702 1703 1704
static void vlv_hdmi_post_disable(struct intel_encoder *encoder,
				  struct intel_crtc_state *old_crtc_state,
				  struct drm_connector_state *old_conn_state)
1705 1706
{
	/* Reset lanes to avoid HDMI flicker (VLV w/a) */
1707
	vlv_phy_reset_lanes(encoder);
1708 1709
}

1710 1711 1712
static void chv_hdmi_post_disable(struct intel_encoder *encoder,
				  struct intel_crtc_state *old_crtc_state,
				  struct drm_connector_state *old_conn_state)
1713 1714
{
	struct drm_device *dev = encoder->base.dev;
1715
	struct drm_i915_private *dev_priv = to_i915(dev);
1716

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

1719 1720
	/* Assert data lane reset */
	chv_data_lane_soft_reset(encoder, true);
1721

V
Ville Syrjälä 已提交
1722
	mutex_unlock(&dev_priv->sb_lock);
1723 1724
}

1725 1726 1727
static void chv_hdmi_pre_enable(struct intel_encoder *encoder,
				struct intel_crtc_state *pipe_config,
				struct drm_connector_state *conn_state)
1728 1729
{
	struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1730
	struct intel_hdmi *intel_hdmi = &dport->hdmi;
1731
	struct drm_device *dev = encoder->base.dev;
1732
	struct drm_i915_private *dev_priv = to_i915(dev);
1733 1734
	struct intel_crtc *intel_crtc =
		to_intel_crtc(encoder->base.crtc);
1735
	const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
1736

1737
	chv_phy_pre_encoder_enable(encoder);
1738

1739 1740
	/* FIXME: Program the support xxx V-dB */
	/* Use 800mV-0dB */
1741
	chv_set_phy_signal_level(encoder, 128, 102, false);
1742

1743
	intel_hdmi->set_infoframes(&encoder->base,
1744
				   intel_crtc->config->has_hdmi_sink,
1745 1746
				   adjusted_mode);

1747
	g4x_enable_hdmi(encoder, pipe_config, conn_state);
1748

1749
	vlv_wait_port_ready(dev_priv, dport, 0x0);
1750 1751

	/* Second common lane will stay alive on its own now */
1752
	chv_phy_release_cl2_override(encoder);
1753 1754
}

1755 1756
static void intel_hdmi_destroy(struct drm_connector *connector)
{
1757
	kfree(to_intel_connector(connector)->detect_edid);
1758
	drm_connector_cleanup(connector);
1759
	kfree(connector);
1760 1761 1762
}

static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
1763
	.dpms = drm_atomic_helper_connector_dpms,
1764
	.detect = intel_hdmi_detect,
1765
	.force = intel_hdmi_force,
1766
	.fill_modes = drm_helper_probe_single_connector_modes,
1767
	.set_property = intel_hdmi_set_property,
1768
	.atomic_get_property = intel_connector_atomic_get_property,
1769
	.late_register = intel_connector_register,
1770
	.early_unregister = intel_connector_unregister,
1771
	.destroy = intel_hdmi_destroy,
1772
	.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
1773
	.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
1774 1775 1776 1777 1778 1779 1780 1781
};

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 已提交
1782
	.destroy = intel_encoder_destroy,
1783 1784
};

1785 1786 1787
static void
intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
{
1788
	intel_attach_force_audio_property(connector);
1789
	intel_attach_broadcast_rgb_property(connector);
1790
	intel_hdmi->color_range_auto = true;
1791 1792
	intel_attach_aspect_ratio_property(connector);
	intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
1793 1794
}

P
Paulo Zanoni 已提交
1795 1796
void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
			       struct intel_connector *intel_connector)
1797
{
1798 1799 1800 1801
	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;
1802
	struct drm_i915_private *dev_priv = to_i915(dev);
1803
	enum port port = intel_dig_port->port;
X
Xiong Zhang 已提交
1804
	uint8_t alternate_ddc_pin;
1805

1806 1807 1808
	DRM_DEBUG_KMS("Adding HDMI connector on port %c\n",
		      port_name(port));

1809 1810 1811 1812 1813
	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;

1814
	drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
1815
			   DRM_MODE_CONNECTOR_HDMIA);
1816 1817
	drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);

1818
	connector->interlace_allowed = 1;
1819
	connector->doublescan_allowed = 0;
1820
	connector->stereo_allowed = 1;
1821

1822 1823
	switch (port) {
	case PORT_B:
J
Jani Nikula 已提交
1824 1825 1826 1827
		if (IS_BROXTON(dev_priv))
			intel_hdmi->ddc_bus = GMBUS_PIN_1_BXT;
		else
			intel_hdmi->ddc_bus = GMBUS_PIN_DPB;
1828 1829 1830 1831
		/*
		 * On BXT A0/A1, sw needs to activate DDIA HPD logic and
		 * interrupts to check the external panel connection.
		 */
1832
		if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1))
1833 1834 1835
			intel_encoder->hpd_pin = HPD_PORT_A;
		else
			intel_encoder->hpd_pin = HPD_PORT_B;
1836 1837
		break;
	case PORT_C:
J
Jani Nikula 已提交
1838 1839 1840 1841
		if (IS_BROXTON(dev_priv))
			intel_hdmi->ddc_bus = GMBUS_PIN_2_BXT;
		else
			intel_hdmi->ddc_bus = GMBUS_PIN_DPC;
1842
		intel_encoder->hpd_pin = HPD_PORT_C;
1843 1844
		break;
	case PORT_D:
J
Jani Nikula 已提交
1845 1846 1847
		if (WARN_ON(IS_BROXTON(dev_priv)))
			intel_hdmi->ddc_bus = GMBUS_PIN_DISABLED;
		else if (IS_CHERRYVIEW(dev_priv))
1848
			intel_hdmi->ddc_bus = GMBUS_PIN_DPD_CHV;
1849
		else
1850
			intel_hdmi->ddc_bus = GMBUS_PIN_DPD;
1851
		intel_encoder->hpd_pin = HPD_PORT_D;
1852
		break;
X
Xiong Zhang 已提交
1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872
	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;
1873
	case PORT_A:
1874
		intel_encoder->hpd_pin = HPD_PORT_A;
1875 1876
		/* Internal port only for eDP. */
	default:
1877
		BUG();
1878
	}
1879

1880
	if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
1881
		intel_hdmi->write_infoframe = vlv_write_infoframe;
1882
		intel_hdmi->set_infoframes = vlv_set_infoframes;
1883
		intel_hdmi->infoframe_enabled = vlv_infoframe_enabled;
1884
	} else if (IS_G4X(dev)) {
1885 1886
		intel_hdmi->write_infoframe = g4x_write_infoframe;
		intel_hdmi->set_infoframes = g4x_set_infoframes;
1887
		intel_hdmi->infoframe_enabled = g4x_infoframe_enabled;
1888
	} else if (HAS_DDI(dev)) {
1889
		intel_hdmi->write_infoframe = hsw_write_infoframe;
1890
		intel_hdmi->set_infoframes = hsw_set_infoframes;
1891
		intel_hdmi->infoframe_enabled = hsw_infoframe_enabled;
1892 1893
	} else if (HAS_PCH_IBX(dev)) {
		intel_hdmi->write_infoframe = ibx_write_infoframe;
1894
		intel_hdmi->set_infoframes = ibx_set_infoframes;
1895
		intel_hdmi->infoframe_enabled = ibx_infoframe_enabled;
1896 1897
	} else {
		intel_hdmi->write_infoframe = cpt_write_infoframe;
1898
		intel_hdmi->set_infoframes = cpt_set_infoframes;
1899
		intel_hdmi->infoframe_enabled = cpt_infoframe_enabled;
1900
	}
1901

P
Paulo Zanoni 已提交
1902
	if (HAS_DDI(dev))
1903 1904 1905
		intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
	else
		intel_connector->get_hw_state = intel_connector_get_hw_state;
1906 1907 1908 1909

	intel_hdmi_add_properties(intel_hdmi, connector);

	intel_connector_attach_encoder(intel_connector, intel_encoder);
1910
	intel_hdmi->attached_connector = intel_connector;
1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921

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

1922 1923
void intel_hdmi_init(struct drm_device *dev,
		     i915_reg_t hdmi_reg, enum port port)
1924 1925 1926 1927 1928
{
	struct intel_digital_port *intel_dig_port;
	struct intel_encoder *intel_encoder;
	struct intel_connector *intel_connector;

1929
	intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
1930 1931 1932
	if (!intel_dig_port)
		return;

1933
	intel_connector = intel_connector_alloc();
1934 1935 1936 1937 1938 1939 1940 1941
	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,
1942
			 DRM_MODE_ENCODER_TMDS, "HDMI %c", port_name(port));
P
Paulo Zanoni 已提交
1943

1944
	intel_encoder->compute_config = intel_hdmi_compute_config;
1945 1946 1947 1948 1949 1950
	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 已提交
1951
	intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
1952
	intel_encoder->get_config = intel_hdmi_get_config;
1953
	if (IS_CHERRYVIEW(dev)) {
1954
		intel_encoder->pre_pll_enable = chv_hdmi_pre_pll_enable;
1955 1956
		intel_encoder->pre_enable = chv_hdmi_pre_enable;
		intel_encoder->enable = vlv_enable_hdmi;
1957
		intel_encoder->post_disable = chv_hdmi_post_disable;
1958
		intel_encoder->post_pll_disable = chv_hdmi_post_pll_disable;
1959
	} else if (IS_VALLEYVIEW(dev)) {
1960 1961
		intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
		intel_encoder->pre_enable = vlv_hdmi_pre_enable;
1962
		intel_encoder->enable = vlv_enable_hdmi;
1963
		intel_encoder->post_disable = vlv_hdmi_post_disable;
1964
	} else {
1965
		intel_encoder->pre_enable = intel_hdmi_pre_enable;
1966 1967
		if (HAS_PCH_CPT(dev))
			intel_encoder->enable = cpt_enable_hdmi;
1968 1969
		else if (HAS_PCH_IBX(dev))
			intel_encoder->enable = ibx_enable_hdmi;
1970
		else
1971
			intel_encoder->enable = g4x_enable_hdmi;
1972
	}
1973

1974
	intel_encoder->type = INTEL_OUTPUT_HDMI;
1975 1976 1977 1978 1979 1980 1981 1982
	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);
	}
1983
	intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
1984 1985 1986 1987 1988 1989 1990
	/*
	 * 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;
1991

1992
	intel_dig_port->port = port;
1993
	intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
1994
	intel_dig_port->dp.output_reg = INVALID_MMIO_REG;
1995
	intel_dig_port->max_lanes = 4;
1996

1997
	intel_hdmi_init_connector(intel_dig_port, intel_connector);
1998
}