blob: 9fb9501f2d0751e0c863e575c987203de1b42e70 [file] [log] [blame]
Eric Anholt7d573822009-01-02 13:33:00 -08001/*
2 * Copyright 2006 Dave Airlie <airlied@linux.ie>
3 * Copyright © 2006-2009 Intel Corporation
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 * and/or sell copies of the Software, and to permit persons to whom the
10 * Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22 * DEALINGS IN THE SOFTWARE.
23 *
24 * Authors:
25 * Eric Anholt <eric@anholt.net>
26 * Jesse Barnes <jesse.barnes@intel.com>
27 */
28
29#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Eric Anholt7d573822009-01-02 13:33:00 -080031#include <linux/delay.h>
32#include "drmP.h"
33#include "drm.h"
34#include "drm_crtc.h"
Keith Packardaa93d632009-05-05 09:52:46 -070035#include "drm_edid.h"
Eric Anholt7d573822009-01-02 13:33:00 -080036#include "intel_drv.h"
37#include "i915_drm.h"
38#include "i915_drv.h"
39
Chris Wilsonea5b2132010-08-04 13:50:23 +010040struct intel_hdmi {
41 struct intel_encoder base;
Eric Anholt7d573822009-01-02 13:33:00 -080042 u32 sdvox_reg;
Chris Wilsonf899fc62010-07-20 15:44:45 -070043 int ddc_bus;
Ma Ling9dff6af2009-04-02 13:13:26 +080044 bool has_hdmi_sink;
Eric Anholt7d573822009-01-02 13:33:00 -080045};
46
Chris Wilsonea5b2132010-08-04 13:50:23 +010047static struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder)
48{
Chris Wilson4ef69c72010-09-09 15:14:28 +010049 return container_of(encoder, struct intel_hdmi, base.base);
Chris Wilsonea5b2132010-08-04 13:50:23 +010050}
51
Chris Wilsondf0e9242010-09-09 16:20:55 +010052static struct intel_hdmi *intel_attached_hdmi(struct drm_connector *connector)
53{
54 return container_of(intel_attached_encoder(connector),
55 struct intel_hdmi, base);
56}
57
Eric Anholt7d573822009-01-02 13:33:00 -080058static void intel_hdmi_mode_set(struct drm_encoder *encoder,
59 struct drm_display_mode *mode,
60 struct drm_display_mode *adjusted_mode)
61{
62 struct drm_device *dev = encoder->dev;
63 struct drm_i915_private *dev_priv = dev->dev_private;
64 struct drm_crtc *crtc = encoder->crtc;
65 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
Chris Wilsonea5b2132010-08-04 13:50:23 +010066 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -080067 u32 sdvox;
68
Adam Jacksonb599c0b2010-07-16 14:46:31 -040069 sdvox = SDVO_ENCODING_HDMI | SDVO_BORDER_ENABLE;
70 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
71 sdvox |= SDVO_VSYNC_ACTIVE_HIGH;
72 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
73 sdvox |= SDVO_HSYNC_ACTIVE_HIGH;
Eric Anholt7d573822009-01-02 13:33:00 -080074
Chris Wilsonea5b2132010-08-04 13:50:23 +010075 if (intel_hdmi->has_hdmi_sink) {
Eric Anholt7d573822009-01-02 13:33:00 -080076 sdvox |= SDVO_AUDIO_ENABLE;
Zhenyu Wang467b2002010-05-12 11:02:14 +080077 if (HAS_PCH_CPT(dev))
78 sdvox |= HDMI_MODE_SELECT;
79 }
Eric Anholt7d573822009-01-02 13:33:00 -080080
Zhenyu Wang0f229062010-04-07 16:15:57 +080081 if (intel_crtc->pipe == 1) {
82 if (HAS_PCH_CPT(dev))
83 sdvox |= PORT_TRANS_B_SEL_CPT;
84 else
85 sdvox |= SDVO_PIPE_B_SELECT;
86 }
Eric Anholt7d573822009-01-02 13:33:00 -080087
Chris Wilsonea5b2132010-08-04 13:50:23 +010088 I915_WRITE(intel_hdmi->sdvox_reg, sdvox);
89 POSTING_READ(intel_hdmi->sdvox_reg);
Eric Anholt7d573822009-01-02 13:33:00 -080090}
91
92static void intel_hdmi_dpms(struct drm_encoder *encoder, int mode)
93{
94 struct drm_device *dev = encoder->dev;
95 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonea5b2132010-08-04 13:50:23 +010096 struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
Eric Anholt7d573822009-01-02 13:33:00 -080097 u32 temp;
98
Chris Wilsonea5b2132010-08-04 13:50:23 +010099 temp = I915_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000100
101 /* HW workaround, need to toggle enable bit off and on for 12bpc, but
102 * we do this anyway which shows more stable in testing.
103 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800104 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100105 I915_WRITE(intel_hdmi->sdvox_reg, temp & ~SDVO_ENABLE);
106 POSTING_READ(intel_hdmi->sdvox_reg);
Eric Anholt7d573822009-01-02 13:33:00 -0800107 }
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000108
109 if (mode != DRM_MODE_DPMS_ON) {
110 temp &= ~SDVO_ENABLE;
111 } else {
112 temp |= SDVO_ENABLE;
113 }
114
Chris Wilsonea5b2132010-08-04 13:50:23 +0100115 I915_WRITE(intel_hdmi->sdvox_reg, temp);
116 POSTING_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000117
118 /* HW workaround, need to write this twice for issue that may result
119 * in first write getting masked.
120 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800121 if (HAS_PCH_SPLIT(dev)) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100122 I915_WRITE(intel_hdmi->sdvox_reg, temp);
123 POSTING_READ(intel_hdmi->sdvox_reg);
Zhenyu Wangd8a2d0e2009-11-02 07:52:30 +0000124 }
Eric Anholt7d573822009-01-02 13:33:00 -0800125}
126
Eric Anholt7d573822009-01-02 13:33:00 -0800127static int intel_hdmi_mode_valid(struct drm_connector *connector,
128 struct drm_display_mode *mode)
129{
130 if (mode->clock > 165000)
131 return MODE_CLOCK_HIGH;
132 if (mode->clock < 20000)
133 return MODE_CLOCK_HIGH;
134
135 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
136 return MODE_NO_DBLESCAN;
137
138 return MODE_OK;
139}
140
141static bool intel_hdmi_mode_fixup(struct drm_encoder *encoder,
142 struct drm_display_mode *mode,
143 struct drm_display_mode *adjusted_mode)
144{
145 return true;
146}
147
Keith Packardaa93d632009-05-05 09:52:46 -0700148static enum drm_connector_status
Chris Wilson930a9e22010-09-14 11:07:23 +0100149intel_hdmi_detect(struct drm_connector *connector, bool force)
Ma Ling9dff6af2009-04-02 13:13:26 +0800150{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100151 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700152 struct drm_i915_private *dev_priv = connector->dev->dev_private;
153 struct edid *edid;
Keith Packardaa93d632009-05-05 09:52:46 -0700154 enum drm_connector_status status = connector_status_disconnected;
Ma Ling9dff6af2009-04-02 13:13:26 +0800155
Chris Wilsonea5b2132010-08-04 13:50:23 +0100156 intel_hdmi->has_hdmi_sink = false;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700157 edid = drm_get_edid(connector,
158 &dev_priv->gmbus[intel_hdmi->ddc_bus].adapter);
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800159
Keith Packardaa93d632009-05-05 09:52:46 -0700160 if (edid) {
Eric Anholtbe9f1c42009-06-21 22:14:55 -0700161 if (edid->input & DRM_EDID_INPUT_DIGITAL) {
Keith Packardaa93d632009-05-05 09:52:46 -0700162 status = connector_status_connected;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100163 intel_hdmi->has_hdmi_sink = drm_detect_hdmi_monitor(edid);
Keith Packardaa93d632009-05-05 09:52:46 -0700164 }
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800165 connector->display_info.raw_edid = NULL;
Keith Packardaa93d632009-05-05 09:52:46 -0700166 kfree(edid);
Ma Ling9dff6af2009-04-02 13:13:26 +0800167 }
ling.ma@intel.com2ded9e22009-07-16 17:23:09 +0800168
Keith Packardaa93d632009-05-05 09:52:46 -0700169 return status;
Ma Ling9dff6af2009-04-02 13:13:26 +0800170}
171
Eric Anholt7d573822009-01-02 13:33:00 -0800172static int intel_hdmi_get_modes(struct drm_connector *connector)
173{
Chris Wilsondf0e9242010-09-09 16:20:55 +0100174 struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700175 struct drm_i915_private *dev_priv = connector->dev->dev_private;
Eric Anholt7d573822009-01-02 13:33:00 -0800176
177 /* We should parse the EDID data and find out if it's an HDMI sink so
178 * we can send audio to it.
179 */
180
Chris Wilsonf899fc62010-07-20 15:44:45 -0700181 return intel_ddc_get_modes(connector,
182 &dev_priv->gmbus[intel_hdmi->ddc_bus].adapter);
Eric Anholt7d573822009-01-02 13:33:00 -0800183}
184
185static void intel_hdmi_destroy(struct drm_connector *connector)
186{
Eric Anholt7d573822009-01-02 13:33:00 -0800187 drm_sysfs_connector_remove(connector);
188 drm_connector_cleanup(connector);
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800189 kfree(connector);
Eric Anholt7d573822009-01-02 13:33:00 -0800190}
191
192static const struct drm_encoder_helper_funcs intel_hdmi_helper_funcs = {
193 .dpms = intel_hdmi_dpms,
194 .mode_fixup = intel_hdmi_mode_fixup,
195 .prepare = intel_encoder_prepare,
196 .mode_set = intel_hdmi_mode_set,
197 .commit = intel_encoder_commit,
198};
199
200static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
Keith Packardc9fb15f2009-05-30 20:42:28 -0700201 .dpms = drm_helper_connector_dpms,
Eric Anholt7d573822009-01-02 13:33:00 -0800202 .detect = intel_hdmi_detect,
203 .fill_modes = drm_helper_probe_single_connector_modes,
204 .destroy = intel_hdmi_destroy,
205};
206
207static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
208 .get_modes = intel_hdmi_get_modes,
209 .mode_valid = intel_hdmi_mode_valid,
Chris Wilsondf0e9242010-09-09 16:20:55 +0100210 .best_encoder = intel_best_encoder,
Eric Anholt7d573822009-01-02 13:33:00 -0800211};
212
Eric Anholt7d573822009-01-02 13:33:00 -0800213static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100214 .destroy = intel_encoder_destroy,
Eric Anholt7d573822009-01-02 13:33:00 -0800215};
216
Eric Anholt7d573822009-01-02 13:33:00 -0800217void intel_hdmi_init(struct drm_device *dev, int sdvox_reg)
218{
219 struct drm_i915_private *dev_priv = dev->dev_private;
220 struct drm_connector *connector;
Eric Anholt21d40d32010-03-25 11:11:14 -0700221 struct intel_encoder *intel_encoder;
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800222 struct intel_connector *intel_connector;
Chris Wilsonea5b2132010-08-04 13:50:23 +0100223 struct intel_hdmi *intel_hdmi;
Eric Anholt7d573822009-01-02 13:33:00 -0800224
Chris Wilsonea5b2132010-08-04 13:50:23 +0100225 intel_hdmi = kzalloc(sizeof(struct intel_hdmi), GFP_KERNEL);
226 if (!intel_hdmi)
Eric Anholt7d573822009-01-02 13:33:00 -0800227 return;
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800228
229 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
230 if (!intel_connector) {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100231 kfree(intel_hdmi);
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800232 return;
233 }
234
Chris Wilsonea5b2132010-08-04 13:50:23 +0100235 intel_encoder = &intel_hdmi->base;
Chris Wilson373a3cf2010-09-15 12:03:59 +0100236 drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
237 DRM_MODE_ENCODER_TMDS);
238
Zhenyu Wang674e2d02010-03-29 15:57:42 +0800239 connector = &intel_connector->base;
Eric Anholt7d573822009-01-02 13:33:00 -0800240 drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
Adam Jackson8d911042009-09-23 15:08:29 -0400241 DRM_MODE_CONNECTOR_HDMIA);
Eric Anholt7d573822009-01-02 13:33:00 -0800242 drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);
243
Eric Anholt21d40d32010-03-25 11:11:14 -0700244 intel_encoder->type = INTEL_OUTPUT_HDMI;
Eric Anholt7d573822009-01-02 13:33:00 -0800245
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000246 connector->polled = DRM_CONNECTOR_POLL_HPD;
Eric Anholt7d573822009-01-02 13:33:00 -0800247 connector->interlace_allowed = 0;
248 connector->doublescan_allowed = 0;
Eric Anholt21d40d32010-03-25 11:11:14 -0700249 intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
Eric Anholt7d573822009-01-02 13:33:00 -0800250
251 /* Set up the DDC bus. */
Ma Lingf8aed702009-08-24 13:50:24 +0800252 if (sdvox_reg == SDVOB) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700253 intel_encoder->clone_mask = (1 << INTEL_HDMIB_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700254 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800255 dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800256 } else if (sdvox_reg == SDVOC) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700257 intel_encoder->clone_mask = (1 << INTEL_HDMIC_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700258 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800259 dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800260 } else if (sdvox_reg == HDMIB) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700261 intel_encoder->clone_mask = (1 << INTEL_HDMID_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700262 intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800263 dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800264 } else if (sdvox_reg == HDMIC) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700265 intel_encoder->clone_mask = (1 << INTEL_HDMIE_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700266 intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800267 dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800268 } else if (sdvox_reg == HDMID) {
Eric Anholt21d40d32010-03-25 11:11:14 -0700269 intel_encoder->clone_mask = (1 << INTEL_HDMIF_CLONE_BIT);
Chris Wilsonf899fc62010-07-20 15:44:45 -0700270 intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800271 dev_priv->hotplug_supported_mask |= HDMID_HOTPLUG_INT_STATUS;
Ma Lingf8aed702009-08-24 13:50:24 +0800272 }
Eric Anholt7d573822009-01-02 13:33:00 -0800273
Chris Wilsonea5b2132010-08-04 13:50:23 +0100274 intel_hdmi->sdvox_reg = sdvox_reg;
Eric Anholt7d573822009-01-02 13:33:00 -0800275
Chris Wilson4ef69c72010-09-09 15:14:28 +0100276 drm_encoder_helper_add(&intel_encoder->base, &intel_hdmi_helper_funcs);
Eric Anholt7d573822009-01-02 13:33:00 -0800277
Chris Wilsondf0e9242010-09-09 16:20:55 +0100278 intel_connector_attach_encoder(intel_connector, intel_encoder);
Eric Anholt7d573822009-01-02 13:33:00 -0800279 drm_sysfs_connector_add(connector);
280
281 /* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
282 * 0xd. Failure to do so will result in spurious interrupts being
283 * generated on the port when a cable is not attached.
284 */
285 if (IS_G4X(dev) && !IS_GM45(dev)) {
286 u32 temp = I915_READ(PEG_BAND_GAP_DATA);
287 I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
288 }
Eric Anholt7d573822009-01-02 13:33:00 -0800289}