blob: 19bd13f53729fd3f052453933681cdb3d36390bb [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);
Chris Wilsonfac5e232016-07-04 11:34:36 +010050 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetterafba0182012-06-12 16:36:45 +020051 uint32_t enabled_bits;
52
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +010053 enabled_bits = HAS_DDI(dev_priv) ? DDI_BUF_CTL_ENABLE : SDVO_ENABLE;
Daniel Vetterafba0182012-06-12 16:36:45 +020054
Paulo Zanonib242b7f2013-02-18 19:00:26 -030055 WARN(I915_READ(intel_hdmi->hdmi_reg) & enabled_bits,
Daniel Vetterafba0182012-06-12 16:36:45 +020056 "HDMI port enabled, expecting disabled\n");
57}
58
Eugeni Dodonovf5bbfca2012-05-09 15:37:30 -030059struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder)
Chris Wilsonea5b2132010-08-04 13:50:23 +010060{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020061 struct intel_digital_port *intel_dig_port =
62 container_of(encoder, struct intel_digital_port, base.base);
63 return &intel_dig_port->hdmi;
Chris Wilsonea5b2132010-08-04 13:50:23 +010064}
65
Chris Wilsondf0e9242010-09-09 16:20:55 +010066static struct intel_hdmi *intel_attached_hdmi(struct drm_connector *connector)
67{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020068 return enc_to_intel_hdmi(&intel_attached_encoder(connector)->base);
Chris Wilsondf0e9242010-09-09 16:20:55 +010069}
70
Damien Lespiau178f7362013-08-06 20:32:18 +010071static u32 g4x_infoframe_index(enum hdmi_infoframe_type type)
David Härdeman3c17fe42010-09-24 21:44:32 +020072{
Damien Lespiau178f7362013-08-06 20:32:18 +010073 switch (type) {
74 case HDMI_INFOFRAME_TYPE_AVI:
Paulo Zanonied517fb2012-05-14 17:12:50 -030075 return VIDEO_DIP_SELECT_AVI;
Damien Lespiau178f7362013-08-06 20:32:18 +010076 case HDMI_INFOFRAME_TYPE_SPD:
Paulo Zanonied517fb2012-05-14 17:12:50 -030077 return VIDEO_DIP_SELECT_SPD;
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +010078 case HDMI_INFOFRAME_TYPE_VENDOR:
79 return VIDEO_DIP_SELECT_VENDOR;
Jesse Barnes45187ac2011-08-03 09:22:55 -070080 default:
Ville Syrjäläffc85da2015-12-16 18:10:00 +020081 MISSING_CASE(type);
Paulo Zanonied517fb2012-05-14 17:12:50 -030082 return 0;
Jesse Barnes45187ac2011-08-03 09:22:55 -070083 }
Jesse Barnes45187ac2011-08-03 09:22:55 -070084}
85
Damien Lespiau178f7362013-08-06 20:32:18 +010086static u32 g4x_infoframe_enable(enum hdmi_infoframe_type type)
Jesse Barnes45187ac2011-08-03 09:22:55 -070087{
Damien Lespiau178f7362013-08-06 20:32:18 +010088 switch (type) {
89 case HDMI_INFOFRAME_TYPE_AVI:
Paulo Zanonied517fb2012-05-14 17:12:50 -030090 return VIDEO_DIP_ENABLE_AVI;
Damien Lespiau178f7362013-08-06 20:32:18 +010091 case HDMI_INFOFRAME_TYPE_SPD:
Paulo Zanonied517fb2012-05-14 17:12:50 -030092 return VIDEO_DIP_ENABLE_SPD;
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +010093 case HDMI_INFOFRAME_TYPE_VENDOR:
94 return VIDEO_DIP_ENABLE_VENDOR;
Paulo Zanonifa193ff2012-05-04 17:18:20 -030095 default:
Ville Syrjäläffc85da2015-12-16 18:10:00 +020096 MISSING_CASE(type);
Paulo Zanonied517fb2012-05-14 17:12:50 -030097 return 0;
Paulo Zanonifa193ff2012-05-04 17:18:20 -030098 }
Paulo Zanonifa193ff2012-05-04 17:18:20 -030099}
100
Damien Lespiau178f7362013-08-06 20:32:18 +0100101static u32 hsw_infoframe_enable(enum hdmi_infoframe_type type)
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300102{
Damien Lespiau178f7362013-08-06 20:32:18 +0100103 switch (type) {
104 case HDMI_INFOFRAME_TYPE_AVI:
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300105 return VIDEO_DIP_ENABLE_AVI_HSW;
Damien Lespiau178f7362013-08-06 20:32:18 +0100106 case HDMI_INFOFRAME_TYPE_SPD:
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300107 return VIDEO_DIP_ENABLE_SPD_HSW;
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100108 case HDMI_INFOFRAME_TYPE_VENDOR:
109 return VIDEO_DIP_ENABLE_VS_HSW;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300110 default:
Ville Syrjäläffc85da2015-12-16 18:10:00 +0200111 MISSING_CASE(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300112 return 0;
113 }
114}
115
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200116static i915_reg_t
117hsw_dip_data_reg(struct drm_i915_private *dev_priv,
118 enum transcoder cpu_transcoder,
119 enum hdmi_infoframe_type type,
120 int i)
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300121{
Damien Lespiau178f7362013-08-06 20:32:18 +0100122 switch (type) {
123 case HDMI_INFOFRAME_TYPE_AVI:
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300124 return HSW_TVIDEO_DIP_AVI_DATA(cpu_transcoder, i);
Damien Lespiau178f7362013-08-06 20:32:18 +0100125 case HDMI_INFOFRAME_TYPE_SPD:
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300126 return HSW_TVIDEO_DIP_SPD_DATA(cpu_transcoder, i);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100127 case HDMI_INFOFRAME_TYPE_VENDOR:
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300128 return HSW_TVIDEO_DIP_VS_DATA(cpu_transcoder, i);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300129 default:
Ville Syrjäläffc85da2015-12-16 18:10:00 +0200130 MISSING_CASE(type);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200131 return INVALID_MMIO_REG;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300132 }
133}
134
Daniel Vettera3da1df2012-05-08 15:19:06 +0200135static void g4x_write_infoframe(struct drm_encoder *encoder,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100136 const struct intel_crtc_state *crtc_state,
Damien Lespiau178f7362013-08-06 20:32:18 +0100137 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200138 const void *frame, ssize_t len)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700139{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200140 const uint32_t *data = frame;
David Härdeman3c17fe42010-09-24 21:44:32 +0200141 struct drm_device *dev = encoder->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100142 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300143 u32 val = I915_READ(VIDEO_DIP_CTL);
Damien Lespiau178f7362013-08-06 20:32:18 +0100144 int i;
David Härdeman3c17fe42010-09-24 21:44:32 +0200145
Paulo Zanoni822974a2012-05-28 16:42:51 -0300146 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
147
Paulo Zanoni1d4f85a2012-05-04 17:18:18 -0300148 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100149 val |= g4x_infoframe_index(type);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700150
Damien Lespiau178f7362013-08-06 20:32:18 +0100151 val &= ~g4x_infoframe_enable(type);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300152
153 I915_WRITE(VIDEO_DIP_CTL, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700154
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300155 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700156 for (i = 0; i < len; i += 4) {
David Härdeman3c17fe42010-09-24 21:44:32 +0200157 I915_WRITE(VIDEO_DIP_DATA, *data);
158 data++;
159 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300160 /* Write every possible data byte to force correct ECC calculation. */
161 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
162 I915_WRITE(VIDEO_DIP_DATA, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300163 mmiowb();
David Härdeman3c17fe42010-09-24 21:44:32 +0200164
Damien Lespiau178f7362013-08-06 20:32:18 +0100165 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300166 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200167 val |= VIDEO_DIP_FREQ_VSYNC;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700168
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300169 I915_WRITE(VIDEO_DIP_CTL, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300170 POSTING_READ(VIDEO_DIP_CTL);
David Härdeman3c17fe42010-09-24 21:44:32 +0200171}
172
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200173static bool g4x_infoframe_enabled(struct drm_encoder *encoder,
174 const struct intel_crtc_state *pipe_config)
Jesse Barnese43823e2014-11-05 14:26:08 -0800175{
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200176 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Jesse Barnes89a35ec2014-11-20 13:24:13 -0800177 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Jesse Barnese43823e2014-11-05 14:26:08 -0800178 u32 val = I915_READ(VIDEO_DIP_CTL);
179
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300180 if ((val & VIDEO_DIP_ENABLE) == 0)
181 return false;
Jesse Barnes89a35ec2014-11-20 13:24:13 -0800182
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300183 if ((val & VIDEO_DIP_PORT_MASK) != VIDEO_DIP_PORT(intel_dig_port->port))
184 return false;
185
186 return val & (VIDEO_DIP_ENABLE_AVI |
187 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
Jesse Barnese43823e2014-11-05 14:26:08 -0800188}
189
Paulo Zanonifdf12502012-05-04 17:18:24 -0300190static void ibx_write_infoframe(struct drm_encoder *encoder,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100191 const struct intel_crtc_state *crtc_state,
Damien Lespiau178f7362013-08-06 20:32:18 +0100192 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200193 const void *frame, ssize_t len)
Paulo Zanonifdf12502012-05-04 17:18:24 -0300194{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200195 const uint32_t *data = frame;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300196 struct drm_device *dev = encoder->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100197 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstac240282016-11-23 15:57:00 +0100198 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200199 i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300200 u32 val = I915_READ(reg);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200201 int i;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300202
Paulo Zanoni822974a2012-05-28 16:42:51 -0300203 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
204
Paulo Zanonifdf12502012-05-04 17:18:24 -0300205 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100206 val |= g4x_infoframe_index(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300207
Damien Lespiau178f7362013-08-06 20:32:18 +0100208 val &= ~g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300209
210 I915_WRITE(reg, val);
211
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300212 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300213 for (i = 0; i < len; i += 4) {
214 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
215 data++;
216 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300217 /* Write every possible data byte to force correct ECC calculation. */
218 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
219 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300220 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300221
Damien Lespiau178f7362013-08-06 20:32:18 +0100222 val |= g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300223 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200224 val |= VIDEO_DIP_FREQ_VSYNC;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300225
226 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300227 POSTING_READ(reg);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300228}
229
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200230static bool ibx_infoframe_enabled(struct drm_encoder *encoder,
231 const struct intel_crtc_state *pipe_config)
Jesse Barnese43823e2014-11-05 14:26:08 -0800232{
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200233 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Jani Nikula052f62f2015-04-29 15:30:07 +0300234 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200235 enum pipe pipe = to_intel_crtc(pipe_config->base.crtc)->pipe;
236 i915_reg_t reg = TVIDEO_DIP_CTL(pipe);
Jesse Barnese43823e2014-11-05 14:26:08 -0800237 u32 val = I915_READ(reg);
238
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300239 if ((val & VIDEO_DIP_ENABLE) == 0)
240 return false;
Jani Nikula052f62f2015-04-29 15:30:07 +0300241
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300242 if ((val & VIDEO_DIP_PORT_MASK) != VIDEO_DIP_PORT(intel_dig_port->port))
243 return false;
244
245 return val & (VIDEO_DIP_ENABLE_AVI |
246 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
247 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Jesse Barnese43823e2014-11-05 14:26:08 -0800248}
249
Paulo Zanonifdf12502012-05-04 17:18:24 -0300250static void cpt_write_infoframe(struct drm_encoder *encoder,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100251 const struct intel_crtc_state *crtc_state,
Damien Lespiau178f7362013-08-06 20:32:18 +0100252 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200253 const void *frame, ssize_t len)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700254{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200255 const uint32_t *data = frame;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700256 struct drm_device *dev = encoder->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100257 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstac240282016-11-23 15:57:00 +0100258 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200259 i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300260 u32 val = I915_READ(reg);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200261 int i;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700262
Paulo Zanoni822974a2012-05-28 16:42:51 -0300263 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
264
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530265 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100266 val |= g4x_infoframe_index(type);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700267
Paulo Zanoniecb97852012-05-04 17:18:21 -0300268 /* The DIP control register spec says that we need to update the AVI
269 * infoframe without clearing its enable bit */
Damien Lespiau178f7362013-08-06 20:32:18 +0100270 if (type != HDMI_INFOFRAME_TYPE_AVI)
271 val &= ~g4x_infoframe_enable(type);
Paulo Zanoniecb97852012-05-04 17:18:21 -0300272
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300273 I915_WRITE(reg, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700274
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300275 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700276 for (i = 0; i < len; i += 4) {
277 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
278 data++;
279 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300280 /* Write every possible data byte to force correct ECC calculation. */
281 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
282 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300283 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700284
Damien Lespiau178f7362013-08-06 20:32:18 +0100285 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300286 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200287 val |= VIDEO_DIP_FREQ_VSYNC;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700288
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300289 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300290 POSTING_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700291}
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700292
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200293static bool cpt_infoframe_enabled(struct drm_encoder *encoder,
294 const struct intel_crtc_state *pipe_config)
Jesse Barnese43823e2014-11-05 14:26:08 -0800295{
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200296 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
297 enum pipe pipe = to_intel_crtc(pipe_config->base.crtc)->pipe;
298 u32 val = I915_READ(TVIDEO_DIP_CTL(pipe));
Jesse Barnese43823e2014-11-05 14:26:08 -0800299
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300300 if ((val & VIDEO_DIP_ENABLE) == 0)
301 return false;
302
303 return val & (VIDEO_DIP_ENABLE_AVI |
304 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
305 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Jesse Barnese43823e2014-11-05 14:26:08 -0800306}
307
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700308static void vlv_write_infoframe(struct drm_encoder *encoder,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100309 const struct intel_crtc_state *crtc_state,
Damien Lespiau178f7362013-08-06 20:32:18 +0100310 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200311 const void *frame, ssize_t len)
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700312{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200313 const uint32_t *data = frame;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700314 struct drm_device *dev = encoder->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100315 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstac240282016-11-23 15:57:00 +0100316 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200317 i915_reg_t reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300318 u32 val = I915_READ(reg);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200319 int i;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700320
Paulo Zanoni822974a2012-05-28 16:42:51 -0300321 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
322
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700323 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100324 val |= g4x_infoframe_index(type);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700325
Damien Lespiau178f7362013-08-06 20:32:18 +0100326 val &= ~g4x_infoframe_enable(type);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300327
328 I915_WRITE(reg, val);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700329
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300330 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700331 for (i = 0; i < len; i += 4) {
332 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
333 data++;
334 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300335 /* Write every possible data byte to force correct ECC calculation. */
336 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
337 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300338 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700339
Damien Lespiau178f7362013-08-06 20:32:18 +0100340 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300341 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200342 val |= VIDEO_DIP_FREQ_VSYNC;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700343
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300344 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300345 POSTING_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700346}
347
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200348static bool vlv_infoframe_enabled(struct drm_encoder *encoder,
349 const struct intel_crtc_state *pipe_config)
Jesse Barnese43823e2014-11-05 14:26:08 -0800350{
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200351 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Jesse Barnes535afa22015-04-15 16:52:29 -0700352 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200353 enum pipe pipe = to_intel_crtc(pipe_config->base.crtc)->pipe;
354 u32 val = I915_READ(VLV_TVIDEO_DIP_CTL(pipe));
Jesse Barnese43823e2014-11-05 14:26:08 -0800355
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300356 if ((val & VIDEO_DIP_ENABLE) == 0)
357 return false;
Jesse Barnes535afa22015-04-15 16:52:29 -0700358
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300359 if ((val & VIDEO_DIP_PORT_MASK) != VIDEO_DIP_PORT(intel_dig_port->port))
360 return false;
361
362 return val & (VIDEO_DIP_ENABLE_AVI |
363 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
364 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Jesse Barnese43823e2014-11-05 14:26:08 -0800365}
366
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300367static void hsw_write_infoframe(struct drm_encoder *encoder,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100368 const struct intel_crtc_state *crtc_state,
Damien Lespiau178f7362013-08-06 20:32:18 +0100369 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200370 const void *frame, ssize_t len)
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300371{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200372 const uint32_t *data = frame;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300373 struct drm_device *dev = encoder->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100374 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstac240282016-11-23 15:57:00 +0100375 enum transcoder cpu_transcoder = crtc_state->cpu_transcoder;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200376 i915_reg_t ctl_reg = HSW_TVIDEO_DIP_CTL(cpu_transcoder);
377 i915_reg_t data_reg;
Damien Lespiau178f7362013-08-06 20:32:18 +0100378 int i;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300379 u32 val = I915_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300380
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300381 data_reg = hsw_dip_data_reg(dev_priv, cpu_transcoder, type, 0);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300382
Damien Lespiau178f7362013-08-06 20:32:18 +0100383 val &= ~hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300384 I915_WRITE(ctl_reg, val);
385
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300386 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300387 for (i = 0; i < len; i += 4) {
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300388 I915_WRITE(hsw_dip_data_reg(dev_priv, cpu_transcoder,
389 type, i >> 2), *data);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300390 data++;
391 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300392 /* Write every possible data byte to force correct ECC calculation. */
393 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
Ville Syrjälä436c6d42015-09-18 20:03:37 +0300394 I915_WRITE(hsw_dip_data_reg(dev_priv, cpu_transcoder,
395 type, i >> 2), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300396 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300397
Damien Lespiau178f7362013-08-06 20:32:18 +0100398 val |= hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300399 I915_WRITE(ctl_reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300400 POSTING_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300401}
402
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200403static bool hsw_infoframe_enabled(struct drm_encoder *encoder,
404 const struct intel_crtc_state *pipe_config)
Jesse Barnese43823e2014-11-05 14:26:08 -0800405{
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200406 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
407 u32 val = I915_READ(HSW_TVIDEO_DIP_CTL(pipe_config->cpu_transcoder));
Jesse Barnese43823e2014-11-05 14:26:08 -0800408
Ville Syrjäläec1dc602015-05-05 17:06:25 +0300409 return val & (VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_AVI_HSW |
410 VIDEO_DIP_ENABLE_GCP_HSW | VIDEO_DIP_ENABLE_VS_HSW |
411 VIDEO_DIP_ENABLE_GMP_HSW | VIDEO_DIP_ENABLE_SPD_HSW);
Jesse Barnese43823e2014-11-05 14:26:08 -0800412}
413
Damien Lespiau5adaea72013-08-06 20:32:19 +0100414/*
415 * The data we write to the DIP data buffer registers is 1 byte bigger than the
416 * HDMI infoframe size because of an ECC/reserved byte at position 3 (starting
417 * at 0). It's also a byte used by DisplayPort so the same DIP registers can be
418 * used for both technologies.
419 *
420 * DW0: Reserved/ECC/DP | HB2 | HB1 | HB0
421 * DW1: DB3 | DB2 | DB1 | DB0
422 * DW2: DB7 | DB6 | DB5 | DB4
423 * DW3: ...
424 *
425 * (HB is Header Byte, DB is Data Byte)
426 *
427 * The hdmi pack() functions don't know about that hardware specific hole so we
428 * trick them by giving an offset into the buffer and moving back the header
429 * bytes by one.
430 */
Damien Lespiau9198ee52013-08-06 20:32:24 +0100431static void intel_write_infoframe(struct drm_encoder *encoder,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100432 const struct intel_crtc_state *crtc_state,
Damien Lespiau9198ee52013-08-06 20:32:24 +0100433 union hdmi_infoframe *frame)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700434{
435 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100436 uint8_t buffer[VIDEO_DIP_DATA_SIZE];
437 ssize_t len;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700438
Damien Lespiau5adaea72013-08-06 20:32:19 +0100439 /* see comment above for the reason for this offset */
440 len = hdmi_infoframe_pack(frame, buffer + 1, sizeof(buffer) - 1);
441 if (len < 0)
442 return;
443
444 /* Insert the 'hole' (see big comment above) at position 3 */
445 buffer[0] = buffer[1];
446 buffer[1] = buffer[2];
447 buffer[2] = buffer[3];
448 buffer[3] = 0;
449 len++;
450
Maarten Lankhorstac240282016-11-23 15:57:00 +0100451 intel_hdmi->write_infoframe(encoder, crtc_state, frame->any.type, buffer, len);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700452}
453
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300454static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100455 const struct intel_crtc_state *crtc_state)
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700456{
Ville Syrjäläabedc072013-01-17 16:31:31 +0200457 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100458 union hdmi_infoframe frame;
459 int ret;
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700460
Damien Lespiau5adaea72013-08-06 20:32:19 +0100461 ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100462 &crtc_state->base.adjusted_mode);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100463 if (ret < 0) {
464 DRM_ERROR("couldn't fill AVI infoframe\n");
465 return;
466 }
Paulo Zanonic846b612012-04-13 16:31:41 -0300467
Ville Syrjäläabedc072013-01-17 16:31:31 +0200468 if (intel_hdmi->rgb_quant_range_selectable) {
Maarten Lankhorstac240282016-11-23 15:57:00 +0100469 if (crtc_state->limited_color_range)
Damien Lespiau5adaea72013-08-06 20:32:19 +0100470 frame.avi.quantization_range =
471 HDMI_QUANTIZATION_RANGE_LIMITED;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200472 else
Damien Lespiau5adaea72013-08-06 20:32:19 +0100473 frame.avi.quantization_range =
474 HDMI_QUANTIZATION_RANGE_FULL;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200475 }
476
Maarten Lankhorstac240282016-11-23 15:57:00 +0100477 intel_write_infoframe(encoder, crtc_state, &frame);
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700478}
479
Maarten Lankhorstac240282016-11-23 15:57:00 +0100480static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder,
481 const struct intel_crtc_state *crtc_state)
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700482{
Damien Lespiau5adaea72013-08-06 20:32:19 +0100483 union hdmi_infoframe frame;
484 int ret;
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700485
Damien Lespiau5adaea72013-08-06 20:32:19 +0100486 ret = hdmi_spd_infoframe_init(&frame.spd, "Intel", "Integrated gfx");
487 if (ret < 0) {
488 DRM_ERROR("couldn't fill SPD infoframe\n");
489 return;
490 }
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700491
Damien Lespiau5adaea72013-08-06 20:32:19 +0100492 frame.spd.sdi = HDMI_SPD_SDI_PC;
493
Maarten Lankhorstac240282016-11-23 15:57:00 +0100494 intel_write_infoframe(encoder, crtc_state, &frame);
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700495}
496
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100497static void
498intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100499 const struct intel_crtc_state *crtc_state)
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100500{
501 union hdmi_infoframe frame;
502 int ret;
503
504 ret = drm_hdmi_vendor_infoframe_from_display_mode(&frame.vendor.hdmi,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100505 &crtc_state->base.adjusted_mode);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100506 if (ret < 0)
507 return;
508
Maarten Lankhorstac240282016-11-23 15:57:00 +0100509 intel_write_infoframe(encoder, crtc_state, &frame);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100510}
511
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300512static void g4x_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200513 bool enable,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100514 const struct intel_crtc_state *crtc_state,
515 const struct drm_connector_state *conn_state)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300516{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100517 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200518 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
519 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200520 i915_reg_t reg = VIDEO_DIP_CTL;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300521 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200522 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300523
Daniel Vetterafba0182012-06-12 16:36:45 +0200524 assert_hdmi_port_disabled(intel_hdmi);
525
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300526 /* If the registers were not initialized yet, they might be zeroes,
527 * which means we're selecting the AVI DIP and we're setting its
528 * frequency to once. This seems to really confuse the HW and make
529 * things stop working (the register spec says the AVI always needs to
530 * be sent every VSync). So here we avoid writing to the register more
531 * than we need and also explicitly select the AVI DIP and explicitly
532 * set its frequency to every VSync. Avoiding to write it twice seems to
533 * be enough to solve the problem, but being defensive shouldn't hurt us
534 * either. */
535 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
536
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200537 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300538 if (!(val & VIDEO_DIP_ENABLE))
539 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300540 if (port != (val & VIDEO_DIP_PORT_MASK)) {
541 DRM_DEBUG_KMS("video DIP still enabled on port %c\n",
542 (val & VIDEO_DIP_PORT_MASK) >> 29);
543 return;
544 }
545 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
546 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300547 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300548 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300549 return;
550 }
551
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300552 if (port != (val & VIDEO_DIP_PORT_MASK)) {
553 if (val & VIDEO_DIP_ENABLE) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300554 DRM_DEBUG_KMS("video DIP already enabled on port %c\n",
555 (val & VIDEO_DIP_PORT_MASK) >> 29);
556 return;
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300557 }
558 val &= ~VIDEO_DIP_PORT_MASK;
559 val |= port;
560 }
561
Paulo Zanoni822974a2012-05-28 16:42:51 -0300562 val |= VIDEO_DIP_ENABLE;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300563 val &= ~(VIDEO_DIP_ENABLE_AVI |
564 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_SPD);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300565
Paulo Zanonif278d972012-05-28 16:42:50 -0300566 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300567 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300568
Maarten Lankhorstac240282016-11-23 15:57:00 +0100569 intel_hdmi_set_avi_infoframe(encoder, crtc_state);
570 intel_hdmi_set_spd_infoframe(encoder, crtc_state);
571 intel_hdmi_set_hdmi_infoframe(encoder, crtc_state);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300572}
573
Maarten Lankhorstac240282016-11-23 15:57:00 +0100574static bool hdmi_sink_is_deep_color(const struct drm_connector_state *conn_state)
Ville Syrjälä6d674152015-05-05 17:06:20 +0300575{
Maarten Lankhorstac240282016-11-23 15:57:00 +0100576 struct drm_connector *connector = conn_state->connector;
Ville Syrjälä6d674152015-05-05 17:06:20 +0300577
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 */
Ville Syrjälä6d674152015-05-05 17:06:20 +0300583
Maarten Lankhorstac240282016-11-23 15:57:00 +0100584 return connector->display_info.bpc > 8;
Ville Syrjälä6d674152015-05-05 17:06:20 +0300585}
586
Ville Syrjälä12aa3292015-05-05 17:06:21 +0300587/*
588 * Determine if default_phase=1 can be indicated in the GCP infoframe.
589 *
590 * From HDMI specification 1.4a:
591 * - The first pixel of each Video Data Period shall always have a pixel packing phase of 0
592 * - The first pixel following each Video Data Period shall have a pixel packing phase of 0
593 * - The PP bits shall be constant for all GCPs and will be equal to the last packing phase
594 * - The first pixel following every transition of HSYNC or VSYNC shall have a pixel packing
595 * phase of 0
596 */
597static bool gcp_default_phase_possible(int pipe_bpp,
598 const struct drm_display_mode *mode)
599{
600 unsigned int pixels_per_group;
601
602 switch (pipe_bpp) {
603 case 30:
604 /* 4 pixels in 5 clocks */
605 pixels_per_group = 4;
606 break;
607 case 36:
608 /* 2 pixels in 3 clocks */
609 pixels_per_group = 2;
610 break;
611 case 48:
612 /* 1 pixel in 2 clocks */
613 pixels_per_group = 1;
614 break;
615 default:
616 /* phase information not relevant for 8bpc */
617 return false;
618 }
619
620 return mode->crtc_hdisplay % pixels_per_group == 0 &&
621 mode->crtc_htotal % pixels_per_group == 0 &&
622 mode->crtc_hblank_start % pixels_per_group == 0 &&
623 mode->crtc_hblank_end % pixels_per_group == 0 &&
624 mode->crtc_hsync_start % pixels_per_group == 0 &&
625 mode->crtc_hsync_end % pixels_per_group == 0 &&
626 ((mode->flags & DRM_MODE_FLAG_INTERLACE) == 0 ||
627 mode->crtc_htotal/2 % pixels_per_group == 0);
628}
629
Maarten Lankhorstac240282016-11-23 15:57:00 +0100630static bool intel_hdmi_set_gcp_infoframe(struct drm_encoder *encoder,
631 const struct intel_crtc_state *crtc_state,
632 const struct drm_connector_state *conn_state)
Ville Syrjälä6d674152015-05-05 17:06:20 +0300633{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100634 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Maarten Lankhorstac240282016-11-23 15:57:00 +0100635 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200636 i915_reg_t reg;
637 u32 val = 0;
Ville Syrjälä6d674152015-05-05 17:06:20 +0300638
639 if (HAS_DDI(dev_priv))
Maarten Lankhorstac240282016-11-23 15:57:00 +0100640 reg = HSW_TVIDEO_DIP_GCP(crtc_state->cpu_transcoder);
Wayne Boyer666a4532015-12-09 12:29:35 -0800641 else if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv))
Ville Syrjälä6d674152015-05-05 17:06:20 +0300642 reg = VLV_TVIDEO_DIP_GCP(crtc->pipe);
Joonas Lahtinen2d1fe072016-04-07 11:08:05 +0300643 else if (HAS_PCH_SPLIT(dev_priv))
Ville Syrjälä6d674152015-05-05 17:06:20 +0300644 reg = TVIDEO_DIP_GCP(crtc->pipe);
645 else
646 return false;
647
648 /* Indicate color depth whenever the sink supports deep color */
Maarten Lankhorstac240282016-11-23 15:57:00 +0100649 if (hdmi_sink_is_deep_color(conn_state))
Ville Syrjälä6d674152015-05-05 17:06:20 +0300650 val |= GCP_COLOR_INDICATION;
651
Ville Syrjälä12aa3292015-05-05 17:06:21 +0300652 /* Enable default_phase whenever the display mode is suitably aligned */
Maarten Lankhorstac240282016-11-23 15:57:00 +0100653 if (gcp_default_phase_possible(crtc_state->pipe_bpp,
654 &crtc_state->base.adjusted_mode))
Ville Syrjälä12aa3292015-05-05 17:06:21 +0300655 val |= GCP_DEFAULT_PHASE_ENABLE;
656
Ville Syrjälä6d674152015-05-05 17:06:20 +0300657 I915_WRITE(reg, val);
658
659 return val != 0;
660}
661
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300662static void ibx_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200663 bool enable,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100664 const struct intel_crtc_state *crtc_state,
665 const struct drm_connector_state *conn_state)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300666{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100667 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Maarten Lankhorstac240282016-11-23 15:57:00 +0100668 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.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
Maarten Lankhorstac240282016-11-23 15:57:00 +0100704 if (intel_hdmi_set_gcp_infoframe(encoder, crtc_state, conn_state))
Ville Syrjälä6d674152015-05-05 17:06:20 +0300705 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
Maarten Lankhorstac240282016-11-23 15:57:00 +0100710 intel_hdmi_set_avi_infoframe(encoder, crtc_state);
711 intel_hdmi_set_spd_infoframe(encoder, crtc_state);
712 intel_hdmi_set_hdmi_infoframe(encoder, crtc_state);
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,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100717 const struct intel_crtc_state *crtc_state,
718 const struct drm_connector_state *conn_state)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300719{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100720 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Maarten Lankhorstac240282016-11-23 15:57:00 +0100721 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300722 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200723 i915_reg_t reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300724 u32 val = I915_READ(reg);
725
Daniel Vetterafba0182012-06-12 16:36:45 +0200726 assert_hdmi_port_disabled(intel_hdmi);
727
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300728 /* See the big comment in g4x_set_infoframes() */
729 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
730
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200731 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300732 if (!(val & VIDEO_DIP_ENABLE))
733 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300734 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
735 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
736 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300737 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300738 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300739 return;
740 }
741
Paulo Zanoni822974a2012-05-28 16:42:51 -0300742 /* Set both together, unset both together: see the spec. */
743 val |= VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300744 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300745 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300746
Maarten Lankhorstac240282016-11-23 15:57:00 +0100747 if (intel_hdmi_set_gcp_infoframe(encoder, crtc_state, conn_state))
Ville Syrjälä6d674152015-05-05 17:06:20 +0300748 val |= VIDEO_DIP_ENABLE_GCP;
749
Paulo Zanoni822974a2012-05-28 16:42:51 -0300750 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300751 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300752
Maarten Lankhorstac240282016-11-23 15:57:00 +0100753 intel_hdmi_set_avi_infoframe(encoder, crtc_state);
754 intel_hdmi_set_spd_infoframe(encoder, crtc_state);
755 intel_hdmi_set_hdmi_infoframe(encoder, crtc_state);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300756}
757
758static void vlv_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200759 bool enable,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100760 const struct intel_crtc_state *crtc_state,
761 const struct drm_connector_state *conn_state)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300762{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100763 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700764 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Maarten Lankhorstac240282016-11-23 15:57:00 +0100765 struct intel_crtc *intel_crtc = to_intel_crtc(crtc_state->base.crtc);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300766 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200767 i915_reg_t reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300768 u32 val = I915_READ(reg);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700769 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300770
Daniel Vetterafba0182012-06-12 16:36:45 +0200771 assert_hdmi_port_disabled(intel_hdmi);
772
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300773 /* See the big comment in g4x_set_infoframes() */
774 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
775
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200776 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300777 if (!(val & VIDEO_DIP_ENABLE))
778 return;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300779 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI |
780 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
781 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300782 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300783 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300784 return;
785 }
786
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700787 if (port != (val & VIDEO_DIP_PORT_MASK)) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300788 WARN(val & VIDEO_DIP_ENABLE,
789 "DIP already enabled on port %c\n",
790 (val & VIDEO_DIP_PORT_MASK) >> 29);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700791 val &= ~VIDEO_DIP_PORT_MASK;
792 val |= port;
793 }
794
Paulo Zanoni822974a2012-05-28 16:42:51 -0300795 val |= VIDEO_DIP_ENABLE;
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300796 val &= ~(VIDEO_DIP_ENABLE_AVI |
797 VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
798 VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300799
Maarten Lankhorstac240282016-11-23 15:57:00 +0100800 if (intel_hdmi_set_gcp_infoframe(encoder, crtc_state, conn_state))
Ville Syrjälä6d674152015-05-05 17:06:20 +0300801 val |= VIDEO_DIP_ENABLE_GCP;
802
Paulo Zanoni822974a2012-05-28 16:42:51 -0300803 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300804 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300805
Maarten Lankhorstac240282016-11-23 15:57:00 +0100806 intel_hdmi_set_avi_infoframe(encoder, crtc_state);
807 intel_hdmi_set_spd_infoframe(encoder, crtc_state);
808 intel_hdmi_set_hdmi_infoframe(encoder, crtc_state);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300809}
810
811static void hsw_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200812 bool enable,
Maarten Lankhorstac240282016-11-23 15:57:00 +0100813 const struct intel_crtc_state *crtc_state,
814 const struct drm_connector_state *conn_state)
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300815{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100816 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300817 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Maarten Lankhorstac240282016-11-23 15:57:00 +0100818 i915_reg_t reg = HSW_TVIDEO_DIP_CTL(crtc_state->cpu_transcoder);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300819 u32 val = I915_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300820
Daniel Vetterafba0182012-06-12 16:36:45 +0200821 assert_hdmi_port_disabled(intel_hdmi);
822
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300823 val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_AVI_HSW |
824 VIDEO_DIP_ENABLE_GCP_HSW | VIDEO_DIP_ENABLE_VS_HSW |
825 VIDEO_DIP_ENABLE_GMP_HSW | VIDEO_DIP_ENABLE_SPD_HSW);
826
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200827 if (!enable) {
Ville Syrjälä0be6f0c2015-05-05 17:06:24 +0300828 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300829 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300830 return;
831 }
832
Maarten Lankhorstac240282016-11-23 15:57:00 +0100833 if (intel_hdmi_set_gcp_infoframe(encoder, crtc_state, conn_state))
Ville Syrjälä6d674152015-05-05 17:06:20 +0300834 val |= VIDEO_DIP_ENABLE_GCP_HSW;
835
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300836 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300837 POSTING_READ(reg);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300838
Maarten Lankhorstac240282016-11-23 15:57:00 +0100839 intel_hdmi_set_avi_infoframe(encoder, crtc_state);
840 intel_hdmi_set_spd_infoframe(encoder, crtc_state);
841 intel_hdmi_set_hdmi_infoframe(encoder, crtc_state);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300842}
843
Ville Syrjäläb2ccb822016-05-02 22:08:24 +0300844void intel_dp_dual_mode_set_tmds_output(struct intel_hdmi *hdmi, bool enable)
845{
846 struct drm_i915_private *dev_priv = to_i915(intel_hdmi_to_dev(hdmi));
847 struct i2c_adapter *adapter =
848 intel_gmbus_get_adapter(dev_priv, hdmi->ddc_bus);
849
850 if (hdmi->dp_dual_mode.type < DRM_DP_DUAL_MODE_TYPE2_DVI)
851 return;
852
853 DRM_DEBUG_KMS("%s DP dual mode adaptor TMDS output\n",
854 enable ? "Enabling" : "Disabling");
855
856 drm_dp_dual_mode_set_tmds_output(hdmi->dp_dual_mode.type,
857 adapter, enable);
858}
859
Maarten Lankhorstac240282016-11-23 15:57:00 +0100860static void intel_hdmi_prepare(struct intel_encoder *encoder,
861 const struct intel_crtc_state *crtc_state)
Eric Anholt7d573822009-01-02 13:33:00 -0800862{
Daniel Vetterc59423a2013-07-21 21:37:04 +0200863 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100864 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstac240282016-11-23 15:57:00 +0100865 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
Daniel Vetterc59423a2013-07-21 21:37:04 +0200866 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Maarten Lankhorstac240282016-11-23 15:57:00 +0100867 const struct drm_display_mode *adjusted_mode = &crtc_state->base.adjusted_mode;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300868 u32 hdmi_val;
Eric Anholt7d573822009-01-02 13:33:00 -0800869
Ville Syrjäläb2ccb822016-05-02 22:08:24 +0300870 intel_dp_dual_mode_set_tmds_output(intel_hdmi, true);
871
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300872 hdmi_val = SDVO_ENCODING_HDMI;
Maarten Lankhorstac240282016-11-23 15:57:00 +0100873 if (!HAS_PCH_SPLIT(dev_priv) && crtc_state->limited_color_range)
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +0300874 hdmi_val |= HDMI_COLOR_RANGE_16_235;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400875 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300876 hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400877 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300878 hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800879
Maarten Lankhorstac240282016-11-23 15:57:00 +0100880 if (crtc_state->pipe_bpp > 24)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300881 hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700882 else
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300883 hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700884
Maarten Lankhorstac240282016-11-23 15:57:00 +0100885 if (crtc_state->has_hdmi_sink)
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300886 hdmi_val |= HDMI_MODE_SELECT_HDMI;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800887
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100888 if (HAS_PCH_CPT(dev_priv))
Daniel Vetterc59423a2013-07-21 21:37:04 +0200889 hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100890 else if (IS_CHERRYVIEW(dev_priv))
Chon Ming Lee44f37d12014-04-09 13:28:21 +0300891 hdmi_val |= SDVO_PIPE_SEL_CHV(crtc->pipe);
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300892 else
Daniel Vetterc59423a2013-07-21 21:37:04 +0200893 hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
Eric Anholt7d573822009-01-02 13:33:00 -0800894
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300895 I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
896 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800897}
898
Daniel Vetter85234cd2012-07-02 13:27:29 +0200899static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
900 enum pipe *pipe)
Eric Anholt7d573822009-01-02 13:33:00 -0800901{
Daniel Vetter85234cd2012-07-02 13:27:29 +0200902 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100903 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200904 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Imre Deak6d129be2014-03-05 16:20:54 +0200905 enum intel_display_power_domain power_domain;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200906 u32 tmp;
Imre Deak5b092172016-02-12 18:55:20 +0200907 bool ret;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200908
Imre Deak6d129be2014-03-05 16:20:54 +0200909 power_domain = intel_display_port_power_domain(encoder);
Imre Deak5b092172016-02-12 18:55:20 +0200910 if (!intel_display_power_get_if_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200911 return false;
912
Imre Deak5b092172016-02-12 18:55:20 +0200913 ret = false;
914
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300915 tmp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200916
917 if (!(tmp & SDVO_ENABLE))
Imre Deak5b092172016-02-12 18:55:20 +0200918 goto out;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200919
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100920 if (HAS_PCH_CPT(dev_priv))
Daniel Vetter85234cd2012-07-02 13:27:29 +0200921 *pipe = PORT_TO_PIPE_CPT(tmp);
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +0100922 else if (IS_CHERRYVIEW(dev_priv))
Ville Syrjälä71485e02014-04-09 13:28:55 +0300923 *pipe = SDVO_PORT_TO_PIPE_CHV(tmp);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200924 else
925 *pipe = PORT_TO_PIPE(tmp);
926
Imre Deak5b092172016-02-12 18:55:20 +0200927 ret = true;
928
929out:
930 intel_display_power_put(dev_priv, power_domain);
931
932 return ret;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200933}
934
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700935static void intel_hdmi_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200936 struct intel_crtc_state *pipe_config)
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700937{
938 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300939 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100940 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700941 u32 tmp, flags = 0;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300942 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700943
944 tmp = I915_READ(intel_hdmi->hdmi_reg);
945
946 if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
947 flags |= DRM_MODE_FLAG_PHSYNC;
948 else
949 flags |= DRM_MODE_FLAG_NHSYNC;
950
951 if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
952 flags |= DRM_MODE_FLAG_PVSYNC;
953 else
954 flags |= DRM_MODE_FLAG_NVSYNC;
955
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200956 if (tmp & HDMI_MODE_SELECT_HDMI)
957 pipe_config->has_hdmi_sink = true;
958
Ville Syrjäläcda0aaa2015-11-26 18:27:07 +0200959 if (intel_hdmi->infoframe_enabled(&encoder->base, pipe_config))
Jesse Barnese43823e2014-11-05 14:26:08 -0800960 pipe_config->has_infoframe = true;
961
Jani Nikulac84db772014-09-17 15:34:58 +0300962 if (tmp & SDVO_AUDIO_ENABLE)
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200963 pipe_config->has_audio = true;
964
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100965 if (!HAS_PCH_SPLIT(dev_priv) &&
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300966 tmp & HDMI_COLOR_RANGE_16_235)
967 pipe_config->limited_color_range = true;
968
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200969 pipe_config->base.adjusted_mode.flags |= flags;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300970
971 if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
972 dotclock = pipe_config->port_clock * 2 / 3;
973 else
974 dotclock = pipe_config->port_clock;
975
Ville Syrjäläbe69a132015-05-05 17:06:26 +0300976 if (pipe_config->pixel_multiplier)
977 dotclock /= pipe_config->pixel_multiplier;
978
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200979 pipe_config->base.adjusted_mode.crtc_clock = dotclock;
Ander Conselvan de Oliveirad4d62792016-04-27 15:44:16 +0300980
981 pipe_config->lane_count = 4;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700982}
983
Maarten Lankhorstdf18e722016-11-08 13:55:37 +0100984static void intel_enable_hdmi_audio(struct intel_encoder *encoder,
985 struct intel_crtc_state *pipe_config,
986 struct drm_connector_state *conn_state)
Ville Syrjäläd1b15892015-05-05 17:06:19 +0300987{
Maarten Lankhorstac240282016-11-23 15:57:00 +0100988 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
Ville Syrjäläd1b15892015-05-05 17:06:19 +0300989
Maarten Lankhorstac240282016-11-23 15:57:00 +0100990 WARN_ON(!pipe_config->has_hdmi_sink);
Ville Syrjäläd1b15892015-05-05 17:06:19 +0300991 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
992 pipe_name(crtc->pipe));
Maarten Lankhorstbbf35e92016-11-08 13:55:38 +0100993 intel_audio_codec_enable(encoder, pipe_config, conn_state);
Ville Syrjäläd1b15892015-05-05 17:06:19 +0300994}
995
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +0200996static void g4x_enable_hdmi(struct intel_encoder *encoder,
997 struct intel_crtc_state *pipe_config,
998 struct drm_connector_state *conn_state)
Eric Anholt7d573822009-01-02 13:33:00 -0800999{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001000 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001001 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001002 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Eric Anholt7d573822009-01-02 13:33:00 -08001003 u32 temp;
1004
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001005 temp = I915_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +00001006
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001007 temp |= SDVO_ENABLE;
Maarten Lankhorstdf18e722016-11-08 13:55:37 +01001008 if (pipe_config->has_audio)
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001009 temp |= SDVO_AUDIO_ENABLE;
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001010
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001011 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1012 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001013
Maarten Lankhorstdf18e722016-11-08 13:55:37 +01001014 if (pipe_config->has_audio)
1015 intel_enable_hdmi_audio(encoder, pipe_config, conn_state);
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001016}
1017
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001018static void ibx_enable_hdmi(struct intel_encoder *encoder,
1019 struct intel_crtc_state *pipe_config,
1020 struct drm_connector_state *conn_state)
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001021{
1022 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001023 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001024 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1025 u32 temp;
1026
1027 temp = I915_READ(intel_hdmi->hdmi_reg);
1028
1029 temp |= SDVO_ENABLE;
Maarten Lankhorstac240282016-11-23 15:57:00 +01001030 if (pipe_config->has_audio)
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001031 temp |= SDVO_AUDIO_ENABLE;
1032
1033 /*
1034 * HW workaround, need to write this twice for issue
1035 * that may result in first write getting masked.
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001036 */
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001037 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1038 POSTING_READ(intel_hdmi->hdmi_reg);
1039 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1040 POSTING_READ(intel_hdmi->hdmi_reg);
1041
1042 /*
1043 * HW workaround, need to toggle enable bit off and on
1044 * for 12bpc with pixel repeat.
1045 *
1046 * FIXME: BSpec says this should be done at the end of
1047 * of the modeset sequence, so not sure if this isn't too soon.
1048 */
Maarten Lankhorstdf18e722016-11-08 13:55:37 +01001049 if (pipe_config->pipe_bpp > 24 &&
1050 pipe_config->pixel_multiplier > 1) {
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001051 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
1052 POSTING_READ(intel_hdmi->hdmi_reg);
1053
1054 /*
1055 * HW workaround, need to write this twice for issue
1056 * that may result in first write getting masked.
1057 */
1058 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1059 POSTING_READ(intel_hdmi->hdmi_reg);
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001060 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1061 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001062 }
Jani Nikulac1dec792014-10-27 16:26:56 +02001063
Maarten Lankhorstdf18e722016-11-08 13:55:37 +01001064 if (pipe_config->has_audio)
1065 intel_enable_hdmi_audio(encoder, pipe_config, conn_state);
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001066}
1067
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001068static void cpt_enable_hdmi(struct intel_encoder *encoder,
1069 struct intel_crtc_state *pipe_config,
1070 struct drm_connector_state *conn_state)
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001071{
1072 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001073 struct drm_i915_private *dev_priv = to_i915(dev);
Maarten Lankhorstac240282016-11-23 15:57:00 +01001074 struct intel_crtc *crtc = to_intel_crtc(pipe_config->base.crtc);
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001075 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1076 enum pipe pipe = crtc->pipe;
1077 u32 temp;
1078
1079 temp = I915_READ(intel_hdmi->hdmi_reg);
1080
1081 temp |= SDVO_ENABLE;
Maarten Lankhorstdf18e722016-11-08 13:55:37 +01001082 if (pipe_config->has_audio)
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001083 temp |= SDVO_AUDIO_ENABLE;
1084
1085 /*
1086 * WaEnableHDMI8bpcBefore12bpc:snb,ivb
1087 *
1088 * The procedure for 12bpc is as follows:
1089 * 1. disable HDMI clock gating
1090 * 2. enable HDMI with 8bpc
1091 * 3. enable HDMI with 12bpc
1092 * 4. enable HDMI clock gating
1093 */
1094
Maarten Lankhorstdf18e722016-11-08 13:55:37 +01001095 if (pipe_config->pipe_bpp > 24) {
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001096 I915_WRITE(TRANS_CHICKEN1(pipe),
1097 I915_READ(TRANS_CHICKEN1(pipe)) |
1098 TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE);
1099
1100 temp &= ~SDVO_COLOR_FORMAT_MASK;
1101 temp |= SDVO_COLOR_FORMAT_8bpc;
Jani Nikulac1dec792014-10-27 16:26:56 +02001102 }
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001103
1104 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1105 POSTING_READ(intel_hdmi->hdmi_reg);
1106
Maarten Lankhorstdf18e722016-11-08 13:55:37 +01001107 if (pipe_config->pipe_bpp > 24) {
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001108 temp &= ~SDVO_COLOR_FORMAT_MASK;
1109 temp |= HDMI_COLOR_FORMAT_12bpc;
1110
1111 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1112 POSTING_READ(intel_hdmi->hdmi_reg);
1113
1114 I915_WRITE(TRANS_CHICKEN1(pipe),
1115 I915_READ(TRANS_CHICKEN1(pipe)) &
1116 ~TRANS_CHICKEN1_HDMIUNIT_GC_DISABLE);
1117 }
1118
Maarten Lankhorstdf18e722016-11-08 13:55:37 +01001119 if (pipe_config->has_audio)
1120 intel_enable_hdmi_audio(encoder, pipe_config, conn_state);
Jani Nikulab76cf762013-07-30 12:20:31 +03001121}
Jesse Barnes89b667f2013-04-18 14:51:36 -07001122
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001123static void vlv_enable_hdmi(struct intel_encoder *encoder,
1124 struct intel_crtc_state *pipe_config,
1125 struct drm_connector_state *conn_state)
Jani Nikulab76cf762013-07-30 12:20:31 +03001126{
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001127}
1128
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001129static void intel_disable_hdmi(struct intel_encoder *encoder,
1130 struct intel_crtc_state *old_crtc_state,
1131 struct drm_connector_state *old_conn_state)
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001132{
1133 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001134 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001135 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Maarten Lankhorstac240282016-11-23 15:57:00 +01001136 struct intel_crtc *crtc = to_intel_crtc(old_crtc_state->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001137 u32 temp;
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001138
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001139 temp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001140
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001141 temp &= ~(SDVO_ENABLE | SDVO_AUDIO_ENABLE);
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001142 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1143 POSTING_READ(intel_hdmi->hdmi_reg);
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001144
1145 /*
1146 * HW workaround for IBX, we need to move the port
1147 * to transcoder A after disabling it to allow the
1148 * matching DP port to be enabled on transcoder A.
1149 */
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01001150 if (HAS_PCH_IBX(dev_priv) && crtc->pipe == PIPE_B) {
Ville Syrjälä0c241d52015-10-30 19:23:22 +02001151 /*
1152 * We get CPU/PCH FIFO underruns on the other pipe when
1153 * doing the workaround. Sweep them under the rug.
1154 */
1155 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, false);
1156 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, false);
1157
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001158 temp &= ~SDVO_PIPE_B_SELECT;
1159 temp |= SDVO_ENABLE;
1160 /*
1161 * HW workaround, need to write this twice for issue
1162 * that may result in first write getting masked.
1163 */
1164 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1165 POSTING_READ(intel_hdmi->hdmi_reg);
1166 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1167 POSTING_READ(intel_hdmi->hdmi_reg);
1168
1169 temp &= ~SDVO_ENABLE;
1170 I915_WRITE(intel_hdmi->hdmi_reg, temp);
1171 POSTING_READ(intel_hdmi->hdmi_reg);
Ville Syrjälä0c241d52015-10-30 19:23:22 +02001172
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +02001173 intel_wait_for_vblank_if_active(dev_priv, PIPE_A);
Ville Syrjälä0c241d52015-10-30 19:23:22 +02001174 intel_set_cpu_fifo_underrun_reporting(dev_priv, PIPE_A, true);
1175 intel_set_pch_fifo_underrun_reporting(dev_priv, PIPE_A, true);
Ville Syrjälä1612c8b2015-05-05 17:17:34 +03001176 }
Ville Syrjälä6d674152015-05-05 17:06:20 +03001177
Maarten Lankhorstac240282016-11-23 15:57:00 +01001178 intel_hdmi->set_infoframes(&encoder->base, false, old_crtc_state, old_conn_state);
Ville Syrjäläb2ccb822016-05-02 22:08:24 +03001179
1180 intel_dp_dual_mode_set_tmds_output(intel_hdmi, false);
Eric Anholt7d573822009-01-02 13:33:00 -08001181}
1182
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001183static void g4x_disable_hdmi(struct intel_encoder *encoder,
1184 struct intel_crtc_state *old_crtc_state,
1185 struct drm_connector_state *old_conn_state)
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03001186{
Maarten Lankhorstdf18e722016-11-08 13:55:37 +01001187 if (old_crtc_state->has_audio)
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03001188 intel_audio_codec_disable(encoder);
1189
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001190 intel_disable_hdmi(encoder, old_crtc_state, old_conn_state);
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03001191}
1192
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001193static void pch_disable_hdmi(struct intel_encoder *encoder,
1194 struct intel_crtc_state *old_crtc_state,
1195 struct drm_connector_state *old_conn_state)
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03001196{
Maarten Lankhorstdf18e722016-11-08 13:55:37 +01001197 if (old_crtc_state->has_audio)
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03001198 intel_audio_codec_disable(encoder);
1199}
1200
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001201static void pch_post_disable_hdmi(struct intel_encoder *encoder,
1202 struct intel_crtc_state *old_crtc_state,
1203 struct drm_connector_state *old_conn_state)
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03001204{
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001205 intel_disable_hdmi(encoder, old_crtc_state, old_conn_state);
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03001206}
1207
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001208static int intel_hdmi_source_max_tmds_clock(struct drm_i915_private *dev_priv)
Daniel Vetter7d148ef52013-07-22 18:02:39 +02001209{
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001210 if (IS_G4X(dev_priv))
Daniel Vetter7d148ef52013-07-22 18:02:39 +02001211 return 165000;
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001212 else if (IS_HASWELL(dev_priv) || INTEL_INFO(dev_priv)->gen >= 8)
Daniel Vetter7d148ef52013-07-22 18:02:39 +02001213 return 300000;
1214 else
1215 return 225000;
1216}
1217
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001218static int hdmi_port_clock_limit(struct intel_hdmi *hdmi,
1219 bool respect_downstream_limits)
1220{
1221 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
1222 int max_tmds_clock = intel_hdmi_source_max_tmds_clock(to_i915(dev));
1223
1224 if (respect_downstream_limits) {
Ville Syrjälä8cadab02016-09-28 16:51:43 +03001225 struct intel_connector *connector = hdmi->attached_connector;
1226 const struct drm_display_info *info = &connector->base.display_info;
1227
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001228 if (hdmi->dp_dual_mode.max_tmds_clock)
1229 max_tmds_clock = min(max_tmds_clock,
1230 hdmi->dp_dual_mode.max_tmds_clock);
Ville Syrjälä8cadab02016-09-28 16:51:43 +03001231
1232 if (info->max_tmds_clock)
1233 max_tmds_clock = min(max_tmds_clock,
1234 info->max_tmds_clock);
1235 else if (!hdmi->has_hdmi_sink)
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001236 max_tmds_clock = min(max_tmds_clock, 165000);
1237 }
1238
1239 return max_tmds_clock;
1240}
1241
Damien Lespiauc19de8e2013-11-28 15:29:18 +00001242static enum drm_mode_status
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001243hdmi_port_clock_valid(struct intel_hdmi *hdmi,
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001244 int clock, bool respect_downstream_limits)
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001245{
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +01001246 struct drm_i915_private *dev_priv = to_i915(intel_hdmi_to_dev(hdmi));
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001247
1248 if (clock < 25000)
1249 return MODE_CLOCK_LOW;
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001250 if (clock > hdmi_port_clock_limit(hdmi, respect_downstream_limits))
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001251 return MODE_CLOCK_HIGH;
1252
Ville Syrjälä5e6ccc02015-07-06 14:44:11 +03001253 /* BXT DPLL can't generate 223-240 MHz */
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02001254 if (IS_GEN9_LP(dev_priv) && clock > 223333 && clock < 240000)
Ville Syrjälä5e6ccc02015-07-06 14:44:11 +03001255 return MODE_CLOCK_RANGE;
1256
1257 /* CHV DPLL can't generate 216-240 MHz */
Tvrtko Ursuline2d214a2016-10-13 11:03:04 +01001258 if (IS_CHERRYVIEW(dev_priv) && clock > 216000 && clock < 240000)
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001259 return MODE_CLOCK_RANGE;
1260
1261 return MODE_OK;
1262}
1263
1264static enum drm_mode_status
Damien Lespiauc19de8e2013-11-28 15:29:18 +00001265intel_hdmi_mode_valid(struct drm_connector *connector,
1266 struct drm_display_mode *mode)
Eric Anholt7d573822009-01-02 13:33:00 -08001267{
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001268 struct intel_hdmi *hdmi = intel_attached_hdmi(connector);
1269 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
Tvrtko Ursulin49cff962016-10-13 11:02:54 +01001270 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001271 enum drm_mode_status status;
1272 int clock;
Mika Kahola587bf492016-02-02 15:16:39 +02001273 int max_dotclk = to_i915(connector->dev)->max_dotclk_freq;
Eric Anholt7d573822009-01-02 13:33:00 -08001274
1275 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
1276 return MODE_NO_DBLESCAN;
1277
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001278 clock = mode->clock;
Mika Kahola587bf492016-02-02 15:16:39 +02001279
1280 if ((mode->flags & DRM_MODE_FLAG_3D_MASK) == DRM_MODE_FLAG_3D_FRAME_PACKING)
1281 clock *= 2;
1282
1283 if (clock > max_dotclk)
1284 return MODE_CLOCK_HIGH;
1285
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001286 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
1287 clock *= 2;
1288
1289 /* check if we can do 8bpc */
1290 status = hdmi_port_clock_valid(hdmi, clock, true);
1291
1292 /* if we can't do 8bpc we may still be able to do 12bpc */
Tvrtko Ursulin49cff962016-10-13 11:02:54 +01001293 if (!HAS_GMCH_DISPLAY(dev_priv) && status != MODE_OK)
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001294 status = hdmi_port_clock_valid(hdmi, clock * 3 / 2, true);
1295
1296 return status;
Eric Anholt7d573822009-01-02 13:33:00 -08001297}
1298
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001299static bool hdmi_12bpc_possible(struct intel_crtc_state *crtc_state)
Ville Syrjälä71800632014-03-03 16:15:29 +02001300{
Ander Conselvan de Oliveira77f06c82015-03-20 16:18:11 +02001301 struct drm_device *dev = crtc_state->base.crtc->dev;
Ville Syrjälä71800632014-03-03 16:15:29 +02001302
Tvrtko Ursulin49cff962016-10-13 11:02:54 +01001303 if (HAS_GMCH_DISPLAY(to_i915(dev)))
Ville Syrjälä71800632014-03-03 16:15:29 +02001304 return false;
1305
Ville Syrjälä71800632014-03-03 16:15:29 +02001306 /*
1307 * HDMI 12bpc affects the clocks, so it's only possible
1308 * when not cloning with other encoder types.
1309 */
Ville Syrjälä3f1c9282016-06-22 21:57:08 +03001310 return crtc_state->output_types == 1 << INTEL_OUTPUT_HDMI;
Ville Syrjälä71800632014-03-03 16:15:29 +02001311}
1312
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001313bool intel_hdmi_compute_config(struct intel_encoder *encoder,
Maarten Lankhorst0a478c22016-08-09 17:04:05 +02001314 struct intel_crtc_state *pipe_config,
1315 struct drm_connector_state *conn_state)
Eric Anholt7d573822009-01-02 13:33:00 -08001316{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001317 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01001318 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +02001319 struct drm_display_mode *adjusted_mode = &pipe_config->base.adjusted_mode;
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001320 int clock_8bpc = pipe_config->base.adjusted_mode.crtc_clock;
1321 int clock_12bpc = clock_8bpc * 3 / 2;
Daniel Vettere29c22c2013-02-21 00:00:16 +01001322 int desired_bpp;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001323
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001324 pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink;
1325
Jesse Barnese43823e2014-11-05 14:26:08 -08001326 if (pipe_config->has_hdmi_sink)
1327 pipe_config->has_infoframe = true;
1328
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001329 if (intel_hdmi->color_range_auto) {
1330 /* See CEA-861-E - 5.1 Default Encoding Parameters */
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001331 pipe_config->limited_color_range =
1332 pipe_config->has_hdmi_sink &&
Ville Syrjäläc8127cf02017-01-11 16:18:35 +02001333 drm_default_rgb_quant_range(adjusted_mode) ==
1334 HDMI_QUANTIZATION_RANGE_LIMITED;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001335 } else {
1336 pipe_config->limited_color_range =
1337 intel_hdmi->limited_color_range;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001338 }
1339
Clint Taylor697c4072014-09-02 17:03:36 -07001340 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK) {
1341 pipe_config->pixel_multiplier = 2;
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001342 clock_8bpc *= 2;
Ville Syrjälä3320e372015-05-05 17:06:27 +03001343 clock_12bpc *= 2;
Clint Taylor697c4072014-09-02 17:03:36 -07001344 }
1345
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01001346 if (HAS_PCH_SPLIT(dev_priv) && !HAS_DDI(dev_priv))
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001347 pipe_config->has_pch_encoder = true;
1348
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001349 if (pipe_config->has_hdmi_sink && intel_hdmi->has_audio)
1350 pipe_config->has_audio = true;
1351
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001352 /*
1353 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
1354 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
Daniel Vetter325b9d02013-04-19 11:24:33 +02001355 * outputs. We also need to check that the higher clock still fits
1356 * within limits.
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001357 */
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001358 if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink &&
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001359 hdmi_port_clock_valid(intel_hdmi, clock_12bpc, true) == MODE_OK &&
Ville Syrjälä7a0baa62015-06-30 15:33:54 +03001360 hdmi_12bpc_possible(pipe_config)) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001361 DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
1362 desired_bpp = 12*3;
Daniel Vetter325b9d02013-04-19 11:24:33 +02001363
1364 /* Need to adjust the port link by 1.5x for 12bpc. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02001365 pipe_config->port_clock = clock_12bpc;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001366 } else {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001367 DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
1368 desired_bpp = 8*3;
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001369
1370 pipe_config->port_clock = clock_8bpc;
Daniel Vettere29c22c2013-02-21 00:00:16 +01001371 }
1372
1373 if (!pipe_config->bw_constrained) {
1374 DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
1375 pipe_config->pipe_bpp = desired_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001376 }
1377
Ville Syrjäläe64e7392015-06-30 19:23:59 +03001378 if (hdmi_port_clock_valid(intel_hdmi, pipe_config->port_clock,
1379 false) != MODE_OK) {
1380 DRM_DEBUG_KMS("unsupported HDMI clock, rejecting mode\n");
Daniel Vetter325b9d02013-04-19 11:24:33 +02001381 return false;
1382 }
1383
Ville Syrjälä28b468a2015-09-08 13:40:48 +03001384 /* Set user selected PAR to incoming mode's member */
1385 adjusted_mode->picture_aspect_ratio = intel_hdmi->aspect_ratio;
1386
Ander Conselvan de Oliveirad4d62792016-04-27 15:44:16 +03001387 pipe_config->lane_count = 4;
1388
Eric Anholt7d573822009-01-02 13:33:00 -08001389 return true;
1390}
1391
Chris Wilson953ece6972014-09-02 20:04:01 +01001392static void
1393intel_hdmi_unset_edid(struct drm_connector *connector)
Ma Ling9dff6af2009-04-02 13:13:26 +08001394{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001395 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Imre Deak671dedd2014-03-05 16:20:53 +02001396
Chris Wilsonea5b2132010-08-04 13:50:23 +01001397 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +08001398 intel_hdmi->has_audio = false;
Ville Syrjäläabedc072013-01-17 16:31:31 +02001399 intel_hdmi->rgb_quant_range_selectable = false;
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +08001400
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001401 intel_hdmi->dp_dual_mode.type = DRM_DP_DUAL_MODE_NONE;
1402 intel_hdmi->dp_dual_mode.max_tmds_clock = 0;
1403
Chris Wilson953ece6972014-09-02 20:04:01 +01001404 kfree(to_intel_connector(connector)->detect_edid);
1405 to_intel_connector(connector)->detect_edid = NULL;
Ma Ling9dff6af2009-04-02 13:13:26 +08001406}
1407
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001408static void
Ville Syrjäläd6199252016-05-04 14:45:22 +03001409intel_hdmi_dp_dual_mode_detect(struct drm_connector *connector, bool has_edid)
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001410{
1411 struct drm_i915_private *dev_priv = to_i915(connector->dev);
1412 struct intel_hdmi *hdmi = intel_attached_hdmi(connector);
Ville Syrjäläd6199252016-05-04 14:45:22 +03001413 enum port port = hdmi_to_dig_port(hdmi)->port;
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001414 struct i2c_adapter *adapter =
1415 intel_gmbus_get_adapter(dev_priv, hdmi->ddc_bus);
1416 enum drm_dp_dual_mode_type type = drm_dp_dual_mode_detect(adapter);
1417
Ville Syrjäläd6199252016-05-04 14:45:22 +03001418 /*
1419 * Type 1 DVI adaptors are not required to implement any
1420 * registers, so we can't always detect their presence.
1421 * Ideally we should be able to check the state of the
1422 * CONFIG1 pin, but no such luck on our hardware.
1423 *
1424 * The only method left to us is to check the VBT to see
1425 * if the port is a dual mode capable DP port. But let's
1426 * only do that when we sucesfully read the EDID, to avoid
1427 * confusing log messages about DP dual mode adaptors when
1428 * there's nothing connected to the port.
1429 */
1430 if (type == DRM_DP_DUAL_MODE_UNKNOWN) {
1431 if (has_edid &&
1432 intel_bios_is_port_dp_dual_mode(dev_priv, port)) {
1433 DRM_DEBUG_KMS("Assuming DP dual mode adaptor presence based on VBT\n");
1434 type = DRM_DP_DUAL_MODE_TYPE1_DVI;
1435 } else {
1436 type = DRM_DP_DUAL_MODE_NONE;
1437 }
1438 }
1439
1440 if (type == DRM_DP_DUAL_MODE_NONE)
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001441 return;
1442
1443 hdmi->dp_dual_mode.type = type;
1444 hdmi->dp_dual_mode.max_tmds_clock =
1445 drm_dp_dual_mode_max_tmds_clock(type, adapter);
1446
1447 DRM_DEBUG_KMS("DP dual mode adaptor (%s) detected (max TMDS clock: %d kHz)\n",
1448 drm_dp_get_dual_mode_type_name(type),
1449 hdmi->dp_dual_mode.max_tmds_clock);
1450}
1451
Chris Wilson953ece6972014-09-02 20:04:01 +01001452static bool
David Weinehall23f889b2016-08-17 15:47:48 +03001453intel_hdmi_set_edid(struct drm_connector *connector)
Eric Anholt7d573822009-01-02 13:33:00 -08001454{
Chris Wilson953ece6972014-09-02 20:04:01 +01001455 struct drm_i915_private *dev_priv = to_i915(connector->dev);
1456 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
David Weinehall23f889b2016-08-17 15:47:48 +03001457 struct edid *edid;
Chris Wilson953ece6972014-09-02 20:04:01 +01001458 bool connected = false;
Eric Anholt7d573822009-01-02 13:33:00 -08001459
David Weinehall23f889b2016-08-17 15:47:48 +03001460 intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);
Imre Deak671dedd2014-03-05 16:20:53 +02001461
David Weinehall23f889b2016-08-17 15:47:48 +03001462 edid = drm_get_edid(connector,
1463 intel_gmbus_get_adapter(dev_priv,
1464 intel_hdmi->ddc_bus));
Imre Deak671dedd2014-03-05 16:20:53 +02001465
David Weinehall23f889b2016-08-17 15:47:48 +03001466 intel_hdmi_dp_dual_mode_detect(connector, edid != NULL);
Ville Syrjäläb1ba1242016-05-02 22:08:23 +03001467
David Weinehall23f889b2016-08-17 15:47:48 +03001468 intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS);
Imre Deak671dedd2014-03-05 16:20:53 +02001469
Chris Wilson953ece6972014-09-02 20:04:01 +01001470 to_intel_connector(connector)->detect_edid = edid;
1471 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL) {
1472 intel_hdmi->rgb_quant_range_selectable =
1473 drm_rgb_quant_range_selectable(edid);
1474
1475 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
1476 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
1477 intel_hdmi->has_audio =
1478 intel_hdmi->force_audio == HDMI_AUDIO_ON;
1479
1480 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
1481 intel_hdmi->has_hdmi_sink =
1482 drm_detect_hdmi_monitor(edid);
1483
1484 connected = true;
1485 }
1486
1487 return connected;
1488}
1489
Daniel Vetter8166fce2015-10-08 21:50:57 +02001490static enum drm_connector_status
1491intel_hdmi_detect(struct drm_connector *connector, bool force)
Chris Wilson953ece6972014-09-02 20:04:01 +01001492{
Daniel Vetter8166fce2015-10-08 21:50:57 +02001493 enum drm_connector_status status;
Daniel Vetter8166fce2015-10-08 21:50:57 +02001494 struct drm_i915_private *dev_priv = to_i915(connector->dev);
Chris Wilson953ece6972014-09-02 20:04:01 +01001495
Daniel Vetter8166fce2015-10-08 21:50:57 +02001496 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1497 connector->base.id, connector->name);
1498
Imre Deak29bb94b2015-11-19 20:55:01 +02001499 intel_display_power_get(dev_priv, POWER_DOMAIN_GMBUS);
1500
Daniel Vetter8166fce2015-10-08 21:50:57 +02001501 intel_hdmi_unset_edid(connector);
Chris Wilson953ece6972014-09-02 20:04:01 +01001502
David Weinehall23f889b2016-08-17 15:47:48 +03001503 if (intel_hdmi_set_edid(connector)) {
Chris Wilson953ece6972014-09-02 20:04:01 +01001504 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1505
1506 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1507 status = connector_status_connected;
Daniel Vetter8166fce2015-10-08 21:50:57 +02001508 } else
Chris Wilson953ece6972014-09-02 20:04:01 +01001509 status = connector_status_disconnected;
1510
Imre Deak29bb94b2015-11-19 20:55:01 +02001511 intel_display_power_put(dev_priv, POWER_DOMAIN_GMBUS);
1512
Chris Wilson953ece6972014-09-02 20:04:01 +01001513 return status;
1514}
1515
1516static void
1517intel_hdmi_force(struct drm_connector *connector)
1518{
1519 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1520
1521 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1522 connector->base.id, connector->name);
1523
1524 intel_hdmi_unset_edid(connector);
1525
1526 if (connector->status != connector_status_connected)
1527 return;
1528
David Weinehall23f889b2016-08-17 15:47:48 +03001529 intel_hdmi_set_edid(connector);
Chris Wilson953ece6972014-09-02 20:04:01 +01001530 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1531}
1532
1533static int intel_hdmi_get_modes(struct drm_connector *connector)
1534{
1535 struct edid *edid;
1536
1537 edid = to_intel_connector(connector)->detect_edid;
1538 if (edid == NULL)
1539 return 0;
1540
1541 return intel_connector_update_modes(connector, edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001542}
1543
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001544static bool
1545intel_hdmi_detect_audio(struct drm_connector *connector)
1546{
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001547 bool has_audio = false;
Chris Wilson953ece6972014-09-02 20:04:01 +01001548 struct edid *edid;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001549
Chris Wilson953ece6972014-09-02 20:04:01 +01001550 edid = to_intel_connector(connector)->detect_edid;
1551 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL)
1552 has_audio = drm_detect_monitor_audio(edid);
Imre Deak671dedd2014-03-05 16:20:53 +02001553
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001554 return has_audio;
1555}
1556
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001557static int
1558intel_hdmi_set_property(struct drm_connector *connector,
Paulo Zanonied517fb2012-05-14 17:12:50 -03001559 struct drm_property *property,
1560 uint64_t val)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001561{
1562 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001563 struct intel_digital_port *intel_dig_port =
1564 hdmi_to_dig_port(intel_hdmi);
Chris Wilsonfac5e232016-07-04 11:34:36 +01001565 struct drm_i915_private *dev_priv = to_i915(connector->dev);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001566 int ret;
1567
Rob Clark662595d2012-10-11 20:36:04 -05001568 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001569 if (ret)
1570 return ret;
1571
Chris Wilson3f43c482011-05-12 22:17:24 +01001572 if (property == dev_priv->force_audio_property) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001573 enum hdmi_force_audio i = val;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001574 bool has_audio;
1575
1576 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001577 return 0;
1578
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001579 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001580
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001581 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001582 has_audio = intel_hdmi_detect_audio(connector);
1583 else
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001584 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001585
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001586 if (i == HDMI_AUDIO_OFF_DVI)
1587 intel_hdmi->has_hdmi_sink = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001588
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001589 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001590 goto done;
1591 }
1592
Chris Wilsone953fd72011-02-21 22:23:52 +00001593 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02001594 bool old_auto = intel_hdmi->color_range_auto;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001595 bool old_range = intel_hdmi->limited_color_range;
Daniel Vetterae4edb82013-04-22 17:07:23 +02001596
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001597 switch (val) {
1598 case INTEL_BROADCAST_RGB_AUTO:
1599 intel_hdmi->color_range_auto = true;
1600 break;
1601 case INTEL_BROADCAST_RGB_FULL:
1602 intel_hdmi->color_range_auto = false;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001603 intel_hdmi->limited_color_range = false;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001604 break;
1605 case INTEL_BROADCAST_RGB_LIMITED:
1606 intel_hdmi->color_range_auto = false;
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001607 intel_hdmi->limited_color_range = true;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001608 break;
1609 default:
1610 return -EINVAL;
1611 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02001612
1613 if (old_auto == intel_hdmi->color_range_auto &&
Ville Syrjälä0f2a2a72015-07-06 15:10:00 +03001614 old_range == intel_hdmi->limited_color_range)
Daniel Vetterae4edb82013-04-22 17:07:23 +02001615 return 0;
1616
Chris Wilsone953fd72011-02-21 22:23:52 +00001617 goto done;
1618 }
1619
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301620 if (property == connector->dev->mode_config.aspect_ratio_property) {
1621 switch (val) {
1622 case DRM_MODE_PICTURE_ASPECT_NONE:
1623 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
1624 break;
1625 case DRM_MODE_PICTURE_ASPECT_4_3:
1626 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_4_3;
1627 break;
1628 case DRM_MODE_PICTURE_ASPECT_16_9:
1629 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_16_9;
1630 break;
1631 default:
1632 return -EINVAL;
1633 }
1634 goto done;
1635 }
1636
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001637 return -EINVAL;
1638
1639done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00001640 if (intel_dig_port->base.base.crtc)
1641 intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001642
1643 return 0;
1644}
1645
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001646static void intel_hdmi_pre_enable(struct intel_encoder *encoder,
1647 struct intel_crtc_state *pipe_config,
1648 struct drm_connector_state *conn_state)
Jesse Barnes13732ba2014-04-05 11:51:35 -07001649{
1650 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001651
Maarten Lankhorstac240282016-11-23 15:57:00 +01001652 intel_hdmi_prepare(encoder, pipe_config);
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001653
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001654 intel_hdmi->set_infoframes(&encoder->base,
Maarten Lankhorstdf18e722016-11-08 13:55:37 +01001655 pipe_config->has_hdmi_sink,
Maarten Lankhorstac240282016-11-23 15:57:00 +01001656 pipe_config, conn_state);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001657}
1658
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001659static void vlv_hdmi_pre_enable(struct intel_encoder *encoder,
1660 struct intel_crtc_state *pipe_config,
1661 struct drm_connector_state *conn_state)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001662{
1663 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001664 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001665 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001666 struct drm_i915_private *dev_priv = to_i915(dev);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001667
Ander Conselvan de Oliveira5f68c272016-04-27 15:44:24 +03001668 vlv_phy_pre_encoder_enable(encoder);
Jani Nikulab76cf762013-07-30 12:20:31 +03001669
Ander Conselvan de Oliveira53d98722016-04-27 15:44:22 +03001670 /* HDMI 1.0V-2dB */
1671 vlv_set_phy_signal_level(encoder, 0x2b245f5f, 0x00002000, 0x5578b83a,
1672 0x2b247878);
1673
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001674 intel_hdmi->set_infoframes(&encoder->base,
Maarten Lankhorstdf18e722016-11-08 13:55:37 +01001675 pipe_config->has_hdmi_sink,
Maarten Lankhorstac240282016-11-23 15:57:00 +01001676 pipe_config, conn_state);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001677
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001678 g4x_enable_hdmi(encoder, pipe_config, conn_state);
Jani Nikulab76cf762013-07-30 12:20:31 +03001679
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001680 vlv_wait_port_ready(dev_priv, dport, 0x0);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001681}
1682
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001683static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder,
1684 struct intel_crtc_state *pipe_config,
1685 struct drm_connector_state *conn_state)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001686{
Maarten Lankhorstac240282016-11-23 15:57:00 +01001687 intel_hdmi_prepare(encoder, pipe_config);
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001688
Ander Conselvan de Oliveira6da2e612016-04-27 15:44:23 +03001689 vlv_phy_pre_pll_enable(encoder);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001690}
1691
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001692static void chv_hdmi_pre_pll_enable(struct intel_encoder *encoder,
1693 struct intel_crtc_state *pipe_config,
1694 struct drm_connector_state *conn_state)
Ville Syrjälä9197c882014-04-09 13:29:05 +03001695{
Maarten Lankhorstac240282016-11-23 15:57:00 +01001696 intel_hdmi_prepare(encoder, pipe_config);
Ville Syrjälä625695f2014-06-28 02:04:02 +03001697
Ander Conselvan de Oliveira419b1b72016-04-27 15:44:19 +03001698 chv_phy_pre_pll_enable(encoder);
Ville Syrjälä9197c882014-04-09 13:29:05 +03001699}
1700
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001701static void chv_hdmi_post_pll_disable(struct intel_encoder *encoder,
1702 struct intel_crtc_state *old_crtc_state,
1703 struct drm_connector_state *old_conn_state)
Ville Syrjäläd6db9952015-07-08 23:45:49 +03001704{
Ander Conselvan de Oliveira204970b2016-04-27 15:44:21 +03001705 chv_phy_post_pll_disable(encoder);
Ville Syrjäläd6db9952015-07-08 23:45:49 +03001706}
1707
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001708static void vlv_hdmi_post_disable(struct intel_encoder *encoder,
1709 struct intel_crtc_state *old_crtc_state,
1710 struct drm_connector_state *old_conn_state)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001711{
Jesse Barnes89b667f2013-04-18 14:51:36 -07001712 /* Reset lanes to avoid HDMI flicker (VLV w/a) */
Ander Conselvan de Oliveira0f572eb2016-04-27 15:44:25 +03001713 vlv_phy_reset_lanes(encoder);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001714}
1715
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001716static void chv_hdmi_post_disable(struct intel_encoder *encoder,
1717 struct intel_crtc_state *old_crtc_state,
1718 struct drm_connector_state *old_conn_state)
Ville Syrjälä580d3812014-04-09 13:29:00 +03001719{
Ville Syrjälä580d3812014-04-09 13:29:00 +03001720 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001721 struct drm_i915_private *dev_priv = to_i915(dev);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001722
Ville Syrjäläa5805162015-05-26 20:42:30 +03001723 mutex_lock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001724
Ville Syrjäläa8f327f2015-07-09 20:14:11 +03001725 /* Assert data lane reset */
1726 chv_data_lane_soft_reset(encoder, true);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001727
Ville Syrjäläa5805162015-05-26 20:42:30 +03001728 mutex_unlock(&dev_priv->sb_lock);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001729}
1730
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001731static void chv_hdmi_pre_enable(struct intel_encoder *encoder,
1732 struct intel_crtc_state *pipe_config,
1733 struct drm_connector_state *conn_state)
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001734{
1735 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Clint Taylorb4eb1562014-11-21 11:13:02 -08001736 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001737 struct drm_device *dev = encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001738 struct drm_i915_private *dev_priv = to_i915(dev);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001739
Ander Conselvan de Oliveirae7d2a7172016-04-27 15:44:20 +03001740 chv_phy_pre_encoder_enable(encoder);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001741
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001742 /* FIXME: Program the support xxx V-dB */
1743 /* Use 800mV-0dB */
Ander Conselvan de Oliveirab7fa22d2016-04-27 15:44:17 +03001744 chv_set_phy_signal_level(encoder, 128, 102, false);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001745
Clint Taylorb4eb1562014-11-21 11:13:02 -08001746 intel_hdmi->set_infoframes(&encoder->base,
Maarten Lankhorstac240282016-11-23 15:57:00 +01001747 pipe_config->has_hdmi_sink,
1748 pipe_config, conn_state);
Clint Taylorb4eb1562014-11-21 11:13:02 -08001749
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +02001750 g4x_enable_hdmi(encoder, pipe_config, conn_state);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001751
Ville Syrjälä9b6de0a2015-04-10 18:21:31 +03001752 vlv_wait_port_ready(dev_priv, dport, 0x0);
Ville Syrjäläb0b33842015-07-08 23:45:55 +03001753
1754 /* Second common lane will stay alive on its own now */
Ander Conselvan de Oliveirae7d2a7172016-04-27 15:44:20 +03001755 chv_phy_release_cl2_override(encoder);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001756}
1757
Eric Anholt7d573822009-01-02 13:33:00 -08001758static void intel_hdmi_destroy(struct drm_connector *connector)
1759{
Chris Wilson10e972d2014-09-04 21:43:45 +01001760 kfree(to_intel_connector(connector)->detect_edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001761 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +08001762 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001763}
1764
Eric Anholt7d573822009-01-02 13:33:00 -08001765static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Maarten Lankhorst4d688a22015-08-05 12:37:06 +02001766 .dpms = drm_atomic_helper_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -08001767 .detect = intel_hdmi_detect,
Chris Wilson953ece6972014-09-02 20:04:01 +01001768 .force = intel_hdmi_force,
Eric Anholt7d573822009-01-02 13:33:00 -08001769 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001770 .set_property = intel_hdmi_set_property,
Matt Roper2545e4a2015-01-22 16:51:27 -08001771 .atomic_get_property = intel_connector_atomic_get_property,
Chris Wilson1ebaa0b2016-06-24 14:00:15 +01001772 .late_register = intel_connector_register,
Chris Wilsonc191eca2016-06-17 11:40:33 +01001773 .early_unregister = intel_connector_unregister,
Eric Anholt7d573822009-01-02 13:33:00 -08001774 .destroy = intel_hdmi_destroy,
Matt Roperc6f95f22015-01-22 16:50:32 -08001775 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Ander Conselvan de Oliveira98969722015-03-20 16:18:06 +02001776 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Eric Anholt7d573822009-01-02 13:33:00 -08001777};
1778
1779static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
1780 .get_modes = intel_hdmi_get_modes,
1781 .mode_valid = intel_hdmi_mode_valid,
Eric Anholt7d573822009-01-02 13:33:00 -08001782};
1783
Eric Anholt7d573822009-01-02 13:33:00 -08001784static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001785 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -08001786};
1787
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001788static void
1789intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
1790{
Chris Wilson3f43c482011-05-12 22:17:24 +01001791 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00001792 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001793 intel_hdmi->color_range_auto = true;
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301794 intel_attach_aspect_ratio_property(connector);
1795 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001796}
1797
Ville Syrjäläe4ab73a2016-10-11 20:52:46 +03001798static u8 intel_hdmi_ddc_pin(struct drm_i915_private *dev_priv,
1799 enum port port)
1800{
1801 const struct ddi_vbt_port_info *info =
1802 &dev_priv->vbt.ddi_port_info[port];
1803 u8 ddc_pin;
1804
1805 if (info->alternate_ddc_pin) {
1806 DRM_DEBUG_KMS("Using DDC pin 0x%x for port %c (VBT)\n",
1807 info->alternate_ddc_pin, port_name(port));
1808 return info->alternate_ddc_pin;
1809 }
1810
1811 switch (port) {
1812 case PORT_B:
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02001813 if (IS_GEN9_LP(dev_priv))
Ville Syrjäläe4ab73a2016-10-11 20:52:46 +03001814 ddc_pin = GMBUS_PIN_1_BXT;
1815 else
1816 ddc_pin = GMBUS_PIN_DPB;
1817 break;
1818 case PORT_C:
Ander Conselvan de Oliveiracc3f90f2016-12-02 10:23:49 +02001819 if (IS_GEN9_LP(dev_priv))
Ville Syrjäläe4ab73a2016-10-11 20:52:46 +03001820 ddc_pin = GMBUS_PIN_2_BXT;
1821 else
1822 ddc_pin = GMBUS_PIN_DPC;
1823 break;
1824 case PORT_D:
1825 if (IS_CHERRYVIEW(dev_priv))
1826 ddc_pin = GMBUS_PIN_DPD_CHV;
1827 else
1828 ddc_pin = GMBUS_PIN_DPD;
1829 break;
1830 default:
1831 MISSING_CASE(port);
1832 ddc_pin = GMBUS_PIN_DPB;
1833 break;
1834 }
1835
1836 DRM_DEBUG_KMS("Using DDC pin 0x%x for port %c (platform default)\n",
1837 ddc_pin, port_name(port));
1838
1839 return ddc_pin;
1840}
1841
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001842void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
1843 struct intel_connector *intel_connector)
Eric Anholt7d573822009-01-02 13:33:00 -08001844{
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001845 struct drm_connector *connector = &intel_connector->base;
1846 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
1847 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1848 struct drm_device *dev = intel_encoder->base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +01001849 struct drm_i915_private *dev_priv = to_i915(dev);
Paulo Zanoni174edf12012-10-26 19:05:50 -02001850 enum port port = intel_dig_port->port;
Eric Anholt7d573822009-01-02 13:33:00 -08001851
Ville Syrjälä22f350422016-06-03 12:17:43 +03001852 DRM_DEBUG_KMS("Adding HDMI connector on port %c\n",
1853 port_name(port));
1854
Ville Syrjäläccb1a832015-12-08 19:59:38 +02001855 if (WARN(intel_dig_port->max_lanes < 4,
1856 "Not enough lanes (%d) for HDMI on port %c\n",
1857 intel_dig_port->max_lanes, port_name(port)))
1858 return;
1859
Eric Anholt7d573822009-01-02 13:33:00 -08001860 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -04001861 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -08001862 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
1863
Peter Rossc3febcc2012-01-28 14:49:26 +01001864 connector->interlace_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001865 connector->doublescan_allowed = 0;
Damien Lespiau573e74a2013-09-25 16:45:40 +01001866 connector->stereo_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001867
Ville Syrjäläe4ab73a2016-10-11 20:52:46 +03001868 intel_hdmi->ddc_bus = intel_hdmi_ddc_pin(dev_priv, port);
1869
Daniel Vetter08d644a2012-07-12 20:19:59 +02001870 switch (port) {
1871 case PORT_B:
Sonika Jindalcf1d5882015-08-10 10:35:36 +05301872 /*
1873 * On BXT A0/A1, sw needs to activate DDIA HPD logic and
1874 * interrupts to check the external panel connection.
1875 */
Jani Nikulae87a0052015-10-20 15:22:02 +03001876 if (IS_BXT_REVID(dev_priv, 0, BXT_REVID_A1))
Sonika Jindalcf1d5882015-08-10 10:35:36 +05301877 intel_encoder->hpd_pin = HPD_PORT_A;
1878 else
1879 intel_encoder->hpd_pin = HPD_PORT_B;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001880 break;
1881 case PORT_C:
Egbert Eich1d843f92013-02-25 12:06:49 -05001882 intel_encoder->hpd_pin = HPD_PORT_C;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001883 break;
1884 case PORT_D:
Egbert Eich1d843f92013-02-25 12:06:49 -05001885 intel_encoder->hpd_pin = HPD_PORT_D;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001886 break;
Xiong Zhang11c1b652015-08-17 16:04:04 +08001887 case PORT_E:
Xiong Zhang11c1b652015-08-17 16:04:04 +08001888 intel_encoder->hpd_pin = HPD_PORT_E;
1889 break;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001890 default:
Ville Syrjäläe4ab73a2016-10-11 20:52:46 +03001891 MISSING_CASE(port);
1892 return;
Ma Lingf8aed702009-08-24 13:50:24 +08001893 }
Eric Anholt7d573822009-01-02 13:33:00 -08001894
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01001895 if (IS_VALLEYVIEW(dev_priv) || IS_CHERRYVIEW(dev_priv)) {
Shobhit Kumar90b107c2012-03-28 13:39:32 -07001896 intel_hdmi->write_infoframe = vlv_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001897 intel_hdmi->set_infoframes = vlv_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001898 intel_hdmi->infoframe_enabled = vlv_infoframe_enabled;
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +01001899 } else if (IS_G4X(dev_priv)) {
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001900 intel_hdmi->write_infoframe = g4x_write_infoframe;
1901 intel_hdmi->set_infoframes = g4x_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001902 intel_hdmi->infoframe_enabled = g4x_infoframe_enabled;
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01001903 } else if (HAS_DDI(dev_priv)) {
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -03001904 intel_hdmi->write_infoframe = hsw_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001905 intel_hdmi->set_infoframes = hsw_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001906 intel_hdmi->infoframe_enabled = hsw_infoframe_enabled;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01001907 } else if (HAS_PCH_IBX(dev_priv)) {
Paulo Zanonifdf12502012-05-04 17:18:24 -03001908 intel_hdmi->write_infoframe = ibx_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001909 intel_hdmi->set_infoframes = ibx_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001910 intel_hdmi->infoframe_enabled = ibx_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001911 } else {
1912 intel_hdmi->write_infoframe = cpt_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001913 intel_hdmi->set_infoframes = cpt_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001914 intel_hdmi->infoframe_enabled = cpt_infoframe_enabled;
Jesse Barnes64a8fc02011-09-22 11:16:00 +05301915 }
Jesse Barnes45187ac2011-08-03 09:22:55 -07001916
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +01001917 if (HAS_DDI(dev_priv))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02001918 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
1919 else
1920 intel_connector->get_hw_state = intel_connector_get_hw_state;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001921
1922 intel_hdmi_add_properties(intel_hdmi, connector);
1923
1924 intel_connector_attach_encoder(intel_connector, intel_encoder);
Shashank Sharmad8b4c432015-09-04 18:56:11 +05301925 intel_hdmi->attached_connector = intel_connector;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001926
1927 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
1928 * 0xd. Failure to do so will result in spurious interrupts being
1929 * generated on the port when a cable is not attached.
1930 */
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +01001931 if (IS_G4X(dev_priv) && !IS_GM45(dev_priv)) {
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001932 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
1933 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
1934 }
1935}
1936
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +02001937void intel_hdmi_init(struct drm_i915_private *dev_priv,
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02001938 i915_reg_t hdmi_reg, enum port port)
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001939{
1940 struct intel_digital_port *intel_dig_port;
1941 struct intel_encoder *intel_encoder;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001942 struct intel_connector *intel_connector;
1943
Daniel Vetterb14c5672013-09-19 12:18:32 +02001944 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001945 if (!intel_dig_port)
1946 return;
1947
Ander Conselvan de Oliveira08d9bc92015-04-10 10:59:10 +03001948 intel_connector = intel_connector_alloc();
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001949 if (!intel_connector) {
1950 kfree(intel_dig_port);
1951 return;
1952 }
1953
1954 intel_encoder = &intel_dig_port->base;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001955
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +02001956 drm_encoder_init(&dev_priv->drm, &intel_encoder->base,
1957 &intel_hdmi_enc_funcs, DRM_MODE_ENCODER_TMDS,
1958 "HDMI %c", port_name(port));
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001959
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001960 intel_encoder->compute_config = intel_hdmi_compute_config;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01001961 if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjäläa4790ce2015-05-05 17:17:35 +03001962 intel_encoder->disable = pch_disable_hdmi;
1963 intel_encoder->post_disable = pch_post_disable_hdmi;
1964 } else {
1965 intel_encoder->disable = g4x_disable_hdmi;
1966 }
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001967 intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001968 intel_encoder->get_config = intel_hdmi_get_config;
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01001969 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03001970 intel_encoder->pre_pll_enable = chv_hdmi_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001971 intel_encoder->pre_enable = chv_hdmi_pre_enable;
1972 intel_encoder->enable = vlv_enable_hdmi;
Ville Syrjälä580d3812014-04-09 13:29:00 +03001973 intel_encoder->post_disable = chv_hdmi_post_disable;
Ville Syrjäläd6db9952015-07-08 23:45:49 +03001974 intel_encoder->post_pll_disable = chv_hdmi_post_pll_disable;
Tvrtko Ursulin11a914c2016-10-13 11:03:08 +01001975 } else if (IS_VALLEYVIEW(dev_priv)) {
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001976 intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
1977 intel_encoder->pre_enable = vlv_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001978 intel_encoder->enable = vlv_enable_hdmi;
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001979 intel_encoder->post_disable = vlv_hdmi_post_disable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001980 } else {
Jesse Barnes13732ba2014-04-05 11:51:35 -07001981 intel_encoder->pre_enable = intel_hdmi_pre_enable;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01001982 if (HAS_PCH_CPT(dev_priv))
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001983 intel_encoder->enable = cpt_enable_hdmi;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +01001984 else if (HAS_PCH_IBX(dev_priv))
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001985 intel_encoder->enable = ibx_enable_hdmi;
Ville Syrjäläd1b15892015-05-05 17:06:19 +03001986 else
Ville Syrjäläbf868c72015-05-05 17:06:23 +03001987 intel_encoder->enable = g4x_enable_hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001988 }
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001989
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001990 intel_encoder->type = INTEL_OUTPUT_HDMI;
Pandiyan, Dhinakaran03cdc1d2016-09-19 18:24:38 -07001991 intel_encoder->port = port;
Tvrtko Ursulin920a14b2016-10-14 10:13:44 +01001992 if (IS_CHERRYVIEW(dev_priv)) {
Ville Syrjälä882ec382014-04-28 14:07:43 +03001993 if (port == PORT_D)
1994 intel_encoder->crtc_mask = 1 << 2;
1995 else
1996 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
1997 } else {
1998 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
1999 }
Ville Syrjälä301ea742014-03-03 16:15:30 +02002000 intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
Ville Syrjäläc6f14952014-03-03 16:15:31 +02002001 /*
2002 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
2003 * to work on real hardware. And since g4x can send infoframes to
2004 * only one port anyway, nothing is lost by allowing it.
2005 */
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +01002006 if (IS_G4X(dev_priv))
Ville Syrjäläc6f14952014-03-03 16:15:31 +02002007 intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -08002008
Paulo Zanoni174edf12012-10-26 19:05:50 -02002009 intel_dig_port->port = port;
Paulo Zanonib242b7f2013-02-18 19:00:26 -03002010 intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +02002011 intel_dig_port->dp.output_reg = INVALID_MMIO_REG;
Ville Syrjäläccb1a832015-12-08 19:59:38 +02002012 intel_dig_port->max_lanes = 4;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01002013
Paulo Zanonib9cb2342012-10-26 19:05:47 -02002014 intel_hdmi_init_connector(intel_dig_port, intel_connector);
Eric Anholt7d573822009-01-02 13:33:00 -08002015}