intel_hdmi.c 8.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 * Copyright 2006 Dave Airlie <airlied@linux.ie>
 * Copyright © 2006-2009 Intel Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 *
 * Authors:
 *	Eric Anholt <eric@anholt.net>
 *	Jesse Barnes <jesse.barnes@intel.com>
 */

#include <linux/i2c.h>
30
#include <linux/slab.h>
31 32 33 34
#include <linux/delay.h>
#include "drmP.h"
#include "drm.h"
#include "drm_crtc.h"
35
#include "drm_edid.h"
36 37 38 39
#include "intel_drv.h"
#include "i915_drm.h"
#include "i915_drv.h"

C
Chris Wilson 已提交
40 41
struct intel_hdmi {
	struct intel_encoder base;
42
	u32 sdvox_reg;
43
	int ddc_bus;
44
	bool has_hdmi_sink;
45
	bool has_audio;
46 47
};

C
Chris Wilson 已提交
48 49
static struct intel_hdmi *enc_to_intel_hdmi(struct drm_encoder *encoder)
{
50
	return container_of(encoder, struct intel_hdmi, base.base);
C
Chris Wilson 已提交
51 52
}

53 54 55 56 57 58
static struct intel_hdmi *intel_attached_hdmi(struct drm_connector *connector)
{
	return container_of(intel_attached_encoder(connector),
			    struct intel_hdmi, base);
}

59 60 61 62 63 64 65 66
static void intel_hdmi_mode_set(struct drm_encoder *encoder,
				struct drm_display_mode *mode,
				struct drm_display_mode *adjusted_mode)
{
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct drm_crtc *crtc = encoder->crtc;
	struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
C
Chris Wilson 已提交
67
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
68 69
	u32 sdvox;

70 71 72 73 74
	sdvox = SDVO_ENCODING_HDMI | SDVO_BORDER_ENABLE;
	if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
		sdvox |= SDVO_VSYNC_ACTIVE_HIGH;
	if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
		sdvox |= SDVO_HSYNC_ACTIVE_HIGH;
75

76 77 78 79 80
	/* Required on CPT */
	if (intel_hdmi->has_hdmi_sink && HAS_PCH_CPT(dev))
		sdvox |= HDMI_MODE_SELECT;

	if (intel_hdmi->has_audio)
81 82
		sdvox |= SDVO_AUDIO_ENABLE;

83 84 85 86 87 88
	if (intel_crtc->pipe == 1) {
		if (HAS_PCH_CPT(dev))
			sdvox |= PORT_TRANS_B_SEL_CPT;
		else
			sdvox |= SDVO_PIPE_B_SELECT;
	}
89

C
Chris Wilson 已提交
90 91
	I915_WRITE(intel_hdmi->sdvox_reg, sdvox);
	POSTING_READ(intel_hdmi->sdvox_reg);
92 93 94 95 96 97
}

static void intel_hdmi_dpms(struct drm_encoder *encoder, int mode)
{
	struct drm_device *dev = encoder->dev;
	struct drm_i915_private *dev_priv = dev->dev_private;
C
Chris Wilson 已提交
98
	struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
99 100
	u32 temp;

C
Chris Wilson 已提交
101
	temp = I915_READ(intel_hdmi->sdvox_reg);
102 103 104 105

	/* HW workaround, need to toggle enable bit off and on for 12bpc, but
	 * we do this anyway which shows more stable in testing.
	 */
106
	if (HAS_PCH_SPLIT(dev)) {
C
Chris Wilson 已提交
107 108
		I915_WRITE(intel_hdmi->sdvox_reg, temp & ~SDVO_ENABLE);
		POSTING_READ(intel_hdmi->sdvox_reg);
109 110 111 112
	}

	if (mode != DRM_MODE_DPMS_ON) {
		temp &= ~SDVO_ENABLE;
113
	} else {
114
		temp |= SDVO_ENABLE;
115
	}
116

C
Chris Wilson 已提交
117 118
	I915_WRITE(intel_hdmi->sdvox_reg, temp);
	POSTING_READ(intel_hdmi->sdvox_reg);
119 120 121 122

	/* HW workaround, need to write this twice for issue that may result
	 * in first write getting masked.
	 */
123
	if (HAS_PCH_SPLIT(dev)) {
C
Chris Wilson 已提交
124 125
		I915_WRITE(intel_hdmi->sdvox_reg, temp);
		POSTING_READ(intel_hdmi->sdvox_reg);
126
	}
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
}

static int intel_hdmi_mode_valid(struct drm_connector *connector,
				 struct drm_display_mode *mode)
{
	if (mode->clock > 165000)
		return MODE_CLOCK_HIGH;
	if (mode->clock < 20000)
		return MODE_CLOCK_HIGH;

	if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
		return MODE_NO_DBLESCAN;

	return MODE_OK;
}

static bool intel_hdmi_mode_fixup(struct drm_encoder *encoder,
				  struct drm_display_mode *mode,
				  struct drm_display_mode *adjusted_mode)
{
	return true;
}

150
static enum drm_connector_status
151
intel_hdmi_detect(struct drm_connector *connector, bool force)
152
{
153
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
154 155
	struct drm_i915_private *dev_priv = connector->dev->dev_private;
	struct edid *edid;
156
	enum drm_connector_status status = connector_status_disconnected;
157

C
Chris Wilson 已提交
158
	intel_hdmi->has_hdmi_sink = false;
159
	intel_hdmi->has_audio = false;
160 161
	edid = drm_get_edid(connector,
			    &dev_priv->gmbus[intel_hdmi->ddc_bus].adapter);
162

163
	if (edid) {
164
		if (edid->input & DRM_EDID_INPUT_DIGITAL) {
165
			status = connector_status_connected;
C
Chris Wilson 已提交
166
			intel_hdmi->has_hdmi_sink = drm_detect_hdmi_monitor(edid);
167
			intel_hdmi->has_audio = drm_detect_monitor_audio(edid);
168
		}
169
		connector->display_info.raw_edid = NULL;
170
		kfree(edid);
171
	}
172

173
	return status;
174 175 176 177
}

