blob: a422d83b6efb80b598bc2d2d7b8f22b30aa8ac1a [file] [log] [blame]
Eric Anholt7d573822009-01-02 13:33:00 -08001/*
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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Eric Anholt7d573822009-01-02 13:33:00 -080031#include <linux/delay.h>
Damien Lespiau178f7362013-08-06 20:32:18 +010032#include <linux/hdmi.h>
David Howells760285e2012-10-02 18:01:07 +010033#include <drm/drmP.h>
Matt Roperc6f95f22015-01-22 16:50:32 -080034#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/drm_crtc.h>
36#include <drm/drm_edid.h>
Eric Anholt7d573822009-01-02 13:33:00 -080037#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010038#include <drm/i915_drm.h>
Eric Anholt7d573822009-01-02 13:33:00 -080039#include "i915_drv.h"
40
Paulo Zanoni30add222012-10-26 19:05:45 -020041static struct drm_device *intel_hdmi_to_dev(struct intel_hdmi *intel_hdmi)
42{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020043 return hdmi_to_dig_port(intel_hdmi)->base.base.dev;
Paulo Zanoni30add222012-10-26 19:05:45 -020044}
45
Daniel Vetterafba0182012-06-12 16:36:45 +020046static void
47assert_hdmi_port_disabled(struct intel_hdmi *intel_hdmi)
48{
Paulo Zanoni30add222012-10-26 19:05:45 -020049 struct drm_device *dev = intel_hdmi_to_dev(intel_hdmi);
Daniel Vetterafba0182012-06-12 16:36:45 +020050 struct drm_i915_private *dev_priv = dev->dev_private;
51 uint32_t enabled_bits;
52
Paulo Zanoniaffa9352012-11-23 15:30:39 -020053 enabled_bits = HAS_DDI(dev) ? DDI_BUF_CTL_ENABLE : SDVO_ENABLE;
Daniel Vetterafba0182012-06-12 16:36:45 +020054
Paulo Zanonib242b7f2013-02-18 19:00:26 -030055 WARN(I915_READ(intel_hdmi->hdmi_reg) & enabled_bits,
Daniel Vetterafba0182012-06-12 16:36:45 +020056 "HDMI port enabled, expecting disabled\n");
57}
58
Eugeni Dodonovf5bbfca2012-05-09 15:37:30 -030059struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder)
Chris Wilsonea5b2132010-08-04 13:50:23 +010060{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020061 struct intel_digital_port *intel_dig_port =
62 container_of(encoder, struct intel_digital_port, base.base);
63 return &intel_dig_port->hdmi;
Chris Wilsonea5b2132010-08-04 13:50:23 +010064}
65
Chris Wilsondf0e9242010-09-09 16:20:55 +010066static struct intel_hdmi *intel_attached_hdmi(struct drm_connector *connector)
67{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020068 return enc_to_intel_hdmi(&intel_attached_encoder(connector)->base);
Chris Wilsondf0e9242010-09-09 16:20:55 +010069}
70
Damien Lespiau178f7362013-08-06 20:32:18 +010071static u32 g4x_infoframe_index(enum hdmi_infoframe_type type)
David Härdeman3c17fe42010-09-24 21:44:32 +020072{
Damien Lespiau178f7362013-08-06 20:32:18 +010073 switch (type) {
74 case HDMI_INFOFRAME_TYPE_AVI:
Paulo Zanonied517fb2012-05-14 17:12:50 -030075 return VIDEO_DIP_SELECT_AVI;
Damien Lespiau178f7362013-08-06 20:32:18 +010076 case HDMI_INFOFRAME_TYPE_SPD:
Paulo Zanonied517fb2012-05-14 17:12:50 -030077 return VIDEO_DIP_SELECT_SPD;
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +010078 case HDMI_INFOFRAME_TYPE_VENDOR:
79 return VIDEO_DIP_SELECT_VENDOR;
Jesse Barnes45187ac2011-08-03 09:22:55 -070080 default:
Damien Lespiau178f7362013-08-06 20:32:18 +010081 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
Paulo Zanonied517fb2012-05-14 17:12:50 -030082 return 0;
Jesse Barnes45187ac2011-08-03 09:22:55 -070083 }
Jesse Barnes45187ac2011-08-03 09:22:55 -070084}
85
Damien Lespiau178f7362013-08-06 20:32:18 +010086static u32 g4x_infoframe_enable(enum hdmi_infoframe_type type)
Jesse Barnes45187ac2011-08-03 09:22:55 -070087{
Damien Lespiau178f7362013-08-06 20:32:18 +010088 switch (type) {
89 case HDMI_INFOFRAME_TYPE_AVI:
Paulo Zanonied517fb2012-05-14 17:12:50 -030090 return VIDEO_DIP_ENABLE_AVI;
Damien Lespiau178f7362013-08-06 20:32:18 +010091 case HDMI_INFOFRAME_TYPE_SPD:
Paulo Zanonied517fb2012-05-14 17:12:50 -030092 return VIDEO_DIP_ENABLE_SPD;
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +010093 case HDMI_INFOFRAME_TYPE_VENDOR:
94 return VIDEO_DIP_ENABLE_VENDOR;
Paulo Zanonifa193ff2012-05-04 17:18:20 -030095 default:
Damien Lespiau178f7362013-08-06 20:32:18 +010096 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
Paulo Zanonied517fb2012-05-14 17:12:50 -030097 return 0;
Paulo Zanonifa193ff2012-05-04 17:18:20 -030098 }
Paulo Zanonifa193ff2012-05-04 17:18:20 -030099}
100
Damien Lespiau178f7362013-08-06 20:32:18 +0100101static u32 hsw_infoframe_enable(enum hdmi_infoframe_type type)
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300102{
Damien Lespiau178f7362013-08-06 20:32:18 +0100103 switch (type) {
104 case HDMI_INFOFRAME_TYPE_AVI:
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300105 return VIDEO_DIP_ENABLE_AVI_HSW;
Damien Lespiau178f7362013-08-06 20:32:18 +0100106 case HDMI_INFOFRAME_TYPE_SPD:
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300107 return VIDEO_DIP_ENABLE_SPD_HSW;
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100108 case HDMI_INFOFRAME_TYPE_VENDOR:
109 return VIDEO_DIP_ENABLE_VS_HSW;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300110 default:
Damien Lespiau178f7362013-08-06 20:32:18 +0100111 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300112 return 0;
113 }
114}
115
Damien Lespiau178f7362013-08-06 20:32:18 +0100116static u32 hsw_infoframe_data_reg(enum hdmi_infoframe_type type,
Antti Koskipaaa57c7742014-02-04 14:22:24 +0200117 enum transcoder cpu_transcoder,
118 struct drm_i915_private *dev_priv)
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300119{
Damien Lespiau178f7362013-08-06 20:32:18 +0100120 switch (type) {
121 case HDMI_INFOFRAME_TYPE_AVI:
Rodrigo Vivi7d9bceb2013-02-25 19:55:16 -0300122 return HSW_TVIDEO_DIP_AVI_DATA(cpu_transcoder);
Damien Lespiau178f7362013-08-06 20:32:18 +0100123 case HDMI_INFOFRAME_TYPE_SPD:
Rodrigo Vivi7d9bceb2013-02-25 19:55:16 -0300124 return HSW_TVIDEO_DIP_SPD_DATA(cpu_transcoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100125 case HDMI_INFOFRAME_TYPE_VENDOR:
126 return HSW_TVIDEO_DIP_VS_DATA(cpu_transcoder);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300127 default:
Damien Lespiau178f7362013-08-06 20:32:18 +0100128 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300129 return 0;
130 }
131}
132
Daniel Vettera3da1df2012-05-08 15:19:06 +0200133static void g4x_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100134 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200135 const void *frame, ssize_t len)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700136{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200137 const uint32_t *data = frame;
David Härdeman3c17fe42010-09-24 21:44:32 +0200138 struct drm_device *dev = encoder->dev;
139 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300140 u32 val = I915_READ(VIDEO_DIP_CTL);
Damien Lespiau178f7362013-08-06 20:32:18 +0100141 int i;
David Härdeman3c17fe42010-09-24 21:44:32 +0200142
Paulo Zanoni822974a2012-05-28 16:42:51 -0300143 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
144
Paulo Zanoni1d4f85a2012-05-04 17:18:18 -0300145 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100146 val |= g4x_infoframe_index(type);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700147
Damien Lespiau178f7362013-08-06 20:32:18 +0100148 val &= ~g4x_infoframe_enable(type);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300149
150 I915_WRITE(VIDEO_DIP_CTL, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700151
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300152 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700153 for (i = 0; i < len; i += 4) {
David Härdeman3c17fe42010-09-24 21:44:32 +0200154 I915_WRITE(VIDEO_DIP_DATA, *data);
155 data++;
156 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300157 /* Write every possible data byte to force correct ECC calculation. */
158 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
159 I915_WRITE(VIDEO_DIP_DATA, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300160 mmiowb();
David Härdeman3c17fe42010-09-24 21:44:32 +0200161
Damien Lespiau178f7362013-08-06 20:32:18 +0100162 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300163 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200164 val |= VIDEO_DIP_FREQ_VSYNC;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700165
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300166 I915_WRITE(VIDEO_DIP_CTL, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300167 POSTING_READ(VIDEO_DIP_CTL);
David Härdeman3c17fe42010-09-24 21:44:32 +0200168}
169
Jesse Barnese43823e2014-11-05 14:26:08 -0800170static bool g4x_infoframe_enabled(struct drm_encoder *encoder)
171{
172 struct drm_device *dev = encoder->dev;
173 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes89a35ec2014-11-20 13:24:13 -0800174 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Jesse Barnese43823e2014-11-05 14:26:08 -0800175 u32 val = I915_READ(VIDEO_DIP_CTL);
176
Jesse Barnes89a35ec2014-11-20 13:24:13 -0800177 if (VIDEO_DIP_PORT(intel_dig_port->port) == (val & VIDEO_DIP_PORT_MASK))
178 return val & VIDEO_DIP_ENABLE;
179
180 return false;
Jesse Barnese43823e2014-11-05 14:26:08 -0800181}
182
Paulo Zanonifdf12502012-05-04 17:18:24 -0300183static void ibx_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100184 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200185 const void *frame, ssize_t len)
Paulo Zanonifdf12502012-05-04 17:18:24 -0300186{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200187 const uint32_t *data = frame;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300188 struct drm_device *dev = encoder->dev;
189 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300190 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100191 int i, reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300192 u32 val = I915_READ(reg);
193
Paulo Zanoni822974a2012-05-28 16:42:51 -0300194 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
195
Paulo Zanonifdf12502012-05-04 17:18:24 -0300196 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100197 val |= g4x_infoframe_index(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300198
Damien Lespiau178f7362013-08-06 20:32:18 +0100199 val &= ~g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300200
201 I915_WRITE(reg, val);
202
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300203 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300204 for (i = 0; i < len; i += 4) {
205 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
206 data++;
207 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300208 /* Write every possible data byte to force correct ECC calculation. */
209 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
210 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300211 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300212
Damien Lespiau178f7362013-08-06 20:32:18 +0100213 val |= g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300214 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200215 val |= VIDEO_DIP_FREQ_VSYNC;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300216
217 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300218 POSTING_READ(reg);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300219}
220
Jesse Barnese43823e2014-11-05 14:26:08 -0800221static bool ibx_infoframe_enabled(struct drm_encoder *encoder)
222{
223 struct drm_device *dev = encoder->dev;
224 struct drm_i915_private *dev_priv = dev->dev_private;
225 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Jani Nikula052f62f2015-04-29 15:30:07 +0300226 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Jesse Barnese43823e2014-11-05 14:26:08 -0800227 int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
228 u32 val = I915_READ(reg);
229
Jani Nikula052f62f2015-04-29 15:30:07 +0300230 if (VIDEO_DIP_PORT(intel_dig_port->port) == (val & VIDEO_DIP_PORT_MASK))
231 return val & VIDEO_DIP_ENABLE;
232
233 return false;
Jesse Barnese43823e2014-11-05 14:26:08 -0800234}
235
Paulo Zanonifdf12502012-05-04 17:18:24 -0300236static void cpt_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100237 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200238 const void *frame, ssize_t len)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700239{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200240 const uint32_t *data = frame;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700241 struct drm_device *dev = encoder->dev;
242 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300243 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100244 int i, reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300245 u32 val = I915_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700246
Paulo Zanoni822974a2012-05-28 16:42:51 -0300247 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
248
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530249 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100250 val |= g4x_infoframe_index(type);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700251
Paulo Zanoniecb97852012-05-04 17:18:21 -0300252 /* The DIP control register spec says that we need to update the AVI
253 * infoframe without clearing its enable bit */
Damien Lespiau178f7362013-08-06 20:32:18 +0100254 if (type != HDMI_INFOFRAME_TYPE_AVI)
255 val &= ~g4x_infoframe_enable(type);
Paulo Zanoniecb97852012-05-04 17:18:21 -0300256
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300257 I915_WRITE(reg, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700258
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300259 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700260 for (i = 0; i < len; i += 4) {
261 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
262 data++;
263 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300264 /* Write every possible data byte to force correct ECC calculation. */
265 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
266 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300267 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700268
Damien Lespiau178f7362013-08-06 20:32:18 +0100269 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300270 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200271 val |= VIDEO_DIP_FREQ_VSYNC;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700272
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300273 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300274 POSTING_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700275}
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700276
Jesse Barnese43823e2014-11-05 14:26:08 -0800277static bool cpt_infoframe_enabled(struct drm_encoder *encoder)
278{
279 struct drm_device *dev = encoder->dev;
280 struct drm_i915_private *dev_priv = dev->dev_private;
281 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
282 int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
283 u32 val = I915_READ(reg);
284
285 return val & VIDEO_DIP_ENABLE;
286}
287
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700288static void vlv_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100289 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200290 const void *frame, ssize_t len)
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700291{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200292 const uint32_t *data = frame;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700293 struct drm_device *dev = encoder->dev;
294 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300295 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100296 int i, reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300297 u32 val = I915_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700298
Paulo Zanoni822974a2012-05-28 16:42:51 -0300299 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
300
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700301 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100302 val |= g4x_infoframe_index(type);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700303
Damien Lespiau178f7362013-08-06 20:32:18 +0100304 val &= ~g4x_infoframe_enable(type);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300305
306 I915_WRITE(reg, val);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700307
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300308 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700309 for (i = 0; i < len; i += 4) {
310 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
311 data++;
312 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300313 /* Write every possible data byte to force correct ECC calculation. */
314 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
315 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300316 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700317
Damien Lespiau178f7362013-08-06 20:32:18 +0100318 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300319 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200320 val |= VIDEO_DIP_FREQ_VSYNC;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700321
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300322 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300323 POSTING_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700324}
325
Jesse Barnese43823e2014-11-05 14:26:08 -0800326static bool vlv_infoframe_enabled(struct drm_encoder *encoder)
327{
328 struct drm_device *dev = encoder->dev;
329 struct drm_i915_private *dev_priv = dev->dev_private;
330 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Jesse Barnes535afa22015-04-15 16:52:29 -0700331 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Jesse Barnese43823e2014-11-05 14:26:08 -0800332 int reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
333 u32 val = I915_READ(reg);
334
Jani Nikulaeeea3e62015-04-29 14:29:39 +0300335 if (VIDEO_DIP_PORT(intel_dig_port->port) == (val & VIDEO_DIP_PORT_MASK))
Jesse Barnes535afa22015-04-15 16:52:29 -0700336 return val & VIDEO_DIP_ENABLE;
337
338 return false;
Jesse Barnese43823e2014-11-05 14:26:08 -0800339}
340
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300341static void hsw_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100342 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200343 const void *frame, ssize_t len)
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300344{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200345 const uint32_t *data = frame;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300346 struct drm_device *dev = encoder->dev;
347 struct drm_i915_private *dev_priv = dev->dev_private;
348 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200349 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config->cpu_transcoder);
Damien Lespiau178f7362013-08-06 20:32:18 +0100350 u32 data_reg;
351 int i;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300352 u32 val = I915_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300353
Damien Lespiau178f7362013-08-06 20:32:18 +0100354 data_reg = hsw_infoframe_data_reg(type,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200355 intel_crtc->config->cpu_transcoder,
Antti Koskipaaa57c7742014-02-04 14:22:24 +0200356 dev_priv);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300357 if (data_reg == 0)
358 return;
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300359
Damien Lespiau178f7362013-08-06 20:32:18 +0100360 val &= ~hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300361 I915_WRITE(ctl_reg, val);
362
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300363 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300364 for (i = 0; i < len; i += 4) {
365 I915_WRITE(data_reg + i, *data);
366 data++;
367 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300368 /* Write every possible data byte to force correct ECC calculation. */
369 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
370 I915_WRITE(data_reg + i, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300371 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300372
Damien Lespiau178f7362013-08-06 20:32:18 +0100373 val |= hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300374 I915_WRITE(ctl_reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300375 POSTING_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300376}
377
Jesse Barnese43823e2014-11-05 14:26:08 -0800378static bool hsw_infoframe_enabled(struct drm_encoder *encoder)
379{
380 struct drm_device *dev = encoder->dev;
381 struct drm_i915_private *dev_priv = dev->dev_private;
382 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200383 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config->cpu_transcoder);
Jesse Barnese43823e2014-11-05 14:26:08 -0800384 u32 val = I915_READ(ctl_reg);
385
386 return val & (VIDEO_DIP_ENABLE_AVI_HSW | VIDEO_DIP_ENABLE_SPD_HSW |
387 VIDEO_DIP_ENABLE_VS_HSW);
388}
389
Damien Lespiau5adaea72013-08-06 20:32:19 +0100390/*
391 * The data we write to the DIP data buffer registers is 1 byte bigger than the
392 * HDMI infoframe size because of an ECC/reserved byte at position 3 (starting
393 * at 0). It's also a byte used by DisplayPort so the same DIP registers can be
394 * used for both technologies.
395 *
396 * DW0: Reserved/ECC/DP | HB2 | HB1 | HB0
397 * DW1: DB3 | DB2 | DB1 | DB0
398 * DW2: DB7 | DB6 | DB5 | DB4
399 * DW3: ...
400 *
401 * (HB is Header Byte, DB is Data Byte)
402 *
403 * The hdmi pack() functions don't know about that hardware specific hole so we
404 * trick them by giving an offset into the buffer and moving back the header
405 * bytes by one.
406 */
Damien Lespiau9198ee52013-08-06 20:32:24 +0100407static void intel_write_infoframe(struct drm_encoder *encoder,
408 union hdmi_infoframe *frame)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700409{
410 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100411 uint8_t buffer[VIDEO_DIP_DATA_SIZE];
412 ssize_t len;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700413
Damien Lespiau5adaea72013-08-06 20:32:19 +0100414 /* see comment above for the reason for this offset */
415 len = hdmi_infoframe_pack(frame, buffer + 1, sizeof(buffer) - 1);
416 if (len < 0)
417 return;
418
419 /* Insert the 'hole' (see big comment above) at position 3 */
420 buffer[0] = buffer[1];
421 buffer[1] = buffer[2];
422 buffer[2] = buffer[3];
423 buffer[3] = 0;
424 len++;
425
426 intel_hdmi->write_infoframe(encoder, frame->any.type, buffer, len);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700427}
428
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300429static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
Paulo Zanonic846b612012-04-13 16:31:41 -0300430 struct drm_display_mode *adjusted_mode)
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700431{
Ville Syrjäläabedc072013-01-17 16:31:31 +0200432 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Daniel Vetter50f3b012013-03-27 00:44:56 +0100433 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100434 union hdmi_infoframe frame;
435 int ret;
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700436
Vandana Kannan94a11dd2014-06-11 11:06:01 +0530437 /* Set user selected PAR to incoming mode's member */
438 adjusted_mode->picture_aspect_ratio = intel_hdmi->aspect_ratio;
439
Damien Lespiau5adaea72013-08-06 20:32:19 +0100440 ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
441 adjusted_mode);
442 if (ret < 0) {
443 DRM_ERROR("couldn't fill AVI infoframe\n");
444 return;
445 }
Paulo Zanonic846b612012-04-13 16:31:41 -0300446
Ville Syrjäläabedc072013-01-17 16:31:31 +0200447 if (intel_hdmi->rgb_quant_range_selectable) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200448 if (intel_crtc->config->limited_color_range)
Damien Lespiau5adaea72013-08-06 20:32:19 +0100449 frame.avi.quantization_range =
450 HDMI_QUANTIZATION_RANGE_LIMITED;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200451 else
Damien Lespiau5adaea72013-08-06 20:32:19 +0100452 frame.avi.quantization_range =
453 HDMI_QUANTIZATION_RANGE_FULL;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200454 }
455
Damien Lespiau9198ee52013-08-06 20:32:24 +0100456 intel_write_infoframe(encoder, &frame);
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700457}
458
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300459static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700460{
Damien Lespiau5adaea72013-08-06 20:32:19 +0100461 union hdmi_infoframe frame;
462 int ret;
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700463
Damien Lespiau5adaea72013-08-06 20:32:19 +0100464 ret = hdmi_spd_infoframe_init(&frame.spd, "Intel", "Integrated gfx");
465 if (ret < 0) {
466 DRM_ERROR("couldn't fill SPD infoframe\n");
467 return;
468 }
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700469
Damien Lespiau5adaea72013-08-06 20:32:19 +0100470 frame.spd.sdi = HDMI_SPD_SDI_PC;
471
Damien Lespiau9198ee52013-08-06 20:32:24 +0100472 intel_write_infoframe(encoder, &frame);
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700473}
474
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100475static void
476intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder,
477 struct drm_display_mode *adjusted_mode)
478{
479 union hdmi_infoframe frame;
480 int ret;
481
482 ret = drm_hdmi_vendor_infoframe_from_display_mode(&frame.vendor.hdmi,
483 adjusted_mode);
484 if (ret < 0)
485 return;
486
487 intel_write_infoframe(encoder, &frame);
488}
489
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300490static void g4x_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200491 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300492 struct drm_display_mode *adjusted_mode)
493{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300494 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200495 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
496 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300497 u32 reg = VIDEO_DIP_CTL;
498 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200499 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300500
Daniel Vetterafba0182012-06-12 16:36:45 +0200501 assert_hdmi_port_disabled(intel_hdmi);
502
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300503 /* If the registers were not initialized yet, they might be zeroes,
504 * which means we're selecting the AVI DIP and we're setting its
505 * frequency to once. This seems to really confuse the HW and make
506 * things stop working (the register spec says the AVI always needs to
507 * be sent every VSync). So here we avoid writing to the register more
508 * than we need and also explicitly select the AVI DIP and explicitly
509 * set its frequency to every VSync. Avoiding to write it twice seems to
510 * be enough to solve the problem, but being defensive shouldn't hurt us
511 * either. */
512 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
513
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200514 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300515 if (!(val & VIDEO_DIP_ENABLE))
516 return;
517 val &= ~VIDEO_DIP_ENABLE;
518 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300519 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300520 return;
521 }
522
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300523 if (port != (val & VIDEO_DIP_PORT_MASK)) {
524 if (val & VIDEO_DIP_ENABLE) {
525 val &= ~VIDEO_DIP_ENABLE;
526 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300527 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300528 }
529 val &= ~VIDEO_DIP_PORT_MASK;
530 val |= port;
531 }
532
Paulo Zanoni822974a2012-05-28 16:42:51 -0300533 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300534 val &= ~VIDEO_DIP_ENABLE_VENDOR;
Paulo Zanoni822974a2012-05-28 16:42:51 -0300535
Paulo Zanonif278d972012-05-28 16:42:50 -0300536 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300537 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300538
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300539 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
540 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100541 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300542}
543
Ville Syrjälä6d674152015-05-05 17:06:20 +0300544static bool hdmi_sink_is_deep_color(struct drm_encoder *encoder)
545{
546 struct drm_device *dev = encoder->dev;
547 struct drm_connector *connector;
548
549 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
550
551 /*
552 * HDMI cloning is only supported on g4x which doesn't
553 * support deep color or GCP infoframes anyway so no
554 * need to worry about multiple HDMI sinks here.
555 */
556 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
557 if (connector->encoder == encoder)
558 return connector->display_info.bpc > 8;
559
560 return false;
561}
562
563static bool intel_hdmi_set_gcp_infoframe(struct drm_encoder *encoder)
564{
565 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
566 struct intel_crtc *crtc = to_intel_crtc(encoder->crtc);
567 u32 reg, val = 0;
568
569 if (HAS_DDI(dev_priv))
570 reg = HSW_TVIDEO_DIP_GCP(crtc->config->cpu_transcoder);
571 else if (IS_VALLEYVIEW(dev_priv))
572 reg = VLV_TVIDEO_DIP_GCP(crtc->pipe);
573 else if (HAS_PCH_SPLIT(dev_priv->dev))
574 reg = TVIDEO_DIP_GCP(crtc->pipe);
575 else
576 return false;
577
578 /* Indicate color depth whenever the sink supports deep color */
579 if (hdmi_sink_is_deep_color(encoder))
580 val |= GCP_COLOR_INDICATION;
581
582 I915_WRITE(reg, val);
583
584 return val != 0;
585}
586
587static void intel_disable_gcp_infoframe(struct intel_crtc *crtc)
588{
589 struct drm_i915_private *dev_priv = crtc->base.dev->dev_private;
590 u32 reg;
591
592 if (HAS_DDI(dev_priv))
593 reg = HSW_TVIDEO_DIP_CTL(crtc->config->cpu_transcoder);
594 else if (IS_VALLEYVIEW(dev_priv))
595 reg = VLV_TVIDEO_DIP_CTL(crtc->pipe);
596 else if (HAS_PCH_SPLIT(dev_priv->dev))
597 reg = TVIDEO_DIP_CTL(crtc->pipe);
598 else
599 return;
600
601 I915_WRITE(reg, I915_READ(reg) & ~VIDEO_DIP_ENABLE_GCP);
602}
603
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300604static void ibx_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200605 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300606 struct drm_display_mode *adjusted_mode)
607{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300608 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
609 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200610 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
611 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300612 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
613 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200614 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300615
Daniel Vetterafba0182012-06-12 16:36:45 +0200616 assert_hdmi_port_disabled(intel_hdmi);
617
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300618 /* See the big comment in g4x_set_infoframes() */
619 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
620
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200621 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300622 if (!(val & VIDEO_DIP_ENABLE))
623 return;
624 val &= ~VIDEO_DIP_ENABLE;
625 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300626 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300627 return;
628 }
629
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300630 if (port != (val & VIDEO_DIP_PORT_MASK)) {
631 if (val & VIDEO_DIP_ENABLE) {
632 val &= ~VIDEO_DIP_ENABLE;
633 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300634 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300635 }
636 val &= ~VIDEO_DIP_PORT_MASK;
637 val |= port;
638 }
639
Paulo Zanoni822974a2012-05-28 16:42:51 -0300640 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300641 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
642 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300643
Ville Syrjälä6d674152015-05-05 17:06:20 +0300644 if (intel_hdmi_set_gcp_infoframe(encoder))
645 val |= VIDEO_DIP_ENABLE_GCP;
646
Paulo Zanonif278d972012-05-28 16:42:50 -0300647 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300648 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300649
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300650 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
651 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100652 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300653}
654
655static void cpt_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200656 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300657 struct drm_display_mode *adjusted_mode)
658{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300659 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
660 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
661 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
662 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
663 u32 val = I915_READ(reg);
664
Daniel Vetterafba0182012-06-12 16:36:45 +0200665 assert_hdmi_port_disabled(intel_hdmi);
666
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300667 /* See the big comment in g4x_set_infoframes() */
668 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
669
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200670 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300671 if (!(val & VIDEO_DIP_ENABLE))
672 return;
673 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI);
674 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300675 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300676 return;
677 }
678
Paulo Zanoni822974a2012-05-28 16:42:51 -0300679 /* Set both together, unset both together: see the spec. */
680 val |= VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300681 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
682 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300683
Ville Syrjälä6d674152015-05-05 17:06:20 +0300684 if (intel_hdmi_set_gcp_infoframe(encoder))
685 val |= VIDEO_DIP_ENABLE_GCP;
686
Paulo Zanoni822974a2012-05-28 16:42:51 -0300687 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300688 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300689
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300690 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
691 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100692 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300693}
694
695static void vlv_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200696 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300697 struct drm_display_mode *adjusted_mode)
698{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300699 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700700 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300701 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
702 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
703 u32 reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
704 u32 val = I915_READ(reg);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700705 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300706
Daniel Vetterafba0182012-06-12 16:36:45 +0200707 assert_hdmi_port_disabled(intel_hdmi);
708
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300709 /* See the big comment in g4x_set_infoframes() */
710 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
711
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200712 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300713 if (!(val & VIDEO_DIP_ENABLE))
714 return;
715 val &= ~VIDEO_DIP_ENABLE;
716 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300717 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300718 return;
719 }
720
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700721 if (port != (val & VIDEO_DIP_PORT_MASK)) {
722 if (val & VIDEO_DIP_ENABLE) {
723 val &= ~VIDEO_DIP_ENABLE;
724 I915_WRITE(reg, val);
725 POSTING_READ(reg);
726 }
727 val &= ~VIDEO_DIP_PORT_MASK;
728 val |= port;
729 }
730
Paulo Zanoni822974a2012-05-28 16:42:51 -0300731 val |= VIDEO_DIP_ENABLE;
Jesse Barnes4d47dfb2014-04-02 10:08:52 -0700732 val &= ~(VIDEO_DIP_ENABLE_AVI | VIDEO_DIP_ENABLE_VENDOR |
733 VIDEO_DIP_ENABLE_GAMUT | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300734
Ville Syrjälä6d674152015-05-05 17:06:20 +0300735 if (intel_hdmi_set_gcp_infoframe(encoder))
736 val |= VIDEO_DIP_ENABLE_GCP;
737
Paulo Zanoni822974a2012-05-28 16:42:51 -0300738 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300739 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300740
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300741 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
742 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100743 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300744}
745
746static void hsw_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200747 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300748 struct drm_display_mode *adjusted_mode)
749{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300750 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
751 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
752 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200753 u32 reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config->cpu_transcoder);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300754 u32 val = I915_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300755
Daniel Vetterafba0182012-06-12 16:36:45 +0200756 assert_hdmi_port_disabled(intel_hdmi);
757
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200758 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300759 I915_WRITE(reg, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300760 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300761 return;
762 }
763
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300764 val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_GCP_HSW |
765 VIDEO_DIP_ENABLE_VS_HSW | VIDEO_DIP_ENABLE_GMP_HSW);
766
Ville Syrjälä6d674152015-05-05 17:06:20 +0300767 if (intel_hdmi_set_gcp_infoframe(encoder))
768 val |= VIDEO_DIP_ENABLE_GCP_HSW;
769
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300770 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300771 POSTING_READ(reg);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300772
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300773 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
774 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100775 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300776}
777
Daniel Vetter4cde8a22014-04-24 23:54:56 +0200778static void intel_hdmi_prepare(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800779{
Daniel Vetterc59423a2013-07-21 21:37:04 +0200780 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800781 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc59423a2013-07-21 21:37:04 +0200782 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
783 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200784 struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300785 u32 hdmi_val;
Eric Anholt7d573822009-01-02 13:33:00 -0800786
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300787 hdmi_val = SDVO_ENCODING_HDMI;
Ville Syrjälä2af2c492013-06-25 14:16:34 +0300788 if (!HAS_PCH_SPLIT(dev))
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300789 hdmi_val |= intel_hdmi->color_range;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400790 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300791 hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400792 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300793 hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800794
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200795 if (crtc->config->pipe_bpp > 24)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300796 hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700797 else
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300798 hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700799
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200800 if (crtc->config->has_hdmi_sink)
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300801 hdmi_val |= HDMI_MODE_SELECT_HDMI;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800802
Jesse Barnes75770562011-10-12 09:01:58 -0700803 if (HAS_PCH_CPT(dev))
Daniel Vetterc59423a2013-07-21 21:37:04 +0200804 hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
Chon Ming Lee44f37d12014-04-09 13:28:21 +0300805 else if (IS_CHERRYVIEW(dev))
806 hdmi_val |= SDVO_PIPE_SEL_CHV(crtc->pipe);
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300807 else
Daniel Vetterc59423a2013-07-21 21:37:04 +0200808 hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
Eric Anholt7d573822009-01-02 13:33:00 -0800809
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300810 I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
811 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800812}
813
Daniel Vetter85234cd2012-07-02 13:27:29 +0200814static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
815 enum pipe *pipe)
Eric Anholt7d573822009-01-02 13:33:00 -0800816{
Daniel Vetter85234cd2012-07-02 13:27:29 +0200817 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800818 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200819 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Imre Deak6d129be2014-03-05 16:20:54 +0200820 enum intel_display_power_domain power_domain;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200821 u32 tmp;
822
Imre Deak6d129be2014-03-05 16:20:54 +0200823 power_domain = intel_display_port_power_domain(encoder);
Daniel Vetterf458ebb2014-09-30 10:56:39 +0200824 if (!intel_display_power_is_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200825 return false;
826
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300827 tmp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200828
829 if (!(tmp & SDVO_ENABLE))
830 return false;
831
832 if (HAS_PCH_CPT(dev))
833 *pipe = PORT_TO_PIPE_CPT(tmp);
Ville Syrjälä71485e02014-04-09 13:28:55 +0300834 else if (IS_CHERRYVIEW(dev))
835 *pipe = SDVO_PORT_TO_PIPE_CHV(tmp);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200836 else
837 *pipe = PORT_TO_PIPE(tmp);
838
839 return true;
840}
841
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700842static void intel_hdmi_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200843 struct intel_crtc_state *pipe_config)
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700844{
845 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300846 struct drm_device *dev = encoder->base.dev;
847 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700848 u32 tmp, flags = 0;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300849 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700850
851 tmp = I915_READ(intel_hdmi->hdmi_reg);
852
853 if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
854 flags |= DRM_MODE_FLAG_PHSYNC;
855 else
856 flags |= DRM_MODE_FLAG_NHSYNC;
857
858 if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
859 flags |= DRM_MODE_FLAG_PVSYNC;
860 else
861 flags |= DRM_MODE_FLAG_NVSYNC;
862
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200863 if (tmp & HDMI_MODE_SELECT_HDMI)
864 pipe_config->has_hdmi_sink = true;
865
Jesse Barnese43823e2014-11-05 14:26:08 -0800866 if (intel_hdmi->infoframe_enabled(&encoder->base))
867 pipe_config->has_infoframe = true;
868
Jani Nikulac84db772014-09-17 15:34:58 +0300869 if (tmp & SDVO_AUDIO_ENABLE)
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200870 pipe_config->has_audio = true;
871
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300872 if (!HAS_PCH_SPLIT(dev) &&
873 tmp & HDMI_COLOR_RANGE_16_235)
874 pipe_config->limited_color_range = true;
875
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200876 pipe_config->base.adjusted_mode.flags |= flags;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300877
878 if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
879 dotclock = pipe_config->port_clock * 2 / 3;
880 else
881 dotclock = pipe_config->port_clock;
882
883 if (HAS_PCH_SPLIT(dev_priv->dev))
884 ironlake_check_encoder_dotclock(pipe_config, dotclock);
885
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200886 pipe_config->base.adjusted_mode.crtc_clock = dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700887}
888
Ville Syrjäläd1b15892015-05-05 17:06:19 +0300889static void intel_enable_hdmi_audio(struct intel_encoder *encoder)
890{
891 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
892
893 WARN_ON(!crtc->config->has_hdmi_sink);
894 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
895 pipe_name(crtc->pipe));
896 intel_audio_codec_enable(encoder);
897}
898
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200899static void intel_enable_hdmi(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800900{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200901 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800902 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300903 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200904 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Eric Anholt7d573822009-01-02 13:33:00 -0800905 u32 temp;
Wu Fengguang2deed762011-12-09 20:42:20 +0800906 u32 enable_bits = SDVO_ENABLE;
907
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200908 if (intel_crtc->config->has_audio)
Wu Fengguang2deed762011-12-09 20:42:20 +0800909 enable_bits |= SDVO_AUDIO_ENABLE;
Eric Anholt7d573822009-01-02 13:33:00 -0800910
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300911 temp = I915_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000912
Daniel Vetter7a87c282012-06-05 11:03:39 +0200913 /* HW workaround for IBX, we need to move the port to transcoder A
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300914 * before disabling it, so restore the transcoder select bit here. */
915 if (HAS_PCH_IBX(dev))
916 enable_bits |= SDVO_PIPE_SEL(intel_crtc->pipe);
Daniel Vetter7a87c282012-06-05 11:03:39 +0200917
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200918 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
919 * we do this anyway which shows more stable in testing.
920 */
921 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300922 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
923 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200924 }
Daniel Vetter7a87c282012-06-05 11:03:39 +0200925
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200926 temp |= enable_bits;
927
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300928 I915_WRITE(intel_hdmi->hdmi_reg, temp);
929 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200930
931 /* HW workaround, need to write this twice for issue that may result
932 * in first write getting masked.
933 */
934 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300935 I915_WRITE(intel_hdmi->hdmi_reg, temp);
936 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200937 }
Jani Nikulac1dec792014-10-27 16:26:56 +0200938
Ville Syrjäläd1b15892015-05-05 17:06:19 +0300939 if (intel_crtc->config->has_audio)
940 intel_enable_hdmi_audio(encoder);
941}
942
943static void cpt_enable_hdmi(struct intel_encoder *encoder)
944{
945 struct drm_device *dev = encoder->base.dev;
946 struct drm_i915_private *dev_priv = dev->dev_private;
947 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
948 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
949 enum pipe pipe = crtc->pipe;
950 u32 temp;
951
952 temp = I915_READ(intel_hdmi->hdmi_reg);
953
954 temp |= SDVO_ENABLE;
955 if (crtc->config->has_audio)
956 temp |= SDVO_AUDIO_ENABLE;
957
958 /*
959 * WaEnableHDMI8bpcBefore12bpc:snb,ivb
960 *
961 * The procedure for 12bpc is as follows:
962 * 1. disable HDMI clock gating
963 * 2. enable HDMI with 8bpc
964 * 3. enable HDMI with 12bpc
965 * 4. enable HDMI clock gating
966 */
967
968 if (crtc->config->pipe_bpp > 24) {
969 I915_WRITE(TRANS_CHICKEN1(pipe),
970 I915_READ(TRANS_CHICKEN1(pipe)) |
971 TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE);
972
973 temp &= ~SDVO_COLOR_FORMAT_MASK;
974 temp |= SDVO_COLOR_FORMAT_8bpc;
Jani Nikulac1dec792014-10-27 16:26:56 +0200975 }
Ville Syrjäläd1b15892015-05-05 17:06:19 +0300976
977 I915_WRITE(intel_hdmi->hdmi_reg, temp);
978 POSTING_READ(intel_hdmi->hdmi_reg);
979
980 if (crtc->config->pipe_bpp > 24) {
981 temp &= ~SDVO_COLOR_FORMAT_MASK;
982 temp |= HDMI_COLOR_FORMAT_12bpc;
983
984 I915_WRITE(intel_hdmi->hdmi_reg, temp);
985 POSTING_READ(intel_hdmi->hdmi_reg);
986
987 I915_WRITE(TRANS_CHICKEN1(pipe),
988 I915_READ(TRANS_CHICKEN1(pipe)) &
989 ~TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE);
990 }
991
992 if (crtc->config->has_audio)
993 intel_enable_hdmi_audio(encoder);
Jani Nikulab76cf762013-07-30 12:20:31 +0300994}
Jesse Barnes89b667f2013-04-18 14:51:36 -0700995
Jani Nikulab76cf762013-07-30 12:20:31 +0300996static void vlv_enable_hdmi(struct intel_encoder *encoder)
997{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200998}
999
1000static void intel_disable_hdmi(struct intel_encoder *encoder)
1001{
1002 struct drm_device *dev = encoder->base.dev;
1003 struct drm_i915_private *dev_priv = dev->dev_private;
1004 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Jani Nikula495a5bb2014-10-27 16:26:55 +02001005 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001006 u32 temp;
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001007
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001008 temp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001009
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001010 temp &= ~(SDVO_ENABLE | SDVO_AUDIO_ENABLE);
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001011 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1012 POSTING_READ(intel_hdmi->hdmi_reg);
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001013
1014 /*
1015 * HW workaround for IBX, we need to move the port
1016 * to transcoder A after disabling it to allow the
1017 * matching DP port to be enabled on transcoder A.
1018 */
1019 if (HAS_PCH_IBX(dev) && crtc->pipe == PIPE_B) {
1020 temp &= ~SDVO_PIPE_B_SELECT;
1021 temp |= SDVO_ENABLE;
1022 /*
1023 * HW workaround, need to write this twice for issue
1024 * that may result in first write getting masked.
1025 */
1026 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1027 POSTING_READ(intel_hdmi->hdmi_reg);
1028 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1029 POSTING_READ(intel_hdmi->hdmi_reg);
1030
1031 temp &= ~SDVO_ENABLE;
1032 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1033 POSTING_READ(intel_hdmi->hdmi_reg);
1034 }
Ville Syrjälä6d674152015-05-05 17:06:20 +03001035
1036 intel_disable_gcp_infoframe(to_intel_crtc(encoder->base.crtc));
Eric Anholt7d573822009-01-02 13:33:00 -08001037}
1038
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03001039static void g4x_disable_hdmi(struct intel_encoder *encoder)
1040{
1041 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1042
1043 if (crtc->config->has_audio)
1044 intel_audio_codec_disable(encoder);
1045
1046 intel_disable_hdmi(encoder);
1047}
1048
1049static void pch_disable_hdmi(struct intel_encoder *encoder)
1050{
1051 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1052
1053 if (crtc->config->has_audio)
1054 intel_audio_codec_disable(encoder);
1055}
1056
1057static void pch_post_disable_hdmi(struct intel_encoder *encoder)
1058{
1059 intel_disable_hdmi(encoder);
1060}
1061
Ville Syrjälä40478452014-03-27 11:08:45 +02001062static int hdmi_portclock_limit(struct intel_hdmi *hdmi, bool respect_dvi_limit)
Daniel Vetter7d148ef2013-07-22 18:02:39 +02001063{
1064 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
1065
Ville Syrjälä40478452014-03-27 11:08:45 +02001066 if ((respect_dvi_limit && !hdmi->has_hdmi_sink) || IS_G4X(dev))
Daniel Vetter7d148ef2013-07-22 18:02:39 +02001067 return 165000;
Damien Lespiaue3c33572013-11-02 21:07:51 -07001068 else if (IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8)
Daniel Vetter7d148ef2013-07-22 18:02:39 +02001069 return 300000;
1070 else
1071 return 225000;
1072}
1073
Damien Lespiauc19de8e2013-11-28 15:29:18 +00001074static enum drm_mode_status
1075intel_hdmi_mode_valid(struct drm_connector *connector,
1076 struct drm_display_mode *mode)
Eric Anholt7d573822009-01-02 13:33:00 -08001077{
Clint Taylor697c4072014-09-02 17:03:36 -07001078 int clock = mode->clock;
1079
1080 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
1081 clock *= 2;
1082
1083 if (clock > hdmi_portclock_limit(intel_attached_hdmi(connector),
1084 true))
Eric Anholt7d573822009-01-02 13:33:00 -08001085 return MODE_CLOCK_HIGH;
Clint Taylor697c4072014-09-02 17:03:36 -07001086 if (clock < 20000)
Nicolas Kaiser5cbba412011-05-30 12:48:26 +02001087 return MODE_CLOCK_LOW;
Eric Anholt7d573822009-01-02 13:33:00 -08001088
1089 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
1090 return MODE_NO_DBLESCAN;
1091
1092 return MODE_OK;
1093}
1094
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001095static bool hdmi_12bpc_possible(struct intel_crtc_state *crtc_state)
Ville Syrjälä71800632014-03-03 16:15:29 +02001096{
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001097 struct drm_device *dev = crtc_state->base.crtc->dev;
1098 struct drm_atomic_state *state;
Ville Syrjälä71800632014-03-03 16:15:29 +02001099 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced22015-04-21 17:12:59 +03001100 struct drm_connector *connector;
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001101 struct drm_connector_state *connector_state;
Ville Syrjälä71800632014-03-03 16:15:29 +02001102 int count = 0, count_hdmi = 0;
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001103 int i;
Ville Syrjälä71800632014-03-03 16:15:29 +02001104
Sonika Jindalf227ae92014-07-21 15:23:45 +05301105 if (HAS_GMCH_DISPLAY(dev))
Ville Syrjälä71800632014-03-03 16:15:29 +02001106 return false;
1107
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001108 state = crtc_state->base.state;
1109
Ander Conselvan de Oliveirada3ced22015-04-21 17:12:59 +03001110 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001111 if (connector_state->crtc != crtc_state->base.crtc)
1112 continue;
1113
1114 encoder = to_intel_encoder(connector_state->best_encoder);
1115
Ville Syrjälä71800632014-03-03 16:15:29 +02001116 count_hdmi += encoder->type == INTEL_OUTPUT_HDMI;
1117 count++;
1118 }
1119
1120 /*
1121 * HDMI 12bpc affects the clocks, so it's only possible
1122 * when not cloning with other encoder types.
1123 */
1124 return count_hdmi > 0 && count_hdmi == count;
1125}
1126
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001127bool intel_hdmi_compute_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001128 struct intel_crtc_state *pipe_config)
Eric Anholt7d573822009-01-02 13:33:00 -08001129{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001130 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1131 struct drm_device *dev = encoder->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02001132 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
1133 int clock_12bpc = pipe_config->base.adjusted_mode.crtc_clock * 3 / 2;
Ville Syrjälä40478452014-03-27 11:08:45 +02001134 int portclock_limit = hdmi_portclock_limit(intel_hdmi, false);
Daniel Vettere29c22c2013-02-21 00:00:16 +01001135 int desired_bpp;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001136
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001137 pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink;
1138
Jesse Barnese43823e2014-11-05 14:26:08 -08001139 if (pipe_config->has_hdmi_sink)
1140 pipe_config->has_infoframe = true;
1141
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001142 if (intel_hdmi->color_range_auto) {
1143 /* See CEA-861-E - 5.1 Default Encoding Parameters */
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001144 if (pipe_config->has_hdmi_sink &&
Thierry Reding18316c82012-12-20 15:41:44 +01001145 drm_match_cea_mode(adjusted_mode) > 1)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -03001146 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001147 else
1148 intel_hdmi->color_range = 0;
1149 }
1150
Clint Taylor697c4072014-09-02 17:03:36 -07001151 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK) {
1152 pipe_config->pixel_multiplier = 2;
1153 }
1154
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001155 if (intel_hdmi->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +01001156 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001157
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001158 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
1159 pipe_config->has_pch_encoder = true;
1160
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001161 if (pipe_config->has_hdmi_sink && intel_hdmi->has_audio)
1162 pipe_config->has_audio = true;
1163
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001164 /*
1165 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
1166 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
Daniel Vetter325b9d02013-04-19 11:24:33 +02001167 * outputs. We also need to check that the higher clock still fits
1168 * within limits.
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001169 */
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001170 if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink &&
Ville Syrjälä71800632014-03-03 16:15:29 +02001171 clock_12bpc <= portclock_limit &&
Daniel Vetter5e3daac2015-05-28 09:38:45 +02001172 hdmi_12bpc_possible(pipe_config) &&
1173 0 /* FIXME 12bpc support totally broken */) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001174 DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
1175 desired_bpp = 12*3;
Daniel Vetter325b9d02013-04-19 11:24:33 +02001176
1177 /* Need to adjust the port link by 1.5x for 12bpc. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02001178 pipe_config->port_clock = clock_12bpc;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001179 } else {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001180 DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
1181 desired_bpp = 8*3;
1182 }
1183
1184 if (!pipe_config->bw_constrained) {
1185 DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
1186 pipe_config->pipe_bpp = desired_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001187 }
1188
Damien Lespiau241bfc32013-09-25 16:45:37 +01001189 if (adjusted_mode->crtc_clock > portclock_limit) {
Daniel Vetter325b9d02013-04-19 11:24:33 +02001190 DRM_DEBUG_KMS("too high HDMI clock, rejecting mode\n");
1191 return false;
1192 }
1193
Eric Anholt7d573822009-01-02 13:33:00 -08001194 return true;
1195}
1196
Chris Wilson953ece6972014-09-02 20:04:01 +01001197static void
1198intel_hdmi_unset_edid(struct drm_connector *connector)
Ma Ling9dff6af2009-04-02 13:13:26 +08001199{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001200 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Imre Deak671dedd2014-03-05 16:20:53 +02001201
Chris Wilsonea5b2132010-08-04 13:50:23 +01001202 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +08001203 intel_hdmi->has_audio = false;
Ville Syrjäläabedc072013-01-17 16:31:31 +02001204 intel_hdmi->rgb_quant_range_selectable = false;
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +08001205
Chris Wilson953ece6972014-09-02 20:04:01 +01001206 kfree(to_intel_connector(connector)->detect_edid);
1207 to_intel_connector(connector)->detect_edid = NULL;
Ma Ling9dff6af2009-04-02 13:13:26 +08001208}
1209
Chris Wilson953ece6972014-09-02 20:04:01 +01001210static bool
1211intel_hdmi_set_edid(struct drm_connector *connector)
Eric Anholt7d573822009-01-02 13:33:00 -08001212{
Chris Wilson953ece6972014-09-02 20:04:01 +01001213 struct drm_i915_private *dev_priv = to_i915(connector->dev);
1214 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1215 struct intel_encoder *intel_encoder =
1216 &hdmi_to_dig_port(intel_hdmi)->base;
Imre Deak671dedd2014-03-05 16:20:53 +02001217 enum intel_display_power_domain power_domain;
Chris Wilson953ece6972014-09-02 20:04:01 +01001218 struct edid *edid;
1219 bool connected = false;
Eric Anholt7d573822009-01-02 13:33:00 -08001220
Imre Deak671dedd2014-03-05 16:20:53 +02001221 power_domain = intel_display_port_power_domain(intel_encoder);
1222 intel_display_power_get(dev_priv, power_domain);
1223
Chris Wilson953ece6972014-09-02 20:04:01 +01001224 edid = drm_get_edid(connector,
1225 intel_gmbus_get_adapter(dev_priv,
1226 intel_hdmi->ddc_bus));
Imre Deak671dedd2014-03-05 16:20:53 +02001227
1228 intel_display_power_put(dev_priv, power_domain);
1229
Chris Wilson953ece6972014-09-02 20:04:01 +01001230 to_intel_connector(connector)->detect_edid = edid;
1231 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL) {
1232 intel_hdmi->rgb_quant_range_selectable =
1233 drm_rgb_quant_range_selectable(edid);
1234
1235 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
1236 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
1237 intel_hdmi->has_audio =
1238 intel_hdmi->force_audio == HDMI_AUDIO_ON;
1239
1240 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
1241 intel_hdmi->has_hdmi_sink =
1242 drm_detect_hdmi_monitor(edid);
1243
1244 connected = true;
1245 }
1246
1247 return connected;
1248}
1249
1250static enum drm_connector_status
1251intel_hdmi_detect(struct drm_connector *connector, bool force)
1252{
1253 enum drm_connector_status status;
1254
1255 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1256 connector->base.id, connector->name);
1257
1258 intel_hdmi_unset_edid(connector);
1259
1260 if (intel_hdmi_set_edid(connector)) {
1261 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1262
1263 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1264 status = connector_status_connected;
1265 } else
1266 status = connector_status_disconnected;
1267
1268 return status;
1269}
1270
1271static void
1272intel_hdmi_force(struct drm_connector *connector)
1273{
1274 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1275
1276 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1277 connector->base.id, connector->name);
1278
1279 intel_hdmi_unset_edid(connector);
1280
1281 if (connector->status != connector_status_connected)
1282 return;
1283
1284 intel_hdmi_set_edid(connector);
1285 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1286}
1287
1288static int intel_hdmi_get_modes(struct drm_connector *connector)
1289{
1290 struct edid *edid;
1291
1292 edid = to_intel_connector(connector)->detect_edid;
1293 if (edid == NULL)
1294 return 0;
1295
1296 return intel_connector_update_modes(connector, edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001297}
1298
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001299static bool
1300intel_hdmi_detect_audio(struct drm_connector *connector)
1301{
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001302 bool has_audio = false;
Chris Wilson953ece6972014-09-02 20:04:01 +01001303 struct edid *edid;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001304
Chris Wilson953ece6972014-09-02 20:04:01 +01001305 edid = to_intel_connector(connector)->detect_edid;
1306 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL)
1307 has_audio = drm_detect_monitor_audio(edid);
Imre Deak671dedd2014-03-05 16:20:53 +02001308
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001309 return has_audio;
1310}
1311
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001312static int
1313intel_hdmi_set_property(struct drm_connector *connector,
Paulo Zanonied517fb2012-05-14 17:12:50 -03001314 struct drm_property *property,
1315 uint64_t val)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001316{
1317 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001318 struct intel_digital_port *intel_dig_port =
1319 hdmi_to_dig_port(intel_hdmi);
Chris Wilsone953fd72011-02-21 22:23:52 +00001320 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001321 int ret;
1322
Rob Clark662595d2012-10-11 20:36:04 -05001323 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001324 if (ret)
1325 return ret;
1326
Chris Wilson3f43c482011-05-12 22:17:24 +01001327 if (property == dev_priv->force_audio_property) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001328 enum hdmi_force_audio i = val;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001329 bool has_audio;
1330
1331 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001332 return 0;
1333
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001334 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001335
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001336 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001337 has_audio = intel_hdmi_detect_audio(connector);
1338 else
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001339 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001340
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001341 if (i == HDMI_AUDIO_OFF_DVI)
1342 intel_hdmi->has_hdmi_sink = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001343
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001344 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001345 goto done;
1346 }
1347
Chris Wilsone953fd72011-02-21 22:23:52 +00001348 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02001349 bool old_auto = intel_hdmi->color_range_auto;
1350 uint32_t old_range = intel_hdmi->color_range;
1351
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001352 switch (val) {
1353 case INTEL_BROADCAST_RGB_AUTO:
1354 intel_hdmi->color_range_auto = true;
1355 break;
1356 case INTEL_BROADCAST_RGB_FULL:
1357 intel_hdmi->color_range_auto = false;
1358 intel_hdmi->color_range = 0;
1359 break;
1360 case INTEL_BROADCAST_RGB_LIMITED:
1361 intel_hdmi->color_range_auto = false;
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -03001362 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001363 break;
1364 default:
1365 return -EINVAL;
1366 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02001367
1368 if (old_auto == intel_hdmi->color_range_auto &&
1369 old_range == intel_hdmi->color_range)
1370 return 0;
1371
Chris Wilsone953fd72011-02-21 22:23:52 +00001372 goto done;
1373 }
1374
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301375 if (property == connector->dev->mode_config.aspect_ratio_property) {
1376 switch (val) {
1377 case DRM_MODE_PICTURE_ASPECT_NONE:
1378 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
1379 break;
1380 case DRM_MODE_PICTURE_ASPECT_4_3:
1381 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_4_3;
1382 break;
1383 case DRM_MODE_PICTURE_ASPECT_16_9:
1384 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_16_9;
1385 break;
1386 default:
1387 return -EINVAL;
1388 }
1389 goto done;
1390 }
1391
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001392 return -EINVAL;
1393
1394done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00001395 if (intel_dig_port->base.base.crtc)
1396 intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001397
1398 return 0;
1399}
1400
Jesse Barnes13732ba2014-04-05 11:51:35 -07001401static void intel_hdmi_pre_enable(struct intel_encoder *encoder)
1402{
1403 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1404 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
1405 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001406 &intel_crtc->config->base.adjusted_mode;
Jesse Barnes13732ba2014-04-05 11:51:35 -07001407
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001408 intel_hdmi_prepare(encoder);
1409
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001410 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001411 intel_crtc->config->has_hdmi_sink,
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001412 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001413}
1414
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001415static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001416{
1417 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001418 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001419 struct drm_device *dev = encoder->base.dev;
1420 struct drm_i915_private *dev_priv = dev->dev_private;
1421 struct intel_crtc *intel_crtc =
1422 to_intel_crtc(encoder->base.crtc);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001423 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001424 &intel_crtc->config->base.adjusted_mode;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001425 enum dpio_channel port = vlv_dport_to_channel(dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001426 int pipe = intel_crtc->pipe;
1427 u32 val;
1428
Jesse Barnes89b667f2013-04-18 14:51:36 -07001429 /* Enable clock channels for this port */
Ville Syrjäläa5805162015-05-26 20:42:30 +03001430 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001431 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001432 val = 0;
1433 if (pipe)
1434 val |= (1<<21);
1435 else
1436 val &= ~(1<<21);
1437 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001438 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001439
1440 /* HDMI 1.0V-2dB */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001441 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0);
1442 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), 0x2b245f5f);
1443 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port), 0x5578b83a);
1444 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0c782040);
1445 vlv_dpio_write(dev_priv, pipe, VLV_TX3_DW4(port), 0x2b247878);
1446 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
1447 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1448 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001449
1450 /* Program lane clock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001451 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
1452 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001453 mutex_unlock(&dev_priv->sb_lock);
Jani Nikulab76cf762013-07-30 12:20:31 +03001454
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001455 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001456 intel_crtc->config->has_hdmi_sink,
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001457 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001458
Jani Nikulab76cf762013-07-30 12:20:31 +03001459 intel_enable_hdmi(encoder);
1460
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001461 vlv_wait_port_ready(dev_priv, dport, 0x0);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001462}
1463
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001464static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001465{
1466 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1467 struct drm_device *dev = encoder->base.dev;
1468 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001469 struct intel_crtc *intel_crtc =
1470 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001471 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001472 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001473
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001474 intel_hdmi_prepare(encoder);
1475
Jesse Barnes89b667f2013-04-18 14:51:36 -07001476 /* Program Tx lane resets to default */
Ville Syrjäläa5805162015-05-26 20:42:30 +03001477 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001478 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001479 DPIO_PCS_TX_LANE2_RESET |
1480 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001481 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001482 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1483 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1484 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1485 DPIO_PCS_CLK_SOFT_RESET);
1486
1487 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001488 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
1489 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
1490 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001491
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001492 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1493 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001494 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001495}
1496
Ville Syrjälä9197c882014-04-09 13:29:05 +03001497static void chv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
1498{
1499 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1500 struct drm_device *dev = encoder->base.dev;
1501 struct drm_i915_private *dev_priv = dev->dev_private;
1502 struct intel_crtc *intel_crtc =
1503 to_intel_crtc(encoder->base.crtc);
1504 enum dpio_channel ch = vlv_dport_to_channel(dport);
1505 enum pipe pipe = intel_crtc->pipe;
1506 u32 val;
1507
Ville Syrjälä625695f2014-06-28 02:04:02 +03001508 intel_hdmi_prepare(encoder);
1509
Ville Syrjäläa5805162015-05-26 20:42:30 +03001510 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä9197c882014-04-09 13:29:05 +03001511
Ville Syrjäläb9e5ac32014-05-27 16:30:18 +03001512 /* program left/right clock distribution */
1513 if (pipe != PIPE_B) {
1514 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1515 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1516 if (ch == DPIO_CH0)
1517 val |= CHV_BUFLEFTENA1_FORCE;
1518 if (ch == DPIO_CH1)
1519 val |= CHV_BUFRIGHTENA1_FORCE;
1520 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1521 } else {
1522 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1523 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1524 if (ch == DPIO_CH0)
1525 val |= CHV_BUFLEFTENA2_FORCE;
1526 if (ch == DPIO_CH1)
1527 val |= CHV_BUFRIGHTENA2_FORCE;
1528 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1529 }
1530
Ville Syrjälä9197c882014-04-09 13:29:05 +03001531 /* program clock channel usage */
1532 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
1533 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1534 if (pipe != PIPE_B)
1535 val &= ~CHV_PCS_USEDCLKCHANNEL;
1536 else
1537 val |= CHV_PCS_USEDCLKCHANNEL;
1538 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
1539
1540 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
1541 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1542 if (pipe != PIPE_B)
1543 val &= ~CHV_PCS_USEDCLKCHANNEL;
1544 else
1545 val |= CHV_PCS_USEDCLKCHANNEL;
1546 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
1547
1548 /*
1549 * This a a bit weird since generally CL
1550 * matches the pipe, but here we need to
1551 * pick the CL based on the port.
1552 */
1553 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
1554 if (pipe != PIPE_B)
1555 val &= ~CHV_CMN_USEDCLKCHANNEL;
1556 else
1557 val |= CHV_CMN_USEDCLKCHANNEL;
1558 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
1559
Ville Syrjäläa5805162015-05-26 20:42:30 +03001560 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä9197c882014-04-09 13:29:05 +03001561}
1562
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001563static void vlv_hdmi_post_disable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001564{
1565 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1566 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001567 struct intel_crtc *intel_crtc =
1568 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001569 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001570 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001571
1572 /* Reset lanes to avoid HDMI flicker (VLV w/a) */
Ville Syrjäläa5805162015-05-26 20:42:30 +03001573 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001574 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), 0x00000000);
1575 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port), 0x00e00060);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001576 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001577}
1578
Ville Syrjälä580d3812014-04-09 13:29:00 +03001579static void chv_hdmi_post_disable(struct intel_encoder *encoder)
1580{
1581 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1582 struct drm_device *dev = encoder->base.dev;
1583 struct drm_i915_private *dev_priv = dev->dev_private;
1584 struct intel_crtc *intel_crtc =
1585 to_intel_crtc(encoder->base.crtc);
1586 enum dpio_channel ch = vlv_dport_to_channel(dport);
1587 enum pipe pipe = intel_crtc->pipe;
1588 u32 val;
1589
Ville Syrjäläa5805162015-05-26 20:42:30 +03001590 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001591
1592 /* Propagate soft reset to data lane reset */
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001593 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001594 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001595 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001596
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001597 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1598 val |= CHV_PCS_REQ_SOFTRESET_EN;
1599 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1600
1601 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä580d3812014-04-09 13:29:00 +03001602 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001603 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1604
1605 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1606 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1607 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001608
Ville Syrjäläa5805162015-05-26 20:42:30 +03001609 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001610}
1611
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001612static void chv_hdmi_pre_enable(struct intel_encoder *encoder)
1613{
1614 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Clint Taylorb4eb1562014-11-21 11:13:02 -08001615 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001616 struct drm_device *dev = encoder->base.dev;
1617 struct drm_i915_private *dev_priv = dev->dev_private;
1618 struct intel_crtc *intel_crtc =
1619 to_intel_crtc(encoder->base.crtc);
Clint Taylorb4eb1562014-11-21 11:13:02 -08001620 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001621 &intel_crtc->config->base.adjusted_mode;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001622 enum dpio_channel ch = vlv_dport_to_channel(dport);
1623 int pipe = intel_crtc->pipe;
Ville Syrjälä2e523e92015-04-10 18:21:27 +03001624 int data, i, stagger;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001625 u32 val;
1626
Ville Syrjäläa5805162015-05-26 20:42:30 +03001627 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001628
Ville Syrjälä570e2a72014-08-18 14:42:46 +03001629 /* allow hardware to manage TX FIFO reset source */
1630 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
1631 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1632 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
1633
1634 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
1635 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1636 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
1637
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001638 /* Deassert soft data lane reset*/
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001639 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001640 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001641 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001642
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001643 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1644 val |= CHV_PCS_REQ_SOFTRESET_EN;
1645 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1646
1647 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001648 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001649 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1650
1651 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1652 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1653 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001654
1655 /* Program Tx latency optimal setting */
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001656 for (i = 0; i < 4; i++) {
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001657 /* Set the upar bit */
1658 data = (i == 1) ? 0x0 : 0x1;
1659 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
1660 data << DPIO_UPAR_SHIFT);
1661 }
1662
1663 /* Data lane stagger programming */
Ville Syrjälä2e523e92015-04-10 18:21:27 +03001664 if (intel_crtc->config->port_clock > 270000)
1665 stagger = 0x18;
1666 else if (intel_crtc->config->port_clock > 135000)
1667 stagger = 0xd;
1668 else if (intel_crtc->config->port_clock > 67500)
1669 stagger = 0x7;
1670 else if (intel_crtc->config->port_clock > 33750)
1671 stagger = 0x4;
1672 else
1673 stagger = 0x2;
1674
1675 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
1676 val |= DPIO_TX2_STAGGER_MASK(0x1f);
1677 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
1678
1679 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
1680 val |= DPIO_TX2_STAGGER_MASK(0x1f);
1681 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
1682
1683 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW12(ch),
1684 DPIO_LANESTAGGER_STRAP(stagger) |
1685 DPIO_LANESTAGGER_STRAP_OVRD |
1686 DPIO_TX1_STAGGER_MASK(0x1f) |
1687 DPIO_TX1_STAGGER_MULT(6) |
1688 DPIO_TX2_STAGGER_MULT(0));
1689
1690 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW12(ch),
1691 DPIO_LANESTAGGER_STRAP(stagger) |
1692 DPIO_LANESTAGGER_STRAP_OVRD |
1693 DPIO_TX1_STAGGER_MASK(0x1f) |
1694 DPIO_TX1_STAGGER_MULT(7) |
1695 DPIO_TX2_STAGGER_MULT(5));
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001696
1697 /* Clear calc init */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001698 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1699 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001700 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1701 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001702 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1703
1704 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1705 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001706 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1707 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001708 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001709
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001710 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW9(ch));
1711 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1712 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1713 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW9(ch), val);
1714
1715 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW9(ch));
1716 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1717 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1718 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW9(ch), val);
1719
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001720 /* FIXME: Program the support xxx V-dB */
1721 /* Use 800mV-0dB */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001722 for (i = 0; i < 4; i++) {
1723 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
1724 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
1725 val |= 128 << DPIO_SWING_DEEMPH9P5_SHIFT;
1726 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
1727 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001728
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001729 for (i = 0; i < 4; i++) {
1730 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
Ville Syrjälä1fb44502014-06-28 02:04:03 +03001731 val &= ~DPIO_SWING_MARGIN000_MASK;
1732 val |= 102 << DPIO_SWING_MARGIN000_SHIFT;
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001733 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
1734 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001735
1736 /* Disable unique transition scale */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001737 for (i = 0; i < 4; i++) {
1738 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
1739 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
1740 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
1741 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001742
1743 /* Additional steps for 1200mV-0dB */
1744#if 0
1745 val = vlv_dpio_read(dev_priv, pipe, VLV_TX_DW3(ch));
1746 if (ch)
1747 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH1;
1748 else
1749 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH0;
1750 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(ch), val);
1751
1752 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(ch),
1753 vlv_dpio_read(dev_priv, pipe, VLV_TX_DW2(ch)) |
1754 (0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT));
1755#endif
1756 /* Start swing calculation */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001757 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1758 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1759 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1760
1761 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1762 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1763 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001764
1765 /* LRC Bypass */
1766 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
1767 val |= DPIO_LRC_BYPASS;
1768 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
1769
Ville Syrjäläa5805162015-05-26 20:42:30 +03001770 mutex_unlock(&dev_priv->sb_lock);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001771
Clint Taylorb4eb1562014-11-21 11:13:02 -08001772 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001773 intel_crtc->config->has_hdmi_sink,
Clint Taylorb4eb1562014-11-21 11:13:02 -08001774 adjusted_mode);
1775
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001776 intel_enable_hdmi(encoder);
1777
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001778 vlv_wait_port_ready(dev_priv, dport, 0x0);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001779}
1780
Eric Anholt7d573822009-01-02 13:33:00 -08001781static void intel_hdmi_destroy(struct drm_connector *connector)
1782{
Chris Wilson10e972d2014-09-04 21:43:45 +01001783 kfree(to_intel_connector(connector)->detect_edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001784 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +08001785 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001786}
1787
Eric Anholt7d573822009-01-02 13:33:00 -08001788static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001789 .dpms = intel_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -08001790 .detect = intel_hdmi_detect,
Chris Wilson953ece6972014-09-02 20:04:01 +01001791 .force = intel_hdmi_force,
Eric Anholt7d573822009-01-02 13:33:00 -08001792 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001793 .set_property = intel_hdmi_set_property,
Matt Roper2545e4a2015-01-22 16:51:27 -08001794 .atomic_get_property = intel_connector_atomic_get_property,
Eric Anholt7d573822009-01-02 13:33:00 -08001795 .destroy = intel_hdmi_destroy,
Matt Roperc6f95f22015-01-22 16:50:32 -08001796 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Ander Conselvan de Oliveira98969722015-03-20 16:18:06 +02001797 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Eric Anholt7d573822009-01-02 13:33:00 -08001798};
1799
1800static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
1801 .get_modes = intel_hdmi_get_modes,
1802 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01001803 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -08001804};
1805
Eric Anholt7d573822009-01-02 13:33:00 -08001806static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001807 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -08001808};
1809
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001810static void
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301811intel_attach_aspect_ratio_property(struct drm_connector *connector)
1812{
1813 if (!drm_mode_create_aspect_ratio_property(connector->dev))
1814 drm_object_attach_property(&connector->base,
1815 connector->dev->mode_config.aspect_ratio_property,
1816 DRM_MODE_PICTURE_ASPECT_NONE);
1817}
1818
1819static void
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001820intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
1821{
Chris Wilson3f43c482011-05-12 22:17:24 +01001822 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00001823 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001824 intel_hdmi->color_range_auto = true;
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301825 intel_attach_aspect_ratio_property(connector);
1826 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001827}
1828
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001829void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
1830 struct intel_connector *intel_connector)
Eric Anholt7d573822009-01-02 13:33:00 -08001831{
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001832 struct drm_connector *connector = &intel_connector->base;
1833 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
1834 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1835 struct drm_device *dev = intel_encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -08001836 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001837 enum port port = intel_dig_port->port;
Eric Anholt7d573822009-01-02 13:33:00 -08001838
Eric Anholt7d573822009-01-02 13:33:00 -08001839 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -04001840 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -08001841 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
1842
Peter Rossc3febcc2012-01-28 14:49:26 +01001843 connector->interlace_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001844 connector->doublescan_allowed = 0;
Damien Lespiau573e74a2013-09-25 16:45:40 +01001845 connector->stereo_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001846
Daniel Vetter08d644a2012-07-12 20:19:59 +02001847 switch (port) {
1848 case PORT_B:
Jani Nikula4c272832015-04-01 10:58:05 +03001849 if (IS_BROXTON(dev_priv))
1850 intel_hdmi->ddc_bus = GMBUS_PIN_1_BXT;
1851 else
1852 intel_hdmi->ddc_bus = GMBUS_PIN_DPB;
Egbert Eich1d843f92013-02-25 12:06:49 -05001853 intel_encoder->hpd_pin = HPD_PORT_B;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001854 break;
1855 case PORT_C:
Jani Nikula4c272832015-04-01 10:58:05 +03001856 if (IS_BROXTON(dev_priv))
1857 intel_hdmi->ddc_bus = GMBUS_PIN_2_BXT;
1858 else
1859 intel_hdmi->ddc_bus = GMBUS_PIN_DPC;
Egbert Eich1d843f92013-02-25 12:06:49 -05001860 intel_encoder->hpd_pin = HPD_PORT_C;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001861 break;
1862 case PORT_D:
Jani Nikula4c272832015-04-01 10:58:05 +03001863 if (WARN_ON(IS_BROXTON(dev_priv)))
1864 intel_hdmi->ddc_bus = GMBUS_PIN_DISABLED;
1865 else if (IS_CHERRYVIEW(dev_priv))
Jani Nikula988c7012015-03-27 00:20:19 +02001866 intel_hdmi->ddc_bus = GMBUS_PIN_DPD_CHV;
Ville Syrjäläc0c35322014-04-09 13:28:52 +03001867 else
Jani Nikula988c7012015-03-27 00:20:19 +02001868 intel_hdmi->ddc_bus = GMBUS_PIN_DPD;
Egbert Eich1d843f92013-02-25 12:06:49 -05001869 intel_encoder->hpd_pin = HPD_PORT_D;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001870 break;
1871 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05001872 intel_encoder->hpd_pin = HPD_PORT_A;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001873 /* Internal port only for eDP. */
1874 default:
Eugeni Dodonov6e4c1672012-05-09 15:37:13 -03001875 BUG();
Ma Lingf8aed702009-08-24 13:50:24 +08001876 }
Eric Anholt7d573822009-01-02 13:33:00 -08001877
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001878 if (IS_VALLEYVIEW(dev)) {
Shobhit Kumar90b107c2012-03-28 13:39:32 -07001879 intel_hdmi->write_infoframe = vlv_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001880 intel_hdmi->set_infoframes = vlv_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001881 intel_hdmi->infoframe_enabled = vlv_infoframe_enabled;
Sonika Jindalb98856a2014-07-22 11:13:46 +05301882 } else if (IS_G4X(dev)) {
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001883 intel_hdmi->write_infoframe = g4x_write_infoframe;
1884 intel_hdmi->set_infoframes = g4x_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001885 intel_hdmi->infoframe_enabled = g4x_infoframe_enabled;
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001886 } else if (HAS_DDI(dev)) {
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -03001887 intel_hdmi->write_infoframe = hsw_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001888 intel_hdmi->set_infoframes = hsw_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001889 intel_hdmi->infoframe_enabled = hsw_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001890 } else if (HAS_PCH_IBX(dev)) {
1891 intel_hdmi->write_infoframe = ibx_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001892 intel_hdmi->set_infoframes = ibx_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001893 intel_hdmi->infoframe_enabled = ibx_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001894 } else {
1895 intel_hdmi->write_infoframe = cpt_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001896 intel_hdmi->set_infoframes = cpt_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001897 intel_hdmi->infoframe_enabled = cpt_infoframe_enabled;
Jesse Barnes64a8fc02011-09-22 11:16:00 +05301898 }
Jesse Barnes45187ac2011-08-03 09:22:55 -07001899
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001900 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02001901 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
1902 else
1903 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak4932e2c2014-02-11 17:12:48 +02001904 intel_connector->unregister = intel_connector_unregister;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001905
1906 intel_hdmi_add_properties(intel_hdmi, connector);
1907
1908 intel_connector_attach_encoder(intel_connector, intel_encoder);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001909 drm_connector_register(connector);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001910
1911 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
1912 * 0xd. Failure to do so will result in spurious interrupts being
1913 * generated on the port when a cable is not attached.
1914 */
1915 if (IS_G4X(dev) && !IS_GM45(dev)) {
1916 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
1917 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
1918 }
1919}
1920
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001921void intel_hdmi_init(struct drm_device *dev, int hdmi_reg, enum port port)
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001922{
1923 struct intel_digital_port *intel_dig_port;
1924 struct intel_encoder *intel_encoder;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001925 struct intel_connector *intel_connector;
1926
Daniel Vetterb14c5672013-09-19 12:18:32 +02001927 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001928 if (!intel_dig_port)
1929 return;
1930
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03001931 intel_connector = intel_connector_alloc();
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001932 if (!intel_connector) {
1933 kfree(intel_dig_port);
1934 return;
1935 }
1936
1937 intel_encoder = &intel_dig_port->base;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001938
1939 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
1940 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001941
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001942 intel_encoder->compute_config = intel_hdmi_compute_config;
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03001943 if (HAS_PCH_SPLIT(dev)) {
1944 intel_encoder->disable = pch_disable_hdmi;
1945 intel_encoder->post_disable = pch_post_disable_hdmi;
1946 } else {
1947 intel_encoder->disable = g4x_disable_hdmi;
1948 }
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001949 intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001950 intel_encoder->get_config = intel_hdmi_get_config;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001951 if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03001952 intel_encoder->pre_pll_enable = chv_hdmi_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001953 intel_encoder->pre_enable = chv_hdmi_pre_enable;
1954 intel_encoder->enable = vlv_enable_hdmi;
Ville Syrjälä580d3812014-04-09 13:29:00 +03001955 intel_encoder->post_disable = chv_hdmi_post_disable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001956 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001957 intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
1958 intel_encoder->pre_enable = vlv_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001959 intel_encoder->enable = vlv_enable_hdmi;
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001960 intel_encoder->post_disable = vlv_hdmi_post_disable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001961 } else {
Jesse Barnes13732ba2014-04-05 11:51:35 -07001962 intel_encoder->pre_enable = intel_hdmi_pre_enable;
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001963 if (HAS_PCH_CPT(dev))
1964 intel_encoder->enable = cpt_enable_hdmi;
1965 else
1966 intel_encoder->enable = intel_enable_hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001967 }
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001968
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001969 intel_encoder->type = INTEL_OUTPUT_HDMI;
Ville Syrjälä882ec382014-04-28 14:07:43 +03001970 if (IS_CHERRYVIEW(dev)) {
1971 if (port == PORT_D)
1972 intel_encoder->crtc_mask = 1 << 2;
1973 else
1974 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
1975 } else {
1976 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
1977 }
Ville Syrjälä301ea742014-03-03 16:15:30 +02001978 intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
Ville Syrjäläc6f14952014-03-03 16:15:31 +02001979 /*
1980 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
1981 * to work on real hardware. And since g4x can send infoframes to
1982 * only one port anyway, nothing is lost by allowing it.
1983 */
1984 if (IS_G4X(dev))
1985 intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -08001986
Paulo Zanoni174edf12012-10-26 19:05:50 -02001987 intel_dig_port->port = port;
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001988 intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001989 intel_dig_port->dp.output_reg = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001990
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001991 intel_hdmi_init_connector(intel_dig_port, intel_connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001992}