blob: fd86cef35a2c2b12660a0ffa347402a4c1ce23cf [file] [log] [blame]
Eric Anholt7d573822009-01-02 13:33:00 -08001/*
2 * Copyright 2006 Dave Airlie <airlied@linux.ie>
3 * Copyright © 2006-2009 Intel Corporation
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Eric Anholt <eric@anholt.net>
26 * Jesse Barnes <jesse.barnes@intel.com>
27 */
28
29#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Eric Anholt7d573822009-01-02 13:33:00 -080031#include <linux/delay.h>
Damien Lespiau178f7362013-08-06 20:32:18 +010032#include <linux/hdmi.h>
David Howells760285e2012-10-02 18:01:07 +010033#include <drm/drmP.h>
Matt Roperc6f95f22015-01-22 16:50:32 -080034#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/drm_crtc.h>
36#include <drm/drm_edid.h>
Eric Anholt7d573822009-01-02 13:33:00 -080037#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010038#include <drm/i915_drm.h>
Eric Anholt7d573822009-01-02 13:33:00 -080039#include "i915_drv.h"
40
Paulo Zanoni30add222012-10-26 19:05:45 -020041static struct drm_device *intel_hdmi_to_dev(struct intel_hdmi *intel_hdmi)
42{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020043 return hdmi_to_dig_port(intel_hdmi)->base.base.dev;
Paulo Zanoni30add222012-10-26 19:05:45 -020044}
45
Daniel Vetterafba0182012-06-12 16:36:45 +020046static void
47assert_hdmi_port_disabled(struct intel_hdmi *intel_hdmi)
48{
Paulo Zanoni30add222012-10-26 19:05:45 -020049 struct drm_device *dev = intel_hdmi_to_dev(intel_hdmi);
Daniel Vetterafba0182012-06-12 16:36:45 +020050 struct drm_i915_private *dev_priv = dev->dev_private;
51 uint32_t enabled_bits;
52
Paulo Zanoniaffa9352012-11-23 15:30:39 -020053 enabled_bits = HAS_DDI(dev) ? DDI_BUF_CTL_ENABLE : SDVO_ENABLE;
Daniel Vetterafba0182012-06-12 16:36:45 +020054
Paulo Zanonib242b7f2013-02-18 19:00:26 -030055 WARN(I915_READ(intel_hdmi->hdmi_reg) & enabled_bits,
Daniel Vetterafba0182012-06-12 16:36:45 +020056 "HDMI port enabled, expecting disabled\n");
57}
58
Eugeni Dodonovf5bbfca2012-05-09 15:37:30 -030059struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder)
Chris Wilsonea5b2132010-08-04 13:50:23 +010060{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020061 struct intel_digital_port *intel_dig_port =
62 container_of(encoder, struct intel_digital_port, base.base);
63 return &intel_dig_port->hdmi;
Chris Wilsonea5b2132010-08-04 13:50:23 +010064}
65
Chris Wilsondf0e9242010-09-09 16:20:55 +010066static struct intel_hdmi *intel_attached_hdmi(struct drm_connector *connector)
67{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020068 return enc_to_intel_hdmi(&intel_attached_encoder(connector)->base);
Chris Wilsondf0e9242010-09-09 16:20:55 +010069}
70
Damien Lespiau178f7362013-08-06 20:32:18 +010071static u32 g4x_infoframe_index(enum hdmi_infoframe_type type)
David Härdeman3c17fe42010-09-24 21:44:32 +020072{
Damien Lespiau178f7362013-08-06 20:32:18 +010073 switch (type) {
74 case HDMI_INFOFRAME_TYPE_AVI:
Paulo Zanonied517fb2012-05-14 17:12:50 -030075 return VIDEO_DIP_SELECT_AVI;
Damien Lespiau178f7362013-08-06 20:32:18 +010076 case HDMI_INFOFRAME_TYPE_SPD:
Paulo Zanonied517fb2012-05-14 17:12:50 -030077 return VIDEO_DIP_SELECT_SPD;
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +010078 case HDMI_INFOFRAME_TYPE_VENDOR:
79 return VIDEO_DIP_SELECT_VENDOR;
Jesse Barnes45187ac2011-08-03 09:22:55 -070080 default:
Damien Lespiau178f7362013-08-06 20:32:18 +010081 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
Paulo Zanonied517fb2012-05-14 17:12:50 -030082 return 0;
Jesse Barnes45187ac2011-08-03 09:22:55 -070083 }
Jesse Barnes45187ac2011-08-03 09:22:55 -070084}
85
Damien Lespiau178f7362013-08-06 20:32:18 +010086static u32 g4x_infoframe_enable(enum hdmi_infoframe_type type)
Jesse Barnes45187ac2011-08-03 09:22:55 -070087{
Damien Lespiau178f7362013-08-06 20:32:18 +010088 switch (type) {
89 case HDMI_INFOFRAME_TYPE_AVI:
Paulo Zanonied517fb2012-05-14 17:12:50 -030090 return VIDEO_DIP_ENABLE_AVI;
Damien Lespiau178f7362013-08-06 20:32:18 +010091 case HDMI_INFOFRAME_TYPE_SPD:
Paulo Zanonied517fb2012-05-14 17:12:50 -030092 return VIDEO_DIP_ENABLE_SPD;
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +010093 case HDMI_INFOFRAME_TYPE_VENDOR:
94 return VIDEO_DIP_ENABLE_VENDOR;
Paulo Zanonifa193ff2012-05-04 17:18:20 -030095 default:
Damien Lespiau178f7362013-08-06 20:32:18 +010096 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
Paulo Zanonied517fb2012-05-14 17:12:50 -030097 return 0;
Paulo Zanonifa193ff2012-05-04 17:18:20 -030098 }
Paulo Zanonifa193ff2012-05-04 17:18:20 -030099}
100
Damien Lespiau178f7362013-08-06 20:32:18 +0100101static u32 hsw_infoframe_enable(enum hdmi_infoframe_type type)
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300102{
Damien Lespiau178f7362013-08-06 20:32:18 +0100103 switch (type) {
104 case HDMI_INFOFRAME_TYPE_AVI:
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300105 return VIDEO_DIP_ENABLE_AVI_HSW;
Damien Lespiau178f7362013-08-06 20:32:18 +0100106 case HDMI_INFOFRAME_TYPE_SPD:
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300107 return VIDEO_DIP_ENABLE_SPD_HSW;
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100108 case HDMI_INFOFRAME_TYPE_VENDOR:
109 return VIDEO_DIP_ENABLE_VS_HSW;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300110 default:
Damien Lespiau178f7362013-08-06 20:32:18 +0100111 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300112 return 0;
113 }
114}
115
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:
Damien Lespiau178f7362013-08-06 20:32:18 +0100130 DRM_DEBUG_DRIVER("unknown info frame type %d\n", 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
Jesse Barnese43823e2014-11-05 14:26:08 -0800172static bool g4x_infoframe_enabled(struct drm_encoder *encoder)
173{
174 struct drm_device *dev = encoder->dev;
175 struct drm_i915_private *dev_priv = dev->dev_private;
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
Jesse Barnese43823e2014-11-05 14:26:08 -0800228static bool ibx_infoframe_enabled(struct drm_encoder *encoder)
229{
230 struct drm_device *dev = encoder->dev;
231 struct drm_i915_private *dev_priv = dev->dev_private;
232 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Jani Nikula052f62f2015-04-29 15:30:07 +0300233 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200234 i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->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
Jesse Barnese43823e2014-11-05 14:26:08 -0800290static bool cpt_infoframe_enabled(struct drm_encoder *encoder)
291{
292 struct drm_device *dev = encoder->dev;
293 struct drm_i915_private *dev_priv = dev->dev_private;
294 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200295 u32 val = I915_READ(TVIDEO_DIP_CTL(intel_crtc->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
Jesse Barnese43823e2014-11-05 14:26:08 -0800344static bool vlv_infoframe_enabled(struct drm_encoder *encoder)
345{
346 struct drm_device *dev = encoder->dev;
347 struct drm_i915_private *dev_priv = dev->dev_private;
348 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Jesse Barnes535afa22015-04-15 16:52:29 -0700349 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200350 u32 val = I915_READ(VLV_TVIDEO_DIP_CTL(intel_crtc->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);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200378 if (i915_mmio_reg_valid(data_reg))
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300379 return;
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300380
Damien Lespiau178f7362013-08-06 20:32:18 +0100381 val &= ~hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300382 I915_WRITE(ctl_reg, val);
383
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300384 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300385 for (i = 0; i < len; i += 4) {
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300386 I915_WRITE(hsw_dip_data_reg(dev_priv, cpu_transcoder,
387 type, i >> 2), *data);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300388 data++;
389 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300390 /* Write every possible data byte to force correct ECC calculation. */
391 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300392 I915_WRITE(hsw_dip_data_reg(dev_priv, cpu_transcoder,
393 type, i >> 2), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300394 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300395
Damien Lespiau178f7362013-08-06 20:32:18 +0100396 val |= hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300397 I915_WRITE(ctl_reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300398 POSTING_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300399}
400
Jesse Barnese43823e2014-11-05 14:26:08 -0800401static bool hsw_infoframe_enabled(struct drm_encoder *encoder)
402{
403 struct drm_device *dev = encoder->dev;
404 struct drm_i915_private *dev_priv = dev->dev_private;
405 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200406 u32 val = I915_READ(HSW_TVIDEO_DIP_CTL(intel_crtc->config->cpu_transcoder));
Jesse Barnese43823e2014-11-05 14:26:08 -0800407
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300408 return val & (VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_AVI_HSW |
409 VIDEO_DIP_ENABLE_GCP_HSW | VIDEO_DIP_ENABLE_VS_HSW |
410 VIDEO_DIP_ENABLE_GMP_HSW | VIDEO_DIP_ENABLE_SPD_HSW);
Jesse Barnese43823e2014-11-05 14:26:08 -0800411}
412
Damien Lespiau5adaea72013-08-06 20:32:19 +0100413/*
414 * The data we write to the DIP data buffer registers is 1 byte bigger than the
415 * HDMI infoframe size because of an ECC/reserved byte at position 3 (starting
416 * at 0). It's also a byte used by DisplayPort so the same DIP registers can be
417 * used for both technologies.
418 *
419 * DW0: Reserved/ECC/DP | HB2 | HB1 | HB0
420 * DW1: DB3 | DB2 | DB1 | DB0
421 * DW2: DB7 | DB6 | DB5 | DB4
422 * DW3: ...
423 *
424 * (HB is Header Byte, DB is Data Byte)
425 *
426 * The hdmi pack() functions don't know about that hardware specific hole so we
427 * trick them by giving an offset into the buffer and moving back the header
428 * bytes by one.
429 */
Damien Lespiau9198ee52013-08-06 20:32:24 +0100430static void intel_write_infoframe(struct drm_encoder *encoder,
431 union hdmi_infoframe *frame)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700432{
433 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100434 uint8_t buffer[VIDEO_DIP_DATA_SIZE];
435 ssize_t len;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700436
Damien Lespiau5adaea72013-08-06 20:32:19 +0100437 /* see comment above for the reason for this offset */
438 len = hdmi_infoframe_pack(frame, buffer + 1, sizeof(buffer) - 1);
439 if (len < 0)
440 return;
441
442 /* Insert the 'hole' (see big comment above) at position 3 */
443 buffer[0] = buffer[1];
444 buffer[1] = buffer[2];
445 buffer[2] = buffer[3];
446 buffer[3] = 0;
447 len++;
448
449 intel_hdmi->write_infoframe(encoder, frame->any.type, buffer, len);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700450}
451
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300452static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300453 const struct drm_display_mode *adjusted_mode)
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700454{
Ville Syrjäläabedc072013-01-17 16:31:31 +0200455 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Daniel Vetter50f3b012013-03-27 00:44:56 +0100456 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100457 union hdmi_infoframe frame;
458 int ret;
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700459
Damien Lespiau5adaea72013-08-06 20:32:19 +0100460 ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
461 adjusted_mode);
462 if (ret < 0) {
463 DRM_ERROR("couldn't fill AVI infoframe\n");
464 return;
465 }
Paulo Zanonic846b612012-04-13 16:31:41 -0300466
Ville Syrjäläabedc072013-01-17 16:31:31 +0200467 if (intel_hdmi->rgb_quant_range_selectable) {
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200468 if (intel_crtc->config->limited_color_range)
Damien Lespiau5adaea72013-08-06 20:32:19 +0100469 frame.avi.quantization_range =
470 HDMI_QUANTIZATION_RANGE_LIMITED;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200471 else
Damien Lespiau5adaea72013-08-06 20:32:19 +0100472 frame.avi.quantization_range =
473 HDMI_QUANTIZATION_RANGE_FULL;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200474 }
475
Damien Lespiau9198ee52013-08-06 20:32:24 +0100476 intel_write_infoframe(encoder, &frame);
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700477}
478
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300479static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700480{
Damien Lespiau5adaea72013-08-06 20:32:19 +0100481 union hdmi_infoframe frame;
482 int ret;
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700483
Damien Lespiau5adaea72013-08-06 20:32:19 +0100484 ret = hdmi_spd_infoframe_init(&frame.spd, "Intel", "Integrated gfx");
485 if (ret < 0) {
486 DRM_ERROR("couldn't fill SPD infoframe\n");
487 return;
488 }
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700489
Damien Lespiau5adaea72013-08-06 20:32:19 +0100490 frame.spd.sdi = HDMI_SPD_SDI_PC;
491
Damien Lespiau9198ee52013-08-06 20:32:24 +0100492 intel_write_infoframe(encoder, &frame);
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700493}
494
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100495static void
496intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300497 const struct drm_display_mode *adjusted_mode)
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100498{
499 union hdmi_infoframe frame;
500 int ret;
501
502 ret = drm_hdmi_vendor_infoframe_from_display_mode(&frame.vendor.hdmi,
503 adjusted_mode);
504 if (ret < 0)
505 return;
506
507 intel_write_infoframe(encoder, &frame);
508}
509
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300510static void g4x_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200511 bool enable,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300512 const struct drm_display_mode *adjusted_mode)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300513{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300514 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200515 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
516 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200517 i915_reg_t reg = VIDEO_DIP_CTL;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300518 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200519 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300520
Daniel Vetterafba0182012-06-12 16:36:45 +0200521 assert_hdmi_port_disabled(intel_hdmi);
522
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300523 /* If the registers were not initialized yet, they might be zeroes,
524 * which means we're selecting the AVI DIP and we're setting its
525 * frequency to once. This seems to really confuse the HW and make
526 * things stop working (the register spec says the AVI always needs to
527 * be sent every VSync). So here we avoid writing to the register more
528 * than we need and also explicitly select the AVI DIP and explicitly
529 * set its frequency to every VSync. Avoiding to write it twice seems to
530 * be enough to solve the problem, but being defensive shouldn't hurt us
531 * either. */
532 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
533
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200534 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300535 if (!(val & VIDEO_DIP_ENABLE))
536 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300537 if (port != (val & VIDEO_DIP_PORT_MASK)) {
538 DRM_DEBUG_KMS("video DIP still enabled on port %c\n",
539 (val & VIDEO_DIP_PORT_MASK) >> 29);
540 return;
541 }
542 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
543 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300544 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300545 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300546 return;
547 }
548
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300549 if (port != (val & VIDEO_DIP_PORT_MASK)) {
550 if (val & VIDEO_DIP_ENABLE) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300551 DRM_DEBUG_KMS("video DIP already enabled on port %c\n",
552 (val & VIDEO_DIP_PORT_MASK) >> 29);
553 return;
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300554 }
555 val &= ~VIDEO_DIP_PORT_MASK;
556 val |= port;
557 }
558
Paulo Zanoni822974a2012-05-28 16:42:51 -0300559 val |= VIDEO_DIP_ENABLE;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300560 val &= ~(VIDEO_DIP_ENABLE_AVI |
561 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300562
Paulo Zanonif278d972012-05-28 16:42:50 -0300563 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300564 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300565
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300566 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
567 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100568 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300569}
570
Ville Syrjälä6d674152015-05-05 17:06:20 +0300571static bool hdmi_sink_is_deep_color(struct drm_encoder *encoder)
572{
573 struct drm_device *dev = encoder->dev;
574 struct drm_connector *connector;
575
576 WARN_ON(!drm_modeset_is_locked(&dev->mode_config.connection_mutex));
577
578 /*
579 * HDMI cloning is only supported on g4x which doesn't
580 * support deep color or GCP infoframes anyway so no
581 * need to worry about multiple HDMI sinks here.
582 */
583 list_for_each_entry(connector, &dev->mode_config.connector_list, head)
584 if (connector->encoder == encoder)
585 return connector->display_info.bpc > 8;
586
587 return false;
588}
589
Ville Syrjälä12aa3292015-05-05 17:06:21 +0300590/*
591 * Determine if default_phase=1 can be indicated in the GCP infoframe.
592 *
593 * From HDMI specification 1.4a:
594 * - The first pixel of each Video Data Period shall always have a pixel packing phase of 0
595 * - The first pixel following each Video Data Period shall have a pixel packing phase of 0
596 * - The PP bits shall be constant for all GCPs and will be equal to the last packing phase
597 * - The first pixel following every transition of HSYNC or VSYNC shall have a pixel packing
598 * phase of 0
599 */
600static bool gcp_default_phase_possible(int pipe_bpp,
601 const struct drm_display_mode *mode)
602{
603 unsigned int pixels_per_group;
604
605 switch (pipe_bpp) {
606 case 30:
607 /* 4 pixels in 5 clocks */
608 pixels_per_group = 4;
609 break;
610 case 36:
611 /* 2 pixels in 3 clocks */
612 pixels_per_group = 2;
613 break;
614 case 48:
615 /* 1 pixel in 2 clocks */
616 pixels_per_group = 1;
617 break;
618 default:
619 /* phase information not relevant for 8bpc */
620 return false;
621 }
622
623 return mode->crtc_hdisplay % pixels_per_group == 0 &&
624 mode->crtc_htotal % pixels_per_group == 0 &&
625 mode->crtc_hblank_start % pixels_per_group == 0 &&
626 mode->crtc_hblank_end % pixels_per_group == 0 &&
627 mode->crtc_hsync_start % pixels_per_group == 0 &&
628 mode->crtc_hsync_end % pixels_per_group == 0 &&
629 ((mode->flags & DRM_MODE_FLAG_INTERLACE) == 0 ||
630 mode->crtc_htotal/2 % pixels_per_group == 0);
631}
632
Ville Syrjälä6d674152015-05-05 17:06:20 +0300633static bool intel_hdmi_set_gcp_infoframe(struct drm_encoder *encoder)
634{
635 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
636 struct intel_crtc *crtc = to_intel_crtc(encoder->crtc);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200637 i915_reg_t reg;
638 u32 val = 0;
Ville Syrjälä6d674152015-05-05 17:06:20 +0300639
640 if (HAS_DDI(dev_priv))
641 reg = HSW_TVIDEO_DIP_GCP(crtc->config->cpu_transcoder);
642 else if (IS_VALLEYVIEW(dev_priv))
643 reg = VLV_TVIDEO_DIP_GCP(crtc->pipe);
644 else if (HAS_PCH_SPLIT(dev_priv->dev))
645 reg = TVIDEO_DIP_GCP(crtc->pipe);
646 else
647 return false;
648
649 /* Indicate color depth whenever the sink supports deep color */
650 if (hdmi_sink_is_deep_color(encoder))
651 val |= GCP_COLOR_INDICATION;
652
Ville Syrjälä12aa3292015-05-05 17:06:21 +0300653 /* Enable default_phase whenever the display mode is suitably aligned */
654 if (gcp_default_phase_possible(crtc->config->pipe_bpp,
655 &crtc->config->base.adjusted_mode))
656 val |= GCP_DEFAULT_PHASE_ENABLE;
657
Ville Syrjälä6d674152015-05-05 17:06:20 +0300658 I915_WRITE(reg, val);
659
660 return val != 0;
661}
662
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300663static void ibx_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200664 bool enable,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300665 const struct drm_display_mode *adjusted_mode)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300666{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300667 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
668 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200669 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
670 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200671 i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300672 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200673 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300674
Daniel Vetterafba0182012-06-12 16:36:45 +0200675 assert_hdmi_port_disabled(intel_hdmi);
676
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300677 /* See the big comment in g4x_set_infoframes() */
678 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
679
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200680 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300681 if (!(val & VIDEO_DIP_ENABLE))
682 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300683 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
684 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
685 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300686 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300687 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300688 return;
689 }
690
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300691 if (port != (val & VIDEO_DIP_PORT_MASK)) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300692 WARN(val & VIDEO_DIP_ENABLE,
693 "DIP already enabled on port %c\n",
694 (val & VIDEO_DIP_PORT_MASK) >> 29);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300695 val &= ~VIDEO_DIP_PORT_MASK;
696 val |= port;
697 }
698
Paulo Zanoni822974a2012-05-28 16:42:51 -0300699 val |= VIDEO_DIP_ENABLE;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300700 val &= ~(VIDEO_DIP_ENABLE_AVI |
701 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
702 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300703
Ville Syrjälä6d674152015-05-05 17:06:20 +0300704 if (intel_hdmi_set_gcp_infoframe(encoder))
705 val |= VIDEO_DIP_ENABLE_GCP;
706
Paulo Zanonif278d972012-05-28 16:42:50 -0300707 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300708 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300709
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300710 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
711 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100712 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300713}
714
715static void cpt_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200716 bool enable,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300717 const struct drm_display_mode *adjusted_mode)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300718{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300719 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
720 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
721 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200722 i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300723 u32 val = I915_READ(reg);
724
Daniel Vetterafba0182012-06-12 16:36:45 +0200725 assert_hdmi_port_disabled(intel_hdmi);
726
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300727 /* See the big comment in g4x_set_infoframes() */
728 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
729
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200730 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300731 if (!(val & VIDEO_DIP_ENABLE))
732 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300733 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
734 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
735 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300736 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300737 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300738 return;
739 }
740
Paulo Zanoni822974a2012-05-28 16:42:51 -0300741 /* Set both together, unset both together: see the spec. */
742 val |= VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300743 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300744 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300745
Ville Syrjälä6d674152015-05-05 17:06:20 +0300746 if (intel_hdmi_set_gcp_infoframe(encoder))
747 val |= VIDEO_DIP_ENABLE_GCP;
748
Paulo Zanoni822974a2012-05-28 16:42:51 -0300749 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300750 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300751
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300752 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
753 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100754 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300755}
756
757static void vlv_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200758 bool enable,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300759 const struct drm_display_mode *adjusted_mode)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300760{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300761 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700762 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300763 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
764 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200765 i915_reg_t reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300766 u32 val = I915_READ(reg);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700767 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300768
Daniel Vetterafba0182012-06-12 16:36:45 +0200769 assert_hdmi_port_disabled(intel_hdmi);
770
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300771 /* See the big comment in g4x_set_infoframes() */
772 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
773
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200774 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300775 if (!(val & VIDEO_DIP_ENABLE))
776 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300777 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
778 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
779 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300780 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300781 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300782 return;
783 }
784
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700785 if (port != (val & VIDEO_DIP_PORT_MASK)) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300786 WARN(val & VIDEO_DIP_ENABLE,
787 "DIP already enabled on port %c\n",
788 (val & VIDEO_DIP_PORT_MASK) >> 29);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700789 val &= ~VIDEO_DIP_PORT_MASK;
790 val |= port;
791 }
792
Paulo Zanoni822974a2012-05-28 16:42:51 -0300793 val |= VIDEO_DIP_ENABLE;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300794 val &= ~(VIDEO_DIP_ENABLE_AVI |
795 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
796 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300797
Ville Syrjälä6d674152015-05-05 17:06:20 +0300798 if (intel_hdmi_set_gcp_infoframe(encoder))
799 val |= VIDEO_DIP_ENABLE_GCP;
800
Paulo Zanoni822974a2012-05-28 16:42:51 -0300801 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300802 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300803
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300804 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
805 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100806 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300807}
808
809static void hsw_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200810 bool enable,
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300811 const struct drm_display_mode *adjusted_mode)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300812{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300813 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
814 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
815 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200816 i915_reg_t reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config->cpu_transcoder);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300817 u32 val = I915_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300818
Daniel Vetterafba0182012-06-12 16:36:45 +0200819 assert_hdmi_port_disabled(intel_hdmi);
820
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300821 val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_AVI_HSW |
822 VIDEO_DIP_ENABLE_GCP_HSW | VIDEO_DIP_ENABLE_VS_HSW |
823 VIDEO_DIP_ENABLE_GMP_HSW | VIDEO_DIP_ENABLE_SPD_HSW);
824
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200825 if (!enable) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300826 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300827 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300828 return;
829 }
830
Ville Syrjälä6d674152015-05-05 17:06:20 +0300831 if (intel_hdmi_set_gcp_infoframe(encoder))
832 val |= VIDEO_DIP_ENABLE_GCP_HSW;
833
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300834 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300835 POSTING_READ(reg);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300836
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300837 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
838 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100839 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300840}
841
Daniel Vetter4cde8a22014-04-24 23:54:56 +0200842static void intel_hdmi_prepare(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800843{
Daniel Vetterc59423a2013-07-21 21:37:04 +0200844 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800845 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc59423a2013-07-21 21:37:04 +0200846 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
847 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +0300848 const struct drm_display_mode *adjusted_mode = &crtc->config->base.adjusted_mode;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300849 u32 hdmi_val;
Eric Anholt7d573822009-01-02 13:33:00 -0800850
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300851 hdmi_val = SDVO_ENCODING_HDMI;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +0300852 if (!HAS_PCH_SPLIT(dev) && crtc->config->limited_color_range)
853 hdmi_val |= HDMI_COLOR_RANGE_16_235;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400854 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300855 hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400856 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300857 hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800858
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200859 if (crtc->config->pipe_bpp > 24)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300860 hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700861 else
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300862 hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700863
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +0200864 if (crtc->config->has_hdmi_sink)
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300865 hdmi_val |= HDMI_MODE_SELECT_HDMI;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800866
Jesse Barnes75770562011-10-12 09:01:58 -0700867 if (HAS_PCH_CPT(dev))
Daniel Vetterc59423a2013-07-21 21:37:04 +0200868 hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
Chon Ming Lee44f37d12014-04-09 13:28:21 +0300869 else if (IS_CHERRYVIEW(dev))
870 hdmi_val |= SDVO_PIPE_SEL_CHV(crtc->pipe);
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300871 else
Daniel Vetterc59423a2013-07-21 21:37:04 +0200872 hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
Eric Anholt7d573822009-01-02 13:33:00 -0800873
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300874 I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
875 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800876}
877
Daniel Vetter85234cd2012-07-02 13:27:29 +0200878static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
879 enum pipe *pipe)
Eric Anholt7d573822009-01-02 13:33:00 -0800880{
Daniel Vetter85234cd2012-07-02 13:27:29 +0200881 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800882 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200883 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Imre Deak6d129be2014-03-05 16:20:54 +0200884 enum intel_display_power_domain power_domain;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200885 u32 tmp;
886
Imre Deak6d129be2014-03-05 16:20:54 +0200887 power_domain = intel_display_port_power_domain(encoder);
Daniel Vetterf458ebb2014-09-30 10:56:39 +0200888 if (!intel_display_power_is_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200889 return 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))
894 return false;
895
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
903 return true;
904}
905
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700906static void intel_hdmi_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200907 struct intel_crtc_state *pipe_config)
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700908{
909 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300910 struct drm_device *dev = encoder->base.dev;
911 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700912 u32 tmp, flags = 0;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300913 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700914
915 tmp = I915_READ(intel_hdmi->hdmi_reg);
916
917 if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
918 flags |= DRM_MODE_FLAG_PHSYNC;
919 else
920 flags |= DRM_MODE_FLAG_NHSYNC;
921
922 if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
923 flags |= DRM_MODE_FLAG_PVSYNC;
924 else
925 flags |= DRM_MODE_FLAG_NVSYNC;
926
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200927 if (tmp & HDMI_MODE_SELECT_HDMI)
928 pipe_config->has_hdmi_sink = true;
929
Jesse Barnese43823e2014-11-05 14:26:08 -0800930 if (intel_hdmi->infoframe_enabled(&encoder->base))
931 pipe_config->has_infoframe = true;
932
Jani Nikulac84db772014-09-17 15:34:58 +0300933 if (tmp & SDVO_AUDIO_ENABLE)
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200934 pipe_config->has_audio = true;
935
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300936 if (!HAS_PCH_SPLIT(dev) &&
937 tmp & HDMI_COLOR_RANGE_16_235)
938 pipe_config->limited_color_range = true;
939
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200940 pipe_config->base.adjusted_mode.flags |= flags;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300941
942 if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
943 dotclock = pipe_config->port_clock * 2 / 3;
944 else
945 dotclock = pipe_config->port_clock;
946
Ville Syrjäläbe69a132015-05-05 17:06:26 +0300947 if (pipe_config->pixel_multiplier)
948 dotclock /= pipe_config->pixel_multiplier;
949
Ville Syrjälä18442d02013-09-13 16:00:08 +0300950 if (HAS_PCH_SPLIT(dev_priv->dev))
951 ironlake_check_encoder_dotclock(pipe_config, dotclock);
952
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200953 pipe_config->base.adjusted_mode.crtc_clock = dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700954}
955
Ville Syrjäläd1b15892015-05-05 17:06:19 +0300956static void intel_enable_hdmi_audio(struct intel_encoder *encoder)
957{
958 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
959
960 WARN_ON(!crtc->config->has_hdmi_sink);
961 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
962 pipe_name(crtc->pipe));
963 intel_audio_codec_enable(encoder);
964}
965
Ville Syrjäläbf868c72015-05-05 17:06:23 +0300966static void g4x_enable_hdmi(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800967{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200968 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800969 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjäläbf868c72015-05-05 17:06:23 +0300970 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200971 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Eric Anholt7d573822009-01-02 13:33:00 -0800972 u32 temp;
973
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300974 temp = I915_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000975
Ville Syrjäläbf868c72015-05-05 17:06:23 +0300976 temp |= SDVO_ENABLE;
977 if (crtc->config->has_audio)
978 temp |= SDVO_AUDIO_ENABLE;
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200979
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300980 I915_WRITE(intel_hdmi->hdmi_reg, temp);
981 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200982
Ville Syrjäläbf868c72015-05-05 17:06:23 +0300983 if (crtc->config->has_audio)
984 intel_enable_hdmi_audio(encoder);
985}
986
987static void ibx_enable_hdmi(struct intel_encoder *encoder)
988{
989 struct drm_device *dev = encoder->base.dev;
990 struct drm_i915_private *dev_priv = dev->dev_private;
991 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
992 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
993 u32 temp;
994
995 temp = I915_READ(intel_hdmi->hdmi_reg);
996
997 temp |= SDVO_ENABLE;
998 if (crtc->config->has_audio)
999 temp |= SDVO_AUDIO_ENABLE;
1000
1001 /*
1002 * HW workaround, need to write this twice for issue
1003 * that may result in first write getting masked.
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001004 */
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001005 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1006 POSTING_READ(intel_hdmi->hdmi_reg);
1007 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1008 POSTING_READ(intel_hdmi->hdmi_reg);
1009
1010 /*
1011 * HW workaround, need to toggle enable bit off and on
1012 * for 12bpc with pixel repeat.
1013 *
1014 * FIXME: BSpec says this should be done at the end of
1015 * of the modeset sequence, so not sure if this isn't too soon.
1016 */
1017 if (crtc->config->pipe_bpp > 24 &&
1018 crtc->config->pixel_multiplier > 1) {
1019 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
1020 POSTING_READ(intel_hdmi->hdmi_reg);
1021
1022 /*
1023 * HW workaround, need to write this twice for issue
1024 * that may result in first write getting masked.
1025 */
1026 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1027 POSTING_READ(intel_hdmi->hdmi_reg);
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001028 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1029 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001030 }
Jani Nikulac1dec792014-10-27 16:26:56 +02001031
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001032 if (crtc->config->has_audio)
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001033 intel_enable_hdmi_audio(encoder);
1034}
1035
1036static void cpt_enable_hdmi(struct intel_encoder *encoder)
1037{
1038 struct drm_device *dev = encoder->base.dev;
1039 struct drm_i915_private *dev_priv = dev->dev_private;
1040 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1041 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1042 enum pipe pipe = crtc->pipe;
1043 u32 temp;
1044
1045 temp = I915_READ(intel_hdmi->hdmi_reg);
1046
1047 temp |= SDVO_ENABLE;
1048 if (crtc->config->has_audio)
1049 temp |= SDVO_AUDIO_ENABLE;
1050
1051 /*
1052 * WaEnableHDMI8bpcBefore12bpc:snb,ivb
1053 *
1054 * The procedure for 12bpc is as follows:
1055 * 1. disable HDMI clock gating
1056 * 2. enable HDMI with 8bpc
1057 * 3. enable HDMI with 12bpc
1058 * 4. enable HDMI clock gating
1059 */
1060
1061 if (crtc->config->pipe_bpp > 24) {
1062 I915_WRITE(TRANS_CHICKEN1(pipe),
1063 I915_READ(TRANS_CHICKEN1(pipe)) |
1064 TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE);
1065
1066 temp &= ~SDVO_COLOR_FORMAT_MASK;
1067 temp |= SDVO_COLOR_FORMAT_8bpc;
Jani Nikulac1dec792014-10-27 16:26:56 +02001068 }
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001069
1070 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1071 POSTING_READ(intel_hdmi->hdmi_reg);
1072
1073 if (crtc->config->pipe_bpp > 24) {
1074 temp &= ~SDVO_COLOR_FORMAT_MASK;
1075 temp |= HDMI_COLOR_FORMAT_12bpc;
1076
1077 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1078 POSTING_READ(intel_hdmi->hdmi_reg);
1079
1080 I915_WRITE(TRANS_CHICKEN1(pipe),
1081 I915_READ(TRANS_CHICKEN1(pipe)) &
1082 ~TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE);
1083 }
1084
1085 if (crtc->config->has_audio)
1086 intel_enable_hdmi_audio(encoder);
Jani Nikulab76cf762013-07-30 12:20:31 +03001087}
Jesse Barnes89b667f2013-04-18 14:51:36 -07001088
Jani Nikulab76cf762013-07-30 12:20:31 +03001089static void vlv_enable_hdmi(struct intel_encoder *encoder)
1090{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001091}
1092
1093static void intel_disable_hdmi(struct intel_encoder *encoder)
1094{
1095 struct drm_device *dev = encoder->base.dev;
1096 struct drm_i915_private *dev_priv = dev->dev_private;
1097 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Jani Nikula495a5bb2014-10-27 16:26:55 +02001098 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001099 u32 temp;
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001100
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001101 temp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001102
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001103 temp &= ~(SDVO_ENABLE | SDVO_AUDIO_ENABLE);
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001104 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1105 POSTING_READ(intel_hdmi->hdmi_reg);
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001106
1107 /*
1108 * HW workaround for IBX, we need to move the port
1109 * to transcoder A after disabling it to allow the
1110 * matching DP port to be enabled on transcoder A.
1111 */
1112 if (HAS_PCH_IBX(dev) && crtc->pipe == PIPE_B) {
Ville Syrjälä0c241d52015-10-30 19:23:22 +02001113 /*
1114 * We get CPU/PCH FIFO underruns on the other pipe when
1115 * doing the workaround. Sweep them under the rug.
1116 */
1117 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, false);
1118 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, false);
1119
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001120 temp &= ~SDVO_PIPE_B_SELECT;
1121 temp |= SDVO_ENABLE;
1122 /*
1123 * HW workaround, need to write this twice for issue
1124 * that may result in first write getting masked.
1125 */
1126 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1127 POSTING_READ(intel_hdmi->hdmi_reg);
1128 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1129 POSTING_READ(intel_hdmi->hdmi_reg);
1130
1131 temp &= ~SDVO_ENABLE;
1132 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1133 POSTING_READ(intel_hdmi->hdmi_reg);
Ville Syrjälä0c241d52015-10-30 19:23:22 +02001134
1135 intel_wait_for_vblank_if_active(dev_priv->dev, PIPE_A);
1136 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, true);
1137 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, true);
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001138 }
Ville Syrjälä6d674152015-05-05 17:06:20 +03001139
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +03001140 intel_hdmi->set_infoframes(&encoder->base, false, NULL);
Eric Anholt7d573822009-01-02 13:33:00 -08001141}
1142
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03001143static void g4x_disable_hdmi(struct intel_encoder *encoder)
1144{
1145 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1146
1147 if (crtc->config->has_audio)
1148 intel_audio_codec_disable(encoder);
1149
1150 intel_disable_hdmi(encoder);
1151}
1152
1153static void pch_disable_hdmi(struct intel_encoder *encoder)
1154{
1155 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1156
1157 if (crtc->config->has_audio)
1158 intel_audio_codec_disable(encoder);
1159}
1160
1161static void pch_post_disable_hdmi(struct intel_encoder *encoder)
1162{
1163 intel_disable_hdmi(encoder);
1164}
1165
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001166static int hdmi_port_clock_limit(struct intel_hdmi *hdmi, bool respect_dvi_limit)
Daniel Vetter7d148ef2013-07-22 18:02:39 +02001167{
1168 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
1169
Ville Syrjälä40478452014-03-27 11:08:45 +02001170 if ((respect_dvi_limit && !hdmi->has_hdmi_sink) || IS_G4X(dev))
Daniel Vetter7d148ef2013-07-22 18:02:39 +02001171 return 165000;
Damien Lespiaue3c33572013-11-02 21:07:51 -07001172 else if (IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8)
Daniel Vetter7d148ef2013-07-22 18:02:39 +02001173 return 300000;
1174 else
1175 return 225000;
1176}
1177
Damien Lespiauc19de8e2013-11-28 15:29:18 +00001178static enum drm_mode_status
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001179hdmi_port_clock_valid(struct intel_hdmi *hdmi,
1180 int clock, bool respect_dvi_limit)
1181{
1182 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
1183
1184 if (clock < 25000)
1185 return MODE_CLOCK_LOW;
1186 if (clock > hdmi_port_clock_limit(hdmi, respect_dvi_limit))
1187 return MODE_CLOCK_HIGH;
1188
Ville Syrjälä5e6ccc02015-07-06 14:44:11 +03001189 /* BXT DPLL can't generate 223-240 MHz */
1190 if (IS_BROXTON(dev) && clock > 223333 && clock < 240000)
1191 return MODE_CLOCK_RANGE;
1192
1193 /* CHV DPLL can't generate 216-240 MHz */
1194 if (IS_CHERRYVIEW(dev) && clock > 216000 && clock < 240000)
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001195 return MODE_CLOCK_RANGE;
1196
1197 return MODE_OK;
1198}
1199
1200static enum drm_mode_status
Damien Lespiauc19de8e2013-11-28 15:29:18 +00001201intel_hdmi_mode_valid(struct drm_connector *connector,
1202 struct drm_display_mode *mode)
Eric Anholt7d573822009-01-02 13:33:00 -08001203{
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001204 struct intel_hdmi *hdmi = intel_attached_hdmi(connector);
1205 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
1206 enum drm_mode_status status;
1207 int clock;
Eric Anholt7d573822009-01-02 13:33:00 -08001208
1209 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
1210 return MODE_NO_DBLESCAN;
1211
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001212 clock = mode->clock;
1213 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
1214 clock *= 2;
1215
1216 /* check if we can do 8bpc */
1217 status = hdmi_port_clock_valid(hdmi, clock, true);
1218
1219 /* if we can't do 8bpc we may still be able to do 12bpc */
1220 if (!HAS_GMCH_DISPLAY(dev) && status != MODE_OK)
1221 status = hdmi_port_clock_valid(hdmi, clock * 3 / 2, true);
1222
1223 return status;
Eric Anholt7d573822009-01-02 13:33:00 -08001224}
1225
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001226static bool hdmi_12bpc_possible(struct intel_crtc_state *crtc_state)
Ville Syrjälä71800632014-03-03 16:15:29 +02001227{
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001228 struct drm_device *dev = crtc_state->base.crtc->dev;
1229 struct drm_atomic_state *state;
Ville Syrjälä71800632014-03-03 16:15:29 +02001230 struct intel_encoder *encoder;
Ander Conselvan de Oliveirada3ced22015-04-21 17:12:59 +03001231 struct drm_connector *connector;
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001232 struct drm_connector_state *connector_state;
Ville Syrjälä71800632014-03-03 16:15:29 +02001233 int count = 0, count_hdmi = 0;
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001234 int i;
Ville Syrjälä71800632014-03-03 16:15:29 +02001235
Sonika Jindalf227ae92014-07-21 15:23:45 +05301236 if (HAS_GMCH_DISPLAY(dev))
Ville Syrjälä71800632014-03-03 16:15:29 +02001237 return false;
1238
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001239 state = crtc_state->base.state;
1240
Ander Conselvan de Oliveirada3ced22015-04-21 17:12:59 +03001241 for_each_connector_in_state(state, connector, connector_state, i) {
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001242 if (connector_state->crtc != crtc_state->base.crtc)
1243 continue;
1244
1245 encoder = to_intel_encoder(connector_state->best_encoder);
1246
Ville Syrjälä71800632014-03-03 16:15:29 +02001247 count_hdmi += encoder->type == INTEL_OUTPUT_HDMI;
1248 count++;
1249 }
1250
1251 /*
1252 * HDMI 12bpc affects the clocks, so it's only possible
1253 * when not cloning with other encoder types.
1254 */
1255 return count_hdmi > 0 && count_hdmi == count;
1256}
1257
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001258bool intel_hdmi_compute_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +02001259 struct intel_crtc_state *pipe_config)
Eric Anholt7d573822009-01-02 13:33:00 -08001260{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001261 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1262 struct drm_device *dev = encoder->base.dev;
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02001263 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001264 int clock_8bpc = pipe_config->base.adjusted_mode.crtc_clock;
1265 int clock_12bpc = clock_8bpc * 3 / 2;
Daniel Vettere29c22c2013-02-21 00:00:16 +01001266 int desired_bpp;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001267
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001268 pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink;
1269
Jesse Barnese43823e2014-11-05 14:26:08 -08001270 if (pipe_config->has_hdmi_sink)
1271 pipe_config->has_infoframe = true;
1272
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001273 if (intel_hdmi->color_range_auto) {
1274 /* See CEA-861-E - 5.1 Default Encoding Parameters */
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001275 pipe_config->limited_color_range =
1276 pipe_config->has_hdmi_sink &&
1277 drm_match_cea_mode(adjusted_mode) > 1;
1278 } else {
1279 pipe_config->limited_color_range =
1280 intel_hdmi->limited_color_range;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001281 }
1282
Clint Taylor697c4072014-09-02 17:03:36 -07001283 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK) {
1284 pipe_config->pixel_multiplier = 2;
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001285 clock_8bpc *= 2;
Ville Syrjälä3320e372015-05-05 17:06:27 +03001286 clock_12bpc *= 2;
Clint Taylor697c4072014-09-02 17:03:36 -07001287 }
1288
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001289 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
1290 pipe_config->has_pch_encoder = true;
1291
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001292 if (pipe_config->has_hdmi_sink && intel_hdmi->has_audio)
1293 pipe_config->has_audio = true;
1294
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001295 /*
1296 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
1297 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
Daniel Vetter325b9d02013-04-19 11:24:33 +02001298 * outputs. We also need to check that the higher clock still fits
1299 * within limits.
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001300 */
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001301 if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink &&
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001302 hdmi_port_clock_valid(intel_hdmi, clock_12bpc, false) == MODE_OK &&
Ville Syrjälä7a0baa62015-06-30 15:33:54 +03001303 hdmi_12bpc_possible(pipe_config)) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001304 DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
1305 desired_bpp = 12*3;
Daniel Vetter325b9d02013-04-19 11:24:33 +02001306
1307 /* Need to adjust the port link by 1.5x for 12bpc. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02001308 pipe_config->port_clock = clock_12bpc;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001309 } else {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001310 DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
1311 desired_bpp = 8*3;
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001312
1313 pipe_config->port_clock = clock_8bpc;
Daniel Vettere29c22c2013-02-21 00:00:16 +01001314 }
1315
1316 if (!pipe_config->bw_constrained) {
1317 DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
1318 pipe_config->pipe_bpp = desired_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001319 }
1320
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001321 if (hdmi_port_clock_valid(intel_hdmi, pipe_config->port_clock,
1322 false) != MODE_OK) {
1323 DRM_DEBUG_KMS("unsupported HDMI clock, rejecting mode\n");
Daniel Vetter325b9d02013-04-19 11:24:33 +02001324 return false;
1325 }
1326
Ville Syrjälä28b468a2015-09-08 13:40:48 +03001327 /* Set user selected PAR to incoming mode's member */
1328 adjusted_mode->picture_aspect_ratio = intel_hdmi->aspect_ratio;
1329
Eric Anholt7d573822009-01-02 13:33:00 -08001330 return true;
1331}
1332
Chris Wilson953ece6972014-09-02 20:04:01 +01001333static void
1334intel_hdmi_unset_edid(struct drm_connector *connector)
Ma Ling9dff6af2009-04-02 13:13:26 +08001335{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001336 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Imre Deak671dedd2014-03-05 16:20:53 +02001337
Chris Wilsonea5b2132010-08-04 13:50:23 +01001338 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +08001339 intel_hdmi->has_audio = false;
Ville Syrjäläabedc072013-01-17 16:31:31 +02001340 intel_hdmi->rgb_quant_range_selectable = false;
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +08001341
Chris Wilson953ece6972014-09-02 20:04:01 +01001342 kfree(to_intel_connector(connector)->detect_edid);
1343 to_intel_connector(connector)->detect_edid = NULL;
Ma Ling9dff6af2009-04-02 13:13:26 +08001344}
1345
Chris Wilson953ece6972014-09-02 20:04:01 +01001346static bool
Sonika Jindal237ed862015-09-15 09:44:20 +05301347intel_hdmi_set_edid(struct drm_connector *connector, bool force)
Eric Anholt7d573822009-01-02 13:33:00 -08001348{
Chris Wilson953ece6972014-09-02 20:04:01 +01001349 struct drm_i915_private *dev_priv = to_i915(connector->dev);
1350 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Sonika Jindal237ed862015-09-15 09:44:20 +05301351 struct edid *edid = NULL;
Chris Wilson953ece6972014-09-02 20:04:01 +01001352 bool connected = false;
Eric Anholt7d573822009-01-02 13:33:00 -08001353
Ville Syrjäläf0ab43e2015-11-09 16:48:19 +01001354 intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);
Imre Deak671dedd2014-03-05 16:20:53 +02001355
Sonika Jindal237ed862015-09-15 09:44:20 +05301356 if (force)
1357 edid = drm_get_edid(connector,
1358 intel_gmbus_get_adapter(dev_priv,
1359 intel_hdmi->ddc_bus));
Imre Deak671dedd2014-03-05 16:20:53 +02001360
Ville Syrjäläf0ab43e2015-11-09 16:48:19 +01001361 intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS);
Imre Deak671dedd2014-03-05 16:20:53 +02001362
Chris Wilson953ece6972014-09-02 20:04:01 +01001363 to_intel_connector(connector)->detect_edid = edid;
1364 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL) {
1365 intel_hdmi->rgb_quant_range_selectable =
1366 drm_rgb_quant_range_selectable(edid);
1367
1368 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
1369 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
1370 intel_hdmi->has_audio =
1371 intel_hdmi->force_audio == HDMI_AUDIO_ON;
1372
1373 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
1374 intel_hdmi->has_hdmi_sink =
1375 drm_detect_hdmi_monitor(edid);
1376
1377 connected = true;
1378 }
1379
1380 return connected;
1381}
1382
Daniel Vetter8166fce2015-10-08 21:50:57 +02001383static enum drm_connector_status
1384intel_hdmi_detect(struct drm_connector *connector, bool force)
Chris Wilson953ece6972014-09-02 20:04:01 +01001385{
Daniel Vetter8166fce2015-10-08 21:50:57 +02001386 enum drm_connector_status status;
1387 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1388 struct drm_i915_private *dev_priv = to_i915(connector->dev);
Sonika Jindal237ed862015-09-15 09:44:20 +05301389 bool live_status = false;
1390 unsigned int retry = 3;
Chris Wilson953ece6972014-09-02 20:04:01 +01001391
Daniel Vetter8166fce2015-10-08 21:50:57 +02001392 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1393 connector->base.id, connector->name);
1394
Sonika Jindal237ed862015-09-15 09:44:20 +05301395 while (!live_status && --retry) {
1396 live_status = intel_digital_port_connected(dev_priv,
1397 hdmi_to_dig_port(intel_hdmi));
1398 mdelay(10);
1399 }
1400
1401 if (!live_status)
1402 DRM_DEBUG_KMS("Live status not up!");
1403
Daniel Vetter8166fce2015-10-08 21:50:57 +02001404 intel_hdmi_unset_edid(connector);
Chris Wilson953ece6972014-09-02 20:04:01 +01001405
Daniel Vetter8166fce2015-10-08 21:50:57 +02001406 if (intel_hdmi_set_edid(connector, live_status)) {
Chris Wilson953ece6972014-09-02 20:04:01 +01001407 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1408
1409 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1410 status = connector_status_connected;
Daniel Vetter8166fce2015-10-08 21:50:57 +02001411 } else
Chris Wilson953ece6972014-09-02 20:04:01 +01001412 status = connector_status_disconnected;
1413
1414 return status;
1415}
1416
1417static void
1418intel_hdmi_force(struct drm_connector *connector)
1419{
1420 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1421
1422 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1423 connector->base.id, connector->name);
1424
1425 intel_hdmi_unset_edid(connector);
1426
1427 if (connector->status != connector_status_connected)
1428 return;
1429
Sonika Jindal237ed862015-09-15 09:44:20 +05301430 intel_hdmi_set_edid(connector, true);
Chris Wilson953ece6972014-09-02 20:04:01 +01001431 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1432}
1433
1434static int intel_hdmi_get_modes(struct drm_connector *connector)
1435{
1436 struct edid *edid;
1437
1438 edid = to_intel_connector(connector)->detect_edid;
1439 if (edid == NULL)
1440 return 0;
1441
1442 return intel_connector_update_modes(connector, edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001443}
1444
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001445static bool
1446intel_hdmi_detect_audio(struct drm_connector *connector)
1447{
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001448 bool has_audio = false;
Chris Wilson953ece6972014-09-02 20:04:01 +01001449 struct edid *edid;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001450
Chris Wilson953ece6972014-09-02 20:04:01 +01001451 edid = to_intel_connector(connector)->detect_edid;
1452 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL)
1453 has_audio = drm_detect_monitor_audio(edid);
Imre Deak671dedd2014-03-05 16:20:53 +02001454
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001455 return has_audio;
1456}
1457
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001458static int
1459intel_hdmi_set_property(struct drm_connector *connector,
Paulo Zanonied517fb2012-05-14 17:12:50 -03001460 struct drm_property *property,
1461 uint64_t val)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001462{
1463 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001464 struct intel_digital_port *intel_dig_port =
1465 hdmi_to_dig_port(intel_hdmi);
Chris Wilsone953fd72011-02-21 22:23:52 +00001466 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001467 int ret;
1468
Rob Clark662595d2012-10-11 20:36:04 -05001469 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001470 if (ret)
1471 return ret;
1472
Chris Wilson3f43c482011-05-12 22:17:24 +01001473 if (property == dev_priv->force_audio_property) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001474 enum hdmi_force_audio i = val;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001475 bool has_audio;
1476
1477 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001478 return 0;
1479
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001480 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001481
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001482 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001483 has_audio = intel_hdmi_detect_audio(connector);
1484 else
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001485 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001486
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001487 if (i == HDMI_AUDIO_OFF_DVI)
1488 intel_hdmi->has_hdmi_sink = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001489
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001490 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001491 goto done;
1492 }
1493
Chris Wilsone953fd72011-02-21 22:23:52 +00001494 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02001495 bool old_auto = intel_hdmi->color_range_auto;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001496 bool old_range = intel_hdmi->limited_color_range;
Daniel Vetterae4edb82013-04-22 17:07:23 +02001497
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001498 switch (val) {
1499 case INTEL_BROADCAST_RGB_AUTO:
1500 intel_hdmi->color_range_auto = true;
1501 break;
1502 case INTEL_BROADCAST_RGB_FULL:
1503 intel_hdmi->color_range_auto = false;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001504 intel_hdmi->limited_color_range = false;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001505 break;
1506 case INTEL_BROADCAST_RGB_LIMITED:
1507 intel_hdmi->color_range_auto = false;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001508 intel_hdmi->limited_color_range = true;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001509 break;
1510 default:
1511 return -EINVAL;
1512 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02001513
1514 if (old_auto == intel_hdmi->color_range_auto &&
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001515 old_range == intel_hdmi->limited_color_range)
Daniel Vetterae4edb82013-04-22 17:07:23 +02001516 return 0;
1517
Chris Wilsone953fd72011-02-21 22:23:52 +00001518 goto done;
1519 }
1520
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301521 if (property == connector->dev->mode_config.aspect_ratio_property) {
1522 switch (val) {
1523 case DRM_MODE_PICTURE_ASPECT_NONE:
1524 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
1525 break;
1526 case DRM_MODE_PICTURE_ASPECT_4_3:
1527 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_4_3;
1528 break;
1529 case DRM_MODE_PICTURE_ASPECT_16_9:
1530 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_16_9;
1531 break;
1532 default:
1533 return -EINVAL;
1534 }
1535 goto done;
1536 }
1537
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001538 return -EINVAL;
1539
1540done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00001541 if (intel_dig_port->base.base.crtc)
1542 intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001543
1544 return 0;
1545}
1546
Jesse Barnes13732ba2014-04-05 11:51:35 -07001547static void intel_hdmi_pre_enable(struct intel_encoder *encoder)
1548{
1549 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1550 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03001551 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Jesse Barnes13732ba2014-04-05 11:51:35 -07001552
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001553 intel_hdmi_prepare(encoder);
1554
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001555 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001556 intel_crtc->config->has_hdmi_sink,
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001557 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001558}
1559
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001560static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001561{
1562 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001563 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001564 struct drm_device *dev = encoder->base.dev;
1565 struct drm_i915_private *dev_priv = dev->dev_private;
1566 struct intel_crtc *intel_crtc =
1567 to_intel_crtc(encoder->base.crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03001568 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001569 enum dpio_channel port = vlv_dport_to_channel(dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001570 int pipe = intel_crtc->pipe;
1571 u32 val;
1572
Jesse Barnes89b667f2013-04-18 14:51:36 -07001573 /* Enable clock channels for this port */
Ville Syrjäläa5805162015-05-26 20:42:30 +03001574 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001575 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001576 val = 0;
1577 if (pipe)
1578 val |= (1<<21);
1579 else
1580 val &= ~(1<<21);
1581 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001582 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001583
1584 /* HDMI 1.0V-2dB */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001585 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0);
1586 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), 0x2b245f5f);
1587 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port), 0x5578b83a);
1588 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0c782040);
1589 vlv_dpio_write(dev_priv, pipe, VLV_TX3_DW4(port), 0x2b247878);
1590 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
1591 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1592 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001593
1594 /* Program lane clock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001595 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
1596 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001597 mutex_unlock(&dev_priv->sb_lock);
Jani Nikulab76cf762013-07-30 12:20:31 +03001598
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001599 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001600 intel_crtc->config->has_hdmi_sink,
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001601 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001602
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001603 g4x_enable_hdmi(encoder);
Jani Nikulab76cf762013-07-30 12:20:31 +03001604
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001605 vlv_wait_port_ready(dev_priv, dport, 0x0);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001606}
1607
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001608static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001609{
1610 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1611 struct drm_device *dev = encoder->base.dev;
1612 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001613 struct intel_crtc *intel_crtc =
1614 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001615 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001616 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001617
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001618 intel_hdmi_prepare(encoder);
1619
Jesse Barnes89b667f2013-04-18 14:51:36 -07001620 /* Program Tx lane resets to default */
Ville Syrjäläa5805162015-05-26 20:42:30 +03001621 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001622 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001623 DPIO_PCS_TX_LANE2_RESET |
1624 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001625 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001626 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1627 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1628 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1629 DPIO_PCS_CLK_SOFT_RESET);
1630
1631 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001632 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
1633 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
1634 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001635
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001636 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1637 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001638 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001639}
1640
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03001641static void chv_data_lane_soft_reset(struct intel_encoder *encoder,
1642 bool reset)
1643{
1644 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1645 enum dpio_channel ch = vlv_dport_to_channel(enc_to_dig_port(&encoder->base));
1646 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
1647 enum pipe pipe = crtc->pipe;
1648 uint32_t val;
1649
1650 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
1651 if (reset)
1652 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1653 else
1654 val |= DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET;
1655 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1656
1657 if (crtc->config->lane_count > 2) {
1658 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1659 if (reset)
1660 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1661 else
1662 val |= DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET;
1663 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
1664 }
1665
1666 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
1667 val |= CHV_PCS_REQ_SOFTRESET_EN;
1668 if (reset)
1669 val &= ~DPIO_PCS_CLK_SOFT_RESET;
1670 else
1671 val |= DPIO_PCS_CLK_SOFT_RESET;
1672 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
1673
1674 if (crtc->config->lane_count > 2) {
1675 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1676 val |= CHV_PCS_REQ_SOFTRESET_EN;
1677 if (reset)
1678 val &= ~DPIO_PCS_CLK_SOFT_RESET;
1679 else
1680 val |= DPIO_PCS_CLK_SOFT_RESET;
1681 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1682 }
1683}
1684
Ville Syrjälä9197c882014-04-09 13:29:05 +03001685static void chv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
1686{
1687 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1688 struct drm_device *dev = encoder->base.dev;
1689 struct drm_i915_private *dev_priv = dev->dev_private;
1690 struct intel_crtc *intel_crtc =
1691 to_intel_crtc(encoder->base.crtc);
1692 enum dpio_channel ch = vlv_dport_to_channel(dport);
1693 enum pipe pipe = intel_crtc->pipe;
1694 u32 val;
1695
Ville Syrjälä625695f2014-06-28 02:04:02 +03001696 intel_hdmi_prepare(encoder);
1697
Ville Syrjäläb0b33842015-07-08 23:45:55 +03001698 /*
1699 * Must trick the second common lane into life.
1700 * Otherwise we can't even access the PLL.
1701 */
1702 if (ch == DPIO_CH0 && pipe == PIPE_B)
1703 dport->release_cl2_override =
1704 !chv_phy_powergate_ch(dev_priv, DPIO_PHY0, DPIO_CH1, true);
1705
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001706 chv_phy_powergate_lanes(encoder, true, 0x0);
1707
Ville Syrjäläa5805162015-05-26 20:42:30 +03001708 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä9197c882014-04-09 13:29:05 +03001709
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03001710 /* Assert data lane reset */
1711 chv_data_lane_soft_reset(encoder, true);
1712
Ville Syrjäläb9e5ac32014-05-27 16:30:18 +03001713 /* program left/right clock distribution */
1714 if (pipe != PIPE_B) {
1715 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1716 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1717 if (ch == DPIO_CH0)
1718 val |= CHV_BUFLEFTENA1_FORCE;
1719 if (ch == DPIO_CH1)
1720 val |= CHV_BUFRIGHTENA1_FORCE;
1721 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1722 } else {
1723 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1724 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1725 if (ch == DPIO_CH0)
1726 val |= CHV_BUFLEFTENA2_FORCE;
1727 if (ch == DPIO_CH1)
1728 val |= CHV_BUFRIGHTENA2_FORCE;
1729 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1730 }
1731
Ville Syrjälä9197c882014-04-09 13:29:05 +03001732 /* program clock channel usage */
1733 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
1734 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1735 if (pipe != PIPE_B)
1736 val &= ~CHV_PCS_USEDCLKCHANNEL;
1737 else
1738 val |= CHV_PCS_USEDCLKCHANNEL;
1739 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
1740
1741 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
1742 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1743 if (pipe != PIPE_B)
1744 val &= ~CHV_PCS_USEDCLKCHANNEL;
1745 else
1746 val |= CHV_PCS_USEDCLKCHANNEL;
1747 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
1748
1749 /*
1750 * This a a bit weird since generally CL
1751 * matches the pipe, but here we need to
1752 * pick the CL based on the port.
1753 */
1754 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
1755 if (pipe != PIPE_B)
1756 val &= ~CHV_CMN_USEDCLKCHANNEL;
1757 else
1758 val |= CHV_CMN_USEDCLKCHANNEL;
1759 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
1760
Ville Syrjäläa5805162015-05-26 20:42:30 +03001761 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä9197c882014-04-09 13:29:05 +03001762}
1763
Ville Syrjäläd6db9952015-07-08 23:45:49 +03001764static void chv_hdmi_post_pll_disable(struct intel_encoder *encoder)
1765{
1766 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
1767 enum pipe pipe = to_intel_crtc(encoder->base.crtc)->pipe;
1768 u32 val;
1769
1770 mutex_lock(&dev_priv->sb_lock);
1771
1772 /* disable left/right clock distribution */
1773 if (pipe != PIPE_B) {
1774 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1775 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1776 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1777 } else {
1778 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1779 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1780 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1781 }
1782
1783 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001784
Ville Syrjäläb0b33842015-07-08 23:45:55 +03001785 /*
1786 * Leave the power down bit cleared for at least one
1787 * lane so that chv_powergate_phy_ch() will power
1788 * on something when the channel is otherwise unused.
1789 * When the port is off and the override is removed
1790 * the lanes power down anyway, so otherwise it doesn't
1791 * really matter what the state of power down bits is
1792 * after this.
1793 */
Ville Syrjäläe0fce782015-07-08 23:45:54 +03001794 chv_phy_powergate_lanes(encoder, false, 0x0);
Ville Syrjäläd6db9952015-07-08 23:45:49 +03001795}
1796
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001797static void vlv_hdmi_post_disable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001798{
1799 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1800 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001801 struct intel_crtc *intel_crtc =
1802 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001803 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001804 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001805
1806 /* Reset lanes to avoid HDMI flicker (VLV w/a) */
Ville Syrjäläa5805162015-05-26 20:42:30 +03001807 mutex_lock(&dev_priv->sb_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001808 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), 0x00000000);
1809 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port), 0x00e00060);
Ville Syrjäläa5805162015-05-26 20:42:30 +03001810 mutex_unlock(&dev_priv->sb_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001811}
1812
Ville Syrjälä580d3812014-04-09 13:29:00 +03001813static void chv_hdmi_post_disable(struct intel_encoder *encoder)
1814{
Ville Syrjälä580d3812014-04-09 13:29:00 +03001815 struct drm_device *dev = encoder->base.dev;
1816 struct drm_i915_private *dev_priv = dev->dev_private;
Ville Syrjälä580d3812014-04-09 13:29:00 +03001817
Ville Syrjäläa5805162015-05-26 20:42:30 +03001818 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001819
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03001820 /* Assert data lane reset */
1821 chv_data_lane_soft_reset(encoder, true);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001822
Ville Syrjäläa5805162015-05-26 20:42:30 +03001823 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001824}
1825
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001826static void chv_hdmi_pre_enable(struct intel_encoder *encoder)
1827{
1828 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Clint Taylorb4eb1562014-11-21 11:13:02 -08001829 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001830 struct drm_device *dev = encoder->base.dev;
1831 struct drm_i915_private *dev_priv = dev->dev_private;
1832 struct intel_crtc *intel_crtc =
1833 to_intel_crtc(encoder->base.crtc);
Ville Syrjälä7c5f93b2015-09-08 13:40:49 +03001834 const struct drm_display_mode *adjusted_mode = &intel_crtc->config->base.adjusted_mode;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001835 enum dpio_channel ch = vlv_dport_to_channel(dport);
1836 int pipe = intel_crtc->pipe;
Ville Syrjälä2e523e92015-04-10 18:21:27 +03001837 int data, i, stagger;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001838 u32 val;
1839
Ville Syrjäläa5805162015-05-26 20:42:30 +03001840 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001841
Ville Syrjälä570e2a72014-08-18 14:42:46 +03001842 /* allow hardware to manage TX FIFO reset source */
1843 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
1844 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1845 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
1846
1847 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
1848 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1849 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
1850
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001851 /* Program Tx latency optimal setting */
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001852 for (i = 0; i < 4; i++) {
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001853 /* Set the upar bit */
1854 data = (i == 1) ? 0x0 : 0x1;
1855 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
1856 data << DPIO_UPAR_SHIFT);
1857 }
1858
1859 /* Data lane stagger programming */
Ville Syrjälä2e523e92015-04-10 18:21:27 +03001860 if (intel_crtc->config->port_clock > 270000)
1861 stagger = 0x18;
1862 else if (intel_crtc->config->port_clock > 135000)
1863 stagger = 0xd;
1864 else if (intel_crtc->config->port_clock > 67500)
1865 stagger = 0x7;
1866 else if (intel_crtc->config->port_clock > 33750)
1867 stagger = 0x4;
1868 else
1869 stagger = 0x2;
1870
1871 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
1872 val |= DPIO_TX2_STAGGER_MASK(0x1f);
1873 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
1874
1875 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
1876 val |= DPIO_TX2_STAGGER_MASK(0x1f);
1877 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
1878
1879 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW12(ch),
1880 DPIO_LANESTAGGER_STRAP(stagger) |
1881 DPIO_LANESTAGGER_STRAP_OVRD |
1882 DPIO_TX1_STAGGER_MASK(0x1f) |
1883 DPIO_TX1_STAGGER_MULT(6) |
1884 DPIO_TX2_STAGGER_MULT(0));
1885
1886 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW12(ch),
1887 DPIO_LANESTAGGER_STRAP(stagger) |
1888 DPIO_LANESTAGGER_STRAP_OVRD |
1889 DPIO_TX1_STAGGER_MASK(0x1f) |
1890 DPIO_TX1_STAGGER_MULT(7) |
1891 DPIO_TX2_STAGGER_MULT(5));
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001892
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03001893 /* Deassert data lane reset */
1894 chv_data_lane_soft_reset(encoder, false);
1895
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001896 /* Clear calc init */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001897 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1898 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001899 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1900 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001901 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1902
1903 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1904 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001905 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1906 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001907 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001908
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001909 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW9(ch));
1910 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1911 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1912 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW9(ch), val);
1913
1914 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW9(ch));
1915 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1916 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1917 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW9(ch), val);
1918
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001919 /* FIXME: Program the support xxx V-dB */
1920 /* Use 800mV-0dB */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001921 for (i = 0; i < 4; i++) {
1922 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
1923 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
1924 val |= 128 << DPIO_SWING_DEEMPH9P5_SHIFT;
1925 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
1926 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001927
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001928 for (i = 0; i < 4; i++) {
1929 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
Ville Syrjälä67fa24b2015-07-08 23:45:48 +03001930
Ville Syrjälä1fb44502014-06-28 02:04:03 +03001931 val &= ~DPIO_SWING_MARGIN000_MASK;
1932 val |= 102 << DPIO_SWING_MARGIN000_SHIFT;
Ville Syrjälä67fa24b2015-07-08 23:45:48 +03001933
1934 /*
1935 * Supposedly this value shouldn't matter when unique transition
1936 * scale is disabled, but in fact it does matter. Let's just
1937 * always program the same value and hope it's OK.
1938 */
1939 val &= ~(0xff << DPIO_UNIQ_TRANS_SCALE_SHIFT);
1940 val |= 0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT;
1941
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001942 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
1943 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001944
Ville Syrjälä67fa24b2015-07-08 23:45:48 +03001945 /*
1946 * The document said it needs to set bit 27 for ch0 and bit 26
1947 * for ch1. Might be a typo in the doc.
1948 * For now, for this unique transition scale selection, set bit
1949 * 27 for ch0 and ch1.
1950 */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001951 for (i = 0; i < 4; i++) {
1952 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
1953 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
1954 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
1955 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001956
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001957 /* Start swing calculation */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001958 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1959 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1960 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1961
1962 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1963 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1964 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001965
Ville Syrjäläa5805162015-05-26 20:42:30 +03001966 mutex_unlock(&dev_priv->sb_lock);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001967
Clint Taylorb4eb1562014-11-21 11:13:02 -08001968 intel_hdmi->set_infoframes(&encoder->base,
Ander Conselvan de Oliveira6e3c9712015-01-15 14:55:25 +02001969 intel_crtc->config->has_hdmi_sink,
Clint Taylorb4eb1562014-11-21 11:13:02 -08001970 adjusted_mode);
1971
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001972 g4x_enable_hdmi(encoder);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001973
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001974 vlv_wait_port_ready(dev_priv, dport, 0x0);
Ville Syrjäläb0b33842015-07-08 23:45:55 +03001975
1976 /* Second common lane will stay alive on its own now */
1977 if (dport->release_cl2_override) {
1978 chv_phy_powergate_ch(dev_priv, DPIO_PHY0, DPIO_CH1, false);
1979 dport->release_cl2_override = false;
1980 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001981}
1982
Eric Anholt7d573822009-01-02 13:33:00 -08001983static void intel_hdmi_destroy(struct drm_connector *connector)
1984{
Chris Wilson10e972d2014-09-04 21:43:45 +01001985 kfree(to_intel_connector(connector)->detect_edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001986 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +08001987 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001988}
1989
Eric Anholt7d573822009-01-02 13:33:00 -08001990static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +02001991 .dpms = drm_atomic_helper_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -08001992 .detect = intel_hdmi_detect,
Chris Wilson953ece6972014-09-02 20:04:01 +01001993 .force = intel_hdmi_force,
Eric Anholt7d573822009-01-02 13:33:00 -08001994 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001995 .set_property = intel_hdmi_set_property,
Matt Roper2545e4a2015-01-22 16:51:27 -08001996 .atomic_get_property = intel_connector_atomic_get_property,
Eric Anholt7d573822009-01-02 13:33:00 -08001997 .destroy = intel_hdmi_destroy,
Matt Roperc6f95f22015-01-22 16:50:32 -08001998 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Ander Conselvan de Oliveira98969722015-03-20 16:18:06 +02001999 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Eric Anholt7d573822009-01-02 13:33:00 -08002000};
2001
2002static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
2003 .get_modes = intel_hdmi_get_modes,
2004 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01002005 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -08002006};
2007
Eric Anholt7d573822009-01-02 13:33:00 -08002008static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +01002009 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -08002010};
2011
Chris Wilson55b7d6e82010-09-19 09:29:33 +01002012static void
2013intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
2014{
Chris Wilson3f43c482011-05-12 22:17:24 +01002015 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00002016 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02002017 intel_hdmi->color_range_auto = true;
Vandana Kannan94a11dd2014-06-11 11:06:01 +05302018 intel_attach_aspect_ratio_property(connector);
2019 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01002020}
2021
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002022void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
2023 struct intel_connector *intel_connector)
Eric Anholt7d573822009-01-02 13:33:00 -08002024{
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002025 struct drm_connector *connector = &intel_connector->base;
2026 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
2027 struct intel_encoder *intel_encoder = &intel_dig_port->base;
2028 struct drm_device *dev = intel_encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -08002029 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02002030 enum port port = intel_dig_port->port;
Xiong Zhang11c1b652015-08-17 16:04:04 +08002031 uint8_t alternate_ddc_pin;
Eric Anholt7d573822009-01-02 13:33:00 -08002032
Eric Anholt7d573822009-01-02 13:33:00 -08002033 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -04002034 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -08002035 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
2036
Peter Rossc3febcc2012-01-28 14:49:26 +01002037 connector->interlace_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08002038 connector->doublescan_allowed = 0;
Damien Lespiau573e74a2013-09-25 16:45:40 +01002039 connector->stereo_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08002040
Daniel Vetter08d644a2012-07-12 20:19:59 +02002041 switch (port) {
2042 case PORT_B:
Jani Nikula4c272832015-04-01 10:58:05 +03002043 if (IS_BROXTON(dev_priv))
2044 intel_hdmi->ddc_bus = GMBUS_PIN_1_BXT;
2045 else
2046 intel_hdmi->ddc_bus = GMBUS_PIN_DPB;
Sonika Jindalcf1d5882015-08-10 10:35:36 +05302047 /*
2048 * On BXT A0/A1, sw needs to activate DDIA HPD logic and
2049 * interrupts to check the external panel connection.
2050 */
Jani Nikulae87a0052015-10-20 15:22:02 +03002051 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1))
Sonika Jindalcf1d5882015-08-10 10:35:36 +05302052 intel_encoder->hpd_pin = HPD_PORT_A;
2053 else
2054 intel_encoder->hpd_pin = HPD_PORT_B;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002055 break;
2056 case PORT_C:
Jani Nikula4c272832015-04-01 10:58:05 +03002057 if (IS_BROXTON(dev_priv))
2058 intel_hdmi->ddc_bus = GMBUS_PIN_2_BXT;
2059 else
2060 intel_hdmi->ddc_bus = GMBUS_PIN_DPC;
Egbert Eich1d843f92013-02-25 12:06:49 -05002061 intel_encoder->hpd_pin = HPD_PORT_C;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002062 break;
2063 case PORT_D:
Jani Nikula4c272832015-04-01 10:58:05 +03002064 if (WARN_ON(IS_BROXTON(dev_priv)))
2065 intel_hdmi->ddc_bus = GMBUS_PIN_DISABLED;
2066 else if (IS_CHERRYVIEW(dev_priv))
Jani Nikula988c7012015-03-27 00:20:19 +02002067 intel_hdmi->ddc_bus = GMBUS_PIN_DPD_CHV;
Ville Syrjäläc0c35322014-04-09 13:28:52 +03002068 else
Jani Nikula988c7012015-03-27 00:20:19 +02002069 intel_hdmi->ddc_bus = GMBUS_PIN_DPD;
Egbert Eich1d843f92013-02-25 12:06:49 -05002070 intel_encoder->hpd_pin = HPD_PORT_D;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002071 break;
Xiong Zhang11c1b652015-08-17 16:04:04 +08002072 case PORT_E:
2073 /* On SKL PORT E doesn't have seperate GMBUS pin
2074 * We rely on VBT to set a proper alternate GMBUS pin. */
2075 alternate_ddc_pin =
2076 dev_priv->vbt.ddi_port_info[PORT_E].alternate_ddc_pin;
2077 switch (alternate_ddc_pin) {
2078 case DDC_PIN_B:
2079 intel_hdmi->ddc_bus = GMBUS_PIN_DPB;
2080 break;
2081 case DDC_PIN_C:
2082 intel_hdmi->ddc_bus = GMBUS_PIN_DPC;
2083 break;
2084 case DDC_PIN_D:
2085 intel_hdmi->ddc_bus = GMBUS_PIN_DPD;
2086 break;
2087 default:
2088 MISSING_CASE(alternate_ddc_pin);
2089 }
2090 intel_encoder->hpd_pin = HPD_PORT_E;
2091 break;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002092 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05002093 intel_encoder->hpd_pin = HPD_PORT_A;
Daniel Vetter08d644a2012-07-12 20:19:59 +02002094 /* Internal port only for eDP. */
2095 default:
Eugeni Dodonov6e4c1672012-05-09 15:37:13 -03002096 BUG();
Ma Lingf8aed702009-08-24 13:50:24 +08002097 }
Eric Anholt7d573822009-01-02 13:33:00 -08002098
Jesse Barnes7637bfd2013-03-08 10:46:01 -08002099 if (IS_VALLEYVIEW(dev)) {
Shobhit Kumar90b107c2012-03-28 13:39:32 -07002100 intel_hdmi->write_infoframe = vlv_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03002101 intel_hdmi->set_infoframes = vlv_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002102 intel_hdmi->infoframe_enabled = vlv_infoframe_enabled;
Sonika Jindalb98856a2014-07-22 11:13:46 +05302103 } else if (IS_G4X(dev)) {
Jesse Barnes7637bfd2013-03-08 10:46:01 -08002104 intel_hdmi->write_infoframe = g4x_write_infoframe;
2105 intel_hdmi->set_infoframes = g4x_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002106 intel_hdmi->infoframe_enabled = g4x_infoframe_enabled;
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03002107 } else if (HAS_DDI(dev)) {
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -03002108 intel_hdmi->write_infoframe = hsw_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03002109 intel_hdmi->set_infoframes = hsw_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002110 intel_hdmi->infoframe_enabled = hsw_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03002111 } else if (HAS_PCH_IBX(dev)) {
2112 intel_hdmi->write_infoframe = ibx_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03002113 intel_hdmi->set_infoframes = ibx_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002114 intel_hdmi->infoframe_enabled = ibx_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03002115 } else {
2116 intel_hdmi->write_infoframe = cpt_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03002117 intel_hdmi->set_infoframes = cpt_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08002118 intel_hdmi->infoframe_enabled = cpt_infoframe_enabled;
Jesse Barnes64a8fc02011-09-22 11:16:00 +05302119 }
Jesse Barnes45187ac2011-08-03 09:22:55 -07002120
Paulo Zanoniaffa9352012-11-23 15:30:39 -02002121 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02002122 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
2123 else
2124 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak4932e2c2014-02-11 17:12:48 +02002125 intel_connector->unregister = intel_connector_unregister;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002126
2127 intel_hdmi_add_properties(intel_hdmi, connector);
2128
2129 intel_connector_attach_encoder(intel_connector, intel_encoder);
Thomas Wood34ea3d32014-05-29 16:57:41 +01002130 drm_connector_register(connector);
Shashank Sharmad8b4c432015-09-04 18:56:11 +05302131 intel_hdmi->attached_connector = intel_connector;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002132
2133 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
2134 * 0xd. Failure to do so will result in spurious interrupts being
2135 * generated on the port when a cable is not attached.
2136 */
2137 if (IS_G4X(dev) && !IS_GM45(dev)) {
2138 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
2139 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
2140 }
2141}
2142
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002143void intel_hdmi_init(struct drm_device *dev,
2144 i915_reg_t hdmi_reg, enum port port)
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002145{
2146 struct intel_digital_port *intel_dig_port;
2147 struct intel_encoder *intel_encoder;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002148 struct intel_connector *intel_connector;
2149
Daniel Vetterb14c5672013-09-19 12:18:32 +02002150 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002151 if (!intel_dig_port)
2152 return;
2153
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03002154 intel_connector = intel_connector_alloc();
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002155 if (!intel_connector) {
2156 kfree(intel_dig_port);
2157 return;
2158 }
2159
2160 intel_encoder = &intel_dig_port->base;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002161
2162 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
2163 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002164
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01002165 intel_encoder->compute_config = intel_hdmi_compute_config;
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03002166 if (HAS_PCH_SPLIT(dev)) {
2167 intel_encoder->disable = pch_disable_hdmi;
2168 intel_encoder->post_disable = pch_post_disable_hdmi;
2169 } else {
2170 intel_encoder->disable = g4x_disable_hdmi;
2171 }
Paulo Zanoni00c09d72012-10-26 19:05:52 -02002172 intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07002173 intel_encoder->get_config = intel_hdmi_get_config;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002174 if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03002175 intel_encoder->pre_pll_enable = chv_hdmi_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002176 intel_encoder->pre_enable = chv_hdmi_pre_enable;
2177 intel_encoder->enable = vlv_enable_hdmi;
Ville Syrjälä580d3812014-04-09 13:29:00 +03002178 intel_encoder->post_disable = chv_hdmi_post_disable;
Ville Syrjäläd6db9952015-07-08 23:45:49 +03002179 intel_encoder->post_pll_disable = chv_hdmi_post_pll_disable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03002180 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee9514ac62013-10-16 17:07:41 +08002181 intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
2182 intel_encoder->pre_enable = vlv_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03002183 intel_encoder->enable = vlv_enable_hdmi;
Chon Ming Lee9514ac62013-10-16 17:07:41 +08002184 intel_encoder->post_disable = vlv_hdmi_post_disable;
Jani Nikulab76cf762013-07-30 12:20:31 +03002185 } else {
Jesse Barnes13732ba2014-04-05 11:51:35 -07002186 intel_encoder->pre_enable = intel_hdmi_pre_enable;
Ville Syrjäläd1b15892015-05-05 17:06:19 +03002187 if (HAS_PCH_CPT(dev))
2188 intel_encoder->enable = cpt_enable_hdmi;
Ville Syrjäläbf868c72015-05-05 17:06:23 +03002189 else if (HAS_PCH_IBX(dev))
2190 intel_encoder->enable = ibx_enable_hdmi;
Ville Syrjäläd1b15892015-05-05 17:06:19 +03002191 else
Ville Syrjäläbf868c72015-05-05 17:06:23 +03002192 intel_encoder->enable = g4x_enable_hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07002193 }
Daniel Vetter5ab432e2012-06-30 08:59:56 +02002194
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002195 intel_encoder->type = INTEL_OUTPUT_HDMI;
Ville Syrjälä882ec382014-04-28 14:07:43 +03002196 if (IS_CHERRYVIEW(dev)) {
2197 if (port == PORT_D)
2198 intel_encoder->crtc_mask = 1 << 2;
2199 else
2200 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
2201 } else {
2202 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
2203 }
Ville Syrjälä301ea742014-03-03 16:15:30 +02002204 intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
Ville Syrjäläc6f14952014-03-03 16:15:31 +02002205 /*
2206 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
2207 * to work on real hardware. And since g4x can send infoframes to
2208 * only one port anyway, nothing is lost by allowing it.
2209 */
2210 if (IS_G4X(dev))
2211 intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -08002212
Paulo Zanoni174edf12012-10-26 19:05:50 -02002213 intel_dig_port->port = port;
Paulo Zanonib242b7f2013-02-18 19:00:26 -03002214 intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002215 intel_dig_port->dp.output_reg = INVALID_MMIO_REG;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01002216
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002217 intel_hdmi_init_connector(intel_dig_port, intel_connector);
Eric Anholt7d573822009-01-02 13:33:00 -08002218}