blob: 3abc2000fce9106843693290304e8e477794c783 [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>
34#include <drm/drm_crtc.h>
35#include <drm/drm_edid.h>
Eric Anholt7d573822009-01-02 13:33:00 -080036#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010037#include <drm/i915_drm.h>
Eric Anholt7d573822009-01-02 13:33:00 -080038#include "i915_drv.h"
39
Paulo Zanoni30add222012-10-26 19:05:45 -020040static struct drm_device *intel_hdmi_to_dev(struct intel_hdmi *intel_hdmi)
41{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020042 return hdmi_to_dig_port(intel_hdmi)->base.base.dev;
Paulo Zanoni30add222012-10-26 19:05:45 -020043}
44
Daniel Vetterafba0182012-06-12 16:36:45 +020045static void
46assert_hdmi_port_disabled(struct intel_hdmi *intel_hdmi)
47{
Paulo Zanoni30add222012-10-26 19:05:45 -020048 struct drm_device *dev = intel_hdmi_to_dev(intel_hdmi);
Daniel Vetterafba0182012-06-12 16:36:45 +020049 struct drm_i915_private *dev_priv = dev->dev_private;
50 uint32_t enabled_bits;
51
Paulo Zanoniaffa9352012-11-23 15:30:39 -020052 enabled_bits = HAS_DDI(dev) ? DDI_BUF_CTL_ENABLE : SDVO_ENABLE;
Daniel Vetterafba0182012-06-12 16:36:45 +020053
Paulo Zanonib242b7f2013-02-18 19:00:26 -030054 WARN(I915_READ(intel_hdmi->hdmi_reg) & enabled_bits,
Daniel Vetterafba0182012-06-12 16:36:45 +020055 "HDMI port enabled, expecting disabled\n");
56}
57
Eugeni Dodonovf5bbfca2012-05-09 15:37:30 -030058struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder)
Chris Wilsonea5b2132010-08-04 13:50:23 +010059{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020060 struct intel_digital_port *intel_dig_port =
61 container_of(encoder, struct intel_digital_port, base.base);
62 return &intel_dig_port->hdmi;
Chris Wilsonea5b2132010-08-04 13:50:23 +010063}
64
Chris Wilsondf0e9242010-09-09 16:20:55 +010065static struct intel_hdmi *intel_attached_hdmi(struct drm_connector *connector)
66{
Paulo Zanonida63a9f2012-10-26 19:05:46 -020067 return enc_to_intel_hdmi(&intel_attached_encoder(connector)->base);
Chris Wilsondf0e9242010-09-09 16:20:55 +010068}
69
Damien Lespiau178f7362013-08-06 20:32:18 +010070static u32 g4x_infoframe_index(enum hdmi_infoframe_type type)
David Härdeman3c17fe42010-09-24 21:44:32 +020071{
Damien Lespiau178f7362013-08-06 20:32:18 +010072 switch (type) {
73 case HDMI_INFOFRAME_TYPE_AVI:
Paulo Zanonied517fb2012-05-14 17:12:50 -030074 return VIDEO_DIP_SELECT_AVI;
Damien Lespiau178f7362013-08-06 20:32:18 +010075 case HDMI_INFOFRAME_TYPE_SPD:
Paulo Zanonied517fb2012-05-14 17:12:50 -030076 return VIDEO_DIP_SELECT_SPD;
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +010077 case HDMI_INFOFRAME_TYPE_VENDOR:
78 return VIDEO_DIP_SELECT_VENDOR;
Jesse Barnes45187ac2011-08-03 09:22:55 -070079 default:
Damien Lespiau178f7362013-08-06 20:32:18 +010080 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
Paulo Zanonied517fb2012-05-14 17:12:50 -030081 return 0;
Jesse Barnes45187ac2011-08-03 09:22:55 -070082 }
Jesse Barnes45187ac2011-08-03 09:22:55 -070083}
84
Damien Lespiau178f7362013-08-06 20:32:18 +010085static u32 g4x_infoframe_enable(enum hdmi_infoframe_type type)
Jesse Barnes45187ac2011-08-03 09:22:55 -070086{
Damien Lespiau178f7362013-08-06 20:32:18 +010087 switch (type) {
88 case HDMI_INFOFRAME_TYPE_AVI:
Paulo Zanonied517fb2012-05-14 17:12:50 -030089 return VIDEO_DIP_ENABLE_AVI;
Damien Lespiau178f7362013-08-06 20:32:18 +010090 case HDMI_INFOFRAME_TYPE_SPD:
Paulo Zanonied517fb2012-05-14 17:12:50 -030091 return VIDEO_DIP_ENABLE_SPD;
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +010092 case HDMI_INFOFRAME_TYPE_VENDOR:
93 return VIDEO_DIP_ENABLE_VENDOR;
Paulo Zanonifa193ff2012-05-04 17:18:20 -030094 default:
Damien Lespiau178f7362013-08-06 20:32:18 +010095 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
Paulo Zanonied517fb2012-05-14 17:12:50 -030096 return 0;
Paulo Zanonifa193ff2012-05-04 17:18:20 -030097 }
Paulo Zanonifa193ff2012-05-04 17:18:20 -030098}
99
Damien Lespiau178f7362013-08-06 20:32:18 +0100100static u32 hsw_infoframe_enable(enum hdmi_infoframe_type type)
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300101{
Damien Lespiau178f7362013-08-06 20:32:18 +0100102 switch (type) {
103 case HDMI_INFOFRAME_TYPE_AVI:
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300104 return VIDEO_DIP_ENABLE_AVI_HSW;
Damien Lespiau178f7362013-08-06 20:32:18 +0100105 case HDMI_INFOFRAME_TYPE_SPD:
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300106 return VIDEO_DIP_ENABLE_SPD_HSW;
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100107 case HDMI_INFOFRAME_TYPE_VENDOR:
108 return VIDEO_DIP_ENABLE_VS_HSW;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300109 default:
Damien Lespiau178f7362013-08-06 20:32:18 +0100110 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300111 return 0;
112 }
113}
114
Damien Lespiau178f7362013-08-06 20:32:18 +0100115static u32 hsw_infoframe_data_reg(enum hdmi_infoframe_type type,
Antti Koskipaaa57c7742014-02-04 14:22:24 +0200116 enum transcoder cpu_transcoder,
117 struct drm_i915_private *dev_priv)
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300118{
Damien Lespiau178f7362013-08-06 20:32:18 +0100119 switch (type) {
120 case HDMI_INFOFRAME_TYPE_AVI:
Rodrigo Vivi7d9bceb2013-02-25 19:55:16 -0300121 return HSW_TVIDEO_DIP_AVI_DATA(cpu_transcoder);
Damien Lespiau178f7362013-08-06 20:32:18 +0100122 case HDMI_INFOFRAME_TYPE_SPD:
Rodrigo Vivi7d9bceb2013-02-25 19:55:16 -0300123 return HSW_TVIDEO_DIP_SPD_DATA(cpu_transcoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100124 case HDMI_INFOFRAME_TYPE_VENDOR:
125 return HSW_TVIDEO_DIP_VS_DATA(cpu_transcoder);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300126 default:
Damien Lespiau178f7362013-08-06 20:32:18 +0100127 DRM_DEBUG_DRIVER("unknown info frame type %d\n", type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300128 return 0;
129 }
130}
131
Daniel Vettera3da1df2012-05-08 15:19:06 +0200132static void g4x_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100133 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200134 const void *frame, ssize_t len)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700135{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200136 const uint32_t *data = frame;
David Härdeman3c17fe42010-09-24 21:44:32 +0200137 struct drm_device *dev = encoder->dev;
138 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300139 u32 val = I915_READ(VIDEO_DIP_CTL);
Damien Lespiau178f7362013-08-06 20:32:18 +0100140 int i;
David Härdeman3c17fe42010-09-24 21:44:32 +0200141
Paulo Zanoni822974a2012-05-28 16:42:51 -0300142 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
143
Paulo Zanoni1d4f85a2012-05-04 17:18:18 -0300144 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100145 val |= g4x_infoframe_index(type);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700146
Damien Lespiau178f7362013-08-06 20:32:18 +0100147 val &= ~g4x_infoframe_enable(type);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300148
149 I915_WRITE(VIDEO_DIP_CTL, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700150
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300151 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700152 for (i = 0; i < len; i += 4) {
David Härdeman3c17fe42010-09-24 21:44:32 +0200153 I915_WRITE(VIDEO_DIP_DATA, *data);
154 data++;
155 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300156 /* Write every possible data byte to force correct ECC calculation. */
157 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
158 I915_WRITE(VIDEO_DIP_DATA, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300159 mmiowb();
David Härdeman3c17fe42010-09-24 21:44:32 +0200160
Damien Lespiau178f7362013-08-06 20:32:18 +0100161 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300162 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200163 val |= VIDEO_DIP_FREQ_VSYNC;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700164
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300165 I915_WRITE(VIDEO_DIP_CTL, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300166 POSTING_READ(VIDEO_DIP_CTL);
David Härdeman3c17fe42010-09-24 21:44:32 +0200167}
168
Jesse Barnese43823e2014-11-05 14:26:08 -0800169static bool g4x_infoframe_enabled(struct drm_encoder *encoder)
170{
171 struct drm_device *dev = encoder->dev;
172 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes89a35ec2014-11-20 13:24:13 -0800173 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Jesse Barnese43823e2014-11-05 14:26:08 -0800174 u32 val = I915_READ(VIDEO_DIP_CTL);
175
Jesse Barnes89a35ec2014-11-20 13:24:13 -0800176 if (VIDEO_DIP_PORT(intel_dig_port->port) == (val & VIDEO_DIP_PORT_MASK))
177 return val & VIDEO_DIP_ENABLE;
178
179 return false;
Jesse Barnese43823e2014-11-05 14:26:08 -0800180}
181
Paulo Zanonifdf12502012-05-04 17:18:24 -0300182static void ibx_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100183 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200184 const void *frame, ssize_t len)
Paulo Zanonifdf12502012-05-04 17:18:24 -0300185{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200186 const uint32_t *data = frame;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300187 struct drm_device *dev = encoder->dev;
188 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300189 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100190 int i, reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300191 u32 val = I915_READ(reg);
192
Paulo Zanoni822974a2012-05-28 16:42:51 -0300193 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
194
Paulo Zanonifdf12502012-05-04 17:18:24 -0300195 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100196 val |= g4x_infoframe_index(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300197
Damien Lespiau178f7362013-08-06 20:32:18 +0100198 val &= ~g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300199
200 I915_WRITE(reg, val);
201
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300202 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300203 for (i = 0; i < len; i += 4) {
204 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
205 data++;
206 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300207 /* Write every possible data byte to force correct ECC calculation. */
208 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
209 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300210 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300211
Damien Lespiau178f7362013-08-06 20:32:18 +0100212 val |= g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300213 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200214 val |= VIDEO_DIP_FREQ_VSYNC;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300215
216 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300217 POSTING_READ(reg);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300218}
219
Jesse Barnese43823e2014-11-05 14:26:08 -0800220static bool ibx_infoframe_enabled(struct drm_encoder *encoder)
221{
222 struct drm_device *dev = encoder->dev;
223 struct drm_i915_private *dev_priv = dev->dev_private;
224 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
225 int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
226 u32 val = I915_READ(reg);
227
228 return val & VIDEO_DIP_ENABLE;
229}
230
Paulo Zanonifdf12502012-05-04 17:18:24 -0300231static void cpt_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100232 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200233 const void *frame, ssize_t len)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700234{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200235 const uint32_t *data = frame;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700236 struct drm_device *dev = encoder->dev;
237 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300238 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100239 int i, reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300240 u32 val = I915_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700241
Paulo Zanoni822974a2012-05-28 16:42:51 -0300242 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
243
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530244 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100245 val |= g4x_infoframe_index(type);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700246
Paulo Zanoniecb97852012-05-04 17:18:21 -0300247 /* The DIP control register spec says that we need to update the AVI
248 * infoframe without clearing its enable bit */
Damien Lespiau178f7362013-08-06 20:32:18 +0100249 if (type != HDMI_INFOFRAME_TYPE_AVI)
250 val &= ~g4x_infoframe_enable(type);
Paulo Zanoniecb97852012-05-04 17:18:21 -0300251
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300252 I915_WRITE(reg, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700253
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300254 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700255 for (i = 0; i < len; i += 4) {
256 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
257 data++;
258 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300259 /* Write every possible data byte to force correct ECC calculation. */
260 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
261 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300262 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700263
Damien Lespiau178f7362013-08-06 20:32:18 +0100264 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300265 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200266 val |= VIDEO_DIP_FREQ_VSYNC;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700267
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300268 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300269 POSTING_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700270}
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700271
Jesse Barnese43823e2014-11-05 14:26:08 -0800272static bool cpt_infoframe_enabled(struct drm_encoder *encoder)
273{
274 struct drm_device *dev = encoder->dev;
275 struct drm_i915_private *dev_priv = dev->dev_private;
276 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
277 int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
278 u32 val = I915_READ(reg);
279
280 return val & VIDEO_DIP_ENABLE;
281}
282
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700283static void vlv_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100284 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200285 const void *frame, ssize_t len)
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700286{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200287 const uint32_t *data = frame;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700288 struct drm_device *dev = encoder->dev;
289 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300290 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100291 int i, reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300292 u32 val = I915_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700293
Paulo Zanoni822974a2012-05-28 16:42:51 -0300294 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
295
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700296 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100297 val |= g4x_infoframe_index(type);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700298
Damien Lespiau178f7362013-08-06 20:32:18 +0100299 val &= ~g4x_infoframe_enable(type);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300300
301 I915_WRITE(reg, val);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700302
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300303 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700304 for (i = 0; i < len; i += 4) {
305 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
306 data++;
307 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300308 /* Write every possible data byte to force correct ECC calculation. */
309 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
310 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300311 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700312
Damien Lespiau178f7362013-08-06 20:32:18 +0100313 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300314 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200315 val |= VIDEO_DIP_FREQ_VSYNC;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700316
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300317 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300318 POSTING_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700319}
320
Jesse Barnese43823e2014-11-05 14:26:08 -0800321static bool vlv_infoframe_enabled(struct drm_encoder *encoder)
322{
323 struct drm_device *dev = encoder->dev;
324 struct drm_i915_private *dev_priv = dev->dev_private;
325 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
326 int reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
327 u32 val = I915_READ(reg);
328
329 return val & VIDEO_DIP_ENABLE;
330}
331
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300332static void hsw_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100333 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200334 const void *frame, ssize_t len)
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300335{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200336 const uint32_t *data = frame;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300337 struct drm_device *dev = encoder->dev;
338 struct drm_i915_private *dev_priv = dev->dev_private;
339 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +0200340 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config.cpu_transcoder);
Damien Lespiau178f7362013-08-06 20:32:18 +0100341 u32 data_reg;
342 int i;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300343 u32 val = I915_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300344
Damien Lespiau178f7362013-08-06 20:32:18 +0100345 data_reg = hsw_infoframe_data_reg(type,
Antti Koskipaaa57c7742014-02-04 14:22:24 +0200346 intel_crtc->config.cpu_transcoder,
347 dev_priv);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300348 if (data_reg == 0)
349 return;
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300350
Damien Lespiau178f7362013-08-06 20:32:18 +0100351 val &= ~hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300352 I915_WRITE(ctl_reg, val);
353
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300354 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300355 for (i = 0; i < len; i += 4) {
356 I915_WRITE(data_reg + i, *data);
357 data++;
358 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300359 /* Write every possible data byte to force correct ECC calculation. */
360 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
361 I915_WRITE(data_reg + i, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300362 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300363
Damien Lespiau178f7362013-08-06 20:32:18 +0100364 val |= hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300365 I915_WRITE(ctl_reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300366 POSTING_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300367}
368
Jesse Barnese43823e2014-11-05 14:26:08 -0800369static bool hsw_infoframe_enabled(struct drm_encoder *encoder)
370{
371 struct drm_device *dev = encoder->dev;
372 struct drm_i915_private *dev_priv = dev->dev_private;
373 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
374 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config.cpu_transcoder);
375 u32 val = I915_READ(ctl_reg);
376
377 return val & (VIDEO_DIP_ENABLE_AVI_HSW | VIDEO_DIP_ENABLE_SPD_HSW |
378 VIDEO_DIP_ENABLE_VS_HSW);
379}
380
Damien Lespiau5adaea72013-08-06 20:32:19 +0100381/*
382 * The data we write to the DIP data buffer registers is 1 byte bigger than the
383 * HDMI infoframe size because of an ECC/reserved byte at position 3 (starting
384 * at 0). It's also a byte used by DisplayPort so the same DIP registers can be
385 * used for both technologies.
386 *
387 * DW0: Reserved/ECC/DP | HB2 | HB1 | HB0
388 * DW1: DB3 | DB2 | DB1 | DB0
389 * DW2: DB7 | DB6 | DB5 | DB4
390 * DW3: ...
391 *
392 * (HB is Header Byte, DB is Data Byte)
393 *
394 * The hdmi pack() functions don't know about that hardware specific hole so we
395 * trick them by giving an offset into the buffer and moving back the header
396 * bytes by one.
397 */
Damien Lespiau9198ee52013-08-06 20:32:24 +0100398static void intel_write_infoframe(struct drm_encoder *encoder,
399 union hdmi_infoframe *frame)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700400{
401 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100402 uint8_t buffer[VIDEO_DIP_DATA_SIZE];
403 ssize_t len;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700404
Damien Lespiau5adaea72013-08-06 20:32:19 +0100405 /* see comment above for the reason for this offset */
406 len = hdmi_infoframe_pack(frame, buffer + 1, sizeof(buffer) - 1);
407 if (len < 0)
408 return;
409
410 /* Insert the 'hole' (see big comment above) at position 3 */
411 buffer[0] = buffer[1];
412 buffer[1] = buffer[2];
413 buffer[2] = buffer[3];
414 buffer[3] = 0;
415 len++;
416
417 intel_hdmi->write_infoframe(encoder, frame->any.type, buffer, len);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700418}
419
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300420static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
Paulo Zanonic846b612012-04-13 16:31:41 -0300421 struct drm_display_mode *adjusted_mode)
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700422{
Ville Syrjäläabedc072013-01-17 16:31:31 +0200423 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Daniel Vetter50f3b012013-03-27 00:44:56 +0100424 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100425 union hdmi_infoframe frame;
426 int ret;
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700427
Vandana Kannan94a11dd2014-06-11 11:06:01 +0530428 /* Set user selected PAR to incoming mode's member */
429 adjusted_mode->picture_aspect_ratio = intel_hdmi->aspect_ratio;
430
Damien Lespiau5adaea72013-08-06 20:32:19 +0100431 ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
432 adjusted_mode);
433 if (ret < 0) {
434 DRM_ERROR("couldn't fill AVI infoframe\n");
435 return;
436 }
Paulo Zanonic846b612012-04-13 16:31:41 -0300437
Ville Syrjäläabedc072013-01-17 16:31:31 +0200438 if (intel_hdmi->rgb_quant_range_selectable) {
Daniel Vetter50f3b012013-03-27 00:44:56 +0100439 if (intel_crtc->config.limited_color_range)
Damien Lespiau5adaea72013-08-06 20:32:19 +0100440 frame.avi.quantization_range =
441 HDMI_QUANTIZATION_RANGE_LIMITED;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200442 else
Damien Lespiau5adaea72013-08-06 20:32:19 +0100443 frame.avi.quantization_range =
444 HDMI_QUANTIZATION_RANGE_FULL;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200445 }
446
Damien Lespiau9198ee52013-08-06 20:32:24 +0100447 intel_write_infoframe(encoder, &frame);
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700448}
449
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300450static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700451{
Damien Lespiau5adaea72013-08-06 20:32:19 +0100452 union hdmi_infoframe frame;
453 int ret;
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700454
Damien Lespiau5adaea72013-08-06 20:32:19 +0100455 ret = hdmi_spd_infoframe_init(&frame.spd, "Intel", "Integrated gfx");
456 if (ret < 0) {
457 DRM_ERROR("couldn't fill SPD infoframe\n");
458 return;
459 }
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700460
Damien Lespiau5adaea72013-08-06 20:32:19 +0100461 frame.spd.sdi = HDMI_SPD_SDI_PC;
462
Damien Lespiau9198ee52013-08-06 20:32:24 +0100463 intel_write_infoframe(encoder, &frame);
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700464}
465
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100466static void
467intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder,
468 struct drm_display_mode *adjusted_mode)
469{
470 union hdmi_infoframe frame;
471 int ret;
472
473 ret = drm_hdmi_vendor_infoframe_from_display_mode(&frame.vendor.hdmi,
474 adjusted_mode);
475 if (ret < 0)
476 return;
477
478 intel_write_infoframe(encoder, &frame);
479}
480
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300481static void g4x_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200482 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300483 struct drm_display_mode *adjusted_mode)
484{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300485 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200486 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
487 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300488 u32 reg = VIDEO_DIP_CTL;
489 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200490 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300491
Daniel Vetterafba0182012-06-12 16:36:45 +0200492 assert_hdmi_port_disabled(intel_hdmi);
493
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300494 /* If the registers were not initialized yet, they might be zeroes,
495 * which means we're selecting the AVI DIP and we're setting its
496 * frequency to once. This seems to really confuse the HW and make
497 * things stop working (the register spec says the AVI always needs to
498 * be sent every VSync). So here we avoid writing to the register more
499 * than we need and also explicitly select the AVI DIP and explicitly
500 * set its frequency to every VSync. Avoiding to write it twice seems to
501 * be enough to solve the problem, but being defensive shouldn't hurt us
502 * either. */
503 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
504
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200505 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300506 if (!(val & VIDEO_DIP_ENABLE))
507 return;
508 val &= ~VIDEO_DIP_ENABLE;
509 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300510 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300511 return;
512 }
513
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300514 if (port != (val & VIDEO_DIP_PORT_MASK)) {
515 if (val & VIDEO_DIP_ENABLE) {
516 val &= ~VIDEO_DIP_ENABLE;
517 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300518 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300519 }
520 val &= ~VIDEO_DIP_PORT_MASK;
521 val |= port;
522 }
523
Paulo Zanoni822974a2012-05-28 16:42:51 -0300524 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300525 val &= ~VIDEO_DIP_ENABLE_VENDOR;
Paulo Zanoni822974a2012-05-28 16:42:51 -0300526
Paulo Zanonif278d972012-05-28 16:42:50 -0300527 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300528 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300529
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300530 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
531 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100532 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300533}
534
535static void ibx_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200536 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300537 struct drm_display_mode *adjusted_mode)
538{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300539 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
540 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200541 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
542 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300543 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
544 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200545 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300546
Daniel Vetterafba0182012-06-12 16:36:45 +0200547 assert_hdmi_port_disabled(intel_hdmi);
548
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300549 /* See the big comment in g4x_set_infoframes() */
550 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
551
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200552 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300553 if (!(val & VIDEO_DIP_ENABLE))
554 return;
555 val &= ~VIDEO_DIP_ENABLE;
556 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300557 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300558 return;
559 }
560
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300561 if (port != (val & VIDEO_DIP_PORT_MASK)) {
562 if (val & VIDEO_DIP_ENABLE) {
563 val &= ~VIDEO_DIP_ENABLE;
564 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300565 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300566 }
567 val &= ~VIDEO_DIP_PORT_MASK;
568 val |= port;
569 }
570
Paulo Zanoni822974a2012-05-28 16:42:51 -0300571 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300572 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
573 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300574
Paulo Zanonif278d972012-05-28 16:42:50 -0300575 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300576 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300577
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300578 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
579 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100580 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300581}
582
583static void cpt_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200584 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300585 struct drm_display_mode *adjusted_mode)
586{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300587 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
588 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
589 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
590 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
591 u32 val = I915_READ(reg);
592
Daniel Vetterafba0182012-06-12 16:36:45 +0200593 assert_hdmi_port_disabled(intel_hdmi);
594
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300595 /* See the big comment in g4x_set_infoframes() */
596 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
597
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200598 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300599 if (!(val & VIDEO_DIP_ENABLE))
600 return;
601 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI);
602 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300603 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300604 return;
605 }
606
Paulo Zanoni822974a2012-05-28 16:42:51 -0300607 /* Set both together, unset both together: see the spec. */
608 val |= VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300609 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
610 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300611
612 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300613 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300614
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300615 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
616 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100617 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300618}
619
620static void vlv_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200621 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300622 struct drm_display_mode *adjusted_mode)
623{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300624 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700625 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300626 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
627 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
628 u32 reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
629 u32 val = I915_READ(reg);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700630 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300631
Daniel Vetterafba0182012-06-12 16:36:45 +0200632 assert_hdmi_port_disabled(intel_hdmi);
633
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300634 /* See the big comment in g4x_set_infoframes() */
635 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
636
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200637 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300638 if (!(val & VIDEO_DIP_ENABLE))
639 return;
640 val &= ~VIDEO_DIP_ENABLE;
641 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300642 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300643 return;
644 }
645
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700646 if (port != (val & VIDEO_DIP_PORT_MASK)) {
647 if (val & VIDEO_DIP_ENABLE) {
648 val &= ~VIDEO_DIP_ENABLE;
649 I915_WRITE(reg, val);
650 POSTING_READ(reg);
651 }
652 val &= ~VIDEO_DIP_PORT_MASK;
653 val |= port;
654 }
655
Paulo Zanoni822974a2012-05-28 16:42:51 -0300656 val |= VIDEO_DIP_ENABLE;
Jesse Barnes4d47dfb2014-04-02 10:08:52 -0700657 val &= ~(VIDEO_DIP_ENABLE_AVI | VIDEO_DIP_ENABLE_VENDOR |
658 VIDEO_DIP_ENABLE_GAMUT | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300659
660 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300661 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300662
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300663 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
664 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100665 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300666}
667
668static void hsw_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200669 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300670 struct drm_display_mode *adjusted_mode)
671{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300672 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
673 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
674 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Daniel Vetter3b117c82013-04-17 20:15:07 +0200675 u32 reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config.cpu_transcoder);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300676 u32 val = I915_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300677
Daniel Vetterafba0182012-06-12 16:36:45 +0200678 assert_hdmi_port_disabled(intel_hdmi);
679
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200680 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300681 I915_WRITE(reg, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300682 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300683 return;
684 }
685
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300686 val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_GCP_HSW |
687 VIDEO_DIP_ENABLE_VS_HSW | VIDEO_DIP_ENABLE_GMP_HSW);
688
689 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300690 POSTING_READ(reg);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300691
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300692 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
693 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100694 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300695}
696
Daniel Vetter4cde8a22014-04-24 23:54:56 +0200697static void intel_hdmi_prepare(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800698{
Daniel Vetterc59423a2013-07-21 21:37:04 +0200699 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800700 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc59423a2013-07-21 21:37:04 +0200701 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
702 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
703 struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300704 u32 hdmi_val;
Eric Anholt7d573822009-01-02 13:33:00 -0800705
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300706 hdmi_val = SDVO_ENCODING_HDMI;
Ville Syrjälä2af2c492013-06-25 14:16:34 +0300707 if (!HAS_PCH_SPLIT(dev))
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300708 hdmi_val |= intel_hdmi->color_range;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400709 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300710 hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400711 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300712 hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800713
Daniel Vetterc59423a2013-07-21 21:37:04 +0200714 if (crtc->config.pipe_bpp > 24)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300715 hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700716 else
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300717 hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700718
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200719 if (crtc->config.has_hdmi_sink)
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300720 hdmi_val |= HDMI_MODE_SELECT_HDMI;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800721
Jesse Barnes75770562011-10-12 09:01:58 -0700722 if (HAS_PCH_CPT(dev))
Daniel Vetterc59423a2013-07-21 21:37:04 +0200723 hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
Chon Ming Lee44f37d12014-04-09 13:28:21 +0300724 else if (IS_CHERRYVIEW(dev))
725 hdmi_val |= SDVO_PIPE_SEL_CHV(crtc->pipe);
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300726 else
Daniel Vetterc59423a2013-07-21 21:37:04 +0200727 hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
Eric Anholt7d573822009-01-02 13:33:00 -0800728
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300729 I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
730 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800731}
732
Daniel Vetter85234cd2012-07-02 13:27:29 +0200733static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
734 enum pipe *pipe)
Eric Anholt7d573822009-01-02 13:33:00 -0800735{
Daniel Vetter85234cd2012-07-02 13:27:29 +0200736 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800737 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200738 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Imre Deak6d129be2014-03-05 16:20:54 +0200739 enum intel_display_power_domain power_domain;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200740 u32 tmp;
741
Imre Deak6d129be2014-03-05 16:20:54 +0200742 power_domain = intel_display_port_power_domain(encoder);
Daniel Vetterf458ebb2014-09-30 10:56:39 +0200743 if (!intel_display_power_is_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200744 return false;
745
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300746 tmp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200747
748 if (!(tmp & SDVO_ENABLE))
749 return false;
750
751 if (HAS_PCH_CPT(dev))
752 *pipe = PORT_TO_PIPE_CPT(tmp);
Ville Syrjälä71485e02014-04-09 13:28:55 +0300753 else if (IS_CHERRYVIEW(dev))
754 *pipe = SDVO_PORT_TO_PIPE_CHV(tmp);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200755 else
756 *pipe = PORT_TO_PIPE(tmp);
757
758 return true;
759}
760
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700761static void intel_hdmi_get_config(struct intel_encoder *encoder,
762 struct intel_crtc_config *pipe_config)
763{
764 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300765 struct drm_device *dev = encoder->base.dev;
766 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700767 u32 tmp, flags = 0;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300768 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700769
770 tmp = I915_READ(intel_hdmi->hdmi_reg);
771
772 if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
773 flags |= DRM_MODE_FLAG_PHSYNC;
774 else
775 flags |= DRM_MODE_FLAG_NHSYNC;
776
777 if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
778 flags |= DRM_MODE_FLAG_PVSYNC;
779 else
780 flags |= DRM_MODE_FLAG_NVSYNC;
781
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200782 if (tmp & HDMI_MODE_SELECT_HDMI)
783 pipe_config->has_hdmi_sink = true;
784
Jesse Barnese43823e2014-11-05 14:26:08 -0800785 if (intel_hdmi->infoframe_enabled(&encoder->base))
786 pipe_config->has_infoframe = true;
787
Jani Nikulac84db772014-09-17 15:34:58 +0300788 if (tmp & SDVO_AUDIO_ENABLE)
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200789 pipe_config->has_audio = true;
790
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300791 if (!HAS_PCH_SPLIT(dev) &&
792 tmp & HDMI_COLOR_RANGE_16_235)
793 pipe_config->limited_color_range = true;
794
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700795 pipe_config->adjusted_mode.flags |= flags;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300796
797 if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
798 dotclock = pipe_config->port_clock * 2 / 3;
799 else
800 dotclock = pipe_config->port_clock;
801
802 if (HAS_PCH_SPLIT(dev_priv->dev))
803 ironlake_check_encoder_dotclock(pipe_config, dotclock);
804
Damien Lespiau241bfc32013-09-25 16:45:37 +0100805 pipe_config->adjusted_mode.crtc_clock = dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700806}
807
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200808static void intel_enable_hdmi(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800809{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200810 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800811 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300812 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200813 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Eric Anholt7d573822009-01-02 13:33:00 -0800814 u32 temp;
Wu Fengguang2deed762011-12-09 20:42:20 +0800815 u32 enable_bits = SDVO_ENABLE;
816
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200817 if (intel_crtc->config.has_audio)
Wu Fengguang2deed762011-12-09 20:42:20 +0800818 enable_bits |= SDVO_AUDIO_ENABLE;
Eric Anholt7d573822009-01-02 13:33:00 -0800819
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300820 temp = I915_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000821
Daniel Vetter7a87c282012-06-05 11:03:39 +0200822 /* HW workaround for IBX, we need to move the port to transcoder A
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300823 * before disabling it, so restore the transcoder select bit here. */
824 if (HAS_PCH_IBX(dev))
825 enable_bits |= SDVO_PIPE_SEL(intel_crtc->pipe);
Daniel Vetter7a87c282012-06-05 11:03:39 +0200826
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200827 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
828 * we do this anyway which shows more stable in testing.
829 */
830 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300831 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
832 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200833 }
Daniel Vetter7a87c282012-06-05 11:03:39 +0200834
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200835 temp |= enable_bits;
836
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300837 I915_WRITE(intel_hdmi->hdmi_reg, temp);
838 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200839
840 /* HW workaround, need to write this twice for issue that may result
841 * in first write getting masked.
842 */
843 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300844 I915_WRITE(intel_hdmi->hdmi_reg, temp);
845 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200846 }
Jani Nikulac1dec792014-10-27 16:26:56 +0200847
848 if (intel_crtc->config.has_audio) {
849 WARN_ON(!intel_crtc->config.has_hdmi_sink);
850 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
851 pipe_name(intel_crtc->pipe));
852 intel_audio_codec_enable(encoder);
853 }
Jani Nikulab76cf762013-07-30 12:20:31 +0300854}
Jesse Barnes89b667f2013-04-18 14:51:36 -0700855
Jani Nikulab76cf762013-07-30 12:20:31 +0300856static void vlv_enable_hdmi(struct intel_encoder *encoder)
857{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200858}
859
860static void intel_disable_hdmi(struct intel_encoder *encoder)
861{
862 struct drm_device *dev = encoder->base.dev;
863 struct drm_i915_private *dev_priv = dev->dev_private;
864 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Jani Nikula495a5bb2014-10-27 16:26:55 +0200865 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200866 u32 temp;
Wang Xingchao3cce5742012-09-13 11:19:00 +0800867 u32 enable_bits = SDVO_ENABLE | SDVO_AUDIO_ENABLE;
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200868
Jani Nikula495a5bb2014-10-27 16:26:55 +0200869 if (crtc->config.has_audio)
870 intel_audio_codec_disable(encoder);
871
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300872 temp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200873
874 /* HW workaround for IBX, we need to move the port to transcoder A
875 * before disabling it. */
876 if (HAS_PCH_IBX(dev)) {
877 struct drm_crtc *crtc = encoder->base.crtc;
878 int pipe = crtc ? to_intel_crtc(crtc)->pipe : -1;
879
880 if (temp & SDVO_PIPE_B_SELECT) {
881 temp &= ~SDVO_PIPE_B_SELECT;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300882 I915_WRITE(intel_hdmi->hdmi_reg, temp);
883 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200884
885 /* Again we need to write this twice. */
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300886 I915_WRITE(intel_hdmi->hdmi_reg, temp);
887 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200888
889 /* Transcoder selection bits only update
890 * effectively on vblank. */
891 if (crtc)
892 intel_wait_for_vblank(dev, pipe);
893 else
894 msleep(50);
Daniel Vetter7a87c282012-06-05 11:03:39 +0200895 }
896 }
897
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000898 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
899 * we do this anyway which shows more stable in testing.
900 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800901 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300902 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
903 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800904 }
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000905
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200906 temp &= ~enable_bits;
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000907
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300908 I915_WRITE(intel_hdmi->hdmi_reg, temp);
909 POSTING_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000910
911 /* HW workaround, need to write this twice for issue that may result
912 * in first write getting masked.
913 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800914 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300915 I915_WRITE(intel_hdmi->hdmi_reg, temp);
916 POSTING_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000917 }
Eric Anholt7d573822009-01-02 13:33:00 -0800918}
919
Ville Syrjälä40478452014-03-27 11:08:45 +0200920static int hdmi_portclock_limit(struct intel_hdmi *hdmi, bool respect_dvi_limit)
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200921{
922 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
923
Ville Syrjälä40478452014-03-27 11:08:45 +0200924 if ((respect_dvi_limit && !hdmi->has_hdmi_sink) || IS_G4X(dev))
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200925 return 165000;
Damien Lespiaue3c33572013-11-02 21:07:51 -0700926 else if (IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8)
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200927 return 300000;
928 else
929 return 225000;
930}
931
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000932static enum drm_mode_status
933intel_hdmi_mode_valid(struct drm_connector *connector,
934 struct drm_display_mode *mode)
Eric Anholt7d573822009-01-02 13:33:00 -0800935{
Clint Taylor697c4072014-09-02 17:03:36 -0700936 int clock = mode->clock;
937
938 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
939 clock *= 2;
940
941 if (clock > hdmi_portclock_limit(intel_attached_hdmi(connector),
942 true))
Eric Anholt7d573822009-01-02 13:33:00 -0800943 return MODE_CLOCK_HIGH;
Clint Taylor697c4072014-09-02 17:03:36 -0700944 if (clock < 20000)
Nicolas Kaiser5cbba412011-05-30 12:48:26 +0200945 return MODE_CLOCK_LOW;
Eric Anholt7d573822009-01-02 13:33:00 -0800946
947 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
948 return MODE_NO_DBLESCAN;
949
950 return MODE_OK;
951}
952
Ville Syrjälä71800632014-03-03 16:15:29 +0200953static bool hdmi_12bpc_possible(struct intel_crtc *crtc)
954{
955 struct drm_device *dev = crtc->base.dev;
956 struct intel_encoder *encoder;
957 int count = 0, count_hdmi = 0;
958
Sonika Jindalf227ae92014-07-21 15:23:45 +0530959 if (HAS_GMCH_DISPLAY(dev))
Ville Syrjälä71800632014-03-03 16:15:29 +0200960 return false;
961
Damien Lespiaub2784e12014-08-05 11:29:37 +0100962 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä71800632014-03-03 16:15:29 +0200963 if (encoder->new_crtc != crtc)
964 continue;
965
966 count_hdmi += encoder->type == INTEL_OUTPUT_HDMI;
967 count++;
968 }
969
970 /*
971 * HDMI 12bpc affects the clocks, so it's only possible
972 * when not cloning with other encoder types.
973 */
974 return count_hdmi > 0 && count_hdmi == count;
975}
976
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100977bool intel_hdmi_compute_config(struct intel_encoder *encoder,
978 struct intel_crtc_config *pipe_config)
Eric Anholt7d573822009-01-02 13:33:00 -0800979{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100980 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
981 struct drm_device *dev = encoder->base.dev;
982 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100983 int clock_12bpc = pipe_config->adjusted_mode.crtc_clock * 3 / 2;
Ville Syrjälä40478452014-03-27 11:08:45 +0200984 int portclock_limit = hdmi_portclock_limit(intel_hdmi, false);
Daniel Vettere29c22c2013-02-21 00:00:16 +0100985 int desired_bpp;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200986
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200987 pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink;
988
Jesse Barnese43823e2014-11-05 14:26:08 -0800989 if (pipe_config->has_hdmi_sink)
990 pipe_config->has_infoframe = true;
991
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200992 if (intel_hdmi->color_range_auto) {
993 /* See CEA-861-E - 5.1 Default Encoding Parameters */
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200994 if (pipe_config->has_hdmi_sink &&
Thierry Reding18316c82012-12-20 15:41:44 +0100995 drm_match_cea_mode(adjusted_mode) > 1)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300996 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200997 else
998 intel_hdmi->color_range = 0;
999 }
1000
Clint Taylor697c4072014-09-02 17:03:36 -07001001 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK) {
1002 pipe_config->pixel_multiplier = 2;
1003 }
1004
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001005 if (intel_hdmi->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +01001006 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001007
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001008 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
1009 pipe_config->has_pch_encoder = true;
1010
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001011 if (pipe_config->has_hdmi_sink && intel_hdmi->has_audio)
1012 pipe_config->has_audio = true;
1013
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001014 /*
1015 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
1016 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
Daniel Vetter325b9d02013-04-19 11:24:33 +02001017 * outputs. We also need to check that the higher clock still fits
1018 * within limits.
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001019 */
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001020 if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink &&
Ville Syrjälä71800632014-03-03 16:15:29 +02001021 clock_12bpc <= portclock_limit &&
1022 hdmi_12bpc_possible(encoder->new_crtc)) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001023 DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
1024 desired_bpp = 12*3;
Daniel Vetter325b9d02013-04-19 11:24:33 +02001025
1026 /* Need to adjust the port link by 1.5x for 12bpc. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02001027 pipe_config->port_clock = clock_12bpc;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001028 } else {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001029 DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
1030 desired_bpp = 8*3;
1031 }
1032
1033 if (!pipe_config->bw_constrained) {
1034 DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
1035 pipe_config->pipe_bpp = desired_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001036 }
1037
Damien Lespiau241bfc32013-09-25 16:45:37 +01001038 if (adjusted_mode->crtc_clock > portclock_limit) {
Daniel Vetter325b9d02013-04-19 11:24:33 +02001039 DRM_DEBUG_KMS("too high HDMI clock, rejecting mode\n");
1040 return false;
1041 }
1042
Eric Anholt7d573822009-01-02 13:33:00 -08001043 return true;
1044}
1045
Chris Wilson953ece6972014-09-02 20:04:01 +01001046static void
1047intel_hdmi_unset_edid(struct drm_connector *connector)
Ma Ling9dff6af2009-04-02 13:13:26 +08001048{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001049 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Imre Deak671dedd2014-03-05 16:20:53 +02001050
Chris Wilsonea5b2132010-08-04 13:50:23 +01001051 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +08001052 intel_hdmi->has_audio = false;
Ville Syrjäläabedc072013-01-17 16:31:31 +02001053 intel_hdmi->rgb_quant_range_selectable = false;
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +08001054
Chris Wilson953ece6972014-09-02 20:04:01 +01001055 kfree(to_intel_connector(connector)->detect_edid);
1056 to_intel_connector(connector)->detect_edid = NULL;
Ma Ling9dff6af2009-04-02 13:13:26 +08001057}
1058
Chris Wilson953ece6972014-09-02 20:04:01 +01001059static bool
1060intel_hdmi_set_edid(struct drm_connector *connector)
Eric Anholt7d573822009-01-02 13:33:00 -08001061{
Chris Wilson953ece6972014-09-02 20:04:01 +01001062 struct drm_i915_private *dev_priv = to_i915(connector->dev);
1063 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1064 struct intel_encoder *intel_encoder =
1065 &hdmi_to_dig_port(intel_hdmi)->base;
Imre Deak671dedd2014-03-05 16:20:53 +02001066 enum intel_display_power_domain power_domain;
Chris Wilson953ece6972014-09-02 20:04:01 +01001067 struct edid *edid;
1068 bool connected = false;
Eric Anholt7d573822009-01-02 13:33:00 -08001069
Imre Deak671dedd2014-03-05 16:20:53 +02001070 power_domain = intel_display_port_power_domain(intel_encoder);
1071 intel_display_power_get(dev_priv, power_domain);
1072
Chris Wilson953ece6972014-09-02 20:04:01 +01001073 edid = drm_get_edid(connector,
1074 intel_gmbus_get_adapter(dev_priv,
1075 intel_hdmi->ddc_bus));
Imre Deak671dedd2014-03-05 16:20:53 +02001076
1077 intel_display_power_put(dev_priv, power_domain);
1078
Chris Wilson953ece6972014-09-02 20:04:01 +01001079 to_intel_connector(connector)->detect_edid = edid;
1080 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL) {
1081 intel_hdmi->rgb_quant_range_selectable =
1082 drm_rgb_quant_range_selectable(edid);
1083
1084 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
1085 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
1086 intel_hdmi->has_audio =
1087 intel_hdmi->force_audio == HDMI_AUDIO_ON;
1088
1089 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
1090 intel_hdmi->has_hdmi_sink =
1091 drm_detect_hdmi_monitor(edid);
1092
1093 connected = true;
1094 }
1095
1096 return connected;
1097}
1098
1099static enum drm_connector_status
1100intel_hdmi_detect(struct drm_connector *connector, bool force)
1101{
1102 enum drm_connector_status status;
1103
1104 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1105 connector->base.id, connector->name);
1106
1107 intel_hdmi_unset_edid(connector);
1108
1109 if (intel_hdmi_set_edid(connector)) {
1110 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1111
1112 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1113 status = connector_status_connected;
1114 } else
1115 status = connector_status_disconnected;
1116
1117 return status;
1118}
1119
1120static void
1121intel_hdmi_force(struct drm_connector *connector)
1122{
1123 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1124
1125 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1126 connector->base.id, connector->name);
1127
1128 intel_hdmi_unset_edid(connector);
1129
1130 if (connector->status != connector_status_connected)
1131 return;
1132
1133 intel_hdmi_set_edid(connector);
1134 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1135}
1136
1137static int intel_hdmi_get_modes(struct drm_connector *connector)
1138{
1139 struct edid *edid;
1140
1141 edid = to_intel_connector(connector)->detect_edid;
1142 if (edid == NULL)
1143 return 0;
1144
1145 return intel_connector_update_modes(connector, edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001146}
1147
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001148static bool
1149intel_hdmi_detect_audio(struct drm_connector *connector)
1150{
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001151 bool has_audio = false;
Chris Wilson953ece6972014-09-02 20:04:01 +01001152 struct edid *edid;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001153
Chris Wilson953ece6972014-09-02 20:04:01 +01001154 edid = to_intel_connector(connector)->detect_edid;
1155 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL)
1156 has_audio = drm_detect_monitor_audio(edid);
Imre Deak671dedd2014-03-05 16:20:53 +02001157
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001158 return has_audio;
1159}
1160
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001161static int
1162intel_hdmi_set_property(struct drm_connector *connector,
Paulo Zanonied517fb2012-05-14 17:12:50 -03001163 struct drm_property *property,
1164 uint64_t val)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001165{
1166 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001167 struct intel_digital_port *intel_dig_port =
1168 hdmi_to_dig_port(intel_hdmi);
Chris Wilsone953fd72011-02-21 22:23:52 +00001169 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001170 int ret;
1171
Rob Clark662595d2012-10-11 20:36:04 -05001172 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001173 if (ret)
1174 return ret;
1175
Chris Wilson3f43c482011-05-12 22:17:24 +01001176 if (property == dev_priv->force_audio_property) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001177 enum hdmi_force_audio i = val;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001178 bool has_audio;
1179
1180 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001181 return 0;
1182
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001183 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001184
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001185 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001186 has_audio = intel_hdmi_detect_audio(connector);
1187 else
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001188 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001189
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001190 if (i == HDMI_AUDIO_OFF_DVI)
1191 intel_hdmi->has_hdmi_sink = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001192
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001193 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001194 goto done;
1195 }
1196
Chris Wilsone953fd72011-02-21 22:23:52 +00001197 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02001198 bool old_auto = intel_hdmi->color_range_auto;
1199 uint32_t old_range = intel_hdmi->color_range;
1200
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001201 switch (val) {
1202 case INTEL_BROADCAST_RGB_AUTO:
1203 intel_hdmi->color_range_auto = true;
1204 break;
1205 case INTEL_BROADCAST_RGB_FULL:
1206 intel_hdmi->color_range_auto = false;
1207 intel_hdmi->color_range = 0;
1208 break;
1209 case INTEL_BROADCAST_RGB_LIMITED:
1210 intel_hdmi->color_range_auto = false;
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -03001211 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001212 break;
1213 default:
1214 return -EINVAL;
1215 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02001216
1217 if (old_auto == intel_hdmi->color_range_auto &&
1218 old_range == intel_hdmi->color_range)
1219 return 0;
1220
Chris Wilsone953fd72011-02-21 22:23:52 +00001221 goto done;
1222 }
1223
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301224 if (property == connector->dev->mode_config.aspect_ratio_property) {
1225 switch (val) {
1226 case DRM_MODE_PICTURE_ASPECT_NONE:
1227 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
1228 break;
1229 case DRM_MODE_PICTURE_ASPECT_4_3:
1230 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_4_3;
1231 break;
1232 case DRM_MODE_PICTURE_ASPECT_16_9:
1233 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_16_9;
1234 break;
1235 default:
1236 return -EINVAL;
1237 }
1238 goto done;
1239 }
1240
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001241 return -EINVAL;
1242
1243done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00001244 if (intel_dig_port->base.base.crtc)
1245 intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001246
1247 return 0;
1248}
1249
Jesse Barnes13732ba2014-04-05 11:51:35 -07001250static void intel_hdmi_pre_enable(struct intel_encoder *encoder)
1251{
1252 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1253 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
1254 struct drm_display_mode *adjusted_mode =
1255 &intel_crtc->config.adjusted_mode;
1256
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001257 intel_hdmi_prepare(encoder);
1258
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001259 intel_hdmi->set_infoframes(&encoder->base,
1260 intel_crtc->config.has_hdmi_sink,
1261 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001262}
1263
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001264static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001265{
1266 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001267 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001268 struct drm_device *dev = encoder->base.dev;
1269 struct drm_i915_private *dev_priv = dev->dev_private;
1270 struct intel_crtc *intel_crtc =
1271 to_intel_crtc(encoder->base.crtc);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001272 struct drm_display_mode *adjusted_mode =
1273 &intel_crtc->config.adjusted_mode;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001274 enum dpio_channel port = vlv_dport_to_channel(dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001275 int pipe = intel_crtc->pipe;
1276 u32 val;
1277
Jesse Barnes89b667f2013-04-18 14:51:36 -07001278 /* Enable clock channels for this port */
Chris Wilson0980a602013-07-26 19:57:35 +01001279 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001280 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001281 val = 0;
1282 if (pipe)
1283 val |= (1<<21);
1284 else
1285 val &= ~(1<<21);
1286 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001287 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001288
1289 /* HDMI 1.0V-2dB */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001290 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0);
1291 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), 0x2b245f5f);
1292 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port), 0x5578b83a);
1293 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0c782040);
1294 vlv_dpio_write(dev_priv, pipe, VLV_TX3_DW4(port), 0x2b247878);
1295 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
1296 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1297 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001298
1299 /* Program lane clock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001300 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
1301 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Chris Wilson0980a602013-07-26 19:57:35 +01001302 mutex_unlock(&dev_priv->dpio_lock);
Jani Nikulab76cf762013-07-30 12:20:31 +03001303
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001304 intel_hdmi->set_infoframes(&encoder->base,
1305 intel_crtc->config.has_hdmi_sink,
1306 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001307
Jani Nikulab76cf762013-07-30 12:20:31 +03001308 intel_enable_hdmi(encoder);
1309
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001310 vlv_wait_port_ready(dev_priv, dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001311}
1312
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001313static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001314{
1315 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1316 struct drm_device *dev = encoder->base.dev;
1317 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001318 struct intel_crtc *intel_crtc =
1319 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001320 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001321 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001322
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001323 intel_hdmi_prepare(encoder);
1324
Jesse Barnes89b667f2013-04-18 14:51:36 -07001325 /* Program Tx lane resets to default */
Chris Wilson0980a602013-07-26 19:57:35 +01001326 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001327 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001328 DPIO_PCS_TX_LANE2_RESET |
1329 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001330 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001331 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1332 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1333 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1334 DPIO_PCS_CLK_SOFT_RESET);
1335
1336 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001337 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
1338 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
1339 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001340
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001341 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1342 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Chris Wilson0980a602013-07-26 19:57:35 +01001343 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001344}
1345
Ville Syrjälä9197c882014-04-09 13:29:05 +03001346static void chv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
1347{
1348 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1349 struct drm_device *dev = encoder->base.dev;
1350 struct drm_i915_private *dev_priv = dev->dev_private;
1351 struct intel_crtc *intel_crtc =
1352 to_intel_crtc(encoder->base.crtc);
1353 enum dpio_channel ch = vlv_dport_to_channel(dport);
1354 enum pipe pipe = intel_crtc->pipe;
1355 u32 val;
1356
Ville Syrjälä625695f2014-06-28 02:04:02 +03001357 intel_hdmi_prepare(encoder);
1358
Ville Syrjälä9197c882014-04-09 13:29:05 +03001359 mutex_lock(&dev_priv->dpio_lock);
1360
Ville Syrjäläb9e5ac32014-05-27 16:30:18 +03001361 /* program left/right clock distribution */
1362 if (pipe != PIPE_B) {
1363 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1364 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1365 if (ch == DPIO_CH0)
1366 val |= CHV_BUFLEFTENA1_FORCE;
1367 if (ch == DPIO_CH1)
1368 val |= CHV_BUFRIGHTENA1_FORCE;
1369 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1370 } else {
1371 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1372 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1373 if (ch == DPIO_CH0)
1374 val |= CHV_BUFLEFTENA2_FORCE;
1375 if (ch == DPIO_CH1)
1376 val |= CHV_BUFRIGHTENA2_FORCE;
1377 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1378 }
1379
Ville Syrjälä9197c882014-04-09 13:29:05 +03001380 /* program clock channel usage */
1381 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
1382 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1383 if (pipe != PIPE_B)
1384 val &= ~CHV_PCS_USEDCLKCHANNEL;
1385 else
1386 val |= CHV_PCS_USEDCLKCHANNEL;
1387 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
1388
1389 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
1390 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1391 if (pipe != PIPE_B)
1392 val &= ~CHV_PCS_USEDCLKCHANNEL;
1393 else
1394 val |= CHV_PCS_USEDCLKCHANNEL;
1395 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
1396
1397 /*
1398 * This a a bit weird since generally CL
1399 * matches the pipe, but here we need to
1400 * pick the CL based on the port.
1401 */
1402 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
1403 if (pipe != PIPE_B)
1404 val &= ~CHV_CMN_USEDCLKCHANNEL;
1405 else
1406 val |= CHV_CMN_USEDCLKCHANNEL;
1407 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
1408
1409 mutex_unlock(&dev_priv->dpio_lock);
1410}
1411
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001412static void vlv_hdmi_post_disable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001413{
1414 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1415 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001416 struct intel_crtc *intel_crtc =
1417 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001418 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001419 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001420
1421 /* Reset lanes to avoid HDMI flicker (VLV w/a) */
1422 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001423 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), 0x00000000);
1424 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port), 0x00e00060);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001425 mutex_unlock(&dev_priv->dpio_lock);
1426}
1427
Ville Syrjälä580d3812014-04-09 13:29:00 +03001428static void chv_hdmi_post_disable(struct intel_encoder *encoder)
1429{
1430 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1431 struct drm_device *dev = encoder->base.dev;
1432 struct drm_i915_private *dev_priv = dev->dev_private;
1433 struct intel_crtc *intel_crtc =
1434 to_intel_crtc(encoder->base.crtc);
1435 enum dpio_channel ch = vlv_dport_to_channel(dport);
1436 enum pipe pipe = intel_crtc->pipe;
1437 u32 val;
1438
1439 mutex_lock(&dev_priv->dpio_lock);
1440
1441 /* Propagate soft reset to data lane reset */
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001442 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001443 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001444 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001445
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001446 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1447 val |= CHV_PCS_REQ_SOFTRESET_EN;
1448 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1449
1450 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä580d3812014-04-09 13:29:00 +03001451 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001452 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1453
1454 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1455 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1456 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001457
1458 mutex_unlock(&dev_priv->dpio_lock);
1459}
1460
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001461static void chv_hdmi_pre_enable(struct intel_encoder *encoder)
1462{
1463 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Clint Taylorb4eb1562014-11-21 11:13:02 -08001464 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001465 struct drm_device *dev = encoder->base.dev;
1466 struct drm_i915_private *dev_priv = dev->dev_private;
1467 struct intel_crtc *intel_crtc =
1468 to_intel_crtc(encoder->base.crtc);
Clint Taylorb4eb1562014-11-21 11:13:02 -08001469 struct drm_display_mode *adjusted_mode =
1470 &intel_crtc->config.adjusted_mode;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001471 enum dpio_channel ch = vlv_dport_to_channel(dport);
1472 int pipe = intel_crtc->pipe;
1473 int data, i;
1474 u32 val;
1475
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001476 mutex_lock(&dev_priv->dpio_lock);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001477
Ville Syrjälä570e2a72014-08-18 14:42:46 +03001478 /* allow hardware to manage TX FIFO reset source */
1479 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
1480 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1481 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
1482
1483 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
1484 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1485 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
1486
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001487 /* Deassert soft data lane reset*/
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001488 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001489 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001490 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001491
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001492 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1493 val |= CHV_PCS_REQ_SOFTRESET_EN;
1494 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1495
1496 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001497 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001498 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1499
1500 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1501 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1502 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001503
1504 /* Program Tx latency optimal setting */
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001505 for (i = 0; i < 4; i++) {
1506 /* Set the latency optimal bit */
1507 data = (i == 1) ? 0x0 : 0x6;
1508 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW11(ch, i),
1509 data << DPIO_FRC_LATENCY_SHFIT);
1510
1511 /* Set the upar bit */
1512 data = (i == 1) ? 0x0 : 0x1;
1513 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
1514 data << DPIO_UPAR_SHIFT);
1515 }
1516
1517 /* Data lane stagger programming */
1518 /* FIXME: Fix up value only after power analysis */
1519
1520 /* Clear calc init */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001521 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1522 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001523 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1524 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001525 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1526
1527 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1528 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001529 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1530 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001531 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001532
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001533 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW9(ch));
1534 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1535 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1536 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW9(ch), val);
1537
1538 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW9(ch));
1539 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1540 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1541 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW9(ch), val);
1542
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001543 /* FIXME: Program the support xxx V-dB */
1544 /* Use 800mV-0dB */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001545 for (i = 0; i < 4; i++) {
1546 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
1547 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
1548 val |= 128 << DPIO_SWING_DEEMPH9P5_SHIFT;
1549 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
1550 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001551
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001552 for (i = 0; i < 4; i++) {
1553 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
Ville Syrjälä1fb44502014-06-28 02:04:03 +03001554 val &= ~DPIO_SWING_MARGIN000_MASK;
1555 val |= 102 << DPIO_SWING_MARGIN000_SHIFT;
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001556 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
1557 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001558
1559 /* Disable unique transition scale */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001560 for (i = 0; i < 4; i++) {
1561 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
1562 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
1563 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
1564 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001565
1566 /* Additional steps for 1200mV-0dB */
1567#if 0
1568 val = vlv_dpio_read(dev_priv, pipe, VLV_TX_DW3(ch));
1569 if (ch)
1570 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH1;
1571 else
1572 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH0;
1573 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(ch), val);
1574
1575 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(ch),
1576 vlv_dpio_read(dev_priv, pipe, VLV_TX_DW2(ch)) |
1577 (0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT));
1578#endif
1579 /* Start swing calculation */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001580 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1581 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1582 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1583
1584 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1585 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1586 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001587
1588 /* LRC Bypass */
1589 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
1590 val |= DPIO_LRC_BYPASS;
1591 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
1592
1593 mutex_unlock(&dev_priv->dpio_lock);
1594
Clint Taylorb4eb1562014-11-21 11:13:02 -08001595 intel_hdmi->set_infoframes(&encoder->base,
1596 intel_crtc->config.has_hdmi_sink,
1597 adjusted_mode);
1598
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001599 intel_enable_hdmi(encoder);
1600
1601 vlv_wait_port_ready(dev_priv, dport);
1602}
1603
Eric Anholt7d573822009-01-02 13:33:00 -08001604static void intel_hdmi_destroy(struct drm_connector *connector)
1605{
Chris Wilson10e972d2014-09-04 21:43:45 +01001606 kfree(to_intel_connector(connector)->detect_edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001607 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +08001608 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001609}
1610
Eric Anholt7d573822009-01-02 13:33:00 -08001611static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001612 .dpms = intel_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -08001613 .detect = intel_hdmi_detect,
Chris Wilson953ece6972014-09-02 20:04:01 +01001614 .force = intel_hdmi_force,
Eric Anholt7d573822009-01-02 13:33:00 -08001615 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001616 .set_property = intel_hdmi_set_property,
Eric Anholt7d573822009-01-02 13:33:00 -08001617 .destroy = intel_hdmi_destroy,
1618};
1619
1620static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
1621 .get_modes = intel_hdmi_get_modes,
1622 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01001623 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -08001624};
1625
Eric Anholt7d573822009-01-02 13:33:00 -08001626static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001627 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -08001628};
1629
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001630static void
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301631intel_attach_aspect_ratio_property(struct drm_connector *connector)
1632{
1633 if (!drm_mode_create_aspect_ratio_property(connector->dev))
1634 drm_object_attach_property(&connector->base,
1635 connector->dev->mode_config.aspect_ratio_property,
1636 DRM_MODE_PICTURE_ASPECT_NONE);
1637}
1638
1639static void
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001640intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
1641{
Chris Wilson3f43c482011-05-12 22:17:24 +01001642 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00001643 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001644 intel_hdmi->color_range_auto = true;
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301645 intel_attach_aspect_ratio_property(connector);
1646 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001647}
1648
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001649void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
1650 struct intel_connector *intel_connector)
Eric Anholt7d573822009-01-02 13:33:00 -08001651{
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001652 struct drm_connector *connector = &intel_connector->base;
1653 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
1654 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1655 struct drm_device *dev = intel_encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -08001656 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001657 enum port port = intel_dig_port->port;
Eric Anholt7d573822009-01-02 13:33:00 -08001658
Eric Anholt7d573822009-01-02 13:33:00 -08001659 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -04001660 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -08001661 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
1662
Peter Rossc3febcc2012-01-28 14:49:26 +01001663 connector->interlace_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001664 connector->doublescan_allowed = 0;
Damien Lespiau573e74a2013-09-25 16:45:40 +01001665 connector->stereo_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001666
Daniel Vetter08d644a2012-07-12 20:19:59 +02001667 switch (port) {
1668 case PORT_B:
Chris Wilsonf899fc62010-07-20 15:44:45 -07001669 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Egbert Eich1d843f92013-02-25 12:06:49 -05001670 intel_encoder->hpd_pin = HPD_PORT_B;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001671 break;
1672 case PORT_C:
Chris Wilsonf899fc62010-07-20 15:44:45 -07001673 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Egbert Eich1d843f92013-02-25 12:06:49 -05001674 intel_encoder->hpd_pin = HPD_PORT_C;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001675 break;
1676 case PORT_D:
Ville Syrjäläc0c35322014-04-09 13:28:52 +03001677 if (IS_CHERRYVIEW(dev))
1678 intel_hdmi->ddc_bus = GMBUS_PORT_DPD_CHV;
1679 else
1680 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
Egbert Eich1d843f92013-02-25 12:06:49 -05001681 intel_encoder->hpd_pin = HPD_PORT_D;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001682 break;
1683 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05001684 intel_encoder->hpd_pin = HPD_PORT_A;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001685 /* Internal port only for eDP. */
1686 default:
Eugeni Dodonov6e4c1672012-05-09 15:37:13 -03001687 BUG();
Ma Lingf8aed702009-08-24 13:50:24 +08001688 }
Eric Anholt7d573822009-01-02 13:33:00 -08001689
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001690 if (IS_VALLEYVIEW(dev)) {
Shobhit Kumar90b107c2012-03-28 13:39:32 -07001691 intel_hdmi->write_infoframe = vlv_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001692 intel_hdmi->set_infoframes = vlv_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001693 intel_hdmi->infoframe_enabled = vlv_infoframe_enabled;
Sonika Jindalb98856a2014-07-22 11:13:46 +05301694 } else if (IS_G4X(dev)) {
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001695 intel_hdmi->write_infoframe = g4x_write_infoframe;
1696 intel_hdmi->set_infoframes = g4x_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001697 intel_hdmi->infoframe_enabled = g4x_infoframe_enabled;
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001698 } else if (HAS_DDI(dev)) {
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -03001699 intel_hdmi->write_infoframe = hsw_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001700 intel_hdmi->set_infoframes = hsw_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001701 intel_hdmi->infoframe_enabled = hsw_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001702 } else if (HAS_PCH_IBX(dev)) {
1703 intel_hdmi->write_infoframe = ibx_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001704 intel_hdmi->set_infoframes = ibx_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001705 intel_hdmi->infoframe_enabled = ibx_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001706 } else {
1707 intel_hdmi->write_infoframe = cpt_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001708 intel_hdmi->set_infoframes = cpt_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001709 intel_hdmi->infoframe_enabled = cpt_infoframe_enabled;
Jesse Barnes64a8fc02011-09-22 11:16:00 +05301710 }
Jesse Barnes45187ac2011-08-03 09:22:55 -07001711
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001712 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02001713 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
1714 else
1715 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak4932e2c2014-02-11 17:12:48 +02001716 intel_connector->unregister = intel_connector_unregister;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001717
1718 intel_hdmi_add_properties(intel_hdmi, connector);
1719
1720 intel_connector_attach_encoder(intel_connector, intel_encoder);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001721 drm_connector_register(connector);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001722
1723 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
1724 * 0xd. Failure to do so will result in spurious interrupts being
1725 * generated on the port when a cable is not attached.
1726 */
1727 if (IS_G4X(dev) && !IS_GM45(dev)) {
1728 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
1729 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
1730 }
1731}
1732
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001733void intel_hdmi_init(struct drm_device *dev, int hdmi_reg, enum port port)
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001734{
1735 struct intel_digital_port *intel_dig_port;
1736 struct intel_encoder *intel_encoder;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001737 struct intel_connector *intel_connector;
1738
Daniel Vetterb14c5672013-09-19 12:18:32 +02001739 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001740 if (!intel_dig_port)
1741 return;
1742
Daniel Vetterb14c5672013-09-19 12:18:32 +02001743 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001744 if (!intel_connector) {
1745 kfree(intel_dig_port);
1746 return;
1747 }
1748
1749 intel_encoder = &intel_dig_port->base;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001750
1751 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
1752 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001753
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001754 intel_encoder->compute_config = intel_hdmi_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001755 intel_encoder->disable = intel_disable_hdmi;
1756 intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001757 intel_encoder->get_config = intel_hdmi_get_config;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001758 if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03001759 intel_encoder->pre_pll_enable = chv_hdmi_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001760 intel_encoder->pre_enable = chv_hdmi_pre_enable;
1761 intel_encoder->enable = vlv_enable_hdmi;
Ville Syrjälä580d3812014-04-09 13:29:00 +03001762 intel_encoder->post_disable = chv_hdmi_post_disable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001763 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001764 intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
1765 intel_encoder->pre_enable = vlv_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001766 intel_encoder->enable = vlv_enable_hdmi;
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001767 intel_encoder->post_disable = vlv_hdmi_post_disable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001768 } else {
Jesse Barnes13732ba2014-04-05 11:51:35 -07001769 intel_encoder->pre_enable = intel_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001770 intel_encoder->enable = intel_enable_hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001771 }
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001772
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001773 intel_encoder->type = INTEL_OUTPUT_HDMI;
Ville Syrjälä882ec382014-04-28 14:07:43 +03001774 if (IS_CHERRYVIEW(dev)) {
1775 if (port == PORT_D)
1776 intel_encoder->crtc_mask = 1 << 2;
1777 else
1778 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
1779 } else {
1780 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
1781 }
Ville Syrjälä301ea742014-03-03 16:15:30 +02001782 intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
Ville Syrjäläc6f14952014-03-03 16:15:31 +02001783 /*
1784 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
1785 * to work on real hardware. And since g4x can send infoframes to
1786 * only one port anyway, nothing is lost by allowing it.
1787 */
1788 if (IS_G4X(dev))
1789 intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -08001790
Paulo Zanoni174edf12012-10-26 19:05:50 -02001791 intel_dig_port->port = port;
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001792 intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001793 intel_dig_port->dp.output_reg = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001794
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001795 intel_hdmi_init_connector(intel_dig_port, intel_connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001796}