blob: 995c5b261f4f0f5cf295de8b08c95840a36ca0fe [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);
226 int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
227 u32 val = I915_READ(reg);
228
229 return val & VIDEO_DIP_ENABLE;
230}
231
Paulo Zanonifdf12502012-05-04 17:18:24 -0300232static void cpt_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100233 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200234 const void *frame, ssize_t len)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700235{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200236 const uint32_t *data = frame;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700237 struct drm_device *dev = encoder->dev;
238 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300239 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100240 int i, reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300241 u32 val = I915_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700242
Paulo Zanoni822974a2012-05-28 16:42:51 -0300243 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
244
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530245 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100246 val |= g4x_infoframe_index(type);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700247
Paulo Zanoniecb97852012-05-04 17:18:21 -0300248 /* The DIP control register spec says that we need to update the AVI
249 * infoframe without clearing its enable bit */
Damien Lespiau178f7362013-08-06 20:32:18 +0100250 if (type != HDMI_INFOFRAME_TYPE_AVI)
251 val &= ~g4x_infoframe_enable(type);
Paulo Zanoniecb97852012-05-04 17:18:21 -0300252
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300253 I915_WRITE(reg, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700254
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300255 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700256 for (i = 0; i < len; i += 4) {
257 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
258 data++;
259 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300260 /* Write every possible data byte to force correct ECC calculation. */
261 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
262 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300263 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700264
Damien Lespiau178f7362013-08-06 20:32:18 +0100265 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300266 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200267 val |= VIDEO_DIP_FREQ_VSYNC;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700268
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300269 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300270 POSTING_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700271}
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700272
Jesse Barnese43823e2014-11-05 14:26:08 -0800273static bool cpt_infoframe_enabled(struct drm_encoder *encoder)
274{
275 struct drm_device *dev = encoder->dev;
276 struct drm_i915_private *dev_priv = dev->dev_private;
277 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
278 int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
279 u32 val = I915_READ(reg);
280
281 return val & VIDEO_DIP_ENABLE;
282}
283
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700284static void vlv_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100285 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200286 const void *frame, ssize_t len)
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700287{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200288 const uint32_t *data = frame;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700289 struct drm_device *dev = encoder->dev;
290 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300291 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100292 int i, reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300293 u32 val = I915_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700294
Paulo Zanoni822974a2012-05-28 16:42:51 -0300295 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
296
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700297 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100298 val |= g4x_infoframe_index(type);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700299
Damien Lespiau178f7362013-08-06 20:32:18 +0100300 val &= ~g4x_infoframe_enable(type);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300301
302 I915_WRITE(reg, val);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700303
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300304 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700305 for (i = 0; i < len; i += 4) {
306 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
307 data++;
308 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300309 /* Write every possible data byte to force correct ECC calculation. */
310 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
311 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300312 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700313
Damien Lespiau178f7362013-08-06 20:32:18 +0100314 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300315 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200316 val |= VIDEO_DIP_FREQ_VSYNC;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700317
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300318 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300319 POSTING_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700320}
321
Jesse Barnese43823e2014-11-05 14:26:08 -0800322static bool vlv_infoframe_enabled(struct drm_encoder *encoder)
323{
324 struct drm_device *dev = encoder->dev;
325 struct drm_i915_private *dev_priv = dev->dev_private;
326 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
327 int reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
328 u32 val = I915_READ(reg);
329
330 return val & VIDEO_DIP_ENABLE;
331}
332
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300333static void hsw_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100334 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200335 const void *frame, ssize_t len)
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300336{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200337 const uint32_t *data = frame;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300338 struct drm_device *dev = encoder->dev;
339 struct drm_i915_private *dev_priv = dev->dev_private;
340 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200341 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config->cpu_transcoder);
Damien Lespiau178f7362013-08-06 20:32:18 +0100342 u32 data_reg;
343 int i;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300344 u32 val = I915_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300345
Damien Lespiau178f7362013-08-06 20:32:18 +0100346 data_reg = hsw_infoframe_data_reg(type,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200347 intel_crtc->config->cpu_transcoder,
Antti Koskipaaa57c7742014-02-04 14:22:24 +0200348 dev_priv);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300349 if (data_reg == 0)
350 return;
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300351
Damien Lespiau178f7362013-08-06 20:32:18 +0100352 val &= ~hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300353 I915_WRITE(ctl_reg, val);
354
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300355 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300356 for (i = 0; i < len; i += 4) {
357 I915_WRITE(data_reg + i, *data);
358 data++;
359 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300360 /* Write every possible data byte to force correct ECC calculation. */
361 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
362 I915_WRITE(data_reg + i, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300363 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300364
Damien Lespiau178f7362013-08-06 20:32:18 +0100365 val |= hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300366 I915_WRITE(ctl_reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300367 POSTING_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300368}
369
Jesse Barnese43823e2014-11-05 14:26:08 -0800370static bool hsw_infoframe_enabled(struct drm_encoder *encoder)
371{
372 struct drm_device *dev = encoder->dev;
373 struct drm_i915_private *dev_priv = dev->dev_private;
374 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200375 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config->cpu_transcoder);
Jesse Barnese43823e2014-11-05 14:26:08 -0800376 u32 val = I915_READ(ctl_reg);
377
378 return val & (VIDEO_DIP_ENABLE_AVI_HSW | VIDEO_DIP_ENABLE_SPD_HSW |
379 VIDEO_DIP_ENABLE_VS_HSW);
380}
381
Damien Lespiau5adaea72013-08-06 20:32:19 +0100382/*
383 * The data we write to the DIP data buffer registers is 1 byte bigger than the
384 * HDMI infoframe size because of an ECC/reserved byte at position 3 (starting
385 * at 0). It's also a byte used by DisplayPort so the same DIP registers can be
386 * used for both technologies.
387 *
388 * DW0: Reserved/ECC/DP | HB2 | HB1 | HB0
389 * DW1: DB3 | DB2 | DB1 | DB0
390 * DW2: DB7 | DB6 | DB5 | DB4
391 * DW3: ...
392 *
393 * (HB is Header Byte, DB is Data Byte)
394 *
395 * The hdmi pack() functions don't know about that hardware specific hole so we
396 * trick them by giving an offset into the buffer and moving back the header
397 * bytes by one.
398 */
Damien Lespiau9198ee52013-08-06 20:32:24 +0100399static void intel_write_infoframe(struct drm_encoder *encoder,
400 union hdmi_infoframe *frame)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700401{
402 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100403 uint8_t buffer[VIDEO_DIP_DATA_SIZE];
404 ssize_t len;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700405
Damien Lespiau5adaea72013-08-06 20:32:19 +0100406 /* see comment above for the reason for this offset */
407 len = hdmi_infoframe_pack(frame, buffer + 1, sizeof(buffer) - 1);
408 if (len < 0)
409 return;
410
411 /* Insert the 'hole' (see big comment above) at position 3 */
412 buffer[0] = buffer[1];
413 buffer[1] = buffer[2];
414 buffer[2] = buffer[3];
415 buffer[3] = 0;
416 len++;
417
418 intel_hdmi->write_infoframe(encoder, frame->any.type, buffer, len);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700419}
420
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300421static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
Paulo Zanonic846b612012-04-13 16:31:41 -0300422 struct drm_display_mode *adjusted_mode)
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700423{
Ville Syrjäläabedc072013-01-17 16:31:31 +0200424 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Daniel Vetter50f3b012013-03-27 00:44:56 +0100425 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100426 union hdmi_infoframe frame;
427 int ret;
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700428
Vandana Kannan94a11dd2014-06-11 11:06:01 +0530429 /* Set user selected PAR to incoming mode's member */
430 adjusted_mode->picture_aspect_ratio = intel_hdmi->aspect_ratio;
431
Damien Lespiau5adaea72013-08-06 20:32:19 +0100432 ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
433 adjusted_mode);
434 if (ret < 0) {
435 DRM_ERROR("couldn't fill AVI infoframe\n");
436 return;
437 }
Paulo Zanonic846b612012-04-13 16:31:41 -0300438
Ville Syrjäläabedc072013-01-17 16:31:31 +0200439 if (intel_hdmi->rgb_quant_range_selectable) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200440 if (intel_crtc->config->limited_color_range)
Damien Lespiau5adaea72013-08-06 20:32:19 +0100441 frame.avi.quantization_range =
442 HDMI_QUANTIZATION_RANGE_LIMITED;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200443 else
Damien Lespiau5adaea72013-08-06 20:32:19 +0100444 frame.avi.quantization_range =
445 HDMI_QUANTIZATION_RANGE_FULL;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200446 }
447
Damien Lespiau9198ee52013-08-06 20:32:24 +0100448 intel_write_infoframe(encoder, &frame);
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700449}
450
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300451static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700452{
Damien Lespiau5adaea72013-08-06 20:32:19 +0100453 union hdmi_infoframe frame;
454 int ret;
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700455
Damien Lespiau5adaea72013-08-06 20:32:19 +0100456 ret = hdmi_spd_infoframe_init(&frame.spd, "Intel", "Integrated gfx");
457 if (ret < 0) {
458 DRM_ERROR("couldn't fill SPD infoframe\n");
459 return;
460 }
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700461
Damien Lespiau5adaea72013-08-06 20:32:19 +0100462 frame.spd.sdi = HDMI_SPD_SDI_PC;
463
Damien Lespiau9198ee52013-08-06 20:32:24 +0100464 intel_write_infoframe(encoder, &frame);
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700465}
466
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100467static void
468intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder,
469 struct drm_display_mode *adjusted_mode)
470{
471 union hdmi_infoframe frame;
472 int ret;
473
474 ret = drm_hdmi_vendor_infoframe_from_display_mode(&frame.vendor.hdmi,
475 adjusted_mode);
476 if (ret < 0)
477 return;
478
479 intel_write_infoframe(encoder, &frame);
480}
481
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300482static void g4x_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200483 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300484 struct drm_display_mode *adjusted_mode)
485{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300486 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200487 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
488 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300489 u32 reg = VIDEO_DIP_CTL;
490 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200491 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300492
Daniel Vetterafba0182012-06-12 16:36:45 +0200493 assert_hdmi_port_disabled(intel_hdmi);
494
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300495 /* If the registers were not initialized yet, they might be zeroes,
496 * which means we're selecting the AVI DIP and we're setting its
497 * frequency to once. This seems to really confuse the HW and make
498 * things stop working (the register spec says the AVI always needs to
499 * be sent every VSync). So here we avoid writing to the register more
500 * than we need and also explicitly select the AVI DIP and explicitly
501 * set its frequency to every VSync. Avoiding to write it twice seems to
502 * be enough to solve the problem, but being defensive shouldn't hurt us
503 * either. */
504 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
505
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200506 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300507 if (!(val & VIDEO_DIP_ENABLE))
508 return;
509 val &= ~VIDEO_DIP_ENABLE;
510 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300511 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300512 return;
513 }
514
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300515 if (port != (val & VIDEO_DIP_PORT_MASK)) {
516 if (val & VIDEO_DIP_ENABLE) {
517 val &= ~VIDEO_DIP_ENABLE;
518 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300519 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300520 }
521 val &= ~VIDEO_DIP_PORT_MASK;
522 val |= port;
523 }
524
Paulo Zanoni822974a2012-05-28 16:42:51 -0300525 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300526 val &= ~VIDEO_DIP_ENABLE_VENDOR;
Paulo Zanoni822974a2012-05-28 16:42:51 -0300527
Paulo Zanonif278d972012-05-28 16:42:50 -0300528 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300529 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300530
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300531 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
532 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100533 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300534}
535
536static void ibx_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200537 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300538 struct drm_display_mode *adjusted_mode)
539{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300540 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
541 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200542 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
543 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300544 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
545 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200546 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300547
Daniel Vetterafba0182012-06-12 16:36:45 +0200548 assert_hdmi_port_disabled(intel_hdmi);
549
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300550 /* See the big comment in g4x_set_infoframes() */
551 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
552
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200553 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300554 if (!(val & VIDEO_DIP_ENABLE))
555 return;
556 val &= ~VIDEO_DIP_ENABLE;
557 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300558 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300559 return;
560 }
561
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300562 if (port != (val & VIDEO_DIP_PORT_MASK)) {
563 if (val & VIDEO_DIP_ENABLE) {
564 val &= ~VIDEO_DIP_ENABLE;
565 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300566 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300567 }
568 val &= ~VIDEO_DIP_PORT_MASK;
569 val |= port;
570 }
571
Paulo Zanoni822974a2012-05-28 16:42:51 -0300572 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300573 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
574 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300575
Paulo Zanonif278d972012-05-28 16:42:50 -0300576 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300577 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300578
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300579 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
580 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100581 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300582}
583
584static void cpt_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200585 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300586 struct drm_display_mode *adjusted_mode)
587{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300588 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
589 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
590 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
591 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
592 u32 val = I915_READ(reg);
593
Daniel Vetterafba0182012-06-12 16:36:45 +0200594 assert_hdmi_port_disabled(intel_hdmi);
595
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300596 /* See the big comment in g4x_set_infoframes() */
597 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
598
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200599 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300600 if (!(val & VIDEO_DIP_ENABLE))
601 return;
602 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI);
603 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300604 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300605 return;
606 }
607
Paulo Zanoni822974a2012-05-28 16:42:51 -0300608 /* Set both together, unset both together: see the spec. */
609 val |= VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300610 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
611 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300612
613 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300614 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300615
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300616 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
617 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100618 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300619}
620
621static void vlv_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200622 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300623 struct drm_display_mode *adjusted_mode)
624{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300625 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700626 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300627 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
628 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
629 u32 reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
630 u32 val = I915_READ(reg);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700631 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300632
Daniel Vetterafba0182012-06-12 16:36:45 +0200633 assert_hdmi_port_disabled(intel_hdmi);
634
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300635 /* See the big comment in g4x_set_infoframes() */
636 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
637
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200638 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300639 if (!(val & VIDEO_DIP_ENABLE))
640 return;
641 val &= ~VIDEO_DIP_ENABLE;
642 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300643 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300644 return;
645 }
646
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700647 if (port != (val & VIDEO_DIP_PORT_MASK)) {
648 if (val & VIDEO_DIP_ENABLE) {
649 val &= ~VIDEO_DIP_ENABLE;
650 I915_WRITE(reg, val);
651 POSTING_READ(reg);
652 }
653 val &= ~VIDEO_DIP_PORT_MASK;
654 val |= port;
655 }
656
Paulo Zanoni822974a2012-05-28 16:42:51 -0300657 val |= VIDEO_DIP_ENABLE;
Jesse Barnes4d47dfb2014-04-02 10:08:52 -0700658 val &= ~(VIDEO_DIP_ENABLE_AVI | VIDEO_DIP_ENABLE_VENDOR |
659 VIDEO_DIP_ENABLE_GAMUT | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300660
661 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300662 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300663
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300664 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
665 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100666 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300667}
668
669static void hsw_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200670 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300671 struct drm_display_mode *adjusted_mode)
672{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300673 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
674 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
675 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200676 u32 reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config->cpu_transcoder);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300677 u32 val = I915_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300678
Daniel Vetterafba0182012-06-12 16:36:45 +0200679 assert_hdmi_port_disabled(intel_hdmi);
680
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200681 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300682 I915_WRITE(reg, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300683 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300684 return;
685 }
686
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300687 val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_GCP_HSW |
688 VIDEO_DIP_ENABLE_VS_HSW | VIDEO_DIP_ENABLE_GMP_HSW);
689
690 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300691 POSTING_READ(reg);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300692
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300693 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
694 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100695 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300696}
697
Daniel Vetter4cde8a22014-04-24 23:54:56 +0200698static void intel_hdmi_prepare(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800699{
Daniel Vetterc59423a2013-07-21 21:37:04 +0200700 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800701 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc59423a2013-07-21 21:37:04 +0200702 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
703 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200704 struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300705 u32 hdmi_val;
Eric Anholt7d573822009-01-02 13:33:00 -0800706
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300707 hdmi_val = SDVO_ENCODING_HDMI;
Ville Syrjälä2af2c492013-06-25 14:16:34 +0300708 if (!HAS_PCH_SPLIT(dev))
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300709 hdmi_val |= intel_hdmi->color_range;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400710 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300711 hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400712 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300713 hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800714
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200715 if (crtc->config->pipe_bpp > 24)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300716 hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700717 else
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300718 hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700719
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200720 if (crtc->config->has_hdmi_sink)
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300721 hdmi_val |= HDMI_MODE_SELECT_HDMI;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800722
Jesse Barnes75770562011-10-12 09:01:58 -0700723 if (HAS_PCH_CPT(dev))
Daniel Vetterc59423a2013-07-21 21:37:04 +0200724 hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
Chon Ming Lee44f37d12014-04-09 13:28:21 +0300725 else if (IS_CHERRYVIEW(dev))
726 hdmi_val |= SDVO_PIPE_SEL_CHV(crtc->pipe);
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300727 else
Daniel Vetterc59423a2013-07-21 21:37:04 +0200728 hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
Eric Anholt7d573822009-01-02 13:33:00 -0800729
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300730 I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
731 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800732}
733
Daniel Vetter85234cd2012-07-02 13:27:29 +0200734static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
735 enum pipe *pipe)
Eric Anholt7d573822009-01-02 13:33:00 -0800736{
Daniel Vetter85234cd2012-07-02 13:27:29 +0200737 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800738 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200739 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Imre Deak6d129be2014-03-05 16:20:54 +0200740 enum intel_display_power_domain power_domain;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200741 u32 tmp;
742
Imre Deak6d129be2014-03-05 16:20:54 +0200743 power_domain = intel_display_port_power_domain(encoder);
Daniel Vetterf458ebb2014-09-30 10:56:39 +0200744 if (!intel_display_power_is_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200745 return false;
746
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300747 tmp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200748
749 if (!(tmp & SDVO_ENABLE))
750 return false;
751
752 if (HAS_PCH_CPT(dev))
753 *pipe = PORT_TO_PIPE_CPT(tmp);
Ville Syrjälä71485e02014-04-09 13:28:55 +0300754 else if (IS_CHERRYVIEW(dev))
755 *pipe = SDVO_PORT_TO_PIPE_CHV(tmp);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200756 else
757 *pipe = PORT_TO_PIPE(tmp);
758
759 return true;
760}
761
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700762static void intel_hdmi_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200763 struct intel_crtc_state *pipe_config)
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700764{
765 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300766 struct drm_device *dev = encoder->base.dev;
767 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700768 u32 tmp, flags = 0;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300769 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700770
771 tmp = I915_READ(intel_hdmi->hdmi_reg);
772
773 if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
774 flags |= DRM_MODE_FLAG_PHSYNC;
775 else
776 flags |= DRM_MODE_FLAG_NHSYNC;
777
778 if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
779 flags |= DRM_MODE_FLAG_PVSYNC;
780 else
781 flags |= DRM_MODE_FLAG_NVSYNC;
782
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200783 if (tmp & HDMI_MODE_SELECT_HDMI)
784 pipe_config->has_hdmi_sink = true;
785
Jesse Barnese43823e2014-11-05 14:26:08 -0800786 if (intel_hdmi->infoframe_enabled(&encoder->base))
787 pipe_config->has_infoframe = true;
788
Jani Nikulac84db772014-09-17 15:34:58 +0300789 if (tmp & SDVO_AUDIO_ENABLE)
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200790 pipe_config->has_audio = true;
791
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300792 if (!HAS_PCH_SPLIT(dev) &&
793 tmp & HDMI_COLOR_RANGE_16_235)
794 pipe_config->limited_color_range = true;
795
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200796 pipe_config->base.adjusted_mode.flags |= flags;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300797
798 if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
799 dotclock = pipe_config->port_clock * 2 / 3;
800 else
801 dotclock = pipe_config->port_clock;
802
803 if (HAS_PCH_SPLIT(dev_priv->dev))
804 ironlake_check_encoder_dotclock(pipe_config, dotclock);
805
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200806 pipe_config->base.adjusted_mode.crtc_clock = dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700807}
808
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200809static void intel_enable_hdmi(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800810{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200811 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800812 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300813 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200814 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Eric Anholt7d573822009-01-02 13:33:00 -0800815 u32 temp;
Wu Fengguang2deed762011-12-09 20:42:20 +0800816 u32 enable_bits = SDVO_ENABLE;
817
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200818 if (intel_crtc->config->has_audio)
Wu Fengguang2deed762011-12-09 20:42:20 +0800819 enable_bits |= SDVO_AUDIO_ENABLE;
Eric Anholt7d573822009-01-02 13:33:00 -0800820
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300821 temp = I915_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000822
Daniel Vetter7a87c282012-06-05 11:03:39 +0200823 /* HW workaround for IBX, we need to move the port to transcoder A
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300824 * before disabling it, so restore the transcoder select bit here. */
825 if (HAS_PCH_IBX(dev))
826 enable_bits |= SDVO_PIPE_SEL(intel_crtc->pipe);
Daniel Vetter7a87c282012-06-05 11:03:39 +0200827
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200828 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
829 * we do this anyway which shows more stable in testing.
830 */
831 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300832 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
833 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200834 }
Daniel Vetter7a87c282012-06-05 11:03:39 +0200835
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200836 temp |= enable_bits;
837
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300838 I915_WRITE(intel_hdmi->hdmi_reg, temp);
839 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200840
841 /* HW workaround, need to write this twice for issue that may result
842 * in first write getting masked.
843 */
844 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300845 I915_WRITE(intel_hdmi->hdmi_reg, temp);
846 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200847 }
Jani Nikulac1dec792014-10-27 16:26:56 +0200848
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200849 if (intel_crtc->config->has_audio) {
850 WARN_ON(!intel_crtc->config->has_hdmi_sink);
Jani Nikulac1dec792014-10-27 16:26:56 +0200851 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
852 pipe_name(intel_crtc->pipe));
853 intel_audio_codec_enable(encoder);
854 }
Jani Nikulab76cf762013-07-30 12:20:31 +0300855}
Jesse Barnes89b667f2013-04-18 14:51:36 -0700856
Jani Nikulab76cf762013-07-30 12:20:31 +0300857static void vlv_enable_hdmi(struct intel_encoder *encoder)
858{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200859}
860
861static void intel_disable_hdmi(struct intel_encoder *encoder)
862{
863 struct drm_device *dev = encoder->base.dev;
864 struct drm_i915_private *dev_priv = dev->dev_private;
865 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Jani Nikula495a5bb2014-10-27 16:26:55 +0200866 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200867 u32 temp;
Wang Xingchao3cce5742012-09-13 11:19:00 +0800868 u32 enable_bits = SDVO_ENABLE | SDVO_AUDIO_ENABLE;
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200869
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200870 if (crtc->config->has_audio)
Jani Nikula495a5bb2014-10-27 16:26:55 +0200871 intel_audio_codec_disable(encoder);
872
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300873 temp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200874
875 /* HW workaround for IBX, we need to move the port to transcoder A
876 * before disabling it. */
877 if (HAS_PCH_IBX(dev)) {
878 struct drm_crtc *crtc = encoder->base.crtc;
879 int pipe = crtc ? to_intel_crtc(crtc)->pipe : -1;
880
881 if (temp & SDVO_PIPE_B_SELECT) {
882 temp &= ~SDVO_PIPE_B_SELECT;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300883 I915_WRITE(intel_hdmi->hdmi_reg, temp);
884 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200885
886 /* Again we need to write this twice. */
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300887 I915_WRITE(intel_hdmi->hdmi_reg, temp);
888 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200889
890 /* Transcoder selection bits only update
891 * effectively on vblank. */
892 if (crtc)
893 intel_wait_for_vblank(dev, pipe);
894 else
895 msleep(50);
Daniel Vetter7a87c282012-06-05 11:03:39 +0200896 }
897 }
898
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000899 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
900 * we do this anyway which shows more stable in testing.
901 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800902 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300903 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
904 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800905 }
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000906
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200907 temp &= ~enable_bits;
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000908
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300909 I915_WRITE(intel_hdmi->hdmi_reg, temp);
910 POSTING_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000911
912 /* HW workaround, need to write this twice for issue that may result
913 * in first write getting masked.
914 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800915 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300916 I915_WRITE(intel_hdmi->hdmi_reg, temp);
917 POSTING_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000918 }
Eric Anholt7d573822009-01-02 13:33:00 -0800919}
920
Ville Syrjälä40478452014-03-27 11:08:45 +0200921static int hdmi_portclock_limit(struct intel_hdmi *hdmi, bool respect_dvi_limit)
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200922{
923 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
924
Ville Syrjälä40478452014-03-27 11:08:45 +0200925 if ((respect_dvi_limit && !hdmi->has_hdmi_sink) || IS_G4X(dev))
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200926 return 165000;
Damien Lespiaue3c33572013-11-02 21:07:51 -0700927 else if (IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8)
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200928 return 300000;
929 else
930 return 225000;
931}
932
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000933static enum drm_mode_status
934intel_hdmi_mode_valid(struct drm_connector *connector,
935 struct drm_display_mode *mode)
Eric Anholt7d573822009-01-02 13:33:00 -0800936{
Clint Taylor697c4072014-09-02 17:03:36 -0700937 int clock = mode->clock;
938
939 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
940 clock *= 2;
941
942 if (clock > hdmi_portclock_limit(intel_attached_hdmi(connector),
943 true))
Eric Anholt7d573822009-01-02 13:33:00 -0800944 return MODE_CLOCK_HIGH;
Clint Taylor697c4072014-09-02 17:03:36 -0700945 if (clock < 20000)
Nicolas Kaiser5cbba412011-05-30 12:48:26 +0200946 return MODE_CLOCK_LOW;
Eric Anholt7d573822009-01-02 13:33:00 -0800947
948 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
949 return MODE_NO_DBLESCAN;
950
951 return MODE_OK;
952}
953
Ville Syrjälä71800632014-03-03 16:15:29 +0200954static bool hdmi_12bpc_possible(struct intel_crtc *crtc)
955{
956 struct drm_device *dev = crtc->base.dev;
957 struct intel_encoder *encoder;
958 int count = 0, count_hdmi = 0;
959
Sonika Jindalf227ae92014-07-21 15:23:45 +0530960 if (HAS_GMCH_DISPLAY(dev))
Ville Syrjälä71800632014-03-03 16:15:29 +0200961 return false;
962
Damien Lespiaub2784e12014-08-05 11:29:37 +0100963 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä71800632014-03-03 16:15:29 +0200964 if (encoder->new_crtc != crtc)
965 continue;
966
967 count_hdmi += encoder->type == INTEL_OUTPUT_HDMI;
968 count++;
969 }
970
971 /*
972 * HDMI 12bpc affects the clocks, so it's only possible
973 * when not cloning with other encoder types.
974 */
975 return count_hdmi > 0 && count_hdmi == count;
976}
977
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100978bool intel_hdmi_compute_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200979 struct intel_crtc_state *pipe_config)
Eric Anholt7d573822009-01-02 13:33:00 -0800980{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100981 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
982 struct drm_device *dev = encoder->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200983 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
984 int clock_12bpc = pipe_config->base.adjusted_mode.crtc_clock * 3 / 2;
Ville Syrjälä40478452014-03-27 11:08:45 +0200985 int portclock_limit = hdmi_portclock_limit(intel_hdmi, false);
Daniel Vettere29c22c2013-02-21 00:00:16 +0100986 int desired_bpp;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200987
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200988 pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink;
989
Jesse Barnese43823e2014-11-05 14:26:08 -0800990 if (pipe_config->has_hdmi_sink)
991 pipe_config->has_infoframe = true;
992
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200993 if (intel_hdmi->color_range_auto) {
994 /* See CEA-861-E - 5.1 Default Encoding Parameters */
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200995 if (pipe_config->has_hdmi_sink &&
Thierry Reding18316c82012-12-20 15:41:44 +0100996 drm_match_cea_mode(adjusted_mode) > 1)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300997 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200998 else
999 intel_hdmi->color_range = 0;
1000 }
1001
Clint Taylor697c4072014-09-02 17:03:36 -07001002 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK) {
1003 pipe_config->pixel_multiplier = 2;
1004 }
1005
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001006 if (intel_hdmi->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +01001007 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001008
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001009 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
1010 pipe_config->has_pch_encoder = true;
1011
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001012 if (pipe_config->has_hdmi_sink && intel_hdmi->has_audio)
1013 pipe_config->has_audio = true;
1014
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001015 /*
1016 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
1017 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
Daniel Vetter325b9d02013-04-19 11:24:33 +02001018 * outputs. We also need to check that the higher clock still fits
1019 * within limits.
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001020 */
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001021 if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink &&
Ville Syrjälä71800632014-03-03 16:15:29 +02001022 clock_12bpc <= portclock_limit &&
1023 hdmi_12bpc_possible(encoder->new_crtc)) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001024 DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
1025 desired_bpp = 12*3;
Daniel Vetter325b9d02013-04-19 11:24:33 +02001026
1027 /* Need to adjust the port link by 1.5x for 12bpc. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02001028 pipe_config->port_clock = clock_12bpc;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001029 } else {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001030 DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
1031 desired_bpp = 8*3;
1032 }
1033
1034 if (!pipe_config->bw_constrained) {
1035 DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
1036 pipe_config->pipe_bpp = desired_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001037 }
1038
Damien Lespiau241bfc32013-09-25 16:45:37 +01001039 if (adjusted_mode->crtc_clock > portclock_limit) {
Daniel Vetter325b9d02013-04-19 11:24:33 +02001040 DRM_DEBUG_KMS("too high HDMI clock, rejecting mode\n");
1041 return false;
1042 }
1043
Eric Anholt7d573822009-01-02 13:33:00 -08001044 return true;
1045}
1046
Chris Wilson953ece6972014-09-02 20:04:01 +01001047static void
1048intel_hdmi_unset_edid(struct drm_connector *connector)
Ma Ling9dff6af2009-04-02 13:13:26 +08001049{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001050 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Imre Deak671dedd2014-03-05 16:20:53 +02001051
Chris Wilsonea5b2132010-08-04 13:50:23 +01001052 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +08001053 intel_hdmi->has_audio = false;
Ville Syrjäläabedc072013-01-17 16:31:31 +02001054 intel_hdmi->rgb_quant_range_selectable = false;
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +08001055
Chris Wilson953ece6972014-09-02 20:04:01 +01001056 kfree(to_intel_connector(connector)->detect_edid);
1057 to_intel_connector(connector)->detect_edid = NULL;
Ma Ling9dff6af2009-04-02 13:13:26 +08001058}
1059
Chris Wilson953ece6972014-09-02 20:04:01 +01001060static bool
1061intel_hdmi_set_edid(struct drm_connector *connector)
Eric Anholt7d573822009-01-02 13:33:00 -08001062{
Chris Wilson953ece6972014-09-02 20:04:01 +01001063 struct drm_i915_private *dev_priv = to_i915(connector->dev);
1064 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1065 struct intel_encoder *intel_encoder =
1066 &hdmi_to_dig_port(intel_hdmi)->base;
Imre Deak671dedd2014-03-05 16:20:53 +02001067 enum intel_display_power_domain power_domain;
Chris Wilson953ece6972014-09-02 20:04:01 +01001068 struct edid *edid;
1069 bool connected = false;
Eric Anholt7d573822009-01-02 13:33:00 -08001070
Imre Deak671dedd2014-03-05 16:20:53 +02001071 power_domain = intel_display_port_power_domain(intel_encoder);
1072 intel_display_power_get(dev_priv, power_domain);
1073
Chris Wilson953ece6972014-09-02 20:04:01 +01001074 edid = drm_get_edid(connector,
1075 intel_gmbus_get_adapter(dev_priv,
1076 intel_hdmi->ddc_bus));
Imre Deak671dedd2014-03-05 16:20:53 +02001077
1078 intel_display_power_put(dev_priv, power_domain);
1079
Chris Wilson953ece6972014-09-02 20:04:01 +01001080 to_intel_connector(connector)->detect_edid = edid;
1081 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL) {
1082 intel_hdmi->rgb_quant_range_selectable =
1083 drm_rgb_quant_range_selectable(edid);
1084
1085 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
1086 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
1087 intel_hdmi->has_audio =
1088 intel_hdmi->force_audio == HDMI_AUDIO_ON;
1089
1090 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
1091 intel_hdmi->has_hdmi_sink =
1092 drm_detect_hdmi_monitor(edid);
1093
1094 connected = true;
1095 }
1096
1097 return connected;
1098}
1099
1100static enum drm_connector_status
1101intel_hdmi_detect(struct drm_connector *connector, bool force)
1102{
1103 enum drm_connector_status status;
1104
1105 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1106 connector->base.id, connector->name);
1107
1108 intel_hdmi_unset_edid(connector);
1109
1110 if (intel_hdmi_set_edid(connector)) {
1111 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1112
1113 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1114 status = connector_status_connected;
1115 } else
1116 status = connector_status_disconnected;
1117
1118 return status;
1119}
1120
1121static void
1122intel_hdmi_force(struct drm_connector *connector)
1123{
1124 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1125
1126 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1127 connector->base.id, connector->name);
1128
1129 intel_hdmi_unset_edid(connector);
1130
1131 if (connector->status != connector_status_connected)
1132 return;
1133
1134 intel_hdmi_set_edid(connector);
1135 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1136}
1137
1138static int intel_hdmi_get_modes(struct drm_connector *connector)
1139{
1140 struct edid *edid;
1141
1142 edid = to_intel_connector(connector)->detect_edid;
1143 if (edid == NULL)
1144 return 0;
1145
1146 return intel_connector_update_modes(connector, edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001147}
1148
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001149static bool
1150intel_hdmi_detect_audio(struct drm_connector *connector)
1151{
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001152 bool has_audio = false;
Chris Wilson953ece6972014-09-02 20:04:01 +01001153 struct edid *edid;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001154
Chris Wilson953ece6972014-09-02 20:04:01 +01001155 edid = to_intel_connector(connector)->detect_edid;
1156 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL)
1157 has_audio = drm_detect_monitor_audio(edid);
Imre Deak671dedd2014-03-05 16:20:53 +02001158
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001159 return has_audio;
1160}
1161
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001162static int
1163intel_hdmi_set_property(struct drm_connector *connector,
Paulo Zanonied517fb2012-05-14 17:12:50 -03001164 struct drm_property *property,
1165 uint64_t val)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001166{
1167 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001168 struct intel_digital_port *intel_dig_port =
1169 hdmi_to_dig_port(intel_hdmi);
Chris Wilsone953fd72011-02-21 22:23:52 +00001170 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001171 int ret;
1172
Rob Clark662595d2012-10-11 20:36:04 -05001173 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001174 if (ret)
1175 return ret;
1176
Chris Wilson3f43c482011-05-12 22:17:24 +01001177 if (property == dev_priv->force_audio_property) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001178 enum hdmi_force_audio i = val;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001179 bool has_audio;
1180
1181 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001182 return 0;
1183
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001184 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001185
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001186 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001187 has_audio = intel_hdmi_detect_audio(connector);
1188 else
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001189 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001190
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001191 if (i == HDMI_AUDIO_OFF_DVI)
1192 intel_hdmi->has_hdmi_sink = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001193
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001194 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001195 goto done;
1196 }
1197
Chris Wilsone953fd72011-02-21 22:23:52 +00001198 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02001199 bool old_auto = intel_hdmi->color_range_auto;
1200 uint32_t old_range = intel_hdmi->color_range;
1201
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001202 switch (val) {
1203 case INTEL_BROADCAST_RGB_AUTO:
1204 intel_hdmi->color_range_auto = true;
1205 break;
1206 case INTEL_BROADCAST_RGB_FULL:
1207 intel_hdmi->color_range_auto = false;
1208 intel_hdmi->color_range = 0;
1209 break;
1210 case INTEL_BROADCAST_RGB_LIMITED:
1211 intel_hdmi->color_range_auto = false;
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -03001212 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001213 break;
1214 default:
1215 return -EINVAL;
1216 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02001217
1218 if (old_auto == intel_hdmi->color_range_auto &&
1219 old_range == intel_hdmi->color_range)
1220 return 0;
1221
Chris Wilsone953fd72011-02-21 22:23:52 +00001222 goto done;
1223 }
1224
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301225 if (property == connector->dev->mode_config.aspect_ratio_property) {
1226 switch (val) {
1227 case DRM_MODE_PICTURE_ASPECT_NONE:
1228 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
1229 break;
1230 case DRM_MODE_PICTURE_ASPECT_4_3:
1231 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_4_3;
1232 break;
1233 case DRM_MODE_PICTURE_ASPECT_16_9:
1234 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_16_9;
1235 break;
1236 default:
1237 return -EINVAL;
1238 }
1239 goto done;
1240 }
1241
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001242 return -EINVAL;
1243
1244done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00001245 if (intel_dig_port->base.base.crtc)
1246 intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001247
1248 return 0;
1249}
1250
Jesse Barnes13732ba2014-04-05 11:51:35 -07001251static void intel_hdmi_pre_enable(struct intel_encoder *encoder)
1252{
1253 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1254 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
1255 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001256 &intel_crtc->config->base.adjusted_mode;
Jesse Barnes13732ba2014-04-05 11:51:35 -07001257
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001258 intel_hdmi_prepare(encoder);
1259
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001260 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001261 intel_crtc->config->has_hdmi_sink,
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001262 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001263}
1264
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001265static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001266{
1267 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001268 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001269 struct drm_device *dev = encoder->base.dev;
1270 struct drm_i915_private *dev_priv = dev->dev_private;
1271 struct intel_crtc *intel_crtc =
1272 to_intel_crtc(encoder->base.crtc);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001273 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001274 &intel_crtc->config->base.adjusted_mode;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001275 enum dpio_channel port = vlv_dport_to_channel(dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001276 int pipe = intel_crtc->pipe;
1277 u32 val;
1278
Jesse Barnes89b667f2013-04-18 14:51:36 -07001279 /* Enable clock channels for this port */
Chris Wilson0980a602013-07-26 19:57:35 +01001280 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001281 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001282 val = 0;
1283 if (pipe)
1284 val |= (1<<21);
1285 else
1286 val &= ~(1<<21);
1287 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001288 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001289
1290 /* HDMI 1.0V-2dB */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001291 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0);
1292 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), 0x2b245f5f);
1293 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port), 0x5578b83a);
1294 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0c782040);
1295 vlv_dpio_write(dev_priv, pipe, VLV_TX3_DW4(port), 0x2b247878);
1296 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
1297 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1298 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001299
1300 /* Program lane clock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001301 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
1302 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Chris Wilson0980a602013-07-26 19:57:35 +01001303 mutex_unlock(&dev_priv->dpio_lock);
Jani Nikulab76cf762013-07-30 12:20:31 +03001304
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001305 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001306 intel_crtc->config->has_hdmi_sink,
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001307 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001308
Jani Nikulab76cf762013-07-30 12:20:31 +03001309 intel_enable_hdmi(encoder);
1310
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001311 vlv_wait_port_ready(dev_priv, dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001312}
1313
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001314static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001315{
1316 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1317 struct drm_device *dev = encoder->base.dev;
1318 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001319 struct intel_crtc *intel_crtc =
1320 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001321 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001322 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001323
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001324 intel_hdmi_prepare(encoder);
1325
Jesse Barnes89b667f2013-04-18 14:51:36 -07001326 /* Program Tx lane resets to default */
Chris Wilson0980a602013-07-26 19:57:35 +01001327 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001328 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001329 DPIO_PCS_TX_LANE2_RESET |
1330 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001331 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001332 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1333 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1334 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1335 DPIO_PCS_CLK_SOFT_RESET);
1336
1337 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001338 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
1339 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
1340 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001341
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001342 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1343 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Chris Wilson0980a602013-07-26 19:57:35 +01001344 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001345}
1346
Ville Syrjälä9197c882014-04-09 13:29:05 +03001347static void chv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
1348{
1349 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1350 struct drm_device *dev = encoder->base.dev;
1351 struct drm_i915_private *dev_priv = dev->dev_private;
1352 struct intel_crtc *intel_crtc =
1353 to_intel_crtc(encoder->base.crtc);
1354 enum dpio_channel ch = vlv_dport_to_channel(dport);
1355 enum pipe pipe = intel_crtc->pipe;
1356 u32 val;
1357
Ville Syrjälä625695f2014-06-28 02:04:02 +03001358 intel_hdmi_prepare(encoder);
1359
Ville Syrjälä9197c882014-04-09 13:29:05 +03001360 mutex_lock(&dev_priv->dpio_lock);
1361
Ville Syrjäläb9e5ac32014-05-27 16:30:18 +03001362 /* program left/right clock distribution */
1363 if (pipe != PIPE_B) {
1364 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1365 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1366 if (ch == DPIO_CH0)
1367 val |= CHV_BUFLEFTENA1_FORCE;
1368 if (ch == DPIO_CH1)
1369 val |= CHV_BUFRIGHTENA1_FORCE;
1370 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1371 } else {
1372 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1373 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1374 if (ch == DPIO_CH0)
1375 val |= CHV_BUFLEFTENA2_FORCE;
1376 if (ch == DPIO_CH1)
1377 val |= CHV_BUFRIGHTENA2_FORCE;
1378 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1379 }
1380
Ville Syrjälä9197c882014-04-09 13:29:05 +03001381 /* program clock channel usage */
1382 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
1383 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1384 if (pipe != PIPE_B)
1385 val &= ~CHV_PCS_USEDCLKCHANNEL;
1386 else
1387 val |= CHV_PCS_USEDCLKCHANNEL;
1388 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
1389
1390 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
1391 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1392 if (pipe != PIPE_B)
1393 val &= ~CHV_PCS_USEDCLKCHANNEL;
1394 else
1395 val |= CHV_PCS_USEDCLKCHANNEL;
1396 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
1397
1398 /*
1399 * This a a bit weird since generally CL
1400 * matches the pipe, but here we need to
1401 * pick the CL based on the port.
1402 */
1403 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
1404 if (pipe != PIPE_B)
1405 val &= ~CHV_CMN_USEDCLKCHANNEL;
1406 else
1407 val |= CHV_CMN_USEDCLKCHANNEL;
1408 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
1409
1410 mutex_unlock(&dev_priv->dpio_lock);
1411}
1412
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001413static void vlv_hdmi_post_disable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001414{
1415 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1416 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001417 struct intel_crtc *intel_crtc =
1418 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001419 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001420 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001421
1422 /* Reset lanes to avoid HDMI flicker (VLV w/a) */
1423 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001424 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), 0x00000000);
1425 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port), 0x00e00060);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001426 mutex_unlock(&dev_priv->dpio_lock);
1427}
1428
Ville Syrjälä580d3812014-04-09 13:29:00 +03001429static void chv_hdmi_post_disable(struct intel_encoder *encoder)
1430{
1431 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1432 struct drm_device *dev = encoder->base.dev;
1433 struct drm_i915_private *dev_priv = dev->dev_private;
1434 struct intel_crtc *intel_crtc =
1435 to_intel_crtc(encoder->base.crtc);
1436 enum dpio_channel ch = vlv_dport_to_channel(dport);
1437 enum pipe pipe = intel_crtc->pipe;
1438 u32 val;
1439
1440 mutex_lock(&dev_priv->dpio_lock);
1441
1442 /* Propagate soft reset to data lane reset */
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001443 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001444 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001445 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001446
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001447 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1448 val |= CHV_PCS_REQ_SOFTRESET_EN;
1449 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1450
1451 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä580d3812014-04-09 13:29:00 +03001452 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001453 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1454
1455 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1456 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1457 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001458
1459 mutex_unlock(&dev_priv->dpio_lock);
1460}
1461
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001462static void chv_hdmi_pre_enable(struct intel_encoder *encoder)
1463{
1464 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Clint Taylorb4eb1562014-11-21 11:13:02 -08001465 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001466 struct drm_device *dev = encoder->base.dev;
1467 struct drm_i915_private *dev_priv = dev->dev_private;
1468 struct intel_crtc *intel_crtc =
1469 to_intel_crtc(encoder->base.crtc);
Clint Taylorb4eb1562014-11-21 11:13:02 -08001470 struct drm_display_mode *adjusted_mode =
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001471 &intel_crtc->config->base.adjusted_mode;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001472 enum dpio_channel ch = vlv_dport_to_channel(dport);
1473 int pipe = intel_crtc->pipe;
1474 int data, i;
1475 u32 val;
1476
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001477 mutex_lock(&dev_priv->dpio_lock);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001478
Ville Syrjälä570e2a72014-08-18 14:42:46 +03001479 /* allow hardware to manage TX FIFO reset source */
1480 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
1481 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1482 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
1483
1484 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
1485 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1486 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
1487
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001488 /* Deassert soft data lane reset*/
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001489 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001490 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001491 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001492
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001493 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1494 val |= CHV_PCS_REQ_SOFTRESET_EN;
1495 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1496
1497 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001498 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001499 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1500
1501 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1502 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1503 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001504
1505 /* Program Tx latency optimal setting */
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001506 for (i = 0; i < 4; i++) {
1507 /* Set the latency optimal bit */
1508 data = (i == 1) ? 0x0 : 0x6;
1509 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW11(ch, i),
1510 data << DPIO_FRC_LATENCY_SHFIT);
1511
1512 /* Set the upar bit */
1513 data = (i == 1) ? 0x0 : 0x1;
1514 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
1515 data << DPIO_UPAR_SHIFT);
1516 }
1517
1518 /* Data lane stagger programming */
1519 /* FIXME: Fix up value only after power analysis */
1520
1521 /* Clear calc init */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001522 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1523 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001524 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1525 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001526 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1527
1528 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1529 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001530 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1531 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001532 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001533
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001534 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW9(ch));
1535 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1536 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1537 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW9(ch), val);
1538
1539 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW9(ch));
1540 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1541 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1542 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW9(ch), val);
1543
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001544 /* FIXME: Program the support xxx V-dB */
1545 /* Use 800mV-0dB */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001546 for (i = 0; i < 4; i++) {
1547 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
1548 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
1549 val |= 128 << DPIO_SWING_DEEMPH9P5_SHIFT;
1550 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
1551 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001552
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001553 for (i = 0; i < 4; i++) {
1554 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
Ville Syrjälä1fb44502014-06-28 02:04:03 +03001555 val &= ~DPIO_SWING_MARGIN000_MASK;
1556 val |= 102 << DPIO_SWING_MARGIN000_SHIFT;
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001557 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
1558 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001559
1560 /* Disable unique transition scale */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001561 for (i = 0; i < 4; i++) {
1562 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
1563 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
1564 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
1565 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001566
1567 /* Additional steps for 1200mV-0dB */
1568#if 0
1569 val = vlv_dpio_read(dev_priv, pipe, VLV_TX_DW3(ch));
1570 if (ch)
1571 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH1;
1572 else
1573 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH0;
1574 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(ch), val);
1575
1576 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(ch),
1577 vlv_dpio_read(dev_priv, pipe, VLV_TX_DW2(ch)) |
1578 (0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT));
1579#endif
1580 /* Start swing calculation */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001581 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1582 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1583 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1584
1585 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1586 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1587 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001588
1589 /* LRC Bypass */
1590 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
1591 val |= DPIO_LRC_BYPASS;
1592 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
1593
1594 mutex_unlock(&dev_priv->dpio_lock);
1595
Clint Taylorb4eb1562014-11-21 11:13:02 -08001596 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001597 intel_crtc->config->has_hdmi_sink,
Clint Taylorb4eb1562014-11-21 11:13:02 -08001598 adjusted_mode);
1599
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001600 intel_enable_hdmi(encoder);
1601
1602 vlv_wait_port_ready(dev_priv, dport);
1603}
1604
Eric Anholt7d573822009-01-02 13:33:00 -08001605static void intel_hdmi_destroy(struct drm_connector *connector)
1606{
Chris Wilson10e972d2014-09-04 21:43:45 +01001607 kfree(to_intel_connector(connector)->detect_edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001608 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +08001609 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001610}
1611
Eric Anholt7d573822009-01-02 13:33:00 -08001612static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001613 .dpms = intel_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -08001614 .detect = intel_hdmi_detect,
Chris Wilson953ece6972014-09-02 20:04:01 +01001615 .force = intel_hdmi_force,
Eric Anholt7d573822009-01-02 13:33:00 -08001616 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001617 .set_property = intel_hdmi_set_property,
Matt Roper2545e4a2015-01-22 16:51:27 -08001618 .atomic_get_property = intel_connector_atomic_get_property,
Eric Anholt7d573822009-01-02 13:33:00 -08001619 .destroy = intel_hdmi_destroy,
Matt Roperc6f95f22015-01-22 16:50:32 -08001620 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Eric Anholt7d573822009-01-02 13:33:00 -08001621};
1622
1623static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
1624 .get_modes = intel_hdmi_get_modes,
1625 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01001626 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -08001627};
1628
Eric Anholt7d573822009-01-02 13:33:00 -08001629static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001630 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -08001631};
1632
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001633static void
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301634intel_attach_aspect_ratio_property(struct drm_connector *connector)
1635{
1636 if (!drm_mode_create_aspect_ratio_property(connector->dev))
1637 drm_object_attach_property(&connector->base,
1638 connector->dev->mode_config.aspect_ratio_property,
1639 DRM_MODE_PICTURE_ASPECT_NONE);
1640}
1641
1642static void
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001643intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
1644{
Chris Wilson3f43c482011-05-12 22:17:24 +01001645 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00001646 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001647 intel_hdmi->color_range_auto = true;
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301648 intel_attach_aspect_ratio_property(connector);
1649 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001650}
1651
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001652void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
1653 struct intel_connector *intel_connector)
Eric Anholt7d573822009-01-02 13:33:00 -08001654{
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001655 struct drm_connector *connector = &intel_connector->base;
1656 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
1657 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1658 struct drm_device *dev = intel_encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -08001659 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001660 enum port port = intel_dig_port->port;
Eric Anholt7d573822009-01-02 13:33:00 -08001661
Eric Anholt7d573822009-01-02 13:33:00 -08001662 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -04001663 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -08001664 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
1665
Peter Rossc3febcc2012-01-28 14:49:26 +01001666 connector->interlace_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001667 connector->doublescan_allowed = 0;
Damien Lespiau573e74a2013-09-25 16:45:40 +01001668 connector->stereo_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001669
Daniel Vetter08d644a2012-07-12 20:19:59 +02001670 switch (port) {
1671 case PORT_B:
Chris Wilsonf899fc62010-07-20 15:44:45 -07001672 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Egbert Eich1d843f92013-02-25 12:06:49 -05001673 intel_encoder->hpd_pin = HPD_PORT_B;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001674 break;
1675 case PORT_C:
Chris Wilsonf899fc62010-07-20 15:44:45 -07001676 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Egbert Eich1d843f92013-02-25 12:06:49 -05001677 intel_encoder->hpd_pin = HPD_PORT_C;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001678 break;
1679 case PORT_D:
Ville Syrjäläc0c35322014-04-09 13:28:52 +03001680 if (IS_CHERRYVIEW(dev))
1681 intel_hdmi->ddc_bus = GMBUS_PORT_DPD_CHV;
1682 else
1683 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
Egbert Eich1d843f92013-02-25 12:06:49 -05001684 intel_encoder->hpd_pin = HPD_PORT_D;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001685 break;
1686 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05001687 intel_encoder->hpd_pin = HPD_PORT_A;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001688 /* Internal port only for eDP. */
1689 default:
Eugeni Dodonov6e4c1672012-05-09 15:37:13 -03001690 BUG();
Ma Lingf8aed702009-08-24 13:50:24 +08001691 }
Eric Anholt7d573822009-01-02 13:33:00 -08001692
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001693 if (IS_VALLEYVIEW(dev)) {
Shobhit Kumar90b107c2012-03-28 13:39:32 -07001694 intel_hdmi->write_infoframe = vlv_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001695 intel_hdmi->set_infoframes = vlv_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001696 intel_hdmi->infoframe_enabled = vlv_infoframe_enabled;
Sonika Jindalb98856a2014-07-22 11:13:46 +05301697 } else if (IS_G4X(dev)) {
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001698 intel_hdmi->write_infoframe = g4x_write_infoframe;
1699 intel_hdmi->set_infoframes = g4x_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001700 intel_hdmi->infoframe_enabled = g4x_infoframe_enabled;
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001701 } else if (HAS_DDI(dev)) {
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -03001702 intel_hdmi->write_infoframe = hsw_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001703 intel_hdmi->set_infoframes = hsw_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001704 intel_hdmi->infoframe_enabled = hsw_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001705 } else if (HAS_PCH_IBX(dev)) {
1706 intel_hdmi->write_infoframe = ibx_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001707 intel_hdmi->set_infoframes = ibx_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001708 intel_hdmi->infoframe_enabled = ibx_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001709 } else {
1710 intel_hdmi->write_infoframe = cpt_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001711 intel_hdmi->set_infoframes = cpt_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001712 intel_hdmi->infoframe_enabled = cpt_infoframe_enabled;
Jesse Barnes64a8fc02011-09-22 11:16:00 +05301713 }
Jesse Barnes45187ac2011-08-03 09:22:55 -07001714
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001715 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02001716 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
1717 else
1718 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak4932e2c2014-02-11 17:12:48 +02001719 intel_connector->unregister = intel_connector_unregister;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001720
1721 intel_hdmi_add_properties(intel_hdmi, connector);
1722
1723 intel_connector_attach_encoder(intel_connector, intel_encoder);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001724 drm_connector_register(connector);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001725
1726 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
1727 * 0xd. Failure to do so will result in spurious interrupts being
1728 * generated on the port when a cable is not attached.
1729 */
1730 if (IS_G4X(dev) && !IS_GM45(dev)) {
1731 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
1732 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
1733 }
1734}
1735
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001736void intel_hdmi_init(struct drm_device *dev, int hdmi_reg, enum port port)
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001737{
1738 struct intel_digital_port *intel_dig_port;
1739 struct intel_encoder *intel_encoder;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001740 struct intel_connector *intel_connector;
1741
Daniel Vetterb14c5672013-09-19 12:18:32 +02001742 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001743 if (!intel_dig_port)
1744 return;
1745
Daniel Vetterb14c5672013-09-19 12:18:32 +02001746 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001747 if (!intel_connector) {
1748 kfree(intel_dig_port);
1749 return;
1750 }
1751
1752 intel_encoder = &intel_dig_port->base;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001753
1754 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
1755 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001756
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001757 intel_encoder->compute_config = intel_hdmi_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001758 intel_encoder->disable = intel_disable_hdmi;
1759 intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001760 intel_encoder->get_config = intel_hdmi_get_config;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001761 if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03001762 intel_encoder->pre_pll_enable = chv_hdmi_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001763 intel_encoder->pre_enable = chv_hdmi_pre_enable;
1764 intel_encoder->enable = vlv_enable_hdmi;
Ville Syrjälä580d3812014-04-09 13:29:00 +03001765 intel_encoder->post_disable = chv_hdmi_post_disable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001766 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001767 intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
1768 intel_encoder->pre_enable = vlv_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001769 intel_encoder->enable = vlv_enable_hdmi;
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001770 intel_encoder->post_disable = vlv_hdmi_post_disable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001771 } else {
Jesse Barnes13732ba2014-04-05 11:51:35 -07001772 intel_encoder->pre_enable = intel_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001773 intel_encoder->enable = intel_enable_hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001774 }
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001775
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001776 intel_encoder->type = INTEL_OUTPUT_HDMI;
Ville Syrjälä882ec382014-04-28 14:07:43 +03001777 if (IS_CHERRYVIEW(dev)) {
1778 if (port == PORT_D)
1779 intel_encoder->crtc_mask = 1 << 2;
1780 else
1781 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
1782 } else {
1783 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
1784 }
Ville Syrjälä301ea742014-03-03 16:15:30 +02001785 intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
Ville Syrjäläc6f14952014-03-03 16:15:31 +02001786 /*
1787 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
1788 * to work on real hardware. And since g4x can send infoframes to
1789 * only one port anyway, nothing is lost by allowing it.
1790 */
1791 if (IS_G4X(dev))
1792 intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -08001793
Paulo Zanoni174edf12012-10-26 19:05:50 -02001794 intel_dig_port->port = port;
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001795 intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001796 intel_dig_port->dp.output_reg = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001797
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001798 intel_hdmi_init_connector(intel_dig_port, intel_connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001799}