blob: 2cdab73046f8a8165a9e8e2965afd45501fbf65d [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:
Ville Syrjäläffc85da2015-12-16 18:10:00 +020081 MISSING_CASE(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:
Ville Syrjäläffc85da2015-12-16 18:10:00 +020096 MISSING_CASE(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:
Ville Syrjäläffc85da2015-12-16 18:10:00 +0200111 MISSING_CASE(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300112 return 0;
113 }
114}
115
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200116static i915_reg_t
117hsw_dip_data_reg(struct drm_i915_private *dev_priv,
118 enum transcoder cpu_transcoder,
119 enum hdmi_infoframe_type type,
120 int i)
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300121{
Damien Lespiau178f7362013-08-06 20:32:18 +0100122 switch (type) {
123 case HDMI_INFOFRAME_TYPE_AVI:
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300124 return HSW_TVIDEO_DIP_AVI_DATA(cpu_transcoder, i);
Damien Lespiau178f7362013-08-06 20:32:18 +0100125 case HDMI_INFOFRAME_TYPE_SPD:
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300126 return HSW_TVIDEO_DIP_SPD_DATA(cpu_transcoder, i);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100127 case HDMI_INFOFRAME_TYPE_VENDOR:
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300128 return HSW_TVIDEO_DIP_VS_DATA(cpu_transcoder, i);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300129 default:
Ville Syrjäläffc85da2015-12-16 18:10:00 +0200130 MISSING_CASE(type);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200131 return INVALID_MMIO_REG;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300132 }
133}
134
Daniel Vettera3da1df2012-05-08 15:19:06 +0200135static void g4x_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100136 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200137 const void *frame, ssize_t len)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700138{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200139 const uint32_t *data = frame;
David Härdeman3c17fe42010-09-24 21:44:32 +0200140 struct drm_device *dev = encoder->dev;
141 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300142 u32 val = I915_READ(VIDEO_DIP_CTL);
Damien Lespiau178f7362013-08-06 20:32:18 +0100143 int i;
David Härdeman3c17fe42010-09-24 21:44:32 +0200144
Paulo Zanoni822974a2012-05-28 16:42:51 -0300145 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
146
Paulo Zanoni1d4f85a2012-05-04 17:18:18 -0300147 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100148 val |= g4x_infoframe_index(type);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700149
Damien Lespiau178f7362013-08-06 20:32:18 +0100150 val &= ~g4x_infoframe_enable(type);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300151
152 I915_WRITE(VIDEO_DIP_CTL, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700153
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300154 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700155 for (i = 0; i < len; i += 4) {
David Härdeman3c17fe42010-09-24 21:44:32 +0200156 I915_WRITE(VIDEO_DIP_DATA, *data);
157 data++;
158 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300159 /* Write every possible data byte to force correct ECC calculation. */
160 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
161 I915_WRITE(VIDEO_DIP_DATA, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300162 mmiowb();
David Härdeman3c17fe42010-09-24 21:44:32 +0200163
Damien Lespiau178f7362013-08-06 20:32:18 +0100164 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300165 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200166 val |= VIDEO_DIP_FREQ_VSYNC;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700167
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300168 I915_WRITE(VIDEO_DIP_CTL, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300169 POSTING_READ(VIDEO_DIP_CTL);
David Härdeman3c17fe42010-09-24 21:44:32 +0200170}
171
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200172static bool g4x_infoframe_enabled(struct drm_encoder *encoder,
173 const struct intel_crtc_state *pipe_config)
Jesse Barnese43823e2014-11-05 14:26:08 -0800174{
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200175 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Jesse Barnes89a35ec2014-11-20 13:24:13 -0800176 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Jesse Barnese43823e2014-11-05 14:26:08 -0800177 u32 val = I915_READ(VIDEO_DIP_CTL);
178
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300179 if ((val & VIDEO_DIP_ENABLE) == 0)
180 return false;
Jesse Barnes89a35ec2014-11-20 13:24:13 -0800181
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300182 if ((val & VIDEO_DIP_PORT_MASK) != VIDEO_DIP_PORT(intel_dig_port->port))
183 return false;
184
185 return val & (VIDEO_DIP_ENABLE_AVI |
186 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
Jesse Barnese43823e2014-11-05 14:26:08 -0800187}
188
Paulo Zanonifdf12502012-05-04 17:18:24 -0300189static void ibx_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100190 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200191 const void *frame, ssize_t len)
Paulo Zanonifdf12502012-05-04 17:18:24 -0300192{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200193 const uint32_t *data = frame;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300194 struct drm_device *dev = encoder->dev;
195 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300196 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200197 i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300198 u32 val = I915_READ(reg);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200199 int i;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300200
Paulo Zanoni822974a2012-05-28 16:42:51 -0300201 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
202
Paulo Zanonifdf12502012-05-04 17:18:24 -0300203 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100204 val |= g4x_infoframe_index(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300205
Damien Lespiau178f7362013-08-06 20:32:18 +0100206 val &= ~g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300207
208 I915_WRITE(reg, val);
209
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300210 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300211 for (i = 0; i < len; i += 4) {
212 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
213 data++;
214 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300215 /* Write every possible data byte to force correct ECC calculation. */
216 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
217 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300218 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300219
Damien Lespiau178f7362013-08-06 20:32:18 +0100220 val |= g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300221 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200222 val |= VIDEO_DIP_FREQ_VSYNC;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300223
224 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300225 POSTING_READ(reg);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300226}
227
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200228static bool ibx_infoframe_enabled(struct drm_encoder *encoder,
229 const struct intel_crtc_state *pipe_config)
Jesse Barnese43823e2014-11-05 14:26:08 -0800230{
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200231 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Jani Nikula052f62f2015-04-29 15:30:07 +0300232 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200233 enum pipe pipe = to_intel_crtc(pipe_config->base.crtc)->pipe;
234 i915_reg_t reg = TVIDEO_DIP_CTL(pipe);
Jesse Barnese43823e2014-11-05 14:26:08 -0800235 u32 val = I915_READ(reg);
236
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300237 if ((val & VIDEO_DIP_ENABLE) == 0)
238 return false;
Jani Nikula052f62f2015-04-29 15:30:07 +0300239
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300240 if ((val & VIDEO_DIP_PORT_MASK) != VIDEO_DIP_PORT(intel_dig_port->port))
241 return false;
242
243 return val & (VIDEO_DIP_ENABLE_AVI |
244 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
245 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Jesse Barnese43823e2014-11-05 14:26:08 -0800246}
247
Paulo Zanonifdf12502012-05-04 17:18:24 -0300248static void cpt_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100249 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200250 const void *frame, ssize_t len)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700251{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200252 const uint32_t *data = frame;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700253 struct drm_device *dev = encoder->dev;
254 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300255 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200256 i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300257 u32 val = I915_READ(reg);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200258 int i;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700259
Paulo Zanoni822974a2012-05-28 16:42:51 -0300260 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
261
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530262 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100263 val |= g4x_infoframe_index(type);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700264
Paulo Zanoniecb97852012-05-04 17:18:21 -0300265 /* The DIP control register spec says that we need to update the AVI
266 * infoframe without clearing its enable bit */
Damien Lespiau178f7362013-08-06 20:32:18 +0100267 if (type != HDMI_INFOFRAME_TYPE_AVI)
268 val &= ~g4x_infoframe_enable(type);
Paulo Zanoniecb97852012-05-04 17:18:21 -0300269
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300270 I915_WRITE(reg, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700271
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300272 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700273 for (i = 0; i < len; i += 4) {
274 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
275 data++;
276 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300277 /* Write every possible data byte to force correct ECC calculation. */
278 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
279 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300280 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700281
Damien Lespiau178f7362013-08-06 20:32:18 +0100282 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300283 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200284 val |= VIDEO_DIP_FREQ_VSYNC;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700285
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300286 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300287 POSTING_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700288}
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700289
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200290static bool cpt_infoframe_enabled(struct drm_encoder *encoder,
291 const struct intel_crtc_state *pipe_config)
Jesse Barnese43823e2014-11-05 14:26:08 -0800292{
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200293 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
294 enum pipe pipe = to_intel_crtc(pipe_config->base.crtc)->pipe;
295 u32 val = I915_READ(TVIDEO_DIP_CTL(pipe));
Jesse Barnese43823e2014-11-05 14:26:08 -0800296
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300297 if ((val & VIDEO_DIP_ENABLE) == 0)
298 return false;
299
300 return val & (VIDEO_DIP_ENABLE_AVI |
301 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
302 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Jesse Barnese43823e2014-11-05 14:26:08 -0800303}
304
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700305static void vlv_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100306 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200307 const void *frame, ssize_t len)
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700308{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200309 const uint32_t *data = frame;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700310 struct drm_device *dev = encoder->dev;
311 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300312 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200313 i915_reg_t reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300314 u32 val = I915_READ(reg);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200315 int i;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700316
Paulo Zanoni822974a2012-05-28 16:42:51 -0300317 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
318
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700319 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100320 val |= g4x_infoframe_index(type);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700321
Damien Lespiau178f7362013-08-06 20:32:18 +0100322 val &= ~g4x_infoframe_enable(type);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300323
324 I915_WRITE(reg, val);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700325
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300326 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700327 for (i = 0; i < len; i += 4) {
328 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
329 data++;
330 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300331 /* Write every possible data byte to force correct ECC calculation. */
332 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
333 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300334 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700335
Damien Lespiau178f7362013-08-06 20:32:18 +0100336 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300337 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200338 val |= VIDEO_DIP_FREQ_VSYNC;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700339
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300340 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300341 POSTING_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700342}
343
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200344static bool vlv_infoframe_enabled(struct drm_encoder *encoder,
345 const struct intel_crtc_state *pipe_config)
Jesse Barnese43823e2014-11-05 14:26:08 -0800346{
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200347 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Jesse Barnes535afa22015-04-15 16:52:29 -0700348 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200349 enum pipe pipe = to_intel_crtc(pipe_config->base.crtc)->pipe;
350 u32 val = I915_READ(VLV_TVIDEO_DIP_CTL(pipe));
Jesse Barnese43823e2014-11-05 14:26:08 -0800351
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300352 if ((val & VIDEO_DIP_ENABLE) == 0)
353 return false;
Jesse Barnes535afa22015-04-15 16:52:29 -0700354
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300355 if ((val & VIDEO_DIP_PORT_MASK) != VIDEO_DIP_PORT(intel_dig_port->port))
356 return false;
357
358 return val & (VIDEO_DIP_ENABLE_AVI |
359 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
360 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Jesse Barnese43823e2014-11-05 14:26:08 -0800361}
362
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300363static void hsw_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100364 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200365 const void *frame, ssize_t len)
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300366{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200367 const uint32_t *data = frame;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300368 struct drm_device *dev = encoder->dev;
369 struct drm_i915_private *dev_priv = dev->dev_private;
370 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300371 enum transcoder cpu_transcoder = intel_crtc->config->cpu_transcoder;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200372 i915_reg_t ctl_reg = HSW_TVIDEO_DIP_CTL(cpu_transcoder);
373 i915_reg_t data_reg;
Damien Lespiau178f7362013-08-06 20:32:18 +0100374 int i;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300375 u32 val = I915_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300376
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300377 data_reg = hsw_dip_data_reg(dev_priv, cpu_transcoder, type, 0);
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) {
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300384 I915_WRITE(hsw_dip_data_reg(dev_priv, cpu_transcoder,
385 type, i >> 2), *data);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300386 data++;
387 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300388 /* Write every possible data byte to force correct ECC calculation. */
389 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300390 I915_WRITE(hsw_dip_data_reg(dev_priv, cpu_transcoder,
391 type, i >> 2), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300392 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300393
Damien Lespiau178f7362013-08-06 20:32:18 +0100394 val |= hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300395 I915_WRITE(ctl_reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300396 POSTING_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300397}
398
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200399static bool hsw_infoframe_enabled(struct drm_encoder *encoder,
400 const struct intel_crtc_state *pipe_config)
Jesse Barnese43823e2014-11-05 14:26:08 -0800401{
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200402 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
403 u32 val = I915_READ(HSW_TVIDEO_DIP_CTL(pipe_config->cpu_transcoder));
Jesse Barnese43823e2014-11-05 14:26:08 -0800404
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,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300450 const 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
Damien Lespiau5adaea72013-08-06 20:32:19 +0100457 ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
458 adjusted_mode);
459 if (ret < 0) {
460 DRM_ERROR("couldn't fill AVI infoframe\n");
461 return;
462 }
Paulo Zanonic846b612012-04-13 16:31:41 -0300463
Ville Syrjäläabedc072013-01-17 16:31:31 +0200464 if (intel_hdmi->rgb_quant_range_selectable) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200465 if (intel_crtc->config->limited_color_range)
Damien Lespiau5adaea72013-08-06 20:32:19 +0100466 frame.avi.quantization_range =
467 HDMI_QUANTIZATION_RANGE_LIMITED;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200468 else
Damien Lespiau5adaea72013-08-06 20:32:19 +0100469 frame.avi.quantization_range =
470 HDMI_QUANTIZATION_RANGE_FULL;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200471 }
472
Damien Lespiau9198ee52013-08-06 20:32:24 +0100473 intel_write_infoframe(encoder, &frame);
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700474}
475
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300476static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700477{
Damien Lespiau5adaea72013-08-06 20:32:19 +0100478 union hdmi_infoframe frame;
479 int ret;
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700480
Damien Lespiau5adaea72013-08-06 20:32:19 +0100481 ret = hdmi_spd_infoframe_init(&frame.spd, "Intel", "Integrated gfx");
482 if (ret < 0) {
483 DRM_ERROR("couldn't fill SPD infoframe\n");
484 return;
485 }
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700486
Damien Lespiau5adaea72013-08-06 20:32:19 +0100487 frame.spd.sdi = HDMI_SPD_SDI_PC;
488
Damien Lespiau9198ee52013-08-06 20:32:24 +0100489 intel_write_infoframe(encoder, &frame);
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700490}
491
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100492static void
493intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300494 const struct drm_display_mode *adjusted_mode)
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100495{
496 union hdmi_infoframe frame;
497 int ret;
498
499 ret = drm_hdmi_vendor_infoframe_from_display_mode(&frame.vendor.hdmi,
500 adjusted_mode);
501 if (ret < 0)
502 return;
503
504 intel_write_infoframe(encoder, &frame);
505}
506
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300507static void g4x_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200508 bool enable,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300509 const struct drm_display_mode *adjusted_mode)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300510{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300511 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200512 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
513 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200514 i915_reg_t reg = VIDEO_DIP_CTL;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300515 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200516 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300517
Daniel Vetterafba0182012-06-12 16:36:45 +0200518 assert_hdmi_port_disabled(intel_hdmi);
519
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300520 /* If the registers were not initialized yet, they might be zeroes,
521 * which means we're selecting the AVI DIP and we're setting its
522 * frequency to once. This seems to really confuse the HW and make
523 * things stop working (the register spec says the AVI always needs to
524 * be sent every VSync). So here we avoid writing to the register more
525 * than we need and also explicitly select the AVI DIP and explicitly
526 * set its frequency to every VSync. Avoiding to write it twice seems to
527 * be enough to solve the problem, but being defensive shouldn't hurt us
528 * either. */
529 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
530
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200531 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300532 if (!(val & VIDEO_DIP_ENABLE))
533 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300534 if (port != (val & VIDEO_DIP_PORT_MASK)) {
535 DRM_DEBUG_KMS("video DIP still enabled on port %c\n",
536 (val & VIDEO_DIP_PORT_MASK) >> 29);
537 return;
538 }
539 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
540 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300541 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300542 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300543 return;
544 }
545
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300546 if (port != (val & VIDEO_DIP_PORT_MASK)) {
547 if (val & VIDEO_DIP_ENABLE) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300548 DRM_DEBUG_KMS("video DIP already enabled on port %c\n",
549 (val & VIDEO_DIP_PORT_MASK) >> 29);
550 return;
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300551 }
552 val &= ~VIDEO_DIP_PORT_MASK;
553 val |= port;
554 }
555
Paulo Zanoni822974a2012-05-28 16:42:51 -0300556 val |= VIDEO_DIP_ENABLE;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300557 val &= ~(VIDEO_DIP_ENABLE_AVI |
558 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300559
Paulo Zanonif278d972012-05-28 16:42:50 -0300560 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300561 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300562
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300563 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
564 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100565 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300566}
567
Ville Syrjälä6d674152015-05-05 17:06:20 +0300568static bool hdmi_sink_is_deep_color(struct drm_encoder *encoder)
569{
570 struct drm_device *dev = encoder->dev;
571 struct drm_connector *connector;
572
573 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
574
575 /*
576 * HDMI cloning is only supported on g4x which doesn't
577 * support deep color or GCP infoframes anyway so no
578 * need to worry about multiple HDMI sinks here.
579 */
580 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
581 if (connector->encoder == encoder)
582 return connector->display_info.bpc > 8;
583
584 return false;
585}
586
Ville Syrjälä12aa3292015-05-05 17:06:21 +0300587/*
588 * Determine if default_phase=1 can be indicated in the GCP infoframe.
589 *
590 * From HDMI specification 1.4a:
591 * - The first pixel of each Video Data Period shall always have a pixel packing phase of 0
592 * - The first pixel following each Video Data Period shall have a pixel packing phase of 0
593 * - The PP bits shall be constant for all GCPs and will be equal to the last packing phase
594 * - The first pixel following every transition of HSYNC or VSYNC shall have a pixel packing
595 * phase of 0
596 */
597static bool gcp_default_phase_possible(int pipe_bpp,
598 const struct drm_display_mode *mode)
599{
600 unsigned int pixels_per_group;
601
602 switch (pipe_bpp) {
603 case 30:
604 /* 4 pixels in 5 clocks */
605 pixels_per_group = 4;
606 break;
607 case 36:
608 /* 2 pixels in 3 clocks */
609 pixels_per_group = 2;
610 break;
611 case 48:
612 /* 1 pixel in 2 clocks */
613 pixels_per_group = 1;
614 break;
615 default:
616 /* phase information not relevant for 8bpc */
617 return false;
618 }
619
620 return mode->crtc_hdisplay % pixels_per_group == 0 &&
621 mode->crtc_htotal % pixels_per_group == 0 &&
622 mode->crtc_hblank_start % pixels_per_group == 0 &&
623 mode->crtc_hblank_end % pixels_per_group == 0 &&
624 mode->crtc_hsync_start % pixels_per_group == 0 &&
625 mode->crtc_hsync_end % pixels_per_group == 0 &&
626 ((mode->flags & DRM_MODE_FLAG_INTERLACE) == 0 ||
627 mode->crtc_htotal/2 % pixels_per_group == 0);
628}
629
Ville Syrjälä6d674152015-05-05 17:06:20 +0300630static bool intel_hdmi_set_gcp_infoframe(struct drm_encoder *encoder)
631{
632 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
633 struct intel_crtc *crtc = to_intel_crtc(encoder->crtc);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200634 i915_reg_t reg;
635 u32 val = 0;
Ville Syrjälä6d674152015-05-05 17:06:20 +0300636
637 if (HAS_DDI(dev_priv))
638 reg = HSW_TVIDEO_DIP_GCP(crtc->config->cpu_transcoder);
Wayne Boyer666a4532015-12-09 12:29:35 -0800639 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Ville Syrjälä6d674152015-05-05 17:06:20 +0300640 reg = VLV_TVIDEO_DIP_GCP(crtc->pipe);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +0300641 else if (HAS_PCH_SPLIT(dev_priv))
Ville Syrjälä6d674152015-05-05 17:06:20 +0300642 reg = TVIDEO_DIP_GCP(crtc->pipe);
643 else
644 return false;
645
646 /* Indicate color depth whenever the sink supports deep color */
647 if (hdmi_sink_is_deep_color(encoder))
648 val |= GCP_COLOR_INDICATION;
649
Ville Syrjälä12aa3292015-05-05 17:06:21 +0300650 /* Enable default_phase whenever the display mode is suitably aligned */
651 if (gcp_default_phase_possible(crtc->config->pipe_bpp,
652 &crtc->config->base.adjusted_mode))
653 val |= GCP_DEFAULT_PHASE_ENABLE;
654
Ville Syrjälä6d674152015-05-05 17:06:20 +0300655 I915_WRITE(reg, val);
656
657 return val != 0;
658}
659
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300660static void ibx_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200661 bool enable,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300662 const struct drm_display_mode *adjusted_mode)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300663{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300664 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
665 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200666 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
667 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200668 i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300669 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200670 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300671
Daniel Vetterafba0182012-06-12 16:36:45 +0200672 assert_hdmi_port_disabled(intel_hdmi);
673
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300674 /* See the big comment in g4x_set_infoframes() */
675 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
676
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200677 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300678 if (!(val & VIDEO_DIP_ENABLE))
679 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300680 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
681 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
682 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300683 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300684 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300685 return;
686 }
687
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300688 if (port != (val & VIDEO_DIP_PORT_MASK)) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300689 WARN(val & VIDEO_DIP_ENABLE,
690 "DIP already enabled on port %c\n",
691 (val & VIDEO_DIP_PORT_MASK) >> 29);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300692 val &= ~VIDEO_DIP_PORT_MASK;
693 val |= port;
694 }
695
Paulo Zanoni822974a2012-05-28 16:42:51 -0300696 val |= VIDEO_DIP_ENABLE;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300697 val &= ~(VIDEO_DIP_ENABLE_AVI |
698 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
699 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300700
Ville Syrjälä6d674152015-05-05 17:06:20 +0300701 if (intel_hdmi_set_gcp_infoframe(encoder))
702 val |= VIDEO_DIP_ENABLE_GCP;
703
Paulo Zanonif278d972012-05-28 16:42:50 -0300704 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300705 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300706
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300707 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
708 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100709 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300710}
711
712static void cpt_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200713 bool enable,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300714 const struct drm_display_mode *adjusted_mode)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300715{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300716 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
717 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
718 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200719 i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300720 u32 val = I915_READ(reg);
721
Daniel Vetterafba0182012-06-12 16:36:45 +0200722 assert_hdmi_port_disabled(intel_hdmi);
723
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300724 /* See the big comment in g4x_set_infoframes() */
725 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
726
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200727 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300728 if (!(val & VIDEO_DIP_ENABLE))
729 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300730 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
731 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
732 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300733 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300734 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300735 return;
736 }
737
Paulo Zanoni822974a2012-05-28 16:42:51 -0300738 /* Set both together, unset both together: see the spec. */
739 val |= VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300740 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300741 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300742
Ville Syrjälä6d674152015-05-05 17:06:20 +0300743 if (intel_hdmi_set_gcp_infoframe(encoder))
744 val |= VIDEO_DIP_ENABLE_GCP;
745
Paulo Zanoni822974a2012-05-28 16:42:51 -0300746 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300747 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300748
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300749 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
750 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100751 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300752}
753
754static void vlv_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200755 bool enable,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300756 const struct drm_display_mode *adjusted_mode)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300757{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300758 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700759 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300760 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
761 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200762 i915_reg_t reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300763 u32 val = I915_READ(reg);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700764 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300765
Daniel Vetterafba0182012-06-12 16:36:45 +0200766 assert_hdmi_port_disabled(intel_hdmi);
767
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300768 /* See the big comment in g4x_set_infoframes() */
769 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
770
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200771 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300772 if (!(val & VIDEO_DIP_ENABLE))
773 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300774 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
775 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
776 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300777 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300778 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300779 return;
780 }
781
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700782 if (port != (val & VIDEO_DIP_PORT_MASK)) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300783 WARN(val & VIDEO_DIP_ENABLE,
784 "DIP already enabled on port %c\n",
785 (val & VIDEO_DIP_PORT_MASK) >> 29);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700786 val &= ~VIDEO_DIP_PORT_MASK;
787 val |= port;
788 }
789
Paulo Zanoni822974a2012-05-28 16:42:51 -0300790 val |= VIDEO_DIP_ENABLE;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300791 val &= ~(VIDEO_DIP_ENABLE_AVI |
792 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
793 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300794
Ville Syrjälä6d674152015-05-05 17:06:20 +0300795 if (intel_hdmi_set_gcp_infoframe(encoder))
796 val |= VIDEO_DIP_ENABLE_GCP;
797
Paulo Zanoni822974a2012-05-28 16:42:51 -0300798 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300799 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300800
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300801 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
802 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100803 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300804}
805
806static void hsw_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200807 bool enable,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300808 const struct drm_display_mode *adjusted_mode)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300809{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300810 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
811 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
812 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200813 i915_reg_t reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config->cpu_transcoder);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300814 u32 val = I915_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300815
Daniel Vetterafba0182012-06-12 16:36:45 +0200816 assert_hdmi_port_disabled(intel_hdmi);
817
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300818 val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_AVI_HSW |
819 VIDEO_DIP_ENABLE_GCP_HSW | VIDEO_DIP_ENABLE_VS_HSW |
820 VIDEO_DIP_ENABLE_GMP_HSW | VIDEO_DIP_ENABLE_SPD_HSW);
821
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200822 if (!enable) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300823 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300824 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300825 return;
826 }
827
Ville Syrjälä6d674152015-05-05 17:06:20 +0300828 if (intel_hdmi_set_gcp_infoframe(encoder))
829 val |= VIDEO_DIP_ENABLE_GCP_HSW;
830
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300831 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300832 POSTING_READ(reg);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300833
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300834 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
835 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100836 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300837}
838
Daniel Vetter4cde8a22014-04-24 23:54:56 +0200839static void intel_hdmi_prepare(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800840{
Daniel Vetterc59423a2013-07-21 21:37:04 +0200841 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800842 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc59423a2013-07-21 21:37:04 +0200843 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
844 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300845 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300846 u32 hdmi_val;
Eric Anholt7d573822009-01-02 13:33:00 -0800847
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300848 hdmi_val = SDVO_ENCODING_HDMI;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +0300849 if (!HAS_PCH_SPLIT(dev) && crtc->config->limited_color_range)
850 hdmi_val |= HDMI_COLOR_RANGE_16_235;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400851 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300852 hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400853 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300854 hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800855
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200856 if (crtc->config->pipe_bpp > 24)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300857 hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700858 else
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300859 hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700860
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200861 if (crtc->config->has_hdmi_sink)
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300862 hdmi_val |= HDMI_MODE_SELECT_HDMI;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800863
Jesse Barnes75770562011-10-12 09:01:58 -0700864 if (HAS_PCH_CPT(dev))
Daniel Vetterc59423a2013-07-21 21:37:04 +0200865 hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
Chon Ming Lee44f37d12014-04-09 13:28:21 +0300866 else if (IS_CHERRYVIEW(dev))
867 hdmi_val |= SDVO_PIPE_SEL_CHV(crtc->pipe);
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300868 else
Daniel Vetterc59423a2013-07-21 21:37:04 +0200869 hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
Eric Anholt7d573822009-01-02 13:33:00 -0800870
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300871 I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
872 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800873}
874
Daniel Vetter85234cd2012-07-02 13:27:29 +0200875static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
876 enum pipe *pipe)
Eric Anholt7d573822009-01-02 13:33:00 -0800877{
Daniel Vetter85234cd2012-07-02 13:27:29 +0200878 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800879 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200880 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Imre Deak6d129be2014-03-05 16:20:54 +0200881 enum intel_display_power_domain power_domain;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200882 u32 tmp;
Imre Deak5b092172016-02-12 18:55:20 +0200883 bool ret;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200884
Imre Deak6d129be2014-03-05 16:20:54 +0200885 power_domain = intel_display_port_power_domain(encoder);
Imre Deak5b092172016-02-12 18:55:20 +0200886 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200887 return false;
888
Imre Deak5b092172016-02-12 18:55:20 +0200889 ret = false;
890
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300891 tmp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200892
893 if (!(tmp & SDVO_ENABLE))
Imre Deak5b092172016-02-12 18:55:20 +0200894 goto out;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200895
896 if (HAS_PCH_CPT(dev))
897 *pipe = PORT_TO_PIPE_CPT(tmp);
Ville Syrjälä71485e02014-04-09 13:28:55 +0300898 else if (IS_CHERRYVIEW(dev))
899 *pipe = SDVO_PORT_TO_PIPE_CHV(tmp);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200900 else
901 *pipe = PORT_TO_PIPE(tmp);
902
Imre Deak5b092172016-02-12 18:55:20 +0200903 ret = true;
904
905out:
906 intel_display_power_put(dev_priv, power_domain);
907
908 return ret;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200909}
910
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700911static void intel_hdmi_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200912 struct intel_crtc_state *pipe_config)
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700913{
914 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300915 struct drm_device *dev = encoder->base.dev;
916 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700917 u32 tmp, flags = 0;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300918 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700919
920 tmp = I915_READ(intel_hdmi->hdmi_reg);
921
922 if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
923 flags |= DRM_MODE_FLAG_PHSYNC;
924 else
925 flags |= DRM_MODE_FLAG_NHSYNC;
926
927 if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
928 flags |= DRM_MODE_FLAG_PVSYNC;
929 else
930 flags |= DRM_MODE_FLAG_NVSYNC;
931
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200932 if (tmp & HDMI_MODE_SELECT_HDMI)
933 pipe_config->has_hdmi_sink = true;
934
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200935 if (intel_hdmi->infoframe_enabled(&encoder->base, pipe_config))
Jesse Barnese43823e2014-11-05 14:26:08 -0800936 pipe_config->has_infoframe = true;
937
Jani Nikulac84db772014-09-17 15:34:58 +0300938 if (tmp & SDVO_AUDIO_ENABLE)
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200939 pipe_config->has_audio = true;
940
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300941 if (!HAS_PCH_SPLIT(dev) &&
942 tmp & HDMI_COLOR_RANGE_16_235)
943 pipe_config->limited_color_range = true;
944
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200945 pipe_config->base.adjusted_mode.flags |= flags;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300946
947 if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
948 dotclock = pipe_config->port_clock * 2 / 3;
949 else
950 dotclock = pipe_config->port_clock;
951
Ville Syrjäläbe69a132015-05-05 17:06:26 +0300952 if (pipe_config->pixel_multiplier)
953 dotclock /= pipe_config->pixel_multiplier;
954
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200955 pipe_config->base.adjusted_mode.crtc_clock = dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700956}
957
Ville Syrjäläd1b15892015-05-05 17:06:19 +0300958static void intel_enable_hdmi_audio(struct intel_encoder *encoder)
959{
960 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
961
962 WARN_ON(!crtc->config->has_hdmi_sink);
963 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
964 pipe_name(crtc->pipe));
965 intel_audio_codec_enable(encoder);
966}
967
Ville Syrjäläbf868c72015-05-05 17:06:23 +0300968static void g4x_enable_hdmi(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800969{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200970 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800971 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläbf868c72015-05-05 17:06:23 +0300972 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200973 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Eric Anholt7d573822009-01-02 13:33:00 -0800974 u32 temp;
975
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300976 temp = I915_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000977
Ville Syrjäläbf868c72015-05-05 17:06:23 +0300978 temp |= SDVO_ENABLE;
979 if (crtc->config->has_audio)
980 temp |= SDVO_AUDIO_ENABLE;
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200981
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300982 I915_WRITE(intel_hdmi->hdmi_reg, temp);
983 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200984
Ville Syrjäläbf868c72015-05-05 17:06:23 +0300985 if (crtc->config->has_audio)
986 intel_enable_hdmi_audio(encoder);
987}
988
989static void ibx_enable_hdmi(struct intel_encoder *encoder)
990{
991 struct drm_device *dev = encoder->base.dev;
992 struct drm_i915_private *dev_priv = dev->dev_private;
993 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
994 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
995 u32 temp;
996
997 temp = I915_READ(intel_hdmi->hdmi_reg);
998
999 temp |= SDVO_ENABLE;
1000 if (crtc->config->has_audio)
1001 temp |= SDVO_AUDIO_ENABLE;
1002
1003 /*
1004 * HW workaround, need to write this twice for issue
1005 * that may result in first write getting masked.
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001006 */
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001007 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1008 POSTING_READ(intel_hdmi->hdmi_reg);
1009 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1010 POSTING_READ(intel_hdmi->hdmi_reg);
1011
1012 /*
1013 * HW workaround, need to toggle enable bit off and on
1014 * for 12bpc with pixel repeat.
1015 *
1016 * FIXME: BSpec says this should be done at the end of
1017 * of the modeset sequence, so not sure if this isn't too soon.
1018 */
1019 if (crtc->config->pipe_bpp > 24 &&
1020 crtc->config->pixel_multiplier > 1) {
1021 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
1022 POSTING_READ(intel_hdmi->hdmi_reg);
1023
1024 /*
1025 * HW workaround, need to write this twice for issue
1026 * that may result in first write getting masked.
1027 */
1028 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1029 POSTING_READ(intel_hdmi->hdmi_reg);
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001030 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1031 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001032 }
Jani Nikulac1dec792014-10-27 16:26:56 +02001033
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001034 if (crtc->config->has_audio)
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001035 intel_enable_hdmi_audio(encoder);
1036}
1037
1038static void cpt_enable_hdmi(struct intel_encoder *encoder)
1039{
1040 struct drm_device *dev = encoder->base.dev;
1041 struct drm_i915_private *dev_priv = dev->dev_private;
1042 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1043 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1044 enum pipe pipe = crtc->pipe;
1045 u32 temp;
1046
1047 temp = I915_READ(intel_hdmi->hdmi_reg);
1048
1049 temp |= SDVO_ENABLE;
1050 if (crtc->config->has_audio)
1051 temp |= SDVO_AUDIO_ENABLE;
1052
1053 /*
1054 * WaEnableHDMI8bpcBefore12bpc:snb,ivb
1055 *
1056 * The procedure for 12bpc is as follows:
1057 * 1. disable HDMI clock gating
1058 * 2. enable HDMI with 8bpc
1059 * 3. enable HDMI with 12bpc
1060 * 4. enable HDMI clock gating
1061 */
1062
1063 if (crtc->config->pipe_bpp > 24) {
1064 I915_WRITE(TRANS_CHICKEN1(pipe),
1065 I915_READ(TRANS_CHICKEN1(pipe)) |
1066 TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE);
1067
1068 temp &= ~SDVO_COLOR_FORMAT_MASK;
1069 temp |= SDVO_COLOR_FORMAT_8bpc;
Jani Nikulac1dec792014-10-27 16:26:56 +02001070 }
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001071
1072 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1073 POSTING_READ(intel_hdmi->hdmi_reg);
1074
1075 if (crtc->config->pipe_bpp > 24) {
1076 temp &= ~SDVO_COLOR_FORMAT_MASK;
1077 temp |= HDMI_COLOR_FORMAT_12bpc;
1078
1079 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1080 POSTING_READ(intel_hdmi->hdmi_reg);
1081
1082 I915_WRITE(TRANS_CHICKEN1(pipe),
1083 I915_READ(TRANS_CHICKEN1(pipe)) &
1084 ~TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE);
1085 }
1086
1087 if (crtc->config->has_audio)
1088 intel_enable_hdmi_audio(encoder);
Jani Nikulab76cf762013-07-30 12:20:31 +03001089}
Jesse Barnes89b667f2013-04-18 14:51:36 -07001090
Jani Nikulab76cf762013-07-30 12:20:31 +03001091static void vlv_enable_hdmi(struct intel_encoder *encoder)
1092{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001093}
1094
1095static void intel_disable_hdmi(struct intel_encoder *encoder)
1096{
1097 struct drm_device *dev = encoder->base.dev;
1098 struct drm_i915_private *dev_priv = dev->dev_private;
1099 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Jani Nikula495a5bb2014-10-27 16:26:55 +02001100 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001101 u32 temp;
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001102
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001103 temp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001104
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001105 temp &= ~(SDVO_ENABLE | SDVO_AUDIO_ENABLE);
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001106 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1107 POSTING_READ(intel_hdmi->hdmi_reg);
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001108
1109 /*
1110 * HW workaround for IBX, we need to move the port
1111 * to transcoder A after disabling it to allow the
1112 * matching DP port to be enabled on transcoder A.
1113 */
1114 if (HAS_PCH_IBX(dev) && crtc->pipe == PIPE_B) {
Ville Syrjälä0c241d52015-10-30 19:23:22 +02001115 /*
1116 * We get CPU/PCH FIFO underruns on the other pipe when
1117 * doing the workaround. Sweep them under the rug.
1118 */
1119 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, false);
1120 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, false);
1121
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001122 temp &= ~SDVO_PIPE_B_SELECT;
1123 temp |= SDVO_ENABLE;
1124 /*
1125 * HW workaround, need to write this twice for issue
1126 * that may result in first write getting masked.
1127 */
1128 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1129 POSTING_READ(intel_hdmi->hdmi_reg);
1130 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1131 POSTING_READ(intel_hdmi->hdmi_reg);
1132
1133 temp &= ~SDVO_ENABLE;
1134 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1135 POSTING_READ(intel_hdmi->hdmi_reg);
Ville Syrjälä0c241d52015-10-30 19:23:22 +02001136
1137 intel_wait_for_vblank_if_active(dev_priv->dev, PIPE_A);
1138 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, true);
1139 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, true);
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001140 }
Ville Syrjälä6d674152015-05-05 17:06:20 +03001141
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +03001142 intel_hdmi->set_infoframes(&encoder->base, false, NULL);
Eric Anholt7d573822009-01-02 13:33:00 -08001143}
1144
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03001145static void g4x_disable_hdmi(struct intel_encoder *encoder)
1146{
1147 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1148
1149 if (crtc->config->has_audio)
1150 intel_audio_codec_disable(encoder);
1151
1152 intel_disable_hdmi(encoder);
1153}
1154
1155static void pch_disable_hdmi(struct intel_encoder *encoder)
1156{
1157 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1158
1159 if (crtc->config->has_audio)
1160 intel_audio_codec_disable(encoder);
1161}
1162
1163static void pch_post_disable_hdmi(struct intel_encoder *encoder)
1164{
1165 intel_disable_hdmi(encoder);
1166}
1167
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001168static int hdmi_port_clock_limit(struct intel_hdmi *hdmi, bool respect_dvi_limit)
Daniel Vetter7d148ef2013-07-22 18:02:39 +02001169{
1170 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
1171
Ville Syrjälä40478452014-03-27 11:08:45 +02001172 if ((respect_dvi_limit && !hdmi->has_hdmi_sink) || IS_G4X(dev))
Daniel Vetter7d148ef2013-07-22 18:02:39 +02001173 return 165000;
Damien Lespiaue3c33572013-11-02 21:07:51 -07001174 else if (IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8)
Daniel Vetter7d148ef2013-07-22 18:02:39 +02001175 return 300000;
1176 else
1177 return 225000;
1178}
1179
Damien Lespiauc19de8e2013-11-28 15:29:18 +00001180static enum drm_mode_status
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001181hdmi_port_clock_valid(struct intel_hdmi *hdmi,
1182 int clock, bool respect_dvi_limit)
1183{
1184 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
1185
1186 if (clock < 25000)
1187 return MODE_CLOCK_LOW;
1188 if (clock > hdmi_port_clock_limit(hdmi, respect_dvi_limit))
1189 return MODE_CLOCK_HIGH;
1190
Ville Syrjälä5e6ccc02015-07-06 14:44:11 +03001191 /* BXT DPLL can't generate 223-240 MHz */
1192 if (IS_BROXTON(dev) && clock > 223333 && clock < 240000)
1193 return MODE_CLOCK_RANGE;
1194
1195 /* CHV DPLL can't generate 216-240 MHz */
1196 if (IS_CHERRYVIEW(dev) && clock > 216000 && clock < 240000)
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001197 return MODE_CLOCK_RANGE;
1198
1199 return MODE_OK;
1200}
1201
1202static enum drm_mode_status
Damien Lespiauc19de8e2013-11-28 15:29:18 +00001203intel_hdmi_mode_valid(struct drm_connector *connector,
1204 struct drm_display_mode *mode)
Eric Anholt7d573822009-01-02 13:33:00 -08001205{
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001206 struct intel_hdmi *hdmi = intel_attached_hdmi(connector);
1207 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
1208 enum drm_mode_status status;
1209 int clock;
Mika Kahola587bf492016-02-02 15:16:39 +02001210 int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
Eric Anholt7d573822009-01-02 13:33:00 -08001211
1212 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
1213 return MODE_NO_DBLESCAN;
1214
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001215 clock = mode->clock;
Mika Kahola587bf492016-02-02 15:16:39 +02001216
1217 if ((mode->flags & DRM_MODE_FLAG_3D_MASK) == DRM_MODE_FLAG_3D_FRAME_PACKING)
1218 clock *= 2;
1219
1220 if (clock > max_dotclk)
1221 return MODE_CLOCK_HIGH;
1222
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001223 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
1224 clock *= 2;
1225
1226 /* check if we can do 8bpc */
1227 status = hdmi_port_clock_valid(hdmi, clock, true);
1228
1229 /* if we can't do 8bpc we may still be able to do 12bpc */
1230 if (!HAS_GMCH_DISPLAY(dev) && status != MODE_OK)
1231 status = hdmi_port_clock_valid(hdmi, clock * 3 / 2, true);
1232
1233 return status;
Eric Anholt7d573822009-01-02 13:33:00 -08001234}
1235
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001236static bool hdmi_12bpc_possible(struct intel_crtc_state *crtc_state)
Ville Syrjälä71800632014-03-03 16:15:29 +02001237{
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001238 struct drm_device *dev = crtc_state->base.crtc->dev;
1239 struct drm_atomic_state *state;
Ville Syrjälä71800632014-03-03 16:15:29 +02001240 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced22015-04-21 17:12:59 +03001241 struct drm_connector *connector;
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001242 struct drm_connector_state *connector_state;
Ville Syrjälä71800632014-03-03 16:15:29 +02001243 int count = 0, count_hdmi = 0;
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001244 int i;
Ville Syrjälä71800632014-03-03 16:15:29 +02001245
Sonika Jindalf227ae92014-07-21 15:23:45 +05301246 if (HAS_GMCH_DISPLAY(dev))
Ville Syrjälä71800632014-03-03 16:15:29 +02001247 return false;
1248
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001249 state = crtc_state->base.state;
1250
Ander Conselvan de Oliveirada3ced22015-04-21 17:12:59 +03001251 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001252 if (connector_state->crtc != crtc_state->base.crtc)
1253 continue;
1254
1255 encoder = to_intel_encoder(connector_state->best_encoder);
1256
Ville Syrjälä71800632014-03-03 16:15:29 +02001257 count_hdmi += encoder->type == INTEL_OUTPUT_HDMI;
1258 count++;
1259 }
1260
1261 /*
1262 * HDMI 12bpc affects the clocks, so it's only possible
1263 * when not cloning with other encoder types.
1264 */
1265 return count_hdmi > 0 && count_hdmi == count;
1266}
1267
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001268bool intel_hdmi_compute_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001269 struct intel_crtc_state *pipe_config)
Eric Anholt7d573822009-01-02 13:33:00 -08001270{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001271 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1272 struct drm_device *dev = encoder->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02001273 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001274 int clock_8bpc = pipe_config->base.adjusted_mode.crtc_clock;
1275 int clock_12bpc = clock_8bpc * 3 / 2;
Daniel Vettere29c22c2013-02-21 00:00:16 +01001276 int desired_bpp;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001277
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001278 pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink;
1279
Jesse Barnese43823e2014-11-05 14:26:08 -08001280 if (pipe_config->has_hdmi_sink)
1281 pipe_config->has_infoframe = true;
1282
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001283 if (intel_hdmi->color_range_auto) {
1284 /* See CEA-861-E - 5.1 Default Encoding Parameters */
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001285 pipe_config->limited_color_range =
1286 pipe_config->has_hdmi_sink &&
1287 drm_match_cea_mode(adjusted_mode) > 1;
1288 } else {
1289 pipe_config->limited_color_range =
1290 intel_hdmi->limited_color_range;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001291 }
1292
Clint Taylor697c4072014-09-02 17:03:36 -07001293 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK) {
1294 pipe_config->pixel_multiplier = 2;
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001295 clock_8bpc *= 2;
Ville Syrjälä3320e372015-05-05 17:06:27 +03001296 clock_12bpc *= 2;
Clint Taylor697c4072014-09-02 17:03:36 -07001297 }
1298
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001299 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
1300 pipe_config->has_pch_encoder = true;
1301
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001302 if (pipe_config->has_hdmi_sink && intel_hdmi->has_audio)
1303 pipe_config->has_audio = true;
1304
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001305 /*
1306 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
1307 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
Daniel Vetter325b9d02013-04-19 11:24:33 +02001308 * outputs. We also need to check that the higher clock still fits
1309 * within limits.
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001310 */
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001311 if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink &&
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001312 hdmi_port_clock_valid(intel_hdmi, clock_12bpc, false) == MODE_OK &&
Ville Syrjälä7a0baa62015-06-30 15:33:54 +03001313 hdmi_12bpc_possible(pipe_config)) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001314 DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
1315 desired_bpp = 12*3;
Daniel Vetter325b9d02013-04-19 11:24:33 +02001316
1317 /* Need to adjust the port link by 1.5x for 12bpc. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02001318 pipe_config->port_clock = clock_12bpc;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001319 } else {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001320 DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
1321 desired_bpp = 8*3;
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001322
1323 pipe_config->port_clock = clock_8bpc;
Daniel Vettere29c22c2013-02-21 00:00:16 +01001324 }
1325
1326 if (!pipe_config->bw_constrained) {
1327 DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
1328 pipe_config->pipe_bpp = desired_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001329 }
1330
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001331 if (hdmi_port_clock_valid(intel_hdmi, pipe_config->port_clock,
1332 false) != MODE_OK) {
1333 DRM_DEBUG_KMS("unsupported HDMI clock, rejecting mode\n");
Daniel Vetter325b9d02013-04-19 11:24:33 +02001334 return false;
1335 }
1336
Ville Syrjälä28b468a2015-09-08 13:40:48 +03001337 /* Set user selected PAR to incoming mode's member */
1338 adjusted_mode->picture_aspect_ratio = intel_hdmi->aspect_ratio;
1339
Eric Anholt7d573822009-01-02 13:33:00 -08001340 return true;
1341}
1342
Chris Wilson953ece6972014-09-02 20:04:01 +01001343static void
1344intel_hdmi_unset_edid(struct drm_connector *connector)
Ma Ling9dff6af2009-04-02 13:13:26 +08001345{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001346 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Imre Deak671dedd2014-03-05 16:20:53 +02001347
Chris Wilsonea5b2132010-08-04 13:50:23 +01001348 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +08001349 intel_hdmi->has_audio = false;
Ville Syrjäläabedc072013-01-17 16:31:31 +02001350 intel_hdmi->rgb_quant_range_selectable = false;
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +08001351
Chris Wilson953ece6972014-09-02 20:04:01 +01001352 kfree(to_intel_connector(connector)->detect_edid);
1353 to_intel_connector(connector)->detect_edid = NULL;
Ma Ling9dff6af2009-04-02 13:13:26 +08001354}
1355
Chris Wilson953ece6972014-09-02 20:04:01 +01001356static bool
Sonika Jindal237ed862015-09-15 09:44:20 +05301357intel_hdmi_set_edid(struct drm_connector *connector, bool force)
Eric Anholt7d573822009-01-02 13:33:00 -08001358{
Chris Wilson953ece6972014-09-02 20:04:01 +01001359 struct drm_i915_private *dev_priv = to_i915(connector->dev);
1360 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Sonika Jindal237ed862015-09-15 09:44:20 +05301361 struct edid *edid = NULL;
Chris Wilson953ece6972014-09-02 20:04:01 +01001362 bool connected = false;
Eric Anholt7d573822009-01-02 13:33:00 -08001363
Imre Deak69172f22015-11-19 20:55:00 +02001364 if (force) {
1365 intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);
Imre Deak671dedd2014-03-05 16:20:53 +02001366
Sonika Jindal237ed862015-09-15 09:44:20 +05301367 edid = drm_get_edid(connector,
1368 intel_gmbus_get_adapter(dev_priv,
1369 intel_hdmi->ddc_bus));
Imre Deak671dedd2014-03-05 16:20:53 +02001370
Imre Deak69172f22015-11-19 20:55:00 +02001371 intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS);
1372 }
Imre Deak671dedd2014-03-05 16:20:53 +02001373
Chris Wilson953ece6972014-09-02 20:04:01 +01001374 to_intel_connector(connector)->detect_edid = edid;
1375 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL) {
1376 intel_hdmi->rgb_quant_range_selectable =
1377 drm_rgb_quant_range_selectable(edid);
1378
1379 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
1380 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
1381 intel_hdmi->has_audio =
1382 intel_hdmi->force_audio == HDMI_AUDIO_ON;
1383
1384 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
1385 intel_hdmi->has_hdmi_sink =
1386 drm_detect_hdmi_monitor(edid);
1387
1388 connected = true;
1389 }
1390
1391 return connected;
1392}
1393
Daniel Vetter8166fce2015-10-08 21:50:57 +02001394static enum drm_connector_status
1395intel_hdmi_detect(struct drm_connector *connector, bool force)
Chris Wilson953ece6972014-09-02 20:04:01 +01001396{
Daniel Vetter8166fce2015-10-08 21:50:57 +02001397 enum drm_connector_status status;
1398 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1399 struct drm_i915_private *dev_priv = to_i915(connector->dev);
Sonika Jindal237ed862015-09-15 09:44:20 +05301400 bool live_status = false;
Gary Wang61fb3982015-12-15 12:40:30 +08001401 unsigned int try;
Chris Wilson953ece6972014-09-02 20:04:01 +01001402
Daniel Vetter8166fce2015-10-08 21:50:57 +02001403 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1404 connector->base.id, connector->name);
1405
Imre Deak29bb94b2015-11-19 20:55:01 +02001406 intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);
1407
Gary Wangf8d03ea2015-12-23 16:11:35 +08001408 for (try = 0; !live_status && try < 9; try++) {
Gary Wang61fb3982015-12-15 12:40:30 +08001409 if (try)
1410 msleep(10);
Sonika Jindal237ed862015-09-15 09:44:20 +05301411 live_status = intel_digital_port_connected(dev_priv,
1412 hdmi_to_dig_port(intel_hdmi));
Sonika Jindal237ed862015-09-15 09:44:20 +05301413 }
1414
Shashank Sharma4f4a8182016-04-21 16:48:32 +05301415 if (!live_status) {
1416 DRM_DEBUG_KMS("HDMI live status down\n");
1417 /*
1418 * Live status register is not reliable on all intel platforms.
1419 * So consider live_status only for certain platforms, for
1420 * others, read EDID to determine presence of sink.
1421 */
1422 if (INTEL_INFO(dev_priv)->gen < 7 || IS_IVYBRIDGE(dev_priv))
1423 live_status = true;
1424 }
Sonika Jindal237ed862015-09-15 09:44:20 +05301425
Daniel Vetter8166fce2015-10-08 21:50:57 +02001426 intel_hdmi_unset_edid(connector);
Chris Wilson953ece6972014-09-02 20:04:01 +01001427
Daniel Vetter8166fce2015-10-08 21:50:57 +02001428 if (intel_hdmi_set_edid(connector, live_status)) {
Chris Wilson953ece6972014-09-02 20:04:01 +01001429 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1430
1431 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1432 status = connector_status_connected;
Daniel Vetter8166fce2015-10-08 21:50:57 +02001433 } else
Chris Wilson953ece6972014-09-02 20:04:01 +01001434 status = connector_status_disconnected;
1435
Imre Deak29bb94b2015-11-19 20:55:01 +02001436 intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS);
1437
Chris Wilson953ece6972014-09-02 20:04:01 +01001438 return status;
1439}
1440
1441static void
1442intel_hdmi_force(struct drm_connector *connector)
1443{
1444 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1445
1446 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1447 connector->base.id, connector->name);
1448
1449 intel_hdmi_unset_edid(connector);
1450
1451 if (connector->status != connector_status_connected)
1452 return;
1453
Sonika Jindal237ed862015-09-15 09:44:20 +05301454 intel_hdmi_set_edid(connector, true);
Chris Wilson953ece6972014-09-02 20:04:01 +01001455 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1456}
1457
1458static int intel_hdmi_get_modes(struct drm_connector *connector)
1459{
1460 struct edid *edid;
1461
1462 edid = to_intel_connector(connector)->detect_edid;
1463 if (edid == NULL)
1464 return 0;
1465
1466 return intel_connector_update_modes(connector, edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001467}
1468
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001469static bool
1470intel_hdmi_detect_audio(struct drm_connector *connector)
1471{
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001472 bool has_audio = false;
Chris Wilson953ece6972014-09-02 20:04:01 +01001473 struct edid *edid;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001474
Chris Wilson953ece6972014-09-02 20:04:01 +01001475 edid = to_intel_connector(connector)->detect_edid;
1476 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL)
1477 has_audio = drm_detect_monitor_audio(edid);
Imre Deak671dedd2014-03-05 16:20:53 +02001478
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001479 return has_audio;
1480}
1481
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001482static int
1483intel_hdmi_set_property(struct drm_connector *connector,
Paulo Zanonied517fb2012-05-14 17:12:50 -03001484 struct drm_property *property,
1485 uint64_t val)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001486{
1487 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001488 struct intel_digital_port *intel_dig_port =
1489 hdmi_to_dig_port(intel_hdmi);
Chris Wilsone953fd72011-02-21 22:23:52 +00001490 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001491 int ret;
1492
Rob Clark662595d2012-10-11 20:36:04 -05001493 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001494 if (ret)
1495 return ret;
1496
Chris Wilson3f43c482011-05-12 22:17:24 +01001497 if (property == dev_priv->force_audio_property) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001498 enum hdmi_force_audio i = val;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001499 bool has_audio;
1500
1501 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001502 return 0;
1503
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001504 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001505
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001506 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001507 has_audio = intel_hdmi_detect_audio(connector);
1508 else
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001509 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001510
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001511 if (i == HDMI_AUDIO_OFF_DVI)
1512 intel_hdmi->has_hdmi_sink = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001513
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001514 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001515 goto done;
1516 }
1517
Chris Wilsone953fd72011-02-21 22:23:52 +00001518 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02001519 bool old_auto = intel_hdmi->color_range_auto;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001520 bool old_range = intel_hdmi->limited_color_range;
Daniel Vetterae4edb82013-04-22 17:07:23 +02001521
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001522 switch (val) {
1523 case INTEL_BROADCAST_RGB_AUTO:
1524 intel_hdmi->color_range_auto = true;
1525 break;
1526 case INTEL_BROADCAST_RGB_FULL:
1527 intel_hdmi->color_range_auto = false;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001528 intel_hdmi->limited_color_range = false;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001529 break;
1530 case INTEL_BROADCAST_RGB_LIMITED:
1531 intel_hdmi->color_range_auto = false;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001532 intel_hdmi->limited_color_range = true;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001533 break;
1534 default:
1535 return -EINVAL;
1536 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02001537
1538 if (old_auto == intel_hdmi->color_range_auto &&
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001539 old_range == intel_hdmi->limited_color_range)
Daniel Vetterae4edb82013-04-22 17:07:23 +02001540 return 0;
1541
Chris Wilsone953fd72011-02-21 22:23:52 +00001542 goto done;
1543 }
1544
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301545 if (property == connector->dev->mode_config.aspect_ratio_property) {
1546 switch (val) {
1547 case DRM_MODE_PICTURE_ASPECT_NONE:
1548 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
1549 break;
1550 case DRM_MODE_PICTURE_ASPECT_4_3:
1551 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_4_3;
1552 break;
1553 case DRM_MODE_PICTURE_ASPECT_16_9:
1554 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_16_9;
1555 break;
1556 default:
1557 return -EINVAL;
1558 }
1559 goto done;
1560 }
1561
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001562 return -EINVAL;
1563
1564done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00001565 if (intel_dig_port->base.base.crtc)
1566 intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001567
1568 return 0;
1569}
1570
Jesse Barnes13732ba2014-04-05 11:51:35 -07001571static void intel_hdmi_pre_enable(struct intel_encoder *encoder)
1572{
1573 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1574 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03001575 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Jesse Barnes13732ba2014-04-05 11:51:35 -07001576
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001577 intel_hdmi_prepare(encoder);
1578
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001579 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001580 intel_crtc->config->has_hdmi_sink,
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001581 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001582}
1583
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001584static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001585{
1586 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001587 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001588 struct drm_device *dev = encoder->base.dev;
1589 struct drm_i915_private *dev_priv = dev->dev_private;
1590 struct intel_crtc *intel_crtc =
1591 to_intel_crtc(encoder->base.crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03001592 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001593 enum dpio_channel port = vlv_dport_to_channel(dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001594 int pipe = intel_crtc->pipe;
1595 u32 val;
1596
Jesse Barnes89b667f2013-04-18 14:51:36 -07001597 /* Enable clock channels for this port */
Ville Syrjäläa5805162015-05-26 20:42:30 +03001598 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001599 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001600 val = 0;
1601 if (pipe)
1602 val |= (1<<21);
1603 else
1604 val &= ~(1<<21);
1605 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001606 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001607
1608 /* HDMI 1.0V-2dB */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001609 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0);
1610 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), 0x2b245f5f);
1611 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port), 0x5578b83a);
1612 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0c782040);
1613 vlv_dpio_write(dev_priv, pipe, VLV_TX3_DW4(port), 0x2b247878);
1614 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
1615 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1616 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001617
1618 /* Program lane clock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001619 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
1620 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001621 mutex_unlock(&dev_priv->sb_lock);
Jani Nikulab76cf762013-07-30 12:20:31 +03001622
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001623 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001624 intel_crtc->config->has_hdmi_sink,
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001625 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001626
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001627 g4x_enable_hdmi(encoder);
Jani Nikulab76cf762013-07-30 12:20:31 +03001628
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001629 vlv_wait_port_ready(dev_priv, dport, 0x0);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001630}
1631
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001632static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001633{
1634 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1635 struct drm_device *dev = encoder->base.dev;
1636 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001637 struct intel_crtc *intel_crtc =
1638 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001639 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001640 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001641
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001642 intel_hdmi_prepare(encoder);
1643
Jesse Barnes89b667f2013-04-18 14:51:36 -07001644 /* Program Tx lane resets to default */
Ville Syrjäläa5805162015-05-26 20:42:30 +03001645 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001646 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001647 DPIO_PCS_TX_LANE2_RESET |
1648 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001649 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001650 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1651 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1652 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1653 DPIO_PCS_CLK_SOFT_RESET);
1654
1655 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001656 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
1657 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
1658 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001659
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001660 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1661 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001662 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001663}
1664
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03001665static void chv_data_lane_soft_reset(struct intel_encoder *encoder,
1666 bool reset)
1667{
1668 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1669 enum dpio_channel ch = vlv_dport_to_channel(enc_to_dig_port(&encoder->base));
1670 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1671 enum pipe pipe = crtc->pipe;
1672 uint32_t val;
1673
1674 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
1675 if (reset)
1676 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1677 else
1678 val |= DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET;
1679 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1680
1681 if (crtc->config->lane_count > 2) {
1682 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1683 if (reset)
1684 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1685 else
1686 val |= DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET;
1687 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
1688 }
1689
1690 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
1691 val |= CHV_PCS_REQ_SOFTRESET_EN;
1692 if (reset)
1693 val &= ~DPIO_PCS_CLK_SOFT_RESET;
1694 else
1695 val |= DPIO_PCS_CLK_SOFT_RESET;
1696 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
1697
1698 if (crtc->config->lane_count > 2) {
1699 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1700 val |= CHV_PCS_REQ_SOFTRESET_EN;
1701 if (reset)
1702 val &= ~DPIO_PCS_CLK_SOFT_RESET;
1703 else
1704 val |= DPIO_PCS_CLK_SOFT_RESET;
1705 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1706 }
1707}
1708
Ville Syrjälä9197c882014-04-09 13:29:05 +03001709static void chv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
1710{
1711 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1712 struct drm_device *dev = encoder->base.dev;
1713 struct drm_i915_private *dev_priv = dev->dev_private;
1714 struct intel_crtc *intel_crtc =
1715 to_intel_crtc(encoder->base.crtc);
1716 enum dpio_channel ch = vlv_dport_to_channel(dport);
1717 enum pipe pipe = intel_crtc->pipe;
1718 u32 val;
1719
Ville Syrjälä625695f2014-06-28 02:04:02 +03001720 intel_hdmi_prepare(encoder);
1721
Ville Syrjäläb0b33842015-07-08 23:45:55 +03001722 /*
1723 * Must trick the second common lane into life.
1724 * Otherwise we can't even access the PLL.
1725 */
1726 if (ch == DPIO_CH0 && pipe == PIPE_B)
1727 dport->release_cl2_override =
1728 !chv_phy_powergate_ch(dev_priv, DPIO_PHY0, DPIO_CH1, true);
1729
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001730 chv_phy_powergate_lanes(encoder, true, 0x0);
1731
Ville Syrjäläa5805162015-05-26 20:42:30 +03001732 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä9197c882014-04-09 13:29:05 +03001733
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03001734 /* Assert data lane reset */
1735 chv_data_lane_soft_reset(encoder, true);
1736
Ville Syrjäläb9e5ac32014-05-27 16:30:18 +03001737 /* program left/right clock distribution */
1738 if (pipe != PIPE_B) {
1739 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1740 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1741 if (ch == DPIO_CH0)
1742 val |= CHV_BUFLEFTENA1_FORCE;
1743 if (ch == DPIO_CH1)
1744 val |= CHV_BUFRIGHTENA1_FORCE;
1745 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1746 } else {
1747 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1748 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1749 if (ch == DPIO_CH0)
1750 val |= CHV_BUFLEFTENA2_FORCE;
1751 if (ch == DPIO_CH1)
1752 val |= CHV_BUFRIGHTENA2_FORCE;
1753 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1754 }
1755
Ville Syrjälä9197c882014-04-09 13:29:05 +03001756 /* program clock channel usage */
1757 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
1758 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1759 if (pipe != PIPE_B)
1760 val &= ~CHV_PCS_USEDCLKCHANNEL;
1761 else
1762 val |= CHV_PCS_USEDCLKCHANNEL;
1763 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
1764
1765 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
1766 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1767 if (pipe != PIPE_B)
1768 val &= ~CHV_PCS_USEDCLKCHANNEL;
1769 else
1770 val |= CHV_PCS_USEDCLKCHANNEL;
1771 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
1772
1773 /*
1774 * This a a bit weird since generally CL
1775 * matches the pipe, but here we need to
1776 * pick the CL based on the port.
1777 */
1778 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
1779 if (pipe != PIPE_B)
1780 val &= ~CHV_CMN_USEDCLKCHANNEL;
1781 else
1782 val |= CHV_CMN_USEDCLKCHANNEL;
1783 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
1784
Ville Syrjäläa5805162015-05-26 20:42:30 +03001785 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä9197c882014-04-09 13:29:05 +03001786}
1787
Ville Syrjäläd6db9952015-07-08 23:45:49 +03001788static void chv_hdmi_post_pll_disable(struct intel_encoder *encoder)
1789{
1790 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1791 enum pipe pipe = to_intel_crtc(encoder->base.crtc)->pipe;
1792 u32 val;
1793
1794 mutex_lock(&dev_priv->sb_lock);
1795
1796 /* disable left/right clock distribution */
1797 if (pipe != PIPE_B) {
1798 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1799 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1800 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1801 } else {
1802 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1803 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1804 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1805 }
1806
1807 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001808
Ville Syrjäläb0b33842015-07-08 23:45:55 +03001809 /*
1810 * Leave the power down bit cleared for at least one
1811 * lane so that chv_powergate_phy_ch() will power
1812 * on something when the channel is otherwise unused.
1813 * When the port is off and the override is removed
1814 * the lanes power down anyway, so otherwise it doesn't
1815 * really matter what the state of power down bits is
1816 * after this.
1817 */
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001818 chv_phy_powergate_lanes(encoder, false, 0x0);
Ville Syrjäläd6db9952015-07-08 23:45:49 +03001819}
1820
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001821static void vlv_hdmi_post_disable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001822{
1823 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1824 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001825 struct intel_crtc *intel_crtc =
1826 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001827 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001828 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001829
1830 /* Reset lanes to avoid HDMI flicker (VLV w/a) */
Ville Syrjäläa5805162015-05-26 20:42:30 +03001831 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001832 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), 0x00000000);
1833 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port), 0x00e00060);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001834 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001835}
1836
Ville Syrjälä580d3812014-04-09 13:29:00 +03001837static void chv_hdmi_post_disable(struct intel_encoder *encoder)
1838{
Ville Syrjälä580d3812014-04-09 13:29:00 +03001839 struct drm_device *dev = encoder->base.dev;
1840 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä580d3812014-04-09 13:29:00 +03001841
Ville Syrjäläa5805162015-05-26 20:42:30 +03001842 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001843
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03001844 /* Assert data lane reset */
1845 chv_data_lane_soft_reset(encoder, true);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001846
Ville Syrjäläa5805162015-05-26 20:42:30 +03001847 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001848}
1849
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001850static void chv_hdmi_pre_enable(struct intel_encoder *encoder)
1851{
1852 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Clint Taylorb4eb1562014-11-21 11:13:02 -08001853 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001854 struct drm_device *dev = encoder->base.dev;
1855 struct drm_i915_private *dev_priv = dev->dev_private;
1856 struct intel_crtc *intel_crtc =
1857 to_intel_crtc(encoder->base.crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03001858 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001859 enum dpio_channel ch = vlv_dport_to_channel(dport);
1860 int pipe = intel_crtc->pipe;
Ville Syrjälä2e523e92015-04-10 18:21:27 +03001861 int data, i, stagger;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001862 u32 val;
1863
Ville Syrjäläa5805162015-05-26 20:42:30 +03001864 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001865
Ville Syrjälä570e2a72014-08-18 14:42:46 +03001866 /* allow hardware to manage TX FIFO reset source */
1867 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
1868 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1869 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
1870
1871 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
1872 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1873 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
1874
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001875 /* Program Tx latency optimal setting */
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001876 for (i = 0; i < 4; i++) {
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001877 /* Set the upar bit */
1878 data = (i == 1) ? 0x0 : 0x1;
1879 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
1880 data << DPIO_UPAR_SHIFT);
1881 }
1882
1883 /* Data lane stagger programming */
Ville Syrjälä2e523e92015-04-10 18:21:27 +03001884 if (intel_crtc->config->port_clock > 270000)
1885 stagger = 0x18;
1886 else if (intel_crtc->config->port_clock > 135000)
1887 stagger = 0xd;
1888 else if (intel_crtc->config->port_clock > 67500)
1889 stagger = 0x7;
1890 else if (intel_crtc->config->port_clock > 33750)
1891 stagger = 0x4;
1892 else
1893 stagger = 0x2;
1894
1895 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
1896 val |= DPIO_TX2_STAGGER_MASK(0x1f);
1897 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
1898
1899 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
1900 val |= DPIO_TX2_STAGGER_MASK(0x1f);
1901 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
1902
1903 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW12(ch),
1904 DPIO_LANESTAGGER_STRAP(stagger) |
1905 DPIO_LANESTAGGER_STRAP_OVRD |
1906 DPIO_TX1_STAGGER_MASK(0x1f) |
1907 DPIO_TX1_STAGGER_MULT(6) |
1908 DPIO_TX2_STAGGER_MULT(0));
1909
1910 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW12(ch),
1911 DPIO_LANESTAGGER_STRAP(stagger) |
1912 DPIO_LANESTAGGER_STRAP_OVRD |
1913 DPIO_TX1_STAGGER_MASK(0x1f) |
1914 DPIO_TX1_STAGGER_MULT(7) |
1915 DPIO_TX2_STAGGER_MULT(5));
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001916
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03001917 /* Deassert data lane reset */
1918 chv_data_lane_soft_reset(encoder, false);
1919
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001920 /* Clear calc init */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001921 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1922 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001923 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1924 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001925 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1926
1927 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1928 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001929 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1930 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001931 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001932
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001933 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW9(ch));
1934 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1935 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1936 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW9(ch), val);
1937
1938 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW9(ch));
1939 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1940 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1941 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW9(ch), val);
1942
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001943 /* FIXME: Program the support xxx V-dB */
1944 /* Use 800mV-0dB */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001945 for (i = 0; i < 4; i++) {
1946 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
1947 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
1948 val |= 128 << DPIO_SWING_DEEMPH9P5_SHIFT;
1949 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
1950 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001951
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001952 for (i = 0; i < 4; i++) {
1953 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
Ville Syrjälä67fa24b2015-07-08 23:45:48 +03001954
Ville Syrjälä1fb44502014-06-28 02:04:03 +03001955 val &= ~DPIO_SWING_MARGIN000_MASK;
1956 val |= 102 << DPIO_SWING_MARGIN000_SHIFT;
Ville Syrjälä67fa24b2015-07-08 23:45:48 +03001957
1958 /*
1959 * Supposedly this value shouldn't matter when unique transition
1960 * scale is disabled, but in fact it does matter. Let's just
1961 * always program the same value and hope it's OK.
1962 */
1963 val &= ~(0xff << DPIO_UNIQ_TRANS_SCALE_SHIFT);
1964 val |= 0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT;
1965
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001966 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
1967 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001968
Ville Syrjälä67fa24b2015-07-08 23:45:48 +03001969 /*
1970 * The document said it needs to set bit 27 for ch0 and bit 26
1971 * for ch1. Might be a typo in the doc.
1972 * For now, for this unique transition scale selection, set bit
1973 * 27 for ch0 and ch1.
1974 */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001975 for (i = 0; i < 4; i++) {
1976 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
1977 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
1978 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
1979 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001980
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001981 /* Start swing calculation */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001982 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1983 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1984 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1985
1986 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1987 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1988 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001989
Ville Syrjäläa5805162015-05-26 20:42:30 +03001990 mutex_unlock(&dev_priv->sb_lock);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001991
Clint Taylorb4eb1562014-11-21 11:13:02 -08001992 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001993 intel_crtc->config->has_hdmi_sink,
Clint Taylorb4eb1562014-11-21 11:13:02 -08001994 adjusted_mode);
1995
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001996 g4x_enable_hdmi(encoder);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001997
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001998 vlv_wait_port_ready(dev_priv, dport, 0x0);
Ville Syrjäläb0b33842015-07-08 23:45:55 +03001999
2000 /* Second common lane will stay alive on its own now */
2001 if (dport->release_cl2_override) {
2002 chv_phy_powergate_ch(dev_priv, DPIO_PHY0, DPIO_CH1, false);
2003 dport->release_cl2_override = false;
2004 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002005}
2006
Eric Anholt7d573822009-01-02 13:33:00 -08002007static void intel_hdmi_destroy(struct drm_connector *connector)
2008{
Chris Wilson10e972d2014-09-04 21:43:45 +01002009 kfree(to_intel_connector(connector)->detect_edid);
Eric Anholt7d573822009-01-02 13:33:00 -08002010 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +08002011 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -08002012}
2013
Eric Anholt7d573822009-01-02 13:33:00 -08002014static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +02002015 .dpms = drm_atomic_helper_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -08002016 .detect = intel_hdmi_detect,
Chris Wilson953ece6972014-09-02 20:04:01 +01002017 .force = intel_hdmi_force,
Eric Anholt7d573822009-01-02 13:33:00 -08002018 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +01002019 .set_property = intel_hdmi_set_property,
Matt Roper2545e4a2015-01-22 16:51:27 -08002020 .atomic_get_property = intel_connector_atomic_get_property,
Eric Anholt7d573822009-01-02 13:33:00 -08002021 .destroy = intel_hdmi_destroy,
Matt Roperc6f95f22015-01-22 16:50:32 -08002022 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Ander Conselvan de Oliveira98969722015-03-20 16:18:06 +02002023 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Eric Anholt7d573822009-01-02 13:33:00 -08002024};
2025
2026static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
2027 .get_modes = intel_hdmi_get_modes,
2028 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002029 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -08002030};
2031
Eric Anholt7d573822009-01-02 13:33:00 -08002032static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002033 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -08002034};
2035
Chris Wilson55b7d6e82010-09-19 09:29:33 +01002036static void
2037intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
2038{
Chris Wilson3f43c482011-05-12 22:17:24 +01002039 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002040 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02002041 intel_hdmi->color_range_auto = true;
Vandana Kannan94a11dd2014-06-11 11:06:01 +05302042 intel_attach_aspect_ratio_property(connector);
2043 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01002044}
2045
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002046void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
2047 struct intel_connector *intel_connector)
Eric Anholt7d573822009-01-02 13:33:00 -08002048{
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002049 struct drm_connector *connector = &intel_connector->base;
2050 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
2051 struct intel_encoder *intel_encoder = &intel_dig_port->base;
2052 struct drm_device *dev = intel_encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -08002053 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02002054 enum port port = intel_dig_port->port;
Xiong Zhang11c1b652015-08-17 16:04:04 +08002055 uint8_t alternate_ddc_pin;
Eric Anholt7d573822009-01-02 13:33:00 -08002056
Ville Syrjäläccb1a832015-12-08 19:59:38 +02002057 if (WARN(intel_dig_port->max_lanes < 4,
2058 "Not enough lanes (%d) for HDMI on port %c\n",
2059 intel_dig_port->max_lanes, port_name(port)))
2060 return;
2061
Eric Anholt7d573822009-01-02 13:33:00 -08002062 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -04002063 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -08002064 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
2065
Peter Rossc3febcc2012-01-28 14:49:26 +01002066 connector->interlace_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08002067 connector->doublescan_allowed = 0;
Damien Lespiau573e74a2013-09-25 16:45:40 +01002068 connector->stereo_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08002069
Daniel Vetter08d644a2012-07-12 20:19:59 +02002070 switch (port) {
2071 case PORT_B:
Jani Nikula4c272832015-04-01 10:58:05 +03002072 if (IS_BROXTON(dev_priv))
2073 intel_hdmi->ddc_bus = GMBUS_PIN_1_BXT;
2074 else
2075 intel_hdmi->ddc_bus = GMBUS_PIN_DPB;
Sonika Jindalcf1d5882015-08-10 10:35:36 +05302076 /*
2077 * On BXT A0/A1, sw needs to activate DDIA HPD logic and
2078 * interrupts to check the external panel connection.
2079 */
Jani Nikulae87a0052015-10-20 15:22:02 +03002080 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1))
Sonika Jindalcf1d5882015-08-10 10:35:36 +05302081 intel_encoder->hpd_pin = HPD_PORT_A;
2082 else
2083 intel_encoder->hpd_pin = HPD_PORT_B;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002084 break;
2085 case PORT_C:
Jani Nikula4c272832015-04-01 10:58:05 +03002086 if (IS_BROXTON(dev_priv))
2087 intel_hdmi->ddc_bus = GMBUS_PIN_2_BXT;
2088 else
2089 intel_hdmi->ddc_bus = GMBUS_PIN_DPC;
Egbert Eich1d843f92013-02-25 12:06:49 -05002090 intel_encoder->hpd_pin = HPD_PORT_C;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002091 break;
2092 case PORT_D:
Jani Nikula4c272832015-04-01 10:58:05 +03002093 if (WARN_ON(IS_BROXTON(dev_priv)))
2094 intel_hdmi->ddc_bus = GMBUS_PIN_DISABLED;
2095 else if (IS_CHERRYVIEW(dev_priv))
Jani Nikula988c7012015-03-27 00:20:19 +02002096 intel_hdmi->ddc_bus = GMBUS_PIN_DPD_CHV;
Ville Syrjäläc0c35322014-04-09 13:28:52 +03002097 else
Jani Nikula988c7012015-03-27 00:20:19 +02002098 intel_hdmi->ddc_bus = GMBUS_PIN_DPD;
Egbert Eich1d843f92013-02-25 12:06:49 -05002099 intel_encoder->hpd_pin = HPD_PORT_D;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002100 break;
Xiong Zhang11c1b652015-08-17 16:04:04 +08002101 case PORT_E:
2102 /* On SKL PORT E doesn't have seperate GMBUS pin
2103 * We rely on VBT to set a proper alternate GMBUS pin. */
2104 alternate_ddc_pin =
2105 dev_priv->vbt.ddi_port_info[PORT_E].alternate_ddc_pin;
2106 switch (alternate_ddc_pin) {
2107 case DDC_PIN_B:
2108 intel_hdmi->ddc_bus = GMBUS_PIN_DPB;
2109 break;
2110 case DDC_PIN_C:
2111 intel_hdmi->ddc_bus = GMBUS_PIN_DPC;
2112 break;
2113 case DDC_PIN_D:
2114 intel_hdmi->ddc_bus = GMBUS_PIN_DPD;
2115 break;
2116 default:
2117 MISSING_CASE(alternate_ddc_pin);
2118 }
2119 intel_encoder->hpd_pin = HPD_PORT_E;
2120 break;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002121 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05002122 intel_encoder->hpd_pin = HPD_PORT_A;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002123 /* Internal port only for eDP. */
2124 default:
Eugeni Dodonov6e4c1672012-05-09 15:37:13 -03002125 BUG();
Ma Lingf8aed702009-08-24 13:50:24 +08002126 }
Eric Anholt7d573822009-01-02 13:33:00 -08002127
Wayne Boyer666a4532015-12-09 12:29:35 -08002128 if (IS_VALLEYVIEW(dev) || IS_CHERRYVIEW(dev)) {
Shobhit Kumar90b107c2012-03-28 13:39:32 -07002129 intel_hdmi->write_infoframe = vlv_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03002130 intel_hdmi->set_infoframes = vlv_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002131 intel_hdmi->infoframe_enabled = vlv_infoframe_enabled;
Sonika Jindalb98856a2014-07-22 11:13:46 +05302132 } else if (IS_G4X(dev)) {
Jesse Barnes7637bfd2013-03-08 10:46:01 -08002133 intel_hdmi->write_infoframe = g4x_write_infoframe;
2134 intel_hdmi->set_infoframes = g4x_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002135 intel_hdmi->infoframe_enabled = g4x_infoframe_enabled;
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03002136 } else if (HAS_DDI(dev)) {
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -03002137 intel_hdmi->write_infoframe = hsw_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03002138 intel_hdmi->set_infoframes = hsw_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002139 intel_hdmi->infoframe_enabled = hsw_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03002140 } else if (HAS_PCH_IBX(dev)) {
2141 intel_hdmi->write_infoframe = ibx_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03002142 intel_hdmi->set_infoframes = ibx_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002143 intel_hdmi->infoframe_enabled = ibx_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03002144 } else {
2145 intel_hdmi->write_infoframe = cpt_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03002146 intel_hdmi->set_infoframes = cpt_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002147 intel_hdmi->infoframe_enabled = cpt_infoframe_enabled;
Jesse Barnes64a8fc02011-09-22 11:16:00 +05302148 }
Jesse Barnes45187ac2011-08-03 09:22:55 -07002149
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002150 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02002151 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
2152 else
2153 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak4932e2c2014-02-11 17:12:48 +02002154 intel_connector->unregister = intel_connector_unregister;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002155
2156 intel_hdmi_add_properties(intel_hdmi, connector);
2157
2158 intel_connector_attach_encoder(intel_connector, intel_encoder);
Thomas Wood34ea3d32014-05-29 16:57:41 +01002159 drm_connector_register(connector);
Shashank Sharmad8b4c432015-09-04 18:56:11 +05302160 intel_hdmi->attached_connector = intel_connector;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002161
2162 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2163 * 0xd. Failure to do so will result in spurious interrupts being
2164 * generated on the port when a cable is not attached.
2165 */
2166 if (IS_G4X(dev) && !IS_GM45(dev)) {
2167 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2168 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2169 }
2170}
2171
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002172void intel_hdmi_init(struct drm_device *dev,
2173 i915_reg_t hdmi_reg, enum port port)
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002174{
2175 struct intel_digital_port *intel_dig_port;
2176 struct intel_encoder *intel_encoder;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002177 struct intel_connector *intel_connector;
2178
Daniel Vetterb14c5672013-09-19 12:18:32 +02002179 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002180 if (!intel_dig_port)
2181 return;
2182
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03002183 intel_connector = intel_connector_alloc();
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002184 if (!intel_connector) {
2185 kfree(intel_dig_port);
2186 return;
2187 }
2188
2189 intel_encoder = &intel_dig_port->base;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002190
2191 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
Ville Syrjälä13a3d912015-12-09 16:20:18 +02002192 DRM_MODE_ENCODER_TMDS, NULL);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002193
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01002194 intel_encoder->compute_config = intel_hdmi_compute_config;
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03002195 if (HAS_PCH_SPLIT(dev)) {
2196 intel_encoder->disable = pch_disable_hdmi;
2197 intel_encoder->post_disable = pch_post_disable_hdmi;
2198 } else {
2199 intel_encoder->disable = g4x_disable_hdmi;
2200 }
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002201 intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002202 intel_encoder->get_config = intel_hdmi_get_config;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002203 if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03002204 intel_encoder->pre_pll_enable = chv_hdmi_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002205 intel_encoder->pre_enable = chv_hdmi_pre_enable;
2206 intel_encoder->enable = vlv_enable_hdmi;
Ville Syrjälä580d3812014-04-09 13:29:00 +03002207 intel_encoder->post_disable = chv_hdmi_post_disable;
Ville Syrjäläd6db9952015-07-08 23:45:49 +03002208 intel_encoder->post_pll_disable = chv_hdmi_post_pll_disable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002209 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee9514ac62013-10-16 17:07:41 +08002210 intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
2211 intel_encoder->pre_enable = vlv_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03002212 intel_encoder->enable = vlv_enable_hdmi;
Chon Ming Lee9514ac62013-10-16 17:07:41 +08002213 intel_encoder->post_disable = vlv_hdmi_post_disable;
Jani Nikulab76cf762013-07-30 12:20:31 +03002214 } else {
Jesse Barnes13732ba2014-04-05 11:51:35 -07002215 intel_encoder->pre_enable = intel_hdmi_pre_enable;
Ville Syrjäläd1b15892015-05-05 17:06:19 +03002216 if (HAS_PCH_CPT(dev))
2217 intel_encoder->enable = cpt_enable_hdmi;
Ville Syrjäläbf868c72015-05-05 17:06:23 +03002218 else if (HAS_PCH_IBX(dev))
2219 intel_encoder->enable = ibx_enable_hdmi;
Ville Syrjäläd1b15892015-05-05 17:06:19 +03002220 else
Ville Syrjäläbf868c72015-05-05 17:06:23 +03002221 intel_encoder->enable = g4x_enable_hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07002222 }
Daniel Vetter5ab432e2012-06-30 08:59:56 +02002223
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002224 intel_encoder->type = INTEL_OUTPUT_HDMI;
Ville Syrjälä882ec382014-04-28 14:07:43 +03002225 if (IS_CHERRYVIEW(dev)) {
2226 if (port == PORT_D)
2227 intel_encoder->crtc_mask = 1 << 2;
2228 else
2229 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
2230 } else {
2231 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
2232 }
Ville Syrjälä301ea742014-03-03 16:15:30 +02002233 intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
Ville Syrjäläc6f14952014-03-03 16:15:31 +02002234 /*
2235 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
2236 * to work on real hardware. And since g4x can send infoframes to
2237 * only one port anyway, nothing is lost by allowing it.
2238 */
2239 if (IS_G4X(dev))
2240 intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -08002241
Paulo Zanoni174edf12012-10-26 19:05:50 -02002242 intel_dig_port->port = port;
Paulo Zanonib242b7f2013-02-18 19:00:26 -03002243 intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002244 intel_dig_port->dp.output_reg = INVALID_MMIO_REG;
Ville Syrjäläccb1a832015-12-08 19:59:38 +02002245 intel_dig_port->max_lanes = 4;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01002246
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002247 intel_hdmi_init_connector(intel_dig_port, intel_connector);
Eric Anholt7d573822009-01-02 13:33:00 -08002248}