blob: f58e8834ebfb4f1006aa173de11d99fc131cf770 [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;
173 u32 val = I915_READ(VIDEO_DIP_CTL);
174
175 return val & VIDEO_DIP_ENABLE;
176}
177
Paulo Zanonifdf12502012-05-04 17:18:24 -0300178static void ibx_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100179 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200180 const void *frame, ssize_t len)
Paulo Zanonifdf12502012-05-04 17:18:24 -0300181{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200182 const uint32_t *data = frame;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300183 struct drm_device *dev = encoder->dev;
184 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300185 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100186 int i, reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300187 u32 val = I915_READ(reg);
188
Paulo Zanoni822974a2012-05-28 16:42:51 -0300189 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
190
Paulo Zanonifdf12502012-05-04 17:18:24 -0300191 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100192 val |= g4x_infoframe_index(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300193
Damien Lespiau178f7362013-08-06 20:32:18 +0100194 val &= ~g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300195
196 I915_WRITE(reg, val);
197
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300198 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300199 for (i = 0; i < len; i += 4) {
200 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
201 data++;
202 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300203 /* Write every possible data byte to force correct ECC calculation. */
204 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
205 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300206 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300207
Damien Lespiau178f7362013-08-06 20:32:18 +0100208 val |= g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300209 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200210 val |= VIDEO_DIP_FREQ_VSYNC;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300211
212 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300213 POSTING_READ(reg);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300214}
215
Jesse Barnese43823e2014-11-05 14:26:08 -0800216static bool ibx_infoframe_enabled(struct drm_encoder *encoder)
217{
218 struct drm_device *dev = encoder->dev;
219 struct drm_i915_private *dev_priv = dev->dev_private;
220 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
221 int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
222 u32 val = I915_READ(reg);
223
224 return val & VIDEO_DIP_ENABLE;
225}
226
Paulo Zanonifdf12502012-05-04 17:18:24 -0300227static void cpt_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100228 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200229 const void *frame, ssize_t len)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700230{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200231 const uint32_t *data = frame;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700232 struct drm_device *dev = encoder->dev;
233 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300234 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100235 int i, reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300236 u32 val = I915_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700237
Paulo Zanoni822974a2012-05-28 16:42:51 -0300238 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
239
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530240 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100241 val |= g4x_infoframe_index(type);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700242
Paulo Zanoniecb97852012-05-04 17:18:21 -0300243 /* The DIP control register spec says that we need to update the AVI
244 * infoframe without clearing its enable bit */
Damien Lespiau178f7362013-08-06 20:32:18 +0100245 if (type != HDMI_INFOFRAME_TYPE_AVI)
246 val &= ~g4x_infoframe_enable(type);
Paulo Zanoniecb97852012-05-04 17:18:21 -0300247
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300248 I915_WRITE(reg, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700249
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300250 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700251 for (i = 0; i < len; i += 4) {
252 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
253 data++;
254 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300255 /* Write every possible data byte to force correct ECC calculation. */
256 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
257 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300258 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700259
Damien Lespiau178f7362013-08-06 20:32:18 +0100260 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300261 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200262 val |= VIDEO_DIP_FREQ_VSYNC;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700263
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300264 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300265 POSTING_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700266}
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700267
Jesse Barnese43823e2014-11-05 14:26:08 -0800268static bool cpt_infoframe_enabled(struct drm_encoder *encoder)
269{
270 struct drm_device *dev = encoder->dev;
271 struct drm_i915_private *dev_priv = dev->dev_private;
272 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
273 int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
274 u32 val = I915_READ(reg);
275
276 return val & VIDEO_DIP_ENABLE;
277}
278
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700279static void vlv_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100280 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200281 const void *frame, ssize_t len)
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700282{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200283 const uint32_t *data = frame;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700284 struct drm_device *dev = encoder->dev;
285 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300286 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100287 int i, reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300288 u32 val = I915_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700289
Paulo Zanoni822974a2012-05-28 16:42:51 -0300290 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
291
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700292 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100293 val |= g4x_infoframe_index(type);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700294
Damien Lespiau178f7362013-08-06 20:32:18 +0100295 val &= ~g4x_infoframe_enable(type);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300296
297 I915_WRITE(reg, val);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700298
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300299 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700300 for (i = 0; i < len; i += 4) {
301 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
302 data++;
303 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300304 /* Write every possible data byte to force correct ECC calculation. */
305 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
306 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300307 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700308
Damien Lespiau178f7362013-08-06 20:32:18 +0100309 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300310 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200311 val |= VIDEO_DIP_FREQ_VSYNC;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700312
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300313 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300314 POSTING_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700315}
316
Jesse Barnese43823e2014-11-05 14:26:08 -0800317static bool vlv_infoframe_enabled(struct drm_encoder *encoder)
318{
319 struct drm_device *dev = encoder->dev;
320 struct drm_i915_private *dev_priv = dev->dev_private;
321 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
322 int reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
323 u32 val = I915_READ(reg);
324
325 return val & VIDEO_DIP_ENABLE;
326}
327
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300328static void hsw_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100329 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200330 const void *frame, ssize_t len)
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300331{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200332 const uint32_t *data = frame;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300333 struct drm_device *dev = encoder->dev;
334 struct drm_i915_private *dev_priv = dev->dev_private;
335 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +0200336 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config.cpu_transcoder);
Damien Lespiau178f7362013-08-06 20:32:18 +0100337 u32 data_reg;
338 int i;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300339 u32 val = I915_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300340
Damien Lespiau178f7362013-08-06 20:32:18 +0100341 data_reg = hsw_infoframe_data_reg(type,
Antti Koskipaaa57c7742014-02-04 14:22:24 +0200342 intel_crtc->config.cpu_transcoder,
343 dev_priv);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300344 if (data_reg == 0)
345 return;
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300346
Damien Lespiau178f7362013-08-06 20:32:18 +0100347 val &= ~hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300348 I915_WRITE(ctl_reg, val);
349
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300350 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300351 for (i = 0; i < len; i += 4) {
352 I915_WRITE(data_reg + i, *data);
353 data++;
354 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300355 /* Write every possible data byte to force correct ECC calculation. */
356 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
357 I915_WRITE(data_reg + i, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300358 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300359
Damien Lespiau178f7362013-08-06 20:32:18 +0100360 val |= hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300361 I915_WRITE(ctl_reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300362 POSTING_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300363}
364
Jesse Barnese43823e2014-11-05 14:26:08 -0800365static bool hsw_infoframe_enabled(struct drm_encoder *encoder)
366{
367 struct drm_device *dev = encoder->dev;
368 struct drm_i915_private *dev_priv = dev->dev_private;
369 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
370 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config.cpu_transcoder);
371 u32 val = I915_READ(ctl_reg);
372
373 return val & (VIDEO_DIP_ENABLE_AVI_HSW | VIDEO_DIP_ENABLE_SPD_HSW |
374 VIDEO_DIP_ENABLE_VS_HSW);
375}
376
Damien Lespiau5adaea72013-08-06 20:32:19 +0100377/*
378 * The data we write to the DIP data buffer registers is 1 byte bigger than the
379 * HDMI infoframe size because of an ECC/reserved byte at position 3 (starting
380 * at 0). It's also a byte used by DisplayPort so the same DIP registers can be
381 * used for both technologies.
382 *
383 * DW0: Reserved/ECC/DP | HB2 | HB1 | HB0
384 * DW1: DB3 | DB2 | DB1 | DB0
385 * DW2: DB7 | DB6 | DB5 | DB4
386 * DW3: ...
387 *
388 * (HB is Header Byte, DB is Data Byte)
389 *
390 * The hdmi pack() functions don't know about that hardware specific hole so we
391 * trick them by giving an offset into the buffer and moving back the header
392 * bytes by one.
393 */
Damien Lespiau9198ee52013-08-06 20:32:24 +0100394static void intel_write_infoframe(struct drm_encoder *encoder,
395 union hdmi_infoframe *frame)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700396{
397 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100398 uint8_t buffer[VIDEO_DIP_DATA_SIZE];
399 ssize_t len;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700400
Damien Lespiau5adaea72013-08-06 20:32:19 +0100401 /* see comment above for the reason for this offset */
402 len = hdmi_infoframe_pack(frame, buffer + 1, sizeof(buffer) - 1);
403 if (len < 0)
404 return;
405
406 /* Insert the 'hole' (see big comment above) at position 3 */
407 buffer[0] = buffer[1];
408 buffer[1] = buffer[2];
409 buffer[2] = buffer[3];
410 buffer[3] = 0;
411 len++;
412
413 intel_hdmi->write_infoframe(encoder, frame->any.type, buffer, len);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700414}
415
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300416static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
Paulo Zanonic846b612012-04-13 16:31:41 -0300417 struct drm_display_mode *adjusted_mode)
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700418{
Ville Syrjäläabedc072013-01-17 16:31:31 +0200419 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Daniel Vetter50f3b012013-03-27 00:44:56 +0100420 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100421 union hdmi_infoframe frame;
422 int ret;
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700423
Vandana Kannan94a11dd2014-06-11 11:06:01 +0530424 /* Set user selected PAR to incoming mode's member */
425 adjusted_mode->picture_aspect_ratio = intel_hdmi->aspect_ratio;
426
Damien Lespiau5adaea72013-08-06 20:32:19 +0100427 ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
428 adjusted_mode);
429 if (ret < 0) {
430 DRM_ERROR("couldn't fill AVI infoframe\n");
431 return;
432 }
Paulo Zanonic846b612012-04-13 16:31:41 -0300433
Ville Syrjäläabedc072013-01-17 16:31:31 +0200434 if (intel_hdmi->rgb_quant_range_selectable) {
Daniel Vetter50f3b012013-03-27 00:44:56 +0100435 if (intel_crtc->config.limited_color_range)
Damien Lespiau5adaea72013-08-06 20:32:19 +0100436 frame.avi.quantization_range =
437 HDMI_QUANTIZATION_RANGE_LIMITED;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200438 else
Damien Lespiau5adaea72013-08-06 20:32:19 +0100439 frame.avi.quantization_range =
440 HDMI_QUANTIZATION_RANGE_FULL;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200441 }
442
Damien Lespiau9198ee52013-08-06 20:32:24 +0100443 intel_write_infoframe(encoder, &frame);
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700444}
445
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300446static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700447{
Damien Lespiau5adaea72013-08-06 20:32:19 +0100448 union hdmi_infoframe frame;
449 int ret;
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700450
Damien Lespiau5adaea72013-08-06 20:32:19 +0100451 ret = hdmi_spd_infoframe_init(&frame.spd, "Intel", "Integrated gfx");
452 if (ret < 0) {
453 DRM_ERROR("couldn't fill SPD infoframe\n");
454 return;
455 }
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700456
Damien Lespiau5adaea72013-08-06 20:32:19 +0100457 frame.spd.sdi = HDMI_SPD_SDI_PC;
458
Damien Lespiau9198ee52013-08-06 20:32:24 +0100459 intel_write_infoframe(encoder, &frame);
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700460}
461
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100462static void
463intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder,
464 struct drm_display_mode *adjusted_mode)
465{
466 union hdmi_infoframe frame;
467 int ret;
468
469 ret = drm_hdmi_vendor_infoframe_from_display_mode(&frame.vendor.hdmi,
470 adjusted_mode);
471 if (ret < 0)
472 return;
473
474 intel_write_infoframe(encoder, &frame);
475}
476
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300477static void g4x_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200478 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300479 struct drm_display_mode *adjusted_mode)
480{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300481 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200482 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
483 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300484 u32 reg = VIDEO_DIP_CTL;
485 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200486 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300487
Daniel Vetterafba0182012-06-12 16:36:45 +0200488 assert_hdmi_port_disabled(intel_hdmi);
489
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300490 /* If the registers were not initialized yet, they might be zeroes,
491 * which means we're selecting the AVI DIP and we're setting its
492 * frequency to once. This seems to really confuse the HW and make
493 * things stop working (the register spec says the AVI always needs to
494 * be sent every VSync). So here we avoid writing to the register more
495 * than we need and also explicitly select the AVI DIP and explicitly
496 * set its frequency to every VSync. Avoiding to write it twice seems to
497 * be enough to solve the problem, but being defensive shouldn't hurt us
498 * either. */
499 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
500
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200501 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300502 if (!(val & VIDEO_DIP_ENABLE))
503 return;
504 val &= ~VIDEO_DIP_ENABLE;
505 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300506 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300507 return;
508 }
509
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300510 if (port != (val & VIDEO_DIP_PORT_MASK)) {
511 if (val & VIDEO_DIP_ENABLE) {
512 val &= ~VIDEO_DIP_ENABLE;
513 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300514 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300515 }
516 val &= ~VIDEO_DIP_PORT_MASK;
517 val |= port;
518 }
519
Paulo Zanoni822974a2012-05-28 16:42:51 -0300520 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300521 val &= ~VIDEO_DIP_ENABLE_VENDOR;
Paulo Zanoni822974a2012-05-28 16:42:51 -0300522
Paulo Zanonif278d972012-05-28 16:42:50 -0300523 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300524 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300525
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300526 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
527 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100528 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300529}
530
531static void ibx_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200532 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300533 struct drm_display_mode *adjusted_mode)
534{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300535 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
536 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200537 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
538 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300539 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
540 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200541 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300542
Daniel Vetterafba0182012-06-12 16:36:45 +0200543 assert_hdmi_port_disabled(intel_hdmi);
544
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300545 /* See the big comment in g4x_set_infoframes() */
546 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
547
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200548 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300549 if (!(val & VIDEO_DIP_ENABLE))
550 return;
551 val &= ~VIDEO_DIP_ENABLE;
552 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300553 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300554 return;
555 }
556
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300557 if (port != (val & VIDEO_DIP_PORT_MASK)) {
558 if (val & VIDEO_DIP_ENABLE) {
559 val &= ~VIDEO_DIP_ENABLE;
560 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300561 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300562 }
563 val &= ~VIDEO_DIP_PORT_MASK;
564 val |= port;
565 }
566
Paulo Zanoni822974a2012-05-28 16:42:51 -0300567 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300568 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
569 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300570
Paulo Zanonif278d972012-05-28 16:42:50 -0300571 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300572 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300573
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300574 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
575 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100576 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300577}
578
579static void cpt_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200580 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300581 struct drm_display_mode *adjusted_mode)
582{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300583 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
584 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
585 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
586 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
587 u32 val = I915_READ(reg);
588
Daniel Vetterafba0182012-06-12 16:36:45 +0200589 assert_hdmi_port_disabled(intel_hdmi);
590
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300591 /* See the big comment in g4x_set_infoframes() */
592 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
593
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200594 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300595 if (!(val & VIDEO_DIP_ENABLE))
596 return;
597 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI);
598 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300599 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300600 return;
601 }
602
Paulo Zanoni822974a2012-05-28 16:42:51 -0300603 /* Set both together, unset both together: see the spec. */
604 val |= VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300605 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
606 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300607
608 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300609 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300610
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300611 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
612 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100613 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300614}
615
616static void vlv_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200617 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300618 struct drm_display_mode *adjusted_mode)
619{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300620 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700621 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300622 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
623 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
624 u32 reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
625 u32 val = I915_READ(reg);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700626 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300627
Daniel Vetterafba0182012-06-12 16:36:45 +0200628 assert_hdmi_port_disabled(intel_hdmi);
629
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300630 /* See the big comment in g4x_set_infoframes() */
631 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
632
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200633 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300634 if (!(val & VIDEO_DIP_ENABLE))
635 return;
636 val &= ~VIDEO_DIP_ENABLE;
637 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300638 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300639 return;
640 }
641
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700642 if (port != (val & VIDEO_DIP_PORT_MASK)) {
643 if (val & VIDEO_DIP_ENABLE) {
644 val &= ~VIDEO_DIP_ENABLE;
645 I915_WRITE(reg, val);
646 POSTING_READ(reg);
647 }
648 val &= ~VIDEO_DIP_PORT_MASK;
649 val |= port;
650 }
651
Paulo Zanoni822974a2012-05-28 16:42:51 -0300652 val |= VIDEO_DIP_ENABLE;
Jesse Barnes4d47dfb2014-04-02 10:08:52 -0700653 val &= ~(VIDEO_DIP_ENABLE_AVI | VIDEO_DIP_ENABLE_VENDOR |
654 VIDEO_DIP_ENABLE_GAMUT | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300655
656 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300657 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300658
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300659 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
660 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100661 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300662}
663
664static void hsw_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200665 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300666 struct drm_display_mode *adjusted_mode)
667{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300668 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
669 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
670 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Daniel Vetter3b117c82013-04-17 20:15:07 +0200671 u32 reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config.cpu_transcoder);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300672 u32 val = I915_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300673
Daniel Vetterafba0182012-06-12 16:36:45 +0200674 assert_hdmi_port_disabled(intel_hdmi);
675
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200676 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300677 I915_WRITE(reg, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300678 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300679 return;
680 }
681
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300682 val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_GCP_HSW |
683 VIDEO_DIP_ENABLE_VS_HSW | VIDEO_DIP_ENABLE_GMP_HSW);
684
685 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300686 POSTING_READ(reg);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300687
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300688 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
689 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100690 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300691}
692
Daniel Vetter4cde8a22014-04-24 23:54:56 +0200693static void intel_hdmi_prepare(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800694{
Daniel Vetterc59423a2013-07-21 21:37:04 +0200695 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800696 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc59423a2013-07-21 21:37:04 +0200697 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
698 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
699 struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300700 u32 hdmi_val;
Eric Anholt7d573822009-01-02 13:33:00 -0800701
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300702 hdmi_val = SDVO_ENCODING_HDMI;
Ville Syrjälä2af2c492013-06-25 14:16:34 +0300703 if (!HAS_PCH_SPLIT(dev))
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300704 hdmi_val |= intel_hdmi->color_range;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400705 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300706 hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400707 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300708 hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800709
Daniel Vetterc59423a2013-07-21 21:37:04 +0200710 if (crtc->config.pipe_bpp > 24)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300711 hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700712 else
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300713 hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700714
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200715 if (crtc->config.has_hdmi_sink)
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300716 hdmi_val |= HDMI_MODE_SELECT_HDMI;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800717
Jesse Barnes75770562011-10-12 09:01:58 -0700718 if (HAS_PCH_CPT(dev))
Daniel Vetterc59423a2013-07-21 21:37:04 +0200719 hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
Chon Ming Lee44f37d12014-04-09 13:28:21 +0300720 else if (IS_CHERRYVIEW(dev))
721 hdmi_val |= SDVO_PIPE_SEL_CHV(crtc->pipe);
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300722 else
Daniel Vetterc59423a2013-07-21 21:37:04 +0200723 hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
Eric Anholt7d573822009-01-02 13:33:00 -0800724
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300725 I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
726 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800727}
728
Daniel Vetter85234cd2012-07-02 13:27:29 +0200729static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
730 enum pipe *pipe)
Eric Anholt7d573822009-01-02 13:33:00 -0800731{
Daniel Vetter85234cd2012-07-02 13:27:29 +0200732 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800733 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200734 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Imre Deak6d129be2014-03-05 16:20:54 +0200735 enum intel_display_power_domain power_domain;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200736 u32 tmp;
737
Imre Deak6d129be2014-03-05 16:20:54 +0200738 power_domain = intel_display_port_power_domain(encoder);
Daniel Vetterf458ebb2014-09-30 10:56:39 +0200739 if (!intel_display_power_is_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200740 return false;
741
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300742 tmp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200743
744 if (!(tmp & SDVO_ENABLE))
745 return false;
746
747 if (HAS_PCH_CPT(dev))
748 *pipe = PORT_TO_PIPE_CPT(tmp);
Ville Syrjälä71485e02014-04-09 13:28:55 +0300749 else if (IS_CHERRYVIEW(dev))
750 *pipe = SDVO_PORT_TO_PIPE_CHV(tmp);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200751 else
752 *pipe = PORT_TO_PIPE(tmp);
753
754 return true;
755}
756
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700757static void intel_hdmi_get_config(struct intel_encoder *encoder,
758 struct intel_crtc_config *pipe_config)
759{
760 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300761 struct drm_device *dev = encoder->base.dev;
762 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700763 u32 tmp, flags = 0;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300764 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700765
766 tmp = I915_READ(intel_hdmi->hdmi_reg);
767
768 if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
769 flags |= DRM_MODE_FLAG_PHSYNC;
770 else
771 flags |= DRM_MODE_FLAG_NHSYNC;
772
773 if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
774 flags |= DRM_MODE_FLAG_PVSYNC;
775 else
776 flags |= DRM_MODE_FLAG_NVSYNC;
777
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200778 if (tmp & HDMI_MODE_SELECT_HDMI)
779 pipe_config->has_hdmi_sink = true;
780
Jesse Barnese43823e2014-11-05 14:26:08 -0800781 if (intel_hdmi->infoframe_enabled(&encoder->base))
782 pipe_config->has_infoframe = true;
783
Jani Nikulac84db772014-09-17 15:34:58 +0300784 if (tmp & SDVO_AUDIO_ENABLE)
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200785 pipe_config->has_audio = true;
786
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300787 if (!HAS_PCH_SPLIT(dev) &&
788 tmp & HDMI_COLOR_RANGE_16_235)
789 pipe_config->limited_color_range = true;
790
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700791 pipe_config->adjusted_mode.flags |= flags;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300792
793 if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
794 dotclock = pipe_config->port_clock * 2 / 3;
795 else
796 dotclock = pipe_config->port_clock;
797
798 if (HAS_PCH_SPLIT(dev_priv->dev))
799 ironlake_check_encoder_dotclock(pipe_config, dotclock);
800
Damien Lespiau241bfc32013-09-25 16:45:37 +0100801 pipe_config->adjusted_mode.crtc_clock = dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700802}
803
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200804static void intel_enable_hdmi(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800805{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200806 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800807 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300808 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200809 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Eric Anholt7d573822009-01-02 13:33:00 -0800810 u32 temp;
Wu Fengguang2deed762011-12-09 20:42:20 +0800811 u32 enable_bits = SDVO_ENABLE;
812
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200813 if (intel_crtc->config.has_audio)
Wu Fengguang2deed762011-12-09 20:42:20 +0800814 enable_bits |= SDVO_AUDIO_ENABLE;
Eric Anholt7d573822009-01-02 13:33:00 -0800815
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300816 temp = I915_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000817
Daniel Vetter7a87c282012-06-05 11:03:39 +0200818 /* HW workaround for IBX, we need to move the port to transcoder A
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300819 * before disabling it, so restore the transcoder select bit here. */
820 if (HAS_PCH_IBX(dev))
821 enable_bits |= SDVO_PIPE_SEL(intel_crtc->pipe);
Daniel Vetter7a87c282012-06-05 11:03:39 +0200822
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200823 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
824 * we do this anyway which shows more stable in testing.
825 */
826 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300827 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
828 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200829 }
Daniel Vetter7a87c282012-06-05 11:03:39 +0200830
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200831 temp |= enable_bits;
832
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300833 I915_WRITE(intel_hdmi->hdmi_reg, temp);
834 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200835
836 /* HW workaround, need to write this twice for issue that may result
837 * in first write getting masked.
838 */
839 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300840 I915_WRITE(intel_hdmi->hdmi_reg, temp);
841 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200842 }
Jani Nikulac1dec792014-10-27 16:26:56 +0200843
844 if (intel_crtc->config.has_audio) {
845 WARN_ON(!intel_crtc->config.has_hdmi_sink);
846 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
847 pipe_name(intel_crtc->pipe));
848 intel_audio_codec_enable(encoder);
849 }
Jani Nikulab76cf762013-07-30 12:20:31 +0300850}
Jesse Barnes89b667f2013-04-18 14:51:36 -0700851
Jani Nikulab76cf762013-07-30 12:20:31 +0300852static void vlv_enable_hdmi(struct intel_encoder *encoder)
853{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200854}
855
856static void intel_disable_hdmi(struct intel_encoder *encoder)
857{
858 struct drm_device *dev = encoder->base.dev;
859 struct drm_i915_private *dev_priv = dev->dev_private;
860 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Jani Nikula495a5bb2014-10-27 16:26:55 +0200861 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200862 u32 temp;
Wang Xingchao3cce5742012-09-13 11:19:00 +0800863 u32 enable_bits = SDVO_ENABLE | SDVO_AUDIO_ENABLE;
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200864
Jani Nikula495a5bb2014-10-27 16:26:55 +0200865 if (crtc->config.has_audio)
866 intel_audio_codec_disable(encoder);
867
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300868 temp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200869
870 /* HW workaround for IBX, we need to move the port to transcoder A
871 * before disabling it. */
872 if (HAS_PCH_IBX(dev)) {
873 struct drm_crtc *crtc = encoder->base.crtc;
874 int pipe = crtc ? to_intel_crtc(crtc)->pipe : -1;
875
876 if (temp & SDVO_PIPE_B_SELECT) {
877 temp &= ~SDVO_PIPE_B_SELECT;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300878 I915_WRITE(intel_hdmi->hdmi_reg, temp);
879 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200880
881 /* Again we need to write this twice. */
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 /* Transcoder selection bits only update
886 * effectively on vblank. */
887 if (crtc)
888 intel_wait_for_vblank(dev, pipe);
889 else
890 msleep(50);
Daniel Vetter7a87c282012-06-05 11:03:39 +0200891 }
892 }
893
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000894 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
895 * we do this anyway which shows more stable in testing.
896 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800897 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300898 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
899 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800900 }
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000901
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200902 temp &= ~enable_bits;
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000903
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300904 I915_WRITE(intel_hdmi->hdmi_reg, temp);
905 POSTING_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000906
907 /* HW workaround, need to write this twice for issue that may result
908 * in first write getting masked.
909 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800910 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300911 I915_WRITE(intel_hdmi->hdmi_reg, temp);
912 POSTING_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000913 }
Eric Anholt7d573822009-01-02 13:33:00 -0800914}
915
Ville Syrjälä40478452014-03-27 11:08:45 +0200916static int hdmi_portclock_limit(struct intel_hdmi *hdmi, bool respect_dvi_limit)
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200917{
918 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
919
Ville Syrjälä40478452014-03-27 11:08:45 +0200920 if ((respect_dvi_limit && !hdmi->has_hdmi_sink) || IS_G4X(dev))
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200921 return 165000;
Damien Lespiaue3c33572013-11-02 21:07:51 -0700922 else if (IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8)
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200923 return 300000;
924 else
925 return 225000;
926}
927
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000928static enum drm_mode_status
929intel_hdmi_mode_valid(struct drm_connector *connector,
930 struct drm_display_mode *mode)
Eric Anholt7d573822009-01-02 13:33:00 -0800931{
Clint Taylor697c4072014-09-02 17:03:36 -0700932 int clock = mode->clock;
933
934 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
935 clock *= 2;
936
937 if (clock > hdmi_portclock_limit(intel_attached_hdmi(connector),
938 true))
Eric Anholt7d573822009-01-02 13:33:00 -0800939 return MODE_CLOCK_HIGH;
Clint Taylor697c4072014-09-02 17:03:36 -0700940 if (clock < 20000)
Nicolas Kaiser5cbba412011-05-30 12:48:26 +0200941 return MODE_CLOCK_LOW;
Eric Anholt7d573822009-01-02 13:33:00 -0800942
943 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
944 return MODE_NO_DBLESCAN;
945
946 return MODE_OK;
947}
948
Ville Syrjälä71800632014-03-03 16:15:29 +0200949static bool hdmi_12bpc_possible(struct intel_crtc *crtc)
950{
951 struct drm_device *dev = crtc->base.dev;
952 struct intel_encoder *encoder;
953 int count = 0, count_hdmi = 0;
954
Sonika Jindalf227ae92014-07-21 15:23:45 +0530955 if (HAS_GMCH_DISPLAY(dev))
Ville Syrjälä71800632014-03-03 16:15:29 +0200956 return false;
957
Damien Lespiaub2784e12014-08-05 11:29:37 +0100958 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä71800632014-03-03 16:15:29 +0200959 if (encoder->new_crtc != crtc)
960 continue;
961
962 count_hdmi += encoder->type == INTEL_OUTPUT_HDMI;
963 count++;
964 }
965
966 /*
967 * HDMI 12bpc affects the clocks, so it's only possible
968 * when not cloning with other encoder types.
969 */
970 return count_hdmi > 0 && count_hdmi == count;
971}
972
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100973bool intel_hdmi_compute_config(struct intel_encoder *encoder,
974 struct intel_crtc_config *pipe_config)
Eric Anholt7d573822009-01-02 13:33:00 -0800975{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100976 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
977 struct drm_device *dev = encoder->base.dev;
978 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100979 int clock_12bpc = pipe_config->adjusted_mode.crtc_clock * 3 / 2;
Ville Syrjälä40478452014-03-27 11:08:45 +0200980 int portclock_limit = hdmi_portclock_limit(intel_hdmi, false);
Daniel Vettere29c22c2013-02-21 00:00:16 +0100981 int desired_bpp;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200982
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200983 pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink;
984
Jesse Barnese43823e2014-11-05 14:26:08 -0800985 if (pipe_config->has_hdmi_sink)
986 pipe_config->has_infoframe = true;
987
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200988 if (intel_hdmi->color_range_auto) {
989 /* See CEA-861-E - 5.1 Default Encoding Parameters */
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200990 if (pipe_config->has_hdmi_sink &&
Thierry Reding18316c82012-12-20 15:41:44 +0100991 drm_match_cea_mode(adjusted_mode) > 1)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300992 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200993 else
994 intel_hdmi->color_range = 0;
995 }
996
Clint Taylor697c4072014-09-02 17:03:36 -0700997 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK) {
998 pipe_config->pixel_multiplier = 2;
999 }
1000
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001001 if (intel_hdmi->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +01001002 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +02001003
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001004 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
1005 pipe_config->has_pch_encoder = true;
1006
Daniel Vetter9ed109a2014-04-24 23:54:52 +02001007 if (pipe_config->has_hdmi_sink && intel_hdmi->has_audio)
1008 pipe_config->has_audio = true;
1009
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001010 /*
1011 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
1012 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
Daniel Vetter325b9d02013-04-19 11:24:33 +02001013 * outputs. We also need to check that the higher clock still fits
1014 * within limits.
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001015 */
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001016 if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink &&
Ville Syrjälä71800632014-03-03 16:15:29 +02001017 clock_12bpc <= portclock_limit &&
1018 hdmi_12bpc_possible(encoder->new_crtc)) {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001019 DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
1020 desired_bpp = 12*3;
Daniel Vetter325b9d02013-04-19 11:24:33 +02001021
1022 /* Need to adjust the port link by 1.5x for 12bpc. */
Daniel Vetterff9a6752013-06-01 17:16:21 +02001023 pipe_config->port_clock = clock_12bpc;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001024 } else {
Daniel Vettere29c22c2013-02-21 00:00:16 +01001025 DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
1026 desired_bpp = 8*3;
1027 }
1028
1029 if (!pipe_config->bw_constrained) {
1030 DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
1031 pipe_config->pipe_bpp = desired_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +01001032 }
1033
Damien Lespiau241bfc32013-09-25 16:45:37 +01001034 if (adjusted_mode->crtc_clock > portclock_limit) {
Daniel Vetter325b9d02013-04-19 11:24:33 +02001035 DRM_DEBUG_KMS("too high HDMI clock, rejecting mode\n");
1036 return false;
1037 }
1038
Eric Anholt7d573822009-01-02 13:33:00 -08001039 return true;
1040}
1041
Chris Wilson953ece6972014-09-02 20:04:01 +01001042static void
1043intel_hdmi_unset_edid(struct drm_connector *connector)
Ma Ling9dff6af2009-04-02 13:13:26 +08001044{
Chris Wilsondf0e9242010-09-09 16:20:55 +01001045 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Imre Deak671dedd2014-03-05 16:20:53 +02001046
Chris Wilsonea5b2132010-08-04 13:50:23 +01001047 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +08001048 intel_hdmi->has_audio = false;
Ville Syrjäläabedc072013-01-17 16:31:31 +02001049 intel_hdmi->rgb_quant_range_selectable = false;
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +08001050
Chris Wilson953ece6972014-09-02 20:04:01 +01001051 kfree(to_intel_connector(connector)->detect_edid);
1052 to_intel_connector(connector)->detect_edid = NULL;
Ma Ling9dff6af2009-04-02 13:13:26 +08001053}
1054
Chris Wilson953ece6972014-09-02 20:04:01 +01001055static bool
1056intel_hdmi_set_edid(struct drm_connector *connector)
Eric Anholt7d573822009-01-02 13:33:00 -08001057{
Chris Wilson953ece6972014-09-02 20:04:01 +01001058 struct drm_i915_private *dev_priv = to_i915(connector->dev);
1059 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1060 struct intel_encoder *intel_encoder =
1061 &hdmi_to_dig_port(intel_hdmi)->base;
Imre Deak671dedd2014-03-05 16:20:53 +02001062 enum intel_display_power_domain power_domain;
Chris Wilson953ece6972014-09-02 20:04:01 +01001063 struct edid *edid;
1064 bool connected = false;
Eric Anholt7d573822009-01-02 13:33:00 -08001065
Imre Deak671dedd2014-03-05 16:20:53 +02001066 power_domain = intel_display_port_power_domain(intel_encoder);
1067 intel_display_power_get(dev_priv, power_domain);
1068
Chris Wilson953ece6972014-09-02 20:04:01 +01001069 edid = drm_get_edid(connector,
1070 intel_gmbus_get_adapter(dev_priv,
1071 intel_hdmi->ddc_bus));
Imre Deak671dedd2014-03-05 16:20:53 +02001072
1073 intel_display_power_put(dev_priv, power_domain);
1074
Chris Wilson953ece6972014-09-02 20:04:01 +01001075 to_intel_connector(connector)->detect_edid = edid;
1076 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL) {
1077 intel_hdmi->rgb_quant_range_selectable =
1078 drm_rgb_quant_range_selectable(edid);
1079
1080 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
1081 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
1082 intel_hdmi->has_audio =
1083 intel_hdmi->force_audio == HDMI_AUDIO_ON;
1084
1085 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
1086 intel_hdmi->has_hdmi_sink =
1087 drm_detect_hdmi_monitor(edid);
1088
1089 connected = true;
1090 }
1091
1092 return connected;
1093}
1094
1095static enum drm_connector_status
1096intel_hdmi_detect(struct drm_connector *connector, bool force)
1097{
1098 enum drm_connector_status status;
1099
1100 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1101 connector->base.id, connector->name);
1102
1103 intel_hdmi_unset_edid(connector);
1104
1105 if (intel_hdmi_set_edid(connector)) {
1106 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1107
1108 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1109 status = connector_status_connected;
1110 } else
1111 status = connector_status_disconnected;
1112
1113 return status;
1114}
1115
1116static void
1117intel_hdmi_force(struct drm_connector *connector)
1118{
1119 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1120
1121 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1122 connector->base.id, connector->name);
1123
1124 intel_hdmi_unset_edid(connector);
1125
1126 if (connector->status != connector_status_connected)
1127 return;
1128
1129 intel_hdmi_set_edid(connector);
1130 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1131}
1132
1133static int intel_hdmi_get_modes(struct drm_connector *connector)
1134{
1135 struct edid *edid;
1136
1137 edid = to_intel_connector(connector)->detect_edid;
1138 if (edid == NULL)
1139 return 0;
1140
1141 return intel_connector_update_modes(connector, edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001142}
1143
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001144static bool
1145intel_hdmi_detect_audio(struct drm_connector *connector)
1146{
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001147 bool has_audio = false;
Chris Wilson953ece6972014-09-02 20:04:01 +01001148 struct edid *edid;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001149
Chris Wilson953ece6972014-09-02 20:04:01 +01001150 edid = to_intel_connector(connector)->detect_edid;
1151 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL)
1152 has_audio = drm_detect_monitor_audio(edid);
Imre Deak671dedd2014-03-05 16:20:53 +02001153
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001154 return has_audio;
1155}
1156
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001157static int
1158intel_hdmi_set_property(struct drm_connector *connector,
Paulo Zanonied517fb2012-05-14 17:12:50 -03001159 struct drm_property *property,
1160 uint64_t val)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001161{
1162 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001163 struct intel_digital_port *intel_dig_port =
1164 hdmi_to_dig_port(intel_hdmi);
Chris Wilsone953fd72011-02-21 22:23:52 +00001165 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001166 int ret;
1167
Rob Clark662595d2012-10-11 20:36:04 -05001168 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001169 if (ret)
1170 return ret;
1171
Chris Wilson3f43c482011-05-12 22:17:24 +01001172 if (property == dev_priv->force_audio_property) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001173 enum hdmi_force_audio i = val;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001174 bool has_audio;
1175
1176 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001177 return 0;
1178
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001179 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001180
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001181 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001182 has_audio = intel_hdmi_detect_audio(connector);
1183 else
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001184 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001185
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001186 if (i == HDMI_AUDIO_OFF_DVI)
1187 intel_hdmi->has_hdmi_sink = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001188
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001189 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001190 goto done;
1191 }
1192
Chris Wilsone953fd72011-02-21 22:23:52 +00001193 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02001194 bool old_auto = intel_hdmi->color_range_auto;
1195 uint32_t old_range = intel_hdmi->color_range;
1196
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001197 switch (val) {
1198 case INTEL_BROADCAST_RGB_AUTO:
1199 intel_hdmi->color_range_auto = true;
1200 break;
1201 case INTEL_BROADCAST_RGB_FULL:
1202 intel_hdmi->color_range_auto = false;
1203 intel_hdmi->color_range = 0;
1204 break;
1205 case INTEL_BROADCAST_RGB_LIMITED:
1206 intel_hdmi->color_range_auto = false;
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -03001207 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001208 break;
1209 default:
1210 return -EINVAL;
1211 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02001212
1213 if (old_auto == intel_hdmi->color_range_auto &&
1214 old_range == intel_hdmi->color_range)
1215 return 0;
1216
Chris Wilsone953fd72011-02-21 22:23:52 +00001217 goto done;
1218 }
1219
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301220 if (property == connector->dev->mode_config.aspect_ratio_property) {
1221 switch (val) {
1222 case DRM_MODE_PICTURE_ASPECT_NONE:
1223 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
1224 break;
1225 case DRM_MODE_PICTURE_ASPECT_4_3:
1226 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_4_3;
1227 break;
1228 case DRM_MODE_PICTURE_ASPECT_16_9:
1229 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_16_9;
1230 break;
1231 default:
1232 return -EINVAL;
1233 }
1234 goto done;
1235 }
1236
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001237 return -EINVAL;
1238
1239done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00001240 if (intel_dig_port->base.base.crtc)
1241 intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001242
1243 return 0;
1244}
1245
Jesse Barnes13732ba2014-04-05 11:51:35 -07001246static void intel_hdmi_pre_enable(struct intel_encoder *encoder)
1247{
1248 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1249 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
1250 struct drm_display_mode *adjusted_mode =
1251 &intel_crtc->config.adjusted_mode;
1252
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001253 intel_hdmi_prepare(encoder);
1254
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001255 intel_hdmi->set_infoframes(&encoder->base,
1256 intel_crtc->config.has_hdmi_sink,
1257 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001258}
1259
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001260static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001261{
1262 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001263 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001264 struct drm_device *dev = encoder->base.dev;
1265 struct drm_i915_private *dev_priv = dev->dev_private;
1266 struct intel_crtc *intel_crtc =
1267 to_intel_crtc(encoder->base.crtc);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001268 struct drm_display_mode *adjusted_mode =
1269 &intel_crtc->config.adjusted_mode;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001270 enum dpio_channel port = vlv_dport_to_channel(dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001271 int pipe = intel_crtc->pipe;
1272 u32 val;
1273
Jesse Barnes89b667f2013-04-18 14:51:36 -07001274 /* Enable clock channels for this port */
Chris Wilson0980a602013-07-26 19:57:35 +01001275 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001276 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001277 val = 0;
1278 if (pipe)
1279 val |= (1<<21);
1280 else
1281 val &= ~(1<<21);
1282 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001283 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001284
1285 /* HDMI 1.0V-2dB */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001286 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0);
1287 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), 0x2b245f5f);
1288 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port), 0x5578b83a);
1289 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0c782040);
1290 vlv_dpio_write(dev_priv, pipe, VLV_TX3_DW4(port), 0x2b247878);
1291 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
1292 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1293 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001294
1295 /* Program lane clock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001296 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
1297 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Chris Wilson0980a602013-07-26 19:57:35 +01001298 mutex_unlock(&dev_priv->dpio_lock);
Jani Nikulab76cf762013-07-30 12:20:31 +03001299
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001300 intel_hdmi->set_infoframes(&encoder->base,
1301 intel_crtc->config.has_hdmi_sink,
1302 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001303
Jani Nikulab76cf762013-07-30 12:20:31 +03001304 intel_enable_hdmi(encoder);
1305
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001306 vlv_wait_port_ready(dev_priv, dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001307}
1308
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001309static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001310{
1311 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1312 struct drm_device *dev = encoder->base.dev;
1313 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001314 struct intel_crtc *intel_crtc =
1315 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001316 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001317 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001318
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001319 intel_hdmi_prepare(encoder);
1320
Jesse Barnes89b667f2013-04-18 14:51:36 -07001321 /* Program Tx lane resets to default */
Chris Wilson0980a602013-07-26 19:57:35 +01001322 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001323 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001324 DPIO_PCS_TX_LANE2_RESET |
1325 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001326 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001327 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1328 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1329 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1330 DPIO_PCS_CLK_SOFT_RESET);
1331
1332 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001333 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
1334 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
1335 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001336
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001337 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1338 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Chris Wilson0980a602013-07-26 19:57:35 +01001339 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001340}
1341
Ville Syrjälä9197c882014-04-09 13:29:05 +03001342static void chv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
1343{
1344 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1345 struct drm_device *dev = encoder->base.dev;
1346 struct drm_i915_private *dev_priv = dev->dev_private;
1347 struct intel_crtc *intel_crtc =
1348 to_intel_crtc(encoder->base.crtc);
1349 enum dpio_channel ch = vlv_dport_to_channel(dport);
1350 enum pipe pipe = intel_crtc->pipe;
1351 u32 val;
1352
Ville Syrjälä625695f2014-06-28 02:04:02 +03001353 intel_hdmi_prepare(encoder);
1354
Ville Syrjälä9197c882014-04-09 13:29:05 +03001355 mutex_lock(&dev_priv->dpio_lock);
1356
Ville Syrjäläb9e5ac32014-05-27 16:30:18 +03001357 /* program left/right clock distribution */
1358 if (pipe != PIPE_B) {
1359 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1360 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1361 if (ch == DPIO_CH0)
1362 val |= CHV_BUFLEFTENA1_FORCE;
1363 if (ch == DPIO_CH1)
1364 val |= CHV_BUFRIGHTENA1_FORCE;
1365 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1366 } else {
1367 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1368 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1369 if (ch == DPIO_CH0)
1370 val |= CHV_BUFLEFTENA2_FORCE;
1371 if (ch == DPIO_CH1)
1372 val |= CHV_BUFRIGHTENA2_FORCE;
1373 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1374 }
1375
Ville Syrjälä9197c882014-04-09 13:29:05 +03001376 /* program clock channel usage */
1377 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
1378 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1379 if (pipe != PIPE_B)
1380 val &= ~CHV_PCS_USEDCLKCHANNEL;
1381 else
1382 val |= CHV_PCS_USEDCLKCHANNEL;
1383 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
1384
1385 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
1386 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1387 if (pipe != PIPE_B)
1388 val &= ~CHV_PCS_USEDCLKCHANNEL;
1389 else
1390 val |= CHV_PCS_USEDCLKCHANNEL;
1391 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
1392
1393 /*
1394 * This a a bit weird since generally CL
1395 * matches the pipe, but here we need to
1396 * pick the CL based on the port.
1397 */
1398 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
1399 if (pipe != PIPE_B)
1400 val &= ~CHV_CMN_USEDCLKCHANNEL;
1401 else
1402 val |= CHV_CMN_USEDCLKCHANNEL;
1403 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
1404
1405 mutex_unlock(&dev_priv->dpio_lock);
1406}
1407
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001408static void vlv_hdmi_post_disable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001409{
1410 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1411 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001412 struct intel_crtc *intel_crtc =
1413 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001414 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001415 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001416
1417 /* Reset lanes to avoid HDMI flicker (VLV w/a) */
1418 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001419 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), 0x00000000);
1420 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port), 0x00e00060);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001421 mutex_unlock(&dev_priv->dpio_lock);
1422}
1423
Ville Syrjälä580d3812014-04-09 13:29:00 +03001424static void chv_hdmi_post_disable(struct intel_encoder *encoder)
1425{
1426 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1427 struct drm_device *dev = encoder->base.dev;
1428 struct drm_i915_private *dev_priv = dev->dev_private;
1429 struct intel_crtc *intel_crtc =
1430 to_intel_crtc(encoder->base.crtc);
1431 enum dpio_channel ch = vlv_dport_to_channel(dport);
1432 enum pipe pipe = intel_crtc->pipe;
1433 u32 val;
1434
1435 mutex_lock(&dev_priv->dpio_lock);
1436
1437 /* Propagate soft reset to data lane reset */
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001438 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001439 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001440 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001441
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001442 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1443 val |= CHV_PCS_REQ_SOFTRESET_EN;
1444 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1445
1446 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä580d3812014-04-09 13:29:00 +03001447 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001448 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1449
1450 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1451 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1452 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001453
1454 mutex_unlock(&dev_priv->dpio_lock);
1455}
1456
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001457static void chv_hdmi_pre_enable(struct intel_encoder *encoder)
1458{
1459 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1460 struct drm_device *dev = encoder->base.dev;
1461 struct drm_i915_private *dev_priv = dev->dev_private;
1462 struct intel_crtc *intel_crtc =
1463 to_intel_crtc(encoder->base.crtc);
1464 enum dpio_channel ch = vlv_dport_to_channel(dport);
1465 int pipe = intel_crtc->pipe;
1466 int data, i;
1467 u32 val;
1468
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001469 mutex_lock(&dev_priv->dpio_lock);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001470
Ville Syrjälä570e2a72014-08-18 14:42:46 +03001471 /* allow hardware to manage TX FIFO reset source */
1472 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
1473 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1474 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
1475
1476 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
1477 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1478 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
1479
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001480 /* Deassert soft data lane reset*/
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001481 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001482 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001483 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001484
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001485 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1486 val |= CHV_PCS_REQ_SOFTRESET_EN;
1487 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1488
1489 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001490 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001491 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1492
1493 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1494 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1495 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001496
1497 /* Program Tx latency optimal setting */
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001498 for (i = 0; i < 4; i++) {
1499 /* Set the latency optimal bit */
1500 data = (i == 1) ? 0x0 : 0x6;
1501 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW11(ch, i),
1502 data << DPIO_FRC_LATENCY_SHFIT);
1503
1504 /* Set the upar bit */
1505 data = (i == 1) ? 0x0 : 0x1;
1506 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
1507 data << DPIO_UPAR_SHIFT);
1508 }
1509
1510 /* Data lane stagger programming */
1511 /* FIXME: Fix up value only after power analysis */
1512
1513 /* Clear calc init */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001514 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1515 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001516 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1517 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001518 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1519
1520 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1521 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001522 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1523 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001524 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001525
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001526 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW9(ch));
1527 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1528 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1529 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW9(ch), val);
1530
1531 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW9(ch));
1532 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1533 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1534 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW9(ch), val);
1535
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001536 /* FIXME: Program the support xxx V-dB */
1537 /* Use 800mV-0dB */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001538 for (i = 0; i < 4; i++) {
1539 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
1540 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
1541 val |= 128 << DPIO_SWING_DEEMPH9P5_SHIFT;
1542 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
1543 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001544
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_DW2(ch, i));
Ville Syrjälä1fb44502014-06-28 02:04:03 +03001547 val &= ~DPIO_SWING_MARGIN000_MASK;
1548 val |= 102 << DPIO_SWING_MARGIN000_SHIFT;
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001549 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
1550 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001551
1552 /* Disable unique transition scale */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001553 for (i = 0; i < 4; i++) {
1554 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
1555 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
1556 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
1557 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001558
1559 /* Additional steps for 1200mV-0dB */
1560#if 0
1561 val = vlv_dpio_read(dev_priv, pipe, VLV_TX_DW3(ch));
1562 if (ch)
1563 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH1;
1564 else
1565 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH0;
1566 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(ch), val);
1567
1568 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(ch),
1569 vlv_dpio_read(dev_priv, pipe, VLV_TX_DW2(ch)) |
1570 (0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT));
1571#endif
1572 /* Start swing calculation */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001573 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1574 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1575 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1576
1577 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1578 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1579 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001580
1581 /* LRC Bypass */
1582 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
1583 val |= DPIO_LRC_BYPASS;
1584 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
1585
1586 mutex_unlock(&dev_priv->dpio_lock);
1587
1588 intel_enable_hdmi(encoder);
1589
1590 vlv_wait_port_ready(dev_priv, dport);
1591}
1592
Eric Anholt7d573822009-01-02 13:33:00 -08001593static void intel_hdmi_destroy(struct drm_connector *connector)
1594{
Chris Wilson10e972d2014-09-04 21:43:45 +01001595 kfree(to_intel_connector(connector)->detect_edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001596 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +08001597 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001598}
1599
Eric Anholt7d573822009-01-02 13:33:00 -08001600static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001601 .dpms = intel_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -08001602 .detect = intel_hdmi_detect,
Chris Wilson953ece6972014-09-02 20:04:01 +01001603 .force = intel_hdmi_force,
Eric Anholt7d573822009-01-02 13:33:00 -08001604 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001605 .set_property = intel_hdmi_set_property,
Eric Anholt7d573822009-01-02 13:33:00 -08001606 .destroy = intel_hdmi_destroy,
1607};
1608
1609static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
1610 .get_modes = intel_hdmi_get_modes,
1611 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01001612 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -08001613};
1614
Eric Anholt7d573822009-01-02 13:33:00 -08001615static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001616 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -08001617};
1618
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001619static void
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301620intel_attach_aspect_ratio_property(struct drm_connector *connector)
1621{
1622 if (!drm_mode_create_aspect_ratio_property(connector->dev))
1623 drm_object_attach_property(&connector->base,
1624 connector->dev->mode_config.aspect_ratio_property,
1625 DRM_MODE_PICTURE_ASPECT_NONE);
1626}
1627
1628static void
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001629intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
1630{
Chris Wilson3f43c482011-05-12 22:17:24 +01001631 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00001632 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001633 intel_hdmi->color_range_auto = true;
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301634 intel_attach_aspect_ratio_property(connector);
1635 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001636}
1637
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001638void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
1639 struct intel_connector *intel_connector)
Eric Anholt7d573822009-01-02 13:33:00 -08001640{
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001641 struct drm_connector *connector = &intel_connector->base;
1642 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
1643 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1644 struct drm_device *dev = intel_encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -08001645 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001646 enum port port = intel_dig_port->port;
Eric Anholt7d573822009-01-02 13:33:00 -08001647
Eric Anholt7d573822009-01-02 13:33:00 -08001648 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -04001649 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -08001650 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
1651
Peter Rossc3febcc2012-01-28 14:49:26 +01001652 connector->interlace_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001653 connector->doublescan_allowed = 0;
Damien Lespiau573e74a2013-09-25 16:45:40 +01001654 connector->stereo_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001655
Daniel Vetter08d644a2012-07-12 20:19:59 +02001656 switch (port) {
1657 case PORT_B:
Chris Wilsonf899fc62010-07-20 15:44:45 -07001658 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Egbert Eich1d843f92013-02-25 12:06:49 -05001659 intel_encoder->hpd_pin = HPD_PORT_B;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001660 break;
1661 case PORT_C:
Chris Wilsonf899fc62010-07-20 15:44:45 -07001662 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Egbert Eich1d843f92013-02-25 12:06:49 -05001663 intel_encoder->hpd_pin = HPD_PORT_C;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001664 break;
1665 case PORT_D:
Ville Syrjäläc0c35322014-04-09 13:28:52 +03001666 if (IS_CHERRYVIEW(dev))
1667 intel_hdmi->ddc_bus = GMBUS_PORT_DPD_CHV;
1668 else
1669 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
Egbert Eich1d843f92013-02-25 12:06:49 -05001670 intel_encoder->hpd_pin = HPD_PORT_D;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001671 break;
1672 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05001673 intel_encoder->hpd_pin = HPD_PORT_A;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001674 /* Internal port only for eDP. */
1675 default:
Eugeni Dodonov6e4c1672012-05-09 15:37:13 -03001676 BUG();
Ma Lingf8aed702009-08-24 13:50:24 +08001677 }
Eric Anholt7d573822009-01-02 13:33:00 -08001678
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001679 if (IS_VALLEYVIEW(dev)) {
Shobhit Kumar90b107c2012-03-28 13:39:32 -07001680 intel_hdmi->write_infoframe = vlv_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001681 intel_hdmi->set_infoframes = vlv_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001682 intel_hdmi->infoframe_enabled = vlv_infoframe_enabled;
Sonika Jindalb98856a2014-07-22 11:13:46 +05301683 } else if (IS_G4X(dev)) {
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001684 intel_hdmi->write_infoframe = g4x_write_infoframe;
1685 intel_hdmi->set_infoframes = g4x_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001686 intel_hdmi->infoframe_enabled = g4x_infoframe_enabled;
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001687 } else if (HAS_DDI(dev)) {
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -03001688 intel_hdmi->write_infoframe = hsw_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001689 intel_hdmi->set_infoframes = hsw_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001690 intel_hdmi->infoframe_enabled = hsw_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001691 } else if (HAS_PCH_IBX(dev)) {
1692 intel_hdmi->write_infoframe = ibx_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001693 intel_hdmi->set_infoframes = ibx_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001694 intel_hdmi->infoframe_enabled = ibx_infoframe_enabled;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001695 } else {
1696 intel_hdmi->write_infoframe = cpt_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001697 intel_hdmi->set_infoframes = cpt_set_infoframes;
Jesse Barnese43823e2014-11-05 14:26:08 -08001698 intel_hdmi->infoframe_enabled = cpt_infoframe_enabled;
Jesse Barnes64a8fc02011-09-22 11:16:00 +05301699 }
Jesse Barnes45187ac2011-08-03 09:22:55 -07001700
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001701 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02001702 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
1703 else
1704 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak4932e2c2014-02-11 17:12:48 +02001705 intel_connector->unregister = intel_connector_unregister;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001706
1707 intel_hdmi_add_properties(intel_hdmi, connector);
1708
1709 intel_connector_attach_encoder(intel_connector, intel_encoder);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001710 drm_connector_register(connector);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001711
1712 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
1713 * 0xd. Failure to do so will result in spurious interrupts being
1714 * generated on the port when a cable is not attached.
1715 */
1716 if (IS_G4X(dev) && !IS_GM45(dev)) {
1717 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
1718 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
1719 }
1720}
1721
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001722void intel_hdmi_init(struct drm_device *dev, int hdmi_reg, enum port port)
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001723{
1724 struct intel_digital_port *intel_dig_port;
1725 struct intel_encoder *intel_encoder;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001726 struct intel_connector *intel_connector;
1727
Daniel Vetterb14c5672013-09-19 12:18:32 +02001728 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001729 if (!intel_dig_port)
1730 return;
1731
Daniel Vetterb14c5672013-09-19 12:18:32 +02001732 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001733 if (!intel_connector) {
1734 kfree(intel_dig_port);
1735 return;
1736 }
1737
1738 intel_encoder = &intel_dig_port->base;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001739
1740 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
1741 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001742
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001743 intel_encoder->compute_config = intel_hdmi_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001744 intel_encoder->disable = intel_disable_hdmi;
1745 intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001746 intel_encoder->get_config = intel_hdmi_get_config;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001747 if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03001748 intel_encoder->pre_pll_enable = chv_hdmi_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001749 intel_encoder->pre_enable = chv_hdmi_pre_enable;
1750 intel_encoder->enable = vlv_enable_hdmi;
Ville Syrjälä580d3812014-04-09 13:29:00 +03001751 intel_encoder->post_disable = chv_hdmi_post_disable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001752 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001753 intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
1754 intel_encoder->pre_enable = vlv_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001755 intel_encoder->enable = vlv_enable_hdmi;
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001756 intel_encoder->post_disable = vlv_hdmi_post_disable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001757 } else {
Jesse Barnes13732ba2014-04-05 11:51:35 -07001758 intel_encoder->pre_enable = intel_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001759 intel_encoder->enable = intel_enable_hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001760 }
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001761
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001762 intel_encoder->type = INTEL_OUTPUT_HDMI;
Ville Syrjälä882ec382014-04-28 14:07:43 +03001763 if (IS_CHERRYVIEW(dev)) {
1764 if (port == PORT_D)
1765 intel_encoder->crtc_mask = 1 << 2;
1766 else
1767 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
1768 } else {
1769 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
1770 }
Ville Syrjälä301ea742014-03-03 16:15:30 +02001771 intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
Ville Syrjäläc6f14952014-03-03 16:15:31 +02001772 /*
1773 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
1774 * to work on real hardware. And since g4x can send infoframes to
1775 * only one port anyway, nothing is lost by allowing it.
1776 */
1777 if (IS_G4X(dev))
1778 intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -08001779
Paulo Zanoni174edf12012-10-26 19:05:50 -02001780 intel_dig_port->port = port;
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001781 intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001782 intel_dig_port->dp.output_reg = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001783
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001784 intel_hdmi_init_connector(intel_dig_port, intel_connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001785}