intel_hdmi.c 9.0 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 40 41
#include "intel_drv.h"
#include "i915_drm.h"
#include "i915_drv.h"

struct intel_hdmi_priv {
	u32 sdvox_reg;
42
	bool has_hdmi_sink;
43 44 45 46 47 48 49 50 51 52
};

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);
53 54
	struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
	struct intel_hdmi_priv *hdmi_priv = intel_encoder->dev_priv;
55 56 57 58 59
	u32 sdvox;

	sdvox = SDVO_ENCODING_HDMI |
		SDVO_BORDER_ENABLE |
		SDVO_VSYNC_ACTIVE_HIGH |
60
		SDVO_HSYNC_ACTIVE_HIGH;
61 62 63 64

	if (hdmi_priv->has_hdmi_sink)
		sdvox |= SDVO_AUDIO_ENABLE;

65 66 67 68 69 70
	if (intel_crtc->pipe == 1) {
		if (HAS_PCH_CPT(dev))
			sdvox |= PORT_TRANS_B_SEL_CPT;
		else
			sdvox |= SDVO_PIPE_B_SELECT;
	}
71 72 73 74 75 76 77 78 79

	I915_WRITE(hdmi_priv->sdvox_reg, sdvox);
	POSTING_READ(hdmi_priv->sdvox_reg);
}

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;
80 81
	struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
	struct intel_hdmi_priv *hdmi_priv = intel_encoder->dev_priv;
82 83
	u32 temp;

84 85 86 87 88
	temp = I915_READ(hdmi_priv->sdvox_reg);

	/* HW workaround, need to toggle enable bit off and on for 12bpc, but
	 * we do this anyway which shows more stable in testing.
	 */
89
	if (HAS_PCH_SPLIT(dev)) {
90
		I915_WRITE(hdmi_priv->sdvox_reg, temp & ~SDVO_ENABLE);
91 92 93 94 95
		POSTING_READ(hdmi_priv->sdvox_reg);
	}

	if (mode != DRM_MODE_DPMS_ON) {
		temp &= ~SDVO_ENABLE;
96
	} else {
97
		temp |= SDVO_ENABLE;
98
	}
99 100

	I915_WRITE(hdmi_priv->sdvox_reg, temp);
101
	POSTING_READ(hdmi_priv->sdvox_reg);
102 103 104 105

	/* HW workaround, need to write this twice for issue that may result
	 * in first write getting masked.
	 */
106
	if (HAS_PCH_SPLIT(dev)) {
107 108 109
		I915_WRITE(hdmi_priv->sdvox_reg, temp);
		POSTING_READ(hdmi_priv->sdvox_reg);
	}
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
}

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;
}

133
static enum drm_connector_status
134
intel_hdmi_detect(struct drm_connector *connector)
135
{
136 137
	struct drm_encoder *encoder = intel_attached_encoder(connector);
	struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
138
	struct intel_hdmi_priv *hdmi_priv = intel_encoder->dev_priv;
139
	struct edid *edid = NULL;
140
	enum drm_connector_status status = connector_status_disconnected;
141

142
	hdmi_priv->has_hdmi_sink = false;
143
	edid = drm_get_edid(connector,
144
			    intel_encoder->ddc_bus);
145

146
	if (edid) {
147
		if (edid->input & DRM_EDID_INPUT_DIGITAL) {
148 149 150
			status = connector_status_connected;
			hdmi_priv->has_hdmi_sink = drm_detect_hdmi_monitor(edid);
		}
151
		connector->display_info.raw_edid = NULL;
152
		kfree(edid);
153
	}
154

155
	return status;
156 157 158 159
}

static int intel_hdmi_get_modes(struct drm_connector *connector)
{
160 161
	struct drm_encoder *encoder = intel_attached_encoder(connector);
	struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
162 163 164 165 166

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

167
	return intel_ddc_get_modes(connector, intel_encoder->ddc_bus);
168 169 170 171 172 173
}

static void intel_hdmi_destroy(struct drm_connector *connector)
{
	drm_sysfs_connector_remove(connector);
	drm_connector_cleanup(connector);
174
	kfree(connector);
175 176 177 178 179 180 181 182 183 184 185
}

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 = {
186
	.dpms = drm_helper_connector_dpms,
187 188 189 190 191 192 193 194
	.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,
195
	.best_encoder = intel_attached_encoder,
196 197 198 199
};

