blob: b0fadd00a4dca58a5cffde4fc056b518e1d3c8c1 [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
2 * Copyright © 2006-2007 Intel Corporation
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21 * DEALINGS IN THE SOFTWARE.
22 *
23 * Authors:
24 * Eric Anholt <eric@anholt.net>
25 */
26
Duncan Laurie8ca40132011-10-25 15:42:21 -070027#include <linux/dmi.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080028#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080030#include "drmP.h"
31#include "drm.h"
32#include "drm_crtc.h"
33#include "drm_crtc_helper.h"
David Müllerf5afcd32011-01-06 12:29:32 +000034#include "drm_edid.h"
Jesse Barnes79e53942008-11-07 14:24:08 -080035#include "intel_drv.h"
36#include "i915_drm.h"
37#include "i915_drv.h"
38
Keith Packarde7dbb2f2010-11-16 16:03:53 +080039/* Here's the desired hotplug mode */
40#define ADPA_HOTPLUG_BITS (ADPA_CRT_HOTPLUG_PERIOD_128 | \
41 ADPA_CRT_HOTPLUG_WARMUP_10MS | \
42 ADPA_CRT_HOTPLUG_SAMPLE_4S | \
43 ADPA_CRT_HOTPLUG_VOLTAGE_50 | \
44 ADPA_CRT_HOTPLUG_VOLREF_325MV | \
45 ADPA_CRT_HOTPLUG_ENABLE)
46
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +000047struct intel_crt {
48 struct intel_encoder base;
Keith Packarde7dbb2f2010-11-16 16:03:53 +080049 bool force_hotplug_required;
Daniel Vetter540a8952012-07-11 16:27:57 +020050 u32 adpa_reg;
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +000051};
52
53static struct intel_crt *intel_attached_crt(struct drm_connector *connector)
54{
55 return container_of(intel_attached_encoder(connector),
56 struct intel_crt, base);
57}
58
Daniel Vetter540a8952012-07-11 16:27:57 +020059static struct intel_crt *intel_encoder_to_crt(struct intel_encoder *encoder)
60{
61 return container_of(encoder, struct intel_crt, base);
62}
63
Daniel Vettere403fc92012-07-02 13:41:21 +020064static bool intel_crt_get_hw_state(struct intel_encoder *encoder,
65 enum pipe *pipe)
66{
67 struct drm_device *dev = encoder->base.dev;
68 struct drm_i915_private *dev_priv = dev->dev_private;
69 struct intel_crt *crt = intel_encoder_to_crt(encoder);
70 u32 tmp;
71
72 tmp = I915_READ(crt->adpa_reg);
73
74 if (!(tmp & ADPA_DAC_ENABLE))
75 return false;
76
77 if (HAS_PCH_CPT(dev))
78 *pipe = PORT_TO_PIPE_CPT(tmp);
79 else
80 *pipe = PORT_TO_PIPE(tmp);
81
82 return true;
83}
84
Daniel Vetter21246042012-07-01 14:58:27 +020085static void intel_disable_crt(struct intel_encoder *encoder)
86{
87 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
88 struct intel_crt *crt = intel_encoder_to_crt(encoder);
89 u32 temp;
90
91 temp = I915_READ(crt->adpa_reg);
92 temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
93 temp &= ~ADPA_DAC_ENABLE;
94 I915_WRITE(crt->adpa_reg, temp);
95}
96
97static void intel_enable_crt(struct intel_encoder *encoder)
98{
99 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
100 struct intel_crt *crt = intel_encoder_to_crt(encoder);
101 u32 temp;
102
103 temp = I915_READ(crt->adpa_reg);
104 temp |= ADPA_DAC_ENABLE;
105 I915_WRITE(crt->adpa_reg, temp);
106}
107
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200108/* Note: The caller is required to filter out dpms modes not supported by the
109 * platform. */
110static void intel_crt_set_dpms(struct intel_encoder *encoder, int mode)
Jesse Barnes79e53942008-11-07 14:24:08 -0800111{
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200112 struct drm_device *dev = encoder->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800113 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200114 struct intel_crt *crt = intel_encoder_to_crt(encoder);
Jesse Barnesdf0323c2012-04-17 15:06:33 -0700115 u32 temp;
Jesse Barnes79e53942008-11-07 14:24:08 -0800116
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200117 temp = I915_READ(crt->adpa_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800118 temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
ling.ma@intel.comfebc7692009-06-25 11:55:57 +0800119 temp &= ~ADPA_DAC_ENABLE;
Jesse Barnes79e53942008-11-07 14:24:08 -0800120
Akshay Joshi0206e352011-08-16 15:34:10 -0400121 switch (mode) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800122 case DRM_MODE_DPMS_ON:
123 temp |= ADPA_DAC_ENABLE;
124 break;
125 case DRM_MODE_DPMS_STANDBY:
126 temp |= ADPA_DAC_ENABLE | ADPA_HSYNC_CNTL_DISABLE;
127 break;
128 case DRM_MODE_DPMS_SUSPEND:
129 temp |= ADPA_DAC_ENABLE | ADPA_VSYNC_CNTL_DISABLE;
130 break;
131 case DRM_MODE_DPMS_OFF:
132 temp |= ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE;
133 break;
134 }
135
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200136 I915_WRITE(crt->adpa_reg, temp);
137}
138
139static void intel_crt_dpms(struct drm_connector *connector, int mode)
140{
141 struct drm_device *dev = connector->dev;
142 struct intel_encoder *encoder = intel_attached_encoder(connector);
143 struct drm_crtc *crtc;
144 int old_dpms;
145
146 /* PCH platforms and VLV only support on/off. */
147 if (INTEL_INFO(dev)->gen < 5 && mode != DRM_MODE_DPMS_ON)
148 mode = DRM_MODE_DPMS_OFF;
149
150 if (mode == connector->dpms)
151 return;
152
153 old_dpms = connector->dpms;
154 connector->dpms = mode;
155
156 /* Only need to change hw state when actually enabled */
157 crtc = encoder->base.crtc;
158 if (!crtc) {
159 encoder->connectors_active = false;
160 return;
161 }
162
163 /* We need the pipe to run for anything but OFF. */
164 if (mode == DRM_MODE_DPMS_OFF)
165 encoder->connectors_active = false;
166 else
167 encoder->connectors_active = true;
168
169 if (mode < old_dpms) {
170 /* From off to on, enable the pipe first. */
171 intel_crtc_update_dpms(crtc);
172
173 intel_crt_set_dpms(encoder, mode);
174 } else {
175 intel_crt_set_dpms(encoder, mode);
176
177 intel_crtc_update_dpms(crtc);
178 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800179}
180
181static int intel_crt_mode_valid(struct drm_connector *connector,
182 struct drm_display_mode *mode)
183{
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800184 struct drm_device *dev = connector->dev;
185
186 int max_clock = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800187 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
188 return MODE_NO_DBLESCAN;
189
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800190 if (mode->clock < 25000)
191 return MODE_CLOCK_LOW;
192
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100193 if (IS_GEN2(dev))
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800194 max_clock = 350000;
195 else
196 max_clock = 400000;
197 if (mode->clock > max_clock)
198 return MODE_CLOCK_HIGH;
Jesse Barnes79e53942008-11-07 14:24:08 -0800199
200 return MODE_OK;
201}
202
203static bool intel_crt_mode_fixup(struct drm_encoder *encoder,
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200204 const struct drm_display_mode *mode,
Jesse Barnes79e53942008-11-07 14:24:08 -0800205 struct drm_display_mode *adjusted_mode)
206{
207 return true;
208}
209
210static void intel_crt_mode_set(struct drm_encoder *encoder,
211 struct drm_display_mode *mode,
212 struct drm_display_mode *adjusted_mode)
213{
214
215 struct drm_device *dev = encoder->dev;
216 struct drm_crtc *crtc = encoder->crtc;
Daniel Vetter540a8952012-07-11 16:27:57 +0200217 struct intel_crt *crt =
218 intel_encoder_to_crt(to_intel_encoder(encoder));
Jesse Barnes79e53942008-11-07 14:24:08 -0800219 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
220 struct drm_i915_private *dev_priv = dev->dev_private;
221 int dpll_md_reg;
222 u32 adpa, dpll_md;
223
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800224 dpll_md_reg = DPLL_MD(intel_crtc->pipe);
Jesse Barnes79e53942008-11-07 14:24:08 -0800225
226 /*
227 * Disable separate mode multiplier used when cloning SDVO to CRT
228 * XXX this needs to be adjusted when we really are cloning
229 */
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100230 if (INTEL_INFO(dev)->gen >= 4 && !HAS_PCH_SPLIT(dev)) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800231 dpll_md = I915_READ(dpll_md_reg);
232 I915_WRITE(dpll_md_reg,
233 dpll_md & ~DPLL_MD_UDI_MULTIPLIER_MASK);
234 }
235
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800236 adpa = ADPA_HOTPLUG_BITS;
Jesse Barnes79e53942008-11-07 14:24:08 -0800237 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
238 adpa |= ADPA_HSYNC_ACTIVE_HIGH;
239 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
240 adpa |= ADPA_VSYNC_ACTIVE_HIGH;
241
Jesse Barnes75770562011-10-12 09:01:58 -0700242 /* For CPT allow 3 pipe config, for others just use A or B */
243 if (HAS_PCH_CPT(dev))
244 adpa |= PORT_TRANS_SEL_CPT(intel_crtc->pipe);
245 else if (intel_crtc->pipe == 0)
246 adpa |= ADPA_PIPE_A_SELECT;
247 else
248 adpa |= ADPA_PIPE_B_SELECT;
Jesse Barnes79e53942008-11-07 14:24:08 -0800249
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800250 if (!HAS_PCH_SPLIT(dev))
251 I915_WRITE(BCLRPAT(intel_crtc->pipe), 0);
252
Daniel Vetter540a8952012-07-11 16:27:57 +0200253 I915_WRITE(crt->adpa_reg, adpa);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800254}
255
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500256static bool intel_ironlake_crt_detect_hotplug(struct drm_connector *connector)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800257{
258 struct drm_device *dev = connector->dev;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800259 struct intel_crt *crt = intel_attached_crt(connector);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800260 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800261 u32 adpa;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800262 bool ret;
263
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800264 /* The first time through, trigger an explicit detection cycle */
265 if (crt->force_hotplug_required) {
266 bool turn_off_dac = HAS_PCH_SPLIT(dev);
267 u32 save_adpa;
Zhenyu Wang67941da2009-07-24 01:00:33 +0800268
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800269 crt->force_hotplug_required = 0;
Dave Airlied5dd96c2010-08-04 15:52:19 +1000270
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800271 save_adpa = adpa = I915_READ(PCH_ADPA);
272 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
Dave Airlied5dd96c2010-08-04 15:52:19 +1000273
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800274 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
275 if (turn_off_dac)
276 adpa &= ~ADPA_DAC_ENABLE;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800277
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800278 I915_WRITE(PCH_ADPA, adpa);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800279
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800280 if (wait_for((I915_READ(PCH_ADPA) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
281 1000))
282 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
Zhenyu Wang2c072452009-06-05 15:38:42 +0800283
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800284 if (turn_off_dac) {
285 I915_WRITE(PCH_ADPA, save_adpa);
286 POSTING_READ(PCH_ADPA);
287 }
Zhenyu Wanga4a6b902010-04-07 16:15:55 +0800288 }
289
Zhenyu Wang2c072452009-06-05 15:38:42 +0800290 /* Check the status to see if both blue and green are on now */
291 adpa = I915_READ(PCH_ADPA);
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800292 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800293 ret = true;
294 else
295 ret = false;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800296 DRM_DEBUG_KMS("ironlake hotplug adpa=0x%x, result %d\n", adpa, ret);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800297
Zhenyu Wang2c072452009-06-05 15:38:42 +0800298 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800299}
300
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700301static bool valleyview_crt_detect_hotplug(struct drm_connector *connector)
302{
303 struct drm_device *dev = connector->dev;
304 struct drm_i915_private *dev_priv = dev->dev_private;
305 u32 adpa;
306 bool ret;
307 u32 save_adpa;
308
309 save_adpa = adpa = I915_READ(ADPA);
310 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
311
312 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
313
314 I915_WRITE(ADPA, adpa);
315
316 if (wait_for((I915_READ(ADPA) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
317 1000)) {
318 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
319 I915_WRITE(ADPA, save_adpa);
320 }
321
322 /* Check the status to see if both blue and green are on now */
323 adpa = I915_READ(ADPA);
324 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
325 ret = true;
326 else
327 ret = false;
328
329 DRM_DEBUG_KMS("valleyview hotplug adpa=0x%x, result %d\n", adpa, ret);
330
331 /* FIXME: debug force function and remove */
332 ret = true;
333
334 return ret;
335}
336
Jesse Barnes79e53942008-11-07 14:24:08 -0800337/**
338 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect CRT presence.
339 *
340 * Not for i915G/i915GM
341 *
342 * \return true if CRT is connected.
343 * \return false if CRT is disconnected.
344 */
345static bool intel_crt_detect_hotplug(struct drm_connector *connector)
346{
347 struct drm_device *dev = connector->dev;
348 struct drm_i915_private *dev_priv = dev->dev_private;
Adam Jackson7a772c42010-05-24 16:46:29 -0400349 u32 hotplug_en, orig, stat;
350 bool ret = false;
Zhao Yakui771cb082009-03-03 18:07:52 +0800351 int i, tries = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800352
Eric Anholtbad720f2009-10-22 16:11:14 -0700353 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500354 return intel_ironlake_crt_detect_hotplug(connector);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800355
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700356 if (IS_VALLEYVIEW(dev))
357 return valleyview_crt_detect_hotplug(connector);
358
Zhao Yakui771cb082009-03-03 18:07:52 +0800359 /*
360 * On 4 series desktop, CRT detect sequence need to be done twice
361 * to get a reliable result.
362 */
Jesse Barnes79e53942008-11-07 14:24:08 -0800363
Zhao Yakui771cb082009-03-03 18:07:52 +0800364 if (IS_G4X(dev) && !IS_GM45(dev))
365 tries = 2;
366 else
367 tries = 1;
Adam Jackson7a772c42010-05-24 16:46:29 -0400368 hotplug_en = orig = I915_READ(PORT_HOTPLUG_EN);
Zhao Yakui771cb082009-03-03 18:07:52 +0800369 hotplug_en |= CRT_HOTPLUG_FORCE_DETECT;
Jesse Barnes79e53942008-11-07 14:24:08 -0800370
Zhao Yakui771cb082009-03-03 18:07:52 +0800371 for (i = 0; i < tries ; i++) {
Zhao Yakui771cb082009-03-03 18:07:52 +0800372 /* turn on the FORCE_DETECT */
373 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
Zhao Yakui771cb082009-03-03 18:07:52 +0800374 /* wait for FORCE_DETECT to go off */
Chris Wilson913d8d12010-08-07 11:01:35 +0100375 if (wait_for((I915_READ(PORT_HOTPLUG_EN) &
376 CRT_HOTPLUG_FORCE_DETECT) == 0,
Chris Wilson481b6af2010-08-23 17:43:35 +0100377 1000))
Chris Wilson79077312010-09-12 19:58:04 +0100378 DRM_DEBUG_KMS("timed out waiting for FORCE_DETECT to go off");
Zhao Yakui771cb082009-03-03 18:07:52 +0800379 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800380
Adam Jackson7a772c42010-05-24 16:46:29 -0400381 stat = I915_READ(PORT_HOTPLUG_STAT);
382 if ((stat & CRT_HOTPLUG_MONITOR_MASK) != CRT_HOTPLUG_MONITOR_NONE)
383 ret = true;
Jesse Barnes79e53942008-11-07 14:24:08 -0800384
Adam Jackson7a772c42010-05-24 16:46:29 -0400385 /* clear the interrupt we just generated, if any */
386 I915_WRITE(PORT_HOTPLUG_STAT, CRT_HOTPLUG_INT_STATUS);
387
388 /* and put the bits back */
389 I915_WRITE(PORT_HOTPLUG_EN, orig);
390
391 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800392}
393
David Müllerf5afcd32011-01-06 12:29:32 +0000394static bool intel_crt_detect_ddc(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -0800395{
David Müllerf5afcd32011-01-06 12:29:32 +0000396 struct intel_crt *crt = intel_attached_crt(connector);
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000397 struct drm_i915_private *dev_priv = crt->base.base.dev->dev_private;
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200398 struct edid *edid;
399 struct i2c_adapter *i2c;
Jesse Barnes79e53942008-11-07 14:24:08 -0800400
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200401 BUG_ON(crt->base.type != INTEL_OUTPUT_ANALOG);
Jesse Barnes79e53942008-11-07 14:24:08 -0800402
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200403 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->crt_ddc_pin);
404 edid = drm_get_edid(connector, i2c);
David Müllerf5afcd32011-01-06 12:29:32 +0000405
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200406 if (edid) {
407 bool is_digital = edid->input & DRM_EDID_INPUT_DIGITAL;
408
David Müllerf5afcd32011-01-06 12:29:32 +0000409 /*
410 * This may be a DVI-I connector with a shared DDC
411 * link between analog and digital outputs, so we
412 * have to check the EDID input spec of the attached device.
413 */
David Müllerf5afcd32011-01-06 12:29:32 +0000414 if (!is_digital) {
415 DRM_DEBUG_KMS("CRT detected via DDC:0x50 [EDID]\n");
416 return true;
417 }
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200418
419 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [EDID reports a digital panel]\n");
420 } else {
421 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [no valid EDID found]\n");
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100422 }
423
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200424 kfree(edid);
425
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100426 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800427}
428
Ma Linge4a5d542009-05-26 11:31:00 +0800429static enum drm_connector_status
Chris Wilson71731882011-04-19 23:10:58 +0100430intel_crt_load_detect(struct intel_crt *crt)
Ma Linge4a5d542009-05-26 11:31:00 +0800431{
Chris Wilson71731882011-04-19 23:10:58 +0100432 struct drm_device *dev = crt->base.base.dev;
Ma Linge4a5d542009-05-26 11:31:00 +0800433 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson71731882011-04-19 23:10:58 +0100434 uint32_t pipe = to_intel_crtc(crt->base.base.crtc)->pipe;
Ma Linge4a5d542009-05-26 11:31:00 +0800435 uint32_t save_bclrpat;
436 uint32_t save_vtotal;
437 uint32_t vtotal, vactive;
438 uint32_t vsample;
439 uint32_t vblank, vblank_start, vblank_end;
440 uint32_t dsl;
441 uint32_t bclrpat_reg;
442 uint32_t vtotal_reg;
443 uint32_t vblank_reg;
444 uint32_t vsync_reg;
445 uint32_t pipeconf_reg;
446 uint32_t pipe_dsl_reg;
447 uint8_t st00;
448 enum drm_connector_status status;
449
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100450 DRM_DEBUG_KMS("starting load-detect on CRT\n");
451
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800452 bclrpat_reg = BCLRPAT(pipe);
453 vtotal_reg = VTOTAL(pipe);
454 vblank_reg = VBLANK(pipe);
455 vsync_reg = VSYNC(pipe);
456 pipeconf_reg = PIPECONF(pipe);
457 pipe_dsl_reg = PIPEDSL(pipe);
Ma Linge4a5d542009-05-26 11:31:00 +0800458
459 save_bclrpat = I915_READ(bclrpat_reg);
460 save_vtotal = I915_READ(vtotal_reg);
461 vblank = I915_READ(vblank_reg);
462
463 vtotal = ((save_vtotal >> 16) & 0xfff) + 1;
464 vactive = (save_vtotal & 0x7ff) + 1;
465
466 vblank_start = (vblank & 0xfff) + 1;
467 vblank_end = ((vblank >> 16) & 0xfff) + 1;
468
469 /* Set the border color to purple. */
470 I915_WRITE(bclrpat_reg, 0x500050);
471
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100472 if (!IS_GEN2(dev)) {
Ma Linge4a5d542009-05-26 11:31:00 +0800473 uint32_t pipeconf = I915_READ(pipeconf_reg);
474 I915_WRITE(pipeconf_reg, pipeconf | PIPECONF_FORCE_BORDER);
Chris Wilson19c55da2010-08-09 14:50:53 +0100475 POSTING_READ(pipeconf_reg);
Ma Linge4a5d542009-05-26 11:31:00 +0800476 /* Wait for next Vblank to substitue
477 * border color for Color info */
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700478 intel_wait_for_vblank(dev, pipe);
Ma Linge4a5d542009-05-26 11:31:00 +0800479 st00 = I915_READ8(VGA_MSR_WRITE);
480 status = ((st00 & (1 << 4)) != 0) ?
481 connector_status_connected :
482 connector_status_disconnected;
483
484 I915_WRITE(pipeconf_reg, pipeconf);
485 } else {
486 bool restore_vblank = false;
487 int count, detect;
488
489 /*
490 * If there isn't any border, add some.
491 * Yes, this will flicker
492 */
493 if (vblank_start <= vactive && vblank_end >= vtotal) {
494 uint32_t vsync = I915_READ(vsync_reg);
495 uint32_t vsync_start = (vsync & 0xffff) + 1;
496
497 vblank_start = vsync_start;
498 I915_WRITE(vblank_reg,
499 (vblank_start - 1) |
500 ((vblank_end - 1) << 16));
501 restore_vblank = true;
502 }
503 /* sample in the vertical border, selecting the larger one */
504 if (vblank_start - vactive >= vtotal - vblank_end)
505 vsample = (vblank_start + vactive) >> 1;
506 else
507 vsample = (vtotal + vblank_end) >> 1;
508
509 /*
510 * Wait for the border to be displayed
511 */
512 while (I915_READ(pipe_dsl_reg) >= vactive)
513 ;
514 while ((dsl = I915_READ(pipe_dsl_reg)) <= vsample)
515 ;
516 /*
517 * Watch ST00 for an entire scanline
518 */
519 detect = 0;
520 count = 0;
521 do {
522 count++;
523 /* Read the ST00 VGA status register */
524 st00 = I915_READ8(VGA_MSR_WRITE);
525 if (st00 & (1 << 4))
526 detect++;
527 } while ((I915_READ(pipe_dsl_reg) == dsl));
528
529 /* restore vblank if necessary */
530 if (restore_vblank)
531 I915_WRITE(vblank_reg, vblank);
532 /*
533 * If more than 3/4 of the scanline detected a monitor,
534 * then it is assumed to be present. This works even on i830,
535 * where there isn't any way to force the border color across
536 * the screen
537 */
538 status = detect * 4 > count * 3 ?
539 connector_status_connected :
540 connector_status_disconnected;
541 }
542
543 /* Restore previous settings */
544 I915_WRITE(bclrpat_reg, save_bclrpat);
545
546 return status;
547}
548
Chris Wilson7b334fc2010-09-09 23:51:02 +0100549static enum drm_connector_status
Chris Wilson930a9e22010-09-14 11:07:23 +0100550intel_crt_detect(struct drm_connector *connector, bool force)
Jesse Barnes79e53942008-11-07 14:24:08 -0800551{
552 struct drm_device *dev = connector->dev;
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000553 struct intel_crt *crt = intel_attached_crt(connector);
Ma Linge4a5d542009-05-26 11:31:00 +0800554 enum drm_connector_status status;
Daniel Vettere95c8432012-04-20 21:03:36 +0200555 struct intel_load_detect_pipe tmp;
Jesse Barnes79e53942008-11-07 14:24:08 -0800556
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100557 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetteraaa37732012-06-16 15:30:32 +0200558 /* We can not rely on the HPD pin always being correctly wired
559 * up, for example many KVM do not pass it through, and so
560 * only trust an assertion that the monitor is connected.
561 */
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100562 if (intel_crt_detect_hotplug(connector)) {
563 DRM_DEBUG_KMS("CRT detected via hotplug\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800564 return connector_status_connected;
Daniel Vetteraaa37732012-06-16 15:30:32 +0200565 } else
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800566 DRM_DEBUG_KMS("CRT not detected via hotplug\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800567 }
568
David Müllerf5afcd32011-01-06 12:29:32 +0000569 if (intel_crt_detect_ddc(connector))
Jesse Barnes79e53942008-11-07 14:24:08 -0800570 return connector_status_connected;
571
Daniel Vetteraaa37732012-06-16 15:30:32 +0200572 /* Load detection is broken on HPD capable machines. Whoever wants a
573 * broken monitor (without edid) to work behind a broken kvm (that fails
574 * to have the right resistors for HP detection) needs to fix this up.
575 * For now just bail out. */
576 if (I915_HAS_HOTPLUG(dev))
577 return connector_status_disconnected;
578
Chris Wilson930a9e22010-09-14 11:07:23 +0100579 if (!force)
Chris Wilson7b334fc2010-09-09 23:51:02 +0100580 return connector->status;
581
Ma Linge4a5d542009-05-26 11:31:00 +0800582 /* for pre-945g platforms use load detect */
Daniel Vetterd2434ab2012-08-12 21:20:10 +0200583 if (intel_get_load_detect_pipe(connector, NULL, &tmp)) {
Daniel Vettere95c8432012-04-20 21:03:36 +0200584 if (intel_crt_detect_ddc(connector))
585 status = connector_status_connected;
586 else
587 status = intel_crt_load_detect(crt);
Daniel Vetterd2434ab2012-08-12 21:20:10 +0200588 intel_release_load_detect_pipe(connector, &tmp);
Daniel Vettere95c8432012-04-20 21:03:36 +0200589 } else
590 status = connector_status_unknown;
Ma Linge4a5d542009-05-26 11:31:00 +0800591
592 return status;
Jesse Barnes79e53942008-11-07 14:24:08 -0800593}
594
595static void intel_crt_destroy(struct drm_connector *connector)
596{
Jesse Barnes79e53942008-11-07 14:24:08 -0800597 drm_sysfs_connector_remove(connector);
598 drm_connector_cleanup(connector);
599 kfree(connector);
600}
601
602static int intel_crt_get_modes(struct drm_connector *connector)
603{
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800604 struct drm_device *dev = connector->dev;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700605 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson890f3352010-09-14 16:46:59 +0100606 int ret;
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800607 struct i2c_adapter *i2c;
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800608
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800609 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->crt_ddc_pin);
610 ret = intel_ddc_get_modes(connector, i2c);
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800611 if (ret || !IS_G4X(dev))
Chris Wilsonf899fc62010-07-20 15:44:45 -0700612 return ret;
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800613
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800614 /* Try to probe digital port for output in DVI-I -> VGA mode. */
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800615 i2c = intel_gmbus_get_adapter(dev_priv, GMBUS_PORT_DPB);
616 return intel_ddc_get_modes(connector, i2c);
Jesse Barnes79e53942008-11-07 14:24:08 -0800617}
618
619static int intel_crt_set_property(struct drm_connector *connector,
620 struct drm_property *property,
621 uint64_t value)
622{
Jesse Barnes79e53942008-11-07 14:24:08 -0800623 return 0;
624}
625
Chris Wilsonf3269052011-01-24 15:17:08 +0000626static void intel_crt_reset(struct drm_connector *connector)
627{
628 struct drm_device *dev = connector->dev;
629 struct intel_crt *crt = intel_attached_crt(connector);
630
631 if (HAS_PCH_SPLIT(dev))
632 crt->force_hotplug_required = 1;
633}
634
Jesse Barnes79e53942008-11-07 14:24:08 -0800635/*
636 * Routines for controlling stuff on the analog port
637 */
638
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200639static const struct drm_encoder_helper_funcs crt_encoder_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800640 .mode_fixup = intel_crt_mode_fixup,
Jesse Barnes79e53942008-11-07 14:24:08 -0800641 .mode_set = intel_crt_mode_set,
Daniel Vetter21246042012-07-01 14:58:27 +0200642 .disable = intel_encoder_disable,
Jesse Barnes79e53942008-11-07 14:24:08 -0800643};
644
645static const struct drm_connector_funcs intel_crt_connector_funcs = {
Chris Wilsonf3269052011-01-24 15:17:08 +0000646 .reset = intel_crt_reset,
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200647 .dpms = intel_crt_dpms,
Jesse Barnes79e53942008-11-07 14:24:08 -0800648 .detect = intel_crt_detect,
649 .fill_modes = drm_helper_probe_single_connector_modes,
650 .destroy = intel_crt_destroy,
651 .set_property = intel_crt_set_property,
652};
653
654static const struct drm_connector_helper_funcs intel_crt_connector_helper_funcs = {
655 .mode_valid = intel_crt_mode_valid,
656 .get_modes = intel_crt_get_modes,
Chris Wilsondf0e9242010-09-09 16:20:55 +0100657 .best_encoder = intel_best_encoder,
Jesse Barnes79e53942008-11-07 14:24:08 -0800658};
659
Jesse Barnes79e53942008-11-07 14:24:08 -0800660static const struct drm_encoder_funcs intel_crt_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100661 .destroy = intel_encoder_destroy,
Jesse Barnes79e53942008-11-07 14:24:08 -0800662};
663
Duncan Laurie8ca40132011-10-25 15:42:21 -0700664static int __init intel_no_crt_dmi_callback(const struct dmi_system_id *id)
665{
Daniel Vetterbc0daf42012-04-01 13:16:49 +0200666 DRM_INFO("Skipping CRT initialization for %s\n", id->ident);
Duncan Laurie8ca40132011-10-25 15:42:21 -0700667 return 1;
668}
669
670static const struct dmi_system_id intel_no_crt[] = {
671 {
672 .callback = intel_no_crt_dmi_callback,
673 .ident = "ACER ZGB",
674 .matches = {
675 DMI_MATCH(DMI_SYS_VENDOR, "ACER"),
676 DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"),
677 },
678 },
679 { }
680};
681
Jesse Barnes79e53942008-11-07 14:24:08 -0800682void intel_crt_init(struct drm_device *dev)
683{
684 struct drm_connector *connector;
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000685 struct intel_crt *crt;
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800686 struct intel_connector *intel_connector;
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200687 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -0800688
Duncan Laurie8ca40132011-10-25 15:42:21 -0700689 /* Skip machines without VGA that falsely report hotplug events */
690 if (dmi_check_system(intel_no_crt))
691 return;
692
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000693 crt = kzalloc(sizeof(struct intel_crt), GFP_KERNEL);
694 if (!crt)
Jesse Barnes79e53942008-11-07 14:24:08 -0800695 return;
696
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800697 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
698 if (!intel_connector) {
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000699 kfree(crt);
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800700 return;
701 }
702
703 connector = &intel_connector->base;
704 drm_connector_init(dev, &intel_connector->base,
Jesse Barnes79e53942008-11-07 14:24:08 -0800705 &intel_crt_connector_funcs, DRM_MODE_CONNECTOR_VGA);
706
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000707 drm_encoder_init(dev, &crt->base.base, &intel_crt_enc_funcs,
Jesse Barnes79e53942008-11-07 14:24:08 -0800708 DRM_MODE_ENCODER_DAC);
709
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000710 intel_connector_attach_encoder(intel_connector, &crt->base);
Jesse Barnes79e53942008-11-07 14:24:08 -0800711
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000712 crt->base.type = INTEL_OUTPUT_ANALOG;
Daniel Vetter66a92782012-07-12 20:08:18 +0200713 crt->base.cloneable = true;
Eugeni Dodonov59c859d2012-05-09 15:37:19 -0300714 if (IS_HASWELL(dev))
715 crt->base.crtc_mask = (1 << 0);
716 else
Keith Packard08268742012-08-13 21:34:45 -0700717 crt->base.crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -0300718
Daniel Vetterdbb02572012-01-28 14:49:23 +0100719 if (IS_GEN2(dev))
720 connector->interlace_allowed = 0;
721 else
722 connector->interlace_allowed = 1;
Jesse Barnes79e53942008-11-07 14:24:08 -0800723 connector->doublescan_allowed = 0;
724
Jesse Barnesdf0323c2012-04-17 15:06:33 -0700725 if (HAS_PCH_SPLIT(dev))
Daniel Vetter540a8952012-07-11 16:27:57 +0200726 crt->adpa_reg = PCH_ADPA;
727 else if (IS_VALLEYVIEW(dev))
728 crt->adpa_reg = VLV_ADPA;
729 else
730 crt->adpa_reg = ADPA;
731
Daniel Vetter21246042012-07-01 14:58:27 +0200732 crt->base.disable = intel_disable_crt;
733 crt->base.enable = intel_enable_crt;
Daniel Vettere403fc92012-07-02 13:41:21 +0200734 crt->base.get_hw_state = intel_crt_get_hw_state;
735 intel_connector->get_hw_state = intel_connector_get_hw_state;
Daniel Vetter21246042012-07-01 14:58:27 +0200736
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200737 drm_encoder_helper_add(&crt->base.base, &crt_encoder_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -0800738 drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs);
739
740 drm_sysfs_connector_add(connector);
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800741
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000742 if (I915_HAS_HOTPLUG(dev))
743 connector->polled = DRM_CONNECTOR_POLL_HPD;
744 else
745 connector->polled = DRM_CONNECTOR_POLL_CONNECT;
746
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800747 /*
748 * Configure the automatic hotplug detection stuff
749 */
750 crt->force_hotplug_required = 0;
751 if (HAS_PCH_SPLIT(dev)) {
752 u32 adpa;
753
754 adpa = I915_READ(PCH_ADPA);
755 adpa &= ~ADPA_CRT_HOTPLUG_MASK;
756 adpa |= ADPA_HOTPLUG_BITS;
757 I915_WRITE(PCH_ADPA, adpa);
758 POSTING_READ(PCH_ADPA);
759
760 DRM_DEBUG_KMS("pch crt adpa set to 0x%x\n", adpa);
761 crt->force_hotplug_required = 1;
762 }
763
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800764 dev_priv->hotplug_supported_mask |= CRT_HOTPLUG_INT_STATUS;
Jesse Barnes79e53942008-11-07 14:24:08 -0800765}