blob: b976255f7961546b12eead625e8d74841ce1d55a [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
Paulo Zanonifdf12502012-05-04 17:18:24 -0300169static void ibx_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100170 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200171 const void *frame, ssize_t len)
Paulo Zanonifdf12502012-05-04 17:18:24 -0300172{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200173 const uint32_t *data = frame;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300174 struct drm_device *dev = encoder->dev;
175 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300176 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100177 int i, reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300178 u32 val = I915_READ(reg);
179
Paulo Zanoni822974a2012-05-28 16:42:51 -0300180 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
181
Paulo Zanonifdf12502012-05-04 17:18:24 -0300182 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100183 val |= g4x_infoframe_index(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300184
Damien Lespiau178f7362013-08-06 20:32:18 +0100185 val &= ~g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300186
187 I915_WRITE(reg, val);
188
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300189 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300190 for (i = 0; i < len; i += 4) {
191 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
192 data++;
193 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300194 /* Write every possible data byte to force correct ECC calculation. */
195 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
196 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300197 mmiowb();
Paulo Zanonifdf12502012-05-04 17:18:24 -0300198
Damien Lespiau178f7362013-08-06 20:32:18 +0100199 val |= g4x_infoframe_enable(type);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300200 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200201 val |= VIDEO_DIP_FREQ_VSYNC;
Paulo Zanonifdf12502012-05-04 17:18:24 -0300202
203 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300204 POSTING_READ(reg);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300205}
206
207static void cpt_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100208 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200209 const void *frame, ssize_t len)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700210{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200211 const uint32_t *data = frame;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700212 struct drm_device *dev = encoder->dev;
213 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300214 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100215 int i, reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300216 u32 val = I915_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700217
Paulo Zanoni822974a2012-05-28 16:42:51 -0300218 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
219
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530220 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100221 val |= g4x_infoframe_index(type);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700222
Paulo Zanoniecb97852012-05-04 17:18:21 -0300223 /* The DIP control register spec says that we need to update the AVI
224 * infoframe without clearing its enable bit */
Damien Lespiau178f7362013-08-06 20:32:18 +0100225 if (type != HDMI_INFOFRAME_TYPE_AVI)
226 val &= ~g4x_infoframe_enable(type);
Paulo Zanoniecb97852012-05-04 17:18:21 -0300227
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300228 I915_WRITE(reg, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700229
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300230 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700231 for (i = 0; i < len; i += 4) {
232 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
233 data++;
234 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300235 /* Write every possible data byte to force correct ECC calculation. */
236 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
237 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300238 mmiowb();
Jesse Barnes45187ac2011-08-03 09:22:55 -0700239
Damien Lespiau178f7362013-08-06 20:32:18 +0100240 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300241 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200242 val |= VIDEO_DIP_FREQ_VSYNC;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700243
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300244 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300245 POSTING_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700246}
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700247
248static void vlv_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100249 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200250 const void *frame, ssize_t len)
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700251{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200252 const uint32_t *data = frame;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700253 struct drm_device *dev = encoder->dev;
254 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonied517fb2012-05-14 17:12:50 -0300255 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau178f7362013-08-06 20:32:18 +0100256 int i, reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300257 u32 val = I915_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700258
Paulo Zanoni822974a2012-05-28 16:42:51 -0300259 WARN(!(val & VIDEO_DIP_ENABLE), "Writing DIP with CTL reg disabled\n");
260
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700261 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Damien Lespiau178f7362013-08-06 20:32:18 +0100262 val |= g4x_infoframe_index(type);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700263
Damien Lespiau178f7362013-08-06 20:32:18 +0100264 val &= ~g4x_infoframe_enable(type);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300265
266 I915_WRITE(reg, val);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700267
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300268 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700269 for (i = 0; i < len; i += 4) {
270 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
271 data++;
272 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300273 /* Write every possible data byte to force correct ECC calculation. */
274 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
275 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300276 mmiowb();
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700277
Damien Lespiau178f7362013-08-06 20:32:18 +0100278 val |= g4x_infoframe_enable(type);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300279 val &= ~VIDEO_DIP_FREQ_MASK;
Daniel Vetter4b24c932012-05-08 14:41:00 +0200280 val |= VIDEO_DIP_FREQ_VSYNC;
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700281
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300282 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300283 POSTING_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700284}
285
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300286static void hsw_write_infoframe(struct drm_encoder *encoder,
Damien Lespiau178f7362013-08-06 20:32:18 +0100287 enum hdmi_infoframe_type type,
Ville Syrjäläfff63862013-12-10 15:19:08 +0200288 const void *frame, ssize_t len)
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300289{
Ville Syrjäläfff63862013-12-10 15:19:08 +0200290 const uint32_t *data = frame;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300291 struct drm_device *dev = encoder->dev;
292 struct drm_i915_private *dev_priv = dev->dev_private;
293 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Daniel Vetter3b117c82013-04-17 20:15:07 +0200294 u32 ctl_reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config.cpu_transcoder);
Damien Lespiau178f7362013-08-06 20:32:18 +0100295 u32 data_reg;
296 int i;
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300297 u32 val = I915_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300298
Damien Lespiau178f7362013-08-06 20:32:18 +0100299 data_reg = hsw_infoframe_data_reg(type,
Antti Koskipaaa57c7742014-02-04 14:22:24 +0200300 intel_crtc->config.cpu_transcoder,
301 dev_priv);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300302 if (data_reg == 0)
303 return;
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300304
Damien Lespiau178f7362013-08-06 20:32:18 +0100305 val &= ~hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300306 I915_WRITE(ctl_reg, val);
307
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300308 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300309 for (i = 0; i < len; i += 4) {
310 I915_WRITE(data_reg + i, *data);
311 data++;
312 }
Paulo Zanoniadf00b22012-09-25 13:23:34 -0300313 /* Write every possible data byte to force correct ECC calculation. */
314 for (; i < VIDEO_DIP_DATA_SIZE; i += 4)
315 I915_WRITE(data_reg + i, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300316 mmiowb();
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300317
Damien Lespiau178f7362013-08-06 20:32:18 +0100318 val |= hsw_infoframe_enable(type);
Paulo Zanoni2da8af52012-05-14 17:12:51 -0300319 I915_WRITE(ctl_reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300320 POSTING_READ(ctl_reg);
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -0300321}
322
Damien Lespiau5adaea72013-08-06 20:32:19 +0100323/*
324 * The data we write to the DIP data buffer registers is 1 byte bigger than the
325 * HDMI infoframe size because of an ECC/reserved byte at position 3 (starting
326 * at 0). It's also a byte used by DisplayPort so the same DIP registers can be
327 * used for both technologies.
328 *
329 * DW0: Reserved/ECC/DP | HB2 | HB1 | HB0
330 * DW1: DB3 | DB2 | DB1 | DB0
331 * DW2: DB7 | DB6 | DB5 | DB4
332 * DW3: ...
333 *
334 * (HB is Header Byte, DB is Data Byte)
335 *
336 * The hdmi pack() functions don't know about that hardware specific hole so we
337 * trick them by giving an offset into the buffer and moving back the header
338 * bytes by one.
339 */
Damien Lespiau9198ee52013-08-06 20:32:24 +0100340static void intel_write_infoframe(struct drm_encoder *encoder,
341 union hdmi_infoframe *frame)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700342{
343 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100344 uint8_t buffer[VIDEO_DIP_DATA_SIZE];
345 ssize_t len;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700346
Damien Lespiau5adaea72013-08-06 20:32:19 +0100347 /* see comment above for the reason for this offset */
348 len = hdmi_infoframe_pack(frame, buffer + 1, sizeof(buffer) - 1);
349 if (len < 0)
350 return;
351
352 /* Insert the 'hole' (see big comment above) at position 3 */
353 buffer[0] = buffer[1];
354 buffer[1] = buffer[2];
355 buffer[2] = buffer[3];
356 buffer[3] = 0;
357 len++;
358
359 intel_hdmi->write_infoframe(encoder, frame->any.type, buffer, len);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700360}
361
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300362static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
Paulo Zanonic846b612012-04-13 16:31:41 -0300363 struct drm_display_mode *adjusted_mode)
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700364{
Ville Syrjäläabedc072013-01-17 16:31:31 +0200365 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Daniel Vetter50f3b012013-03-27 00:44:56 +0100366 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Damien Lespiau5adaea72013-08-06 20:32:19 +0100367 union hdmi_infoframe frame;
368 int ret;
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700369
Damien Lespiau5adaea72013-08-06 20:32:19 +0100370 ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
371 adjusted_mode);
372 if (ret < 0) {
373 DRM_ERROR("couldn't fill AVI infoframe\n");
374 return;
375 }
Paulo Zanonic846b612012-04-13 16:31:41 -0300376
Ville Syrjäläabedc072013-01-17 16:31:31 +0200377 if (intel_hdmi->rgb_quant_range_selectable) {
Daniel Vetter50f3b012013-03-27 00:44:56 +0100378 if (intel_crtc->config.limited_color_range)
Damien Lespiau5adaea72013-08-06 20:32:19 +0100379 frame.avi.quantization_range =
380 HDMI_QUANTIZATION_RANGE_LIMITED;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200381 else
Damien Lespiau5adaea72013-08-06 20:32:19 +0100382 frame.avi.quantization_range =
383 HDMI_QUANTIZATION_RANGE_FULL;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200384 }
385
Damien Lespiau9198ee52013-08-06 20:32:24 +0100386 intel_write_infoframe(encoder, &frame);
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700387}
388
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300389static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700390{
Damien Lespiau5adaea72013-08-06 20:32:19 +0100391 union hdmi_infoframe frame;
392 int ret;
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700393
Damien Lespiau5adaea72013-08-06 20:32:19 +0100394 ret = hdmi_spd_infoframe_init(&frame.spd, "Intel", "Integrated gfx");
395 if (ret < 0) {
396 DRM_ERROR("couldn't fill SPD infoframe\n");
397 return;
398 }
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700399
Damien Lespiau5adaea72013-08-06 20:32:19 +0100400 frame.spd.sdi = HDMI_SPD_SDI_PC;
401
Damien Lespiau9198ee52013-08-06 20:32:24 +0100402 intel_write_infoframe(encoder, &frame);
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700403}
404
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100405static void
406intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder,
407 struct drm_display_mode *adjusted_mode)
408{
409 union hdmi_infoframe frame;
410 int ret;
411
412 ret = drm_hdmi_vendor_infoframe_from_display_mode(&frame.vendor.hdmi,
413 adjusted_mode);
414 if (ret < 0)
415 return;
416
417 intel_write_infoframe(encoder, &frame);
418}
419
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300420static void g4x_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200421 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300422 struct drm_display_mode *adjusted_mode)
423{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300424 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200425 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
426 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300427 u32 reg = VIDEO_DIP_CTL;
428 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200429 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300430
Daniel Vetterafba0182012-06-12 16:36:45 +0200431 assert_hdmi_port_disabled(intel_hdmi);
432
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300433 /* If the registers were not initialized yet, they might be zeroes,
434 * which means we're selecting the AVI DIP and we're setting its
435 * frequency to once. This seems to really confuse the HW and make
436 * things stop working (the register spec says the AVI always needs to
437 * be sent every VSync). So here we avoid writing to the register more
438 * than we need and also explicitly select the AVI DIP and explicitly
439 * set its frequency to every VSync. Avoiding to write it twice seems to
440 * be enough to solve the problem, but being defensive shouldn't hurt us
441 * either. */
442 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
443
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200444 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300445 if (!(val & VIDEO_DIP_ENABLE))
446 return;
447 val &= ~VIDEO_DIP_ENABLE;
448 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300449 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300450 return;
451 }
452
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300453 if (port != (val & VIDEO_DIP_PORT_MASK)) {
454 if (val & VIDEO_DIP_ENABLE) {
455 val &= ~VIDEO_DIP_ENABLE;
456 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300457 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300458 }
459 val &= ~VIDEO_DIP_PORT_MASK;
460 val |= port;
461 }
462
Paulo Zanoni822974a2012-05-28 16:42:51 -0300463 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300464 val &= ~VIDEO_DIP_ENABLE_VENDOR;
Paulo Zanoni822974a2012-05-28 16:42:51 -0300465
Paulo Zanonif278d972012-05-28 16:42:50 -0300466 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300467 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300468
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300469 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
470 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100471 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300472}
473
474static void ibx_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200475 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300476 struct drm_display_mode *adjusted_mode)
477{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300478 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
479 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200480 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
481 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300482 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
483 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200484 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300485
Daniel Vetterafba0182012-06-12 16:36:45 +0200486 assert_hdmi_port_disabled(intel_hdmi);
487
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300488 /* See the big comment in g4x_set_infoframes() */
489 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
490
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200491 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300492 if (!(val & VIDEO_DIP_ENABLE))
493 return;
494 val &= ~VIDEO_DIP_ENABLE;
495 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300496 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300497 return;
498 }
499
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300500 if (port != (val & VIDEO_DIP_PORT_MASK)) {
501 if (val & VIDEO_DIP_ENABLE) {
502 val &= ~VIDEO_DIP_ENABLE;
503 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300504 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300505 }
506 val &= ~VIDEO_DIP_PORT_MASK;
507 val |= port;
508 }
509
Paulo Zanoni822974a2012-05-28 16:42:51 -0300510 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300511 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
512 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300513
Paulo Zanonif278d972012-05-28 16:42:50 -0300514 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300515 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300516
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300517 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
518 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100519 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300520}
521
522static void cpt_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200523 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300524 struct drm_display_mode *adjusted_mode)
525{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300526 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
527 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
528 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
529 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
530 u32 val = I915_READ(reg);
531
Daniel Vetterafba0182012-06-12 16:36:45 +0200532 assert_hdmi_port_disabled(intel_hdmi);
533
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300534 /* See the big comment in g4x_set_infoframes() */
535 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
536
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200537 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300538 if (!(val & VIDEO_DIP_ENABLE))
539 return;
540 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI);
541 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300542 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300543 return;
544 }
545
Paulo Zanoni822974a2012-05-28 16:42:51 -0300546 /* Set both together, unset both together: see the spec. */
547 val |= VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300548 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
549 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300550
551 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300552 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300553
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300554 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
555 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100556 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300557}
558
559static void vlv_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200560 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300561 struct drm_display_mode *adjusted_mode)
562{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300563 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700564 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300565 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
566 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
567 u32 reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
568 u32 val = I915_READ(reg);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700569 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300570
Daniel Vetterafba0182012-06-12 16:36:45 +0200571 assert_hdmi_port_disabled(intel_hdmi);
572
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300573 /* See the big comment in g4x_set_infoframes() */
574 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
575
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200576 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300577 if (!(val & VIDEO_DIP_ENABLE))
578 return;
579 val &= ~VIDEO_DIP_ENABLE;
580 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300581 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300582 return;
583 }
584
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700585 if (port != (val & VIDEO_DIP_PORT_MASK)) {
586 if (val & VIDEO_DIP_ENABLE) {
587 val &= ~VIDEO_DIP_ENABLE;
588 I915_WRITE(reg, val);
589 POSTING_READ(reg);
590 }
591 val &= ~VIDEO_DIP_PORT_MASK;
592 val |= port;
593 }
594
Paulo Zanoni822974a2012-05-28 16:42:51 -0300595 val |= VIDEO_DIP_ENABLE;
Jesse Barnes4d47dfb2014-04-02 10:08:52 -0700596 val &= ~(VIDEO_DIP_ENABLE_AVI | VIDEO_DIP_ENABLE_VENDOR |
597 VIDEO_DIP_ENABLE_GAMUT | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300598
599 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300600 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300601
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300602 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
603 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100604 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300605}
606
607static void hsw_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200608 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300609 struct drm_display_mode *adjusted_mode)
610{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300611 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
612 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
613 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Daniel Vetter3b117c82013-04-17 20:15:07 +0200614 u32 reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config.cpu_transcoder);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300615 u32 val = I915_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300616
Daniel Vetterafba0182012-06-12 16:36:45 +0200617 assert_hdmi_port_disabled(intel_hdmi);
618
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200619 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300620 I915_WRITE(reg, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300621 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300622 return;
623 }
624
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300625 val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_GCP_HSW |
626 VIDEO_DIP_ENABLE_VS_HSW | VIDEO_DIP_ENABLE_GMP_HSW);
627
628 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300629 POSTING_READ(reg);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300630
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300631 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
632 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100633 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300634}
635
Daniel Vetter4cde8a22014-04-24 23:54:56 +0200636static void intel_hdmi_prepare(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800637{
Daniel Vetterc59423a2013-07-21 21:37:04 +0200638 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800639 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc59423a2013-07-21 21:37:04 +0200640 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
641 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
642 struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300643 u32 hdmi_val;
Eric Anholt7d573822009-01-02 13:33:00 -0800644
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300645 hdmi_val = SDVO_ENCODING_HDMI;
Ville Syrjälä2af2c492013-06-25 14:16:34 +0300646 if (!HAS_PCH_SPLIT(dev))
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300647 hdmi_val |= intel_hdmi->color_range;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400648 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300649 hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400650 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300651 hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800652
Daniel Vetterc59423a2013-07-21 21:37:04 +0200653 if (crtc->config.pipe_bpp > 24)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300654 hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700655 else
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300656 hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700657
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200658 if (crtc->config.has_hdmi_sink)
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300659 hdmi_val |= HDMI_MODE_SELECT_HDMI;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800660
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200661 if (crtc->config.has_audio) {
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200662 WARN_ON(!crtc->config.has_hdmi_sink);
Wu Fengguange0dac652011-09-05 14:25:34 +0800663 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
Daniel Vetterc59423a2013-07-21 21:37:04 +0200664 pipe_name(crtc->pipe));
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300665 hdmi_val |= SDVO_AUDIO_ENABLE;
Daniel Vetterc59423a2013-07-21 21:37:04 +0200666 intel_write_eld(&encoder->base, adjusted_mode);
David Härdeman3c17fe42010-09-24 21:44:32 +0200667 }
Eric Anholt7d573822009-01-02 13:33:00 -0800668
Jesse Barnes75770562011-10-12 09:01:58 -0700669 if (HAS_PCH_CPT(dev))
Daniel Vetterc59423a2013-07-21 21:37:04 +0200670 hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
Chon Ming Lee44f37d12014-04-09 13:28:21 +0300671 else if (IS_CHERRYVIEW(dev))
672 hdmi_val |= SDVO_PIPE_SEL_CHV(crtc->pipe);
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300673 else
Daniel Vetterc59423a2013-07-21 21:37:04 +0200674 hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
Eric Anholt7d573822009-01-02 13:33:00 -0800675
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300676 I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
677 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800678}
679
Daniel Vetter85234cd2012-07-02 13:27:29 +0200680static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
681 enum pipe *pipe)
Eric Anholt7d573822009-01-02 13:33:00 -0800682{
Daniel Vetter85234cd2012-07-02 13:27:29 +0200683 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800684 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200685 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Imre Deak6d129be2014-03-05 16:20:54 +0200686 enum intel_display_power_domain power_domain;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200687 u32 tmp;
688
Imre Deak6d129be2014-03-05 16:20:54 +0200689 power_domain = intel_display_port_power_domain(encoder);
690 if (!intel_display_power_enabled(dev_priv, power_domain))
691 return false;
692
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300693 tmp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200694
695 if (!(tmp & SDVO_ENABLE))
696 return false;
697
698 if (HAS_PCH_CPT(dev))
699 *pipe = PORT_TO_PIPE_CPT(tmp);
Ville Syrjälä71485e02014-04-09 13:28:55 +0300700 else if (IS_CHERRYVIEW(dev))
701 *pipe = SDVO_PORT_TO_PIPE_CHV(tmp);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200702 else
703 *pipe = PORT_TO_PIPE(tmp);
704
705 return true;
706}
707
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700708static void intel_hdmi_get_config(struct intel_encoder *encoder,
709 struct intel_crtc_config *pipe_config)
710{
711 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
712 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
713 u32 tmp, flags = 0;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300714 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700715
716 tmp = I915_READ(intel_hdmi->hdmi_reg);
717
718 if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
719 flags |= DRM_MODE_FLAG_PHSYNC;
720 else
721 flags |= DRM_MODE_FLAG_NHSYNC;
722
723 if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
724 flags |= DRM_MODE_FLAG_PVSYNC;
725 else
726 flags |= DRM_MODE_FLAG_NVSYNC;
727
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200728 if (tmp & HDMI_MODE_SELECT_HDMI)
729 pipe_config->has_hdmi_sink = true;
730
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200731 if (tmp & HDMI_MODE_SELECT_HDMI)
732 pipe_config->has_audio = true;
733
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700734 pipe_config->adjusted_mode.flags |= flags;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300735
736 if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
737 dotclock = pipe_config->port_clock * 2 / 3;
738 else
739 dotclock = pipe_config->port_clock;
740
741 if (HAS_PCH_SPLIT(dev_priv->dev))
742 ironlake_check_encoder_dotclock(pipe_config, dotclock);
743
Damien Lespiau241bfc32013-09-25 16:45:37 +0100744 pipe_config->adjusted_mode.crtc_clock = dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700745}
746
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200747static void intel_enable_hdmi(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800748{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200749 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800750 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300751 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200752 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Eric Anholt7d573822009-01-02 13:33:00 -0800753 u32 temp;
Wu Fengguang2deed762011-12-09 20:42:20 +0800754 u32 enable_bits = SDVO_ENABLE;
755
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200756 if (intel_crtc->config.has_audio)
Wu Fengguang2deed762011-12-09 20:42:20 +0800757 enable_bits |= SDVO_AUDIO_ENABLE;
Eric Anholt7d573822009-01-02 13:33:00 -0800758
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300759 temp = I915_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000760
Daniel Vetter7a87c282012-06-05 11:03:39 +0200761 /* HW workaround for IBX, we need to move the port to transcoder A
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300762 * before disabling it, so restore the transcoder select bit here. */
763 if (HAS_PCH_IBX(dev))
764 enable_bits |= SDVO_PIPE_SEL(intel_crtc->pipe);
Daniel Vetter7a87c282012-06-05 11:03:39 +0200765
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200766 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
767 * we do this anyway which shows more stable in testing.
768 */
769 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300770 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
771 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200772 }
Daniel Vetter7a87c282012-06-05 11:03:39 +0200773
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200774 temp |= enable_bits;
775
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300776 I915_WRITE(intel_hdmi->hdmi_reg, temp);
777 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200778
779 /* HW workaround, need to write this twice for issue that may result
780 * in first write getting masked.
781 */
782 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300783 I915_WRITE(intel_hdmi->hdmi_reg, temp);
784 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200785 }
Jani Nikulab76cf762013-07-30 12:20:31 +0300786}
Jesse Barnes89b667f2013-04-18 14:51:36 -0700787
Jani Nikulab76cf762013-07-30 12:20:31 +0300788static void vlv_enable_hdmi(struct intel_encoder *encoder)
789{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200790}
791
792static void intel_disable_hdmi(struct intel_encoder *encoder)
793{
794 struct drm_device *dev = encoder->base.dev;
795 struct drm_i915_private *dev_priv = dev->dev_private;
796 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
797 u32 temp;
Wang Xingchao3cce5742012-09-13 11:19:00 +0800798 u32 enable_bits = SDVO_ENABLE | SDVO_AUDIO_ENABLE;
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200799
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300800 temp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200801
802 /* HW workaround for IBX, we need to move the port to transcoder A
803 * before disabling it. */
804 if (HAS_PCH_IBX(dev)) {
805 struct drm_crtc *crtc = encoder->base.crtc;
806 int pipe = crtc ? to_intel_crtc(crtc)->pipe : -1;
807
808 if (temp & SDVO_PIPE_B_SELECT) {
809 temp &= ~SDVO_PIPE_B_SELECT;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300810 I915_WRITE(intel_hdmi->hdmi_reg, temp);
811 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200812
813 /* Again we need to write this twice. */
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300814 I915_WRITE(intel_hdmi->hdmi_reg, temp);
815 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200816
817 /* Transcoder selection bits only update
818 * effectively on vblank. */
819 if (crtc)
820 intel_wait_for_vblank(dev, pipe);
821 else
822 msleep(50);
Daniel Vetter7a87c282012-06-05 11:03:39 +0200823 }
824 }
825
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000826 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
827 * we do this anyway which shows more stable in testing.
828 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800829 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300830 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
831 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800832 }
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000833
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200834 temp &= ~enable_bits;
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000835
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300836 I915_WRITE(intel_hdmi->hdmi_reg, temp);
837 POSTING_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000838
839 /* HW workaround, need to write this twice for issue that may result
840 * in first write getting masked.
841 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800842 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300843 I915_WRITE(intel_hdmi->hdmi_reg, temp);
844 POSTING_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000845 }
Eric Anholt7d573822009-01-02 13:33:00 -0800846}
847
Ville Syrjälä40478452014-03-27 11:08:45 +0200848static int hdmi_portclock_limit(struct intel_hdmi *hdmi, bool respect_dvi_limit)
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200849{
850 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
851
Ville Syrjälä40478452014-03-27 11:08:45 +0200852 if ((respect_dvi_limit && !hdmi->has_hdmi_sink) || IS_G4X(dev))
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200853 return 165000;
Damien Lespiaue3c33572013-11-02 21:07:51 -0700854 else if (IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8)
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200855 return 300000;
856 else
857 return 225000;
858}
859
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000860static enum drm_mode_status
861intel_hdmi_mode_valid(struct drm_connector *connector,
862 struct drm_display_mode *mode)
Eric Anholt7d573822009-01-02 13:33:00 -0800863{
Ville Syrjälä40478452014-03-27 11:08:45 +0200864 if (mode->clock > hdmi_portclock_limit(intel_attached_hdmi(connector),
865 true))
Eric Anholt7d573822009-01-02 13:33:00 -0800866 return MODE_CLOCK_HIGH;
867 if (mode->clock < 20000)
Nicolas Kaiser5cbba412011-05-30 12:48:26 +0200868 return MODE_CLOCK_LOW;
Eric Anholt7d573822009-01-02 13:33:00 -0800869
870 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
871 return MODE_NO_DBLESCAN;
872
873 return MODE_OK;
874}
875
Ville Syrjälä71800632014-03-03 16:15:29 +0200876static bool hdmi_12bpc_possible(struct intel_crtc *crtc)
877{
878 struct drm_device *dev = crtc->base.dev;
879 struct intel_encoder *encoder;
880 int count = 0, count_hdmi = 0;
881
882 if (!HAS_PCH_SPLIT(dev))
883 return false;
884
885 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
886 if (encoder->new_crtc != crtc)
887 continue;
888
889 count_hdmi += encoder->type == INTEL_OUTPUT_HDMI;
890 count++;
891 }
892
893 /*
894 * HDMI 12bpc affects the clocks, so it's only possible
895 * when not cloning with other encoder types.
896 */
897 return count_hdmi > 0 && count_hdmi == count;
898}
899
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100900bool intel_hdmi_compute_config(struct intel_encoder *encoder,
901 struct intel_crtc_config *pipe_config)
Eric Anholt7d573822009-01-02 13:33:00 -0800902{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100903 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
904 struct drm_device *dev = encoder->base.dev;
905 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100906 int clock_12bpc = pipe_config->adjusted_mode.crtc_clock * 3 / 2;
Ville Syrjälä40478452014-03-27 11:08:45 +0200907 int portclock_limit = hdmi_portclock_limit(intel_hdmi, false);
Daniel Vettere29c22c2013-02-21 00:00:16 +0100908 int desired_bpp;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200909
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200910 pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink;
911
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200912 if (intel_hdmi->color_range_auto) {
913 /* See CEA-861-E - 5.1 Default Encoding Parameters */
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200914 if (pipe_config->has_hdmi_sink &&
Thierry Reding18316c82012-12-20 15:41:44 +0100915 drm_match_cea_mode(adjusted_mode) > 1)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300916 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200917 else
918 intel_hdmi->color_range = 0;
919 }
920
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200921 if (intel_hdmi->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +0100922 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200923
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100924 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
925 pipe_config->has_pch_encoder = true;
926
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200927 if (pipe_config->has_hdmi_sink && intel_hdmi->has_audio)
928 pipe_config->has_audio = true;
929
Daniel Vetter4e53c2e2013-03-27 00:44:58 +0100930 /*
931 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
932 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
Daniel Vetter325b9d02013-04-19 11:24:33 +0200933 * outputs. We also need to check that the higher clock still fits
934 * within limits.
Daniel Vetter4e53c2e2013-03-27 00:44:58 +0100935 */
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200936 if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink &&
Ville Syrjälä71800632014-03-03 16:15:29 +0200937 clock_12bpc <= portclock_limit &&
938 hdmi_12bpc_possible(encoder->new_crtc)) {
Daniel Vettere29c22c2013-02-21 00:00:16 +0100939 DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
940 desired_bpp = 12*3;
Daniel Vetter325b9d02013-04-19 11:24:33 +0200941
942 /* Need to adjust the port link by 1.5x for 12bpc. */
Daniel Vetterff9a6752013-06-01 17:16:21 +0200943 pipe_config->port_clock = clock_12bpc;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +0100944 } else {
Daniel Vettere29c22c2013-02-21 00:00:16 +0100945 DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
946 desired_bpp = 8*3;
947 }
948
949 if (!pipe_config->bw_constrained) {
950 DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
951 pipe_config->pipe_bpp = desired_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +0100952 }
953
Damien Lespiau241bfc32013-09-25 16:45:37 +0100954 if (adjusted_mode->crtc_clock > portclock_limit) {
Daniel Vetter325b9d02013-04-19 11:24:33 +0200955 DRM_DEBUG_KMS("too high HDMI clock, rejecting mode\n");
956 return false;
957 }
958
Eric Anholt7d573822009-01-02 13:33:00 -0800959 return true;
960}
961
Keith Packardaa93d632009-05-05 09:52:46 -0700962static enum drm_connector_status
Chris Wilson930a9e22010-09-14 11:07:23 +0100963intel_hdmi_detect(struct drm_connector *connector, bool force)
Ma Ling9dff6af2009-04-02 13:13:26 +0800964{
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000965 struct drm_device *dev = connector->dev;
Chris Wilsondf0e9242010-09-09 16:20:55 +0100966 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Paulo Zanonid63885d2012-10-26 19:05:49 -0200967 struct intel_digital_port *intel_dig_port =
968 hdmi_to_dig_port(intel_hdmi);
969 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000970 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700971 struct edid *edid;
Imre Deak671dedd2014-03-05 16:20:53 +0200972 enum intel_display_power_domain power_domain;
Keith Packardaa93d632009-05-05 09:52:46 -0700973 enum drm_connector_status status = connector_status_disconnected;
Ma Ling9dff6af2009-04-02 13:13:26 +0800974
Chris Wilson164c8592013-07-20 20:27:08 +0100975 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
976 connector->base.id, drm_get_connector_name(connector));
977
Imre Deak671dedd2014-03-05 16:20:53 +0200978 power_domain = intel_display_port_power_domain(intel_encoder);
979 intel_display_power_get(dev_priv, power_domain);
980
Chris Wilsonea5b2132010-08-04 13:50:23 +0100981 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800982 intel_hdmi->has_audio = false;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200983 intel_hdmi->rgb_quant_range_selectable = false;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700984 edid = drm_get_edid(connector,
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800985 intel_gmbus_get_adapter(dev_priv,
986 intel_hdmi->ddc_bus));
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800987
Keith Packardaa93d632009-05-05 09:52:46 -0700988 if (edid) {
Eric Anholtbe9f1c42009-06-21 22:14:55 -0700989 if (edid->input & DRM_EDID_INPUT_DIGITAL) {
Keith Packardaa93d632009-05-05 09:52:46 -0700990 status = connector_status_connected;
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800991 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
992 intel_hdmi->has_hdmi_sink =
993 drm_detect_hdmi_monitor(edid);
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800994 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
Ville Syrjäläabedc072013-01-17 16:31:31 +0200995 intel_hdmi->rgb_quant_range_selectable =
996 drm_rgb_quant_range_selectable(edid);
Keith Packardaa93d632009-05-05 09:52:46 -0700997 }
Keith Packardaa93d632009-05-05 09:52:46 -0700998 kfree(edid);
Ma Ling9dff6af2009-04-02 13:13:26 +0800999 }
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +08001000
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001001 if (status == connector_status_connected) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001002 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
1003 intel_hdmi->has_audio =
1004 (intel_hdmi->force_audio == HDMI_AUDIO_ON);
Paulo Zanonid63885d2012-10-26 19:05:49 -02001005 intel_encoder->type = INTEL_OUTPUT_HDMI;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001006 }
1007
Imre Deak671dedd2014-03-05 16:20:53 +02001008 intel_display_power_put(dev_priv, power_domain);
1009
Keith Packardaa93d632009-05-05 09:52:46 -07001010 return status;
Ma Ling9dff6af2009-04-02 13:13:26 +08001011}
1012
Eric Anholt7d573822009-01-02 13:33:00 -08001013static int intel_hdmi_get_modes(struct drm_connector *connector)
1014{
Imre Deak671dedd2014-03-05 16:20:53 +02001015 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
1016 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);
Chris Wilsonf899fc62010-07-20 15:44:45 -07001017 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Imre Deak671dedd2014-03-05 16:20:53 +02001018 enum intel_display_power_domain power_domain;
1019 int ret;
Eric Anholt7d573822009-01-02 13:33:00 -08001020
1021 /* We should parse the EDID data and find out if it's an HDMI sink so
1022 * we can send audio to it.
1023 */
1024
Imre Deak671dedd2014-03-05 16:20:53 +02001025 power_domain = intel_display_port_power_domain(intel_encoder);
1026 intel_display_power_get(dev_priv, power_domain);
1027
1028 ret = intel_ddc_get_modes(connector,
Daniel Kurtz3bd7d902012-03-28 02:36:14 +08001029 intel_gmbus_get_adapter(dev_priv,
1030 intel_hdmi->ddc_bus));
Imre Deak671dedd2014-03-05 16:20:53 +02001031
1032 intel_display_power_put(dev_priv, power_domain);
1033
1034 return ret;
Eric Anholt7d573822009-01-02 13:33:00 -08001035}
1036
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001037static bool
1038intel_hdmi_detect_audio(struct drm_connector *connector)
1039{
Imre Deak671dedd2014-03-05 16:20:53 +02001040 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
1041 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001042 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Imre Deak671dedd2014-03-05 16:20:53 +02001043 enum intel_display_power_domain power_domain;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001044 struct edid *edid;
1045 bool has_audio = false;
1046
Imre Deak671dedd2014-03-05 16:20:53 +02001047 power_domain = intel_display_port_power_domain(intel_encoder);
1048 intel_display_power_get(dev_priv, power_domain);
1049
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001050 edid = drm_get_edid(connector,
Daniel Kurtz3bd7d902012-03-28 02:36:14 +08001051 intel_gmbus_get_adapter(dev_priv,
1052 intel_hdmi->ddc_bus));
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001053 if (edid) {
1054 if (edid->input & DRM_EDID_INPUT_DIGITAL)
1055 has_audio = drm_detect_monitor_audio(edid);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001056 kfree(edid);
1057 }
1058
Imre Deak671dedd2014-03-05 16:20:53 +02001059 intel_display_power_put(dev_priv, power_domain);
1060
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001061 return has_audio;
1062}
1063
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001064static int
1065intel_hdmi_set_property(struct drm_connector *connector,
Paulo Zanonied517fb2012-05-14 17:12:50 -03001066 struct drm_property *property,
1067 uint64_t val)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001068{
1069 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001070 struct intel_digital_port *intel_dig_port =
1071 hdmi_to_dig_port(intel_hdmi);
Chris Wilsone953fd72011-02-21 22:23:52 +00001072 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001073 int ret;
1074
Rob Clark662595d2012-10-11 20:36:04 -05001075 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001076 if (ret)
1077 return ret;
1078
Chris Wilson3f43c482011-05-12 22:17:24 +01001079 if (property == dev_priv->force_audio_property) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001080 enum hdmi_force_audio i = val;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001081 bool has_audio;
1082
1083 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001084 return 0;
1085
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001086 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001087
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001088 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001089 has_audio = intel_hdmi_detect_audio(connector);
1090 else
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001091 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001092
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001093 if (i == HDMI_AUDIO_OFF_DVI)
1094 intel_hdmi->has_hdmi_sink = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001095
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001096 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001097 goto done;
1098 }
1099
Chris Wilsone953fd72011-02-21 22:23:52 +00001100 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02001101 bool old_auto = intel_hdmi->color_range_auto;
1102 uint32_t old_range = intel_hdmi->color_range;
1103
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001104 switch (val) {
1105 case INTEL_BROADCAST_RGB_AUTO:
1106 intel_hdmi->color_range_auto = true;
1107 break;
1108 case INTEL_BROADCAST_RGB_FULL:
1109 intel_hdmi->color_range_auto = false;
1110 intel_hdmi->color_range = 0;
1111 break;
1112 case INTEL_BROADCAST_RGB_LIMITED:
1113 intel_hdmi->color_range_auto = false;
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -03001114 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001115 break;
1116 default:
1117 return -EINVAL;
1118 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02001119
1120 if (old_auto == intel_hdmi->color_range_auto &&
1121 old_range == intel_hdmi->color_range)
1122 return 0;
1123
Chris Wilsone953fd72011-02-21 22:23:52 +00001124 goto done;
1125 }
1126
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001127 return -EINVAL;
1128
1129done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00001130 if (intel_dig_port->base.base.crtc)
1131 intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001132
1133 return 0;
1134}
1135
Jesse Barnes13732ba2014-04-05 11:51:35 -07001136static void intel_hdmi_pre_enable(struct intel_encoder *encoder)
1137{
1138 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1139 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
1140 struct drm_display_mode *adjusted_mode =
1141 &intel_crtc->config.adjusted_mode;
1142
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001143 intel_hdmi_prepare(encoder);
1144
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001145 intel_hdmi->set_infoframes(&encoder->base,
1146 intel_crtc->config.has_hdmi_sink,
1147 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001148}
1149
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001150static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001151{
1152 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001153 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001154 struct drm_device *dev = encoder->base.dev;
1155 struct drm_i915_private *dev_priv = dev->dev_private;
1156 struct intel_crtc *intel_crtc =
1157 to_intel_crtc(encoder->base.crtc);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001158 struct drm_display_mode *adjusted_mode =
1159 &intel_crtc->config.adjusted_mode;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001160 enum dpio_channel port = vlv_dport_to_channel(dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001161 int pipe = intel_crtc->pipe;
1162 u32 val;
1163
Jesse Barnes89b667f2013-04-18 14:51:36 -07001164 /* Enable clock channels for this port */
Chris Wilson0980a602013-07-26 19:57:35 +01001165 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001166 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001167 val = 0;
1168 if (pipe)
1169 val |= (1<<21);
1170 else
1171 val &= ~(1<<21);
1172 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001173 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001174
1175 /* HDMI 1.0V-2dB */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001176 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0);
1177 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), 0x2b245f5f);
1178 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port), 0x5578b83a);
1179 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0c782040);
1180 vlv_dpio_write(dev_priv, pipe, VLV_TX3_DW4(port), 0x2b247878);
1181 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
1182 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1183 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001184
1185 /* Program lane clock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001186 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
1187 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Chris Wilson0980a602013-07-26 19:57:35 +01001188 mutex_unlock(&dev_priv->dpio_lock);
Jani Nikulab76cf762013-07-30 12:20:31 +03001189
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001190 intel_hdmi->set_infoframes(&encoder->base,
1191 intel_crtc->config.has_hdmi_sink,
1192 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001193
Jani Nikulab76cf762013-07-30 12:20:31 +03001194 intel_enable_hdmi(encoder);
1195
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001196 vlv_wait_port_ready(dev_priv, dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001197}
1198
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001199static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001200{
1201 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1202 struct drm_device *dev = encoder->base.dev;
1203 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001204 struct intel_crtc *intel_crtc =
1205 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001206 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001207 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001208
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001209 intel_hdmi_prepare(encoder);
1210
Jesse Barnes89b667f2013-04-18 14:51:36 -07001211 /* Program Tx lane resets to default */
Chris Wilson0980a602013-07-26 19:57:35 +01001212 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001213 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001214 DPIO_PCS_TX_LANE2_RESET |
1215 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001216 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001217 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1218 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1219 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1220 DPIO_PCS_CLK_SOFT_RESET);
1221
1222 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001223 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
1224 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
1225 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001226
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001227 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1228 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Chris Wilson0980a602013-07-26 19:57:35 +01001229 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001230}
1231
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001232static void vlv_hdmi_post_disable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001233{
1234 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1235 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001236 struct intel_crtc *intel_crtc =
1237 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001238 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001239 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001240
1241 /* Reset lanes to avoid HDMI flicker (VLV w/a) */
1242 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001243 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), 0x00000000);
1244 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port), 0x00e00060);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001245 mutex_unlock(&dev_priv->dpio_lock);
1246}
1247
Ville Syrjälä580d3812014-04-09 13:29:00 +03001248static void chv_hdmi_post_disable(struct intel_encoder *encoder)
1249{
1250 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1251 struct drm_device *dev = encoder->base.dev;
1252 struct drm_i915_private *dev_priv = dev->dev_private;
1253 struct intel_crtc *intel_crtc =
1254 to_intel_crtc(encoder->base.crtc);
1255 enum dpio_channel ch = vlv_dport_to_channel(dport);
1256 enum pipe pipe = intel_crtc->pipe;
1257 u32 val;
1258
1259 mutex_lock(&dev_priv->dpio_lock);
1260
1261 /* Propagate soft reset to data lane reset */
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001262 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001263 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001264 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001265
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001266 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1267 val |= CHV_PCS_REQ_SOFTRESET_EN;
1268 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1269
1270 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä580d3812014-04-09 13:29:00 +03001271 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001272 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1273
1274 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1275 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1276 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001277
1278 mutex_unlock(&dev_priv->dpio_lock);
1279}
1280
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001281static void chv_hdmi_pre_enable(struct intel_encoder *encoder)
1282{
1283 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1284 struct drm_device *dev = encoder->base.dev;
1285 struct drm_i915_private *dev_priv = dev->dev_private;
1286 struct intel_crtc *intel_crtc =
1287 to_intel_crtc(encoder->base.crtc);
1288 enum dpio_channel ch = vlv_dport_to_channel(dport);
1289 int pipe = intel_crtc->pipe;
1290 int data, i;
1291 u32 val;
1292
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001293 mutex_lock(&dev_priv->dpio_lock);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001294
1295 /* Deassert soft data lane reset*/
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001296 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001297 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001298 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001299
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001300 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1301 val |= CHV_PCS_REQ_SOFTRESET_EN;
1302 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1303
1304 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001305 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001306 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1307
1308 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1309 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1310 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001311
1312 /* Program Tx latency optimal setting */
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001313 for (i = 0; i < 4; i++) {
1314 /* Set the latency optimal bit */
1315 data = (i == 1) ? 0x0 : 0x6;
1316 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW11(ch, i),
1317 data << DPIO_FRC_LATENCY_SHFIT);
1318
1319 /* Set the upar bit */
1320 data = (i == 1) ? 0x0 : 0x1;
1321 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
1322 data << DPIO_UPAR_SHIFT);
1323 }
1324
1325 /* Data lane stagger programming */
1326 /* FIXME: Fix up value only after power analysis */
1327
1328 /* Clear calc init */
1329 vlv_dpio_write(dev_priv, pipe, CHV_PCS_DW10(ch), 0);
1330
1331 /* FIXME: Program the support xxx V-dB */
1332 /* Use 800mV-0dB */
1333 val = vlv_dpio_read(dev_priv, pipe, VLV_TX_DW4(ch));
1334 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
1335 val |= 128 << DPIO_SWING_DEEMPH9P5_SHIFT;
1336 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(ch), val);
1337
1338 val = vlv_dpio_read(dev_priv, pipe, VLV_TX_DW2(ch));
1339 val &= ~DPIO_SWING_MARGIN_MASK;
1340 val |= 102 << DPIO_SWING_MARGIN_SHIFT;
1341 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(ch), val);
1342
1343 /* Disable unique transition scale */
1344 val = vlv_dpio_read(dev_priv, pipe, VLV_TX_DW3(ch));
1345 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
1346 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(ch), val);
1347
1348 /* Additional steps for 1200mV-0dB */
1349#if 0
1350 val = vlv_dpio_read(dev_priv, pipe, VLV_TX_DW3(ch));
1351 if (ch)
1352 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH1;
1353 else
1354 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH0;
1355 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(ch), val);
1356
1357 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(ch),
1358 vlv_dpio_read(dev_priv, pipe, VLV_TX_DW2(ch)) |
1359 (0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT));
1360#endif
1361 /* Start swing calculation */
1362 vlv_dpio_write(dev_priv, pipe, CHV_PCS_DW10(ch),
1363 DPIO_PCS_SWING_CALC_TX0_TX2 |
1364 DPIO_PCS_SWING_CALC_TX1_TX3);
1365
1366 /* LRC Bypass */
1367 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
1368 val |= DPIO_LRC_BYPASS;
1369 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
1370
1371 mutex_unlock(&dev_priv->dpio_lock);
1372
1373 intel_enable_hdmi(encoder);
1374
1375 vlv_wait_port_ready(dev_priv, dport);
1376}
1377
Eric Anholt7d573822009-01-02 13:33:00 -08001378static void intel_hdmi_destroy(struct drm_connector *connector)
1379{
Eric Anholt7d573822009-01-02 13:33:00 -08001380 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +08001381 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001382}
1383
Eric Anholt7d573822009-01-02 13:33:00 -08001384static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001385 .dpms = intel_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -08001386 .detect = intel_hdmi_detect,
1387 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001388 .set_property = intel_hdmi_set_property,
Eric Anholt7d573822009-01-02 13:33:00 -08001389 .destroy = intel_hdmi_destroy,
1390};
1391
1392static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
1393 .get_modes = intel_hdmi_get_modes,
1394 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01001395 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -08001396};
1397
Eric Anholt7d573822009-01-02 13:33:00 -08001398static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001399 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -08001400};
1401
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001402static void
1403intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
1404{
Chris Wilson3f43c482011-05-12 22:17:24 +01001405 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00001406 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001407 intel_hdmi->color_range_auto = true;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001408}
1409
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001410void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
1411 struct intel_connector *intel_connector)
Eric Anholt7d573822009-01-02 13:33:00 -08001412{
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001413 struct drm_connector *connector = &intel_connector->base;
1414 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
1415 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1416 struct drm_device *dev = intel_encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -08001417 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001418 enum port port = intel_dig_port->port;
Eric Anholt7d573822009-01-02 13:33:00 -08001419
Eric Anholt7d573822009-01-02 13:33:00 -08001420 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -04001421 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -08001422 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
1423
Peter Rossc3febcc2012-01-28 14:49:26 +01001424 connector->interlace_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001425 connector->doublescan_allowed = 0;
Damien Lespiau573e74a2013-09-25 16:45:40 +01001426 connector->stereo_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001427
Daniel Vetter08d644a2012-07-12 20:19:59 +02001428 switch (port) {
1429 case PORT_B:
Chris Wilsonf899fc62010-07-20 15:44:45 -07001430 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Egbert Eich1d843f92013-02-25 12:06:49 -05001431 intel_encoder->hpd_pin = HPD_PORT_B;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001432 break;
1433 case PORT_C:
Chris Wilsonf899fc62010-07-20 15:44:45 -07001434 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Egbert Eich1d843f92013-02-25 12:06:49 -05001435 intel_encoder->hpd_pin = HPD_PORT_C;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001436 break;
1437 case PORT_D:
Ville Syrjäläc0c35322014-04-09 13:28:52 +03001438 if (IS_CHERRYVIEW(dev))
1439 intel_hdmi->ddc_bus = GMBUS_PORT_DPD_CHV;
1440 else
1441 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
Egbert Eich1d843f92013-02-25 12:06:49 -05001442 intel_encoder->hpd_pin = HPD_PORT_D;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001443 break;
1444 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05001445 intel_encoder->hpd_pin = HPD_PORT_A;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001446 /* Internal port only for eDP. */
1447 default:
Eugeni Dodonov6e4c1672012-05-09 15:37:13 -03001448 BUG();
Ma Lingf8aed702009-08-24 13:50:24 +08001449 }
Eric Anholt7d573822009-01-02 13:33:00 -08001450
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001451 if (IS_VALLEYVIEW(dev)) {
Shobhit Kumar90b107c2012-03-28 13:39:32 -07001452 intel_hdmi->write_infoframe = vlv_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001453 intel_hdmi->set_infoframes = vlv_set_infoframes;
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001454 } else if (!HAS_PCH_SPLIT(dev)) {
1455 intel_hdmi->write_infoframe = g4x_write_infoframe;
1456 intel_hdmi->set_infoframes = g4x_set_infoframes;
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001457 } else if (HAS_DDI(dev)) {
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -03001458 intel_hdmi->write_infoframe = hsw_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001459 intel_hdmi->set_infoframes = hsw_set_infoframes;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001460 } else if (HAS_PCH_IBX(dev)) {
1461 intel_hdmi->write_infoframe = ibx_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001462 intel_hdmi->set_infoframes = ibx_set_infoframes;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001463 } else {
1464 intel_hdmi->write_infoframe = cpt_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001465 intel_hdmi->set_infoframes = cpt_set_infoframes;
Jesse Barnes64a8fc02011-09-22 11:16:00 +05301466 }
Jesse Barnes45187ac2011-08-03 09:22:55 -07001467
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001468 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02001469 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
1470 else
1471 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak4932e2c2014-02-11 17:12:48 +02001472 intel_connector->unregister = intel_connector_unregister;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001473
1474 intel_hdmi_add_properties(intel_hdmi, connector);
1475
1476 intel_connector_attach_encoder(intel_connector, intel_encoder);
1477 drm_sysfs_connector_add(connector);
1478
1479 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
1480 * 0xd. Failure to do so will result in spurious interrupts being
1481 * generated on the port when a cable is not attached.
1482 */
1483 if (IS_G4X(dev) && !IS_GM45(dev)) {
1484 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
1485 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
1486 }
1487}
1488
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001489void intel_hdmi_init(struct drm_device *dev, int hdmi_reg, enum port port)
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001490{
1491 struct intel_digital_port *intel_dig_port;
1492 struct intel_encoder *intel_encoder;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001493 struct intel_connector *intel_connector;
1494
Daniel Vetterb14c5672013-09-19 12:18:32 +02001495 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001496 if (!intel_dig_port)
1497 return;
1498
Daniel Vetterb14c5672013-09-19 12:18:32 +02001499 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001500 if (!intel_connector) {
1501 kfree(intel_dig_port);
1502 return;
1503 }
1504
1505 intel_encoder = &intel_dig_port->base;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001506
1507 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
1508 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001509
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001510 intel_encoder->compute_config = intel_hdmi_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001511 intel_encoder->disable = intel_disable_hdmi;
1512 intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001513 intel_encoder->get_config = intel_hdmi_get_config;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001514 if (IS_CHERRYVIEW(dev)) {
1515 intel_encoder->pre_enable = chv_hdmi_pre_enable;
1516 intel_encoder->enable = vlv_enable_hdmi;
Ville Syrjälä580d3812014-04-09 13:29:00 +03001517 intel_encoder->post_disable = chv_hdmi_post_disable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001518 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001519 intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
1520 intel_encoder->pre_enable = vlv_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001521 intel_encoder->enable = vlv_enable_hdmi;
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001522 intel_encoder->post_disable = vlv_hdmi_post_disable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001523 } else {
Jesse Barnes13732ba2014-04-05 11:51:35 -07001524 intel_encoder->pre_enable = intel_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001525 intel_encoder->enable = intel_enable_hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001526 }
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001527
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001528 intel_encoder->type = INTEL_OUTPUT_HDMI;
Ville Syrjälä882ec382014-04-28 14:07:43 +03001529 if (IS_CHERRYVIEW(dev)) {
1530 if (port == PORT_D)
1531 intel_encoder->crtc_mask = 1 << 2;
1532 else
1533 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
1534 } else {
1535 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
1536 }
Ville Syrjälä301ea742014-03-03 16:15:30 +02001537 intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
Ville Syrjäläc6f14952014-03-03 16:15:31 +02001538 /*
1539 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
1540 * to work on real hardware. And since g4x can send infoframes to
1541 * only one port anyway, nothing is lost by allowing it.
1542 */
1543 if (IS_G4X(dev))
1544 intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -08001545
Paulo Zanoni174edf12012-10-26 19:05:50 -02001546 intel_dig_port->port = port;
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001547 intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001548 intel_dig_port->dp.output_reg = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001549
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001550 intel_hdmi_init_connector(intel_dig_port, intel_connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001551}