drm/i916: Refactor WM register maximums
[linux-2.6-block.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
PZ
559 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
560 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
561 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
562 u32 reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
563 u32 val = I915_READ(reg);
564
afba0188
DV
565 assert_hdmi_port_disabled(intel_hdmi);
566
0c14c7f9
PZ
567 /* See the big comment in g4x_set_infoframes() */
568 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
569
570 if (!intel_hdmi->has_hdmi_sink) {
571 if (!(val & VIDEO_DIP_ENABLE))
572 return;
573 val &= ~VIDEO_DIP_ENABLE;
574 I915_WRITE(reg, val);
9d9740f0 575 POSTING_READ(reg);
0c14c7f9
PZ
576 return;
577 }
578
822974ae 579 val |= VIDEO_DIP_ENABLE;
0dd87d20
PZ
580 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
581 VIDEO_DIP_ENABLE_GCP);
822974ae
PZ
582
583 I915_WRITE(reg, val);
9d9740f0 584 POSTING_READ(reg);
822974ae 585
687f4d06
PZ
586 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
587 intel_hdmi_set_spd_infoframe(encoder);
c8bb75af 588 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
687f4d06
PZ
589}
590
591static void hsw_set_infoframes(struct drm_encoder *encoder,
592 struct drm_display_mode *adjusted_mode)
593{
0c14c7f9
PZ
594 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
595 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
596 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
3b117c8f 597 u32 reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config.cpu_transcoder);
0dd87d20 598 u32 val = I915_READ(reg);
0c14c7f9 599
afba0188
DV
600 assert_hdmi_port_disabled(intel_hdmi);
601
0c14c7f9
PZ
602 if (!intel_hdmi->has_hdmi_sink) {
603 I915_WRITE(reg, 0);
9d9740f0 604 POSTING_READ(reg);
0c14c7f9
PZ
605 return;
606 }
607
0dd87d20
PZ
608 val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_GCP_HSW |
609 VIDEO_DIP_ENABLE_VS_HSW | VIDEO_DIP_ENABLE_GMP_HSW);
610
611 I915_WRITE(reg, val);
9d9740f0 612 POSTING_READ(reg);
0dd87d20 613
687f4d06
PZ
614 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
615 intel_hdmi_set_spd_infoframe(encoder);
c8bb75af 616 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
687f4d06
PZ
617}
618
c59423a3 619static void intel_hdmi_mode_set(struct intel_encoder *encoder)
7d57382e 620{
c59423a3 621 struct drm_device *dev = encoder->base.dev;
7d57382e 622 struct drm_i915_private *dev_priv = dev->dev_private;
c59423a3
DV
623 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
624 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
625 struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode;
b242b7f7 626 u32 hdmi_val;
7d57382e 627
b242b7f7 628 hdmi_val = SDVO_ENCODING_HDMI;
2af2c490 629 if (!HAS_PCH_SPLIT(dev))
b242b7f7 630 hdmi_val |= intel_hdmi->color_range;
b599c0bc 631 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
b242b7f7 632 hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
b599c0bc 633 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
b242b7f7 634 hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
7d57382e 635
c59423a3 636 if (crtc->config.pipe_bpp > 24)
4f3a8bc7 637 hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
020f6704 638 else
4f3a8bc7 639 hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
020f6704 640
2e3d6006
ZW
641 /* Required on CPT */
642 if (intel_hdmi->has_hdmi_sink && HAS_PCH_CPT(dev))
dc0fa718 643 hdmi_val |= HDMI_MODE_SELECT_HDMI;
2e3d6006 644
3c17fe4b 645 if (intel_hdmi->has_audio) {
e0dac65e 646 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
c59423a3 647 pipe_name(crtc->pipe));
b242b7f7 648 hdmi_val |= SDVO_AUDIO_ENABLE;
dc0fa718 649 hdmi_val |= HDMI_MODE_SELECT_HDMI;
c59423a3 650 intel_write_eld(&encoder->base, adjusted_mode);
3c17fe4b 651 }
7d57382e 652
75770564 653 if (HAS_PCH_CPT(dev))
c59423a3 654 hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
dc0fa718 655 else
c59423a3 656 hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
7d57382e 657
b242b7f7
PZ
658 I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
659 POSTING_READ(intel_hdmi->hdmi_reg);
3c17fe4b 660
c59423a3 661 intel_hdmi->set_infoframes(&encoder->base, adjusted_mode);
7d57382e
EA
662}
663
85234cdc
DV
664static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
665 enum pipe *pipe)
7d57382e 666{
85234cdc 667 struct drm_device *dev = encoder->base.dev;
7d57382e 668 struct drm_i915_private *dev_priv = dev->dev_private;
85234cdc 669 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
6d129bea 670 enum intel_display_power_domain power_domain;
85234cdc
DV
671 u32 tmp;
672
6d129bea
ID
673 power_domain = intel_display_port_power_domain(encoder);
674 if (!intel_display_power_enabled(dev_priv, power_domain))
675 return false;
676
b242b7f7 677 tmp = I915_READ(intel_hdmi->hdmi_reg);
85234cdc
DV
678
679 if (!(tmp & SDVO_ENABLE))
680 return false;
681
682 if (HAS_PCH_CPT(dev))
683 *pipe = PORT_TO_PIPE_CPT(tmp);
684 else
685 *pipe = PORT_TO_PIPE(tmp);
686
687 return true;
688}
689
045ac3b5
JB
690static void intel_hdmi_get_config(struct intel_encoder *encoder,
691 struct intel_crtc_config *pipe_config)
692{
693 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
694 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
695 u32 tmp, flags = 0;
18442d08 696 int dotclock;
045ac3b5
JB
697
698 tmp = I915_READ(intel_hdmi->hdmi_reg);
699
700 if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
701 flags |= DRM_MODE_FLAG_PHSYNC;
702 else
703 flags |= DRM_MODE_FLAG_NHSYNC;
704
705 if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
706 flags |= DRM_MODE_FLAG_PVSYNC;
707 else
708 flags |= DRM_MODE_FLAG_NVSYNC;
709
710 pipe_config->adjusted_mode.flags |= flags;
18442d08
VS
711
712 if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
713 dotclock = pipe_config->port_clock * 2 / 3;
714 else
715 dotclock = pipe_config->port_clock;
716
717 if (HAS_PCH_SPLIT(dev_priv->dev))
718 ironlake_check_encoder_dotclock(pipe_config, dotclock);
719
241bfc38 720 pipe_config->adjusted_mode.crtc_clock = dotclock;
045ac3b5
JB
721}
722
5ab432ef 723static void intel_enable_hdmi(struct intel_encoder *encoder)
7d57382e 724{
5ab432ef 725 struct drm_device *dev = encoder->base.dev;
7d57382e 726 struct drm_i915_private *dev_priv = dev->dev_private;
dc0fa718 727 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
5ab432ef 728 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
7d57382e 729 u32 temp;
2deed761
WF
730 u32 enable_bits = SDVO_ENABLE;
731
732 if (intel_hdmi->has_audio)
733 enable_bits |= SDVO_AUDIO_ENABLE;
7d57382e 734
b242b7f7 735 temp = I915_READ(intel_hdmi->hdmi_reg);
d8a2d0e0 736
7a87c289 737 /* HW workaround for IBX, we need to move the port to transcoder A
dc0fa718
PZ
738 * before disabling it, so restore the transcoder select bit here. */
739 if (HAS_PCH_IBX(dev))
740 enable_bits |= SDVO_PIPE_SEL(intel_crtc->pipe);
7a87c289 741
d8a2d0e0
ZW
742 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
743 * we do this anyway which shows more stable in testing.
744 */
c619eed4 745 if (HAS_PCH_SPLIT(dev)) {
b242b7f7
PZ
746 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
747 POSTING_READ(intel_hdmi->hdmi_reg);
d8a2d0e0
ZW
748 }
749
5ab432ef
DV
750 temp |= enable_bits;
751
b242b7f7
PZ
752 I915_WRITE(intel_hdmi->hdmi_reg, temp);
753 POSTING_READ(intel_hdmi->hdmi_reg);
5ab432ef
DV
754
755 /* HW workaround, need to write this twice for issue that may result
756 * in first write getting masked.
757 */
758 if (HAS_PCH_SPLIT(dev)) {
b242b7f7
PZ
759 I915_WRITE(intel_hdmi->hdmi_reg, temp);
760 POSTING_READ(intel_hdmi->hdmi_reg);
7d57382e 761 }
b76cf76b 762}
89b667f8 763
b76cf76b
JN
764static void vlv_enable_hdmi(struct intel_encoder *encoder)
765{
5ab432ef
DV
766}
767
768static void intel_disable_hdmi(struct intel_encoder *encoder)
769{
770 struct drm_device *dev = encoder->base.dev;
771 struct drm_i915_private *dev_priv = dev->dev_private;
772 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
773 u32 temp;
3cce574f 774 u32 enable_bits = SDVO_ENABLE | SDVO_AUDIO_ENABLE;
5ab432ef 775
b242b7f7 776 temp = I915_READ(intel_hdmi->hdmi_reg);
5ab432ef
DV
777
778 /* HW workaround for IBX, we need to move the port to transcoder A
779 * before disabling it. */
780 if (HAS_PCH_IBX(dev)) {
781 struct drm_crtc *crtc = encoder->base.crtc;
782 int pipe = crtc ? to_intel_crtc(crtc)->pipe : -1;
783
784 if (temp & SDVO_PIPE_B_SELECT) {
785 temp &= ~SDVO_PIPE_B_SELECT;
b242b7f7
PZ
786 I915_WRITE(intel_hdmi->hdmi_reg, temp);
787 POSTING_READ(intel_hdmi->hdmi_reg);
5ab432ef
DV
788
789 /* Again we need to write this twice. */
b242b7f7
PZ
790 I915_WRITE(intel_hdmi->hdmi_reg, temp);
791 POSTING_READ(intel_hdmi->hdmi_reg);
5ab432ef
DV
792
793 /* Transcoder selection bits only update
794 * effectively on vblank. */
795 if (crtc)
796 intel_wait_for_vblank(dev, pipe);
797 else
798 msleep(50);
799 }
7d57382e 800 }
d8a2d0e0 801
5ab432ef
DV
802 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
803 * we do this anyway which shows more stable in testing.
804 */
805 if (HAS_PCH_SPLIT(dev)) {
b242b7f7
PZ
806 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
807 POSTING_READ(intel_hdmi->hdmi_reg);
5ab432ef
DV
808 }
809
810 temp &= ~enable_bits;
d8a2d0e0 811
b242b7f7
PZ
812 I915_WRITE(intel_hdmi->hdmi_reg, temp);
813 POSTING_READ(intel_hdmi->hdmi_reg);
d8a2d0e0
ZW
814
815 /* HW workaround, need to write this twice for issue that may result
816 * in first write getting masked.
817 */
c619eed4 818 if (HAS_PCH_SPLIT(dev)) {
b242b7f7
PZ
819 I915_WRITE(intel_hdmi->hdmi_reg, temp);
820 POSTING_READ(intel_hdmi->hdmi_reg);
d8a2d0e0 821 }
7d57382e
EA
822}
823
7d148ef5
DV
824static int hdmi_portclock_limit(struct intel_hdmi *hdmi)
825{
826 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
827
6375b768 828 if (!hdmi->has_hdmi_sink || IS_G4X(dev))
7d148ef5 829 return 165000;
e3c33578 830 else if (IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8)
7d148ef5
DV
831 return 300000;
832 else
833 return 225000;
834}
835
c19de8eb
DL
836static enum drm_mode_status
837intel_hdmi_mode_valid(struct drm_connector *connector,
838 struct drm_display_mode *mode)
7d57382e 839{
7d148ef5 840 if (mode->clock > hdmi_portclock_limit(intel_attached_hdmi(connector)))
7d57382e
EA
841 return MODE_CLOCK_HIGH;
842 if (mode->clock < 20000)
5cbba41d 843 return MODE_CLOCK_LOW;
7d57382e
EA
844
845 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
846 return MODE_NO_DBLESCAN;
847
848 return MODE_OK;
849}
850
71800632
VS
851static bool hdmi_12bpc_possible(struct intel_crtc *crtc)
852{
853 struct drm_device *dev = crtc->base.dev;
854 struct intel_encoder *encoder;
855 int count = 0, count_hdmi = 0;
856
857 if (!HAS_PCH_SPLIT(dev))
858 return false;
859
860 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
861 if (encoder->new_crtc != crtc)
862 continue;
863
864 count_hdmi += encoder->type == INTEL_OUTPUT_HDMI;
865 count++;
866 }
867
868 /*
869 * HDMI 12bpc affects the clocks, so it's only possible
870 * when not cloning with other encoder types.
871 */
872 return count_hdmi > 0 && count_hdmi == count;
873}
874
5bfe2ac0
DV
875bool intel_hdmi_compute_config(struct intel_encoder *encoder,
876 struct intel_crtc_config *pipe_config)
7d57382e 877{
5bfe2ac0
DV
878 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
879 struct drm_device *dev = encoder->base.dev;
880 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
241bfc38 881 int clock_12bpc = pipe_config->adjusted_mode.crtc_clock * 3 / 2;
7d148ef5 882 int portclock_limit = hdmi_portclock_limit(intel_hdmi);
e29c22c0 883 int desired_bpp;
3685a8f3 884
55bc60db
VS
885 if (intel_hdmi->color_range_auto) {
886 /* See CEA-861-E - 5.1 Default Encoding Parameters */
887 if (intel_hdmi->has_hdmi_sink &&
18316c8c 888 drm_match_cea_mode(adjusted_mode) > 1)
4f3a8bc7 889 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
55bc60db
VS
890 else
891 intel_hdmi->color_range = 0;
892 }
893
3685a8f3 894 if (intel_hdmi->color_range)
50f3b016 895 pipe_config->limited_color_range = true;
3685a8f3 896
5bfe2ac0
DV
897 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
898 pipe_config->has_pch_encoder = true;
899
4e53c2e0
DV
900 /*
901 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
902 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
325b9d04
DV
903 * outputs. We also need to check that the higher clock still fits
904 * within limits.
4e53c2e0 905 */
6375b768 906 if (pipe_config->pipe_bpp > 8*3 && intel_hdmi->has_hdmi_sink &&
71800632
VS
907 clock_12bpc <= portclock_limit &&
908 hdmi_12bpc_possible(encoder->new_crtc)) {
e29c22c0
DV
909 DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
910 desired_bpp = 12*3;
325b9d04
DV
911
912 /* Need to adjust the port link by 1.5x for 12bpc. */
ff9a6750 913 pipe_config->port_clock = clock_12bpc;
4e53c2e0 914 } else {
e29c22c0
DV
915 DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
916 desired_bpp = 8*3;
917 }
918
919 if (!pipe_config->bw_constrained) {
920 DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
921 pipe_config->pipe_bpp = desired_bpp;
4e53c2e0
DV
922 }
923
241bfc38 924 if (adjusted_mode->crtc_clock > portclock_limit) {
325b9d04
DV
925 DRM_DEBUG_KMS("too high HDMI clock, rejecting mode\n");
926 return false;
927 }
928
7d57382e
EA
929 return true;
930}
931
aa93d632 932static enum drm_connector_status
930a9e28 933intel_hdmi_detect(struct drm_connector *connector, bool force)
9dff6af8 934{
b0ea7d37 935 struct drm_device *dev = connector->dev;
df0e9248 936 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
d63885da
PZ
937 struct intel_digital_port *intel_dig_port =
938 hdmi_to_dig_port(intel_hdmi);
939 struct intel_encoder *intel_encoder = &intel_dig_port->base;
b0ea7d37 940 struct drm_i915_private *dev_priv = dev->dev_private;
f899fc64 941 struct edid *edid;
671dedd2 942 enum intel_display_power_domain power_domain;
aa93d632 943 enum drm_connector_status status = connector_status_disconnected;
9dff6af8 944
164c8598
CW
945 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
946 connector->base.id, drm_get_connector_name(connector));
947
671dedd2
ID
948 power_domain = intel_display_port_power_domain(intel_encoder);
949 intel_display_power_get(dev_priv, power_domain);
950
ea5b213a 951 intel_hdmi->has_hdmi_sink = false;
2e3d6006 952 intel_hdmi->has_audio = false;
abedc077 953 intel_hdmi->rgb_quant_range_selectable = false;
f899fc64 954 edid = drm_get_edid(connector,
3bd7d909
DK
955 intel_gmbus_get_adapter(dev_priv,
956 intel_hdmi->ddc_bus));
2ded9e27 957
aa93d632 958 if (edid) {
be9f1c4f 959 if (edid->input & DRM_EDID_INPUT_DIGITAL) {
aa93d632 960 status = connector_status_connected;
b1d7e4b4
WF
961 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
962 intel_hdmi->has_hdmi_sink =
963 drm_detect_hdmi_monitor(edid);
2e3d6006 964 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
abedc077
VS
965 intel_hdmi->rgb_quant_range_selectable =
966 drm_rgb_quant_range_selectable(edid);
aa93d632 967 }
aa93d632 968 kfree(edid);
9dff6af8 969 }
30ad48b7 970
55b7d6e8 971 if (status == connector_status_connected) {
b1d7e4b4
WF
972 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
973 intel_hdmi->has_audio =
974 (intel_hdmi->force_audio == HDMI_AUDIO_ON);
d63885da 975 intel_encoder->type = INTEL_OUTPUT_HDMI;
55b7d6e8
CW
976 }
977
671dedd2
ID
978 intel_display_power_put(dev_priv, power_domain);
979
2ded9e27 980 return status;
7d57382e
EA
981}
982
983static int intel_hdmi_get_modes(struct drm_connector *connector)
984{
671dedd2
ID
985 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
986 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);
f899fc64 987 struct drm_i915_private *dev_priv = connector->dev->dev_private;
671dedd2
ID
988 enum intel_display_power_domain power_domain;
989 int ret;
7d57382e
EA
990
991 /* We should parse the EDID data and find out if it's an HDMI sink so
992 * we can send audio to it.
993 */
994
671dedd2
ID
995 power_domain = intel_display_port_power_domain(intel_encoder);
996 intel_display_power_get(dev_priv, power_domain);
997
998 ret = intel_ddc_get_modes(connector,
3bd7d909
DK
999 intel_gmbus_get_adapter(dev_priv,
1000 intel_hdmi->ddc_bus));
671dedd2
ID
1001
1002 intel_display_power_put(dev_priv, power_domain);
1003
1004 return ret;
7d57382e
EA
1005}
1006
1aad7ac0
CW
1007static bool
1008intel_hdmi_detect_audio(struct drm_connector *connector)
1009{
671dedd2
ID
1010 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
1011 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);
1aad7ac0 1012 struct drm_i915_private *dev_priv = connector->dev->dev_private;
671dedd2 1013 enum intel_display_power_domain power_domain;
1aad7ac0
CW
1014 struct edid *edid;
1015 bool has_audio = false;
1016
671dedd2
ID
1017 power_domain = intel_display_port_power_domain(intel_encoder);
1018 intel_display_power_get(dev_priv, power_domain);
1019
1aad7ac0 1020 edid = drm_get_edid(connector,
3bd7d909
DK
1021 intel_gmbus_get_adapter(dev_priv,
1022 intel_hdmi->ddc_bus));
1aad7ac0
CW
1023 if (edid) {
1024 if (edid->input & DRM_EDID_INPUT_DIGITAL)
1025 has_audio = drm_detect_monitor_audio(edid);
1aad7ac0
CW
1026 kfree(edid);
1027 }
1028
671dedd2
ID
1029 intel_display_power_put(dev_priv, power_domain);
1030
1aad7ac0
CW
1031 return has_audio;
1032}
1033
55b7d6e8
CW
1034static int
1035intel_hdmi_set_property(struct drm_connector *connector,
ed517fbb
PZ
1036 struct drm_property *property,
1037 uint64_t val)
55b7d6e8
CW
1038{
1039 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
da63a9f2
PZ
1040 struct intel_digital_port *intel_dig_port =
1041 hdmi_to_dig_port(intel_hdmi);
e953fd7b 1042 struct drm_i915_private *dev_priv = connector->dev->dev_private;
55b7d6e8
CW
1043 int ret;
1044
662595df 1045 ret = drm_object_property_set_value(&connector->base, property, val);
55b7d6e8
CW
1046 if (ret)
1047 return ret;
1048
3f43c48d 1049 if (property == dev_priv->force_audio_property) {
b1d7e4b4 1050 enum hdmi_force_audio i = val;
1aad7ac0
CW
1051 bool has_audio;
1052
1053 if (i == intel_hdmi->force_audio)
55b7d6e8
CW
1054 return 0;
1055
1aad7ac0 1056 intel_hdmi->force_audio = i;
55b7d6e8 1057
b1d7e4b4 1058 if (i == HDMI_AUDIO_AUTO)
1aad7ac0
CW
1059 has_audio = intel_hdmi_detect_audio(connector);
1060 else
b1d7e4b4 1061 has_audio = (i == HDMI_AUDIO_ON);
1aad7ac0 1062
b1d7e4b4
WF
1063 if (i == HDMI_AUDIO_OFF_DVI)
1064 intel_hdmi->has_hdmi_sink = 0;
55b7d6e8 1065
1aad7ac0 1066 intel_hdmi->has_audio = has_audio;
55b7d6e8
CW
1067 goto done;
1068 }
1069
e953fd7b 1070 if (property == dev_priv->broadcast_rgb_property) {
ae4edb80
DV
1071 bool old_auto = intel_hdmi->color_range_auto;
1072 uint32_t old_range = intel_hdmi->color_range;
1073
55bc60db
VS
1074 switch (val) {
1075 case INTEL_BROADCAST_RGB_AUTO:
1076 intel_hdmi->color_range_auto = true;
1077 break;
1078 case INTEL_BROADCAST_RGB_FULL:
1079 intel_hdmi->color_range_auto = false;
1080 intel_hdmi->color_range = 0;
1081 break;
1082 case INTEL_BROADCAST_RGB_LIMITED:
1083 intel_hdmi->color_range_auto = false;
4f3a8bc7 1084 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
55bc60db
VS
1085 break;
1086 default:
1087 return -EINVAL;
1088 }
ae4edb80
DV
1089
1090 if (old_auto == intel_hdmi->color_range_auto &&
1091 old_range == intel_hdmi->color_range)
1092 return 0;
1093
e953fd7b
CW
1094 goto done;
1095 }
1096
55b7d6e8
CW
1097 return -EINVAL;
1098
1099done:
c0c36b94
CW
1100 if (intel_dig_port->base.base.crtc)
1101 intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
55b7d6e8
CW
1102
1103 return 0;
1104}
1105
9514ac6e 1106static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
89b667f8
JB
1107{
1108 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1109 struct drm_device *dev = encoder->base.dev;
1110 struct drm_i915_private *dev_priv = dev->dev_private;
1111 struct intel_crtc *intel_crtc =
1112 to_intel_crtc(encoder->base.crtc);
e4607fcf 1113 enum dpio_channel port = vlv_dport_to_channel(dport);
89b667f8
JB
1114 int pipe = intel_crtc->pipe;
1115 u32 val;
1116
1117 if (!IS_VALLEYVIEW(dev))
1118 return;
1119
89b667f8 1120 /* Enable clock channels for this port */
0980a60f 1121 mutex_lock(&dev_priv->dpio_lock);
ab3c759a 1122 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
89b667f8
JB
1123 val = 0;
1124 if (pipe)
1125 val |= (1<<21);
1126 else
1127 val &= ~(1<<21);
1128 val |= 0x001000c4;
ab3c759a 1129 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
89b667f8
JB
1130
1131 /* HDMI 1.0V-2dB */
ab3c759a
CML
1132 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0);
1133 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), 0x2b245f5f);
1134 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port), 0x5578b83a);
1135 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0c782040);
1136 vlv_dpio_write(dev_priv, pipe, VLV_TX3_DW4(port), 0x2b247878);
1137 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
1138 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1139 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
89b667f8
JB
1140
1141 /* Program lane clock */
ab3c759a
CML
1142 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
1143 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
0980a60f 1144 mutex_unlock(&dev_priv->dpio_lock);
b76cf76b
JN
1145
1146 intel_enable_hdmi(encoder);
1147
e4607fcf 1148 vlv_wait_port_ready(dev_priv, dport);
89b667f8
JB
1149}
1150
9514ac6e 1151static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
89b667f8
JB
1152{
1153 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1154 struct drm_device *dev = encoder->base.dev;
1155 struct drm_i915_private *dev_priv = dev->dev_private;
5e69f97f
CML
1156 struct intel_crtc *intel_crtc =
1157 to_intel_crtc(encoder->base.crtc);
e4607fcf 1158 enum dpio_channel port = vlv_dport_to_channel(dport);
5e69f97f 1159 int pipe = intel_crtc->pipe;
89b667f8
JB
1160
1161 if (!IS_VALLEYVIEW(dev))
1162 return;
1163
89b667f8 1164 /* Program Tx lane resets to default */
0980a60f 1165 mutex_lock(&dev_priv->dpio_lock);
ab3c759a 1166 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
89b667f8
JB
1167 DPIO_PCS_TX_LANE2_RESET |
1168 DPIO_PCS_TX_LANE1_RESET);
ab3c759a 1169 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
89b667f8
JB
1170 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1171 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1172 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1173 DPIO_PCS_CLK_SOFT_RESET);
1174
1175 /* Fix up inter-pair skew failure */
ab3c759a
CML
1176 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
1177 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
1178 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
1179
1180 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1181 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
0980a60f 1182 mutex_unlock(&dev_priv->dpio_lock);
89b667f8
JB
1183}
1184
9514ac6e 1185static void vlv_hdmi_post_disable(struct intel_encoder *encoder)
89b667f8
JB
1186{
1187 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1188 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
5e69f97f
CML
1189 struct intel_crtc *intel_crtc =
1190 to_intel_crtc(encoder->base.crtc);
e4607fcf 1191 enum dpio_channel port = vlv_dport_to_channel(dport);
5e69f97f 1192 int pipe = intel_crtc->pipe;
89b667f8
JB
1193
1194 /* Reset lanes to avoid HDMI flicker (VLV w/a) */
1195 mutex_lock(&dev_priv->dpio_lock);
ab3c759a
CML
1196 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), 0x00000000);
1197 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port), 0x00e00060);
89b667f8
JB
1198 mutex_unlock(&dev_priv->dpio_lock);
1199}
1200
7d57382e
EA
1201static void intel_hdmi_destroy(struct drm_connector *connector)
1202{
7d57382e 1203 drm_connector_cleanup(connector);
674e2d08 1204 kfree(connector);
7d57382e
EA
1205}
1206
7d57382e 1207static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
5ab432ef 1208 .dpms = intel_connector_dpms,
7d57382e
EA
1209 .detect = intel_hdmi_detect,
1210 .fill_modes = drm_helper_probe_single_connector_modes,
55b7d6e8 1211 .set_property = intel_hdmi_set_property,
7d57382e
EA
1212 .destroy = intel_hdmi_destroy,
1213};
1214
1215static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
1216 .get_modes = intel_hdmi_get_modes,
1217 .mode_valid = intel_hdmi_mode_valid,
df0e9248 1218 .best_encoder = intel_best_encoder,
7d57382e
EA
1219};
1220
7d57382e 1221static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
ea5b213a 1222 .destroy = intel_encoder_destroy,
7d57382e
EA
1223};
1224
55b7d6e8
CW
1225static void
1226intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
1227{
3f43c48d 1228 intel_attach_force_audio_property(connector);
e953fd7b 1229 intel_attach_broadcast_rgb_property(connector);
55bc60db 1230 intel_hdmi->color_range_auto = true;
55b7d6e8
CW
1231}
1232
00c09d70
PZ
1233void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
1234 struct intel_connector *intel_connector)
7d57382e 1235{
b9cb234c
PZ
1236 struct drm_connector *connector = &intel_connector->base;
1237 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
1238 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1239 struct drm_device *dev = intel_encoder->base.dev;
7d57382e 1240 struct drm_i915_private *dev_priv = dev->dev_private;
174edf1f 1241 enum port port = intel_dig_port->port;
373a3cf7 1242
7d57382e 1243 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
8d91104a 1244 DRM_MODE_CONNECTOR_HDMIA);
7d57382e
EA
1245 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
1246
c3febcc4 1247 connector->interlace_allowed = 1;
7d57382e 1248 connector->doublescan_allowed = 0;
573e74ad 1249 connector->stereo_allowed = 1;
66a9278e 1250
08d644ad
DV
1251 switch (port) {
1252 case PORT_B:
f899fc64 1253 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
1d843f9d 1254 intel_encoder->hpd_pin = HPD_PORT_B;
08d644ad
DV
1255 break;
1256 case PORT_C:
7ceae0a5 1257 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
1d843f9d 1258 intel_encoder->hpd_pin = HPD_PORT_C;
08d644ad
DV
1259 break;
1260 case PORT_D:
7ceae0a5 1261 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
1d843f9d 1262 intel_encoder->hpd_pin = HPD_PORT_D;
08d644ad
DV
1263 break;
1264 case PORT_A:
1d843f9d 1265 intel_encoder->hpd_pin = HPD_PORT_A;
08d644ad
DV
1266 /* Internal port only for eDP. */
1267 default:
6e4c1677 1268 BUG();
f8aed700 1269 }
7d57382e 1270
7637bfdb 1271 if (IS_VALLEYVIEW(dev)) {
90b107c8 1272 intel_hdmi->write_infoframe = vlv_write_infoframe;
687f4d06 1273 intel_hdmi->set_infoframes = vlv_set_infoframes;
7637bfdb
JB
1274 } else if (!HAS_PCH_SPLIT(dev)) {
1275 intel_hdmi->write_infoframe = g4x_write_infoframe;
1276 intel_hdmi->set_infoframes = g4x_set_infoframes;
22b8bf17 1277 } else if (HAS_DDI(dev)) {
8c5f5f7c 1278 intel_hdmi->write_infoframe = hsw_write_infoframe;
687f4d06 1279 intel_hdmi->set_infoframes = hsw_set_infoframes;
fdf1250a
PZ
1280 } else if (HAS_PCH_IBX(dev)) {
1281 intel_hdmi->write_infoframe = ibx_write_infoframe;
687f4d06 1282 intel_hdmi->set_infoframes = ibx_set_infoframes;
fdf1250a
PZ
1283 } else {
1284 intel_hdmi->write_infoframe = cpt_write_infoframe;
687f4d06 1285 intel_hdmi->set_infoframes = cpt_set_infoframes;
64a8fc01 1286 }
45187ace 1287
affa9354 1288 if (HAS_DDI(dev))
bcbc889b
PZ
1289 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
1290 else
1291 intel_connector->get_hw_state = intel_connector_get_hw_state;
4932e2c3 1292 intel_connector->unregister = intel_connector_unregister;
b9cb234c
PZ
1293
1294 intel_hdmi_add_properties(intel_hdmi, connector);
1295
1296 intel_connector_attach_encoder(intel_connector, intel_encoder);
1297 drm_sysfs_connector_add(connector);
1298
1299 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
1300 * 0xd. Failure to do so will result in spurious interrupts being
1301 * generated on the port when a cable is not attached.
1302 */
1303 if (IS_G4X(dev) && !IS_GM45(dev)) {
1304 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
1305 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
1306 }
1307}
1308
b242b7f7 1309void intel_hdmi_init(struct drm_device *dev, int hdmi_reg, enum port port)
b9cb234c
PZ
1310{
1311 struct intel_digital_port *intel_dig_port;
1312 struct intel_encoder *intel_encoder;
b9cb234c
PZ
1313 struct intel_connector *intel_connector;
1314
b14c5679 1315 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
b9cb234c
PZ
1316 if (!intel_dig_port)
1317 return;
1318
b14c5679 1319 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
b9cb234c
PZ
1320 if (!intel_connector) {
1321 kfree(intel_dig_port);
1322 return;
1323 }
1324
1325 intel_encoder = &intel_dig_port->base;
b9cb234c
PZ
1326
1327 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
1328 DRM_MODE_ENCODER_TMDS);
00c09d70 1329
5bfe2ac0 1330 intel_encoder->compute_config = intel_hdmi_compute_config;
c59423a3 1331 intel_encoder->mode_set = intel_hdmi_mode_set;
00c09d70
PZ
1332 intel_encoder->disable = intel_disable_hdmi;
1333 intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
045ac3b5 1334 intel_encoder->get_config = intel_hdmi_get_config;
89b667f8 1335 if (IS_VALLEYVIEW(dev)) {
9514ac6e
CML
1336 intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
1337 intel_encoder->pre_enable = vlv_hdmi_pre_enable;
b76cf76b 1338 intel_encoder->enable = vlv_enable_hdmi;
9514ac6e 1339 intel_encoder->post_disable = vlv_hdmi_post_disable;
b76cf76b
JN
1340 } else {
1341 intel_encoder->enable = intel_enable_hdmi;
89b667f8 1342 }
5ab432ef 1343
b9cb234c
PZ
1344 intel_encoder->type = INTEL_OUTPUT_HDMI;
1345 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
301ea74a 1346 intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
c6f1495d
VS
1347 /*
1348 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
1349 * to work on real hardware. And since g4x can send infoframes to
1350 * only one port anyway, nothing is lost by allowing it.
1351 */
1352 if (IS_G4X(dev))
1353 intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
7d57382e 1354
174edf1f 1355 intel_dig_port->port = port;
b242b7f7 1356 intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
b9cb234c 1357 intel_dig_port->dp.output_reg = 0;
55b7d6e8 1358
b9cb234c 1359 intel_hdmi_init_connector(intel_dig_port, intel_connector);
7d57382e 1360}