blob: e422cfaebb03dd8f2d552ecba7e205d337780cb5 [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,
421 struct drm_display_mode *adjusted_mode)
422{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300423 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200424 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
425 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300426 u32 reg = VIDEO_DIP_CTL;
427 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200428 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300429
Daniel Vetterafba0182012-06-12 16:36:45 +0200430 assert_hdmi_port_disabled(intel_hdmi);
431
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300432 /* If the registers were not initialized yet, they might be zeroes,
433 * which means we're selecting the AVI DIP and we're setting its
434 * frequency to once. This seems to really confuse the HW and make
435 * things stop working (the register spec says the AVI always needs to
436 * be sent every VSync). So here we avoid writing to the register more
437 * than we need and also explicitly select the AVI DIP and explicitly
438 * set its frequency to every VSync. Avoiding to write it twice seems to
439 * be enough to solve the problem, but being defensive shouldn't hurt us
440 * either. */
441 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
442
443 if (!intel_hdmi->has_hdmi_sink) {
444 if (!(val & VIDEO_DIP_ENABLE))
445 return;
446 val &= ~VIDEO_DIP_ENABLE;
447 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300448 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300449 return;
450 }
451
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300452 if (port != (val & VIDEO_DIP_PORT_MASK)) {
453 if (val & VIDEO_DIP_ENABLE) {
454 val &= ~VIDEO_DIP_ENABLE;
455 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300456 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300457 }
458 val &= ~VIDEO_DIP_PORT_MASK;
459 val |= port;
460 }
461
Paulo Zanoni822974a2012-05-28 16:42:51 -0300462 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300463 val &= ~VIDEO_DIP_ENABLE_VENDOR;
Paulo Zanoni822974a2012-05-28 16:42:51 -0300464
Paulo Zanonif278d972012-05-28 16:42:50 -0300465 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300466 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300467
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300468 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
469 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100470 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300471}
472
473static void ibx_set_infoframes(struct drm_encoder *encoder,
474 struct drm_display_mode *adjusted_mode)
475{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300476 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
477 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
Ville Syrjälä69fde0a2013-01-24 15:29:26 +0200478 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
479 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300480 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
481 u32 val = I915_READ(reg);
Ville Syrjälä822cdc52014-01-23 23:15:34 +0200482 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300483
Daniel Vetterafba0182012-06-12 16:36:45 +0200484 assert_hdmi_port_disabled(intel_hdmi);
485
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300486 /* See the big comment in g4x_set_infoframes() */
487 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
488
489 if (!intel_hdmi->has_hdmi_sink) {
490 if (!(val & VIDEO_DIP_ENABLE))
491 return;
492 val &= ~VIDEO_DIP_ENABLE;
493 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300494 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300495 return;
496 }
497
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300498 if (port != (val & VIDEO_DIP_PORT_MASK)) {
499 if (val & VIDEO_DIP_ENABLE) {
500 val &= ~VIDEO_DIP_ENABLE;
501 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300502 POSTING_READ(reg);
Paulo Zanoni72b78c92012-05-28 16:42:54 -0300503 }
504 val &= ~VIDEO_DIP_PORT_MASK;
505 val |= port;
506 }
507
Paulo Zanoni822974a2012-05-28 16:42:51 -0300508 val |= VIDEO_DIP_ENABLE;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300509 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
510 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300511
Paulo Zanonif278d972012-05-28 16:42:50 -0300512 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300513 POSTING_READ(reg);
Paulo Zanonif278d972012-05-28 16:42:50 -0300514
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300515 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
516 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100517 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300518}
519
520static void cpt_set_infoframes(struct drm_encoder *encoder,
521 struct drm_display_mode *adjusted_mode)
522{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300523 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
524 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
525 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
526 u32 reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
527 u32 val = I915_READ(reg);
528
Daniel Vetterafba0182012-06-12 16:36:45 +0200529 assert_hdmi_port_disabled(intel_hdmi);
530
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300531 /* See the big comment in g4x_set_infoframes() */
532 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
533
534 if (!intel_hdmi->has_hdmi_sink) {
535 if (!(val & VIDEO_DIP_ENABLE))
536 return;
537 val &= ~(VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI);
538 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300539 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300540 return;
541 }
542
Paulo Zanoni822974a2012-05-28 16:42:51 -0300543 /* Set both together, unset both together: see the spec. */
544 val |= VIDEO_DIP_ENABLE | VIDEO_DIP_ENABLE_AVI;
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300545 val &= ~(VIDEO_DIP_ENABLE_VENDOR | VIDEO_DIP_ENABLE_GAMUT |
546 VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300547
548 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300549 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300550
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300551 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
552 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100553 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300554}
555
556static void vlv_set_infoframes(struct drm_encoder *encoder,
557 struct drm_display_mode *adjusted_mode)
558{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300559 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700560 struct intel_digital_port *intel_dig_port = enc_to_dig_port(encoder);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300561 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
562 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
563 u32 reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
564 u32 val = I915_READ(reg);
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700565 u32 port = VIDEO_DIP_PORT(intel_dig_port->port);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300566
Daniel Vetterafba0182012-06-12 16:36:45 +0200567 assert_hdmi_port_disabled(intel_hdmi);
568
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300569 /* See the big comment in g4x_set_infoframes() */
570 val |= VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC;
571
572 if (!intel_hdmi->has_hdmi_sink) {
573 if (!(val & VIDEO_DIP_ENABLE))
574 return;
575 val &= ~VIDEO_DIP_ENABLE;
576 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300577 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300578 return;
579 }
580
Jesse Barnes6a2b8022014-04-02 10:08:51 -0700581 if (port != (val & VIDEO_DIP_PORT_MASK)) {
582 if (val & VIDEO_DIP_ENABLE) {
583 val &= ~VIDEO_DIP_ENABLE;
584 I915_WRITE(reg, val);
585 POSTING_READ(reg);
586 }
587 val &= ~VIDEO_DIP_PORT_MASK;
588 val |= port;
589 }
590
Paulo Zanoni822974a2012-05-28 16:42:51 -0300591 val |= VIDEO_DIP_ENABLE;
Jesse Barnes4d47dfb2014-04-02 10:08:52 -0700592 val &= ~(VIDEO_DIP_ENABLE_AVI | VIDEO_DIP_ENABLE_VENDOR |
593 VIDEO_DIP_ENABLE_GAMUT | VIDEO_DIP_ENABLE_GCP);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300594
595 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300596 POSTING_READ(reg);
Paulo Zanoni822974a2012-05-28 16:42:51 -0300597
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300598 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
599 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100600 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300601}
602
603static void hsw_set_infoframes(struct drm_encoder *encoder,
604 struct drm_display_mode *adjusted_mode)
605{
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300606 struct drm_i915_private *dev_priv = encoder->dev->dev_private;
607 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
608 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Daniel Vetter3b117c82013-04-17 20:15:07 +0200609 u32 reg = HSW_TVIDEO_DIP_CTL(intel_crtc->config.cpu_transcoder);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300610 u32 val = I915_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300611
Daniel Vetterafba0182012-06-12 16:36:45 +0200612 assert_hdmi_port_disabled(intel_hdmi);
613
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300614 if (!intel_hdmi->has_hdmi_sink) {
615 I915_WRITE(reg, 0);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300616 POSTING_READ(reg);
Paulo Zanoni0c14c7f2012-05-28 16:42:49 -0300617 return;
618 }
619
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300620 val &= ~(VIDEO_DIP_ENABLE_VSC_HSW | VIDEO_DIP_ENABLE_GCP_HSW |
621 VIDEO_DIP_ENABLE_VS_HSW | VIDEO_DIP_ENABLE_GMP_HSW);
622
623 I915_WRITE(reg, val);
Paulo Zanoni9d9740f2012-05-28 16:43:00 -0300624 POSTING_READ(reg);
Paulo Zanoni0dd87d22012-05-28 16:42:53 -0300625
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300626 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
627 intel_hdmi_set_spd_infoframe(encoder);
Lespiau, Damienc8bb75a2013-08-19 16:59:04 +0100628 intel_hdmi_set_hdmi_infoframe(encoder, adjusted_mode);
Paulo Zanoni687f4d02012-05-28 16:42:48 -0300629}
630
Daniel Vetterc59423a2013-07-21 21:37:04 +0200631static void intel_hdmi_mode_set(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800632{
Daniel Vetterc59423a2013-07-21 21:37:04 +0200633 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800634 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterc59423a2013-07-21 21:37:04 +0200635 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
636 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
637 struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300638 u32 hdmi_val;
Eric Anholt7d573822009-01-02 13:33:00 -0800639
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300640 hdmi_val = SDVO_ENCODING_HDMI;
Ville Syrjälä2af2c492013-06-25 14:16:34 +0300641 if (!HAS_PCH_SPLIT(dev))
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300642 hdmi_val |= intel_hdmi->color_range;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400643 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300644 hdmi_val |= SDVO_VSYNC_ACTIVE_HIGH;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400645 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300646 hdmi_val |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800647
Daniel Vetterc59423a2013-07-21 21:37:04 +0200648 if (crtc->config.pipe_bpp > 24)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300649 hdmi_val |= HDMI_COLOR_FORMAT_12bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700650 else
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300651 hdmi_val |= SDVO_COLOR_FORMAT_8bpc;
Jesse Barnes020f6702011-06-24 12:19:25 -0700652
Jesse Barnes759c85e2014-04-02 10:08:53 -0700653 if (intel_hdmi->has_hdmi_sink &&
654 (HAS_PCH_CPT(dev) || IS_VALLEYVIEW(dev)))
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300655 hdmi_val |= HDMI_MODE_SELECT_HDMI;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800656
David Härdeman3c17fe42010-09-24 21:44:32 +0200657 if (intel_hdmi->has_audio) {
Wu Fengguange0dac652011-09-05 14:25:34 +0800658 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
Daniel Vetterc59423a2013-07-21 21:37:04 +0200659 pipe_name(crtc->pipe));
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300660 hdmi_val |= SDVO_AUDIO_ENABLE;
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300661 hdmi_val |= HDMI_MODE_SELECT_HDMI;
Daniel Vetterc59423a2013-07-21 21:37:04 +0200662 intel_write_eld(&encoder->base, adjusted_mode);
David Härdeman3c17fe42010-09-24 21:44:32 +0200663 }
Eric Anholt7d573822009-01-02 13:33:00 -0800664
Jesse Barnes75770562011-10-12 09:01:58 -0700665 if (HAS_PCH_CPT(dev))
Daniel Vetterc59423a2013-07-21 21:37:04 +0200666 hdmi_val |= SDVO_PIPE_SEL_CPT(crtc->pipe);
Chon Ming Lee44f37d12014-04-09 13:28:21 +0300667 else if (IS_CHERRYVIEW(dev))
668 hdmi_val |= SDVO_PIPE_SEL_CHV(crtc->pipe);
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300669 else
Daniel Vetterc59423a2013-07-21 21:37:04 +0200670 hdmi_val |= SDVO_PIPE_SEL(crtc->pipe);
Eric Anholt7d573822009-01-02 13:33:00 -0800671
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300672 I915_WRITE(intel_hdmi->hdmi_reg, hdmi_val);
673 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800674}
675
Daniel Vetter85234cd2012-07-02 13:27:29 +0200676static bool intel_hdmi_get_hw_state(struct intel_encoder *encoder,
677 enum pipe *pipe)
Eric Anholt7d573822009-01-02 13:33:00 -0800678{
Daniel Vetter85234cd2012-07-02 13:27:29 +0200679 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800680 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200681 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Imre Deak6d129be2014-03-05 16:20:54 +0200682 enum intel_display_power_domain power_domain;
Daniel Vetter85234cd2012-07-02 13:27:29 +0200683 u32 tmp;
684
Imre Deak6d129be2014-03-05 16:20:54 +0200685 power_domain = intel_display_port_power_domain(encoder);
686 if (!intel_display_power_enabled(dev_priv, power_domain))
687 return false;
688
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300689 tmp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter85234cd2012-07-02 13:27:29 +0200690
691 if (!(tmp & SDVO_ENABLE))
692 return false;
693
694 if (HAS_PCH_CPT(dev))
695 *pipe = PORT_TO_PIPE_CPT(tmp);
696 else
697 *pipe = PORT_TO_PIPE(tmp);
698
699 return true;
700}
701
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700702static void intel_hdmi_get_config(struct intel_encoder *encoder,
703 struct intel_crtc_config *pipe_config)
704{
705 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
706 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
707 u32 tmp, flags = 0;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300708 int dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700709
710 tmp = I915_READ(intel_hdmi->hdmi_reg);
711
712 if (tmp & SDVO_HSYNC_ACTIVE_HIGH)
713 flags |= DRM_MODE_FLAG_PHSYNC;
714 else
715 flags |= DRM_MODE_FLAG_NHSYNC;
716
717 if (tmp & SDVO_VSYNC_ACTIVE_HIGH)
718 flags |= DRM_MODE_FLAG_PVSYNC;
719 else
720 flags |= DRM_MODE_FLAG_NVSYNC;
721
722 pipe_config->adjusted_mode.flags |= flags;
Ville Syrjälä18442d02013-09-13 16:00:08 +0300723
724 if ((tmp & SDVO_COLOR_FORMAT_MASK) == HDMI_COLOR_FORMAT_12bpc)
725 dotclock = pipe_config->port_clock * 2 / 3;
726 else
727 dotclock = pipe_config->port_clock;
728
729 if (HAS_PCH_SPLIT(dev_priv->dev))
730 ironlake_check_encoder_dotclock(pipe_config, dotclock);
731
Damien Lespiau241bfc32013-09-25 16:45:37 +0100732 pipe_config->adjusted_mode.crtc_clock = dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700733}
734
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200735static void intel_enable_hdmi(struct intel_encoder *encoder)
Eric Anholt7d573822009-01-02 13:33:00 -0800736{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200737 struct drm_device *dev = encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -0800738 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300739 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200740 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
Eric Anholt7d573822009-01-02 13:33:00 -0800741 u32 temp;
Wu Fengguang2deed762011-12-09 20:42:20 +0800742 u32 enable_bits = SDVO_ENABLE;
743
744 if (intel_hdmi->has_audio)
745 enable_bits |= SDVO_AUDIO_ENABLE;
Eric Anholt7d573822009-01-02 13:33:00 -0800746
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300747 temp = I915_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000748
Daniel Vetter7a87c282012-06-05 11:03:39 +0200749 /* HW workaround for IBX, we need to move the port to transcoder A
Paulo Zanonidc0fa712013-02-19 16:21:46 -0300750 * before disabling it, so restore the transcoder select bit here. */
751 if (HAS_PCH_IBX(dev))
752 enable_bits |= SDVO_PIPE_SEL(intel_crtc->pipe);
Daniel Vetter7a87c282012-06-05 11:03:39 +0200753
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200754 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
755 * we do this anyway which shows more stable in testing.
756 */
757 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300758 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
759 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200760 }
Daniel Vetter7a87c282012-06-05 11:03:39 +0200761
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200762 temp |= enable_bits;
763
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300764 I915_WRITE(intel_hdmi->hdmi_reg, temp);
765 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200766
767 /* HW workaround, need to write this twice for issue that may result
768 * in first write getting masked.
769 */
770 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300771 I915_WRITE(intel_hdmi->hdmi_reg, temp);
772 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200773 }
Jani Nikulab76cf762013-07-30 12:20:31 +0300774}
Jesse Barnes89b667f2013-04-18 14:51:36 -0700775
Jani Nikulab76cf762013-07-30 12:20:31 +0300776static void vlv_enable_hdmi(struct intel_encoder *encoder)
777{
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200778}
779
780static void intel_disable_hdmi(struct intel_encoder *encoder)
781{
782 struct drm_device *dev = encoder->base.dev;
783 struct drm_i915_private *dev_priv = dev->dev_private;
784 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
785 u32 temp;
Wang Xingchao3cce5742012-09-13 11:19:00 +0800786 u32 enable_bits = SDVO_ENABLE | SDVO_AUDIO_ENABLE;
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200787
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300788 temp = I915_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200789
790 /* HW workaround for IBX, we need to move the port to transcoder A
791 * before disabling it. */
792 if (HAS_PCH_IBX(dev)) {
793 struct drm_crtc *crtc = encoder->base.crtc;
794 int pipe = crtc ? to_intel_crtc(crtc)->pipe : -1;
795
796 if (temp & SDVO_PIPE_B_SELECT) {
797 temp &= ~SDVO_PIPE_B_SELECT;
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300798 I915_WRITE(intel_hdmi->hdmi_reg, temp);
799 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200800
801 /* Again we need to write this twice. */
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300802 I915_WRITE(intel_hdmi->hdmi_reg, temp);
803 POSTING_READ(intel_hdmi->hdmi_reg);
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200804
805 /* Transcoder selection bits only update
806 * effectively on vblank. */
807 if (crtc)
808 intel_wait_for_vblank(dev, pipe);
809 else
810 msleep(50);
Daniel Vetter7a87c282012-06-05 11:03:39 +0200811 }
812 }
813
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000814 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
815 * we do this anyway which shows more stable in testing.
816 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800817 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300818 I915_WRITE(intel_hdmi->hdmi_reg, temp & ~SDVO_ENABLE);
819 POSTING_READ(intel_hdmi->hdmi_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800820 }
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000821
Daniel Vetter5ab432e2012-06-30 08:59:56 +0200822 temp &= ~enable_bits;
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000823
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300824 I915_WRITE(intel_hdmi->hdmi_reg, temp);
825 POSTING_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000826
827 /* HW workaround, need to write this twice for issue that may result
828 * in first write getting masked.
829 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800830 if (HAS_PCH_SPLIT(dev)) {
Paulo Zanonib242b7f2013-02-18 19:00:26 -0300831 I915_WRITE(intel_hdmi->hdmi_reg, temp);
832 POSTING_READ(intel_hdmi->hdmi_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000833 }
Eric Anholt7d573822009-01-02 13:33:00 -0800834}
835
Ville Syrjälä40478452014-03-27 11:08:45 +0200836static int hdmi_portclock_limit(struct intel_hdmi *hdmi, bool respect_dvi_limit)
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200837{
838 struct drm_device *dev = intel_hdmi_to_dev(hdmi);
839
Ville Syrjälä40478452014-03-27 11:08:45 +0200840 if ((respect_dvi_limit && !hdmi->has_hdmi_sink) || IS_G4X(dev))
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200841 return 165000;
Damien Lespiaue3c33572013-11-02 21:07:51 -0700842 else if (IS_HASWELL(dev) || INTEL_INFO(dev)->gen >= 8)
Daniel Vetter7d148ef2013-07-22 18:02:39 +0200843 return 300000;
844 else
845 return 225000;
846}
847
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000848static enum drm_mode_status
849intel_hdmi_mode_valid(struct drm_connector *connector,
850 struct drm_display_mode *mode)
Eric Anholt7d573822009-01-02 13:33:00 -0800851{
Ville Syrjälä40478452014-03-27 11:08:45 +0200852 if (mode->clock > hdmi_portclock_limit(intel_attached_hdmi(connector),
853 true))
Eric Anholt7d573822009-01-02 13:33:00 -0800854 return MODE_CLOCK_HIGH;
855 if (mode->clock < 20000)
Nicolas Kaiser5cbba412011-05-30 12:48:26 +0200856 return MODE_CLOCK_LOW;
Eric Anholt7d573822009-01-02 13:33:00 -0800857
858 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
859 return MODE_NO_DBLESCAN;
860
861 return MODE_OK;
862}
863
Ville Syrjälä71800632014-03-03 16:15:29 +0200864static bool hdmi_12bpc_possible(struct intel_crtc *crtc)
865{
866 struct drm_device *dev = crtc->base.dev;
867 struct intel_encoder *encoder;
868 int count = 0, count_hdmi = 0;
869
870 if (!HAS_PCH_SPLIT(dev))
871 return false;
872
873 list_for_each_entry(encoder, &dev->mode_config.encoder_list, base.head) {
874 if (encoder->new_crtc != crtc)
875 continue;
876
877 count_hdmi += encoder->type == INTEL_OUTPUT_HDMI;
878 count++;
879 }
880
881 /*
882 * HDMI 12bpc affects the clocks, so it's only possible
883 * when not cloning with other encoder types.
884 */
885 return count_hdmi > 0 && count_hdmi == count;
886}
887
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100888bool intel_hdmi_compute_config(struct intel_encoder *encoder,
889 struct intel_crtc_config *pipe_config)
Eric Anholt7d573822009-01-02 13:33:00 -0800890{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100891 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
892 struct drm_device *dev = encoder->base.dev;
893 struct drm_display_mode *adjusted_mode = &pipe_config->adjusted_mode;
Damien Lespiau241bfc32013-09-25 16:45:37 +0100894 int clock_12bpc = pipe_config->adjusted_mode.crtc_clock * 3 / 2;
Ville Syrjälä40478452014-03-27 11:08:45 +0200895 int portclock_limit = hdmi_portclock_limit(intel_hdmi, false);
Daniel Vettere29c22c2013-02-21 00:00:16 +0100896 int desired_bpp;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200897
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200898 if (intel_hdmi->color_range_auto) {
899 /* See CEA-861-E - 5.1 Default Encoding Parameters */
900 if (intel_hdmi->has_hdmi_sink &&
Thierry Reding18316c82012-12-20 15:41:44 +0100901 drm_match_cea_mode(adjusted_mode) > 1)
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -0300902 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +0200903 else
904 intel_hdmi->color_range = 0;
905 }
906
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200907 if (intel_hdmi->color_range)
Daniel Vetter50f3b012013-03-27 00:44:56 +0100908 pipe_config->limited_color_range = true;
Ville Syrjälä3685a8f2013-01-17 16:31:28 +0200909
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100910 if (HAS_PCH_SPLIT(dev) && !HAS_DDI(dev))
911 pipe_config->has_pch_encoder = true;
912
Daniel Vetter4e53c2e2013-03-27 00:44:58 +0100913 /*
914 * HDMI is either 12 or 8, so if the display lets 10bpc sneak
915 * through, clamp it down. Note that g4x/vlv don't support 12bpc hdmi
Daniel Vetter325b9d02013-04-19 11:24:33 +0200916 * outputs. We also need to check that the higher clock still fits
917 * within limits.
Daniel Vetter4e53c2e2013-03-27 00:44:58 +0100918 */
Ville Syrjälä6375b762014-03-03 11:33:36 +0200919 if (pipe_config->pipe_bpp > 8*3 && intel_hdmi->has_hdmi_sink &&
Ville Syrjälä71800632014-03-03 16:15:29 +0200920 clock_12bpc <= portclock_limit &&
921 hdmi_12bpc_possible(encoder->new_crtc)) {
Daniel Vettere29c22c2013-02-21 00:00:16 +0100922 DRM_DEBUG_KMS("picking bpc to 12 for HDMI output\n");
923 desired_bpp = 12*3;
Daniel Vetter325b9d02013-04-19 11:24:33 +0200924
925 /* Need to adjust the port link by 1.5x for 12bpc. */
Daniel Vetterff9a6752013-06-01 17:16:21 +0200926 pipe_config->port_clock = clock_12bpc;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +0100927 } else {
Daniel Vettere29c22c2013-02-21 00:00:16 +0100928 DRM_DEBUG_KMS("picking bpc to 8 for HDMI output\n");
929 desired_bpp = 8*3;
930 }
931
932 if (!pipe_config->bw_constrained) {
933 DRM_DEBUG_KMS("forcing pipe bpc to %i for HDMI\n", desired_bpp);
934 pipe_config->pipe_bpp = desired_bpp;
Daniel Vetter4e53c2e2013-03-27 00:44:58 +0100935 }
936
Damien Lespiau241bfc32013-09-25 16:45:37 +0100937 if (adjusted_mode->crtc_clock > portclock_limit) {
Daniel Vetter325b9d02013-04-19 11:24:33 +0200938 DRM_DEBUG_KMS("too high HDMI clock, rejecting mode\n");
939 return false;
940 }
941
Eric Anholt7d573822009-01-02 13:33:00 -0800942 return true;
943}
944
Keith Packardaa93d632009-05-05 09:52:46 -0700945static enum drm_connector_status
Chris Wilson930a9e22010-09-14 11:07:23 +0100946intel_hdmi_detect(struct drm_connector *connector, bool force)
Ma Ling9dff6af2009-04-02 13:13:26 +0800947{
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000948 struct drm_device *dev = connector->dev;
Chris Wilsondf0e9242010-09-09 16:20:55 +0100949 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Paulo Zanonid63885d2012-10-26 19:05:49 -0200950 struct intel_digital_port *intel_dig_port =
951 hdmi_to_dig_port(intel_hdmi);
952 struct intel_encoder *intel_encoder = &intel_dig_port->base;
Damien Lespiaub0ea7d32012-12-13 16:09:00 +0000953 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700954 struct edid *edid;
Imre Deak671dedd2014-03-05 16:20:53 +0200955 enum intel_display_power_domain power_domain;
Keith Packardaa93d632009-05-05 09:52:46 -0700956 enum drm_connector_status status = connector_status_disconnected;
Ma Ling9dff6af2009-04-02 13:13:26 +0800957
Chris Wilson164c8592013-07-20 20:27:08 +0100958 DRM_DEBUG_KMS("[CONNECTOR:%d:%s]\n",
959 connector->base.id, drm_get_connector_name(connector));
960
Imre Deak671dedd2014-03-05 16:20:53 +0200961 power_domain = intel_display_port_power_domain(intel_encoder);
962 intel_display_power_get(dev_priv, power_domain);
963
Chris Wilsonea5b2132010-08-04 13:50:23 +0100964 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800965 intel_hdmi->has_audio = false;
Ville Syrjäläabedc072013-01-17 16:31:31 +0200966 intel_hdmi->rgb_quant_range_selectable = false;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700967 edid = drm_get_edid(connector,
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800968 intel_gmbus_get_adapter(dev_priv,
969 intel_hdmi->ddc_bus));
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800970
Keith Packardaa93d632009-05-05 09:52:46 -0700971 if (edid) {
Eric Anholtbe9f1c42009-06-21 22:14:55 -0700972 if (edid->input & DRM_EDID_INPUT_DIGITAL) {
Keith Packardaa93d632009-05-05 09:52:46 -0700973 status = connector_status_connected;
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800974 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
975 intel_hdmi->has_hdmi_sink =
976 drm_detect_hdmi_monitor(edid);
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800977 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
Ville Syrjäläabedc072013-01-17 16:31:31 +0200978 intel_hdmi->rgb_quant_range_selectable =
979 drm_rgb_quant_range_selectable(edid);
Keith Packardaa93d632009-05-05 09:52:46 -0700980 }
Keith Packardaa93d632009-05-05 09:52:46 -0700981 kfree(edid);
Ma Ling9dff6af2009-04-02 13:13:26 +0800982 }
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800983
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100984 if (status == connector_status_connected) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800985 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
986 intel_hdmi->has_audio =
987 (intel_hdmi->force_audio == HDMI_AUDIO_ON);
Paulo Zanonid63885d2012-10-26 19:05:49 -0200988 intel_encoder->type = INTEL_OUTPUT_HDMI;
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100989 }
990
Imre Deak671dedd2014-03-05 16:20:53 +0200991 intel_display_power_put(dev_priv, power_domain);
992
Keith Packardaa93d632009-05-05 09:52:46 -0700993 return status;
Ma Ling9dff6af2009-04-02 13:13:26 +0800994}
995
Eric Anholt7d573822009-01-02 13:33:00 -0800996static int intel_hdmi_get_modes(struct drm_connector *connector)
997{
Imre Deak671dedd2014-03-05 16:20:53 +0200998 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
999 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);
Chris Wilsonf899fc62010-07-20 15:44:45 -07001000 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Imre Deak671dedd2014-03-05 16:20:53 +02001001 enum intel_display_power_domain power_domain;
1002 int ret;
Eric Anholt7d573822009-01-02 13:33:00 -08001003
1004 /* We should parse the EDID data and find out if it's an HDMI sink so
1005 * we can send audio to it.
1006 */
1007
Imre Deak671dedd2014-03-05 16:20:53 +02001008 power_domain = intel_display_port_power_domain(intel_encoder);
1009 intel_display_power_get(dev_priv, power_domain);
1010
1011 ret = intel_ddc_get_modes(connector,
Daniel Kurtz3bd7d902012-03-28 02:36:14 +08001012 intel_gmbus_get_adapter(dev_priv,
1013 intel_hdmi->ddc_bus));
Imre Deak671dedd2014-03-05 16:20:53 +02001014
1015 intel_display_power_put(dev_priv, power_domain);
1016
1017 return ret;
Eric Anholt7d573822009-01-02 13:33:00 -08001018}
1019
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001020static bool
1021intel_hdmi_detect_audio(struct drm_connector *connector)
1022{
Imre Deak671dedd2014-03-05 16:20:53 +02001023 struct intel_encoder *intel_encoder = intel_attached_encoder(connector);
1024 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&intel_encoder->base);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001025 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Imre Deak671dedd2014-03-05 16:20:53 +02001026 enum intel_display_power_domain power_domain;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001027 struct edid *edid;
1028 bool has_audio = false;
1029
Imre Deak671dedd2014-03-05 16:20:53 +02001030 power_domain = intel_display_port_power_domain(intel_encoder);
1031 intel_display_power_get(dev_priv, power_domain);
1032
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001033 edid = drm_get_edid(connector,
Daniel Kurtz3bd7d902012-03-28 02:36:14 +08001034 intel_gmbus_get_adapter(dev_priv,
1035 intel_hdmi->ddc_bus));
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001036 if (edid) {
1037 if (edid->input & DRM_EDID_INPUT_DIGITAL)
1038 has_audio = drm_detect_monitor_audio(edid);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001039 kfree(edid);
1040 }
1041
Imre Deak671dedd2014-03-05 16:20:53 +02001042 intel_display_power_put(dev_priv, power_domain);
1043
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001044 return has_audio;
1045}
1046
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001047static int
1048intel_hdmi_set_property(struct drm_connector *connector,
Paulo Zanonied517fb2012-05-14 17:12:50 -03001049 struct drm_property *property,
1050 uint64_t val)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001051{
1052 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Paulo Zanonida63a9f2012-10-26 19:05:46 -02001053 struct intel_digital_port *intel_dig_port =
1054 hdmi_to_dig_port(intel_hdmi);
Chris Wilsone953fd72011-02-21 22:23:52 +00001055 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001056 int ret;
1057
Rob Clark662595d2012-10-11 20:36:04 -05001058 ret = drm_object_property_set_value(&connector->base, property, val);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001059 if (ret)
1060 return ret;
1061
Chris Wilson3f43c482011-05-12 22:17:24 +01001062 if (property == dev_priv->force_audio_property) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001063 enum hdmi_force_audio i = val;
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001064 bool has_audio;
1065
1066 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001067 return 0;
1068
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001069 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001070
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001071 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001072 has_audio = intel_hdmi_detect_audio(connector);
1073 else
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001074 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001075
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +08001076 if (i == HDMI_AUDIO_OFF_DVI)
1077 intel_hdmi->has_hdmi_sink = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001078
Chris Wilson1aad7ac2011-02-09 18:46:58 +00001079 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001080 goto done;
1081 }
1082
Chris Wilsone953fd72011-02-21 22:23:52 +00001083 if (property == dev_priv->broadcast_rgb_property) {
Daniel Vetterae4edb82013-04-22 17:07:23 +02001084 bool old_auto = intel_hdmi->color_range_auto;
1085 uint32_t old_range = intel_hdmi->color_range;
1086
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001087 switch (val) {
1088 case INTEL_BROADCAST_RGB_AUTO:
1089 intel_hdmi->color_range_auto = true;
1090 break;
1091 case INTEL_BROADCAST_RGB_FULL:
1092 intel_hdmi->color_range_auto = false;
1093 intel_hdmi->color_range = 0;
1094 break;
1095 case INTEL_BROADCAST_RGB_LIMITED:
1096 intel_hdmi->color_range_auto = false;
Paulo Zanoni4f3a8bc2013-02-19 16:21:47 -03001097 intel_hdmi->color_range = HDMI_COLOR_RANGE_16_235;
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001098 break;
1099 default:
1100 return -EINVAL;
1101 }
Daniel Vetterae4edb82013-04-22 17:07:23 +02001102
1103 if (old_auto == intel_hdmi->color_range_auto &&
1104 old_range == intel_hdmi->color_range)
1105 return 0;
1106
Chris Wilsone953fd72011-02-21 22:23:52 +00001107 goto done;
1108 }
1109
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001110 return -EINVAL;
1111
1112done:
Chris Wilsonc0c36b942012-12-19 16:08:43 +00001113 if (intel_dig_port->base.base.crtc)
1114 intel_crtc_restore_mode(intel_dig_port->base.base.crtc);
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001115
1116 return 0;
1117}
1118
Jesse Barnes13732ba2014-04-05 11:51:35 -07001119static void intel_hdmi_pre_enable(struct intel_encoder *encoder)
1120{
1121 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(&encoder->base);
1122 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->base.crtc);
1123 struct drm_display_mode *adjusted_mode =
1124 &intel_crtc->config.adjusted_mode;
1125
1126 intel_hdmi->set_infoframes(&encoder->base, adjusted_mode);
1127}
1128
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001129static void vlv_hdmi_pre_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001130{
1131 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001132 struct intel_hdmi *intel_hdmi = &dport->hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001133 struct drm_device *dev = encoder->base.dev;
1134 struct drm_i915_private *dev_priv = dev->dev_private;
1135 struct intel_crtc *intel_crtc =
1136 to_intel_crtc(encoder->base.crtc);
Jesse Barnes13732ba2014-04-05 11:51:35 -07001137 struct drm_display_mode *adjusted_mode =
1138 &intel_crtc->config.adjusted_mode;
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001139 enum dpio_channel port = vlv_dport_to_channel(dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001140 int pipe = intel_crtc->pipe;
1141 u32 val;
1142
1143 if (!IS_VALLEYVIEW(dev))
1144 return;
1145
Jesse Barnes89b667f2013-04-18 14:51:36 -07001146 /* Enable clock channels for this port */
Chris Wilson0980a602013-07-26 19:57:35 +01001147 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001148 val = vlv_dpio_read(dev_priv, pipe, VLV_PCS01_DW8(port));
Jesse Barnes89b667f2013-04-18 14:51:36 -07001149 val = 0;
1150 if (pipe)
1151 val |= (1<<21);
1152 else
1153 val &= ~(1<<21);
1154 val |= 0x001000c4;
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001155 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW8(port), val);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001156
1157 /* HDMI 1.0V-2dB */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001158 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), 0);
1159 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(port), 0x2b245f5f);
1160 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(port), 0x5578b83a);
1161 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(port), 0x0c782040);
1162 vlv_dpio_write(dev_priv, pipe, VLV_TX3_DW4(port), 0x2b247878);
1163 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW11(port), 0x00030000);
1164 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1165 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001166
1167 /* Program lane clock */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001168 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW14(port), 0x00760018);
1169 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW23(port), 0x00400888);
Chris Wilson0980a602013-07-26 19:57:35 +01001170 mutex_unlock(&dev_priv->dpio_lock);
Jani Nikulab76cf762013-07-30 12:20:31 +03001171
Jesse Barnes13732ba2014-04-05 11:51:35 -07001172 intel_hdmi->set_infoframes(&encoder->base, adjusted_mode);
1173
Jani Nikulab76cf762013-07-30 12:20:31 +03001174 intel_enable_hdmi(encoder);
1175
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001176 vlv_wait_port_ready(dev_priv, dport);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001177}
1178
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001179static void vlv_hdmi_pre_pll_enable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001180{
1181 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1182 struct drm_device *dev = encoder->base.dev;
1183 struct drm_i915_private *dev_priv = dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001184 struct intel_crtc *intel_crtc =
1185 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001186 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001187 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001188
1189 if (!IS_VALLEYVIEW(dev))
1190 return;
1191
Jesse Barnes89b667f2013-04-18 14:51:36 -07001192 /* Program Tx lane resets to default */
Chris Wilson0980a602013-07-26 19:57:35 +01001193 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001194 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001195 DPIO_PCS_TX_LANE2_RESET |
1196 DPIO_PCS_TX_LANE1_RESET);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001197 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port),
Jesse Barnes89b667f2013-04-18 14:51:36 -07001198 DPIO_PCS_CLK_CRI_RXEB_EIOS_EN |
1199 DPIO_PCS_CLK_CRI_RXDIGFILTSG_EN |
1200 (1<<DPIO_PCS_CLK_DATAWIDTH_SHIFT) |
1201 DPIO_PCS_CLK_SOFT_RESET);
1202
1203 /* Fix up inter-pair skew failure */
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001204 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW12(port), 0x00750f00);
1205 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW11(port), 0x00001500);
1206 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW14(port), 0x40400000);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001207
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001208 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW9(port), 0x00002000);
1209 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW5(port), DPIO_TX_OCALINIT_EN);
Chris Wilson0980a602013-07-26 19:57:35 +01001210 mutex_unlock(&dev_priv->dpio_lock);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001211}
1212
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001213static void vlv_hdmi_post_disable(struct intel_encoder *encoder)
Jesse Barnes89b667f2013-04-18 14:51:36 -07001214{
1215 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1216 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001217 struct intel_crtc *intel_crtc =
1218 to_intel_crtc(encoder->base.crtc);
Chon Ming Leee4607fc2013-11-06 14:36:35 +08001219 enum dpio_channel port = vlv_dport_to_channel(dport);
Chon Ming Lee5e69f972013-09-05 20:41:49 +08001220 int pipe = intel_crtc->pipe;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001221
1222 /* Reset lanes to avoid HDMI flicker (VLV w/a) */
1223 mutex_lock(&dev_priv->dpio_lock);
Chon Ming Leeab3c7592013-11-07 10:43:30 +08001224 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW0(port), 0x00000000);
1225 vlv_dpio_write(dev_priv, pipe, VLV_PCS_DW1(port), 0x00e00060);
Jesse Barnes89b667f2013-04-18 14:51:36 -07001226 mutex_unlock(&dev_priv->dpio_lock);
1227}
1228
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001229static void chv_hdmi_pre_enable(struct intel_encoder *encoder)
1230{
1231 struct intel_digital_port *dport = enc_to_dig_port(&encoder->base);
1232 struct drm_device *dev = encoder->base.dev;
1233 struct drm_i915_private *dev_priv = dev->dev_private;
1234 struct intel_crtc *intel_crtc =
1235 to_intel_crtc(encoder->base.crtc);
1236 enum dpio_channel ch = vlv_dport_to_channel(dport);
1237 int pipe = intel_crtc->pipe;
1238 int data, i;
1239 u32 val;
1240
1241 /* Program Tx latency optimal setting */
1242 mutex_lock(&dev_priv->dpio_lock);
1243 for (i = 0; i < 4; i++) {
1244 /* Set the latency optimal bit */
1245 data = (i == 1) ? 0x0 : 0x6;
1246 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW11(ch, i),
1247 data << DPIO_FRC_LATENCY_SHFIT);
1248
1249 /* Set the upar bit */
1250 data = (i == 1) ? 0x0 : 0x1;
1251 vlv_dpio_write(dev_priv, pipe, CHV_TX_DW14(ch, i),
1252 data << DPIO_UPAR_SHIFT);
1253 }
1254
1255 /* Data lane stagger programming */
1256 /* FIXME: Fix up value only after power analysis */
1257
1258 /* Clear calc init */
1259 vlv_dpio_write(dev_priv, pipe, CHV_PCS_DW10(ch), 0);
1260
1261 /* FIXME: Program the support xxx V-dB */
1262 /* Use 800mV-0dB */
1263 val = vlv_dpio_read(dev_priv, pipe, VLV_TX_DW4(ch));
1264 val &= ~DPIO_SWING_DEEMPH9P5_MASK;
1265 val |= 128 << DPIO_SWING_DEEMPH9P5_SHIFT;
1266 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW4(ch), val);
1267
1268 val = vlv_dpio_read(dev_priv, pipe, VLV_TX_DW2(ch));
1269 val &= ~DPIO_SWING_MARGIN_MASK;
1270 val |= 102 << DPIO_SWING_MARGIN_SHIFT;
1271 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(ch), val);
1272
1273 /* Disable unique transition scale */
1274 val = vlv_dpio_read(dev_priv, pipe, VLV_TX_DW3(ch));
1275 val &= ~DPIO_TX_UNIQ_TRANS_SCALE_EN;
1276 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(ch), val);
1277
1278 /* Additional steps for 1200mV-0dB */
1279#if 0
1280 val = vlv_dpio_read(dev_priv, pipe, VLV_TX_DW3(ch));
1281 if (ch)
1282 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH1;
1283 else
1284 val |= DPIO_TX_UNIQ_TRANS_SCALE_CH0;
1285 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW3(ch), val);
1286
1287 vlv_dpio_write(dev_priv, pipe, VLV_TX_DW2(ch),
1288 vlv_dpio_read(dev_priv, pipe, VLV_TX_DW2(ch)) |
1289 (0x9a << DPIO_UNIQ_TRANS_SCALE_SHIFT));
1290#endif
1291 /* Start swing calculation */
1292 vlv_dpio_write(dev_priv, pipe, CHV_PCS_DW10(ch),
1293 DPIO_PCS_SWING_CALC_TX0_TX2 |
1294 DPIO_PCS_SWING_CALC_TX1_TX3);
1295
1296 /* LRC Bypass */
1297 val = vlv_dpio_read(dev_priv, pipe, CHV_CMN_DW30);
1298 val |= DPIO_LRC_BYPASS;
1299 vlv_dpio_write(dev_priv, pipe, CHV_CMN_DW30, val);
1300
1301 mutex_unlock(&dev_priv->dpio_lock);
1302
1303 intel_enable_hdmi(encoder);
1304
1305 vlv_wait_port_ready(dev_priv, dport);
1306}
1307
Eric Anholt7d573822009-01-02 13:33:00 -08001308static void intel_hdmi_destroy(struct drm_connector *connector)
1309{
Eric Anholt7d573822009-01-02 13:33:00 -08001310 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +08001311 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001312}
1313
Eric Anholt7d573822009-01-02 13:33:00 -08001314static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001315 .dpms = intel_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -08001316 .detect = intel_hdmi_detect,
1317 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001318 .set_property = intel_hdmi_set_property,
Eric Anholt7d573822009-01-02 13:33:00 -08001319 .destroy = intel_hdmi_destroy,
1320};
1321
1322static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
1323 .get_modes = intel_hdmi_get_modes,
1324 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +01001325 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -08001326};
1327
Eric Anholt7d573822009-01-02 13:33:00 -08001328static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +01001329 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -08001330};
1331
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001332static void
1333intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
1334{
Chris Wilson3f43c482011-05-12 22:17:24 +01001335 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +00001336 intel_attach_broadcast_rgb_property(connector);
Ville Syrjälä55bc60d2013-01-17 16:31:29 +02001337 intel_hdmi->color_range_auto = true;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001338}
1339
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001340void intel_hdmi_init_connector(struct intel_digital_port *intel_dig_port,
1341 struct intel_connector *intel_connector)
Eric Anholt7d573822009-01-02 13:33:00 -08001342{
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001343 struct drm_connector *connector = &intel_connector->base;
1344 struct intel_hdmi *intel_hdmi = &intel_dig_port->hdmi;
1345 struct intel_encoder *intel_encoder = &intel_dig_port->base;
1346 struct drm_device *dev = intel_encoder->base.dev;
Eric Anholt7d573822009-01-02 13:33:00 -08001347 struct drm_i915_private *dev_priv = dev->dev_private;
Paulo Zanoni174edf12012-10-26 19:05:50 -02001348 enum port port = intel_dig_port->port;
Eric Anholt7d573822009-01-02 13:33:00 -08001349
Eric Anholt7d573822009-01-02 13:33:00 -08001350 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -04001351 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -08001352 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
1353
Peter Rossc3febcc2012-01-28 14:49:26 +01001354 connector->interlace_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001355 connector->doublescan_allowed = 0;
Damien Lespiau573e74a2013-09-25 16:45:40 +01001356 connector->stereo_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -08001357
Daniel Vetter08d644a2012-07-12 20:19:59 +02001358 switch (port) {
1359 case PORT_B:
Chris Wilsonf899fc62010-07-20 15:44:45 -07001360 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Egbert Eich1d843f92013-02-25 12:06:49 -05001361 intel_encoder->hpd_pin = HPD_PORT_B;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001362 break;
1363 case PORT_C:
Chris Wilsonf899fc62010-07-20 15:44:45 -07001364 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Egbert Eich1d843f92013-02-25 12:06:49 -05001365 intel_encoder->hpd_pin = HPD_PORT_C;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001366 break;
1367 case PORT_D:
Chris Wilsonf899fc62010-07-20 15:44:45 -07001368 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
Egbert Eich1d843f92013-02-25 12:06:49 -05001369 intel_encoder->hpd_pin = HPD_PORT_D;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001370 break;
1371 case PORT_A:
Egbert Eich1d843f92013-02-25 12:06:49 -05001372 intel_encoder->hpd_pin = HPD_PORT_A;
Daniel Vetter08d644a2012-07-12 20:19:59 +02001373 /* Internal port only for eDP. */
1374 default:
Eugeni Dodonov6e4c1672012-05-09 15:37:13 -03001375 BUG();
Ma Lingf8aed702009-08-24 13:50:24 +08001376 }
Eric Anholt7d573822009-01-02 13:33:00 -08001377
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001378 if (IS_VALLEYVIEW(dev)) {
Shobhit Kumar90b107c2012-03-28 13:39:32 -07001379 intel_hdmi->write_infoframe = vlv_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001380 intel_hdmi->set_infoframes = vlv_set_infoframes;
Jesse Barnes7637bfd2013-03-08 10:46:01 -08001381 } else if (!HAS_PCH_SPLIT(dev)) {
1382 intel_hdmi->write_infoframe = g4x_write_infoframe;
1383 intel_hdmi->set_infoframes = g4x_set_infoframes;
Paulo Zanoni22b8bf12013-02-18 19:00:23 -03001384 } else if (HAS_DDI(dev)) {
Eugeni Dodonov8c5f5f72012-05-10 10:18:02 -03001385 intel_hdmi->write_infoframe = hsw_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001386 intel_hdmi->set_infoframes = hsw_set_infoframes;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001387 } else if (HAS_PCH_IBX(dev)) {
1388 intel_hdmi->write_infoframe = ibx_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001389 intel_hdmi->set_infoframes = ibx_set_infoframes;
Paulo Zanonifdf12502012-05-04 17:18:24 -03001390 } else {
1391 intel_hdmi->write_infoframe = cpt_write_infoframe;
Paulo Zanoni687f4d02012-05-28 16:42:48 -03001392 intel_hdmi->set_infoframes = cpt_set_infoframes;
Jesse Barnes64a8fc02011-09-22 11:16:00 +05301393 }
Jesse Barnes45187ac2011-08-03 09:22:55 -07001394
Paulo Zanoniaffa9352012-11-23 15:30:39 -02001395 if (HAS_DDI(dev))
Paulo Zanonibcbc8892012-10-26 19:05:51 -02001396 intel_connector->get_hw_state = intel_ddi_connector_get_hw_state;
1397 else
1398 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak4932e2c2014-02-11 17:12:48 +02001399 intel_connector->unregister = intel_connector_unregister;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001400
1401 intel_hdmi_add_properties(intel_hdmi, connector);
1402
1403 intel_connector_attach_encoder(intel_connector, intel_encoder);
1404 drm_sysfs_connector_add(connector);
1405
1406 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
1407 * 0xd. Failure to do so will result in spurious interrupts being
1408 * generated on the port when a cable is not attached.
1409 */
1410 if (IS_G4X(dev) && !IS_GM45(dev)) {
1411 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
1412 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
1413 }
1414}
1415
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001416void intel_hdmi_init(struct drm_device *dev, int hdmi_reg, enum port port)
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001417{
1418 struct intel_digital_port *intel_dig_port;
1419 struct intel_encoder *intel_encoder;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001420 struct intel_connector *intel_connector;
1421
Daniel Vetterb14c5672013-09-19 12:18:32 +02001422 intel_dig_port = kzalloc(sizeof(*intel_dig_port), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001423 if (!intel_dig_port)
1424 return;
1425
Daniel Vetterb14c5672013-09-19 12:18:32 +02001426 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001427 if (!intel_connector) {
1428 kfree(intel_dig_port);
1429 return;
1430 }
1431
1432 intel_encoder = &intel_dig_port->base;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001433
1434 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
1435 DRM_MODE_ENCODER_TMDS);
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001436
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +01001437 intel_encoder->compute_config = intel_hdmi_compute_config;
Daniel Vetterc59423a2013-07-21 21:37:04 +02001438 intel_encoder->mode_set = intel_hdmi_mode_set;
Paulo Zanoni00c09d72012-10-26 19:05:52 -02001439 intel_encoder->disable = intel_disable_hdmi;
1440 intel_encoder->get_hw_state = intel_hdmi_get_hw_state;
Jesse Barnes045ac3b2013-05-14 17:08:26 -07001441 intel_encoder->get_config = intel_hdmi_get_config;
Chon Ming Leee4a1d842014-04-09 13:28:20 +03001442 if (IS_CHERRYVIEW(dev)) {
1443 intel_encoder->pre_enable = chv_hdmi_pre_enable;
1444 intel_encoder->enable = vlv_enable_hdmi;
1445 } else if (IS_VALLEYVIEW(dev)) {
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001446 intel_encoder->pre_pll_enable = vlv_hdmi_pre_pll_enable;
1447 intel_encoder->pre_enable = vlv_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001448 intel_encoder->enable = vlv_enable_hdmi;
Chon Ming Lee9514ac62013-10-16 17:07:41 +08001449 intel_encoder->post_disable = vlv_hdmi_post_disable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001450 } else {
Jesse Barnes13732ba2014-04-05 11:51:35 -07001451 intel_encoder->pre_enable = intel_hdmi_pre_enable;
Jani Nikulab76cf762013-07-30 12:20:31 +03001452 intel_encoder->enable = intel_enable_hdmi;
Jesse Barnes89b667f2013-04-18 14:51:36 -07001453 }
Daniel Vetter5ab432e2012-06-30 08:59:56 +02001454
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001455 intel_encoder->type = INTEL_OUTPUT_HDMI;
1456 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Ville Syrjälä301ea742014-03-03 16:15:30 +02001457 intel_encoder->cloneable = 1 << INTEL_OUTPUT_ANALOG;
Ville Syrjäläc6f14952014-03-03 16:15:31 +02001458 /*
1459 * BSpec is unclear about HDMI+HDMI cloning on g4x, but it seems
1460 * to work on real hardware. And since g4x can send infoframes to
1461 * only one port anyway, nothing is lost by allowing it.
1462 */
1463 if (IS_G4X(dev))
1464 intel_encoder->cloneable |= 1 << INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -08001465
Paulo Zanoni174edf12012-10-26 19:05:50 -02001466 intel_dig_port->port = port;
Paulo Zanonib242b7f2013-02-18 19:00:26 -03001467 intel_dig_port->hdmi.hdmi_reg = hdmi_reg;
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001468 intel_dig_port->dp.output_reg = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +01001469
Paulo Zanonib9cb2342012-10-26 19:05:47 -02001470 intel_hdmi_init_connector(intel_dig_port, intel_connector);
Eric Anholt7d573822009-01-02 13:33:00 -08001471}