static int intel_hdmi_get_modes(struct drm_connector *connector)
{
178
	struct intel_hdmi *intel_hdmi = intel_attached_hdmi(connector);
179
	struct drm_i915_private *dev_priv = connector->dev->dev_private;
180 181 182 183 184

	/* We should parse the EDID data and find out if it's an HDMI sink so
	 * we can send audio to it.
	 */

185 186
	return intel_ddc_get_modes(connector,
				   &dev_priv->gmbus[intel_hdmi->ddc_bus].adapter);
187 188 189 190 191 192
}

static void intel_hdmi_destroy(struct drm_connector *connector)
{
	drm_sysfs_connector_remove(connector);
	drm_connector_cleanup(connector);
193
	kfree(connector);
194 195 196 197 198 199 200 201 202 203 204
}

static const struct drm_encoder_helper_funcs intel_hdmi_helper_funcs = {
	.dpms = intel_hdmi_dpms,
	.mode_fixup = intel_hdmi_mode_fixup,
	.prepare = intel_encoder_prepare,
	.mode_set = intel_hdmi_mode_set,
	.commit = intel_encoder_commit,
};

static const struct drm_connector_funcs intel_hdmi_connector_funcs = {
205
	.dpms = drm_helper_connector_dpms,
206 207 208 209 210 211 212 213
	.detect = intel_hdmi_detect,
	.fill_modes = drm_helper_probe_single_connector_modes,
	.destroy = intel_hdmi_destroy,
};

static const struct drm_connector_helper_funcs intel_hdmi_connector_helper_funcs = {
	.get_modes = intel_hdmi_get_modes,
	.mode_valid = intel_hdmi_mode_valid,
214
	.best_encoder = intel_best_encoder,
215 216 217
};

static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
C
Chris Wilson 已提交
218
	.destroy = intel_encoder_destroy,
219 220 221 222 223 224
};

void intel_hdmi_init(struct drm_device *dev, int sdvox_reg)
{
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct drm_connector *connector;
225
	struct intel_encoder *intel_encoder;
226
	struct intel_connector *intel_connector;
C
Chris Wilson 已提交
227
	struct intel_hdmi *intel_hdmi;
228

C
Chris Wilson 已提交
229 230
	intel_hdmi = kzalloc(sizeof(struct intel_hdmi), GFP_KERNEL);
	if (!intel_hdmi)
231
		return;
232 233 234

	intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
	if (!intel_connector) {
C
Chris Wilson 已提交
235
		kfree(intel_hdmi);
236 237 238
		return;
	}

C
Chris Wilson 已提交
239
	intel_encoder = &intel_hdmi->base;
240 241 242
	drm_encoder_init(dev, &intel_encoder->base, &intel_hdmi_enc_funcs,
			 DRM_MODE_ENCODER_TMDS);

243
	connector = &intel_connector->base;
244
	drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
245
			   DRM_MODE_CONNECTOR_HDMIA);
246 247
	drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);

248
	intel_encoder->type = INTEL_OUTPUT_HDMI;
249

250
	connector->polled = DRM_CONNECTOR_POLL_HPD;
251 252
	connector->interlace_allowed = 0;
	connector->doublescan_allowed = 0;
253
	intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
254 255

	/* Set up the DDC bus. */
256
	if (sdvox_reg == SDVOB) {
257
		intel_encoder->clone_mask = (1 << INTEL_HDMIB_CLONE_BIT);
258
		intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
259
		dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
260
	} else if (sdvox_reg == SDVOC) {
261
		intel_encoder->clone_mask = (1 << INTEL_HDMIC_CLONE_BIT);
262
		intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
263
		dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
264
	} else if (sdvox_reg == HDMIB) {
265
		intel_encoder->clone_mask = (1 << INTEL_HDMID_CLONE_BIT);
266
		intel_hdmi->ddc_bus = GMBUS_PORT_DPB;
267
		dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
268
	} else if (sdvox_reg == HDMIC) {
269
		intel_encoder->clone_mask = (1 << INTEL_HDMIE_CLONE_BIT);
270
		intel_hdmi->ddc_bus = GMBUS_PORT_DPC;
271
		dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
272
	} else if (sdvox_reg == HDMID) {
273
		intel_encoder->clone_mask = (1 << INTEL_HDMIF_CLONE_BIT);
274
		intel_hdmi->ddc_bus = GMBUS_PORT_DPD;
275
		dev_priv->hotplug_supported_mask |= HDMID_HOTPLUG_INT_STATUS;
276
	}
277

C
Chris Wilson 已提交
278
	intel_hdmi->sdvox_reg = sdvox_reg;
279

280
	drm_encoder_helper_add(&intel_encoder->base, &intel_hdmi_helper_funcs);
281

282
	intel_connector_attach_encoder(intel_connector, intel_encoder);
283 284 285 286 287 288 289 290 291 292 293
	drm_sysfs_connector_add(connector);

	/* For G4X desktop chip, PEG_BAND_GAP_DATA 3:0 must first be written
	 * 0xd.  Failure to do so will result in spurious interrupts being
	 * generated on the port when a cable is not attached.
	 */
	if (IS_G4X(dev) && !IS_GM45(dev)) {
		u32 temp = I915_READ(PEG_BAND_GAP_DATA);
		I915_WRITE(PEG_BAND_GAP_DATA, (temp & ~0xf) | 0xd);
	}
}