drm/i915: enable HDMI mode on VLV when an HDMI sink is detected
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_hdmi.c
CommitLineData
7d57382e
EA
1/*
2 * Copyright 2006 Dave Airlie <airlied@linux.ie>
3 * Copyright © 2006-2009 Intel Corporation
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Eric Anholt <eric@anholt.net>
26 * Jesse Barnes <jesse.barnes@intel.com>
27 */
28
29#include <linux/i2c.h>
5a0e3ad6 30#include <linux/slab.h>
7d57382e 31#include <linux/delay.h>
178f736a 32#include <linux/hdmi.h>
760285e7
DH
33#include <drm/drmP.h>
34#include <drm/drm_crtc.h>
35#include <drm/drm_edid.h>
7d57382e 36#include "intel_drv.h"
760285e7 37#include <drm/i915_drm.h>
7d57382e
EA
38#include "i915_drv.h"
39
30add22d
PZ
40static struct drm_device *intel_hdmi_to_dev(struct intel_hdmi *intel_hdmi)
41{
da63a9f2 42 return hdmi_to_dig_port(intel_hdmi)->base.base.dev;
30add22d
PZ
43}
44
afba0188
DV
45static void
46assert_hdmi_port_disabled(struct intel_hdmi *intel_hdmi)
47{
30add22d 48 struct drm_device *dev = intel_hdmi_to_dev(intel_hdmi);
afba0188
DV
49 struct drm_i915_private *dev_priv = dev->dev_private;
50 uint32_t enabled_bits;
51
affa9354 52 enabled_bits = HAS_DDI(dev) ? DDI_BUF_CTL_ENABLE : SDVO_ENABLE;
afba0188 53
b242b7f7 54 WARN(I915_READ(intel_hdmi->hdmi_reg) & enabled_bits,
afba0188
DV
55 "HDMI port enabled, expecting disabled\n");
56}
57
f5bbfca3 58struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder)
ea5b213a 59{
da63a9f2
PZ
60 struct intel_digital_port *intel_dig_port =
61 container_of(encoder, struct intel_digital_port, base.base);
62 return &intel_dig_port->hdmi;
ea5b213a
CW
63}
64
df0e9248
CW
65static struct intel_hdmi *intel_attached_hdmi(struct drm_connector *connector)
66{
da63a9f2 67 return enc_to_intel_hdmi(&intel_attached_encoder(connector)->base);
df0e9248
CW
68}
69
178f736a 70static u32 g4x_infoframe_index(enum hdmi_infoframe_type type)
3c17fe4b 71{
178f736a
DL
72 switch (type) {
73 case HDMI_INFOFRAME_TYPE_AVI:
ed517fbb 74 return VIDEO_DIP_SELECT_AVI;
178f736a 75 case HDMI_INFOFRAME_TYPE_SPD:
ed517fbb 76 return VIDEO_DIP_SELECT_SPD;
c8bb75af
LD
77 case HDMI_INFOFRAME_TYPE_VENDOR:
78 return VIDEO_DIP_SELECT_VENDOR;
45187ace 79 default:
178f736a 80 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
ed517fbb 81 return 0;
45187ace 82 }
45187ace
JB
83}
84
178f736a 85static u32 g4x_infoframe_enable(enum hdmi_infoframe_type type)
45187ace 86{
178f736a
DL
87 switch (type) {
88 case HDMI_INFOFRAME_TYPE_AVI:
ed517fbb 89 return VIDEO_DIP_ENABLE_AVI;
178f736a 90 case HDMI_INFOFRAME_TYPE_SPD:
ed517fbb 91 return VIDEO_DIP_ENABLE_SPD;
c8bb75af
LD
92 case HDMI_INFOFRAME_TYPE_VENDOR:
93 return VIDEO_DIP_ENABLE_VENDOR;
fa193ff7 94 default:
178f736a 95 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
ed517fbb 96 return 0;
fa193ff7 97 }
fa193ff7
PZ
98}
99
178f736a 100static u32 hsw_infoframe_enable(enum hdmi_infoframe_type type)
2da8af54 101{
178f736a
DL
102 switch (type) {
103 case HDMI_INFOFRAME_TYPE_AVI:
2da8af54 104 return VIDEO_DIP_ENABLE_AVI_HSW;
178f736a 105 case HDMI_INFOFRAME_TYPE_SPD:
2da8af54 106 return VIDEO_DIP_ENABLE_SPD_HSW;
c8bb75af
LD
107 case HDMI_INFOFRAME_TYPE_VENDOR:
108 return VIDEO_DIP_ENABLE_VS_HSW;
2da8af54 109 default:
178f736a 110 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
2da8af54
PZ
111 return 0;
112 }
113}
114
178f736a 115static u32 hsw_infoframe_data_reg(enum hdmi_infoframe_type type,
a57c774a
AK
116 enum transcoder cpu_transcoder,
117 struct drm_i915_private *dev_priv)
2da8af54 118{
178f736a
DL
119 switch (type) {
120 case HDMI_INFOFRAME_TYPE_AVI:
7d9bcebe 121 return HSW_TVIDEO_DIP_AVI_DATA(cpu_transcoder);
178f736a 122 case HDMI_INFOFRAME_TYPE_SPD:
7d9bcebe 123 return HSW_TVIDEO_DIP_SPD_DATA(cpu_transcoder);
c8bb75af
LD
124 case HDMI_INFOFRAME_TYPE_VENDOR:
125 return HSW_TVIDEO_DIP_VS_DATA(cpu_transcoder);
2da8af54 126 default:
178f736a 127 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
2da8af54
PZ
128 return 0;
129 }
130}
131
a3da1df7 132static void g4x_write_infoframe(struct drm_encoder *encoder,
178f736a 133 enum hdmi_infoframe_type type,
fff63867 134 const void *frame, ssize_t len)
45187ace 135{
fff63867 136 const uint32_t *data = frame;
3c17fe4b
DH
137 struct drm_device *dev = encoder->dev;
138 struct drm_i915_private *dev_priv = dev->dev_private;
22509ec8 139 u32 val = I915_READ(VIDEO_DIP_CTL);
178f736a 140 int i;
3c17fe4b 141
822974ae
PZ
142 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
143
1d4f85ac 144 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
178f736a 145 val |= g4x_infoframe_index(type);
22509ec8 146
178f736a 147 val &= ~g4x_infoframe_enable(type);
45187ace 148
22509ec8 149 I915_WRITE(VIDEO_DIP_CTL, val);
3c17fe4b 150
9d9740f0 151 mmiowb();
45187ace 152 for (i = 0; i < len; i += 4) {
3c17fe4b
DH
153 I915_WRITE(VIDEO_DIP_DATA, *data);
154 data++;
155 }
adf00b26
PZ
156 /* Write every possible data byte to force correct ECC calculation. */
157 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
158 I915_WRITE(VIDEO_DIP_DATA, 0);
9d9740f0 159 mmiowb();
3c17fe4b 160
178f736a 161 val |= g4x_infoframe_enable(type);
60c5ea2d 162 val &= ~VIDEO_DIP_FREQ_MASK;
4b24c933 163 val |= VIDEO_DIP_FREQ_VSYNC;
45187ace 164
22509ec8 165 I915_WRITE(VIDEO_DIP_CTL, val);
9d9740f0 166 POSTING_READ(VIDEO_DIP_CTL);
3c17fe4b
DH
167}
168
fdf1250a 169static void ibx_write_infoframe(struct drm_encoder *encoder,
178f736a 170 enum hdmi_infoframe_type type,
fff63867 171 const void *frame, ssize_t len)
fdf1250a 172{
fff63867 173 const uint32_t *data = frame;
fdf1250a
PZ
174 struct drm_device *dev = encoder->dev;
175 struct drm_i915_private *dev_priv = dev->dev_private;
ed517fbb 176 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
178f736a 177 int i, reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
fdf1250a
PZ
178 u32 val = I915_READ(reg);
179
822974ae
PZ
180 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
181
fdf1250a 182 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
178f736a 183 val |= g4x_infoframe_index(type);
fdf1250a 184
178f736a 185 val &= ~g4x_infoframe_enable(type);
fdf1250a
PZ
186
187 I915_WRITE(reg, val);
188
9d9740f0 189 mmiowb();
fdf1250a
PZ
190 for (i = 0; i < len; i += 4) {
191 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
192 data++;
193 }
adf00b26
PZ
194 /* Write every possible data byte to force correct ECC calculation. */
195 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
196 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
9d9740f0 197 mmiowb();
fdf1250a 198
178f736a 199 val |= g4x_infoframe_enable(type);
fdf1250a 200 val &= ~VIDEO_DIP_FREQ_MASK;
4b24c933 201 val |= VIDEO_DIP_FREQ_VSYNC;
fdf1250a
PZ
202
203 I915_WRITE(reg, val);
9d9740f0 204 POSTING_READ(reg);
fdf1250a
PZ
205}
206
207static void cpt_write_infoframe(struct drm_encoder *encoder,
178f736a 208 enum hdmi_infoframe_type type,
fff63867 209 const void *frame, ssize_t len)
b055c8f3 210{
fff63867 211 const uint32_t *data = frame;
b055c8f3
JB
212 struct drm_device *dev = encoder->dev;
213 struct drm_i915_private *dev_priv = dev->dev_private;
ed517fbb 214 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
178f736a 215 int i, reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
22509ec8 216 u32 val = I915_READ(reg);
b055c8f3 217
822974ae
PZ
218 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
219
64a8fc01 220 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
178f736a 221 val |= g4x_infoframe_index(type);
45187ace 222
ecb97851
PZ
223 /* The DIP control register spec says that we need to update the AVI
224 * infoframe without clearing its enable bit */
178f736a
DL
225 if (type != HDMI_INFOFRAME_TYPE_AVI)
226 val &= ~g4x_infoframe_enable(type);
ecb97851 227
22509ec8 228 I915_WRITE(reg, val);
45187ace 229
9d9740f0 230 mmiowb();
45187ace 231 for (i = 0; i < len; i += 4) {
b055c8f3
JB
232 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
233 data++;
234 }
adf00b26
PZ
235 /* Write every possible data byte to force correct ECC calculation. */
236 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
237 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
9d9740f0 238 mmiowb();
b055c8f3 239
178f736a 240 val |= g4x_infoframe_enable(type);
60c5ea2d 241 val &= ~VIDEO_DIP_FREQ_MASK;
4b24c933 242 val |= VIDEO_DIP_FREQ_VSYNC;
45187ace 243
22509ec8 244 I915_WRITE(reg, val);
9d9740f0 245 POSTING_READ(reg);
45187ace 246}
90b107c8
SK
247
248static void vlv_write_infoframe(struct drm_encoder *encoder,
178f736a 249 enum hdmi_infoframe_type type,
fff63867 250 const void *frame, ssize_t len)
90b107c8 251{
fff63867 252 const uint32_t *data = frame;
90b107c8
SK
253 struct drm_device *dev = encoder->dev;
254 struct drm_i915_private *dev_priv = dev->dev_private;
ed517fbb 255 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
178f736a 256 int i, reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
22509ec8 257 u32 val = I915_READ(reg);
90b107c8 258
822974ae
PZ
259 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
260
90b107c8 261 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
178f736a 262 val |= g4x_infoframe_index(type);
22509ec8 263
178f736a 264 val &= ~g4x_infoframe_enable(type);
90b107c8 265
22509ec8 266 I915_WRITE(reg, val);
90b107c8 267
9d9740f0 268 mmiowb();
90b107c8
SK
269 for (i = 0; i < len; i += 4) {
270 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
271 data++;
272 }
adf00b26
PZ
273 /* Write every possible data byte to force correct ECC calculation. */
274 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
275 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
9d9740f0 276 mmiowb();
90b107c8 277
178f736a 278 val |= g4x_infoframe_enable(type);
60c5ea2d 279 val &= ~VIDEO_DIP_FREQ_MASK;
4b24c933 280 val |= VIDEO_DIP_FREQ_VSYNC;
90b107c8 281
22509ec8 282 I915_WRITE(reg, val);
9d9740f0 283 POSTING_READ(reg);
90b107c8
SK
284}
285
8c5f5f7c 286static void hsw_write_infoframe(struct drm_encoder *encoder,
178f736a 287 enum hdmi_infoframe_type type,
fff63867 288 const void *frame, ssize_t len)
8c5f5f7c 289{
fff63867 290 const uint32_t *data = frame;
2da8af54
PZ
291 struct drm_device *dev = encoder->dev;
292 struct drm_i915_private *dev_priv = dev->dev_private;
293 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
3b117c8f 294 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config.cpu_transcoder);
178f736a
DL
295 u32 data_reg;
296 int i;
2da8af54 297 u32 val = I915_READ(ctl_reg);
8c5f5f7c 298
178f736a 299 data_reg = hsw_infoframe_data_reg(type,
a57c774a
AK
300 intel_crtc->config.cpu_transcoder,
301 dev_priv);
2da8af54
PZ
302 if (data_reg == 0)
303 return;
304
178f736a 305 val &= ~hsw_infoframe_enable(type);
2da8af54
PZ
306 I915_WRITE(ctl_reg, val);
307
9d9740f0 308 mmiowb();
2da8af54
PZ
309 for (i = 0; i < len; i += 4) {
310 I915_WRITE(data_reg + i, *data);
311 data++;
312 }
adf00b26
PZ
313 /* Write every possible data byte to force correct ECC calculation. */
314 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
315 I915_WRITE(data_reg + i, 0);
9d9740f0 316 mmiowb();
8c5f5f7c 317
178f736a 318 val |= hsw_infoframe_enable(type);
2da8af54 319 I915_WRITE(ctl_reg, val);
9d9740f0 320 POSTING_READ(ctl_reg);
8c5f5f7c
ED
321}
322
5adaea79
DL
323/*
324 * The data we write to the DIP data buffer registers is 1 byte bigger than the
325 * HDMI infoframe size because of an ECC/reserved byte at position 3 (starting
326 * at 0). It's also a byte used by DisplayPort so the same DIP registers can be
327 * used for both technologies.
328 *
329 * DW0: Reserved/ECC/DP | HB2 | HB1 | HB0
330 * DW1: DB3 | DB2 | DB1 | DB0
331 * DW2: DB7 | DB6 | DB5 | DB4
332 * DW3: ...
333 *
334 * (HB is Header Byte, DB is Data Byte)
335 *
336 * The hdmi pack() functions don't know about that hardware specific hole so we
337 * trick them by giving an offset into the buffer and moving back the header
338 * bytes by one.
339 */
9198ee5b
DL
340static void intel_write_infoframe(struct drm_encoder *encoder,
341 union hdmi_infoframe *frame)
45187ace
JB
342{
343 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
5adaea79
DL
344 uint8_t buffer[VIDEO_DIP_DATA_SIZE];
345 ssize_t len;
45187ace 346
5adaea79
DL
347 /* see comment above for the reason for this offset */
348 len = hdmi_infoframe_pack(frame, buffer + 1, sizeof(buffer) - 1);
349 if (len < 0)
350 return;
351
352 /* Insert the 'hole' (see big comment above) at position 3 */
353 buffer[0] = buffer[1];
354 buffer[1] = buffer[2];
355 buffer[2] = buffer[3];
356 buffer[3] = 0;
357 len++;
45187ace 358
5adaea79 359 intel_hdmi->write_infoframe(encoder, frame->any.type, buffer, len);
45187ace
JB
360}
361
687f4d06 362static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
c846b619 363 struct drm_display_mode *adjusted_mode)
45187ace 364{
abedc077 365 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
50f3b016 366 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
5adaea79
DL
367 union hdmi_infoframe frame;
368 int ret;
45187ace 369
5adaea79
DL
370 ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
371 adjusted_mode);
372 if (ret < 0) {
373 DRM_ERROR("couldn't fill AVI infoframe\n");
374 return;
375 }
c846b619 376
abedc077 377 if (intel_hdmi->rgb_quant_range_selectable) {
50f3b016 378 if (intel_crtc->config.limited_color_range)
5adaea79
DL
379 frame.avi.quantization_range =
380 HDMI_QUANTIZATION_RANGE_LIMITED;
abedc077 381 else
5adaea79
DL
382 frame.avi.quantization_range =
383 HDMI_QUANTIZATION_RANGE_FULL;
abedc077
VS
384 }
385
9198ee5b 386 intel_write_infoframe(encoder, &frame);
b055c8f3
JB
387}
388
687f4d06 389static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
c0864cb3 390{
5adaea79
DL
391 union hdmi_infoframe frame;
392 int ret;
393
394 ret = hdmi_spd_infoframe_init(&frame.spd, "Intel", "Integrated gfx");
395 if (ret < 0) {
396 DRM_ERROR("couldn't fill SPD infoframe\n");
397 return;
398 }
c0864cb3 399
5adaea79 400 frame.spd.sdi = HDMI_SPD_SDI_PC;
c0864cb3 401
9198ee5b 402 intel_write_infoframe(encoder, &frame);
c0864cb3
JB
403}
404
c8bb75af
LD
405static void
406intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder,
407 struct drm_display_mode *adjusted_mode)
408{
409 union hdmi_infoframe frame;
410 int ret;
411
412 ret = drm_hdmi_vendor_infoframe_from_display_mode(&frame.vendor.hdmi,
413 adjusted_mode);
414 if (ret < 0)
415 return;
416
417 intel_write_infoframe(encoder, &frame);
418}
419
687f4d06
PZ
420static void g4x_set_infoframes(struct drm_encoder *encoder,
421 struct drm_display_mode *adjusted_mode)
422{
0c14c7f9 423 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
69fde0a6
VS
424 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
425 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
0c14c7f9
PZ
426 u32 reg = VIDEO_DIP_CTL;
427 u32 val = I915_READ(reg);
822cdc52 428 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
0c14c7f9 429
afba0188
DV
430 assert_hdmi_port_disabled(intel_hdmi);
431
0c14c7f9
PZ
432 /* If the registers were not initialized yet, they might be zeroes,
433 * which means we're selecting the AVI DIP and we're setting its
434 * frequency to once. This seems to really confuse the HW and make
435 * things stop working (the register spec says the AVI always needs to
436 * be sent every VSync). So here we avoid writing to the register more
437 * than we need and also explicitly select the AVI DIP and explicitly
438 * set its frequency to every VSync. Avoiding to write it twice seems to
439 * be enough to solve the problem, but being defensive shouldn't hurt us
440 * either. */
441 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
442
443 if (!intel_hdmi->has_hdmi_sink) {
444 if (!(val & VIDEO_DIP_ENABLE))
445 return;
446 val &= ~VIDEO_DIP_ENABLE;
447 I915_WRITE(reg, val);
9d9740f0 448 POSTING_READ(reg);
0c14c7f9
PZ
449 return;
450 }
451
72b78c9d
PZ
452 if (port != (val & VIDEO_DIP_PORT_MASK)) {
453 if (val & VIDEO_DIP_ENABLE) {
454 val &= ~VIDEO_DIP_ENABLE;
455 I915_WRITE(reg, val);
9d9740f0 456 POSTING_READ(reg);
72b78c9d
PZ
457 }
458 val &= ~VIDEO_DIP_PORT_MASK;
459 val |= port;
460 }
461
822974ae 462 val |= VIDEO_DIP_ENABLE;
0dd87d20 463 val &= ~VIDEO_DIP_ENABLE_VENDOR;
822974ae 464
f278d972 465 I915_WRITE(reg, val);
9d9740f0 466 POSTING_READ(reg);
f278d972 467
687f4d06
PZ
468 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
469 intel_hdmi_set_spd_infoframe(encoder);
c8bb75af 470 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
687f4d06
PZ
471}
472
473static void ibx_set_infoframes(struct drm_encoder *encoder,
474 struct drm_display_mode *adjusted_mode)
475{
0c14c7f9
PZ
476 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
477 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
69fde0a6
VS
478 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
479 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
0c14c7f9
PZ
480 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
481 u32 val = I915_READ(reg);
822cdc52 482 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
0c14c7f9 483
afba0188
DV
484 assert_hdmi_port_disabled(intel_hdmi);
485
0c14c7f9
PZ
486 /* See the big comment in g4x_set_infoframes() */
487 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
488
489 if (!intel_hdmi->has_hdmi_sink) {
490 if (!(val & VIDEO_DIP_ENABLE))
491 return;
492 val &= ~VIDEO_DIP_ENABLE;
493 I915_WRITE(reg, val);
9d9740f0 494 POSTING_READ(reg);
0c14c7f9
PZ
495 return;
496 }
497
72b78c9d
PZ
498 if (port != (val & VIDEO_DIP_PORT_MASK)) {
499 if (val & VIDEO_DIP_ENABLE) {
500 val &= ~VIDEO_DIP_ENABLE;
501 I915_WRITE(reg, val);
9d9740f0 502 POSTING_READ(reg);
72b78c9d
PZ
503 }
504 val &= ~VIDEO_DIP_PORT_MASK;
505 val |= port;
506 }
507
822974ae 508 val |= VIDEO_DIP_ENABLE;
0dd87d20
PZ
509 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
510 VIDEO_DIP_ENABLE_GCP);
822974ae 511
f278d972 512 I915_WRITE(reg, val);
9d9740f0 513 POSTING_READ(reg);
f278d972 514
687f4d06
PZ
515 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
516 intel_hdmi_set_spd_infoframe(encoder);
c8bb75af 517 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
687f4d06
PZ
518}
519
520static void cpt_set_infoframes(struct drm_encoder *encoder,
521 struct drm_display_mode *adjusted_mode)
522{
0c14c7f9
PZ
523 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
524 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
525 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
526 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
527 u32 val = I915_READ(reg);
528
afba0188
DV
529 assert_hdmi_port_disabled(intel_hdmi);
530
0c14c7f9
PZ
531 /* See the big comment in g4x_set_infoframes() */
532 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
533
534 if (!intel_hdmi->has_hdmi_sink) {
535 if (!(val & VIDEO_DIP_ENABLE))
536 return;
537 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI);
538 I915_WRITE(reg, val);
9d9740f0 539 POSTING_READ(reg);
0c14c7f9
PZ
540 return;
541 }
542
822974ae
PZ
543 /* Set both together, unset both together: see the spec. */
544 val |= VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI;
0dd87d20
PZ
545 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
546 VIDEO_DIP_ENABLE_GCP);
822974ae
PZ
547
548 I915_WRITE(reg, val);
9d9740f0 549 POSTING_READ(reg);
822974ae 550
687f4d06
PZ
551 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
552 intel_hdmi_set_spd_infoframe(encoder);
c8bb75af 553 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
687f4d06
PZ
554}
555
556static void vlv_set_infoframes(struct drm_encoder *encoder,
557 struct drm_display_mode *adjusted_mode)
558{
0c14c7f9 559 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
6a2b8021 560 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
0c14c7f9
PZ
561 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
562 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
563 u32 reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
564 u32 val = I915_READ(reg);
6a2b8021 565 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
0c14c7f9 566
afba0188
DV
567 assert_hdmi_port_disabled(intel_hdmi);
568
0c14c7f9
PZ
569 /* See the big comment in g4x_set_infoframes() */
570 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
571
572 if (!intel_hdmi->has_hdmi_sink) {
573 if (!(val & VIDEO_DIP_ENABLE))
574 return;
575 val &= ~VIDEO_DIP_ENABLE;
576 I915_WRITE(reg, val);
9d9740f0 577 POSTING_READ(reg);
0c14c7f9
PZ
578 return;
579 }
580
6a2b8021
JB
581 if (port != (val & VIDEO_DIP_PORT_MASK)) {
582 if (val & VIDEO_DIP_ENABLE) {
583 val &= ~VIDEO_DIP_ENABLE;
584 I915_WRITE(reg, val);
585 POSTING_READ(reg);
586 }
587 val &= ~VIDEO_DIP_PORT_MASK;
588 val |= port;
589 }
590
822974ae 591 val |= VIDEO_DIP_ENABLE;
4d47dfb8
JB
592 val &= ~(VIDEO_DIP_ENABLE_AVI | VIDEO_DIP_ENABLE_VENDOR |
593 VIDEO_DIP_ENABLE_GAMUT | VIDEO_DIP_ENABLE_GCP);
822974ae
PZ
594
595 I915_WRITE(reg, val);
9d9740f0 596 POSTING_READ(reg);
822974ae 597
687f4d06
PZ
598 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
599 intel_hdmi_set_spd_infoframe(encoder);
c8bb75af 600 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
687f4d06
PZ
601}
602
603static void hsw_set_infoframes(struct drm_encoder *encoder,
604 struct drm_display_mode *adjusted_mode)
605{
0c14c7f9
PZ
606 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
607 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
608 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
3b117c8f 609 u32 reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config.cpu_transcoder);
0dd87d20 610 u32 val = I915_READ(reg);
0c14c7f9 611
afba0188
DV
612 assert_hdmi_port_disabled(intel_hdmi);
613
0c14c7f9
PZ
614 if (!intel_hdmi->has_hdmi_sink) {
615 I915_WRITE(reg, 0);
9d9740f0 616 POSTING_READ(reg);
0c14c7f9
PZ
617 return;
618 }
619
0dd87d20
PZ
620 val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_GCP_HSW |
621 VIDEO_DIP_ENABLE_VS_HSW | VIDEO_DIP_ENABLE_GMP_HSW);
622
623 I915_WRITE(reg, val);
9d9740f0 624 POSTING_READ(reg);
0dd87d20 625
687f4d06
PZ
626 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
627 intel_hdmi_set_spd_infoframe(encoder);
c8bb75af 628 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
687f4d06
PZ
629}
630
c59423a3 631static void intel_hdmi_mode_set(struct intel_encoder *encoder)
7d57382e 632{
c59423a3 633 struct drm_device *dev = encoder->base.dev;
7d57382e 634 struct drm_i915_private *dev_priv = dev->dev_private;
c59423a3
DV
635 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
636 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
637 struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode;
b242b7f7 638 u32 hdmi_val;
7d57382e 639
b242b7f7 640 hdmi_val = SDVO_ENCODING_HDMI;
2af2c490 641 if (!HAS_PCH_SPLIT(dev))
b242b7f7 642 hdmi_val |= intel_hdmi->color_range;
b599c0bc 643 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
b242b7f7 644 hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
b599c0bc 645 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
b242b7f7 646 hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
7d57382e 647
c59423a3 648 if (crtc->config.pipe_bpp > 24)
4f3a8bc7 649 hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
020f6704 650 else
4f3a8bc7 651 hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
020f6704 652
759c85e7
JB
653 if (intel_hdmi->has_hdmi_sink &&
654 (HAS_PCH_CPT(dev) || IS_VALLEYVIEW(dev)))
dc0fa718 655 hdmi_val |= HDMI_MODE_SELECT_HDMI;
2e3d6006 656
3c17fe4b 657 if (intel_hdmi->has_audio) {
e0dac65e 658 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
c59423a3 659 pipe_name(crtc->pipe));
b242b7f7 660 hdmi_val |= SDVO_AUDIO_ENABLE;
dc0fa718 661 hdmi_val |= HDMI_MODE_SELECT_HDMI;
c59423a3 662 intel_write_eld(&encoder->base, adjusted_mode);
3c17fe4b 663 }
7d57382e 664
75770564 665 if (HAS_PCH_CPT(dev))
c59423a3 666 hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
dc0fa718 667 else
c59423a3 668 hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
7d57382e 669
b242b7f7
PZ
670 I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
671 POSTING_READ(intel_hdmi->hdmi_reg);
3c17fe4b 672
c59423a3 673 intel_hdmi->set_infoframes(&encoder->base, adjusted_mode);
7d57382e
EA
674}
675
85234cdc
DV
676static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
677 enum pipe *pipe)
7d57382e 678{
85234cdc 679 struct drm_device *dev = encoder->base.dev;
7d57382e 680 struct drm_i915_private *dev_priv = dev->dev_private;
85234cdc 681 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
6d129bea 682 enum intel_display_power_domain power_domain;
85234cdc
DV
683 u32 tmp;
684
6d129bea
ID
685 power_domain = intel_display_port_power_domain(encoder);
686 if (!intel_display_power_enabled(dev_priv, power_domain))
687 return false;
688
b242b7f7 689 tmp = I915_READ(intel_hdmi->hdmi_reg);
85234cdc
DV
690
691 if (!(tmp & SDVO_ENABLE))
692 return false;
693
694 if (HAS_PCH_CPT(dev))
695 *pipe = PORT_TO_PIPE_CPT(tmp);
696 else
697 *pipe = PORT_TO_PIPE(tmp);
698
699 return true;
700}
701
045ac3b5
JB
702static void intel_hdmi_get_config(struct intel_encoder *encoder,
703 struct intel_crtc_config *pipe_config)
704{
705 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
706 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
707 u32 tmp, flags = 0;
18442d08 708 int dotclock;
045ac3b5
JB
709
710 tmp = I915_READ(intel_hdmi->hdmi_reg);
711
712 if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
713 flags |= DRM_MODE_FLAG_PHSYNC;
714 else
715 flags |= DRM_MODE_FLAG_NHSYNC;
716
717 if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
718 flags |= DRM_MODE_FLAG_PVSYNC;
719 else
720 flags |= DRM_MODE_FLAG_NVSYNC;
721
722 pipe_config->adjusted_mode.flags |= flags;
18442d08
VS
723
724 if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
725 dotclock = pipe_config->port_clock * 2 / 3;
726 else
727 dotclock = pipe_config->port_clock;
728
729 if (HAS_PCH_SPLIT(dev_priv->dev))
730 ironlake_check_encoder_dotclock(pipe_config, dotclock);
731
241bfc38 732 pipe_config->adjusted_mode.crtc_clock = dotclock;
045ac3b5
JB
733}
734
5ab432ef 735static void intel_enable_hdmi(struct intel_encoder *encoder)
7d57382e 736{
5ab432ef 737 struct drm_device *dev = encoder->base.dev;
7d57382e 738 struct drm_i915_private *dev_priv = dev->dev_private;
dc0fa718 739 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
5ab432ef 740 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
7d57382e 741 u32 temp;
2deed761
WF
742 u32 enable_bits = SDVO_ENABLE;
743
744 if (intel_hdmi->has_audio)
745 enable_bits |= SDVO_AUDIO_ENABLE;
7d57382e 746
b242b7f7 747 temp = I915_READ(intel_hdmi->hdmi_reg);
d8a2d0e0 748
7a87c289 749 /* HW workaround for IBX, we need to move the port to transcoder A
dc0fa718
PZ
750 * before disabling it, so restore the transcoder select bit here. */
751 if (HAS_PCH_IBX(dev))
752 enable_bits |= SDVO_PIPE_SEL(intel_crtc->pipe);
7a87c289 753
d8a2d0e0
ZW
754 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
755 * we do this anyway which shows more stable in testing.
756 */
c619eed4 757 if (HAS_PCH_SPLIT(dev)) {
b242b7f7
PZ
758 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
759 POSTING_READ(intel_hdmi->hdmi_reg);
d8a2d0e0
ZW
760 }
761
5ab432ef
DV
762 temp |= enable_bits;
763
b242b7f7
PZ
764 I915_WRITE(intel_hdmi->hdmi_reg, temp);
765 POSTING_READ(intel_hdmi->hdmi_reg);
5ab432ef
DV
766
767 /* HW workaround, need to write this twice for issue that may result
768 * in first write getting masked.
769 */
770 if (HAS_PCH_SPLIT(dev)) {
b242b7f7
PZ
771 I915_WRITE(intel_hdmi->hdmi_reg, temp);
772 POSTING_READ(intel_hdmi->hdmi_reg);
7d57382e 773 }
b76cf76b 774}
89b667f8 775
b76cf76b
JN
776static void vlv_enable_hdmi(struct intel_encoder *encoder)
777{
5ab432ef
DV
778}
779
780static void intel_disable_hdmi(struct intel_encoder *encoder)
781{
782 struct drm_device *dev = encoder->base.dev;
783 struct drm_i915_private *dev_priv = dev->dev_private;
784 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
785 u32 temp;
3cce574f 786 u32 enable_bits = SDVO_ENABLE | SDVO_AUDIO_ENABLE;
5ab432ef 787
b242b7f7 788 temp = I915_READ(intel_hdmi->hdmi_reg);
5ab432ef
DV
789
790 /* HW workaround for IBX, we need to move the port to transcoder A
791 * before disabling it. */
792 if (HAS_PCH_IBX(dev)) {
793 struct drm_crtc *crtc = encoder->base.crtc;
794 int pipe = crtc ? to_intel_crtc(crtc)->pipe : -1;
795
796 if (temp & SDVO_PIPE_B_SELECT) {
797 temp &= ~SDVO_PIPE_B_SELECT;
b242b7f7
PZ
798 I915_WRITE(intel_hdmi->hdmi_reg, temp);
799 POSTING_READ(intel_hdmi->hdmi_reg);
5ab432ef
DV
800
801 /* Again we need to write this twice. */
b242b7f7
PZ
802 I915_WRITE(intel_hdmi->hdmi_reg, temp);
803 POSTING_READ(intel_hdmi->hdmi_reg);
5ab432ef
DV
804
805 /* Transcoder selection bits only update
806 * effectively on vblank. */
807 if (crtc)
808 intel_wait_for_vblank(dev, pipe);
809 else
810 msleep(50);
811 }
7d57382e 812 }
d8a2d0e0 813
5ab432ef
DV
814 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
815 * we do this anyway which shows more stable in testing.
816 */
817 if (HAS_PCH_SPLIT(dev)) {
b242b7f7
PZ
818 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
819 POSTING_READ(intel_hdmi->hdmi_reg);
5ab432ef
DV
820 }
821
822 temp &= ~enable_bits;
d8a2d0e0 823
b242b7f7
PZ
824 I915_WRITE(intel_hdmi->hdmi_reg, temp);
825 POSTING_READ(intel_hdmi->hdmi_reg);
d8a2d0e0
ZW
826
827 /* HW workaround, need to write this twice for issue that may result
828 * in first write getting masked.
829 */
c619eed4 830 if (HAS_PCH_SPLIT(dev)) {
b242b7f7
PZ
831 I915_WRITE(intel_hdmi->hdmi_reg, temp);
832 POSTING_READ(intel_hdmi->hdmi_reg);
d8a2d0e0 833 }
7d57382e
EA
834}
835
7d148ef5
DV
836static int hdmi_portclock_limit(struct intel_hdmi *hdmi)
837{
838 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
839
6375b768 840 if (!hdmi->has_hdmi_sink || IS_G4X(dev))
7d148ef5 841 return 165000;
e3c33578 842 else if (IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8)
7d148ef5
DV
843 return 300000;
844 else
845 return 225000;
846}
847
c19de8eb
DL
848static enum drm_mode_status
849intel_hdmi_mode_valid(struct drm_connector *connector,
850 struct drm_display_mode *mode)
7d57382e 851{
7d148ef5 852 if (mode->clock > hdmi_portclock_limit(intel_attached_hdmi(connector)))
7d57382e
EA
853 return MODE_CLOCK_HIGH;
854 if (mode->clock < 20000)
5cbba41d 855 return MODE_CLOCK_LOW;
7d57382e
EA
856
857 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
858 return MODE_NO_DBLESCAN;
859
860 return MODE_OK;
861}
862
71800632
VS
863static bool hdmi_12bpc_possible(struct intel_crtc *crtc)
864{
865 struct drm_device *dev = crtc->base.dev;
866 struct intel_encoder *encoder;
867 int count = 0, count_hdmi = 0;
868
869 if (!HAS_PCH_SPLIT(dev))
870 return false;
871
872 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
873 if (encoder->new_crtc != crtc)
874 continue;
875
876 count_hdmi += encoder->type == INTEL_OUTPUT_HDMI;
877 count++;
878 }
879
880 /*
881 * HDMI 12bpc affects the clocks, so it's only possible
882 * when not cloning with other encoder types.
883 */
884 return count_hdmi > 0 && count_hdmi == count;
885}
886
5bfe2ac0
DV
887bool intel_hdmi_compute_config(struct intel_encoder *encoder,
888 struct intel_crtc_config *pipe_config)
7d57382e 889{
5bfe2ac0
DV
890 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
891 struct drm_device *dev = encoder->base.dev;
892 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
241bfc38 893 int clock_12bpc = pipe_config->adjusted_mode.crtc_clock * 3 / 2;
7d148ef5 894 int portclock_limit = hdmi_portclock_limit(intel_hdmi);
e29c22c0 895 int desired_bpp;
3685a8f3 896
55bc60db
VS
897 if (intel_hdmi->color_range_auto) {
898 /* See CEA-861-E - 5.1 Default Encoding Parameters */
899 if (intel_hdmi->has_hdmi_sink &&
18316c8c 900 drm_match_cea_mode(adjusted_mode) > 1)
4f3a8bc7 901 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
55bc60db
VS
902 else
903 intel_hdmi->color_range = 0;
904 }
905
3685a8f3 906 if (intel_hdmi->color_range)
50f3b016 907 pipe_config->limited_color_range = true;
3685a8f3 908
5bfe2ac0
DV
909 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
910 pipe_config->has_pch_encoder = true;
911
4e53c2e0
DV
912 /*
913 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
914 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
325b9d04
DV
915 * outputs. We also need to check that the higher clock still fits
916 * within limits.
4e53c2e0 917 */
6375b768 918 if (pipe_config->pipe_bpp > 8*3 && intel_hdmi->has_hdmi_sink &&
71800632
VS
919 clock_12bpc <= portclock_limit &&
920 hdmi_12bpc_possible(encoder->new_crtc)) {
e29c22c0
DV
921 DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
922 desired_bpp = 12*3;
325b9d04
DV
923
924 /* Need to adjust the port link by 1.5x for 12bpc. */
ff9a6750 925 pipe_config->port_clock = clock_12bpc;
4e53c2e0 926 } else {
e29c22c0
DV
927 DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
928 desired_bpp = 8*3;
929 }
930
931 if (!pipe_config->bw_constrained) {
932 DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
933 pipe_config->pipe_bpp = desired_bpp;
4e53c2e0
DV
934 }
935
241bfc38 936 if (adjusted_mode->crtc_clock > portclock_limit) {
325b9d04
DV
937 DRM_DEBUG_KMS("too high HDMI clock, rejecting mode\n");
938 return false;
939 }
940
7d57382e
EA
941 return true;
942}
943
aa93d632 944static enum drm_connector_status
930a9e28 945intel_hdmi_detect(struct drm_connector *connector, bool force)
9dff6af8 946{
b0ea7d37 947 struct drm_device *dev = connector->dev;
df0e9248 948 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
d63885da
PZ
949 struct intel_digital_port *intel_dig_port =
950 hdmi_to_dig_port(intel_hdmi);
951 struct intel_encoder *intel_encoder = &intel_dig_port->base;
b0ea7d37 952 struct drm_i915_private *dev_priv = dev->dev_private;
f899fc64 953 struct edid *edid;
671dedd2 954 enum intel_display_power_domain power_domain;
aa93d632 955 enum drm_connector_status status = connector_status_disconnected;
9dff6af8 956
164c8598
CW
957 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
958 connector->base.id, drm_get_connector_name(connector));
959
671dedd2
ID
960 power_domain = intel_display_port_power_domain(intel_encoder);
961 intel_display_power_get(dev_priv, power_domain);
962
ea5b213a 963 intel_hdmi->has_hdmi_sink = false;
2e3d6006 964 intel_hdmi->has_audio = false;
abedc077 965 intel_hdmi->rgb_quant_range_selectable = false;
f899fc64 966 edid = drm_get_edid(connector,
3bd7d909
DK
967 intel_gmbus_get_adapter(dev_priv,
968 intel_hdmi->ddc_bus));
2ded9e27 969
aa93d632 970 if (edid) {
be9f1c4f 971 if (edid->input & DRM_EDID_INPUT_DIGITAL) {
aa93d632 972 status = connector_status_connected;
b1d7e4b4
WF
973 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
974 intel_hdmi->has_hdmi_sink =
975 drm_detect_hdmi_monitor(edid);
2e3d6006 976 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
abedc077
VS
977 intel_hdmi->rgb_quant_range_selectable =
978 drm_rgb_quant_range_selectable(edid);
aa93d632 979 }
aa93d632 980 kfree(edid);
9dff6af8 981 }
30ad48b7 982
55b7d6e8 983 if (status == connector_status_connected) {
b1d7e4b4
WF
984 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
985 intel_hdmi->has_audio =
986 (intel_hdmi->force_audio == HDMI_AUDIO_ON);
d63885da 987 intel_encoder->type = INTEL_OUTPUT_HDMI;
55b7d6e8
CW
988 }
989
671dedd2
ID
990 intel_display_power_put(dev_priv, power_domain);
991
2ded9e27 992 return status;
7d57382e
EA
993}
994
995static int intel_hdmi_get_modes(struct drm_connector *connector)
996{
671dedd2
ID
997 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
998 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);
f899fc64 999 struct drm_i915_private *dev_priv = connector->dev->dev_private;
671dedd2
ID
1000 enum intel_display_power_domain power_domain;
1001 int ret;
7d57382e
EA
1002
1003 /* We should parse the EDID data and find out if it's an HDMI sink so
1004 * we can send audio to it.
1005 */
1006
671dedd2
ID
1007 power_domain = intel_display_port_power_domain(intel_encoder);
1008 intel_display_power_get(dev_priv, power_domain);
1009
1010 ret = intel_ddc_get_modes(connector,
3bd7d909
DK
1011 intel_gmbus_get_adapter(dev_priv,
1012 intel_hdmi->ddc_bus));
671dedd2
ID
1013
1014 intel_display_power_put(dev_priv, power_domain);
1015
1016 return ret;
7d57382e
EA
1017}
1018
1aad7ac0
CW
1019static bool
1020intel_hdmi_detect_audio(struct drm_connector *connector)
1021{
671dedd2
ID
1022 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
1023 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);
1aad7ac0 1024 struct drm_i915_private *dev_priv = connector->dev->dev_private;
671dedd2 1025 enum intel_display_power_domain power_domain;
1aad7ac0
CW
1026 struct edid *edid;
1027 bool has_audio = false;
1028
671dedd2
ID
1029 power_domain = intel_display_port_power_domain(intel_encoder);
1030 intel_display_power_get(dev_priv, power_domain);
1031
1aad7ac0 1032 edid = drm_get_edid(connector,
3bd7d909
DK
1033 intel_gmbus_get_adapter(dev_priv,
1034 intel_hdmi->ddc_bus));
1aad7ac0
CW
1035 if (edid) {
1036 if (edid->input & DRM_EDID_INPUT_DIGITAL)
1037 has_audio = drm_detect_monitor_audio(edid);
1aad7ac0
CW
1038 kfree(edid);
1039 }
1040
671dedd2
ID
1041 intel_display_power_put(dev_priv, power_domain);
1042
1aad7ac0
CW
1043 return has_audio;
1044}
1045
55b7d6e8
CW
1046static int
1047intel_hdmi_set_property(struct drm_connector *connector,
ed517fbb
PZ
1048 struct drm_property *property,
1049 uint64_t val)
55b7d6e8
CW
1050{
1051 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
da63a9f2
PZ
1052 struct intel_digital_port *intel_dig_port =
1053 hdmi_to_dig_port(intel_hdmi);
e953fd7b 1054 struct drm_i915_private *dev_priv = connector->dev->dev_private;
55b7d6e8
CW
1055 int ret;
1056
662595df 1057 ret = drm_object_property_set_value(&connector->base, property, val);
55b7d6e8
CW
1058 if (ret)
1059 return ret;
1060
3f43c48d 1061 if (property == dev_priv->force_audio_property) {
b1d7e4b4 1062 enum hdmi_force_audio i = val;
1aad7ac0
CW
1063 bool has_audio;
1064
1065 if (i == intel_hdmi->force_audio)
55b7d6e8
CW
1066 return 0;
1067
1aad7ac0 1068 intel_hdmi->force_audio = i;
55b7d6e8 1069
b1d7e4b4 1070 if (i == HDMI_AUDIO_AUTO)
1aad7ac0
CW
1071 has_audio = intel_hdmi_detect_audio(connector);
1072 else
b1d7e4b4 1073 has_audio = (i == HDMI_AUDIO_ON);
1aad7ac0 1074
b1d7e4b4
WF
1075 if (i == HDMI_AUDIO_OFF_DVI)
1076 intel_hdmi->has_hdmi_sink = 0;
55b7d6e8 1077
1aad7ac0 1078 intel_hdmi->has_audio = has_audio;
55b7d6e8
CW
1079 goto done;
1080 }
1081
e953fd7b 1082 if (property == dev_priv->broadcast_rgb_property) {
ae4edb80
DV
1083 bool old_auto = intel_hdmi->color_range_auto;
1084 uint32_t old_range = intel_hdmi->color_range;
1085
55bc60db
VS
1086 switch (val) {
1087 case INTEL_BROADCAST_RGB_AUTO:
1088 intel_hdmi->color_range_auto = true;
1089 break;
1090 case INTEL_BROADCAST_RGB_FULL:
1091 intel_hdmi->color_range_auto = false;
1092 intel_hdmi->color_range = 0;
1093 break;
1094 case INTEL_BROADCAST_RGB_LIMITED:
1095 intel_hdmi->color_range_auto = false;
4f3a8bc7 1096 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
55bc60db
VS
1097 break;
1098 default:
1099 return -EINVAL;
1100 }
ae4edb80
DV
1101
1102 if (old_auto == intel_hdmi->color_range_auto &&
1103 old_range == intel_hdmi->color_range)
1104 return 0;
1105
e953fd7b
CW
1106 goto done;
1107 }
1108
55b7d6e8
CW
1109 return -EINVAL;
1110
1111done:
c0c36b94
CW
1112 if (intel_dig_port->base.base.crtc)
1113 intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
55b7d6e8
CW
1114
1115 return 0;
1116}
1117
9514ac6e 1118static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
89b667f8
JB
1119{
1120 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1121 struct drm_device *dev = encoder->base.dev;
1122 struct drm_i915_private *dev_priv = dev->dev_private;
1123 struct intel_crtc *intel_crtc =
1124 to_intel_crtc(encoder->base.crtc);
e4607fcf 1125 enum dpio_channel port = vlv_dport_to_channel(dport);
89b667f8
JB
1126 int pipe = intel_crtc->pipe;
1127 u32 val;
1128
1129 if (!IS_VALLEYVIEW(dev))
1130 return;
1131
89b667f8 1132 /* Enable clock channels for this port */
0980a60f 1133 mutex_lock(&dev_priv->dpio_lock);
ab3c759a 1134 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
89b667f8
JB
1135 val = 0;
1136 if (pipe)
1137 val |= (1<<21);
1138 else
1139 val &= ~(1<<21);
1140 val |= 0x001000c4;
ab3c759a 1141 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
89b667f8
JB
1142
1143 /* HDMI 1.0V-2dB */
ab3c759a
CML
1144 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0);
1145 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), 0x2b245f5f);
1146 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port), 0x5578b83a);
1147 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0c782040);
1148 vlv_dpio_write(dev_priv, pipe, VLV_TX3_DW4(port), 0x2b247878);
1149 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
1150 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1151 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
89b667f8
JB
1152
1153 /* Program lane clock */
ab3c759a
CML
1154 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
1155 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
0980a60f 1156 mutex_unlock(&dev_priv->dpio_lock);
b76cf76b
JN
1157
1158 intel_enable_hdmi(encoder);
1159
e4607fcf 1160 vlv_wait_port_ready(dev_priv, dport);
89b667f8
JB
1161}
1162
9514ac6e 1163static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
89b667f8
JB
1164{
1165 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1166 struct drm_device *dev = encoder->base.dev;
1167 struct drm_i915_private *dev_priv = dev->dev_private;
5e69f97f
CML
1168 struct intel_crtc *intel_crtc =
1169 to_intel_crtc(encoder->base.crtc);
e4607fcf 1170 enum dpio_channel port = vlv_dport_to_channel(dport);
5e69f97f 1171 int pipe = intel_crtc->pipe;
89b667f8
JB
1172
1173 if (!IS_VALLEYVIEW(dev))
1174 return;
1175
89b667f8 1176 /* Program Tx lane resets to default */
0980a60f 1177 mutex_lock(&dev_priv->dpio_lock);
ab3c759a 1178 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
89b667f8
JB
1179 DPIO_PCS_TX_LANE2_RESET |
1180 DPIO_PCS_TX_LANE1_RESET);
ab3c759a 1181 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
89b667f8
JB
1182 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1183 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1184 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1185 DPIO_PCS_CLK_SOFT_RESET);
1186
1187 /* Fix up inter-pair skew failure */
ab3c759a
CML
1188 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
1189 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
1190 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
1191
1192 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1193 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
0980a60f 1194 mutex_unlock(&dev_priv->dpio_lock);
89b667f8
JB
1195}
1196
9514ac6e 1197static void vlv_hdmi_post_disable(struct intel_encoder *encoder)
89b667f8
JB
1198{
1199 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1200 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
5e69f97f
CML
1201 struct intel_crtc *intel_crtc =
1202 to_intel_crtc(encoder->base.crtc);
e4607fcf 1203 enum dpio_channel port = vlv_dport_to_channel(dport);
5e69f97f 1204 int pipe = intel_crtc->pipe;
89b667f8
JB
1205
1206 /* Reset lanes to avoid HDMI flicker (VLV w/a) */
1207 mutex_lock(&dev_priv->dpio_lock);
ab3c759a
CML
1208 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), 0x00000000);
1209 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port), 0x00e00060);
89b667f8
JB
1210 mutex_unlock(&dev_priv->dpio_lock);
1211}
1212
7d57382e
EA
1213static void intel_hdmi_destroy(struct drm_connector *connector)
1214{
7d57382e 1215 drm_connector_cleanup(connector);
674e2d08 1216 kfree(connector);
7d57382e
EA
1217}
1218
7d57382e 1219static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
5ab432ef 1220 .dpms = intel_connector_dpms,
7d57382e
EA
1221 .detect = intel_hdmi_detect,
1222 .fill_modes = drm_helper_probe_single_connector_modes,
55b7d6e8 1223 .set_property = intel_hdmi_set_property,
7d57382e
EA
1224 .destroy = intel_hdmi_destroy,
1225};
1226
1227static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
1228 .get_modes = intel_hdmi_get_modes,
1229 .mode_valid = intel_hdmi_mode_valid,
df0e9248 1230 .best_encoder = intel_best_encoder,
7d57382e
EA
1231};
1232
7d57382e 1233static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
ea5b213a 1234 .destroy = intel_encoder_destroy,
7d57382e
EA
1235};
1236
55b7d6e8
CW
1237static void
1238intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
1239{
3f43c48d 1240 intel_attach_force_audio_property(connector);
e953fd7b 1241 intel_attach_broadcast_rgb_property(connector);
55bc60db 1242 intel_hdmi->color_range_auto = true;
55b7d6e8
CW
1243}
1244
00c09d70
PZ
1245void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
1246 struct intel_connector *intel_connector)
7d57382e 1247{
b9cb234c
PZ
1248 struct drm_connector *connector = &intel_connector->base;
1249 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
1250 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1251 struct drm_device *dev = intel_encoder->base.dev;
7d57382e 1252 struct drm_i915_private *dev_priv = dev->dev_private;
174edf1f 1253 enum port port = intel_dig_port->port;
373a3cf7 1254
7d57382e 1255 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
8d91104a 1256 DRM_MODE_CONNECTOR_HDMIA);
7d57382e
EA
1257 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
1258
c3febcc4 1259 connector->interlace_allowed = 1;
7d57382e 1260 connector->doublescan_allowed = 0;
573e74ad 1261 connector->stereo_allowed = 1;
66a9278e 1262
08d644ad
DV
1263 switch (port) {
1264 case PORT_B:
f899fc64 1265 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
1d843f9d 1266 intel_encoder->hpd_pin = HPD_PORT_B;
08d644ad
DV
1267 break;
1268 case PORT_C:
7ceae0a5 1269 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
1d843f9d 1270 intel_encoder->hpd_pin = HPD_PORT_C;
08d644ad
DV
1271 break;
1272 case PORT_D:
7ceae0a5 1273 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
1d843f9d 1274 intel_encoder->hpd_pin = HPD_PORT_D;
08d644ad
DV
1275 break;
1276 case PORT_A:
1d843f9d 1277 intel_encoder->hpd_pin = HPD_PORT_A;
08d644ad
DV
1278 /* Internal port only for eDP. */
1279 default:
6e4c1677 1280 BUG();
f8aed700 1281 }
7d57382e 1282
7637bfdb 1283 if (IS_VALLEYVIEW(dev)) {
90b107c8 1284 intel_hdmi->write_infoframe = vlv_write_infoframe;
687f4d06 1285 intel_hdmi->set_infoframes = vlv_set_infoframes;
7637bfdb
JB
1286 } else if (!HAS_PCH_SPLIT(dev)) {
1287 intel_hdmi->write_infoframe = g4x_write_infoframe;
1288 intel_hdmi->set_infoframes = g4x_set_infoframes;
22b8bf17 1289 } else if (HAS_DDI(dev)) {
8c5f5f7c 1290 intel_hdmi->write_infoframe = hsw_write_infoframe;
687f4d06 1291 intel_hdmi->set_infoframes = hsw_set_infoframes;
fdf1250a
PZ
1292 } else if (HAS_PCH_IBX(dev)) {
1293 intel_hdmi->write_infoframe = ibx_write_infoframe;
687f4d06 1294 intel_hdmi->set_infoframes = ibx_set_infoframes;
fdf1250a
PZ
1295 } else {
1296 intel_hdmi->write_infoframe = cpt_write_infoframe;
687f4d06 1297 intel_hdmi->set_infoframes = cpt_set_infoframes;
64a8fc01 1298 }
45187ace 1299
affa9354 1300 if (HAS_DDI(dev))
bcbc889b
PZ
1301 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
1302 else
1303 intel_connector->get_hw_state = intel_connector_get_hw_state;
4932e2c3 1304 intel_connector->unregister = intel_connector_unregister;
b9cb234c
PZ
1305
1306 intel_hdmi_add_properties(intel_hdmi, connector);
1307
1308 intel_connector_attach_encoder(intel_connector, intel_encoder);
1309 drm_sysfs_connector_add(connector);
1310
1311 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
1312 * 0xd. Failure to do so will result in spurious interrupts being
1313 * generated on the port when a cable is not attached.
1314 */
1315 if (IS_G4X(dev) && !IS_GM45(dev)) {
1316 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
1317 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
1318 }
1319}
1320
b242b7f7 1321void intel_hdmi_init(struct drm_device *dev, int hdmi_reg, enum port port)
b9cb234c
PZ
1322{
1323 struct intel_digital_port *intel_dig_port;
1324 struct intel_encoder *intel_encoder;
b9cb234c
PZ
1325 struct intel_connector *intel_connector;
1326
b14c5679 1327 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
b9cb234c
PZ
1328 if (!intel_dig_port)
1329 return;
1330
b14c5679 1331 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
b9cb234c
PZ
1332 if (!intel_connector) {
1333 kfree(intel_dig_port);
1334 return;
1335 }
1336
1337 intel_encoder = &intel_dig_port->base;
b9cb234c
PZ
1338
1339 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
1340 DRM_MODE_ENCODER_TMDS);
00c09d70 1341
5bfe2ac0 1342 intel_encoder->compute_config = intel_hdmi_compute_config;
c59423a3 1343 intel_encoder->mode_set = intel_hdmi_mode_set;
00c09d70
PZ
1344 intel_encoder->disable = intel_disable_hdmi;
1345 intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
045ac3b5 1346 intel_encoder->get_config = intel_hdmi_get_config;
89b667f8 1347 if (IS_VALLEYVIEW(dev)) {
9514ac6e
CML
1348 intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
1349 intel_encoder->pre_enable = vlv_hdmi_pre_enable;
b76cf76b 1350 intel_encoder->enable = vlv_enable_hdmi;
9514ac6e 1351 intel_encoder->post_disable = vlv_hdmi_post_disable;
b76cf76b
JN
1352 } else {
1353 intel_encoder->enable = intel_enable_hdmi;
89b667f8 1354 }
5ab432ef 1355
b9cb234c
PZ
1356 intel_encoder->type = INTEL_OUTPUT_HDMI;
1357 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
301ea74a 1358 intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
c6f1495d
VS
1359 /*
1360 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
1361 * to work on real hardware. And since g4x can send infoframes to
1362 * only one port anyway, nothing is lost by allowing it.
1363 */
1364 if (IS_G4X(dev))
1365 intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
7d57382e 1366
174edf1f 1367 intel_dig_port->port = port;
b242b7f7 1368 intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
b9cb234c 1369 intel_dig_port->dp.output_reg = 0;
55b7d6e8 1370
b9cb234c 1371 intel_hdmi_init_connector(intel_dig_port, intel_connector);
7d57382e 1372}
This page took 0.417531 seconds and 5 git commands to generate.