blob: c11703a0e6b12767795ad246a19aa1a4e5f5bb4a [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
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300177 if ((val & VIDEO_DIP_ENABLE) == 0)
178 return false;
Jesse Barnes89a35ec2014-11-20 13:24:13 -0800179
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300180 if ((val & VIDEO_DIP_PORT_MASK) != VIDEO_DIP_PORT(intel_dig_port->port))
181 return false;
182
183 return val & (VIDEO_DIP_ENABLE_AVI |
184 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
Jesse Barnese43823e2014-11-05 14:26:08 -0800185}
186
Paulo Zanonifdf12502012-05-04 17:18:24 -0300187static void ibx_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100188 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200189 const void *frame, ssize_t len)
Paulo Zanonifdf12502012-05-04 17:18:24 -0300190{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200191 const uint32_t *data = frame;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300192 struct drm_device *dev = encoder->dev;
193 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300194 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100195 int i, reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300196 u32 val = I915_READ(reg);
197
Paulo Zanoni822974a2012-05-28 16:42:51 -0300198 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
199
Paulo Zanonifdf12502012-05-04 17:18:24 -0300200 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100201 val |= g4x_infoframe_index(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300202
Damien Lespiau178f7362013-08-06 20:32:18 +0100203 val &= ~g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300204
205 I915_WRITE(reg, val);
206
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300207 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300208 for (i = 0; i < len; i += 4) {
209 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
210 data++;
211 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300212 /* Write every possible data byte to force correct ECC calculation. */
213 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
214 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300215 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300216
Damien Lespiau178f7362013-08-06 20:32:18 +0100217 val |= g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300218 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200219 val |= VIDEO_DIP_FREQ_VSYNC;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300220
221 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300222 POSTING_READ(reg);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300223}
224
Jesse Barnese43823e2014-11-05 14:26:08 -0800225static bool ibx_infoframe_enabled(struct drm_encoder *encoder)
226{
227 struct drm_device *dev = encoder->dev;
228 struct drm_i915_private *dev_priv = dev->dev_private;
229 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Jani Nikula052f62f2015-04-29 15:30:07 +0300230 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Jesse Barnese43823e2014-11-05 14:26:08 -0800231 int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
232 u32 val = I915_READ(reg);
233
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300234 if ((val & VIDEO_DIP_ENABLE) == 0)
235 return false;
Jani Nikula052f62f2015-04-29 15:30:07 +0300236
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300237 if ((val & VIDEO_DIP_PORT_MASK) != VIDEO_DIP_PORT(intel_dig_port->port))
238 return false;
239
240 return val & (VIDEO_DIP_ENABLE_AVI |
241 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
242 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Jesse Barnese43823e2014-11-05 14:26:08 -0800243}
244
Paulo Zanonifdf12502012-05-04 17:18:24 -0300245static void cpt_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100246 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200247 const void *frame, ssize_t len)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700248{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200249 const uint32_t *data = frame;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700250 struct drm_device *dev = encoder->dev;
251 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300252 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100253 int i, reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300254 u32 val = I915_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700255
Paulo Zanoni822974a2012-05-28 16:42:51 -0300256 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
257
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530258 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100259 val |= g4x_infoframe_index(type);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700260
Paulo Zanoniecb97852012-05-04 17:18:21 -0300261 /* The DIP control register spec says that we need to update the AVI
262 * infoframe without clearing its enable bit */
Damien Lespiau178f7362013-08-06 20:32:18 +0100263 if (type != HDMI_INFOFRAME_TYPE_AVI)
264 val &= ~g4x_infoframe_enable(type);
Paulo Zanoniecb97852012-05-04 17:18:21 -0300265
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300266 I915_WRITE(reg, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700267
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300268 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700269 for (i = 0; i < len; i += 4) {
270 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
271 data++;
272 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300273 /* Write every possible data byte to force correct ECC calculation. */
274 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
275 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300276 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700277
Damien Lespiau178f7362013-08-06 20:32:18 +0100278 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300279 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200280 val |= VIDEO_DIP_FREQ_VSYNC;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700281
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300282 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300283 POSTING_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700284}
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700285
Jesse Barnese43823e2014-11-05 14:26:08 -0800286static bool cpt_infoframe_enabled(struct drm_encoder *encoder)
287{
288 struct drm_device *dev = encoder->dev;
289 struct drm_i915_private *dev_priv = dev->dev_private;
290 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
291 int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
292 u32 val = I915_READ(reg);
293
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300294 if ((val & VIDEO_DIP_ENABLE) == 0)
295 return false;
296
297 return val & (VIDEO_DIP_ENABLE_AVI |
298 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
299 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Jesse Barnese43823e2014-11-05 14:26:08 -0800300}
301
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700302static void vlv_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100303 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200304 const void *frame, ssize_t len)
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700305{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200306 const uint32_t *data = frame;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700307 struct drm_device *dev = encoder->dev;
308 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300309 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100310 int i, reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300311 u32 val = I915_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700312
Paulo Zanoni822974a2012-05-28 16:42:51 -0300313 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
314
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700315 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100316 val |= g4x_infoframe_index(type);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700317
Damien Lespiau178f7362013-08-06 20:32:18 +0100318 val &= ~g4x_infoframe_enable(type);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300319
320 I915_WRITE(reg, val);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700321
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300322 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700323 for (i = 0; i < len; i += 4) {
324 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
325 data++;
326 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300327 /* Write every possible data byte to force correct ECC calculation. */
328 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
329 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300330 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700331
Damien Lespiau178f7362013-08-06 20:32:18 +0100332 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300333 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200334 val |= VIDEO_DIP_FREQ_VSYNC;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700335
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300336 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300337 POSTING_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700338}
339
Jesse Barnese43823e2014-11-05 14:26:08 -0800340static bool vlv_infoframe_enabled(struct drm_encoder *encoder)
341{
342 struct drm_device *dev = encoder->dev;
343 struct drm_i915_private *dev_priv = dev->dev_private;
344 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Jesse Barnes535afa22015-04-15 16:52:29 -0700345 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Jesse Barnese43823e2014-11-05 14:26:08 -0800346 int reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
347 u32 val = I915_READ(reg);
348
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300349 if ((val & VIDEO_DIP_ENABLE) == 0)
350 return false;
Jesse Barnes535afa22015-04-15 16:52:29 -0700351
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300352 if ((val & VIDEO_DIP_PORT_MASK) != VIDEO_DIP_PORT(intel_dig_port->port))
353 return false;
354
355 return val & (VIDEO_DIP_ENABLE_AVI |
356 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
357 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Jesse Barnese43823e2014-11-05 14:26:08 -0800358}
359
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300360static void hsw_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100361 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200362 const void *frame, ssize_t len)
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300363{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200364 const uint32_t *data = frame;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300365 struct drm_device *dev = encoder->dev;
366 struct drm_i915_private *dev_priv = dev->dev_private;
367 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200368 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config->cpu_transcoder);
Damien Lespiau178f7362013-08-06 20:32:18 +0100369 u32 data_reg;
370 int i;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300371 u32 val = I915_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300372
Damien Lespiau178f7362013-08-06 20:32:18 +0100373 data_reg = hsw_infoframe_data_reg(type,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200374 intel_crtc->config->cpu_transcoder,
Antti Koskipaaa57c7742014-02-04 14:22:24 +0200375 dev_priv);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300376 if (data_reg == 0)
377 return;
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300378
Damien Lespiau178f7362013-08-06 20:32:18 +0100379 val &= ~hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300380 I915_WRITE(ctl_reg, val);
381
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300382 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300383 for (i = 0; i < len; i += 4) {
384 I915_WRITE(data_reg + i, *data);
385 data++;
386 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300387 /* Write every possible data byte to force correct ECC calculation. */
388 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
389 I915_WRITE(data_reg + i, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300390 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300391
Damien Lespiau178f7362013-08-06 20:32:18 +0100392 val |= hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300393 I915_WRITE(ctl_reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300394 POSTING_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300395}
396
Jesse Barnese43823e2014-11-05 14:26:08 -0800397static bool hsw_infoframe_enabled(struct drm_encoder *encoder)
398{
399 struct drm_device *dev = encoder->dev;
400 struct drm_i915_private *dev_priv = dev->dev_private;
401 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200402 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config->cpu_transcoder);
Jesse Barnese43823e2014-11-05 14:26:08 -0800403 u32 val = I915_READ(ctl_reg);
404
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300405 return val & (VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_AVI_HSW |
406 VIDEO_DIP_ENABLE_GCP_HSW | VIDEO_DIP_ENABLE_VS_HSW |
407 VIDEO_DIP_ENABLE_GMP_HSW | VIDEO_DIP_ENABLE_SPD_HSW);
Jesse Barnese43823e2014-11-05 14:26:08 -0800408}
409
Damien Lespiau5adaea72013-08-06 20:32:19 +0100410/*
411 * The data we write to the DIP data buffer registers is 1 byte bigger than the
412 * HDMI infoframe size because of an ECC/reserved byte at position 3 (starting
413 * at 0). It's also a byte used by DisplayPort so the same DIP registers can be
414 * used for both technologies.
415 *
416 * DW0: Reserved/ECC/DP | HB2 | HB1 | HB0
417 * DW1: DB3 | DB2 | DB1 | DB0
418 * DW2: DB7 | DB6 | DB5 | DB4
419 * DW3: ...
420 *
421 * (HB is Header Byte, DB is Data Byte)
422 *
423 * The hdmi pack() functions don't know about that hardware specific hole so we
424 * trick them by giving an offset into the buffer and moving back the header
425 * bytes by one.
426 */
Damien Lespiau9198ee52013-08-06 20:32:24 +0100427static void intel_write_infoframe(struct drm_encoder *encoder,
428 union hdmi_infoframe *frame)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700429{
430 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100431 uint8_t buffer[VIDEO_DIP_DATA_SIZE];
432 ssize_t len;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700433
Damien Lespiau5adaea72013-08-06 20:32:19 +0100434 /* see comment above for the reason for this offset */
435 len = hdmi_infoframe_pack(frame, buffer + 1, sizeof(buffer) - 1);
436 if (len < 0)
437 return;
438
439 /* Insert the 'hole' (see big comment above) at position 3 */
440 buffer[0] = buffer[1];
441 buffer[1] = buffer[2];
442 buffer[2] = buffer[3];
443 buffer[3] = 0;
444 len++;
445
446 intel_hdmi->write_infoframe(encoder, frame->any.type, buffer, len);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700447}
448
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300449static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
Paulo Zanonic846b612012-04-13 16:31:41 -0300450 struct drm_display_mode *adjusted_mode)
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700451{
Ville Syrjäläabedc072013-01-17 16:31:31 +0200452 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Daniel Vetter50f3b012013-03-27 00:44:56 +0100453 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100454 union hdmi_infoframe frame;
455 int ret;
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700456
Vandana Kannan94a11dd2014-06-11 11:06:01 +0530457 /* Set user selected PAR to incoming mode's member */
458 adjusted_mode->picture_aspect_ratio = intel_hdmi->aspect_ratio;
459
Damien Lespiau5adaea72013-08-06 20:32:19 +0100460 ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
461 adjusted_mode);
462 if (ret < 0) {
463 DRM_ERROR("couldn't fill AVI infoframe\n");
464 return;
465 }
Paulo Zanonic846b612012-04-13 16:31:41 -0300466
Ville Syrjäläabedc072013-01-17 16:31:31 +0200467 if (intel_hdmi->rgb_quant_range_selectable) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200468 if (intel_crtc->config->limited_color_range)
Damien Lespiau5adaea72013-08-06 20:32:19 +0100469 frame.avi.quantization_range =
470 HDMI_QUANTIZATION_RANGE_LIMITED;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200471 else
Damien Lespiau5adaea72013-08-06 20:32:19 +0100472 frame.avi.quantization_range =
473 HDMI_QUANTIZATION_RANGE_FULL;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200474 }
475
Damien Lespiau9198ee52013-08-06 20:32:24 +0100476 intel_write_infoframe(encoder, &frame);
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700477}
478
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300479static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700480{
Damien Lespiau5adaea72013-08-06 20:32:19 +0100481 union hdmi_infoframe frame;
482 int ret;
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700483
Damien Lespiau5adaea72013-08-06 20:32:19 +0100484 ret = hdmi_spd_infoframe_init(&frame.spd, "Intel", "Integrated gfx");
485 if (ret < 0) {
486 DRM_ERROR("couldn't fill SPD infoframe\n");
487 return;
488 }
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700489
Damien Lespiau5adaea72013-08-06 20:32:19 +0100490 frame.spd.sdi = HDMI_SPD_SDI_PC;
491
Damien Lespiau9198ee52013-08-06 20:32:24 +0100492 intel_write_infoframe(encoder, &frame);
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700493}
494
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100495static void
496intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder,
497 struct drm_display_mode *adjusted_mode)
498{
499 union hdmi_infoframe frame;
500 int ret;
501
502 ret = drm_hdmi_vendor_infoframe_from_display_mode(&frame.vendor.hdmi,
503 adjusted_mode);
504 if (ret < 0)
505 return;
506
507 intel_write_infoframe(encoder, &frame);
508}
509
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300510static void g4x_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200511 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300512 struct drm_display_mode *adjusted_mode)
513{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300514 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200515 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
516 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300517 u32 reg = VIDEO_DIP_CTL;
518 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200519 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300520
Daniel Vetterafba0182012-06-12 16:36:45 +0200521 assert_hdmi_port_disabled(intel_hdmi);
522
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300523 /* If the registers were not initialized yet, they might be zeroes,
524 * which means we're selecting the AVI DIP and we're setting its
525 * frequency to once. This seems to really confuse the HW and make
526 * things stop working (the register spec says the AVI always needs to
527 * be sent every VSync). So here we avoid writing to the register more
528 * than we need and also explicitly select the AVI DIP and explicitly
529 * set its frequency to every VSync. Avoiding to write it twice seems to
530 * be enough to solve the problem, but being defensive shouldn't hurt us
531 * either. */
532 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
533
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200534 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300535 if (!(val & VIDEO_DIP_ENABLE))
536 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300537 if (port != (val & VIDEO_DIP_PORT_MASK)) {
538 DRM_DEBUG_KMS("video DIP still enabled on port %c\n",
539 (val & VIDEO_DIP_PORT_MASK) >> 29);
540 return;
541 }
542 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
543 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300544 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300545 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300546 return;
547 }
548
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300549 if (port != (val & VIDEO_DIP_PORT_MASK)) {
550 if (val & VIDEO_DIP_ENABLE) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300551 DRM_DEBUG_KMS("video DIP already enabled on port %c\n",
552 (val & VIDEO_DIP_PORT_MASK) >> 29);
553 return;
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300554 }
555 val &= ~VIDEO_DIP_PORT_MASK;
556 val |= port;
557 }
558
Paulo Zanoni822974a2012-05-28 16:42:51 -0300559 val |= VIDEO_DIP_ENABLE;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300560 val &= ~(VIDEO_DIP_ENABLE_AVI |
561 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300562
Paulo Zanonif278d972012-05-28 16:42:50 -0300563 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300564 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300565
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300566 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
567 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100568 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300569}
570
Ville Syrjälä6d674152015-05-05 17:06:20 +0300571static bool hdmi_sink_is_deep_color(struct drm_encoder *encoder)
572{
573 struct drm_device *dev = encoder->dev;
574 struct drm_connector *connector;
575
576 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
577
578 /*
579 * HDMI cloning is only supported on g4x which doesn't
580 * support deep color or GCP infoframes anyway so no
581 * need to worry about multiple HDMI sinks here.
582 */
583 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
584 if (connector->encoder == encoder)
585 return connector->display_info.bpc > 8;
586
587 return false;
588}
589
Ville Syrjälä12aa3292015-05-05 17:06:21 +0300590/*
591 * Determine if default_phase=1 can be indicated in the GCP infoframe.
592 *
593 * From HDMI specification 1.4a:
594 * - The first pixel of each Video Data Period shall always have a pixel packing phase of 0
595 * - The first pixel following each Video Data Period shall have a pixel packing phase of 0
596 * - The PP bits shall be constant for all GCPs and will be equal to the last packing phase
597 * - The first pixel following every transition of HSYNC or VSYNC shall have a pixel packing
598 * phase of 0
599 */
600static bool gcp_default_phase_possible(int pipe_bpp,
601 const struct drm_display_mode *mode)
602{
603 unsigned int pixels_per_group;
604
605 switch (pipe_bpp) {
606 case 30:
607 /* 4 pixels in 5 clocks */
608 pixels_per_group = 4;
609 break;
610 case 36:
611 /* 2 pixels in 3 clocks */
612 pixels_per_group = 2;
613 break;
614 case 48:
615 /* 1 pixel in 2 clocks */
616 pixels_per_group = 1;
617 break;
618 default:
619 /* phase information not relevant for 8bpc */
620 return false;
621 }
622
623 return mode->crtc_hdisplay % pixels_per_group == 0 &&
624 mode->crtc_htotal % pixels_per_group == 0 &&
625 mode->crtc_hblank_start % pixels_per_group == 0 &&
626 mode->crtc_hblank_end % pixels_per_group == 0 &&
627 mode->crtc_hsync_start % pixels_per_group == 0 &&
628 mode->crtc_hsync_end % pixels_per_group == 0 &&
629 ((mode->flags & DRM_MODE_FLAG_INTERLACE) == 0 ||
630 mode->crtc_htotal/2 % pixels_per_group == 0);
631}
632
Ville Syrjälä6d674152015-05-05 17:06:20 +0300633static bool intel_hdmi_set_gcp_infoframe(struct drm_encoder *encoder)
634{
635 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
636 struct intel_crtc *crtc = to_intel_crtc(encoder->crtc);
637 u32 reg, val = 0;
638
639 if (HAS_DDI(dev_priv))
640 reg = HSW_TVIDEO_DIP_GCP(crtc->config->cpu_transcoder);
641 else if (IS_VALLEYVIEW(dev_priv))
642 reg = VLV_TVIDEO_DIP_GCP(crtc->pipe);
643 else if (HAS_PCH_SPLIT(dev_priv->dev))
644 reg = TVIDEO_DIP_GCP(crtc->pipe);
645 else
646 return false;
647
648 /* Indicate color depth whenever the sink supports deep color */
649 if (hdmi_sink_is_deep_color(encoder))
650 val |= GCP_COLOR_INDICATION;
651
Ville Syrjälä12aa3292015-05-05 17:06:21 +0300652 /* Enable default_phase whenever the display mode is suitably aligned */
653 if (gcp_default_phase_possible(crtc->config->pipe_bpp,
654 &crtc->config->base.adjusted_mode))
655 val |= GCP_DEFAULT_PHASE_ENABLE;
656
Ville Syrjälä6d674152015-05-05 17:06:20 +0300657 I915_WRITE(reg, val);
658
659 return val != 0;
660}
661
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300662static void ibx_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200663 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300664 struct drm_display_mode *adjusted_mode)
665{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300666 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
667 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200668 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
669 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300670 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
671 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200672 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300673
Daniel Vetterafba0182012-06-12 16:36:45 +0200674 assert_hdmi_port_disabled(intel_hdmi);
675
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300676 /* See the big comment in g4x_set_infoframes() */
677 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
678
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200679 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300680 if (!(val & VIDEO_DIP_ENABLE))
681 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300682 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
683 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
684 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300685 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300686 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300687 return;
688 }
689
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300690 if (port != (val & VIDEO_DIP_PORT_MASK)) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300691 WARN(val & VIDEO_DIP_ENABLE,
692 "DIP already enabled on port %c\n",
693 (val & VIDEO_DIP_PORT_MASK) >> 29);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300694 val &= ~VIDEO_DIP_PORT_MASK;
695 val |= port;
696 }
697
Paulo Zanoni822974a2012-05-28 16:42:51 -0300698 val |= VIDEO_DIP_ENABLE;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300699 val &= ~(VIDEO_DIP_ENABLE_AVI |
700 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
701 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300702
Ville Syrjälä6d674152015-05-05 17:06:20 +0300703 if (intel_hdmi_set_gcp_infoframe(encoder))
704 val |= VIDEO_DIP_ENABLE_GCP;
705
Paulo Zanonif278d972012-05-28 16:42:50 -0300706 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300707 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300708
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300709 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
710 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100711 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300712}
713
714static void cpt_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200715 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300716 struct drm_display_mode *adjusted_mode)
717{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300718 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
719 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
720 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
721 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
722 u32 val = I915_READ(reg);
723
Daniel Vetterafba0182012-06-12 16:36:45 +0200724 assert_hdmi_port_disabled(intel_hdmi);
725
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300726 /* See the big comment in g4x_set_infoframes() */
727 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
728
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200729 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300730 if (!(val & VIDEO_DIP_ENABLE))
731 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300732 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
733 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
734 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300735 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300736 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300737 return;
738 }
739
Paulo Zanoni822974a2012-05-28 16:42:51 -0300740 /* Set both together, unset both together: see the spec. */
741 val |= VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300742 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300743 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300744
Ville Syrjälä6d674152015-05-05 17:06:20 +0300745 if (intel_hdmi_set_gcp_infoframe(encoder))
746 val |= VIDEO_DIP_ENABLE_GCP;
747
Paulo Zanoni822974a2012-05-28 16:42:51 -0300748 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300749 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300750
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300751 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
752 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100753 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300754}
755
756static void vlv_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200757 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300758 struct drm_display_mode *adjusted_mode)
759{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300760 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700761 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300762 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
763 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
764 u32 reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
765 u32 val = I915_READ(reg);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700766 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300767
Daniel Vetterafba0182012-06-12 16:36:45 +0200768 assert_hdmi_port_disabled(intel_hdmi);
769
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300770 /* See the big comment in g4x_set_infoframes() */
771 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
772
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200773 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300774 if (!(val & VIDEO_DIP_ENABLE))
775 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300776 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
777 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
778 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300779 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300780 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300781 return;
782 }
783
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700784 if (port != (val & VIDEO_DIP_PORT_MASK)) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300785 WARN(val & VIDEO_DIP_ENABLE,
786 "DIP already enabled on port %c\n",
787 (val & VIDEO_DIP_PORT_MASK) >> 29);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700788 val &= ~VIDEO_DIP_PORT_MASK;
789 val |= port;
790 }
791
Paulo Zanoni822974a2012-05-28 16:42:51 -0300792 val |= VIDEO_DIP_ENABLE;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300793 val &= ~(VIDEO_DIP_ENABLE_AVI |
794 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
795 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300796
Ville Syrjälä6d674152015-05-05 17:06:20 +0300797 if (intel_hdmi_set_gcp_infoframe(encoder))
798 val |= VIDEO_DIP_ENABLE_GCP;
799
Paulo Zanoni822974a2012-05-28 16:42:51 -0300800 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300801 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300802
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300803 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
804 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100805 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300806}
807
808static void hsw_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200809 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300810 struct drm_display_mode *adjusted_mode)
811{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300812 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
813 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
814 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200815 u32 reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config->cpu_transcoder);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300816 u32 val = I915_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300817
Daniel Vetterafba0182012-06-12 16:36:45 +0200818 assert_hdmi_port_disabled(intel_hdmi);
819
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300820 val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_AVI_HSW |
821 VIDEO_DIP_ENABLE_GCP_HSW | VIDEO_DIP_ENABLE_VS_HSW |
822 VIDEO_DIP_ENABLE_GMP_HSW | VIDEO_DIP_ENABLE_SPD_HSW);
823
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200824 if (!enable) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300825 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300826 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300827 return;
828 }
829
Ville Syrjälä6d674152015-05-05 17:06:20 +0300830 if (intel_hdmi_set_gcp_infoframe(encoder))
831 val |= VIDEO_DIP_ENABLE_GCP_HSW;
832
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300833 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300834 POSTING_READ(reg);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300835
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300836 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
837 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100838 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300839}
840
Daniel Vetter4cde8a22014-04-24 23:54:56 +0200841static void intel_hdmi_prepare(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800842{
Daniel Vetterc59423a2013-07-21 21:37:04 +0200843 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800844 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc59423a2013-07-21 21:37:04 +0200845 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
846 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200847 struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300848 u32 hdmi_val;
Eric Anholt7d573822009-01-02 13:33:00 -0800849
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300850 hdmi_val = SDVO_ENCODING_HDMI;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +0300851 if (!HAS_PCH_SPLIT(dev) && crtc->config->limited_color_range)
852 hdmi_val |= HDMI_COLOR_RANGE_16_235;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400853 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300854 hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400855 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300856 hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800857
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200858 if (crtc->config->pipe_bpp > 24)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300859 hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700860 else
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300861 hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700862
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200863 if (crtc->config->has_hdmi_sink)
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300864 hdmi_val |= HDMI_MODE_SELECT_HDMI;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800865
Jesse Barnes75770562011-10-12 09:01:58 -0700866 if (HAS_PCH_CPT(dev))
Daniel Vetterc59423a2013-07-21 21:37:04 +0200867 hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
Chon Ming Lee44f37d12014-04-09 13:28:21 +0300868 else if (IS_CHERRYVIEW(dev))
869 hdmi_val |= SDVO_PIPE_SEL_CHV(crtc->pipe);
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300870 else
Daniel Vetterc59423a2013-07-21 21:37:04 +0200871 hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
Eric Anholt7d573822009-01-02 13:33:00 -0800872
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300873 I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
874 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800875}
876
Daniel Vetter85234cd2012-07-02 13:27:29 +0200877static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
878 enum pipe *pipe)
Eric Anholt7d573822009-01-02 13:33:00 -0800879{
Daniel Vetter85234cd2012-07-02 13:27:29 +0200880 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800881 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200882 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Imre Deak6d129be2014-03-05 16:20:54 +0200883 enum intel_display_power_domain power_domain;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200884 u32 tmp;
885
Imre Deak6d129be2014-03-05 16:20:54 +0200886 power_domain = intel_display_port_power_domain(encoder);
Daniel Vetterf458ebb2014-09-30 10:56:39 +0200887 if (!intel_display_power_is_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200888 return false;
889
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300890 tmp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200891
892 if (!(tmp & SDVO_ENABLE))
893 return false;
894
895 if (HAS_PCH_CPT(dev))
896 *pipe = PORT_TO_PIPE_CPT(tmp);
Ville Syrjälä71485e02014-04-09 13:28:55 +0300897 else if (IS_CHERRYVIEW(dev))
898 *pipe = SDVO_PORT_TO_PIPE_CHV(tmp);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200899 else
900 *pipe = PORT_TO_PIPE(tmp);
901
902 return true;
903}
904
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700905static void intel_hdmi_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200906 struct intel_crtc_state *pipe_config)
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700907{
908 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300909 struct drm_device *dev = encoder->base.dev;
910 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700911 u32 tmp, flags = 0;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300912 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700913
914 tmp = I915_READ(intel_hdmi->hdmi_reg);
915
916 if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
917 flags |= DRM_MODE_FLAG_PHSYNC;
918 else
919 flags |= DRM_MODE_FLAG_NHSYNC;
920
921 if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
922 flags |= DRM_MODE_FLAG_PVSYNC;
923 else
924 flags |= DRM_MODE_FLAG_NVSYNC;
925
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200926 if (tmp & HDMI_MODE_SELECT_HDMI)
927 pipe_config->has_hdmi_sink = true;
928
Jesse Barnese43823e2014-11-05 14:26:08 -0800929 if (intel_hdmi->infoframe_enabled(&encoder->base))
930 pipe_config->has_infoframe = true;
931
Jani Nikulac84db772014-09-17 15:34:58 +0300932 if (tmp & SDVO_AUDIO_ENABLE)
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200933 pipe_config->has_audio = true;
934
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300935 if (!HAS_PCH_SPLIT(dev) &&
936 tmp & HDMI_COLOR_RANGE_16_235)
937 pipe_config->limited_color_range = true;
938
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200939 pipe_config->base.adjusted_mode.flags |= flags;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300940
941 if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
942 dotclock = pipe_config->port_clock * 2 / 3;
943 else
944 dotclock = pipe_config->port_clock;
945
Ville Syrjäläbe69a132015-05-05 17:06:26 +0300946 if (pipe_config->pixel_multiplier)
947 dotclock /= pipe_config->pixel_multiplier;
948
Ville Syrjälä18442d02013-09-13 16:00:08 +0300949 if (HAS_PCH_SPLIT(dev_priv->dev))
950 ironlake_check_encoder_dotclock(pipe_config, dotclock);
951
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200952 pipe_config->base.adjusted_mode.crtc_clock = dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700953}
954
Ville Syrjäläd1b15892015-05-05 17:06:19 +0300955static void intel_enable_hdmi_audio(struct intel_encoder *encoder)
956{
957 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
958
959 WARN_ON(!crtc->config->has_hdmi_sink);
960 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
961 pipe_name(crtc->pipe));
962 intel_audio_codec_enable(encoder);
963}
964
Ville Syrjäläbf868c72015-05-05 17:06:23 +0300965static void g4x_enable_hdmi(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800966{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200967 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800968 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläbf868c72015-05-05 17:06:23 +0300969 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200970 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Eric Anholt7d573822009-01-02 13:33:00 -0800971 u32 temp;
972
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300973 temp = I915_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000974
Ville Syrjäläbf868c72015-05-05 17:06:23 +0300975 temp |= SDVO_ENABLE;
976 if (crtc->config->has_audio)
977 temp |= SDVO_AUDIO_ENABLE;
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200978
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300979 I915_WRITE(intel_hdmi->hdmi_reg, temp);
980 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200981
Ville Syrjäläbf868c72015-05-05 17:06:23 +0300982 if (crtc->config->has_audio)
983 intel_enable_hdmi_audio(encoder);
984}
985
986static void ibx_enable_hdmi(struct intel_encoder *encoder)
987{
988 struct drm_device *dev = encoder->base.dev;
989 struct drm_i915_private *dev_priv = dev->dev_private;
990 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
991 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
992 u32 temp;
993
994 temp = I915_READ(intel_hdmi->hdmi_reg);
995
996 temp |= SDVO_ENABLE;
997 if (crtc->config->has_audio)
998 temp |= SDVO_AUDIO_ENABLE;
999
1000 /*
1001 * HW workaround, need to write this twice for issue
1002 * that may result in first write getting masked.
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001003 */
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001004 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1005 POSTING_READ(intel_hdmi->hdmi_reg);
1006 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1007 POSTING_READ(intel_hdmi->hdmi_reg);
1008
1009 /*
1010 * HW workaround, need to toggle enable bit off and on
1011 * for 12bpc with pixel repeat.
1012 *
1013 * FIXME: BSpec says this should be done at the end of
1014 * of the modeset sequence, so not sure if this isn't too soon.
1015 */
1016 if (crtc->config->pipe_bpp > 24 &&
1017 crtc->config->pixel_multiplier > 1) {
1018 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
1019 POSTING_READ(intel_hdmi->hdmi_reg);
1020
1021 /*
1022 * HW workaround, need to write this twice for issue
1023 * that may result in first write getting masked.
1024 */
1025 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1026 POSTING_READ(intel_hdmi->hdmi_reg);
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001027 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1028 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001029 }
Jani Nikulac1dec792014-10-27 16:26:56 +02001030
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001031 if (crtc->config->has_audio)
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001032 intel_enable_hdmi_audio(encoder);
1033}
1034
1035static void cpt_enable_hdmi(struct intel_encoder *encoder)
1036{
1037 struct drm_device *dev = encoder->base.dev;
1038 struct drm_i915_private *dev_priv = dev->dev_private;
1039 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1040 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1041 enum pipe pipe = crtc->pipe;
1042 u32 temp;
1043
1044 temp = I915_READ(intel_hdmi->hdmi_reg);
1045
1046 temp |= SDVO_ENABLE;
1047 if (crtc->config->has_audio)
1048 temp |= SDVO_AUDIO_ENABLE;
1049
1050 /*
1051 * WaEnableHDMI8bpcBefore12bpc:snb,ivb
1052 *
1053 * The procedure for 12bpc is as follows:
1054 * 1. disable HDMI clock gating
1055 * 2. enable HDMI with 8bpc
1056 * 3. enable HDMI with 12bpc
1057 * 4. enable HDMI clock gating
1058 */
1059
1060 if (crtc->config->pipe_bpp > 24) {
1061 I915_WRITE(TRANS_CHICKEN1(pipe),
1062 I915_READ(TRANS_CHICKEN1(pipe)) |
1063 TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE);
1064
1065 temp &= ~SDVO_COLOR_FORMAT_MASK;
1066 temp |= SDVO_COLOR_FORMAT_8bpc;
Jani Nikulac1dec792014-10-27 16:26:56 +02001067 }
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001068
1069 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1070 POSTING_READ(intel_hdmi->hdmi_reg);
1071
1072 if (crtc->config->pipe_bpp > 24) {
1073 temp &= ~SDVO_COLOR_FORMAT_MASK;
1074 temp |= HDMI_COLOR_FORMAT_12bpc;
1075
1076 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1077 POSTING_READ(intel_hdmi->hdmi_reg);
1078
1079 I915_WRITE(TRANS_CHICKEN1(pipe),
1080 I915_READ(TRANS_CHICKEN1(pipe)) &
1081 ~TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE);
1082 }
1083
1084 if (crtc->config->has_audio)
1085 intel_enable_hdmi_audio(encoder);
Jani Nikulab76cf762013-07-30 12:20:31 +03001086}
Jesse Barnes89b667f2013-04-18 14:51:36 -07001087
Jani Nikulab76cf762013-07-30 12:20:31 +03001088static void vlv_enable_hdmi(struct intel_encoder *encoder)
1089{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001090}
1091
1092static void intel_disable_hdmi(struct intel_encoder *encoder)
1093{
1094 struct drm_device *dev = encoder->base.dev;
1095 struct drm_i915_private *dev_priv = dev->dev_private;
1096 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Jani Nikula495a5bb2014-10-27 16:26:55 +02001097 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001098 u32 temp;
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001099
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001100 temp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001101
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001102 temp &= ~(SDVO_ENABLE | SDVO_AUDIO_ENABLE);
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001103 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1104 POSTING_READ(intel_hdmi->hdmi_reg);
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001105
1106 /*
1107 * HW workaround for IBX, we need to move the port
1108 * to transcoder A after disabling it to allow the
1109 * matching DP port to be enabled on transcoder A.
1110 */
1111 if (HAS_PCH_IBX(dev) && crtc->pipe == PIPE_B) {
1112 temp &= ~SDVO_PIPE_B_SELECT;
1113 temp |= SDVO_ENABLE;
1114 /*
1115 * HW workaround, need to write this twice for issue
1116 * that may result in first write getting masked.
1117 */
1118 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1119 POSTING_READ(intel_hdmi->hdmi_reg);
1120 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1121 POSTING_READ(intel_hdmi->hdmi_reg);
1122
1123 temp &= ~SDVO_ENABLE;
1124 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1125 POSTING_READ(intel_hdmi->hdmi_reg);
1126 }
Ville Syrjälä6d674152015-05-05 17:06:20 +03001127
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +03001128 intel_hdmi->set_infoframes(&encoder->base, false, NULL);
Eric Anholt7d573822009-01-02 13:33:00 -08001129}
1130
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03001131static void g4x_disable_hdmi(struct intel_encoder *encoder)
1132{
1133 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1134
1135 if (crtc->config->has_audio)
1136 intel_audio_codec_disable(encoder);
1137
1138 intel_disable_hdmi(encoder);
1139}
1140
1141static void pch_disable_hdmi(struct intel_encoder *encoder)
1142{
1143 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1144
1145 if (crtc->config->has_audio)
1146 intel_audio_codec_disable(encoder);
1147}
1148
1149static void pch_post_disable_hdmi(struct intel_encoder *encoder)
1150{
1151 intel_disable_hdmi(encoder);
1152}
1153
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001154static int hdmi_port_clock_limit(struct intel_hdmi *hdmi, bool respect_dvi_limit)
Daniel Vetter7d148ef2013-07-22 18:02:39 +02001155{
1156 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
1157
Ville Syrjälä40478452014-03-27 11:08:45 +02001158 if ((respect_dvi_limit && !hdmi->has_hdmi_sink) || IS_G4X(dev))
Daniel Vetter7d148ef2013-07-22 18:02:39 +02001159 return 165000;
Damien Lespiaue3c33572013-11-02 21:07:51 -07001160 else if (IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8)
Daniel Vetter7d148ef2013-07-22 18:02:39 +02001161 return 300000;
1162 else
1163 return 225000;
1164}
1165
Damien Lespiauc19de8e2013-11-28 15:29:18 +00001166static enum drm_mode_status
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001167hdmi_port_clock_valid(struct intel_hdmi *hdmi,
1168 int clock, bool respect_dvi_limit)
1169{
1170 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
1171
1172 if (clock < 25000)
1173 return MODE_CLOCK_LOW;
1174 if (clock > hdmi_port_clock_limit(hdmi, respect_dvi_limit))
1175 return MODE_CLOCK_HIGH;
1176
Ville Syrjälä5e6ccc02015-07-06 14:44:11 +03001177 /* BXT DPLL can't generate 223-240 MHz */
1178 if (IS_BROXTON(dev) && clock > 223333 && clock < 240000)
1179 return MODE_CLOCK_RANGE;
1180
1181 /* CHV DPLL can't generate 216-240 MHz */
1182 if (IS_CHERRYVIEW(dev) && clock > 216000 && clock < 240000)
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001183 return MODE_CLOCK_RANGE;
1184
1185 return MODE_OK;
1186}
1187
1188static enum drm_mode_status
Damien Lespiauc19de8e2013-11-28 15:29:18 +00001189intel_hdmi_mode_valid(struct drm_connector *connector,
1190 struct drm_display_mode *mode)
Eric Anholt7d573822009-01-02 13:33:00 -08001191{
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001192 struct intel_hdmi *hdmi = intel_attached_hdmi(connector);
1193 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
1194 enum drm_mode_status status;
1195 int clock;
Eric Anholt7d573822009-01-02 13:33:00 -08001196
1197 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
1198 return MODE_NO_DBLESCAN;
1199
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001200 clock = mode->clock;
1201 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
1202 clock *= 2;
1203
1204 /* check if we can do 8bpc */
1205 status = hdmi_port_clock_valid(hdmi, clock, true);
1206
1207 /* if we can't do 8bpc we may still be able to do 12bpc */
1208 if (!HAS_GMCH_DISPLAY(dev) && status != MODE_OK)
1209 status = hdmi_port_clock_valid(hdmi, clock * 3 / 2, true);
1210
1211 return status;
Eric Anholt7d573822009-01-02 13:33:00 -08001212}
1213
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001214static bool hdmi_12bpc_possible(struct intel_crtc_state *crtc_state)
Ville Syrjälä71800632014-03-03 16:15:29 +02001215{
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001216 struct drm_device *dev = crtc_state->base.crtc->dev;
1217 struct drm_atomic_state *state;
Ville Syrjälä71800632014-03-03 16:15:29 +02001218 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced22015-04-21 17:12:59 +03001219 struct drm_connector *connector;
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001220 struct drm_connector_state *connector_state;
Ville Syrjälä71800632014-03-03 16:15:29 +02001221 int count = 0, count_hdmi = 0;
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001222 int i;
Ville Syrjälä71800632014-03-03 16:15:29 +02001223
Sonika Jindalf227ae92014-07-21 15:23:45 +05301224 if (HAS_GMCH_DISPLAY(dev))
Ville Syrjälä71800632014-03-03 16:15:29 +02001225 return false;
1226
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001227 state = crtc_state->base.state;
1228
Ander Conselvan de Oliveirada3ced22015-04-21 17:12:59 +03001229 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001230 if (connector_state->crtc != crtc_state->base.crtc)
1231 continue;
1232
1233 encoder = to_intel_encoder(connector_state->best_encoder);
1234
Ville Syrjälä71800632014-03-03 16:15:29 +02001235 count_hdmi += encoder->type == INTEL_OUTPUT_HDMI;
1236 count++;
1237 }
1238
1239 /*
1240 * HDMI 12bpc affects the clocks, so it's only possible
1241 * when not cloning with other encoder types.
1242 */
1243 return count_hdmi > 0 && count_hdmi == count;
1244}
1245
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001246bool intel_hdmi_compute_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001247 struct intel_crtc_state *pipe_config)
Eric Anholt7d573822009-01-02 13:33:00 -08001248{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001249 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1250 struct drm_device *dev = encoder->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02001251 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001252 int clock_8bpc = pipe_config->base.adjusted_mode.crtc_clock;
1253 int clock_12bpc = clock_8bpc * 3 / 2;
Daniel Vettere29c22c2013-02-21 00:00:16 +01001254 int desired_bpp;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001255
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001256 pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink;
1257
Jesse Barnese43823e2014-11-05 14:26:08 -08001258 if (pipe_config->has_hdmi_sink)
1259 pipe_config->has_infoframe = true;
1260
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001261 if (intel_hdmi->color_range_auto) {
1262 /* See CEA-861-E - 5.1 Default Encoding Parameters */
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001263 pipe_config->limited_color_range =
1264 pipe_config->has_hdmi_sink &&
1265 drm_match_cea_mode(adjusted_mode) > 1;
1266 } else {
1267 pipe_config->limited_color_range =
1268 intel_hdmi->limited_color_range;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001269 }
1270
Clint Taylor697c4072014-09-02 17:03:36 -07001271 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK) {
1272 pipe_config->pixel_multiplier = 2;
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001273 clock_8bpc *= 2;
Ville Syrjälä3320e372015-05-05 17:06:27 +03001274 clock_12bpc *= 2;
Clint Taylor697c4072014-09-02 17:03:36 -07001275 }
1276
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001277 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
1278 pipe_config->has_pch_encoder = true;
1279
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001280 if (pipe_config->has_hdmi_sink && intel_hdmi->has_audio)
1281 pipe_config->has_audio = true;
1282
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001283 /*
1284 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
1285 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
Daniel Vetter325b9d02013-04-19 11:24:33 +02001286 * outputs. We also need to check that the higher clock still fits
1287 * within limits.
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001288 */
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001289 if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink &&
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001290 hdmi_port_clock_valid(intel_hdmi, clock_12bpc, false) == MODE_OK &&
Ville Syrjälä7a0baa62015-06-30 15:33:54 +03001291 hdmi_12bpc_possible(pipe_config)) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001292 DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
1293 desired_bpp = 12*3;
Daniel Vetter325b9d02013-04-19 11:24:33 +02001294
1295 /* Need to adjust the port link by 1.5x for 12bpc. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02001296 pipe_config->port_clock = clock_12bpc;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001297 } else {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001298 DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
1299 desired_bpp = 8*3;
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001300
1301 pipe_config->port_clock = clock_8bpc;
Daniel Vettere29c22c2013-02-21 00:00:16 +01001302 }
1303
1304 if (!pipe_config->bw_constrained) {
1305 DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
1306 pipe_config->pipe_bpp = desired_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001307 }
1308
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001309 if (hdmi_port_clock_valid(intel_hdmi, pipe_config->port_clock,
1310 false) != MODE_OK) {
1311 DRM_DEBUG_KMS("unsupported HDMI clock, rejecting mode\n");
Daniel Vetter325b9d02013-04-19 11:24:33 +02001312 return false;
1313 }
1314
Eric Anholt7d573822009-01-02 13:33:00 -08001315 return true;
1316}
1317
Chris Wilson953ece6972014-09-02 20:04:01 +01001318static void
1319intel_hdmi_unset_edid(struct drm_connector *connector)
Ma Ling9dff6af2009-04-02 13:13:26 +08001320{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001321 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Imre Deak671dedd2014-03-05 16:20:53 +02001322
Chris Wilsonea5b2132010-08-04 13:50:23 +01001323 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +08001324 intel_hdmi->has_audio = false;
Ville Syrjäläabedc072013-01-17 16:31:31 +02001325 intel_hdmi->rgb_quant_range_selectable = false;
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +08001326
Chris Wilson953ece6972014-09-02 20:04:01 +01001327 kfree(to_intel_connector(connector)->detect_edid);
1328 to_intel_connector(connector)->detect_edid = NULL;
Ma Ling9dff6af2009-04-02 13:13:26 +08001329}
1330
Chris Wilson953ece6972014-09-02 20:04:01 +01001331static bool
Sonika Jindal237ed862015-09-15 09:44:20 +05301332intel_hdmi_set_edid(struct drm_connector *connector, bool force)
Eric Anholt7d573822009-01-02 13:33:00 -08001333{
Chris Wilson953ece6972014-09-02 20:04:01 +01001334 struct drm_i915_private *dev_priv = to_i915(connector->dev);
1335 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1336 struct intel_encoder *intel_encoder =
1337 &hdmi_to_dig_port(intel_hdmi)->base;
Imre Deak671dedd2014-03-05 16:20:53 +02001338 enum intel_display_power_domain power_domain;
Sonika Jindal237ed862015-09-15 09:44:20 +05301339 struct edid *edid = NULL;
Chris Wilson953ece6972014-09-02 20:04:01 +01001340 bool connected = false;
Eric Anholt7d573822009-01-02 13:33:00 -08001341
Imre Deak671dedd2014-03-05 16:20:53 +02001342 power_domain = intel_display_port_power_domain(intel_encoder);
1343 intel_display_power_get(dev_priv, power_domain);
1344
Sonika Jindal237ed862015-09-15 09:44:20 +05301345 if (force)
1346 edid = drm_get_edid(connector,
1347 intel_gmbus_get_adapter(dev_priv,
1348 intel_hdmi->ddc_bus));
Imre Deak671dedd2014-03-05 16:20:53 +02001349
1350 intel_display_power_put(dev_priv, power_domain);
1351
Chris Wilson953ece6972014-09-02 20:04:01 +01001352 to_intel_connector(connector)->detect_edid = edid;
1353 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL) {
1354 intel_hdmi->rgb_quant_range_selectable =
1355 drm_rgb_quant_range_selectable(edid);
1356
1357 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
1358 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
1359 intel_hdmi->has_audio =
1360 intel_hdmi->force_audio == HDMI_AUDIO_ON;
1361
1362 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
1363 intel_hdmi->has_hdmi_sink =
1364 drm_detect_hdmi_monitor(edid);
1365
1366 connected = true;
1367 }
1368
1369 return connected;
1370}
1371
1372static enum drm_connector_status
1373intel_hdmi_detect(struct drm_connector *connector, bool force)
1374{
1375 enum drm_connector_status status;
Sonika Jindal237ed862015-09-15 09:44:20 +05301376 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1377 struct drm_i915_private *dev_priv = to_i915(connector->dev);
1378 bool live_status = false;
1379 unsigned int retry = 3;
Chris Wilson953ece6972014-09-02 20:04:01 +01001380
1381 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1382 connector->base.id, connector->name);
1383
Sonika Jindal237ed862015-09-15 09:44:20 +05301384 while (!live_status && --retry) {
1385 live_status = intel_digital_port_connected(dev_priv,
1386 hdmi_to_dig_port(intel_hdmi));
1387 mdelay(10);
1388 }
1389
1390 if (!live_status)
1391 DRM_DEBUG_KMS("Live status not up!");
1392
Chris Wilson953ece6972014-09-02 20:04:01 +01001393 intel_hdmi_unset_edid(connector);
1394
Sonika Jindal237ed862015-09-15 09:44:20 +05301395 if (intel_hdmi_set_edid(connector, live_status)) {
Chris Wilson953ece6972014-09-02 20:04:01 +01001396 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1397
1398 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1399 status = connector_status_connected;
1400 } else
1401 status = connector_status_disconnected;
1402
1403 return status;
1404}
1405
1406static void
1407intel_hdmi_force(struct drm_connector *connector)
1408{
1409 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1410
1411 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1412 connector->base.id, connector->name);
1413
1414 intel_hdmi_unset_edid(connector);
1415
1416 if (connector->status != connector_status_connected)
1417 return;
1418
Sonika Jindal237ed862015-09-15 09:44:20 +05301419 intel_hdmi_set_edid(connector, true);
Chris Wilson953ece6972014-09-02 20:04:01 +01001420 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1421}
1422
1423static int intel_hdmi_get_modes(struct drm_connector *connector)
1424{
1425 struct edid *edid;
1426
1427 edid = to_intel_connector(connector)->detect_edid;
1428 if (edid == NULL)
1429 return 0;
1430
1431 return intel_connector_update_modes(connector, edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001432}
1433
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001434static bool
1435intel_hdmi_detect_audio(struct drm_connector *connector)
1436{
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001437 bool has_audio = false;
Chris Wilson953ece6972014-09-02 20:04:01 +01001438 struct edid *edid;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001439
Chris Wilson953ece6972014-09-02 20:04:01 +01001440 edid = to_intel_connector(connector)->detect_edid;
1441 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL)
1442 has_audio = drm_detect_monitor_audio(edid);
Imre Deak671dedd2014-03-05 16:20:53 +02001443
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001444 return has_audio;
1445}
1446
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001447static int
1448intel_hdmi_set_property(struct drm_connector *connector,
Paulo Zanonied517fb2012-05-14 17:12:50 -03001449 struct drm_property *property,
1450 uint64_t val)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001451{
1452 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001453 struct intel_digital_port *intel_dig_port =
1454 hdmi_to_dig_port(intel_hdmi);
Chris Wilsone953fd72011-02-21 22:23:52 +00001455 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001456 int ret;
1457
Rob Clark662595d2012-10-11 20:36:04 -05001458 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001459 if (ret)
1460 return ret;
1461
Chris Wilson3f43c482011-05-12 22:17:24 +01001462 if (property == dev_priv->force_audio_property) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001463 enum hdmi_force_audio i = val;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001464 bool has_audio;
1465
1466 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001467 return 0;
1468
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001469 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001470
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001471 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001472 has_audio = intel_hdmi_detect_audio(connector);
1473 else
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001474 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001475
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001476 if (i == HDMI_AUDIO_OFF_DVI)
1477 intel_hdmi->has_hdmi_sink = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001478
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001479 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001480 goto done;
1481 }
1482
Chris Wilsone953fd72011-02-21 22:23:52 +00001483 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02001484 bool old_auto = intel_hdmi->color_range_auto;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001485 bool old_range = intel_hdmi->limited_color_range;
Daniel Vetterae4edb82013-04-22 17:07:23 +02001486
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001487 switch (val) {
1488 case INTEL_BROADCAST_RGB_AUTO:
1489 intel_hdmi->color_range_auto = true;
1490 break;
1491 case INTEL_BROADCAST_RGB_FULL:
1492 intel_hdmi->color_range_auto = false;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001493 intel_hdmi->limited_color_range = false;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001494 break;
1495 case INTEL_BROADCAST_RGB_LIMITED:
1496 intel_hdmi->color_range_auto = false;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001497 intel_hdmi->limited_color_range = true;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001498 break;
1499 default:
1500 return -EINVAL;
1501 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02001502
1503 if (old_auto == intel_hdmi->color_range_auto &&
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001504 old_range == intel_hdmi->limited_color_range)
Daniel Vetterae4edb82013-04-22 17:07:23 +02001505 return 0;
1506
Chris Wilsone953fd72011-02-21 22:23:52 +00001507 goto done;
1508 }
1509
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301510 if (property == connector->dev->mode_config.aspect_ratio_property) {
1511 switch (val) {
1512 case DRM_MODE_PICTURE_ASPECT_NONE:
1513 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
1514 break;
1515 case DRM_MODE_PICTURE_ASPECT_4_3:
1516 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_4_3;
1517 break;
1518 case DRM_MODE_PICTURE_ASPECT_16_9:
1519 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_16_9;
1520 break;
1521 default:
1522 return -EINVAL;
1523 }
1524 goto done;
1525 }
1526
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001527 return -EINVAL;
1528
1529done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00001530 if (intel_dig_port->base.base.crtc)
1531 intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001532
1533 return 0;
1534}
1535
Jesse Barnes13732ba2014-04-05 11:51:35 -07001536static void intel_hdmi_pre_enable(struct intel_encoder *encoder)
1537{
1538 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1539 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Ville Syrjälä124abe02015-09-08 13:40:45 +03001540 struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Jesse Barnes13732ba2014-04-05 11:51:35 -07001541
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001542 intel_hdmi_prepare(encoder);
1543
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001544 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001545 intel_crtc->config->has_hdmi_sink,
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001546 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001547}
1548
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001549static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001550{
1551 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001552 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001553 struct drm_device *dev = encoder->base.dev;
1554 struct drm_i915_private *dev_priv = dev->dev_private;
1555 struct intel_crtc *intel_crtc =
1556 to_intel_crtc(encoder->base.crtc);
Ville Syrjälä124abe02015-09-08 13:40:45 +03001557 struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001558 enum dpio_channel port = vlv_dport_to_channel(dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001559 int pipe = intel_crtc->pipe;
1560 u32 val;
1561
Jesse Barnes89b667f2013-04-18 14:51:36 -07001562 /* Enable clock channels for this port */
Ville Syrjäläa5805162015-05-26 20:42:30 +03001563 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001564 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001565 val = 0;
1566 if (pipe)
1567 val |= (1<<21);
1568 else
1569 val &= ~(1<<21);
1570 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001571 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001572
1573 /* HDMI 1.0V-2dB */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001574 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0);
1575 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), 0x2b245f5f);
1576 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port), 0x5578b83a);
1577 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0c782040);
1578 vlv_dpio_write(dev_priv, pipe, VLV_TX3_DW4(port), 0x2b247878);
1579 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
1580 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1581 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001582
1583 /* Program lane clock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001584 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
1585 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001586 mutex_unlock(&dev_priv->sb_lock);
Jani Nikulab76cf762013-07-30 12:20:31 +03001587
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001588 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001589 intel_crtc->config->has_hdmi_sink,
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001590 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001591
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001592 g4x_enable_hdmi(encoder);
Jani Nikulab76cf762013-07-30 12:20:31 +03001593
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001594 vlv_wait_port_ready(dev_priv, dport, 0x0);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001595}
1596
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001597static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001598{
1599 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1600 struct drm_device *dev = encoder->base.dev;
1601 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001602 struct intel_crtc *intel_crtc =
1603 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001604 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001605 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001606
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001607 intel_hdmi_prepare(encoder);
1608
Jesse Barnes89b667f2013-04-18 14:51:36 -07001609 /* Program Tx lane resets to default */
Ville Syrjäläa5805162015-05-26 20:42:30 +03001610 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001611 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001612 DPIO_PCS_TX_LANE2_RESET |
1613 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001614 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001615 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1616 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1617 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1618 DPIO_PCS_CLK_SOFT_RESET);
1619
1620 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001621 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
1622 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
1623 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001624
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001625 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1626 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001627 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001628}
1629
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03001630static void chv_data_lane_soft_reset(struct intel_encoder *encoder,
1631 bool reset)
1632{
1633 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1634 enum dpio_channel ch = vlv_dport_to_channel(enc_to_dig_port(&encoder->base));
1635 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1636 enum pipe pipe = crtc->pipe;
1637 uint32_t val;
1638
1639 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
1640 if (reset)
1641 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1642 else
1643 val |= DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET;
1644 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1645
1646 if (crtc->config->lane_count > 2) {
1647 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1648 if (reset)
1649 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1650 else
1651 val |= DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET;
1652 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
1653 }
1654
1655 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
1656 val |= CHV_PCS_REQ_SOFTRESET_EN;
1657 if (reset)
1658 val &= ~DPIO_PCS_CLK_SOFT_RESET;
1659 else
1660 val |= DPIO_PCS_CLK_SOFT_RESET;
1661 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
1662
1663 if (crtc->config->lane_count > 2) {
1664 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1665 val |= CHV_PCS_REQ_SOFTRESET_EN;
1666 if (reset)
1667 val &= ~DPIO_PCS_CLK_SOFT_RESET;
1668 else
1669 val |= DPIO_PCS_CLK_SOFT_RESET;
1670 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1671 }
1672}
1673
Ville Syrjälä9197c882014-04-09 13:29:05 +03001674static void chv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
1675{
1676 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1677 struct drm_device *dev = encoder->base.dev;
1678 struct drm_i915_private *dev_priv = dev->dev_private;
1679 struct intel_crtc *intel_crtc =
1680 to_intel_crtc(encoder->base.crtc);
1681 enum dpio_channel ch = vlv_dport_to_channel(dport);
1682 enum pipe pipe = intel_crtc->pipe;
1683 u32 val;
1684
Ville Syrjälä625695f2014-06-28 02:04:02 +03001685 intel_hdmi_prepare(encoder);
1686
Ville Syrjäläb0b33842015-07-08 23:45:55 +03001687 /*
1688 * Must trick the second common lane into life.
1689 * Otherwise we can't even access the PLL.
1690 */
1691 if (ch == DPIO_CH0 && pipe == PIPE_B)
1692 dport->release_cl2_override =
1693 !chv_phy_powergate_ch(dev_priv, DPIO_PHY0, DPIO_CH1, true);
1694
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001695 chv_phy_powergate_lanes(encoder, true, 0x0);
1696
Ville Syrjäläa5805162015-05-26 20:42:30 +03001697 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä9197c882014-04-09 13:29:05 +03001698
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03001699 /* Assert data lane reset */
1700 chv_data_lane_soft_reset(encoder, true);
1701
Ville Syrjäläb9e5ac32014-05-27 16:30:18 +03001702 /* program left/right clock distribution */
1703 if (pipe != PIPE_B) {
1704 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1705 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1706 if (ch == DPIO_CH0)
1707 val |= CHV_BUFLEFTENA1_FORCE;
1708 if (ch == DPIO_CH1)
1709 val |= CHV_BUFRIGHTENA1_FORCE;
1710 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1711 } else {
1712 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1713 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1714 if (ch == DPIO_CH0)
1715 val |= CHV_BUFLEFTENA2_FORCE;
1716 if (ch == DPIO_CH1)
1717 val |= CHV_BUFRIGHTENA2_FORCE;
1718 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1719 }
1720
Ville Syrjälä9197c882014-04-09 13:29:05 +03001721 /* program clock channel usage */
1722 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
1723 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1724 if (pipe != PIPE_B)
1725 val &= ~CHV_PCS_USEDCLKCHANNEL;
1726 else
1727 val |= CHV_PCS_USEDCLKCHANNEL;
1728 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
1729
1730 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
1731 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1732 if (pipe != PIPE_B)
1733 val &= ~CHV_PCS_USEDCLKCHANNEL;
1734 else
1735 val |= CHV_PCS_USEDCLKCHANNEL;
1736 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
1737
1738 /*
1739 * This a a bit weird since generally CL
1740 * matches the pipe, but here we need to
1741 * pick the CL based on the port.
1742 */
1743 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
1744 if (pipe != PIPE_B)
1745 val &= ~CHV_CMN_USEDCLKCHANNEL;
1746 else
1747 val |= CHV_CMN_USEDCLKCHANNEL;
1748 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
1749
Ville Syrjäläa5805162015-05-26 20:42:30 +03001750 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä9197c882014-04-09 13:29:05 +03001751}
1752
Ville Syrjäläd6db9952015-07-08 23:45:49 +03001753static void chv_hdmi_post_pll_disable(struct intel_encoder *encoder)
1754{
1755 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1756 enum pipe pipe = to_intel_crtc(encoder->base.crtc)->pipe;
1757 u32 val;
1758
1759 mutex_lock(&dev_priv->sb_lock);
1760
1761 /* disable left/right clock distribution */
1762 if (pipe != PIPE_B) {
1763 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1764 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1765 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1766 } else {
1767 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1768 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1769 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1770 }
1771
1772 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001773
Ville Syrjäläb0b33842015-07-08 23:45:55 +03001774 /*
1775 * Leave the power down bit cleared for at least one
1776 * lane so that chv_powergate_phy_ch() will power
1777 * on something when the channel is otherwise unused.
1778 * When the port is off and the override is removed
1779 * the lanes power down anyway, so otherwise it doesn't
1780 * really matter what the state of power down bits is
1781 * after this.
1782 */
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001783 chv_phy_powergate_lanes(encoder, false, 0x0);
Ville Syrjäläd6db9952015-07-08 23:45:49 +03001784}
1785
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001786static void vlv_hdmi_post_disable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001787{
1788 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1789 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001790 struct intel_crtc *intel_crtc =
1791 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001792 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001793 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001794
1795 /* Reset lanes to avoid HDMI flicker (VLV w/a) */
Ville Syrjäläa5805162015-05-26 20:42:30 +03001796 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001797 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), 0x00000000);
1798 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port), 0x00e00060);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001799 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001800}
1801
Ville Syrjälä580d3812014-04-09 13:29:00 +03001802static void chv_hdmi_post_disable(struct intel_encoder *encoder)
1803{
Ville Syrjälä580d3812014-04-09 13:29:00 +03001804 struct drm_device *dev = encoder->base.dev;
1805 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä580d3812014-04-09 13:29:00 +03001806
Ville Syrjäläa5805162015-05-26 20:42:30 +03001807 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001808
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03001809 /* Assert data lane reset */
1810 chv_data_lane_soft_reset(encoder, true);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001811
Ville Syrjäläa5805162015-05-26 20:42:30 +03001812 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001813}
1814
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001815static void chv_hdmi_pre_enable(struct intel_encoder *encoder)
1816{
1817 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Clint Taylorb4eb1562014-11-21 11:13:02 -08001818 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001819 struct drm_device *dev = encoder->base.dev;
1820 struct drm_i915_private *dev_priv = dev->dev_private;
1821 struct intel_crtc *intel_crtc =
1822 to_intel_crtc(encoder->base.crtc);
Ville Syrjälä124abe02015-09-08 13:40:45 +03001823 struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001824 enum dpio_channel ch = vlv_dport_to_channel(dport);
1825 int pipe = intel_crtc->pipe;
Ville Syrjälä2e523e92015-04-10 18:21:27 +03001826 int data, i, stagger;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001827 u32 val;
1828
Ville Syrjäläa5805162015-05-26 20:42:30 +03001829 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001830
Ville Syrjälä570e2a72014-08-18 14:42:46 +03001831 /* allow hardware to manage TX FIFO reset source */
1832 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
1833 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1834 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
1835
1836 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
1837 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1838 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
1839
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001840 /* Program Tx latency optimal setting */
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001841 for (i = 0; i < 4; i++) {
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001842 /* Set the upar bit */
1843 data = (i == 1) ? 0x0 : 0x1;
1844 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
1845 data << DPIO_UPAR_SHIFT);
1846 }
1847
1848 /* Data lane stagger programming */
Ville Syrjälä2e523e92015-04-10 18:21:27 +03001849 if (intel_crtc->config->port_clock > 270000)
1850 stagger = 0x18;
1851 else if (intel_crtc->config->port_clock > 135000)
1852 stagger = 0xd;
1853 else if (intel_crtc->config->port_clock > 67500)
1854 stagger = 0x7;
1855 else if (intel_crtc->config->port_clock > 33750)
1856 stagger = 0x4;
1857 else
1858 stagger = 0x2;
1859
1860 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
1861 val |= DPIO_TX2_STAGGER_MASK(0x1f);
1862 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
1863
1864 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
1865 val |= DPIO_TX2_STAGGER_MASK(0x1f);
1866 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
1867
1868 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW12(ch),
1869 DPIO_LANESTAGGER_STRAP(stagger) |
1870 DPIO_LANESTAGGER_STRAP_OVRD |
1871 DPIO_TX1_STAGGER_MASK(0x1f) |
1872 DPIO_TX1_STAGGER_MULT(6) |
1873 DPIO_TX2_STAGGER_MULT(0));
1874
1875 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW12(ch),
1876 DPIO_LANESTAGGER_STRAP(stagger) |
1877 DPIO_LANESTAGGER_STRAP_OVRD |
1878 DPIO_TX1_STAGGER_MASK(0x1f) |
1879 DPIO_TX1_STAGGER_MULT(7) |
1880 DPIO_TX2_STAGGER_MULT(5));
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001881
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03001882 /* Deassert data lane reset */
1883 chv_data_lane_soft_reset(encoder, false);
1884
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001885 /* Clear calc init */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001886 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1887 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001888 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1889 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001890 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1891
1892 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1893 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001894 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1895 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001896 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001897
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001898 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW9(ch));
1899 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1900 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1901 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW9(ch), val);
1902
1903 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW9(ch));
1904 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1905 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1906 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW9(ch), val);
1907
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001908 /* FIXME: Program the support xxx V-dB */
1909 /* Use 800mV-0dB */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001910 for (i = 0; i < 4; i++) {
1911 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
1912 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
1913 val |= 128 << DPIO_SWING_DEEMPH9P5_SHIFT;
1914 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
1915 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001916
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001917 for (i = 0; i < 4; i++) {
1918 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
Ville Syrjälä67fa24b2015-07-08 23:45:48 +03001919
Ville Syrjälä1fb44502014-06-28 02:04:03 +03001920 val &= ~DPIO_SWING_MARGIN000_MASK;
1921 val |= 102 << DPIO_SWING_MARGIN000_SHIFT;
Ville Syrjälä67fa24b2015-07-08 23:45:48 +03001922
1923 /*
1924 * Supposedly this value shouldn't matter when unique transition
1925 * scale is disabled, but in fact it does matter. Let's just
1926 * always program the same value and hope it's OK.
1927 */
1928 val &= ~(0xff << DPIO_UNIQ_TRANS_SCALE_SHIFT);
1929 val |= 0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT;
1930
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001931 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
1932 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001933
Ville Syrjälä67fa24b2015-07-08 23:45:48 +03001934 /*
1935 * The document said it needs to set bit 27 for ch0 and bit 26
1936 * for ch1. Might be a typo in the doc.
1937 * For now, for this unique transition scale selection, set bit
1938 * 27 for ch0 and ch1.
1939 */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001940 for (i = 0; i < 4; i++) {
1941 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
1942 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
1943 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
1944 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001945
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001946 /* Start swing calculation */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001947 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1948 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1949 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1950
1951 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1952 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1953 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001954
1955 /* LRC Bypass */
1956 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
1957 val |= DPIO_LRC_BYPASS;
1958 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
1959
Ville Syrjäläa5805162015-05-26 20:42:30 +03001960 mutex_unlock(&dev_priv->sb_lock);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001961
Clint Taylorb4eb1562014-11-21 11:13:02 -08001962 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001963 intel_crtc->config->has_hdmi_sink,
Clint Taylorb4eb1562014-11-21 11:13:02 -08001964 adjusted_mode);
1965
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001966 g4x_enable_hdmi(encoder);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001967
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001968 vlv_wait_port_ready(dev_priv, dport, 0x0);
Ville Syrjäläb0b33842015-07-08 23:45:55 +03001969
1970 /* Second common lane will stay alive on its own now */
1971 if (dport->release_cl2_override) {
1972 chv_phy_powergate_ch(dev_priv, DPIO_PHY0, DPIO_CH1, false);
1973 dport->release_cl2_override = false;
1974 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001975}
1976
Eric Anholt7d573822009-01-02 13:33:00 -08001977static void intel_hdmi_destroy(struct drm_connector *connector)
1978{
Chris Wilson10e972d2014-09-04 21:43:45 +01001979 kfree(to_intel_connector(connector)->detect_edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001980 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +08001981 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001982}
1983
Eric Anholt7d573822009-01-02 13:33:00 -08001984static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +02001985 .dpms = drm_atomic_helper_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -08001986 .detect = intel_hdmi_detect,
Chris Wilson953ece6972014-09-02 20:04:01 +01001987 .force = intel_hdmi_force,
Eric Anholt7d573822009-01-02 13:33:00 -08001988 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001989 .set_property = intel_hdmi_set_property,
Matt Roper2545e4a2015-01-22 16:51:27 -08001990 .atomic_get_property = intel_connector_atomic_get_property,
Eric Anholt7d573822009-01-02 13:33:00 -08001991 .destroy = intel_hdmi_destroy,
Matt Roperc6f95f22015-01-22 16:50:32 -08001992 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Ander Conselvan de Oliveira98969722015-03-20 16:18:06 +02001993 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Eric Anholt7d573822009-01-02 13:33:00 -08001994};
1995
1996static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
1997 .get_modes = intel_hdmi_get_modes,
1998 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01001999 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -08002000};
2001
Eric Anholt7d573822009-01-02 13:33:00 -08002002static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002003 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -08002004};
2005
Chris Wilson55b7d6e82010-09-19 09:29:33 +01002006static void
Vandana Kannan94a11dd2014-06-11 11:06:01 +05302007intel_attach_aspect_ratio_property(struct drm_connector *connector)
2008{
2009 if (!drm_mode_create_aspect_ratio_property(connector->dev))
2010 drm_object_attach_property(&connector->base,
2011 connector->dev->mode_config.aspect_ratio_property,
2012 DRM_MODE_PICTURE_ASPECT_NONE);
2013}
2014
2015static void
Chris Wilson55b7d6e82010-09-19 09:29:33 +01002016intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
2017{
Chris Wilson3f43c482011-05-12 22:17:24 +01002018 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002019 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02002020 intel_hdmi->color_range_auto = true;
Vandana Kannan94a11dd2014-06-11 11:06:01 +05302021 intel_attach_aspect_ratio_property(connector);
2022 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01002023}
2024
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002025void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
2026 struct intel_connector *intel_connector)
Eric Anholt7d573822009-01-02 13:33:00 -08002027{
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002028 struct drm_connector *connector = &intel_connector->base;
2029 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
2030 struct intel_encoder *intel_encoder = &intel_dig_port->base;
2031 struct drm_device *dev = intel_encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -08002032 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02002033 enum port port = intel_dig_port->port;
Xiong Zhang11c1b652015-08-17 16:04:04 +08002034 uint8_t alternate_ddc_pin;
Eric Anholt7d573822009-01-02 13:33:00 -08002035
Eric Anholt7d573822009-01-02 13:33:00 -08002036 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -04002037 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -08002038 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
2039
Peter Rossc3febcc2012-01-28 14:49:26 +01002040 connector->interlace_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08002041 connector->doublescan_allowed = 0;
Damien Lespiau573e74a2013-09-25 16:45:40 +01002042 connector->stereo_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08002043
Daniel Vetter08d644a2012-07-12 20:19:59 +02002044 switch (port) {
2045 case PORT_B:
Jani Nikula4c272832015-04-01 10:58:05 +03002046 if (IS_BROXTON(dev_priv))
2047 intel_hdmi->ddc_bus = GMBUS_PIN_1_BXT;
2048 else
2049 intel_hdmi->ddc_bus = GMBUS_PIN_DPB;
Sonika Jindalcf1d5882015-08-10 10:35:36 +05302050 /*
2051 * On BXT A0/A1, sw needs to activate DDIA HPD logic and
2052 * interrupts to check the external panel connection.
2053 */
2054 if (IS_BROXTON(dev_priv) && (INTEL_REVID(dev) < BXT_REVID_B0))
2055 intel_encoder->hpd_pin = HPD_PORT_A;
2056 else
2057 intel_encoder->hpd_pin = HPD_PORT_B;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002058 break;
2059 case PORT_C:
Jani Nikula4c272832015-04-01 10:58:05 +03002060 if (IS_BROXTON(dev_priv))
2061 intel_hdmi->ddc_bus = GMBUS_PIN_2_BXT;
2062 else
2063 intel_hdmi->ddc_bus = GMBUS_PIN_DPC;
Egbert Eich1d843f92013-02-25 12:06:49 -05002064 intel_encoder->hpd_pin = HPD_PORT_C;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002065 break;
2066 case PORT_D:
Jani Nikula4c272832015-04-01 10:58:05 +03002067 if (WARN_ON(IS_BROXTON(dev_priv)))
2068 intel_hdmi->ddc_bus = GMBUS_PIN_DISABLED;
2069 else if (IS_CHERRYVIEW(dev_priv))
Jani Nikula988c7012015-03-27 00:20:19 +02002070 intel_hdmi->ddc_bus = GMBUS_PIN_DPD_CHV;
Ville Syrjäläc0c35322014-04-09 13:28:52 +03002071 else
Jani Nikula988c7012015-03-27 00:20:19 +02002072 intel_hdmi->ddc_bus = GMBUS_PIN_DPD;
Egbert Eich1d843f92013-02-25 12:06:49 -05002073 intel_encoder->hpd_pin = HPD_PORT_D;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002074 break;
Xiong Zhang11c1b652015-08-17 16:04:04 +08002075 case PORT_E:
2076 /* On SKL PORT E doesn't have seperate GMBUS pin
2077 * We rely on VBT to set a proper alternate GMBUS pin. */
2078 alternate_ddc_pin =
2079 dev_priv->vbt.ddi_port_info[PORT_E].alternate_ddc_pin;
2080 switch (alternate_ddc_pin) {
2081 case DDC_PIN_B:
2082 intel_hdmi->ddc_bus = GMBUS_PIN_DPB;
2083 break;
2084 case DDC_PIN_C:
2085 intel_hdmi->ddc_bus = GMBUS_PIN_DPC;
2086 break;
2087 case DDC_PIN_D:
2088 intel_hdmi->ddc_bus = GMBUS_PIN_DPD;
2089 break;
2090 default:
2091 MISSING_CASE(alternate_ddc_pin);
2092 }
2093 intel_encoder->hpd_pin = HPD_PORT_E;
2094 break;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002095 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05002096 intel_encoder->hpd_pin = HPD_PORT_A;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002097 /* Internal port only for eDP. */
2098 default:
Eugeni Dodonov6e4c1672012-05-09 15:37:13 -03002099 BUG();
Ma Lingf8aed702009-08-24 13:50:24 +08002100 }
Eric Anholt7d573822009-01-02 13:33:00 -08002101
Jesse Barnes7637bfd2013-03-08 10:46:01 -08002102 if (IS_VALLEYVIEW(dev)) {
Shobhit Kumar90b107c2012-03-28 13:39:32 -07002103 intel_hdmi->write_infoframe = vlv_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03002104 intel_hdmi->set_infoframes = vlv_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002105 intel_hdmi->infoframe_enabled = vlv_infoframe_enabled;
Sonika Jindalb98856a2014-07-22 11:13:46 +05302106 } else if (IS_G4X(dev)) {
Jesse Barnes7637bfd2013-03-08 10:46:01 -08002107 intel_hdmi->write_infoframe = g4x_write_infoframe;
2108 intel_hdmi->set_infoframes = g4x_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002109 intel_hdmi->infoframe_enabled = g4x_infoframe_enabled;
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03002110 } else if (HAS_DDI(dev)) {
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -03002111 intel_hdmi->write_infoframe = hsw_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03002112 intel_hdmi->set_infoframes = hsw_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002113 intel_hdmi->infoframe_enabled = hsw_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03002114 } else if (HAS_PCH_IBX(dev)) {
2115 intel_hdmi->write_infoframe = ibx_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03002116 intel_hdmi->set_infoframes = ibx_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002117 intel_hdmi->infoframe_enabled = ibx_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03002118 } else {
2119 intel_hdmi->write_infoframe = cpt_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03002120 intel_hdmi->set_infoframes = cpt_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002121 intel_hdmi->infoframe_enabled = cpt_infoframe_enabled;
Jesse Barnes64a8fc02011-09-22 11:16:00 +05302122 }
Jesse Barnes45187ac2011-08-03 09:22:55 -07002123
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002124 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02002125 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
2126 else
2127 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak4932e2c2014-02-11 17:12:48 +02002128 intel_connector->unregister = intel_connector_unregister;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002129
2130 intel_hdmi_add_properties(intel_hdmi, connector);
2131
2132 intel_connector_attach_encoder(intel_connector, intel_encoder);
Thomas Wood34ea3d32014-05-29 16:57:41 +01002133 drm_connector_register(connector);
Shashank Sharmad8b4c432015-09-04 18:56:11 +05302134 intel_hdmi->attached_connector = intel_connector;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002135
2136 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2137 * 0xd. Failure to do so will result in spurious interrupts being
2138 * generated on the port when a cable is not attached.
2139 */
2140 if (IS_G4X(dev) && !IS_GM45(dev)) {
2141 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2142 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2143 }
2144}
2145
Paulo Zanonib242b7f2013-02-18 19:00:26 -03002146void intel_hdmi_init(struct drm_device *dev, int hdmi_reg, enum port port)
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002147{
2148 struct intel_digital_port *intel_dig_port;
2149 struct intel_encoder *intel_encoder;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002150 struct intel_connector *intel_connector;
2151
Daniel Vetterb14c5672013-09-19 12:18:32 +02002152 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002153 if (!intel_dig_port)
2154 return;
2155
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03002156 intel_connector = intel_connector_alloc();
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002157 if (!intel_connector) {
2158 kfree(intel_dig_port);
2159 return;
2160 }
2161
2162 intel_encoder = &intel_dig_port->base;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002163
2164 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
2165 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002166
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01002167 intel_encoder->compute_config = intel_hdmi_compute_config;
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03002168 if (HAS_PCH_SPLIT(dev)) {
2169 intel_encoder->disable = pch_disable_hdmi;
2170 intel_encoder->post_disable = pch_post_disable_hdmi;
2171 } else {
2172 intel_encoder->disable = g4x_disable_hdmi;
2173 }
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002174 intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002175 intel_encoder->get_config = intel_hdmi_get_config;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002176 if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03002177 intel_encoder->pre_pll_enable = chv_hdmi_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002178 intel_encoder->pre_enable = chv_hdmi_pre_enable;
2179 intel_encoder->enable = vlv_enable_hdmi;
Ville Syrjälä580d3812014-04-09 13:29:00 +03002180 intel_encoder->post_disable = chv_hdmi_post_disable;
Ville Syrjäläd6db9952015-07-08 23:45:49 +03002181 intel_encoder->post_pll_disable = chv_hdmi_post_pll_disable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002182 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee9514ac62013-10-16 17:07:41 +08002183 intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
2184 intel_encoder->pre_enable = vlv_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03002185 intel_encoder->enable = vlv_enable_hdmi;
Chon Ming Lee9514ac62013-10-16 17:07:41 +08002186 intel_encoder->post_disable = vlv_hdmi_post_disable;
Jani Nikulab76cf762013-07-30 12:20:31 +03002187 } else {
Jesse Barnes13732ba2014-04-05 11:51:35 -07002188 intel_encoder->pre_enable = intel_hdmi_pre_enable;
Ville Syrjäläd1b15892015-05-05 17:06:19 +03002189 if (HAS_PCH_CPT(dev))
2190 intel_encoder->enable = cpt_enable_hdmi;
Ville Syrjäläbf868c72015-05-05 17:06:23 +03002191 else if (HAS_PCH_IBX(dev))
2192 intel_encoder->enable = ibx_enable_hdmi;
Ville Syrjäläd1b15892015-05-05 17:06:19 +03002193 else
Ville Syrjäläbf868c72015-05-05 17:06:23 +03002194 intel_encoder->enable = g4x_enable_hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07002195 }
Daniel Vetter5ab432e2012-06-30 08:59:56 +02002196
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002197 intel_encoder->type = INTEL_OUTPUT_HDMI;
Ville Syrjälä882ec382014-04-28 14:07:43 +03002198 if (IS_CHERRYVIEW(dev)) {
2199 if (port == PORT_D)
2200 intel_encoder->crtc_mask = 1 << 2;
2201 else
2202 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
2203 } else {
2204 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
2205 }
Ville Syrjälä301ea742014-03-03 16:15:30 +02002206 intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
Ville Syrjäläc6f14952014-03-03 16:15:31 +02002207 /*
2208 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
2209 * to work on real hardware. And since g4x can send infoframes to
2210 * only one port anyway, nothing is lost by allowing it.
2211 */
2212 if (IS_G4X(dev))
2213 intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -08002214
Paulo Zanoni174edf12012-10-26 19:05:50 -02002215 intel_dig_port->port = port;
Paulo Zanonib242b7f2013-02-18 19:00:26 -03002216 intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002217 intel_dig_port->dp.output_reg = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01002218
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002219 intel_hdmi_init_connector(intel_dig_port, intel_connector);
Eric Anholt7d573822009-01-02 13:33:00 -08002220}