blob: 185c5aa1bb25b50563615e1bb1eb0697b46bd6f4 [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;
Chris Wilson55b7d6e82010-09-19 09:29:33 +010047 int 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 Barnes45187ac2011-08-03 09:22:55 -070072 /* Header isn't part of the checksum */
73 for (i = 5; i < frame->len; i++)
David Härdeman3c17fe42010-09-24 21:44:32 +020074 sum += data[i];
75
Jesse Barnes45187ac2011-08-03 09:22:55 -070076 frame->checksum = 0x100 - sum;
David Härdeman3c17fe42010-09-24 21:44:32 +020077}
78
Jesse Barnes45187ac2011-08-03 09:22:55 -070079static u32 intel_infoframe_index(struct dip_infoframe *frame)
David Härdeman3c17fe42010-09-24 21:44:32 +020080{
Jesse Barnes45187ac2011-08-03 09:22:55 -070081 u32 flags = 0;
82
83 switch (frame->type) {
84 case DIP_TYPE_AVI:
85 flags |= VIDEO_DIP_SELECT_AVI;
86 break;
87 case DIP_TYPE_SPD:
88 flags |= VIDEO_DIP_SELECT_SPD;
89 break;
90 default:
91 DRM_DEBUG_DRIVER("unknown info frame type %d\n", frame->type);
92 break;
93 }
94
95 return flags;
96}
97
98static u32 intel_infoframe_flags(struct dip_infoframe *frame)
99{
100 u32 flags = 0;
101
102 switch (frame->type) {
103 case DIP_TYPE_AVI:
104 flags |= VIDEO_DIP_ENABLE_AVI | VIDEO_DIP_FREQ_VSYNC;
105 break;
106 case DIP_TYPE_SPD:
107 flags |= VIDEO_DIP_ENABLE_SPD | VIDEO_DIP_FREQ_2VSYNC;
108 break;
109 default:
110 DRM_DEBUG_DRIVER("unknown info frame type %d\n", frame->type);
111 break;
112 }
113
114 return flags;
115}
116
117static void i9xx_write_infoframe(struct drm_encoder *encoder,
118 struct dip_infoframe *frame)
119{
120 uint32_t *data = (uint32_t *)frame;
David Härdeman3c17fe42010-09-24 21:44:32 +0200121 struct drm_device *dev = encoder->dev;
122 struct drm_i915_private *dev_priv = dev->dev_private;
123 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Jesse Barnes45187ac2011-08-03 09:22:55 -0700124 u32 port, flags, val = I915_READ(VIDEO_DIP_CTL);
125 unsigned i, len = DIP_HEADER_SIZE + frame->len;
David Härdeman3c17fe42010-09-24 21:44:32 +0200126
David Härdeman3c17fe42010-09-24 21:44:32 +0200127
128 /* XXX first guess at handling video port, is this corrent? */
129 if (intel_hdmi->sdvox_reg == SDVOB)
130 port = VIDEO_DIP_PORT_B;
131 else if (intel_hdmi->sdvox_reg == SDVOC)
132 port = VIDEO_DIP_PORT_C;
133 else
134 return;
135
Jesse Barnes45187ac2011-08-03 09:22:55 -0700136 flags = intel_infoframe_index(frame);
David Härdeman3c17fe42010-09-24 21:44:32 +0200137
Jesse Barnes45187ac2011-08-03 09:22:55 -0700138 val &= ~VIDEO_DIP_SELECT_MASK;
139
140 I915_WRITE(VIDEO_DIP_CTL, val | port | flags);
141
142 for (i = 0; i < len; i += 4) {
David Härdeman3c17fe42010-09-24 21:44:32 +0200143 I915_WRITE(VIDEO_DIP_DATA, *data);
144 data++;
145 }
146
Jesse Barnes45187ac2011-08-03 09:22:55 -0700147 flags |= intel_infoframe_flags(frame);
148
149 I915_WRITE(VIDEO_DIP_CTL, VIDEO_DIP_ENABLE | val | port | flags);
David Härdeman3c17fe42010-09-24 21:44:32 +0200150}
151
Jesse Barnes45187ac2011-08-03 09:22:55 -0700152static void ironlake_write_infoframe(struct drm_encoder *encoder,
153 struct dip_infoframe *frame)
154{
155 uint32_t *data = (uint32_t *)frame;
156 struct drm_device *dev = encoder->dev;
157 struct drm_i915_private *dev_priv = dev->dev_private;
158 struct drm_crtc *crtc = encoder->crtc;
159 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
160 int reg = TVIDEO_DIP_CTL(intel_crtc->pipe);
161 unsigned i, len = DIP_HEADER_SIZE + frame->len;
162 u32 flags, val = I915_READ(reg);
163
164 intel_wait_for_vblank(dev, intel_crtc->pipe);
165
166 flags = intel_infoframe_index(frame);
167
168 val &= ~VIDEO_DIP_SELECT_MASK;
169
170 I915_WRITE(reg, val | flags);
171
172 for (i = 0; i < len; i += 4) {
173 I915_WRITE(TVIDEO_DIP_DATA(intel_crtc->pipe), *data);
174 data++;
175 }
176
177 flags |= intel_infoframe_flags(frame);
178
179 I915_WRITE(reg, VIDEO_DIP_ENABLE | val | flags);
180}
181static void intel_set_infoframe(struct drm_encoder *encoder,
182 struct dip_infoframe *frame)
183{
184 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
185
186 if (!intel_hdmi->has_hdmi_sink)
187 return;
188
189 intel_dip_infoframe_csum(frame);
190 intel_hdmi->write_infoframe(encoder, frame);
191}
192
193static void intel_hdmi_set_avi_infoframe(struct drm_encoder *encoder)
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700194{
195 struct dip_infoframe avi_if = {
196 .type = DIP_TYPE_AVI,
197 .ver = DIP_VERSION_AVI,
198 .len = DIP_LEN_AVI,
199 };
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700200
Jesse Barnes45187ac2011-08-03 09:22:55 -0700201 intel_set_infoframe(encoder, &avi_if);
Jesse Barnesb055c8f2011-07-08 11:31:57 -0700202}
203
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700204static void intel_hdmi_set_spd_infoframe(struct drm_encoder *encoder)
205{
206 struct dip_infoframe spd_if;
207
208 memset(&spd_if, 0, sizeof(spd_if));
209 spd_if.type = DIP_TYPE_SPD;
210 spd_if.ver = DIP_VERSION_SPD;
211 spd_if.len = DIP_LEN_SPD;
212 strcpy(spd_if.body.spd.vn, "Intel");
213 strcpy(spd_if.body.spd.pd, "Integrated gfx");
214 spd_if.body.spd.sdi = DIP_SPD_PC;
215
216 intel_set_infoframe(encoder, &spd_if);
217}
218
Eric Anholt7d573822009-01-02 13:33:00 -0800219static void intel_hdmi_mode_set(struct drm_encoder *encoder,
220 struct drm_display_mode *mode,
221 struct drm_display_mode *adjusted_mode)
222{
223 struct drm_device *dev = encoder->dev;
224 struct drm_i915_private *dev_priv = dev->dev_private;
225 struct drm_crtc *crtc = encoder->crtc;
226 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +0100227 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800228 u32 sdvox;
229
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400230 sdvox = SDVO_ENCODING_HDMI | SDVO_BORDER_ENABLE;
Jesse Barnes5d4fac92011-06-24 12:19:19 -0700231 if (!HAS_PCH_SPLIT(dev))
232 sdvox |= intel_hdmi->color_range;
Adam Jacksonb599c0b2010-07-16 14:46:31 -0400233 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
234 sdvox |= SDVO_VSYNC_ACTIVE_HIGH;
235 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
236 sdvox |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -0800237
Jesse Barnes020f6702011-06-24 12:19:25 -0700238 if (intel_crtc->bpp > 24)
239 sdvox |= COLOR_FORMAT_12bpc;
240 else
241 sdvox |= COLOR_FORMAT_8bpc;
242
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800243 /* Required on CPT */
244 if (intel_hdmi->has_hdmi_sink && HAS_PCH_CPT(dev))
245 sdvox |= HDMI_MODE_SELECT;
246
David Härdeman3c17fe42010-09-24 21:44:32 +0200247 if (intel_hdmi->has_audio) {
Wu Fengguange0dac652011-09-05 14:25:34 +0800248 DRM_DEBUG_DRIVER("Enabling HDMI audio on pipe %c\n",
249 pipe_name(intel_crtc->pipe));
Eric Anholt7d573822009-01-02 13:33:00 -0800250 sdvox |= SDVO_AUDIO_ENABLE;
David Härdeman3c17fe42010-09-24 21:44:32 +0200251 sdvox |= SDVO_NULL_PACKETS_DURING_VSYNC;
Wu Fengguange0dac652011-09-05 14:25:34 +0800252 intel_write_eld(encoder, adjusted_mode);
David Härdeman3c17fe42010-09-24 21:44:32 +0200253 }
Eric Anholt7d573822009-01-02 13:33:00 -0800254
Zhenyu Wang0f229062010-04-07 16:15:57 +0800255 if (intel_crtc->pipe == 1) {
256 if (HAS_PCH_CPT(dev))
257 sdvox |= PORT_TRANS_B_SEL_CPT;
258 else
259 sdvox |= SDVO_PIPE_B_SELECT;
260 }
Eric Anholt7d573822009-01-02 13:33:00 -0800261
Chris Wilsonea5b2132010-08-04 13:50:23 +0100262 I915_WRITE(intel_hdmi->sdvox_reg, sdvox);
263 POSTING_READ(intel_hdmi->sdvox_reg);
David Härdeman3c17fe42010-09-24 21:44:32 +0200264
Jesse Barnes45187ac2011-08-03 09:22:55 -0700265 intel_hdmi_set_avi_infoframe(encoder);
Jesse Barnesc0864cb2011-08-03 09:22:56 -0700266 intel_hdmi_set_spd_infoframe(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800267}
268
269static void intel_hdmi_dpms(struct drm_encoder *encoder, int mode)
270{
271 struct drm_device *dev = encoder->dev;
272 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100273 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800274 u32 temp;
275
Chris Wilsonea5b2132010-08-04 13:50:23 +0100276 temp = I915_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000277
278 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
279 * we do this anyway which shows more stable in testing.
280 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800281 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100282 I915_WRITE(intel_hdmi->sdvox_reg, temp & ~SDVO_ENABLE);
283 POSTING_READ(intel_hdmi->sdvox_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800284 }
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000285
286 if (mode != DRM_MODE_DPMS_ON) {
287 temp &= ~SDVO_ENABLE;
288 } else {
289 temp |= SDVO_ENABLE;
290 }
291
Chris Wilsonea5b2132010-08-04 13:50:23 +0100292 I915_WRITE(intel_hdmi->sdvox_reg, temp);
293 POSTING_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000294
295 /* HW workaround, need to write this twice for issue that may result
296 * in first write getting masked.
297 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800298 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100299 I915_WRITE(intel_hdmi->sdvox_reg, temp);
300 POSTING_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000301 }
Eric Anholt7d573822009-01-02 13:33:00 -0800302}
303
Eric Anholt7d573822009-01-02 13:33:00 -0800304static int intel_hdmi_mode_valid(struct drm_connector *connector,
305 struct drm_display_mode *mode)
306{
307 if (mode->clock > 165000)
308 return MODE_CLOCK_HIGH;
309 if (mode->clock < 20000)
Nicolas Kaiser5cbba412011-05-30 12:48:26 +0200310 return MODE_CLOCK_LOW;
Eric Anholt7d573822009-01-02 13:33:00 -0800311
312 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
313 return MODE_NO_DBLESCAN;
314
315 return MODE_OK;
316}
317
318static bool intel_hdmi_mode_fixup(struct drm_encoder *encoder,
319 struct drm_display_mode *mode,
320 struct drm_display_mode *adjusted_mode)
321{
322 return true;
323}
324
Keith Packardaa93d632009-05-05 09:52:46 -0700325static enum drm_connector_status
Chris Wilson930a9e22010-09-14 11:07:23 +0100326intel_hdmi_detect(struct drm_connector *connector, bool force)
Ma Ling9dff6af2009-04-02 13:13:26 +0800327{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100328 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700329 struct drm_i915_private *dev_priv = connector->dev->dev_private;
330 struct edid *edid;
Keith Packardaa93d632009-05-05 09:52:46 -0700331 enum drm_connector_status status = connector_status_disconnected;
Ma Ling9dff6af2009-04-02 13:13:26 +0800332
Chris Wilsonea5b2132010-08-04 13:50:23 +0100333 intel_hdmi->has_hdmi_sink = false;
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800334 intel_hdmi->has_audio = false;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700335 edid = drm_get_edid(connector,
336 &dev_priv->gmbus[intel_hdmi->ddc_bus].adapter);
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800337
Keith Packardaa93d632009-05-05 09:52:46 -0700338 if (edid) {
Eric Anholtbe9f1c42009-06-21 22:14:55 -0700339 if (edid->input & DRM_EDID_INPUT_DIGITAL) {
Keith Packardaa93d632009-05-05 09:52:46 -0700340 status = connector_status_connected;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100341 intel_hdmi->has_hdmi_sink = drm_detect_hdmi_monitor(edid);
Zhenyu Wang2e3d6002010-09-10 10:39:40 +0800342 intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
Keith Packardaa93d632009-05-05 09:52:46 -0700343 }
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800344 connector->display_info.raw_edid = NULL;
Keith Packardaa93d632009-05-05 09:52:46 -0700345 kfree(edid);
Ma Ling9dff6af2009-04-02 13:13:26 +0800346 }
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800347
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100348 if (status == connector_status_connected) {
349 if (intel_hdmi->force_audio)
350 intel_hdmi->has_audio = intel_hdmi->force_audio > 0;
351 }
352
Keith Packardaa93d632009-05-05 09:52:46 -0700353 return status;
Ma Ling9dff6af2009-04-02 13:13:26 +0800354}
355
Eric Anholt7d573822009-01-02 13:33:00 -0800356static int intel_hdmi_get_modes(struct drm_connector *connector)
357{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100358 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700359 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Eric Anholt7d573822009-01-02 13:33:00 -0800360
361 /* We should parse the EDID data and find out if it's an HDMI sink so
362 * we can send audio to it.
363 */
364
Chris Wilsonf899fc62010-07-20 15:44:45 -0700365 return intel_ddc_get_modes(connector,
366 &dev_priv->gmbus[intel_hdmi->ddc_bus].adapter);
Eric Anholt7d573822009-01-02 13:33:00 -0800367}
368
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000369static bool
370intel_hdmi_detect_audio(struct drm_connector *connector)
371{
372 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
373 struct drm_i915_private *dev_priv = connector->dev->dev_private;
374 struct edid *edid;
375 bool has_audio = false;
376
377 edid = drm_get_edid(connector,
378 &dev_priv->gmbus[intel_hdmi->ddc_bus].adapter);
379 if (edid) {
380 if (edid->input & DRM_EDID_INPUT_DIGITAL)
381 has_audio = drm_detect_monitor_audio(edid);
382
383 connector->display_info.raw_edid = NULL;
384 kfree(edid);
385 }
386
387 return has_audio;
388}
389
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100390static int
391intel_hdmi_set_property(struct drm_connector *connector,
392 struct drm_property *property,
393 uint64_t val)
394{
395 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +0000396 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100397 int ret;
398
399 ret = drm_connector_property_set_value(connector, property, val);
400 if (ret)
401 return ret;
402
Chris Wilson3f43c482011-05-12 22:17:24 +0100403 if (property == dev_priv->force_audio_property) {
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000404 int i = val;
405 bool has_audio;
406
407 if (i == intel_hdmi->force_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100408 return 0;
409
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000410 intel_hdmi->force_audio = i;
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100411
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000412 if (i == 0)
413 has_audio = intel_hdmi_detect_audio(connector);
414 else
415 has_audio = i > 0;
416
417 if (has_audio == intel_hdmi->has_audio)
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100418 return 0;
419
Chris Wilson1aad7ac2011-02-09 18:46:58 +0000420 intel_hdmi->has_audio = has_audio;
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100421 goto done;
422 }
423
Chris Wilsone953fd72011-02-21 22:23:52 +0000424 if (property == dev_priv->broadcast_rgb_property) {
425 if (val == !!intel_hdmi->color_range)
426 return 0;
427
428 intel_hdmi->color_range = val ? SDVO_COLOR_RANGE_16_235 : 0;
429 goto done;
430 }
431
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100432 return -EINVAL;
433
434done:
435 if (intel_hdmi->base.base.crtc) {
436 struct drm_crtc *crtc = intel_hdmi->base.base.crtc;
437 drm_crtc_helper_set_mode(crtc, &crtc->mode,
438 crtc->x, crtc->y,
439 crtc->fb);
440 }
441
442 return 0;
443}
444
Eric Anholt7d573822009-01-02 13:33:00 -0800445static void intel_hdmi_destroy(struct drm_connector *connector)
446{
Eric Anholt7d573822009-01-02 13:33:00 -0800447 drm_sysfs_connector_remove(connector);
448 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800449 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -0800450}
451
452static const struct drm_encoder_helper_funcs intel_hdmi_helper_funcs = {
453 .dpms = intel_hdmi_dpms,
454 .mode_fixup = intel_hdmi_mode_fixup,
455 .prepare = intel_encoder_prepare,
456 .mode_set = intel_hdmi_mode_set,
457 .commit = intel_encoder_commit,
458};
459
460static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Keith Packardc9fb15f2009-05-30 20:42:28 -0700461 .dpms = drm_helper_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -0800462 .detect = intel_hdmi_detect,
463 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100464 .set_property = intel_hdmi_set_property,
Eric Anholt7d573822009-01-02 13:33:00 -0800465 .destroy = intel_hdmi_destroy,
466};
467
468static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
469 .get_modes = intel_hdmi_get_modes,
470 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +0100471 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -0800472};
473
Eric Anholt7d573822009-01-02 13:33:00 -0800474static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100475 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -0800476};
477
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100478static void
479intel_hdmi_add_properties(struct intel_hdmi *intel_hdmi, struct drm_connector *connector)
480{
Chris Wilson3f43c482011-05-12 22:17:24 +0100481 intel_attach_force_audio_property(connector);
Chris Wilsone953fd72011-02-21 22:23:52 +0000482 intel_attach_broadcast_rgb_property(connector);
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100483}
484
Eric Anholt7d573822009-01-02 13:33:00 -0800485void intel_hdmi_init(struct drm_device *dev, int sdvox_reg)
486{
487 struct drm_i915_private *dev_priv = dev->dev_private;
488 struct drm_connector *connector;
Eric Anholt21d40d32010-03-25 11:11:14 -0700489 struct intel_encoder *intel_encoder;
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800490 struct intel_connector *intel_connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100491 struct intel_hdmi *intel_hdmi;
Eric Anholt7d573822009-01-02 13:33:00 -0800492
Chris Wilsonea5b2132010-08-04 13:50:23 +0100493 intel_hdmi = kzalloc(sizeof(struct intel_hdmi), GFP_KERNEL);
494 if (!intel_hdmi)
Eric Anholt7d573822009-01-02 13:33:00 -0800495 return;
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800496
497 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
498 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100499 kfree(intel_hdmi);
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800500 return;
501 }
502
Chris Wilsonea5b2132010-08-04 13:50:23 +0100503 intel_encoder = &intel_hdmi->base;
Chris Wilson373a3cf2010-09-15 12:03:59 +0100504 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
505 DRM_MODE_ENCODER_TMDS);
506
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800507 connector = &intel_connector->base;
Eric Anholt7d573822009-01-02 13:33:00 -0800508 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -0400509 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -0800510 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
511
Eric Anholt21d40d32010-03-25 11:11:14 -0700512 intel_encoder->type = INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -0800513
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000514 connector->polled = DRM_CONNECTOR_POLL_HPD;
Eric Anholt7d573822009-01-02 13:33:00 -0800515 connector->interlace_allowed = 0;
516 connector->doublescan_allowed = 0;
Jesse Barnes27f82272011-09-02 12:54:37 -0700517 intel_encoder->crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Eric Anholt7d573822009-01-02 13:33:00 -0800518
519 /* Set up the DDC bus. */
Ma Lingf8aed702009-08-24 13:50:24 +0800520 if (sdvox_reg == SDVOB) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700521 intel_encoder->clone_mask = (1 << INTEL_HDMIB_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700522 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800523 dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800524 } else if (sdvox_reg == SDVOC) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700525 intel_encoder->clone_mask = (1 << INTEL_HDMIC_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700526 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800527 dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800528 } else if (sdvox_reg == HDMIB) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700529 intel_encoder->clone_mask = (1 << INTEL_HDMID_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700530 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800531 dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800532 } else if (sdvox_reg == HDMIC) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700533 intel_encoder->clone_mask = (1 << INTEL_HDMIE_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700534 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800535 dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800536 } else if (sdvox_reg == HDMID) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700537 intel_encoder->clone_mask = (1 << INTEL_HDMIF_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700538 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800539 dev_priv->hotplug_supported_mask |= HDMID_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800540 }
Eric Anholt7d573822009-01-02 13:33:00 -0800541
Chris Wilsonea5b2132010-08-04 13:50:23 +0100542 intel_hdmi->sdvox_reg = sdvox_reg;
Eric Anholt7d573822009-01-02 13:33:00 -0800543
Jesse Barnes45187ac2011-08-03 09:22:55 -0700544 if (!HAS_PCH_SPLIT(dev))
545 intel_hdmi->write_infoframe = i9xx_write_infoframe;
546 else
547 intel_hdmi->write_infoframe = ironlake_write_infoframe;
548
Chris Wilson4ef69c72010-09-09 15:14:28 +0100549 drm_encoder_helper_add(&intel_encoder->base, &intel_hdmi_helper_funcs);
Eric Anholt7d573822009-01-02 13:33:00 -0800550
Chris Wilson55b7d6e82010-09-19 09:29:33 +0100551 intel_hdmi_add_properties(intel_hdmi, connector);
552
Chris Wilsondf0e9242010-09-09 16:20:55 +0100553 intel_connector_attach_encoder(intel_connector, intel_encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800554 drm_sysfs_connector_add(connector);
555
556 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
557 * 0xd. Failure to do so will result in spurious interrupts being
558 * generated on the port when a cable is not attached.
559 */
560 if (IS_G4X(dev) && !IS_GM45(dev)) {
561 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
562 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
563 }
Eric Anholt7d573822009-01-02 13:33:00 -0800564}