blob: 0d0273e7b029296725032098d26eeb08fb8b5bc6 [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>
32#include "drmP.h"
33#include "drm.h"
34#include "drm_crtc.h"
Keith Packardaa93d632009-05-05 09:52:46 -070035#include "drm_edid.h"
Eric Anholt7d573822009-01-02 13:33:00 -080036#include "intel_drv.h"
37#include "i915_drm.h"
38#include "i915_drv.h"
39
Chris Wilsonea5b2132010-08-04 13:50:23 +010040struct intel_hdmi {
41 struct intel_encoder base;
Eric Anholt7d573822009-01-02 13:33:00 -080042 u32 sdvox_reg;
Chris Wilsonf899fc62010-07-20 15:44:45 -070043 int ddc_bus;
Ma Ling9dff6af2009-04-02 13:13:26 +080044 bool has_hdmi_sink;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +080045 bool has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +010046 int force_audio;
47 struct drm_property *force_audio_property;
Eric Anholt7d573822009-01-02 13:33:00 -080048};
49
Chris Wilsonea5b2132010-08-04 13:50:23 +010050static struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder)
51{
Chris Wilson4ef69c72010-09-09 15:14:28 +010052 return container_of(encoder, struct intel_hdmi, base.base);
Chris Wilsonea5b2132010-08-04 13:50:23 +010053}
54
Chris Wilsondf0e9242010-09-09 16:20:55 +010055static struct intel_hdmi *intel_attached_hdmi(struct drm_connector *connector)
56{
57 return container_of(intel_attached_encoder(connector),
58 struct intel_hdmi, base);
59}
60
David Härdeman3c17fe42010-09-24 21:44:32 +020061void intel_dip_infoframe_csum(struct dip_infoframe *avi_if)
62{
63 uint8_t *data = (uint8_t *)avi_if;
64 uint8_t sum = 0;
65 unsigned i;
66
67 avi_if->checksum = 0;
68 avi_if->ecc = 0;
69
70 for (i = 0; i < sizeof(*avi_if); i++)
71 sum += data[i];
72
73 avi_if->checksum = 0x100 - sum;
74}
75
76static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder)
77{
78 struct dip_infoframe avi_if = {
79 .type = DIP_TYPE_AVI,
80 .ver = DIP_VERSION_AVI,
81 .len = DIP_LEN_AVI,
82 };
83 uint32_t *data = (uint32_t *)&avi_if;
84 struct drm_device *dev = encoder->dev;
85 struct drm_i915_private *dev_priv = dev->dev_private;
86 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
87 u32 port;
88 unsigned i;
89
90 if (!intel_hdmi->has_hdmi_sink)
91 return;
92
93 /* XXX first guess at handling video port, is this corrent? */
94 if (intel_hdmi->sdvox_reg == SDVOB)
95 port = VIDEO_DIP_PORT_B;
96 else if (intel_hdmi->sdvox_reg == SDVOC)
97 port = VIDEO_DIP_PORT_C;
98 else
99 return;
100
101 I915_WRITE(VIDEO_DIP_CTL, VIDEO_DIP_ENABLE | port |
102 VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC);
103
104 intel_dip_infoframe_csum(&avi_if);
105 for (i = 0; i < sizeof(avi_if); i += 4) {
106 I915_WRITE(VIDEO_DIP_DATA, *data);
107 data++;
108 }
109
110 I915_WRITE(VIDEO_DIP_CTL, VIDEO_DIP_ENABLE | port |
111 VIDEO_DIP_SELECT_AVI | VIDEO_DIP_FREQ_VSYNC |
112 VIDEO_DIP_ENABLE_AVI);
113}
114
Eric Anholt7d573822009-01-02 13:33:00 -0800115static void intel_hdmi_mode_set(struct drm_encoder *encoder,
116 struct drm_display_mode *mode,
117 struct drm_display_mode *adjusted_mode)
118{
119 struct drm_device *dev = encoder->dev;
120 struct drm_i915_private *dev_priv = dev->dev_private;
121 struct drm_crtc *crtc = encoder->crtc;
122 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100123 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800124 u32 sdvox;
125
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400126 sdvox = SDVO_ENCODING_HDMI | SDVO_BORDER_ENABLE;
127 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
128 sdvox |= SDVO_VSYNC_ACTIVE_HIGH;
129 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
130 sdvox |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800131
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800132 /* Required on CPT */
133 if (intel_hdmi->has_hdmi_sink && HAS_PCH_CPT(dev))
134 sdvox |= HDMI_MODE_SELECT;
135
David Härdeman3c17fe42010-09-24 21:44:32 +0200136 if (intel_hdmi->has_audio) {
Eric Anholt7d573822009-01-02 13:33:00 -0800137 sdvox |= SDVO_AUDIO_ENABLE;
David Härdeman3c17fe42010-09-24 21:44:32 +0200138 sdvox |= SDVO_NULL_PACKETS_DURING_VSYNC;
139 }
Eric Anholt7d573822009-01-02 13:33:00 -0800140
Zhenyu Wang0f229062010-04-07 16:15:57 +0800141 if (intel_crtc->pipe == 1) {
142 if (HAS_PCH_CPT(dev))
143 sdvox |= PORT_TRANS_B_SEL_CPT;
144 else
145 sdvox |= SDVO_PIPE_B_SELECT;
146 }
Eric Anholt7d573822009-01-02 13:33:00 -0800147
Chris Wilsonea5b2132010-08-04 13:50:23 +0100148 I915_WRITE(intel_hdmi->sdvox_reg, sdvox);
149 POSTING_READ(intel_hdmi->sdvox_reg);
David Härdeman3c17fe42010-09-24 21:44:32 +0200150
151 intel_hdmi_set_avi_infoframe(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800152}
153
154static void intel_hdmi_dpms(struct drm_encoder *encoder, int mode)
155{
156 struct drm_device *dev = encoder->dev;
157 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100158 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800159 u32 temp;
160
Chris Wilsonea5b2132010-08-04 13:50:23 +0100161 temp = I915_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000162
163 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
164 * we do this anyway which shows more stable in testing.
165 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800166 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100167 I915_WRITE(intel_hdmi->sdvox_reg, temp & ~SDVO_ENABLE);
168 POSTING_READ(intel_hdmi->sdvox_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800169 }
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000170
171 if (mode != DRM_MODE_DPMS_ON) {
172 temp &= ~SDVO_ENABLE;
173 } else {
174 temp |= SDVO_ENABLE;
175 }
176
Chris Wilsonea5b2132010-08-04 13:50:23 +0100177 I915_WRITE(intel_hdmi->sdvox_reg, temp);
178 POSTING_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000179
180 /* HW workaround, need to write this twice for issue that may result
181 * in first write getting masked.
182 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800183 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100184 I915_WRITE(intel_hdmi->sdvox_reg, temp);
185 POSTING_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000186 }
Eric Anholt7d573822009-01-02 13:33:00 -0800187}
188
Eric Anholt7d573822009-01-02 13:33:00 -0800189static int intel_hdmi_mode_valid(struct drm_connector *connector,
190 struct drm_display_mode *mode)
191{
192 if (mode->clock > 165000)
193 return MODE_CLOCK_HIGH;
194 if (mode->clock < 20000)
195 return MODE_CLOCK_HIGH;
196
197 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
198 return MODE_NO_DBLESCAN;
199
200 return MODE_OK;
201}
202
203static bool intel_hdmi_mode_fixup(struct drm_encoder *encoder,
204 struct drm_display_mode *mode,
205 struct drm_display_mode *adjusted_mode)
206{
207 return true;
208}
209
Keith Packardaa93d632009-05-05 09:52:46 -0700210static enum drm_connector_status
Chris Wilson930a9e22010-09-14 11:07:23 +0100211intel_hdmi_detect(struct drm_connector *connector, bool force)
Ma Ling9dff6af2009-04-02 13:13:26 +0800212{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100213 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700214 struct drm_i915_private *dev_priv = connector->dev->dev_private;
215 struct edid *edid;
Keith Packardaa93d632009-05-05 09:52:46 -0700216 enum drm_connector_status status = connector_status_disconnected;
Ma Ling9dff6af2009-04-02 13:13:26 +0800217
Chris Wilsonea5b2132010-08-04 13:50:23 +0100218 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800219 intel_hdmi->has_audio = false;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700220 edid = drm_get_edid(connector,
221 &dev_priv->gmbus[intel_hdmi->ddc_bus].adapter);
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800222
Keith Packardaa93d632009-05-05 09:52:46 -0700223 if (edid) {
Eric Anholtbe9f1c42009-06-21 22:14:55 -0700224 if (edid->input & DRM_EDID_INPUT_DIGITAL) {
Keith Packardaa93d632009-05-05 09:52:46 -0700225 status = connector_status_connected;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100226 intel_hdmi->has_hdmi_sink = drm_detect_hdmi_monitor(edid);
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800227 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
Keith Packardaa93d632009-05-05 09:52:46 -0700228 }
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800229 connector->display_info.raw_edid = NULL;
Keith Packardaa93d632009-05-05 09:52:46 -0700230 kfree(edid);
Ma Ling9dff6af2009-04-02 13:13:26 +0800231 }
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800232
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100233 if (status == connector_status_connected) {
234 if (intel_hdmi->force_audio)
235 intel_hdmi->has_audio = intel_hdmi->force_audio > 0;
236 }
237
Keith Packardaa93d632009-05-05 09:52:46 -0700238 return status;
Ma Ling9dff6af2009-04-02 13:13:26 +0800239}
240
Eric Anholt7d573822009-01-02 13:33:00 -0800241static int intel_hdmi_get_modes(struct drm_connector *connector)
242{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100243 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700244 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Eric Anholt7d573822009-01-02 13:33:00 -0800245
246 /* We should parse the EDID data and find out if it's an HDMI sink so
247 * we can send audio to it.
248 */
249
Chris Wilsonf899fc62010-07-20 15:44:45 -0700250 return intel_ddc_get_modes(connector,
251 &dev_priv->gmbus[intel_hdmi->ddc_bus].adapter);
Eric Anholt7d573822009-01-02 13:33:00 -0800252}
253
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100254static int
255intel_hdmi_set_property(struct drm_connector *connector,
256 struct drm_property *property,
257 uint64_t val)
258{
259 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
260 int ret;
261
262 ret = drm_connector_property_set_value(connector, property, val);
263 if (ret)
264 return ret;
265
266 if (property == intel_hdmi->force_audio_property) {
267 if (val == intel_hdmi->force_audio)
268 return 0;
269
270 intel_hdmi->force_audio = val;
271
272 if (val > 0 && intel_hdmi->has_audio)
273 return 0;
274 if (val < 0 && !intel_hdmi->has_audio)
275 return 0;
276
277 intel_hdmi->has_audio = val > 0;
278 goto done;
279 }
280
281 return -EINVAL;
282
283done:
284 if (intel_hdmi->base.base.crtc) {
285 struct drm_crtc *crtc = intel_hdmi->base.base.crtc;
286 drm_crtc_helper_set_mode(crtc, &crtc->mode,
287 crtc->x, crtc->y,
288 crtc->fb);
289 }
290
291 return 0;
292}
293
Eric Anholt7d573822009-01-02 13:33:00 -0800294static void intel_hdmi_destroy(struct drm_connector *connector)
295{
Eric Anholt7d573822009-01-02 13:33:00 -0800296 drm_sysfs_connector_remove(connector);
297 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800298 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -0800299}
300
301static const struct drm_encoder_helper_funcs intel_hdmi_helper_funcs = {
302 .dpms = intel_hdmi_dpms,
303 .mode_fixup = intel_hdmi_mode_fixup,
304 .prepare = intel_encoder_prepare,
305 .mode_set = intel_hdmi_mode_set,
306 .commit = intel_encoder_commit,
307};
308
309static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Keith Packardc9fb15f2009-05-30 20:42:28 -0700310 .dpms = drm_helper_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -0800311 .detect = intel_hdmi_detect,
312 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100313 .set_property = intel_hdmi_set_property,
Eric Anholt7d573822009-01-02 13:33:00 -0800314 .destroy = intel_hdmi_destroy,
315};
316
317static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
318 .get_modes = intel_hdmi_get_modes,
319 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +0100320 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -0800321};
322
Eric Anholt7d573822009-01-02 13:33:00 -0800323static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100324 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -0800325};
326
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100327static void
328intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
329{
330 struct drm_device *dev = connector->dev;
331
332 intel_hdmi->force_audio_property =
333 drm_property_create(dev, DRM_MODE_PROP_RANGE, "force_audio", 2);
334 if (intel_hdmi->force_audio_property) {
335 intel_hdmi->force_audio_property->values[0] = -1;
336 intel_hdmi->force_audio_property->values[1] = 1;
337 drm_connector_attach_property(connector, intel_hdmi->force_audio_property, 0);
338 }
339}
340
Eric Anholt7d573822009-01-02 13:33:00 -0800341void intel_hdmi_init(struct drm_device *dev, int sdvox_reg)
342{
343 struct drm_i915_private *dev_priv = dev->dev_private;
344 struct drm_connector *connector;
Eric Anholt21d40d32010-03-25 11:11:14 -0700345 struct intel_encoder *intel_encoder;
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800346 struct intel_connector *intel_connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100347 struct intel_hdmi *intel_hdmi;
Eric Anholt7d573822009-01-02 13:33:00 -0800348
Chris Wilsonea5b2132010-08-04 13:50:23 +0100349 intel_hdmi = kzalloc(sizeof(struct intel_hdmi), GFP_KERNEL);
350 if (!intel_hdmi)
Eric Anholt7d573822009-01-02 13:33:00 -0800351 return;
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800352
353 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
354 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100355 kfree(intel_hdmi);
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800356 return;
357 }
358
Chris Wilsonea5b2132010-08-04 13:50:23 +0100359 intel_encoder = &intel_hdmi->base;
Chris Wilson373a3cf2010-09-15 12:03:59 +0100360 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
361 DRM_MODE_ENCODER_TMDS);
362
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800363 connector = &intel_connector->base;
Eric Anholt7d573822009-01-02 13:33:00 -0800364 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -0400365 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -0800366 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
367
Eric Anholt21d40d32010-03-25 11:11:14 -0700368 intel_encoder->type = INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -0800369
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000370 connector->polled = DRM_CONNECTOR_POLL_HPD;
Eric Anholt7d573822009-01-02 13:33:00 -0800371 connector->interlace_allowed = 0;
372 connector->doublescan_allowed = 0;
Eric Anholt21d40d32010-03-25 11:11:14 -0700373 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
Eric Anholt7d573822009-01-02 13:33:00 -0800374
375 /* Set up the DDC bus. */
Ma Lingf8aed702009-08-24 13:50:24 +0800376 if (sdvox_reg == SDVOB) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700377 intel_encoder->clone_mask = (1 << INTEL_HDMIB_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700378 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800379 dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800380 } else if (sdvox_reg == SDVOC) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700381 intel_encoder->clone_mask = (1 << INTEL_HDMIC_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700382 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800383 dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800384 } else if (sdvox_reg == HDMIB) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700385 intel_encoder->clone_mask = (1 << INTEL_HDMID_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700386 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800387 dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800388 } else if (sdvox_reg == HDMIC) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700389 intel_encoder->clone_mask = (1 << INTEL_HDMIE_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700390 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800391 dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800392 } else if (sdvox_reg == HDMID) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700393 intel_encoder->clone_mask = (1 << INTEL_HDMIF_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700394 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800395 dev_priv->hotplug_supported_mask |= HDMID_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800396 }
Eric Anholt7d573822009-01-02 13:33:00 -0800397
Chris Wilsonea5b2132010-08-04 13:50:23 +0100398 intel_hdmi->sdvox_reg = sdvox_reg;
Eric Anholt7d573822009-01-02 13:33:00 -0800399
Chris Wilson4ef69c72010-09-09 15:14:28 +0100400 drm_encoder_helper_add(&intel_encoder->base, &intel_hdmi_helper_funcs);
Eric Anholt7d573822009-01-02 13:33:00 -0800401
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100402 intel_hdmi_add_properties(intel_hdmi, connector);
403
Chris Wilsondf0e9242010-09-09 16:20:55 +0100404 intel_connector_attach_encoder(intel_connector, intel_encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800405 drm_sysfs_connector_add(connector);
406
407 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
408 * 0xd. Failure to do so will result in spurious interrupts being
409 * generated on the port when a cable is not attached.
410 */
411 if (IS_G4X(dev) && !IS_GM45(dev)) {
412 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
413 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
414 }
Eric Anholt7d573822009-01-02 13:33:00 -0800415}