blob: e65ebc2d3ad909ecff532240f707a756c0234db2 [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;
Chris Wilsone953fd72011-02-21 22:23:52 +000044 uint32_t color_range;
Ma Ling9dff6af2009-04-02 13:13:26 +080045 bool has_hdmi_sink;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +080046 bool has_audio;
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +080047 enum hdmi_force_audio force_audio;
Jesse Barnes45187ac2011-08-03 09:22:55 -070048 void (*write_infoframe)(struct drm_encoder *encoder,
49 struct dip_infoframe *frame);
Eric Anholt7d573822009-01-02 13:33:00 -080050};
51
Chris Wilsonea5b2132010-08-04 13:50:23 +010052static struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder)
53{
Chris Wilson4ef69c72010-09-09 15:14:28 +010054 return container_of(encoder, struct intel_hdmi, base.base);
Chris Wilsonea5b2132010-08-04 13:50:23 +010055}
56
Chris Wilsondf0e9242010-09-09 16:20:55 +010057static struct intel_hdmi *intel_attached_hdmi(struct drm_connector *connector)
58{
59 return container_of(intel_attached_encoder(connector),
60 struct intel_hdmi, base);
61}
62
Jesse Barnes45187ac2011-08-03 09:22:55 -070063void intel_dip_infoframe_csum(struct dip_infoframe *frame)
David Härdeman3c17fe42010-09-24 21:44:32 +020064{
Jesse Barnes45187ac2011-08-03 09:22:55 -070065 uint8_t *data = (uint8_t *)frame;
David Härdeman3c17fe42010-09-24 21:44:32 +020066 uint8_t sum = 0;
67 unsigned i;
68
Jesse Barnes45187ac2011-08-03 09:22:55 -070069 frame->checksum = 0;
70 frame->ecc = 0;
David Härdeman3c17fe42010-09-24 21:44:32 +020071
Jesse Barnes64a8fc02011-09-22 11:16:00 +053072 for (i = 0; i < frame->len + DIP_HEADER_SIZE; i++)
David Härdeman3c17fe42010-09-24 21:44:32 +020073 sum += data[i];
74
Jesse Barnes45187ac2011-08-03 09:22:55 -070075 frame->checksum = 0x100 - sum;
David Härdeman3c17fe42010-09-24 21:44:32 +020076}
77
Jesse Barnes45187ac2011-08-03 09:22:55 -070078static u32 intel_infoframe_index(struct dip_infoframe *frame)
David Härdeman3c17fe42010-09-24 21:44:32 +020079{
Jesse Barnes45187ac2011-08-03 09:22:55 -070080 u32 flags = 0;
81
82 switch (frame->type) {
83 case DIP_TYPE_AVI:
84 flags |= VIDEO_DIP_SELECT_AVI;
85 break;
86 case DIP_TYPE_SPD:
87 flags |= VIDEO_DIP_SELECT_SPD;
88 break;
89 default:
90 DRM_DEBUG_DRIVER("unknown info frame type %d\n", frame->type);
91 break;
92 }
93
94 return flags;
95}
96
Paulo Zanonifa193ff2012-05-04 17:18:20 -030097static u32 intel_infoframe_enable(struct dip_infoframe *frame)
Jesse Barnes45187ac2011-08-03 09:22:55 -070098{
99 u32 flags = 0;
100
101 switch (frame->type) {
102 case DIP_TYPE_AVI:
Paulo Zanonifa193ff2012-05-04 17:18:20 -0300103 flags |= VIDEO_DIP_ENABLE_AVI;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700104 break;
105 case DIP_TYPE_SPD:
Paulo Zanonifa193ff2012-05-04 17:18:20 -0300106 flags |= VIDEO_DIP_ENABLE_SPD;
107 break;
108 default:
109 DRM_DEBUG_DRIVER("unknown info frame type %d\n", frame->type);
110 break;
111 }
112
113 return flags;
114}
115
116static u32 intel_infoframe_frequency(struct dip_infoframe *frame)
117{
118 u32 flags = 0;
119
120 switch (frame->type) {
121 case DIP_TYPE_AVI:
122 case DIP_TYPE_SPD:
123 flags |= VIDEO_DIP_FREQ_VSYNC;
Jesse Barnes45187ac2011-08-03 09:22:55 -0700124 break;
125 default:
126 DRM_DEBUG_DRIVER("unknown info frame type %d\n", frame->type);
127 break;
128 }
129
130 return flags;
131}
132
133static void i9xx_write_infoframe(struct drm_encoder *encoder,
134 struct dip_infoframe *frame)
135{
136 uint32_t *data = (uint32_t *)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;
139 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300140 u32 val = I915_READ(VIDEO_DIP_CTL);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700141 unsigned i, len = DIP_HEADER_SIZE + frame->len;
David Härdeman3c17fe42010-09-24 21:44:32 +0200142
David Härdeman3c17fe42010-09-24 21:44:32 +0200143
144 /* XXX first guess at handling video port, is this corrent? */
Paulo Zanoni3e6e6392012-05-04 17:18:19 -0300145 val &= ~VIDEO_DIP_PORT_MASK;
David Härdeman3c17fe42010-09-24 21:44:32 +0200146 if (intel_hdmi->sdvox_reg == SDVOB)
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300147 val |= VIDEO_DIP_PORT_B;
David Härdeman3c17fe42010-09-24 21:44:32 +0200148 else if (intel_hdmi->sdvox_reg == SDVOC)
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300149 val |= VIDEO_DIP_PORT_C;
David Härdeman3c17fe42010-09-24 21:44:32 +0200150 else
151 return;
152
Paulo Zanoni1d4f85a2012-05-04 17:18:18 -0300153 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300154 val |= intel_infoframe_index(frame);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700155
Paulo Zanoniecb97852012-05-04 17:18:21 -0300156 val &= ~intel_infoframe_enable(frame);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300157 val |= VIDEO_DIP_ENABLE;
158
159 I915_WRITE(VIDEO_DIP_CTL, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700160
161 for (i = 0; i < len; i += 4) {
David Härdeman3c17fe42010-09-24 21:44:32 +0200162 I915_WRITE(VIDEO_DIP_DATA, *data);
163 data++;
164 }
165
Paulo Zanonifa193ff2012-05-04 17:18:20 -0300166 val |= intel_infoframe_enable(frame);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300167 val &= ~VIDEO_DIP_FREQ_MASK;
Paulo Zanonifa193ff2012-05-04 17:18:20 -0300168 val |= intel_infoframe_frequency(frame);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700169
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300170 I915_WRITE(VIDEO_DIP_CTL, val);
David Härdeman3c17fe42010-09-24 21:44:32 +0200171}
172
Paulo Zanonifdf12502012-05-04 17:18:24 -0300173static void ibx_write_infoframe(struct drm_encoder *encoder,
174 struct dip_infoframe *frame)
175{
176 uint32_t *data = (uint32_t *)frame;
177 struct drm_device *dev = encoder->dev;
178 struct drm_i915_private *dev_priv = dev->dev_private;
179 struct drm_crtc *crtc = encoder->crtc;
180 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
181 int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
182 unsigned i, len = DIP_HEADER_SIZE + frame->len;
183 u32 val = I915_READ(reg);
184
185 intel_wait_for_vblank(dev, intel_crtc->pipe);
186
187 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
188 val |= intel_infoframe_index(frame);
189
190 /* The DIP control register spec says that we need to update the AVI
191 * infoframe without clearing its enable bit */
192 if (frame->type == DIP_TYPE_AVI)
193 val |= VIDEO_DIP_ENABLE_AVI;
194 else
195 val &= ~intel_infoframe_enable(frame);
196
197 val |= VIDEO_DIP_ENABLE;
198
199 I915_WRITE(reg, val);
200
201 for (i = 0; i < len; i += 4) {
202 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
203 data++;
204 }
205
206 val |= intel_infoframe_enable(frame);
207 val &= ~VIDEO_DIP_FREQ_MASK;
208 val |= intel_infoframe_frequency(frame);
209
210 I915_WRITE(reg, val);
211}
212
213static void cpt_write_infoframe(struct drm_encoder *encoder,
214 struct dip_infoframe *frame)
Jesse Barnes45187ac2011-08-03 09:22:55 -0700215{
216 uint32_t *data = (uint32_t *)frame;
217 struct drm_device *dev = encoder->dev;
218 struct drm_i915_private *dev_priv = dev->dev_private;
219 struct drm_crtc *crtc = encoder->crtc;
220 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
221 int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
222 unsigned i, len = DIP_HEADER_SIZE + frame->len;
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300223 u32 val = I915_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700224
225 intel_wait_for_vblank(dev, intel_crtc->pipe);
226
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530227 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300228 val |= intel_infoframe_index(frame);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700229
Paulo Zanoniecb97852012-05-04 17:18:21 -0300230 /* The DIP control register spec says that we need to update the AVI
231 * infoframe without clearing its enable bit */
232 if (frame->type == DIP_TYPE_AVI)
233 val |= VIDEO_DIP_ENABLE_AVI;
234 else
235 val &= ~intel_infoframe_enable(frame);
236
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300237 val |= VIDEO_DIP_ENABLE;
238
239 I915_WRITE(reg, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700240
241 for (i = 0; i < len; i += 4) {
242 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
243 data++;
244 }
245
Paulo Zanonifa193ff2012-05-04 17:18:20 -0300246 val |= intel_infoframe_enable(frame);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300247 val &= ~VIDEO_DIP_FREQ_MASK;
Paulo Zanonifa193ff2012-05-04 17:18:20 -0300248 val |= intel_infoframe_frequency(frame);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700249
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300250 I915_WRITE(reg, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700251}
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700252
253static void vlv_write_infoframe(struct drm_encoder *encoder,
254 struct dip_infoframe *frame)
255{
256 uint32_t *data = (uint32_t *)frame;
257 struct drm_device *dev = encoder->dev;
258 struct drm_i915_private *dev_priv = dev->dev_private;
259 struct drm_crtc *crtc = encoder->crtc;
260 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
261 int reg = VLV_TVIDEO_DIP_CTL(intel_crtc->pipe);
262 unsigned i, len = DIP_HEADER_SIZE + frame->len;
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300263 u32 val = I915_READ(reg);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700264
265 intel_wait_for_vblank(dev, intel_crtc->pipe);
266
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700267 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300268 val |= intel_infoframe_index(frame);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700269
Paulo Zanoniecb97852012-05-04 17:18:21 -0300270 val &= ~intel_infoframe_enable(frame);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300271 val |= VIDEO_DIP_ENABLE;
272
273 I915_WRITE(reg, val);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700274
275 for (i = 0; i < len; i += 4) {
276 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
277 data++;
278 }
279
Paulo Zanonifa193ff2012-05-04 17:18:20 -0300280 val |= intel_infoframe_enable(frame);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300281 val &= ~VIDEO_DIP_FREQ_MASK;
Paulo Zanonifa193ff2012-05-04 17:18:20 -0300282 val |= intel_infoframe_frequency(frame);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700283
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300284 I915_WRITE(reg, val);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700285}
286
Jesse Barnes45187ac2011-08-03 09:22:55 -0700287static void intel_set_infoframe(struct drm_encoder *encoder,
288 struct dip_infoframe *frame)
289{
290 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
291
292 if (!intel_hdmi->has_hdmi_sink)
293 return;
294
295 intel_dip_infoframe_csum(frame);
296 intel_hdmi->write_infoframe(encoder, frame);
297}
298
Paulo Zanonic846b612012-04-13 16:31:41 -0300299static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
300 struct drm_display_mode *adjusted_mode)
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700301{
302 struct dip_infoframe avi_if = {
303 .type = DIP_TYPE_AVI,
304 .ver = DIP_VERSION_AVI,
305 .len = DIP_LEN_AVI,
306 };
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700307
Paulo Zanonic846b612012-04-13 16:31:41 -0300308 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
309 avi_if.body.avi.YQ_CN_PR |= DIP_AVI_PR_2;
310
Jesse Barnes45187ac2011-08-03 09:22:55 -0700311 intel_set_infoframe(encoder, &avi_if);
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700312}
313
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700314static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
315{
316 struct dip_infoframe spd_if;
317
318 memset(&spd_if, 0, sizeof(spd_if));
319 spd_if.type = DIP_TYPE_SPD;
320 spd_if.ver = DIP_VERSION_SPD;
321 spd_if.len = DIP_LEN_SPD;
322 strcpy(spd_if.body.spd.vn, "Intel");
323 strcpy(spd_if.body.spd.pd, "Integrated gfx");
324 spd_if.body.spd.sdi = DIP_SPD_PC;
325
326 intel_set_infoframe(encoder, &spd_if);
327}
328
Eric Anholt7d573822009-01-02 13:33:00 -0800329static void intel_hdmi_mode_set(struct drm_encoder *encoder,
330 struct drm_display_mode *mode,
331 struct drm_display_mode *adjusted_mode)
332{
333 struct drm_device *dev = encoder->dev;
334 struct drm_i915_private *dev_priv = dev->dev_private;
335 struct drm_crtc *crtc = encoder->crtc;
336 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100337 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800338 u32 sdvox;
339
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400340 sdvox = SDVO_ENCODING_HDMI | SDVO_BORDER_ENABLE;
Jesse Barnes5d4fac92011-06-24 12:19:19 -0700341 if (!HAS_PCH_SPLIT(dev))
342 sdvox |= intel_hdmi->color_range;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400343 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
344 sdvox |= SDVO_VSYNC_ACTIVE_HIGH;
345 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
346 sdvox |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800347
Jesse Barnes020f6702011-06-24 12:19:25 -0700348 if (intel_crtc->bpp > 24)
349 sdvox |= COLOR_FORMAT_12bpc;
350 else
351 sdvox |= COLOR_FORMAT_8bpc;
352
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800353 /* Required on CPT */
354 if (intel_hdmi->has_hdmi_sink && HAS_PCH_CPT(dev))
355 sdvox |= HDMI_MODE_SELECT;
356
David Härdeman3c17fe42010-09-24 21:44:32 +0200357 if (intel_hdmi->has_audio) {
Wu Fengguange0dac652011-09-05 14:25:34 +0800358 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
359 pipe_name(intel_crtc->pipe));
Eric Anholt7d573822009-01-02 13:33:00 -0800360 sdvox |= SDVO_AUDIO_ENABLE;
David Härdeman3c17fe42010-09-24 21:44:32 +0200361 sdvox |= SDVO_NULL_PACKETS_DURING_VSYNC;
Wu Fengguange0dac652011-09-05 14:25:34 +0800362 intel_write_eld(encoder, adjusted_mode);
David Härdeman3c17fe42010-09-24 21:44:32 +0200363 }
Eric Anholt7d573822009-01-02 13:33:00 -0800364
Jesse Barnes75770562011-10-12 09:01:58 -0700365 if (HAS_PCH_CPT(dev))
366 sdvox |= PORT_TRANS_SEL_CPT(intel_crtc->pipe);
367 else if (intel_crtc->pipe == 1)
368 sdvox |= SDVO_PIPE_B_SELECT;
Eric Anholt7d573822009-01-02 13:33:00 -0800369
Chris Wilsonea5b2132010-08-04 13:50:23 +0100370 I915_WRITE(intel_hdmi->sdvox_reg, sdvox);
371 POSTING_READ(intel_hdmi->sdvox_reg);
David Härdeman3c17fe42010-09-24 21:44:32 +0200372
Paulo Zanonic846b612012-04-13 16:31:41 -0300373 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700374 intel_hdmi_set_spd_infoframe(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800375}
376
377static void intel_hdmi_dpms(struct drm_encoder *encoder, int mode)
378{
379 struct drm_device *dev = encoder->dev;
380 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100381 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800382 u32 temp;
Wu Fengguang2deed762011-12-09 20:42:20 +0800383 u32 enable_bits = SDVO_ENABLE;
384
385 if (intel_hdmi->has_audio)
386 enable_bits |= SDVO_AUDIO_ENABLE;
Eric Anholt7d573822009-01-02 13:33:00 -0800387
Chris Wilsonea5b2132010-08-04 13:50:23 +0100388 temp = I915_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000389
390 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
391 * we do this anyway which shows more stable in testing.
392 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800393 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100394 I915_WRITE(intel_hdmi->sdvox_reg, temp & ~SDVO_ENABLE);
395 POSTING_READ(intel_hdmi->sdvox_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800396 }
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000397
398 if (mode != DRM_MODE_DPMS_ON) {
Wu Fengguang2deed762011-12-09 20:42:20 +0800399 temp &= ~enable_bits;
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000400 } else {
Wu Fengguang2deed762011-12-09 20:42:20 +0800401 temp |= enable_bits;
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000402 }
403
Chris Wilsonea5b2132010-08-04 13:50:23 +0100404 I915_WRITE(intel_hdmi->sdvox_reg, temp);
405 POSTING_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000406
407 /* HW workaround, need to write this twice for issue that may result
408 * in first write getting masked.
409 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800410 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100411 I915_WRITE(intel_hdmi->sdvox_reg, temp);
412 POSTING_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000413 }
Eric Anholt7d573822009-01-02 13:33:00 -0800414}
415
Eric Anholt7d573822009-01-02 13:33:00 -0800416static int intel_hdmi_mode_valid(struct drm_connector *connector,
417 struct drm_display_mode *mode)
418{
419 if (mode->clock > 165000)
420 return MODE_CLOCK_HIGH;
421 if (mode->clock < 20000)
Nicolas Kaiser5cbba412011-05-30 12:48:26 +0200422 return MODE_CLOCK_LOW;
Eric Anholt7d573822009-01-02 13:33:00 -0800423
424 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
425 return MODE_NO_DBLESCAN;
426
427 return MODE_OK;
428}
429
430static bool intel_hdmi_mode_fixup(struct drm_encoder *encoder,
431 struct drm_display_mode *mode,
432 struct drm_display_mode *adjusted_mode)
433{
434 return true;
435}
436
Keith Packardaa93d632009-05-05 09:52:46 -0700437static enum drm_connector_status
Chris Wilson930a9e22010-09-14 11:07:23 +0100438intel_hdmi_detect(struct drm_connector *connector, bool force)
Ma Ling9dff6af2009-04-02 13:13:26 +0800439{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100440 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700441 struct drm_i915_private *dev_priv = connector->dev->dev_private;
442 struct edid *edid;
Keith Packardaa93d632009-05-05 09:52:46 -0700443 enum drm_connector_status status = connector_status_disconnected;
Ma Ling9dff6af2009-04-02 13:13:26 +0800444
Chris Wilsonea5b2132010-08-04 13:50:23 +0100445 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800446 intel_hdmi->has_audio = false;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700447 edid = drm_get_edid(connector,
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800448 intel_gmbus_get_adapter(dev_priv,
449 intel_hdmi->ddc_bus));
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800450
Keith Packardaa93d632009-05-05 09:52:46 -0700451 if (edid) {
Eric Anholtbe9f1c42009-06-21 22:14:55 -0700452 if (edid->input & DRM_EDID_INPUT_DIGITAL) {
Keith Packardaa93d632009-05-05 09:52:46 -0700453 status = connector_status_connected;
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800454 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
455 intel_hdmi->has_hdmi_sink =
456 drm_detect_hdmi_monitor(edid);
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800457 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
Keith Packardaa93d632009-05-05 09:52:46 -0700458 }
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800459 connector->display_info.raw_edid = NULL;
Keith Packardaa93d632009-05-05 09:52:46 -0700460 kfree(edid);
Ma Ling9dff6af2009-04-02 13:13:26 +0800461 }
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800462
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100463 if (status == connector_status_connected) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800464 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
465 intel_hdmi->has_audio =
466 (intel_hdmi->force_audio == HDMI_AUDIO_ON);
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100467 }
468
Keith Packardaa93d632009-05-05 09:52:46 -0700469 return status;
Ma Ling9dff6af2009-04-02 13:13:26 +0800470}
471
Eric Anholt7d573822009-01-02 13:33:00 -0800472static int intel_hdmi_get_modes(struct drm_connector *connector)
473{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100474 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700475 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Eric Anholt7d573822009-01-02 13:33:00 -0800476
477 /* We should parse the EDID data and find out if it's an HDMI sink so
478 * we can send audio to it.
479 */
480
Chris Wilsonf899fc62010-07-20 15:44:45 -0700481 return intel_ddc_get_modes(connector,
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800482 intel_gmbus_get_adapter(dev_priv,
483 intel_hdmi->ddc_bus));
Eric Anholt7d573822009-01-02 13:33:00 -0800484}
485
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000486static bool
487intel_hdmi_detect_audio(struct drm_connector *connector)
488{
489 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
490 struct drm_i915_private *dev_priv = connector->dev->dev_private;
491 struct edid *edid;
492 bool has_audio = false;
493
494 edid = drm_get_edid(connector,
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800495 intel_gmbus_get_adapter(dev_priv,
496 intel_hdmi->ddc_bus));
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000497 if (edid) {
498 if (edid->input & DRM_EDID_INPUT_DIGITAL)
499 has_audio = drm_detect_monitor_audio(edid);
500
501 connector->display_info.raw_edid = NULL;
502 kfree(edid);
503 }
504
505 return has_audio;
506}
507
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100508static int
509intel_hdmi_set_property(struct drm_connector *connector,
510 struct drm_property *property,
511 uint64_t val)
512{
513 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +0000514 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100515 int ret;
516
517 ret = drm_connector_property_set_value(connector, property, val);
518 if (ret)
519 return ret;
520
Chris Wilson3f43c482011-05-12 22:17:24 +0100521 if (property == dev_priv->force_audio_property) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800522 enum hdmi_force_audio i = val;
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000523 bool has_audio;
524
525 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100526 return 0;
527
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000528 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100529
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800530 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000531 has_audio = intel_hdmi_detect_audio(connector);
532 else
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800533 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000534
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800535 if (i == HDMI_AUDIO_OFF_DVI)
536 intel_hdmi->has_hdmi_sink = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100537
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000538 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100539 goto done;
540 }
541
Chris Wilsone953fd72011-02-21 22:23:52 +0000542 if (property == dev_priv->broadcast_rgb_property) {
543 if (val == !!intel_hdmi->color_range)
544 return 0;
545
546 intel_hdmi->color_range = val ? SDVO_COLOR_RANGE_16_235 : 0;
547 goto done;
548 }
549
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100550 return -EINVAL;
551
552done:
553 if (intel_hdmi->base.base.crtc) {
554 struct drm_crtc *crtc = intel_hdmi->base.base.crtc;
555 drm_crtc_helper_set_mode(crtc, &crtc->mode,
556 crtc->x, crtc->y,
557 crtc->fb);
558 }
559
560 return 0;
561}
562
Eric Anholt7d573822009-01-02 13:33:00 -0800563static void intel_hdmi_destroy(struct drm_connector *connector)
564{
Eric Anholt7d573822009-01-02 13:33:00 -0800565 drm_sysfs_connector_remove(connector);
566 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800567 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -0800568}
569
570static const struct drm_encoder_helper_funcs intel_hdmi_helper_funcs = {
571 .dpms = intel_hdmi_dpms,
572 .mode_fixup = intel_hdmi_mode_fixup,
573 .prepare = intel_encoder_prepare,
574 .mode_set = intel_hdmi_mode_set,
575 .commit = intel_encoder_commit,
576};
577
578static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Keith Packardc9fb15f2009-05-30 20:42:28 -0700579 .dpms = drm_helper_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -0800580 .detect = intel_hdmi_detect,
581 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100582 .set_property = intel_hdmi_set_property,
Eric Anholt7d573822009-01-02 13:33:00 -0800583 .destroy = intel_hdmi_destroy,
584};
585
586static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
587 .get_modes = intel_hdmi_get_modes,
588 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +0100589 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -0800590};
591
Eric Anholt7d573822009-01-02 13:33:00 -0800592static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100593 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -0800594};
595
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100596static void
597intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
598{
Chris Wilson3f43c482011-05-12 22:17:24 +0100599 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +0000600 intel_attach_broadcast_rgb_property(connector);
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100601}
602
Eric Anholt7d573822009-01-02 13:33:00 -0800603void intel_hdmi_init(struct drm_device *dev, int sdvox_reg)
604{
605 struct drm_i915_private *dev_priv = dev->dev_private;
606 struct drm_connector *connector;
Eric Anholt21d40d32010-03-25 11:11:14 -0700607 struct intel_encoder *intel_encoder;
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800608 struct intel_connector *intel_connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100609 struct intel_hdmi *intel_hdmi;
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530610 int i;
Eric Anholt7d573822009-01-02 13:33:00 -0800611
Chris Wilsonea5b2132010-08-04 13:50:23 +0100612 intel_hdmi = kzalloc(sizeof(struct intel_hdmi), GFP_KERNEL);
613 if (!intel_hdmi)
Eric Anholt7d573822009-01-02 13:33:00 -0800614 return;
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800615
616 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
617 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100618 kfree(intel_hdmi);
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800619 return;
620 }
621
Chris Wilsonea5b2132010-08-04 13:50:23 +0100622 intel_encoder = &intel_hdmi->base;
Chris Wilson373a3cf2010-09-15 12:03:59 +0100623 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
624 DRM_MODE_ENCODER_TMDS);
625
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800626 connector = &intel_connector->base;
Eric Anholt7d573822009-01-02 13:33:00 -0800627 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -0400628 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -0800629 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
630
Eric Anholt21d40d32010-03-25 11:11:14 -0700631 intel_encoder->type = INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -0800632
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000633 connector->polled = DRM_CONNECTOR_POLL_HPD;
Peter Rossc3febcc2012-01-28 14:49:26 +0100634 connector->interlace_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -0800635 connector->doublescan_allowed = 0;
Jesse Barnes27f82272011-09-02 12:54:37 -0700636 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Eric Anholt7d573822009-01-02 13:33:00 -0800637
638 /* Set up the DDC bus. */
Ma Lingf8aed702009-08-24 13:50:24 +0800639 if (sdvox_reg == SDVOB) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700640 intel_encoder->clone_mask = (1 << INTEL_HDMIB_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700641 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800642 dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800643 } else if (sdvox_reg == SDVOC) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700644 intel_encoder->clone_mask = (1 << INTEL_HDMIC_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700645 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800646 dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800647 } else if (sdvox_reg == HDMIB) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700648 intel_encoder->clone_mask = (1 << INTEL_HDMID_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700649 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800650 dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800651 } else if (sdvox_reg == HDMIC) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700652 intel_encoder->clone_mask = (1 << INTEL_HDMIE_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700653 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800654 dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800655 } else if (sdvox_reg == HDMID) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700656 intel_encoder->clone_mask = (1 << INTEL_HDMIF_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700657 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800658 dev_priv->hotplug_supported_mask |= HDMID_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800659 }
Eric Anholt7d573822009-01-02 13:33:00 -0800660
Chris Wilsonea5b2132010-08-04 13:50:23 +0100661 intel_hdmi->sdvox_reg = sdvox_reg;
Eric Anholt7d573822009-01-02 13:33:00 -0800662
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530663 if (!HAS_PCH_SPLIT(dev)) {
Jesse Barnes45187ac2011-08-03 09:22:55 -0700664 intel_hdmi->write_infoframe = i9xx_write_infoframe;
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530665 I915_WRITE(VIDEO_DIP_CTL, 0);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700666 } else if (IS_VALLEYVIEW(dev)) {
667 intel_hdmi->write_infoframe = vlv_write_infoframe;
668 for_each_pipe(i)
669 I915_WRITE(VLV_TVIDEO_DIP_CTL(i), 0);
Paulo Zanonifdf12502012-05-04 17:18:24 -0300670 } else if (HAS_PCH_IBX(dev)) {
671 intel_hdmi->write_infoframe = ibx_write_infoframe;
672 for_each_pipe(i)
673 I915_WRITE(TVIDEO_DIP_CTL(i), 0);
674 } else {
675 intel_hdmi->write_infoframe = cpt_write_infoframe;
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530676 for_each_pipe(i)
677 I915_WRITE(TVIDEO_DIP_CTL(i), 0);
678 }
Jesse Barnes45187ac2011-08-03 09:22:55 -0700679
Chris Wilson4ef69c72010-09-09 15:14:28 +0100680 drm_encoder_helper_add(&intel_encoder->base, &intel_hdmi_helper_funcs);
Eric Anholt7d573822009-01-02 13:33:00 -0800681
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100682 intel_hdmi_add_properties(intel_hdmi, connector);
683
Chris Wilsondf0e9242010-09-09 16:20:55 +0100684 intel_connector_attach_encoder(intel_connector, intel_encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800685 drm_sysfs_connector_add(connector);
686
687 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
688 * 0xd. Failure to do so will result in spurious interrupts being
689 * generated on the port when a cable is not attached.
690 */
691 if (IS_G4X(dev) && !IS_GM45(dev)) {
692 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
693 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
694 }
Eric Anholt7d573822009-01-02 13:33:00 -0800695}