blob: 4a4ee8b25f2f655ab2e3757a04f651149473959b [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
Jesse Barnes45187ac2011-08-03 09:22:55 -0700173static void ironlake_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;
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300183 u32 val = I915_READ(reg);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700184
185 intel_wait_for_vblank(dev, intel_crtc->pipe);
186
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530187 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300188 val |= intel_infoframe_index(frame);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700189
Paulo Zanoniecb97852012-05-04 17:18:21 -0300190 /* 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
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300197 val |= VIDEO_DIP_ENABLE;
198
199 I915_WRITE(reg, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700200
201 for (i = 0; i < len; i += 4) {
202 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
203 data++;
204 }
205
Paulo Zanonifa193ff2012-05-04 17:18:20 -0300206 val |= intel_infoframe_enable(frame);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300207 val &= ~VIDEO_DIP_FREQ_MASK;
Paulo Zanonifa193ff2012-05-04 17:18:20 -0300208 val |= intel_infoframe_frequency(frame);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700209
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300210 I915_WRITE(reg, val);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700211}
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700212
213static void vlv_write_infoframe(struct drm_encoder *encoder,
214 struct dip_infoframe *frame)
215{
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 = VLV_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);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700224
225 intel_wait_for_vblank(dev, intel_crtc->pipe);
226
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700227 val &= ~(VIDEO_DIP_SELECT_MASK | 0xf); /* clear DIP data offset */
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300228 val |= intel_infoframe_index(frame);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700229
Paulo Zanoniecb97852012-05-04 17:18:21 -0300230 val &= ~intel_infoframe_enable(frame);
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300231 val |= VIDEO_DIP_ENABLE;
232
233 I915_WRITE(reg, val);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700234
235 for (i = 0; i < len; i += 4) {
236 I915_WRITE(VLV_TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
237 data++;
238 }
239
Paulo Zanonifa193ff2012-05-04 17:18:20 -0300240 val |= intel_infoframe_enable(frame);
Paulo Zanoni60c5ea22012-05-04 17:18:22 -0300241 val &= ~VIDEO_DIP_FREQ_MASK;
Paulo Zanonifa193ff2012-05-04 17:18:20 -0300242 val |= intel_infoframe_frequency(frame);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700243
Paulo Zanoni22509ec2012-05-04 17:18:17 -0300244 I915_WRITE(reg, val);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700245}
246
Jesse Barnes45187ac2011-08-03 09:22:55 -0700247static void intel_set_infoframe(struct drm_encoder *encoder,
248 struct dip_infoframe *frame)
249{
250 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
251
252 if (!intel_hdmi->has_hdmi_sink)
253 return;
254
255 intel_dip_infoframe_csum(frame);
256 intel_hdmi->write_infoframe(encoder, frame);
257}
258
Paulo Zanonic846b612012-04-13 16:31:41 -0300259static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder,
260 struct drm_display_mode *adjusted_mode)
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700261{
262 struct dip_infoframe avi_if = {
263 .type = DIP_TYPE_AVI,
264 .ver = DIP_VERSION_AVI,
265 .len = DIP_LEN_AVI,
266 };
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700267
Paulo Zanonic846b612012-04-13 16:31:41 -0300268 if (adjusted_mode->flags & DRM_MODE_FLAG_DBLCLK)
269 avi_if.body.avi.YQ_CN_PR |= DIP_AVI_PR_2;
270
Jesse Barnes45187ac2011-08-03 09:22:55 -0700271 intel_set_infoframe(encoder, &avi_if);
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700272}
273
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700274static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
275{
276 struct dip_infoframe spd_if;
277
278 memset(&spd_if, 0, sizeof(spd_if));
279 spd_if.type = DIP_TYPE_SPD;
280 spd_if.ver = DIP_VERSION_SPD;
281 spd_if.len = DIP_LEN_SPD;
282 strcpy(spd_if.body.spd.vn, "Intel");
283 strcpy(spd_if.body.spd.pd, "Integrated gfx");
284 spd_if.body.spd.sdi = DIP_SPD_PC;
285
286 intel_set_infoframe(encoder, &spd_if);
287}
288
Eric Anholt7d573822009-01-02 13:33:00 -0800289static void intel_hdmi_mode_set(struct drm_encoder *encoder,
290 struct drm_display_mode *mode,
291 struct drm_display_mode *adjusted_mode)
292{
293 struct drm_device *dev = encoder->dev;
294 struct drm_i915_private *dev_priv = dev->dev_private;
295 struct drm_crtc *crtc = encoder->crtc;
296 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100297 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800298 u32 sdvox;
299
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400300 sdvox = SDVO_ENCODING_HDMI | SDVO_BORDER_ENABLE;
Jesse Barnes5d4fac92011-06-24 12:19:19 -0700301 if (!HAS_PCH_SPLIT(dev))
302 sdvox |= intel_hdmi->color_range;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400303 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
304 sdvox |= SDVO_VSYNC_ACTIVE_HIGH;
305 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
306 sdvox |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800307
Jesse Barnes020f6702011-06-24 12:19:25 -0700308 if (intel_crtc->bpp > 24)
309 sdvox |= COLOR_FORMAT_12bpc;
310 else
311 sdvox |= COLOR_FORMAT_8bpc;
312
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800313 /* Required on CPT */
314 if (intel_hdmi->has_hdmi_sink && HAS_PCH_CPT(dev))
315 sdvox |= HDMI_MODE_SELECT;
316
David Härdeman3c17fe42010-09-24 21:44:32 +0200317 if (intel_hdmi->has_audio) {
Wu Fengguange0dac652011-09-05 14:25:34 +0800318 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
319 pipe_name(intel_crtc->pipe));
Eric Anholt7d573822009-01-02 13:33:00 -0800320 sdvox |= SDVO_AUDIO_ENABLE;
David Härdeman3c17fe42010-09-24 21:44:32 +0200321 sdvox |= SDVO_NULL_PACKETS_DURING_VSYNC;
Wu Fengguange0dac652011-09-05 14:25:34 +0800322 intel_write_eld(encoder, adjusted_mode);
David Härdeman3c17fe42010-09-24 21:44:32 +0200323 }
Eric Anholt7d573822009-01-02 13:33:00 -0800324
Jesse Barnes75770562011-10-12 09:01:58 -0700325 if (HAS_PCH_CPT(dev))
326 sdvox |= PORT_TRANS_SEL_CPT(intel_crtc->pipe);
327 else if (intel_crtc->pipe == 1)
328 sdvox |= SDVO_PIPE_B_SELECT;
Eric Anholt7d573822009-01-02 13:33:00 -0800329
Chris Wilsonea5b2132010-08-04 13:50:23 +0100330 I915_WRITE(intel_hdmi->sdvox_reg, sdvox);
331 POSTING_READ(intel_hdmi->sdvox_reg);
David Härdeman3c17fe42010-09-24 21:44:32 +0200332
Paulo Zanonic846b612012-04-13 16:31:41 -0300333 intel_hdmi_set_avi_infoframe(encoder, adjusted_mode);
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700334 intel_hdmi_set_spd_infoframe(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800335}
336
337static void intel_hdmi_dpms(struct drm_encoder *encoder, int mode)
338{
339 struct drm_device *dev = encoder->dev;
340 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100341 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800342 u32 temp;
Wu Fengguang2deed762011-12-09 20:42:20 +0800343 u32 enable_bits = SDVO_ENABLE;
344
345 if (intel_hdmi->has_audio)
346 enable_bits |= SDVO_AUDIO_ENABLE;
Eric Anholt7d573822009-01-02 13:33:00 -0800347
Chris Wilsonea5b2132010-08-04 13:50:23 +0100348 temp = I915_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000349
350 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
351 * we do this anyway which shows more stable in testing.
352 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800353 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100354 I915_WRITE(intel_hdmi->sdvox_reg, temp & ~SDVO_ENABLE);
355 POSTING_READ(intel_hdmi->sdvox_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800356 }
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000357
358 if (mode != DRM_MODE_DPMS_ON) {
Wu Fengguang2deed762011-12-09 20:42:20 +0800359 temp &= ~enable_bits;
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000360 } else {
Wu Fengguang2deed762011-12-09 20:42:20 +0800361 temp |= enable_bits;
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000362 }
363
Chris Wilsonea5b2132010-08-04 13:50:23 +0100364 I915_WRITE(intel_hdmi->sdvox_reg, temp);
365 POSTING_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000366
367 /* HW workaround, need to write this twice for issue that may result
368 * in first write getting masked.
369 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800370 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100371 I915_WRITE(intel_hdmi->sdvox_reg, temp);
372 POSTING_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000373 }
Eric Anholt7d573822009-01-02 13:33:00 -0800374}
375
Eric Anholt7d573822009-01-02 13:33:00 -0800376static int intel_hdmi_mode_valid(struct drm_connector *connector,
377 struct drm_display_mode *mode)
378{
379 if (mode->clock > 165000)
380 return MODE_CLOCK_HIGH;
381 if (mode->clock < 20000)
Nicolas Kaiser5cbba412011-05-30 12:48:26 +0200382 return MODE_CLOCK_LOW;
Eric Anholt7d573822009-01-02 13:33:00 -0800383
384 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
385 return MODE_NO_DBLESCAN;
386
387 return MODE_OK;
388}
389
390static bool intel_hdmi_mode_fixup(struct drm_encoder *encoder,
391 struct drm_display_mode *mode,
392 struct drm_display_mode *adjusted_mode)
393{
394 return true;
395}
396
Keith Packardaa93d632009-05-05 09:52:46 -0700397static enum drm_connector_status
Chris Wilson930a9e22010-09-14 11:07:23 +0100398intel_hdmi_detect(struct drm_connector *connector, bool force)
Ma Ling9dff6af2009-04-02 13:13:26 +0800399{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100400 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700401 struct drm_i915_private *dev_priv = connector->dev->dev_private;
402 struct edid *edid;
Keith Packardaa93d632009-05-05 09:52:46 -0700403 enum drm_connector_status status = connector_status_disconnected;
Ma Ling9dff6af2009-04-02 13:13:26 +0800404
Chris Wilsonea5b2132010-08-04 13:50:23 +0100405 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800406 intel_hdmi->has_audio = false;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700407 edid = drm_get_edid(connector,
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800408 intel_gmbus_get_adapter(dev_priv,
409 intel_hdmi->ddc_bus));
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800410
Keith Packardaa93d632009-05-05 09:52:46 -0700411 if (edid) {
Eric Anholtbe9f1c42009-06-21 22:14:55 -0700412 if (edid->input & DRM_EDID_INPUT_DIGITAL) {
Keith Packardaa93d632009-05-05 09:52:46 -0700413 status = connector_status_connected;
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800414 if (intel_hdmi->force_audio != HDMI_AUDIO_OFF_DVI)
415 intel_hdmi->has_hdmi_sink =
416 drm_detect_hdmi_monitor(edid);
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800417 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
Keith Packardaa93d632009-05-05 09:52:46 -0700418 }
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800419 connector->display_info.raw_edid = NULL;
Keith Packardaa93d632009-05-05 09:52:46 -0700420 kfree(edid);
Ma Ling9dff6af2009-04-02 13:13:26 +0800421 }
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800422
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100423 if (status == connector_status_connected) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800424 if (intel_hdmi->force_audio != HDMI_AUDIO_AUTO)
425 intel_hdmi->has_audio =
426 (intel_hdmi->force_audio == HDMI_AUDIO_ON);
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100427 }
428
Keith Packardaa93d632009-05-05 09:52:46 -0700429 return status;
Ma Ling9dff6af2009-04-02 13:13:26 +0800430}
431
Eric Anholt7d573822009-01-02 13:33:00 -0800432static int intel_hdmi_get_modes(struct drm_connector *connector)
433{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100434 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700435 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Eric Anholt7d573822009-01-02 13:33:00 -0800436
437 /* We should parse the EDID data and find out if it's an HDMI sink so
438 * we can send audio to it.
439 */
440
Chris Wilsonf899fc62010-07-20 15:44:45 -0700441 return intel_ddc_get_modes(connector,
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800442 intel_gmbus_get_adapter(dev_priv,
443 intel_hdmi->ddc_bus));
Eric Anholt7d573822009-01-02 13:33:00 -0800444}
445
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000446static bool
447intel_hdmi_detect_audio(struct drm_connector *connector)
448{
449 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
450 struct drm_i915_private *dev_priv = connector->dev->dev_private;
451 struct edid *edid;
452 bool has_audio = false;
453
454 edid = drm_get_edid(connector,
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800455 intel_gmbus_get_adapter(dev_priv,
456 intel_hdmi->ddc_bus));
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000457 if (edid) {
458 if (edid->input & DRM_EDID_INPUT_DIGITAL)
459 has_audio = drm_detect_monitor_audio(edid);
460
461 connector->display_info.raw_edid = NULL;
462 kfree(edid);
463 }
464
465 return has_audio;
466}
467
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100468static int
469intel_hdmi_set_property(struct drm_connector *connector,
470 struct drm_property *property,
471 uint64_t val)
472{
473 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +0000474 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100475 int ret;
476
477 ret = drm_connector_property_set_value(connector, property, val);
478 if (ret)
479 return ret;
480
Chris Wilson3f43c482011-05-12 22:17:24 +0100481 if (property == dev_priv->force_audio_property) {
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800482 enum hdmi_force_audio i = val;
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000483 bool has_audio;
484
485 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100486 return 0;
487
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000488 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100489
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800490 if (i == HDMI_AUDIO_AUTO)
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000491 has_audio = intel_hdmi_detect_audio(connector);
492 else
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800493 has_audio = (i == HDMI_AUDIO_ON);
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000494
Wu Fengguangb1d7e4b2012-02-14 11:45:36 +0800495 if (i == HDMI_AUDIO_OFF_DVI)
496 intel_hdmi->has_hdmi_sink = 0;
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100497
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000498 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100499 goto done;
500 }
501
Chris Wilsone953fd72011-02-21 22:23:52 +0000502 if (property == dev_priv->broadcast_rgb_property) {
503 if (val == !!intel_hdmi->color_range)
504 return 0;
505
506 intel_hdmi->color_range = val ? SDVO_COLOR_RANGE_16_235 : 0;
507 goto done;
508 }
509
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100510 return -EINVAL;
511
512done:
513 if (intel_hdmi->base.base.crtc) {
514 struct drm_crtc *crtc = intel_hdmi->base.base.crtc;
515 drm_crtc_helper_set_mode(crtc, &crtc->mode,
516 crtc->x, crtc->y,
517 crtc->fb);
518 }
519
520 return 0;
521}
522
Eric Anholt7d573822009-01-02 13:33:00 -0800523static void intel_hdmi_destroy(struct drm_connector *connector)
524{
Eric Anholt7d573822009-01-02 13:33:00 -0800525 drm_sysfs_connector_remove(connector);
526 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800527 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -0800528}
529
530static const struct drm_encoder_helper_funcs intel_hdmi_helper_funcs = {
531 .dpms = intel_hdmi_dpms,
532 .mode_fixup = intel_hdmi_mode_fixup,
533 .prepare = intel_encoder_prepare,
534 .mode_set = intel_hdmi_mode_set,
535 .commit = intel_encoder_commit,
536};
537
538static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Keith Packardc9fb15f2009-05-30 20:42:28 -0700539 .dpms = drm_helper_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -0800540 .detect = intel_hdmi_detect,
541 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100542 .set_property = intel_hdmi_set_property,
Eric Anholt7d573822009-01-02 13:33:00 -0800543 .destroy = intel_hdmi_destroy,
544};
545
546static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
547 .get_modes = intel_hdmi_get_modes,
548 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +0100549 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -0800550};
551
Eric Anholt7d573822009-01-02 13:33:00 -0800552static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100553 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -0800554};
555
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100556static void
557intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
558{
Chris Wilson3f43c482011-05-12 22:17:24 +0100559 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +0000560 intel_attach_broadcast_rgb_property(connector);
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100561}
562
Eric Anholt7d573822009-01-02 13:33:00 -0800563void intel_hdmi_init(struct drm_device *dev, int sdvox_reg)
564{
565 struct drm_i915_private *dev_priv = dev->dev_private;
566 struct drm_connector *connector;
Eric Anholt21d40d32010-03-25 11:11:14 -0700567 struct intel_encoder *intel_encoder;
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800568 struct intel_connector *intel_connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100569 struct intel_hdmi *intel_hdmi;
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530570 int i;
Eric Anholt7d573822009-01-02 13:33:00 -0800571
Chris Wilsonea5b2132010-08-04 13:50:23 +0100572 intel_hdmi = kzalloc(sizeof(struct intel_hdmi), GFP_KERNEL);
573 if (!intel_hdmi)
Eric Anholt7d573822009-01-02 13:33:00 -0800574 return;
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800575
576 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
577 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100578 kfree(intel_hdmi);
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800579 return;
580 }
581
Chris Wilsonea5b2132010-08-04 13:50:23 +0100582 intel_encoder = &intel_hdmi->base;
Chris Wilson373a3cf2010-09-15 12:03:59 +0100583 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
584 DRM_MODE_ENCODER_TMDS);
585
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800586 connector = &intel_connector->base;
Eric Anholt7d573822009-01-02 13:33:00 -0800587 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -0400588 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -0800589 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
590
Eric Anholt21d40d32010-03-25 11:11:14 -0700591 intel_encoder->type = INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -0800592
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000593 connector->polled = DRM_CONNECTOR_POLL_HPD;
Peter Rossc3febcc2012-01-28 14:49:26 +0100594 connector->interlace_allowed = 1;
Eric Anholt7d573822009-01-02 13:33:00 -0800595 connector->doublescan_allowed = 0;
Jesse Barnes27f82272011-09-02 12:54:37 -0700596 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Eric Anholt7d573822009-01-02 13:33:00 -0800597
598 /* Set up the DDC bus. */
Ma Lingf8aed702009-08-24 13:50:24 +0800599 if (sdvox_reg == SDVOB) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700600 intel_encoder->clone_mask = (1 << INTEL_HDMIB_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700601 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800602 dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800603 } else if (sdvox_reg == SDVOC) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700604 intel_encoder->clone_mask = (1 << INTEL_HDMIC_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700605 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800606 dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800607 } else if (sdvox_reg == HDMIB) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700608 intel_encoder->clone_mask = (1 << INTEL_HDMID_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700609 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800610 dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800611 } else if (sdvox_reg == HDMIC) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700612 intel_encoder->clone_mask = (1 << INTEL_HDMIE_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700613 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800614 dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800615 } else if (sdvox_reg == HDMID) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700616 intel_encoder->clone_mask = (1 << INTEL_HDMIF_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700617 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800618 dev_priv->hotplug_supported_mask |= HDMID_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800619 }
Eric Anholt7d573822009-01-02 13:33:00 -0800620
Chris Wilsonea5b2132010-08-04 13:50:23 +0100621 intel_hdmi->sdvox_reg = sdvox_reg;
Eric Anholt7d573822009-01-02 13:33:00 -0800622
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530623 if (!HAS_PCH_SPLIT(dev)) {
Jesse Barnes45187ac2011-08-03 09:22:55 -0700624 intel_hdmi->write_infoframe = i9xx_write_infoframe;
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530625 I915_WRITE(VIDEO_DIP_CTL, 0);
Shobhit Kumar90b107c2012-03-28 13:39:32 -0700626 } else if (IS_VALLEYVIEW(dev)) {
627 intel_hdmi->write_infoframe = vlv_write_infoframe;
628 for_each_pipe(i)
629 I915_WRITE(VLV_TVIDEO_DIP_CTL(i), 0);
630 } else {
Jesse Barnes45187ac2011-08-03 09:22:55 -0700631 intel_hdmi->write_infoframe = ironlake_write_infoframe;
Jesse Barnes64a8fc02011-09-22 11:16:00 +0530632 for_each_pipe(i)
633 I915_WRITE(TVIDEO_DIP_CTL(i), 0);
634 }
Jesse Barnes45187ac2011-08-03 09:22:55 -0700635
Chris Wilson4ef69c72010-09-09 15:14:28 +0100636 drm_encoder_helper_add(&intel_encoder->base, &intel_hdmi_helper_funcs);
Eric Anholt7d573822009-01-02 13:33:00 -0800637
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100638 intel_hdmi_add_properties(intel_hdmi, connector);
639
Chris Wilsondf0e9242010-09-09 16:20:55 +0100640 intel_connector_attach_encoder(intel_connector, intel_encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800641 drm_sysfs_connector_add(connector);
642
643 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
644 * 0xd. Failure to do so will result in spurious interrupts being
645 * generated on the port when a cable is not attached.
646 */
647 if (IS_G4X(dev) && !IS_GM45(dev)) {
648 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
649 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
650 }
Eric Anholt7d573822009-01-02 13:33:00 -0800651}