blob: f29026a1157da540dc2d1abd7e26db0c3e1daca9 [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
Vandana Kannan94a11dd2014-06-11 11:06:01 +0530370 /* Set user selected PAR to incoming mode's member */
371 adjusted_mode->picture_aspect_ratio = intel_hdmi->aspect_ratio;
372
Damien Lespiau5adaea72013-08-06 20:32:19 +0100373 ret = drm_hdmi_avi_infoframe_from_display_mode(&frame.avi,
374 adjusted_mode);
375 if (ret < 0) {
376 DRM_ERROR("couldn't fill AVI infoframe\n");
377 return;
378 }
Paulo Zanonic846b612012-04-13 16:31:41 -0300379
Ville Syrjäläabedc072013-01-17 16:31:31 +0200380 if (intel_hdmi->rgb_quant_range_selectable) {
Daniel Vetter50f3b012013-03-27 00:44:56 +0100381 if (intel_crtc->config.limited_color_range)
Damien Lespiau5adaea72013-08-06 20:32:19 +0100382 frame.avi.quantization_range =
383 HDMI_QUANTIZATION_RANGE_LIMITED;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200384 else
Damien Lespiau5adaea72013-08-06 20:32:19 +0100385 frame.avi.quantization_range =
386 HDMI_QUANTIZATION_RANGE_FULL;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200387 }
388
Damien Lespiau9198ee52013-08-06 20:32:24 +0100389 intel_write_infoframe(encoder, &frame);
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700390}
391
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300392static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700393{
Damien Lespiau5adaea72013-08-06 20:32:19 +0100394 union hdmi_infoframe frame;
395 int ret;
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700396
Damien Lespiau5adaea72013-08-06 20:32:19 +0100397 ret = hdmi_spd_infoframe_init(&frame.spd, "Intel", "Integrated gfx");
398 if (ret < 0) {
399 DRM_ERROR("couldn't fill SPD infoframe\n");
400 return;
401 }
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700402
Damien Lespiau5adaea72013-08-06 20:32:19 +0100403 frame.spd.sdi = HDMI_SPD_SDI_PC;
404
Damien Lespiau9198ee52013-08-06 20:32:24 +0100405 intel_write_infoframe(encoder, &frame);
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700406}
407
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100408static void
409intel_hdmi_set_hdmi_infoframe(struct drm_encoder *encoder,
410 struct drm_display_mode *adjusted_mode)
411{
412 union hdmi_infoframe frame;
413 int ret;
414
415 ret = drm_hdmi_vendor_infoframe_from_display_mode(&frame.vendor.hdmi,
416 adjusted_mode);
417 if (ret < 0)
418 return;
419
420 intel_write_infoframe(encoder, &frame);
421}
422
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300423static void g4x_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200424 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300425 struct drm_display_mode *adjusted_mode)
426{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300427 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200428 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
429 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300430 u32 reg = VIDEO_DIP_CTL;
431 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200432 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300433
Daniel Vetterafba0182012-06-12 16:36:45 +0200434 assert_hdmi_port_disabled(intel_hdmi);
435
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300436 /* If the registers were not initialized yet, they might be zeroes,
437 * which means we're selecting the AVI DIP and we're setting its
438 * frequency to once. This seems to really confuse the HW and make
439 * things stop working (the register spec says the AVI always needs to
440 * be sent every VSync). So here we avoid writing to the register more
441 * than we need and also explicitly select the AVI DIP and explicitly
442 * set its frequency to every VSync. Avoiding to write it twice seems to
443 * be enough to solve the problem, but being defensive shouldn't hurt us
444 * either. */
445 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
446
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200447 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300448 if (!(val & VIDEO_DIP_ENABLE))
449 return;
450 val &= ~VIDEO_DIP_ENABLE;
451 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300452 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300453 return;
454 }
455
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300456 if (port != (val & VIDEO_DIP_PORT_MASK)) {
457 if (val & VIDEO_DIP_ENABLE) {
458 val &= ~VIDEO_DIP_ENABLE;
459 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300460 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300461 }
462 val &= ~VIDEO_DIP_PORT_MASK;
463 val |= port;
464 }
465
Paulo Zanoni822974a2012-05-28 16:42:51 -0300466 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300467 val &= ~VIDEO_DIP_ENABLE_VENDOR;
Paulo Zanoni822974a2012-05-28 16:42:51 -0300468
Paulo Zanonif278d972012-05-28 16:42:50 -0300469 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300470 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300471
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300472 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
473 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100474 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300475}
476
477static void ibx_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;
482 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200483 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
484 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300485 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
486 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200487 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300488
Daniel Vetterafba0182012-06-12 16:36:45 +0200489 assert_hdmi_port_disabled(intel_hdmi);
490
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300491 /* See the big comment in g4x_set_infoframes() */
492 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
493
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200494 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300495 if (!(val & VIDEO_DIP_ENABLE))
496 return;
497 val &= ~VIDEO_DIP_ENABLE;
498 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300499 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300500 return;
501 }
502
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300503 if (port != (val & VIDEO_DIP_PORT_MASK)) {
504 if (val & VIDEO_DIP_ENABLE) {
505 val &= ~VIDEO_DIP_ENABLE;
506 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300507 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300508 }
509 val &= ~VIDEO_DIP_PORT_MASK;
510 val |= port;
511 }
512
Paulo Zanoni822974a2012-05-28 16:42:51 -0300513 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300514 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
515 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300516
Paulo Zanonif278d972012-05-28 16:42:50 -0300517 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300518 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300519
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300520 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
521 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100522 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300523}
524
525static void cpt_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200526 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300527 struct drm_display_mode *adjusted_mode)
528{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300529 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
530 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
531 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
532 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
533 u32 val = I915_READ(reg);
534
Daniel Vetterafba0182012-06-12 16:36:45 +0200535 assert_hdmi_port_disabled(intel_hdmi);
536
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300537 /* See the big comment in g4x_set_infoframes() */
538 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
539
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200540 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300541 if (!(val & VIDEO_DIP_ENABLE))
542 return;
543 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI);
544 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300545 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300546 return;
547 }
548
Paulo Zanoni822974a2012-05-28 16:42:51 -0300549 /* Set both together, unset both together: see the spec. */
550 val |= VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300551 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
552 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300553
554 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300555 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300556
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300557 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
558 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100559 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300560}
561
562static void vlv_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200563 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300564 struct drm_display_mode *adjusted_mode)
565{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300566 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700567 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300568 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
569 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
570 u32 reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
571 u32 val = I915_READ(reg);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700572 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300573
Daniel Vetterafba0182012-06-12 16:36:45 +0200574 assert_hdmi_port_disabled(intel_hdmi);
575
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300576 /* See the big comment in g4x_set_infoframes() */
577 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
578
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200579 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300580 if (!(val & VIDEO_DIP_ENABLE))
581 return;
582 val &= ~VIDEO_DIP_ENABLE;
583 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300584 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300585 return;
586 }
587
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700588 if (port != (val & VIDEO_DIP_PORT_MASK)) {
589 if (val & VIDEO_DIP_ENABLE) {
590 val &= ~VIDEO_DIP_ENABLE;
591 I915_WRITE(reg, val);
592 POSTING_READ(reg);
593 }
594 val &= ~VIDEO_DIP_PORT_MASK;
595 val |= port;
596 }
597
Paulo Zanoni822974a2012-05-28 16:42:51 -0300598 val |= VIDEO_DIP_ENABLE;
Jesse Barnes4d47dfb2014-04-02 10:08:52 -0700599 val &= ~(VIDEO_DIP_ENABLE_AVI | VIDEO_DIP_ENABLE_VENDOR |
600 VIDEO_DIP_ENABLE_GAMUT | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300601
602 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300603 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300604
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300605 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
606 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100607 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300608}
609
610static void hsw_set_infoframes(struct drm_encoder *encoder,
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200611 bool enable,
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300612 struct drm_display_mode *adjusted_mode)
613{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300614 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
615 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
616 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Daniel Vetter3b117c82013-04-17 20:15:07 +0200617 u32 reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config.cpu_transcoder);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300618 u32 val = I915_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300619
Daniel Vetterafba0182012-06-12 16:36:45 +0200620 assert_hdmi_port_disabled(intel_hdmi);
621
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200622 if (!enable) {
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300623 I915_WRITE(reg, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300624 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300625 return;
626 }
627
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300628 val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_GCP_HSW |
629 VIDEO_DIP_ENABLE_VS_HSW | VIDEO_DIP_ENABLE_GMP_HSW);
630
631 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300632 POSTING_READ(reg);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300633
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300634 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
635 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100636 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300637}
638
Daniel Vetter4cde8a22014-04-24 23:54:56 +0200639static void intel_hdmi_prepare(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800640{
Daniel Vetterc59423a2013-07-21 21:37:04 +0200641 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800642 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc59423a2013-07-21 21:37:04 +0200643 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
644 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
645 struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300646 u32 hdmi_val;
Eric Anholt7d573822009-01-02 13:33:00 -0800647
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300648 hdmi_val = SDVO_ENCODING_HDMI;
Ville Syrjälä2af2c492013-06-25 14:16:34 +0300649 if (!HAS_PCH_SPLIT(dev))
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300650 hdmi_val |= intel_hdmi->color_range;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400651 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300652 hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400653 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300654 hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800655
Daniel Vetterc59423a2013-07-21 21:37:04 +0200656 if (crtc->config.pipe_bpp > 24)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300657 hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700658 else
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300659 hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700660
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200661 if (crtc->config.has_hdmi_sink)
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300662 hdmi_val |= HDMI_MODE_SELECT_HDMI;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800663
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200664 if (crtc->config.has_audio) {
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200665 WARN_ON(!crtc->config.has_hdmi_sink);
Wu Fengguange0dac652011-09-05 14:25:34 +0800666 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
Daniel Vetterc59423a2013-07-21 21:37:04 +0200667 pipe_name(crtc->pipe));
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300668 hdmi_val |= SDVO_AUDIO_ENABLE;
Jani Nikula69bfe1a2014-10-27 16:26:50 +0200669 intel_audio_codec_enable(encoder);
David Härdeman3c17fe42010-09-24 21:44:32 +0200670 }
Eric Anholt7d573822009-01-02 13:33:00 -0800671
Jesse Barnes75770562011-10-12 09:01:58 -0700672 if (HAS_PCH_CPT(dev))
Daniel Vetterc59423a2013-07-21 21:37:04 +0200673 hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
Chon Ming Lee44f37d12014-04-09 13:28:21 +0300674 else if (IS_CHERRYVIEW(dev))
675 hdmi_val |= SDVO_PIPE_SEL_CHV(crtc->pipe);
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300676 else
Daniel Vetterc59423a2013-07-21 21:37:04 +0200677 hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
Eric Anholt7d573822009-01-02 13:33:00 -0800678
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300679 I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
680 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800681}
682
Daniel Vetter85234cd2012-07-02 13:27:29 +0200683static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
684 enum pipe *pipe)
Eric Anholt7d573822009-01-02 13:33:00 -0800685{
Daniel Vetter85234cd2012-07-02 13:27:29 +0200686 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800687 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200688 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Imre Deak6d129be2014-03-05 16:20:54 +0200689 enum intel_display_power_domain power_domain;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200690 u32 tmp;
691
Imre Deak6d129be2014-03-05 16:20:54 +0200692 power_domain = intel_display_port_power_domain(encoder);
Daniel Vetterf458ebb2014-09-30 10:56:39 +0200693 if (!intel_display_power_is_enabled(dev_priv, power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +0200694 return false;
695
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300696 tmp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200697
698 if (!(tmp & SDVO_ENABLE))
699 return false;
700
701 if (HAS_PCH_CPT(dev))
702 *pipe = PORT_TO_PIPE_CPT(tmp);
Ville Syrjälä71485e02014-04-09 13:28:55 +0300703 else if (IS_CHERRYVIEW(dev))
704 *pipe = SDVO_PORT_TO_PIPE_CHV(tmp);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200705 else
706 *pipe = PORT_TO_PIPE(tmp);
707
708 return true;
709}
710
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700711static void intel_hdmi_get_config(struct intel_encoder *encoder,
712 struct intel_crtc_config *pipe_config)
713{
714 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300715 struct drm_device *dev = encoder->base.dev;
716 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700717 u32 tmp, flags = 0;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300718 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700719
720 tmp = I915_READ(intel_hdmi->hdmi_reg);
721
722 if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
723 flags |= DRM_MODE_FLAG_PHSYNC;
724 else
725 flags |= DRM_MODE_FLAG_NHSYNC;
726
727 if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
728 flags |= DRM_MODE_FLAG_PVSYNC;
729 else
730 flags |= DRM_MODE_FLAG_NVSYNC;
731
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200732 if (tmp & HDMI_MODE_SELECT_HDMI)
733 pipe_config->has_hdmi_sink = true;
734
Jani Nikulac84db772014-09-17 15:34:58 +0300735 if (tmp & SDVO_AUDIO_ENABLE)
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200736 pipe_config->has_audio = true;
737
Ville Syrjälä8c875fc2014-09-12 15:46:29 +0300738 if (!HAS_PCH_SPLIT(dev) &&
739 tmp & HDMI_COLOR_RANGE_16_235)
740 pipe_config->limited_color_range = true;
741
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700742 pipe_config->adjusted_mode.flags |= flags;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300743
744 if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
745 dotclock = pipe_config->port_clock * 2 / 3;
746 else
747 dotclock = pipe_config->port_clock;
748
749 if (HAS_PCH_SPLIT(dev_priv->dev))
750 ironlake_check_encoder_dotclock(pipe_config, dotclock);
751
Damien Lespiau241bfc32013-09-25 16:45:37 +0100752 pipe_config->adjusted_mode.crtc_clock = dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700753}
754
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200755static void intel_enable_hdmi(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800756{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200757 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800758 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300759 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200760 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Eric Anholt7d573822009-01-02 13:33:00 -0800761 u32 temp;
Wu Fengguang2deed762011-12-09 20:42:20 +0800762 u32 enable_bits = SDVO_ENABLE;
763
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200764 if (intel_crtc->config.has_audio)
Wu Fengguang2deed762011-12-09 20:42:20 +0800765 enable_bits |= SDVO_AUDIO_ENABLE;
Eric Anholt7d573822009-01-02 13:33:00 -0800766
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300767 temp = I915_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000768
Daniel Vetter7a87c282012-06-05 11:03:39 +0200769 /* HW workaround for IBX, we need to move the port to transcoder A
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300770 * before disabling it, so restore the transcoder select bit here. */
771 if (HAS_PCH_IBX(dev))
772 enable_bits |= SDVO_PIPE_SEL(intel_crtc->pipe);
Daniel Vetter7a87c282012-06-05 11:03:39 +0200773
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200774 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
775 * we do this anyway which shows more stable in testing.
776 */
777 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300778 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
779 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200780 }
Daniel Vetter7a87c282012-06-05 11:03:39 +0200781
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200782 temp |= enable_bits;
783
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300784 I915_WRITE(intel_hdmi->hdmi_reg, temp);
785 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200786
787 /* HW workaround, need to write this twice for issue that may result
788 * in first write getting masked.
789 */
790 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300791 I915_WRITE(intel_hdmi->hdmi_reg, temp);
792 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200793 }
Jani Nikulab76cf762013-07-30 12:20:31 +0300794}
Jesse Barnes89b667f2013-04-18 14:51:36 -0700795
Jani Nikulab76cf762013-07-30 12:20:31 +0300796static void vlv_enable_hdmi(struct intel_encoder *encoder)
797{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200798}
799
800static void intel_disable_hdmi(struct intel_encoder *encoder)
801{
802 struct drm_device *dev = encoder->base.dev;
803 struct drm_i915_private *dev_priv = dev->dev_private;
804 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
805 u32 temp;
Wang Xingchao3cce5742012-09-13 11:19:00 +0800806 u32 enable_bits = SDVO_ENABLE | SDVO_AUDIO_ENABLE;
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200807
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300808 temp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200809
810 /* HW workaround for IBX, we need to move the port to transcoder A
811 * before disabling it. */
812 if (HAS_PCH_IBX(dev)) {
813 struct drm_crtc *crtc = encoder->base.crtc;
814 int pipe = crtc ? to_intel_crtc(crtc)->pipe : -1;
815
816 if (temp & SDVO_PIPE_B_SELECT) {
817 temp &= ~SDVO_PIPE_B_SELECT;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300818 I915_WRITE(intel_hdmi->hdmi_reg, temp);
819 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200820
821 /* Again we need to write this twice. */
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300822 I915_WRITE(intel_hdmi->hdmi_reg, temp);
823 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200824
825 /* Transcoder selection bits only update
826 * effectively on vblank. */
827 if (crtc)
828 intel_wait_for_vblank(dev, pipe);
829 else
830 msleep(50);
Daniel Vetter7a87c282012-06-05 11:03:39 +0200831 }
832 }
833
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000834 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
835 * we do this anyway which shows more stable in testing.
836 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800837 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300838 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
839 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800840 }
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000841
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200842 temp &= ~enable_bits;
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000843
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300844 I915_WRITE(intel_hdmi->hdmi_reg, temp);
845 POSTING_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000846
847 /* HW workaround, need to write this twice for issue that may result
848 * in first write getting masked.
849 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800850 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300851 I915_WRITE(intel_hdmi->hdmi_reg, temp);
852 POSTING_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000853 }
Eric Anholt7d573822009-01-02 13:33:00 -0800854}
855
Ville Syrjälä40478452014-03-27 11:08:45 +0200856static int hdmi_portclock_limit(struct intel_hdmi *hdmi, bool respect_dvi_limit)
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200857{
858 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
859
Ville Syrjälä40478452014-03-27 11:08:45 +0200860 if ((respect_dvi_limit && !hdmi->has_hdmi_sink) || IS_G4X(dev))
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200861 return 165000;
Damien Lespiaue3c33572013-11-02 21:07:51 -0700862 else if (IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8)
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200863 return 300000;
864 else
865 return 225000;
866}
867
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000868static enum drm_mode_status
869intel_hdmi_mode_valid(struct drm_connector *connector,
870 struct drm_display_mode *mode)
Eric Anholt7d573822009-01-02 13:33:00 -0800871{
Clint Taylor697c4072014-09-02 17:03:36 -0700872 int clock = mode->clock;
873
874 if (mode->flags & DRM_MODE_FLAG_DBLCLK)
875 clock *= 2;
876
877 if (clock > hdmi_portclock_limit(intel_attached_hdmi(connector),
878 true))
Eric Anholt7d573822009-01-02 13:33:00 -0800879 return MODE_CLOCK_HIGH;
Clint Taylor697c4072014-09-02 17:03:36 -0700880 if (clock < 20000)
Nicolas Kaiser5cbba412011-05-30 12:48:26 +0200881 return MODE_CLOCK_LOW;
Eric Anholt7d573822009-01-02 13:33:00 -0800882
883 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
884 return MODE_NO_DBLESCAN;
885
886 return MODE_OK;
887}
888
Ville Syrjälä71800632014-03-03 16:15:29 +0200889static bool hdmi_12bpc_possible(struct intel_crtc *crtc)
890{
891 struct drm_device *dev = crtc->base.dev;
892 struct intel_encoder *encoder;
893 int count = 0, count_hdmi = 0;
894
Sonika Jindalf227ae92014-07-21 15:23:45 +0530895 if (HAS_GMCH_DISPLAY(dev))
Ville Syrjälä71800632014-03-03 16:15:29 +0200896 return false;
897
Damien Lespiaub2784e12014-08-05 11:29:37 +0100898 for_each_intel_encoder(dev, encoder) {
Ville Syrjälä71800632014-03-03 16:15:29 +0200899 if (encoder->new_crtc != crtc)
900 continue;
901
902 count_hdmi += encoder->type == INTEL_OUTPUT_HDMI;
903 count++;
904 }
905
906 /*
907 * HDMI 12bpc affects the clocks, so it's only possible
908 * when not cloning with other encoder types.
909 */
910 return count_hdmi > 0 && count_hdmi == count;
911}
912
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100913bool intel_hdmi_compute_config(struct intel_encoder *encoder,
914 struct intel_crtc_config *pipe_config)
Eric Anholt7d573822009-01-02 13:33:00 -0800915{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100916 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
917 struct drm_device *dev = encoder->base.dev;
918 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100919 int clock_12bpc = pipe_config->adjusted_mode.crtc_clock * 3 / 2;
Ville Syrjälä40478452014-03-27 11:08:45 +0200920 int portclock_limit = hdmi_portclock_limit(intel_hdmi, false);
Daniel Vettere29c22c2013-02-21 00:00:16 +0100921 int desired_bpp;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200922
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200923 pipe_config->has_hdmi_sink = intel_hdmi->has_hdmi_sink;
924
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200925 if (intel_hdmi->color_range_auto) {
926 /* See CEA-861-E - 5.1 Default Encoding Parameters */
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200927 if (pipe_config->has_hdmi_sink &&
Thierry Reding18316c82012-12-20 15:41:44 +0100928 drm_match_cea_mode(adjusted_mode) > 1)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300929 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200930 else
931 intel_hdmi->color_range = 0;
932 }
933
Clint Taylor697c4072014-09-02 17:03:36 -0700934 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK) {
935 pipe_config->pixel_multiplier = 2;
936 }
937
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200938 if (intel_hdmi->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +0100939 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200940
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100941 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
942 pipe_config->has_pch_encoder = true;
943
Daniel Vetter9ed109a2014-04-24 23:54:52 +0200944 if (pipe_config->has_hdmi_sink && intel_hdmi->has_audio)
945 pipe_config->has_audio = true;
946
Daniel Vetter4e53c2e2013-03-27 00:44:58 +0100947 /*
948 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
949 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
Daniel Vetter325b9d02013-04-19 11:24:33 +0200950 * outputs. We also need to check that the higher clock still fits
951 * within limits.
Daniel Vetter4e53c2e2013-03-27 00:44:58 +0100952 */
Daniel Vetter6897b4b2014-04-24 23:54:47 +0200953 if (pipe_config->pipe_bpp > 8*3 && pipe_config->has_hdmi_sink &&
Ville Syrjälä71800632014-03-03 16:15:29 +0200954 clock_12bpc <= portclock_limit &&
955 hdmi_12bpc_possible(encoder->new_crtc)) {
Daniel Vettere29c22c2013-02-21 00:00:16 +0100956 DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
957 desired_bpp = 12*3;
Daniel Vetter325b9d02013-04-19 11:24:33 +0200958
959 /* Need to adjust the port link by 1.5x for 12bpc. */
Daniel Vetterff9a6752013-06-01 17:16:21 +0200960 pipe_config->port_clock = clock_12bpc;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +0100961 } else {
Daniel Vettere29c22c2013-02-21 00:00:16 +0100962 DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
963 desired_bpp = 8*3;
964 }
965
966 if (!pipe_config->bw_constrained) {
967 DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
968 pipe_config->pipe_bpp = desired_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +0100969 }
970
Damien Lespiau241bfc32013-09-25 16:45:37 +0100971 if (adjusted_mode->crtc_clock > portclock_limit) {
Daniel Vetter325b9d02013-04-19 11:24:33 +0200972 DRM_DEBUG_KMS("too high HDMI clock, rejecting mode\n");
973 return false;
974 }
975
Eric Anholt7d573822009-01-02 13:33:00 -0800976 return true;
977}
978
Chris Wilson953ece6972014-09-02 20:04:01 +0100979static void
980intel_hdmi_unset_edid(struct drm_connector *connector)
Ma Ling9dff6af2009-04-02 13:13:26 +0800981{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100982 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Imre Deak671dedd2014-03-05 16:20:53 +0200983
Chris Wilsonea5b2132010-08-04 13:50:23 +0100984 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800985 intel_hdmi->has_audio = false;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200986 intel_hdmi->rgb_quant_range_selectable = false;
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800987
Chris Wilson953ece6972014-09-02 20:04:01 +0100988 kfree(to_intel_connector(connector)->detect_edid);
989 to_intel_connector(connector)->detect_edid = NULL;
Ma Ling9dff6af2009-04-02 13:13:26 +0800990}
991
Chris Wilson953ece6972014-09-02 20:04:01 +0100992static bool
993intel_hdmi_set_edid(struct drm_connector *connector)
Eric Anholt7d573822009-01-02 13:33:00 -0800994{
Chris Wilson953ece6972014-09-02 20:04:01 +0100995 struct drm_i915_private *dev_priv = to_i915(connector->dev);
996 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
997 struct intel_encoder *intel_encoder =
998 &hdmi_to_dig_port(intel_hdmi)->base;
Imre Deak671dedd2014-03-05 16:20:53 +0200999 enum intel_display_power_domain power_domain;
Chris Wilson953ece6972014-09-02 20:04:01 +01001000 struct edid *edid;
1001 bool connected = false;
Eric Anholt7d573822009-01-02 13:33:00 -08001002
Imre Deak671dedd2014-03-05 16:20:53 +02001003 power_domain = intel_display_port_power_domain(intel_encoder);
1004 intel_display_power_get(dev_priv, power_domain);
1005
Chris Wilson953ece6972014-09-02 20:04:01 +01001006 edid = drm_get_edid(connector,
1007 intel_gmbus_get_adapter(dev_priv,
1008 intel_hdmi->ddc_bus));
Imre Deak671dedd2014-03-05 16:20:53 +02001009
1010 intel_display_power_put(dev_priv, power_domain);
1011
Chris Wilson953ece6972014-09-02 20:04:01 +01001012 to_intel_connector(connector)->detect_edid = edid;
1013 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL) {
1014 intel_hdmi->rgb_quant_range_selectable =
1015 drm_rgb_quant_range_selectable(edid);
1016
1017 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
1018 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
1019 intel_hdmi->has_audio =
1020 intel_hdmi->force_audio == HDMI_AUDIO_ON;
1021
1022 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
1023 intel_hdmi->has_hdmi_sink =
1024 drm_detect_hdmi_monitor(edid);
1025
1026 connected = true;
1027 }
1028
1029 return connected;
1030}
1031
1032static enum drm_connector_status
1033intel_hdmi_detect(struct drm_connector *connector, bool force)
1034{
1035 enum drm_connector_status status;
1036
1037 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1038 connector->base.id, connector->name);
1039
1040 intel_hdmi_unset_edid(connector);
1041
1042 if (intel_hdmi_set_edid(connector)) {
1043 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1044
1045 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1046 status = connector_status_connected;
1047 } else
1048 status = connector_status_disconnected;
1049
1050 return status;
1051}
1052
1053static void
1054intel_hdmi_force(struct drm_connector *connector)
1055{
1056 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
1057
1058 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
1059 connector->base.id, connector->name);
1060
1061 intel_hdmi_unset_edid(connector);
1062
1063 if (connector->status != connector_status_connected)
1064 return;
1065
1066 intel_hdmi_set_edid(connector);
1067 hdmi_to_dig_port(intel_hdmi)->base.type = INTEL_OUTPUT_HDMI;
1068}
1069
1070static int intel_hdmi_get_modes(struct drm_connector *connector)
1071{
1072 struct edid *edid;
1073
1074 edid = to_intel_connector(connector)->detect_edid;
1075 if (edid == NULL)
1076 return 0;
1077
1078 return intel_connector_update_modes(connector, edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001079}
1080
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001081static bool
1082intel_hdmi_detect_audio(struct drm_connector *connector)
1083{
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001084 bool has_audio = false;
Chris Wilson953ece6972014-09-02 20:04:01 +01001085 struct edid *edid;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001086
Chris Wilson953ece6972014-09-02 20:04:01 +01001087 edid = to_intel_connector(connector)->detect_edid;
1088 if (edid && edid->input & DRM_EDID_INPUT_DIGITAL)
1089 has_audio = drm_detect_monitor_audio(edid);
Imre Deak671dedd2014-03-05 16:20:53 +02001090
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001091 return has_audio;
1092}
1093
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001094static int
1095intel_hdmi_set_property(struct drm_connector *connector,
Paulo Zanonied517fb2012-05-14 17:12:50 -03001096 struct drm_property *property,
1097 uint64_t val)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001098{
1099 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001100 struct intel_digital_port *intel_dig_port =
1101 hdmi_to_dig_port(intel_hdmi);
Chris Wilsone953fd72011-02-21 22:23:52 +00001102 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001103 int ret;
1104
Rob Clark662595d2012-10-11 20:36:04 -05001105 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001106 if (ret)
1107 return ret;
1108
Chris Wilson3f43c482011-05-12 22:17:24 +01001109 if (property == dev_priv->force_audio_property) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001110 enum hdmi_force_audio i = val;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001111 bool has_audio;
1112
1113 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001114 return 0;
1115
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001116 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001117
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001118 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001119 has_audio = intel_hdmi_detect_audio(connector);
1120 else
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001121 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001122
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001123 if (i == HDMI_AUDIO_OFF_DVI)
1124 intel_hdmi->has_hdmi_sink = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001125
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001126 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001127 goto done;
1128 }
1129
Chris Wilsone953fd72011-02-21 22:23:52 +00001130 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02001131 bool old_auto = intel_hdmi->color_range_auto;
1132 uint32_t old_range = intel_hdmi->color_range;
1133
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001134 switch (val) {
1135 case INTEL_BROADCAST_RGB_AUTO:
1136 intel_hdmi->color_range_auto = true;
1137 break;
1138 case INTEL_BROADCAST_RGB_FULL:
1139 intel_hdmi->color_range_auto = false;
1140 intel_hdmi->color_range = 0;
1141 break;
1142 case INTEL_BROADCAST_RGB_LIMITED:
1143 intel_hdmi->color_range_auto = false;
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -03001144 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001145 break;
1146 default:
1147 return -EINVAL;
1148 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02001149
1150 if (old_auto == intel_hdmi->color_range_auto &&
1151 old_range == intel_hdmi->color_range)
1152 return 0;
1153
Chris Wilsone953fd72011-02-21 22:23:52 +00001154 goto done;
1155 }
1156
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301157 if (property == connector->dev->mode_config.aspect_ratio_property) {
1158 switch (val) {
1159 case DRM_MODE_PICTURE_ASPECT_NONE:
1160 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
1161 break;
1162 case DRM_MODE_PICTURE_ASPECT_4_3:
1163 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_4_3;
1164 break;
1165 case DRM_MODE_PICTURE_ASPECT_16_9:
1166 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_16_9;
1167 break;
1168 default:
1169 return -EINVAL;
1170 }
1171 goto done;
1172 }
1173
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001174 return -EINVAL;
1175
1176done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00001177 if (intel_dig_port->base.base.crtc)
1178 intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001179
1180 return 0;
1181}
1182
Jesse Barnes13732ba2014-04-05 11:51:35 -07001183static void intel_hdmi_pre_enable(struct intel_encoder *encoder)
1184{
1185 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1186 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
1187 struct drm_display_mode *adjusted_mode =
1188 &intel_crtc->config.adjusted_mode;
1189
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001190 intel_hdmi_prepare(encoder);
1191
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001192 intel_hdmi->set_infoframes(&encoder->base,
1193 intel_crtc->config.has_hdmi_sink,
1194 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001195}
1196
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001197static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001198{
1199 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001200 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001201 struct drm_device *dev = encoder->base.dev;
1202 struct drm_i915_private *dev_priv = dev->dev_private;
1203 struct intel_crtc *intel_crtc =
1204 to_intel_crtc(encoder->base.crtc);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001205 struct drm_display_mode *adjusted_mode =
1206 &intel_crtc->config.adjusted_mode;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001207 enum dpio_channel port = vlv_dport_to_channel(dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001208 int pipe = intel_crtc->pipe;
1209 u32 val;
1210
Jesse Barnes89b667f2013-04-18 14:51:36 -07001211 /* Enable clock channels for this port */
Chris Wilson0980a602013-07-26 19:57:35 +01001212 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001213 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001214 val = 0;
1215 if (pipe)
1216 val |= (1<<21);
1217 else
1218 val &= ~(1<<21);
1219 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001220 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001221
1222 /* HDMI 1.0V-2dB */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001223 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0);
1224 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), 0x2b245f5f);
1225 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port), 0x5578b83a);
1226 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0c782040);
1227 vlv_dpio_write(dev_priv, pipe, VLV_TX3_DW4(port), 0x2b247878);
1228 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
1229 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1230 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001231
1232 /* Program lane clock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001233 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
1234 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Chris Wilson0980a602013-07-26 19:57:35 +01001235 mutex_unlock(&dev_priv->dpio_lock);
Jani Nikulab76cf762013-07-30 12:20:31 +03001236
Daniel Vetter6897b4b2014-04-24 23:54:47 +02001237 intel_hdmi->set_infoframes(&encoder->base,
1238 intel_crtc->config.has_hdmi_sink,
1239 adjusted_mode);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001240
Jani Nikulab76cf762013-07-30 12:20:31 +03001241 intel_enable_hdmi(encoder);
1242
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001243 vlv_wait_port_ready(dev_priv, dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001244}
1245
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001246static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001247{
1248 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1249 struct drm_device *dev = encoder->base.dev;
1250 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001251 struct intel_crtc *intel_crtc =
1252 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001253 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001254 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001255
Daniel Vetter4cde8a22014-04-24 23:54:56 +02001256 intel_hdmi_prepare(encoder);
1257
Jesse Barnes89b667f2013-04-18 14:51:36 -07001258 /* Program Tx lane resets to default */
Chris Wilson0980a602013-07-26 19:57:35 +01001259 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001260 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001261 DPIO_PCS_TX_LANE2_RESET |
1262 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001263 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001264 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1265 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1266 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1267 DPIO_PCS_CLK_SOFT_RESET);
1268
1269 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001270 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
1271 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
1272 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001273
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001274 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1275 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Chris Wilson0980a602013-07-26 19:57:35 +01001276 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001277}
1278
Ville Syrjälä9197c882014-04-09 13:29:05 +03001279static void chv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
1280{
1281 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1282 struct drm_device *dev = encoder->base.dev;
1283 struct drm_i915_private *dev_priv = dev->dev_private;
1284 struct intel_crtc *intel_crtc =
1285 to_intel_crtc(encoder->base.crtc);
1286 enum dpio_channel ch = vlv_dport_to_channel(dport);
1287 enum pipe pipe = intel_crtc->pipe;
1288 u32 val;
1289
Ville Syrjälä625695f2014-06-28 02:04:02 +03001290 intel_hdmi_prepare(encoder);
1291
Ville Syrjälä9197c882014-04-09 13:29:05 +03001292 mutex_lock(&dev_priv->dpio_lock);
1293
Ville Syrjäläb9e5ac32014-05-27 16:30:18 +03001294 /* program left/right clock distribution */
1295 if (pipe != PIPE_B) {
1296 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW5_CH0);
1297 val &= ~(CHV_BUFLEFTENA1_MASK | CHV_BUFRIGHTENA1_MASK);
1298 if (ch == DPIO_CH0)
1299 val |= CHV_BUFLEFTENA1_FORCE;
1300 if (ch == DPIO_CH1)
1301 val |= CHV_BUFRIGHTENA1_FORCE;
1302 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW5_CH0, val);
1303 } else {
1304 val = vlv_dpio_read(dev_priv, pipe, _CHV_CMN_DW1_CH1);
1305 val &= ~(CHV_BUFLEFTENA2_MASK | CHV_BUFRIGHTENA2_MASK);
1306 if (ch == DPIO_CH0)
1307 val |= CHV_BUFLEFTENA2_FORCE;
1308 if (ch == DPIO_CH1)
1309 val |= CHV_BUFRIGHTENA2_FORCE;
1310 vlv_dpio_write(dev_priv, pipe, _CHV_CMN_DW1_CH1, val);
1311 }
1312
Ville Syrjälä9197c882014-04-09 13:29:05 +03001313 /* program clock channel usage */
1314 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(ch));
1315 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1316 if (pipe != PIPE_B)
1317 val &= ~CHV_PCS_USEDCLKCHANNEL;
1318 else
1319 val |= CHV_PCS_USEDCLKCHANNEL;
1320 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW8(ch), val);
1321
1322 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW8(ch));
1323 val |= CHV_PCS_USEDCLKCHANNEL_OVRRIDE;
1324 if (pipe != PIPE_B)
1325 val &= ~CHV_PCS_USEDCLKCHANNEL;
1326 else
1327 val |= CHV_PCS_USEDCLKCHANNEL;
1328 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW8(ch), val);
1329
1330 /*
1331 * This a a bit weird since generally CL
1332 * matches the pipe, but here we need to
1333 * pick the CL based on the port.
1334 */
1335 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW19(ch));
1336 if (pipe != PIPE_B)
1337 val &= ~CHV_CMN_USEDCLKCHANNEL;
1338 else
1339 val |= CHV_CMN_USEDCLKCHANNEL;
1340 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW19(ch), val);
1341
1342 mutex_unlock(&dev_priv->dpio_lock);
1343}
1344
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001345static void vlv_hdmi_post_disable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001346{
1347 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1348 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001349 struct intel_crtc *intel_crtc =
1350 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001351 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001352 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001353
1354 /* Reset lanes to avoid HDMI flicker (VLV w/a) */
1355 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001356 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), 0x00000000);
1357 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port), 0x00e00060);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001358 mutex_unlock(&dev_priv->dpio_lock);
1359}
1360
Ville Syrjälä580d3812014-04-09 13:29:00 +03001361static void chv_hdmi_post_disable(struct intel_encoder *encoder)
1362{
1363 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1364 struct drm_device *dev = encoder->base.dev;
1365 struct drm_i915_private *dev_priv = dev->dev_private;
1366 struct intel_crtc *intel_crtc =
1367 to_intel_crtc(encoder->base.crtc);
1368 enum dpio_channel ch = vlv_dport_to_channel(dport);
1369 enum pipe pipe = intel_crtc->pipe;
1370 u32 val;
1371
1372 mutex_lock(&dev_priv->dpio_lock);
1373
1374 /* Propagate soft reset to data lane reset */
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001375 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001376 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001377 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001378
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001379 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1380 val |= CHV_PCS_REQ_SOFTRESET_EN;
1381 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1382
1383 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä580d3812014-04-09 13:29:00 +03001384 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001385 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1386
1387 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1388 val &= ~(DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1389 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä580d3812014-04-09 13:29:00 +03001390
1391 mutex_unlock(&dev_priv->dpio_lock);
1392}
1393
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001394static void chv_hdmi_pre_enable(struct intel_encoder *encoder)
1395{
1396 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1397 struct drm_device *dev = encoder->base.dev;
1398 struct drm_i915_private *dev_priv = dev->dev_private;
1399 struct intel_crtc *intel_crtc =
1400 to_intel_crtc(encoder->base.crtc);
1401 enum dpio_channel ch = vlv_dport_to_channel(dport);
1402 int pipe = intel_crtc->pipe;
1403 int data, i;
1404 u32 val;
1405
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001406 mutex_lock(&dev_priv->dpio_lock);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001407
Ville Syrjälä570e2a72014-08-18 14:42:46 +03001408 /* allow hardware to manage TX FIFO reset source */
1409 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW11(ch));
1410 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1411 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW11(ch), val);
1412
1413 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW11(ch));
1414 val &= ~DPIO_LANEDESKEW_STRAP_OVRD;
1415 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW11(ch), val);
1416
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001417 /* Deassert soft data lane reset*/
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001418 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW1(ch));
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001419 val |= CHV_PCS_REQ_SOFTRESET_EN;
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001420 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW1(ch), val);
Ville Syrjäläd2152b22014-04-28 14:15:24 +03001421
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001422 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW1(ch));
1423 val |= CHV_PCS_REQ_SOFTRESET_EN;
1424 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW1(ch), val);
1425
1426 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW0(ch));
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001427 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
Ville Syrjälä97fd4d52014-04-09 13:29:02 +03001428 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW0(ch), val);
1429
1430 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW0(ch));
1431 val |= (DPIO_PCS_TX_LANE2_RESET | DPIO_PCS_TX_LANE1_RESET);
1432 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW0(ch), val);
Ville Syrjälä949c1d42014-04-09 13:28:58 +03001433
1434 /* Program Tx latency optimal setting */
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001435 for (i = 0; i < 4; i++) {
1436 /* Set the latency optimal bit */
1437 data = (i == 1) ? 0x0 : 0x6;
1438 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW11(ch, i),
1439 data << DPIO_FRC_LATENCY_SHFIT);
1440
1441 /* Set the upar bit */
1442 data = (i == 1) ? 0x0 : 0x1;
1443 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
1444 data << DPIO_UPAR_SHIFT);
1445 }
1446
1447 /* Data lane stagger programming */
1448 /* FIXME: Fix up value only after power analysis */
1449
1450 /* Clear calc init */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001451 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1452 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001453 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1454 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001455 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1456
1457 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1458 val &= ~(DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3);
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001459 val &= ~(DPIO_PCS_TX1DEEMP_MASK | DPIO_PCS_TX2DEEMP_MASK);
1460 val |= DPIO_PCS_TX1DEEMP_9P5 | DPIO_PCS_TX2DEEMP_9P5;
Ville Syrjälä1966e592014-04-09 13:29:04 +03001461 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001462
Ville Syrjäläa02ef3c2014-08-18 14:42:45 +03001463 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW9(ch));
1464 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1465 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1466 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW9(ch), val);
1467
1468 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW9(ch));
1469 val &= ~(DPIO_PCS_TX1MARGIN_MASK | DPIO_PCS_TX2MARGIN_MASK);
1470 val |= DPIO_PCS_TX1MARGIN_000 | DPIO_PCS_TX2MARGIN_000;
1471 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW9(ch), val);
1472
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001473 /* FIXME: Program the support xxx V-dB */
1474 /* Use 800mV-0dB */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001475 for (i = 0; i < 4; i++) {
1476 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW4(ch, i));
1477 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
1478 val |= 128 << DPIO_SWING_DEEMPH9P5_SHIFT;
1479 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW4(ch, i), val);
1480 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001481
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001482 for (i = 0; i < 4; i++) {
1483 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW2(ch, i));
Ville Syrjälä1fb44502014-06-28 02:04:03 +03001484 val &= ~DPIO_SWING_MARGIN000_MASK;
1485 val |= 102 << DPIO_SWING_MARGIN000_SHIFT;
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001486 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW2(ch, i), val);
1487 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001488
1489 /* Disable unique transition scale */
Ville Syrjäläf72df8d2014-04-09 13:29:03 +03001490 for (i = 0; i < 4; i++) {
1491 val = vlv_dpio_read(dev_priv, pipe, CHV_TX_DW3(ch, i));
1492 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
1493 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW3(ch, i), val);
1494 }
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001495
1496 /* Additional steps for 1200mV-0dB */
1497#if 0
1498 val = vlv_dpio_read(dev_priv, pipe, VLV_TX_DW3(ch));
1499 if (ch)
1500 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH1;
1501 else
1502 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH0;
1503 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(ch), val);
1504
1505 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(ch),
1506 vlv_dpio_read(dev_priv, pipe, VLV_TX_DW2(ch)) |
1507 (0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT));
1508#endif
1509 /* Start swing calculation */
Ville Syrjälä1966e592014-04-09 13:29:04 +03001510 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW10(ch));
1511 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1512 vlv_dpio_write(dev_priv, pipe, VLV_PCS01_DW10(ch), val);
1513
1514 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS23_DW10(ch));
1515 val |= DPIO_PCS_SWING_CALC_TX0_TX2 | DPIO_PCS_SWING_CALC_TX1_TX3;
1516 vlv_dpio_write(dev_priv, pipe, VLV_PCS23_DW10(ch), val);
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001517
1518 /* LRC Bypass */
1519 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
1520 val |= DPIO_LRC_BYPASS;
1521 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
1522
1523 mutex_unlock(&dev_priv->dpio_lock);
1524
1525 intel_enable_hdmi(encoder);
1526
1527 vlv_wait_port_ready(dev_priv, dport);
1528}
1529
Eric Anholt7d573822009-01-02 13:33:00 -08001530static void intel_hdmi_destroy(struct drm_connector *connector)
1531{
Chris Wilson10e972d2014-09-04 21:43:45 +01001532 kfree(to_intel_connector(connector)->detect_edid);
Eric Anholt7d573822009-01-02 13:33:00 -08001533 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +08001534 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001535}
1536
Eric Anholt7d573822009-01-02 13:33:00 -08001537static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001538 .dpms = intel_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -08001539 .detect = intel_hdmi_detect,
Chris Wilson953ece6972014-09-02 20:04:01 +01001540 .force = intel_hdmi_force,
Eric Anholt7d573822009-01-02 13:33:00 -08001541 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001542 .set_property = intel_hdmi_set_property,
Eric Anholt7d573822009-01-02 13:33:00 -08001543 .destroy = intel_hdmi_destroy,
1544};
1545
1546static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
1547 .get_modes = intel_hdmi_get_modes,
1548 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01001549 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -08001550};
1551
Eric Anholt7d573822009-01-02 13:33:00 -08001552static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001553 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -08001554};
1555
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001556static void
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301557intel_attach_aspect_ratio_property(struct drm_connector *connector)
1558{
1559 if (!drm_mode_create_aspect_ratio_property(connector->dev))
1560 drm_object_attach_property(&connector->base,
1561 connector->dev->mode_config.aspect_ratio_property,
1562 DRM_MODE_PICTURE_ASPECT_NONE);
1563}
1564
1565static void
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001566intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
1567{
Chris Wilson3f43c482011-05-12 22:17:24 +01001568 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00001569 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001570 intel_hdmi->color_range_auto = true;
Vandana Kannan94a11dd2014-06-11 11:06:01 +05301571 intel_attach_aspect_ratio_property(connector);
1572 intel_hdmi->aspect_ratio = HDMI_PICTURE_ASPECT_NONE;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001573}
1574
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001575void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
1576 struct intel_connector *intel_connector)
Eric Anholt7d573822009-01-02 13:33:00 -08001577{
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001578 struct drm_connector *connector = &intel_connector->base;
1579 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
1580 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1581 struct drm_device *dev = intel_encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -08001582 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001583 enum port port = intel_dig_port->port;
Eric Anholt7d573822009-01-02 13:33:00 -08001584
Eric Anholt7d573822009-01-02 13:33:00 -08001585 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -04001586 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -08001587 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
1588
Peter Rossc3febcc2012-01-28 14:49:26 +01001589 connector->interlace_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001590 connector->doublescan_allowed = 0;
Damien Lespiau573e74a2013-09-25 16:45:40 +01001591 connector->stereo_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001592
Daniel Vetter08d644a2012-07-12 20:19:59 +02001593 switch (port) {
1594 case PORT_B:
Chris Wilsonf899fc62010-07-20 15:44:45 -07001595 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Egbert Eich1d843f92013-02-25 12:06:49 -05001596 intel_encoder->hpd_pin = HPD_PORT_B;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001597 break;
1598 case PORT_C:
Chris Wilsonf899fc62010-07-20 15:44:45 -07001599 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Egbert Eich1d843f92013-02-25 12:06:49 -05001600 intel_encoder->hpd_pin = HPD_PORT_C;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001601 break;
1602 case PORT_D:
Ville Syrjäläc0c35322014-04-09 13:28:52 +03001603 if (IS_CHERRYVIEW(dev))
1604 intel_hdmi->ddc_bus = GMBUS_PORT_DPD_CHV;
1605 else
1606 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
Egbert Eich1d843f92013-02-25 12:06:49 -05001607 intel_encoder->hpd_pin = HPD_PORT_D;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001608 break;
1609 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05001610 intel_encoder->hpd_pin = HPD_PORT_A;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001611 /* Internal port only for eDP. */
1612 default:
Eugeni Dodonov6e4c1672012-05-09 15:37:13 -03001613 BUG();
Ma Lingf8aed702009-08-24 13:50:24 +08001614 }
Eric Anholt7d573822009-01-02 13:33:00 -08001615
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001616 if (IS_VALLEYVIEW(dev)) {
Shobhit Kumar90b107c2012-03-28 13:39:32 -07001617 intel_hdmi->write_infoframe = vlv_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001618 intel_hdmi->set_infoframes = vlv_set_infoframes;
Sonika Jindalb98856a2014-07-22 11:13:46 +05301619 } else if (IS_G4X(dev)) {
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001620 intel_hdmi->write_infoframe = g4x_write_infoframe;
1621 intel_hdmi->set_infoframes = g4x_set_infoframes;
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001622 } else if (HAS_DDI(dev)) {
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -03001623 intel_hdmi->write_infoframe = hsw_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001624 intel_hdmi->set_infoframes = hsw_set_infoframes;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001625 } else if (HAS_PCH_IBX(dev)) {
1626 intel_hdmi->write_infoframe = ibx_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001627 intel_hdmi->set_infoframes = ibx_set_infoframes;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001628 } else {
1629 intel_hdmi->write_infoframe = cpt_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001630 intel_hdmi->set_infoframes = cpt_set_infoframes;
Jesse Barnes64a8fc02011-09-22 11:16:00 +05301631 }
Jesse Barnes45187ac2011-08-03 09:22:55 -07001632
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001633 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02001634 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
1635 else
1636 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak4932e2c2014-02-11 17:12:48 +02001637 intel_connector->unregister = intel_connector_unregister;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001638
1639 intel_hdmi_add_properties(intel_hdmi, connector);
1640
1641 intel_connector_attach_encoder(intel_connector, intel_encoder);
Thomas Wood34ea3d32014-05-29 16:57:41 +01001642 drm_connector_register(connector);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001643
1644 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
1645 * 0xd. Failure to do so will result in spurious interrupts being
1646 * generated on the port when a cable is not attached.
1647 */
1648 if (IS_G4X(dev) && !IS_GM45(dev)) {
1649 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
1650 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
1651 }
1652}
1653
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001654void intel_hdmi_init(struct drm_device *dev, int hdmi_reg, enum port port)
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001655{
1656 struct intel_digital_port *intel_dig_port;
1657 struct intel_encoder *intel_encoder;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001658 struct intel_connector *intel_connector;
1659
Daniel Vetterb14c5672013-09-19 12:18:32 +02001660 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001661 if (!intel_dig_port)
1662 return;
1663
Daniel Vetterb14c5672013-09-19 12:18:32 +02001664 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001665 if (!intel_connector) {
1666 kfree(intel_dig_port);
1667 return;
1668 }
1669
1670 intel_encoder = &intel_dig_port->base;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001671
1672 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
1673 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001674
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001675 intel_encoder->compute_config = intel_hdmi_compute_config;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001676 intel_encoder->disable = intel_disable_hdmi;
1677 intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001678 intel_encoder->get_config = intel_hdmi_get_config;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001679 if (IS_CHERRYVIEW(dev)) {
Ville Syrjälä9197c882014-04-09 13:29:05 +03001680 intel_encoder->pre_pll_enable = chv_hdmi_pre_pll_enable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001681 intel_encoder->pre_enable = chv_hdmi_pre_enable;
1682 intel_encoder->enable = vlv_enable_hdmi;
Ville Syrjälä580d3812014-04-09 13:29:00 +03001683 intel_encoder->post_disable = chv_hdmi_post_disable;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001684 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001685 intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
1686 intel_encoder->pre_enable = vlv_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001687 intel_encoder->enable = vlv_enable_hdmi;
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001688 intel_encoder->post_disable = vlv_hdmi_post_disable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001689 } else {
Jesse Barnes13732ba2014-04-05 11:51:35 -07001690 intel_encoder->pre_enable = intel_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001691 intel_encoder->enable = intel_enable_hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001692 }
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001693
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001694 intel_encoder->type = INTEL_OUTPUT_HDMI;
Ville Syrjälä882ec382014-04-28 14:07:43 +03001695 if (IS_CHERRYVIEW(dev)) {
1696 if (port == PORT_D)
1697 intel_encoder->crtc_mask = 1 << 2;
1698 else
1699 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
1700 } else {
1701 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
1702 }
Ville Syrjälä301ea742014-03-03 16:15:30 +02001703 intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
Ville Syrjäläc6f14952014-03-03 16:15:31 +02001704 /*
1705 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
1706 * to work on real hardware. And since g4x can send infoframes to
1707 * only one port anyway, nothing is lost by allowing it.
1708 */
1709 if (IS_G4X(dev))
1710 intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -08001711
Paulo Zanoni174edf12012-10-26 19:05:50 -02001712 intel_dig_port->port = port;
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001713 intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001714 intel_dig_port->dp.output_reg = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001715
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001716 intel_hdmi_init_connector(intel_dig_port, intel_connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001717}