drm/i915: use pipe bpp in DP link bandwidth calculations
[linux-2.6-block.git] / drivers / gpu / drm / i915 / intel_hdmi.c
CommitLineData
7d57382e
EA
1/*
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>
5a0e3ad6 30#include <linux/slab.h>
7d57382e
EA
31#include <linux/delay.h>
32#include "drmP.h"
33#include "drm.h"
34#include "drm_crtc.h"
aa93d632 35#include "drm_edid.h"
7d57382e
EA
36#include "intel_drv.h"
37#include "i915_drm.h"
38#include "i915_drv.h"
39
ea5b213a
CW
40struct intel_hdmi {
41 struct intel_encoder base;
7d57382e 42 u32 sdvox_reg;
f899fc64 43 int ddc_bus;
e953fd7b 44 uint32_t color_range;
9dff6af8 45 bool has_hdmi_sink;
2e3d6006 46 bool has_audio;
55b7d6e8 47 int force_audio;
7d57382e
EA
48};
49
ea5b213a
CW
50static struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder)
51{
4ef69c7a 52 return container_of(encoder, struct intel_hdmi, base.base);
ea5b213a
CW
53}
54
df0e9248
CW
55static 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
3c17fe4b
DH
61void 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
7d57382e
EA
115static 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);
ea5b213a 123 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
7d57382e
EA
124 u32 sdvox;
125
b599c0bc 126 sdvox = SDVO_ENCODING_HDMI | SDVO_BORDER_ENABLE;
5d4fac97
JB
127 if (!HAS_PCH_SPLIT(dev))
128 sdvox |= intel_hdmi->color_range;
b599c0bc
AJ
129 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
130 sdvox |= SDVO_VSYNC_ACTIVE_HIGH;
131 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
132 sdvox |= SDVO_HSYNC_ACTIVE_HIGH;
7d57382e 133
2e3d6006
ZW
134 /* Required on CPT */
135 if (intel_hdmi->has_hdmi_sink && HAS_PCH_CPT(dev))
136 sdvox |= HDMI_MODE_SELECT;
137
3c17fe4b 138 if (intel_hdmi->has_audio) {
7d57382e 139 sdvox |= SDVO_AUDIO_ENABLE;
3c17fe4b
DH
140 sdvox |= SDVO_NULL_PACKETS_DURING_VSYNC;
141 }
7d57382e 142
0f229062
ZW
143 if (intel_crtc->pipe == 1) {
144 if (HAS_PCH_CPT(dev))
145 sdvox |= PORT_TRANS_B_SEL_CPT;
146 else
147 sdvox |= SDVO_PIPE_B_SELECT;
148 }
7d57382e 149
ea5b213a
CW
150 I915_WRITE(intel_hdmi->sdvox_reg, sdvox);
151 POSTING_READ(intel_hdmi->sdvox_reg);
3c17fe4b
DH
152
153 intel_hdmi_set_avi_infoframe(encoder);
7d57382e
EA
154}
155
156static void intel_hdmi_dpms(struct drm_encoder *encoder, int mode)
157{
158 struct drm_device *dev = encoder->dev;
159 struct drm_i915_private *dev_priv = dev->dev_private;
ea5b213a 160 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
7d57382e
EA
161 u32 temp;
162
ea5b213a 163 temp = I915_READ(intel_hdmi->sdvox_reg);
d8a2d0e0
ZW
164
165 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
166 * we do this anyway which shows more stable in testing.
167 */
c619eed4 168 if (HAS_PCH_SPLIT(dev)) {
ea5b213a
CW
169 I915_WRITE(intel_hdmi->sdvox_reg, temp & ~SDVO_ENABLE);
170 POSTING_READ(intel_hdmi->sdvox_reg);
d8a2d0e0
ZW
171 }
172
173 if (mode != DRM_MODE_DPMS_ON) {
174 temp &= ~SDVO_ENABLE;
7d57382e 175 } else {
d8a2d0e0 176 temp |= SDVO_ENABLE;
7d57382e 177 }
d8a2d0e0 178
ea5b213a
CW
179 I915_WRITE(intel_hdmi->sdvox_reg, temp);
180 POSTING_READ(intel_hdmi->sdvox_reg);
d8a2d0e0
ZW
181
182 /* HW workaround, need to write this twice for issue that may result
183 * in first write getting masked.
184 */
c619eed4 185 if (HAS_PCH_SPLIT(dev)) {
ea5b213a
CW
186 I915_WRITE(intel_hdmi->sdvox_reg, temp);
187 POSTING_READ(intel_hdmi->sdvox_reg);
d8a2d0e0 188 }
7d57382e
EA
189}
190
7d57382e
EA
191static int intel_hdmi_mode_valid(struct drm_connector *connector,
192 struct drm_display_mode *mode)
193{
194 if (mode->clock > 165000)
195 return MODE_CLOCK_HIGH;
196 if (mode->clock < 20000)
5cbba41d 197 return MODE_CLOCK_LOW;
7d57382e
EA
198
199 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
200 return MODE_NO_DBLESCAN;
201
202 return MODE_OK;
203}
204
205static bool intel_hdmi_mode_fixup(struct drm_encoder *encoder,
206 struct drm_display_mode *mode,
207 struct drm_display_mode *adjusted_mode)
208{
209 return true;
210}
211
aa93d632 212static enum drm_connector_status
930a9e28 213intel_hdmi_detect(struct drm_connector *connector, bool force)
9dff6af8 214{
df0e9248 215 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
f899fc64
CW
216 struct drm_i915_private *dev_priv = connector->dev->dev_private;
217 struct edid *edid;
aa93d632 218 enum drm_connector_status status = connector_status_disconnected;
9dff6af8 219
ea5b213a 220 intel_hdmi->has_hdmi_sink = false;
2e3d6006 221 intel_hdmi->has_audio = false;
f899fc64
CW
222 edid = drm_get_edid(connector,
223 &dev_priv->gmbus[intel_hdmi->ddc_bus].adapter);
2ded9e27 224
aa93d632 225 if (edid) {
be9f1c4f 226 if (edid->input & DRM_EDID_INPUT_DIGITAL) {
aa93d632 227 status = connector_status_connected;
ea5b213a 228 intel_hdmi->has_hdmi_sink = drm_detect_hdmi_monitor(edid);
2e3d6006 229 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
aa93d632 230 }
674e2d08 231 connector->display_info.raw_edid = NULL;
aa93d632 232 kfree(edid);
9dff6af8 233 }
30ad48b7 234
55b7d6e8
CW
235 if (status == connector_status_connected) {
236 if (intel_hdmi->force_audio)
237 intel_hdmi->has_audio = intel_hdmi->force_audio > 0;
238 }
239
2ded9e27 240 return status;
7d57382e
EA
241}
242
243static int intel_hdmi_get_modes(struct drm_connector *connector)
244{
df0e9248 245 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
f899fc64 246 struct drm_i915_private *dev_priv = connector->dev->dev_private;
7d57382e
EA
247
248 /* We should parse the EDID data and find out if it's an HDMI sink so
249 * we can send audio to it.
250 */
251
f899fc64
CW
252 return intel_ddc_get_modes(connector,
253 &dev_priv->gmbus[intel_hdmi->ddc_bus].adapter);
7d57382e
EA
254}
255
1aad7ac0
CW
256static bool
257intel_hdmi_detect_audio(struct drm_connector *connector)
258{
259 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
260 struct drm_i915_private *dev_priv = connector->dev->dev_private;
261 struct edid *edid;
262 bool has_audio = false;
263
264 edid = drm_get_edid(connector,
265 &dev_priv->gmbus[intel_hdmi->ddc_bus].adapter);
266 if (edid) {
267 if (edid->input & DRM_EDID_INPUT_DIGITAL)
268 has_audio = drm_detect_monitor_audio(edid);
269
270 connector->display_info.raw_edid = NULL;
271 kfree(edid);
272 }
273
274 return has_audio;
275}
276
55b7d6e8
CW
277static int
278intel_hdmi_set_property(struct drm_connector *connector,
279 struct drm_property *property,
280 uint64_t val)
281{
282 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
e953fd7b 283 struct drm_i915_private *dev_priv = connector->dev->dev_private;
55b7d6e8
CW
284 int ret;
285
286 ret = drm_connector_property_set_value(connector, property, val);
287 if (ret)
288 return ret;
289
3f43c48d 290 if (property == dev_priv->force_audio_property) {
1aad7ac0
CW
291 int i = val;
292 bool has_audio;
293
294 if (i == intel_hdmi->force_audio)
55b7d6e8
CW
295 return 0;
296
1aad7ac0 297 intel_hdmi->force_audio = i;
55b7d6e8 298
1aad7ac0
CW
299 if (i == 0)
300 has_audio = intel_hdmi_detect_audio(connector);
301 else
302 has_audio = i > 0;
303
304 if (has_audio == intel_hdmi->has_audio)
55b7d6e8
CW
305 return 0;
306
1aad7ac0 307 intel_hdmi->has_audio = has_audio;
55b7d6e8
CW
308 goto done;
309 }
310
e953fd7b
CW
311 if (property == dev_priv->broadcast_rgb_property) {
312 if (val == !!intel_hdmi->color_range)
313 return 0;
314
315 intel_hdmi->color_range = val ? SDVO_COLOR_RANGE_16_235 : 0;
316 goto done;
317 }
318
55b7d6e8
CW
319 return -EINVAL;
320
321done:
322 if (intel_hdmi->base.base.crtc) {
323 struct drm_crtc *crtc = intel_hdmi->base.base.crtc;
324 drm_crtc_helper_set_mode(crtc, &crtc->mode,
325 crtc->x, crtc->y,
326 crtc->fb);
327 }
328
329 return 0;
330}
331
7d57382e
EA
332static void intel_hdmi_destroy(struct drm_connector *connector)
333{
7d57382e
EA
334 drm_sysfs_connector_remove(connector);
335 drm_connector_cleanup(connector);
674e2d08 336 kfree(connector);
7d57382e
EA
337}
338
339static const struct drm_encoder_helper_funcs intel_hdmi_helper_funcs = {
340 .dpms = intel_hdmi_dpms,
341 .mode_fixup = intel_hdmi_mode_fixup,
342 .prepare = intel_encoder_prepare,
343 .mode_set = intel_hdmi_mode_set,
344 .commit = intel_encoder_commit,
345};
346
347static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
c9fb15f6 348 .dpms = drm_helper_connector_dpms,
7d57382e
EA
349 .detect = intel_hdmi_detect,
350 .fill_modes = drm_helper_probe_single_connector_modes,
55b7d6e8 351 .set_property = intel_hdmi_set_property,
7d57382e
EA
352 .destroy = intel_hdmi_destroy,
353};
354
355static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
356 .get_modes = intel_hdmi_get_modes,
357 .mode_valid = intel_hdmi_mode_valid,
df0e9248 358 .best_encoder = intel_best_encoder,
7d57382e
EA
359};
360
7d57382e 361static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
ea5b213a 362 .destroy = intel_encoder_destroy,
7d57382e
EA
363};
364
55b7d6e8
CW
365static void
366intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
367{
3f43c48d 368 intel_attach_force_audio_property(connector);
e953fd7b 369 intel_attach_broadcast_rgb_property(connector);
55b7d6e8
CW
370}
371
7d57382e
EA
372void intel_hdmi_init(struct drm_device *dev, int sdvox_reg)
373{
374 struct drm_i915_private *dev_priv = dev->dev_private;
375 struct drm_connector *connector;
21d40d37 376 struct intel_encoder *intel_encoder;
674e2d08 377 struct intel_connector *intel_connector;
ea5b213a 378 struct intel_hdmi *intel_hdmi;
7d57382e 379
ea5b213a
CW
380 intel_hdmi = kzalloc(sizeof(struct intel_hdmi), GFP_KERNEL);
381 if (!intel_hdmi)
7d57382e 382 return;
674e2d08
ZW
383
384 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
385 if (!intel_connector) {
ea5b213a 386 kfree(intel_hdmi);
674e2d08
ZW
387 return;
388 }
389
ea5b213a 390 intel_encoder = &intel_hdmi->base;
373a3cf7
CW
391 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
392 DRM_MODE_ENCODER_TMDS);
393
674e2d08 394 connector = &intel_connector->base;
7d57382e 395 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
8d91104a 396 DRM_MODE_CONNECTOR_HDMIA);
7d57382e
EA
397 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
398
21d40d37 399 intel_encoder->type = INTEL_OUTPUT_HDMI;
7d57382e 400
eb1f8e4f 401 connector->polled = DRM_CONNECTOR_POLL_HPD;
7d57382e
EA
402 connector->interlace_allowed = 0;
403 connector->doublescan_allowed = 0;
21d40d37 404 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
7d57382e
EA
405
406 /* Set up the DDC bus. */
f8aed700 407 if (sdvox_reg == SDVOB) {
21d40d37 408 intel_encoder->clone_mask = (1 << INTEL_HDMIB_CLONE_BIT);
f899fc64 409 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
b01f2c3a 410 dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
f8aed700 411 } else if (sdvox_reg == SDVOC) {
21d40d37 412 intel_encoder->clone_mask = (1 << INTEL_HDMIC_CLONE_BIT);
f899fc64 413 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
b01f2c3a 414 dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
f8aed700 415 } else if (sdvox_reg == HDMIB) {
21d40d37 416 intel_encoder->clone_mask = (1 << INTEL_HDMID_CLONE_BIT);
f899fc64 417 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
b01f2c3a 418 dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
f8aed700 419 } else if (sdvox_reg == HDMIC) {
21d40d37 420 intel_encoder->clone_mask = (1 << INTEL_HDMIE_CLONE_BIT);
f899fc64 421 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
b01f2c3a 422 dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
f8aed700 423 } else if (sdvox_reg == HDMID) {
21d40d37 424 intel_encoder->clone_mask = (1 << INTEL_HDMIF_CLONE_BIT);
f899fc64 425 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
b01f2c3a 426 dev_priv->hotplug_supported_mask |= HDMID_HOTPLUG_INT_STATUS;
f8aed700 427 }
7d57382e 428
ea5b213a 429 intel_hdmi->sdvox_reg = sdvox_reg;
7d57382e 430
4ef69c7a 431 drm_encoder_helper_add(&intel_encoder->base, &intel_hdmi_helper_funcs);
7d57382e 432
55b7d6e8
CW
433 intel_hdmi_add_properties(intel_hdmi, connector);
434
df0e9248 435 intel_connector_attach_encoder(intel_connector, intel_encoder);
7d57382e
EA
436 drm_sysfs_connector_add(connector);
437
438 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
439 * 0xd. Failure to do so will result in spurious interrupts being
440 * generated on the port when a cable is not attached.
441 */
442 if (IS_G4X(dev) && !IS_GM45(dev)) {
443 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
444 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
445 }
7d57382e 446}