static void intel_hdmi_enc_destroy(struct drm_encoder *encoder)
{
200 201 202 203
	struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);

	if (intel_encoder->i2c_bus)
		intel_i2c_destroy(intel_encoder->i2c_bus);
204
	drm_encoder_cleanup(encoder);
205
	kfree(intel_encoder);
206 207 208 209 210 211 212 213 214 215
}

static const struct drm_encoder_funcs intel_hdmi_enc_funcs = {
	.destroy = intel_hdmi_enc_destroy,
};

void intel_hdmi_init(struct drm_device *dev, int sdvox_reg)
{
	struct drm_i915_private *dev_priv = dev->dev_private;
	struct drm_connector *connector;
216
	struct intel_encoder *intel_encoder;
217
	struct intel_connector *intel_connector;
218 219
	struct intel_hdmi_priv *hdmi_priv;

220
	intel_encoder = kcalloc(sizeof(struct intel_encoder) +
221
			       sizeof(struct intel_hdmi_priv), 1, GFP_KERNEL);
222
	if (!intel_encoder)
223
		return;
224 225 226 227 228 229 230

	intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
	if (!intel_connector) {
		kfree(intel_encoder);
		return;
	}

231
	hdmi_priv = (struct intel_hdmi_priv *)(intel_encoder + 1);
232

233
	connector = &intel_connector->base;
234
	drm_connector_init(dev, connector, &intel_hdmi_connector_funcs,
235
			   DRM_MODE_CONNECTOR_HDMIA);
236 237
	drm_connector_helper_add(connector, &intel_hdmi_connector_helper_funcs);

238
	intel_encoder->type = INTEL_OUTPUT_HDMI;
239 240 241

	connector->interlace_allowed = 0;
	connector->doublescan_allowed = 0;
242
	intel_encoder->crtc_mask = (1 << 0) | (1 << 1);
243 244

	/* Set up the DDC bus. */
245
	if (sdvox_reg == SDVOB) {
246 247
		intel_encoder->clone_mask = (1 << INTEL_HDMIB_CLONE_BIT);
		intel_encoder->ddc_bus = intel_i2c_create(dev, GPIOE, "HDMIB");
248
		dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
249
	} else if (sdvox_reg == SDVOC) {
250 251
		intel_encoder->clone_mask = (1 << INTEL_HDMIC_CLONE_BIT);
		intel_encoder->ddc_bus = intel_i2c_create(dev, GPIOD, "HDMIC");
252
		dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
253
	} else if (sdvox_reg == HDMIB) {
254 255
		intel_encoder->clone_mask = (1 << INTEL_HDMID_CLONE_BIT);
		intel_encoder->ddc_bus = intel_i2c_create(dev, PCH_GPIOE,
256
								"HDMIB");
257
		dev_priv->hotplug_supported_mask |= HDMIB_HOTPLUG_INT_STATUS;
258
	} else if (sdvox_reg == HDMIC) {
259 260
		intel_encoder->clone_mask = (1 << INTEL_HDMIE_CLONE_BIT);
		intel_encoder->ddc_bus = intel_i2c_create(dev, PCH_GPIOD,
261
								"HDMIC");
262
		dev_priv->hotplug_supported_mask |= HDMIC_HOTPLUG_INT_STATUS;
263
	} else if (sdvox_reg == HDMID) {
264 265
		intel_encoder->clone_mask = (1 << INTEL_HDMIF_CLONE_BIT);
		intel_encoder->ddc_bus = intel_i2c_create(dev, PCH_GPIOF,
266
								"HDMID");
267
		dev_priv->hotplug_supported_mask |= HDMID_HOTPLUG_INT_STATUS;
268
	}
269
	if (!intel_encoder->ddc_bus)
270 271 272
		goto err_connector;

	hdmi_priv->sdvox_reg = sdvox_reg;
273
	intel_encoder->dev_priv = hdmi_priv;
274

275
	drm_encoder_init(dev, &intel_encoder->enc, &intel_hdmi_enc_funcs,
276
			 DRM_MODE_ENCODER_TMDS);
277
	drm_encoder_helper_add(&intel_encoder->enc, &intel_hdmi_helper_funcs);
278

279
	drm_mode_connector_attach_encoder(&intel_connector->base,
280
					  &intel_encoder->enc);
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
	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);
	}

	return;

err_connector:
	drm_connector_cleanup(connector);
296
	kfree(intel_encoder);
297
	kfree(intel_connector);
298 299 300

	return;
}