Merge branch 'acpi-lpss'
[deliverable/linux.git] / drivers / gpu / drm / i915 / intel_crt.c
CommitLineData
79e53945
JB
1/*
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
8ca4013d 27#include <linux/dmi.h>
79e53945 28#include <linux/i2c.h>
5a0e3ad6 29#include <linux/slab.h>
760285e7
DH
30#include <drm/drmP.h>
31#include <drm/drm_crtc.h>
32#include <drm/drm_crtc_helper.h>
33#include <drm/drm_edid.h>
79e53945 34#include "intel_drv.h"
760285e7 35#include <drm/i915_drm.h>
79e53945
JB
36#include "i915_drv.h"
37
e7dbb2f2
KP
38/* Here's the desired hotplug mode */
39#define ADPA_HOTPLUG_BITS (ADPA_CRT_HOTPLUG_PERIOD_128 | \
40 ADPA_CRT_HOTPLUG_WARMUP_10MS | \
41 ADPA_CRT_HOTPLUG_SAMPLE_4S | \
42 ADPA_CRT_HOTPLUG_VOLTAGE_50 | \
43 ADPA_CRT_HOTPLUG_VOLREF_325MV | \
44 ADPA_CRT_HOTPLUG_ENABLE)
45
c9a1c4cd
CW
46struct intel_crt {
47 struct intel_encoder base;
637f44d2
AJ
48 /* DPMS state is stored in the connector, which we need in the
49 * encoder's enable/disable callbacks */
50 struct intel_connector *connector;
e7dbb2f2 51 bool force_hotplug_required;
540a8950 52 u32 adpa_reg;
c9a1c4cd
CW
53};
54
55static struct intel_crt *intel_attached_crt(struct drm_connector *connector)
56{
57 return container_of(intel_attached_encoder(connector),
58 struct intel_crt, base);
59}
60
540a8950 61static struct intel_crt *intel_encoder_to_crt(struct intel_encoder *encoder)
79e53945 62{
540a8950
DV
63 return container_of(encoder, struct intel_crt, base);
64}
65
e403fc94
DV
66static bool intel_crt_get_hw_state(struct intel_encoder *encoder,
67 enum pipe *pipe)
79e53945 68{
e403fc94 69 struct drm_device *dev = encoder->base.dev;
79e53945 70 struct drm_i915_private *dev_priv = dev->dev_private;
e403fc94
DV
71 struct intel_crt *crt = intel_encoder_to_crt(encoder);
72 u32 tmp;
73
74 tmp = I915_READ(crt->adpa_reg);
75
76 if (!(tmp & ADPA_DAC_ENABLE))
77 return false;
78
79 if (HAS_PCH_CPT(dev))
80 *pipe = PORT_TO_PIPE_CPT(tmp);
81 else
82 *pipe = PORT_TO_PIPE(tmp);
83
84 return true;
85}
86
b2cabb0e
DV
87/* Note: The caller is required to filter out dpms modes not supported by the
88 * platform. */
89static void intel_crt_set_dpms(struct intel_encoder *encoder, int mode)
df0323c4 90{
b2cabb0e 91 struct drm_device *dev = encoder->base.dev;
df0323c4 92 struct drm_i915_private *dev_priv = dev->dev_private;
b2cabb0e 93 struct intel_crt *crt = intel_encoder_to_crt(encoder);
df0323c4
JB
94 u32 temp;
95
b2cabb0e 96 temp = I915_READ(crt->adpa_reg);
79e53945 97 temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
febc7694 98 temp &= ~ADPA_DAC_ENABLE;
79e53945 99
0206e353 100 switch (mode) {
79e53945
JB
101 case DRM_MODE_DPMS_ON:
102 temp |= ADPA_DAC_ENABLE;
103 break;
104 case DRM_MODE_DPMS_STANDBY:
105 temp |= ADPA_DAC_ENABLE | ADPA_HSYNC_CNTL_DISABLE;
106 break;
107 case DRM_MODE_DPMS_SUSPEND:
108 temp |= ADPA_DAC_ENABLE | ADPA_VSYNC_CNTL_DISABLE;
109 break;
110 case DRM_MODE_DPMS_OFF:
111 temp |= ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE;
112 break;
113 }
114
b2cabb0e 115 I915_WRITE(crt->adpa_reg, temp);
df0323c4 116}
2c07245f 117
637f44d2
AJ
118static void intel_disable_crt(struct intel_encoder *encoder)
119{
120 intel_crt_set_dpms(encoder, DRM_MODE_DPMS_OFF);
121}
122
123static void intel_enable_crt(struct intel_encoder *encoder)
124{
125 struct intel_crt *crt = intel_encoder_to_crt(encoder);
126
127 intel_crt_set_dpms(encoder, crt->connector->base.dpms);
128}
129
130
b2cabb0e 131static void intel_crt_dpms(struct drm_connector *connector, int mode)
df0323c4 132{
b2cabb0e
DV
133 struct drm_device *dev = connector->dev;
134 struct intel_encoder *encoder = intel_attached_encoder(connector);
135 struct drm_crtc *crtc;
136 int old_dpms;
79e53945 137
b2cabb0e 138 /* PCH platforms and VLV only support on/off. */
4a8dece2 139 if (INTEL_INFO(dev)->gen >= 5 && mode != DRM_MODE_DPMS_ON)
bd9e8413
JB
140 mode = DRM_MODE_DPMS_OFF;
141
b2cabb0e
DV
142 if (mode == connector->dpms)
143 return;
144
145 old_dpms = connector->dpms;
146 connector->dpms = mode;
147
148 /* Only need to change hw state when actually enabled */
149 crtc = encoder->base.crtc;
150 if (!crtc) {
151 encoder->connectors_active = false;
152 return;
79e53945
JB
153 }
154
b2cabb0e
DV
155 /* We need the pipe to run for anything but OFF. */
156 if (mode == DRM_MODE_DPMS_OFF)
157 encoder->connectors_active = false;
158 else
159 encoder->connectors_active = true;
160
161 if (mode < old_dpms) {
162 /* From off to on, enable the pipe first. */
163 intel_crtc_update_dpms(crtc);
164
165 intel_crt_set_dpms(encoder, mode);
166 } else {
167 intel_crt_set_dpms(encoder, mode);
168
169 intel_crtc_update_dpms(crtc);
170 }
0a91ca29 171
b980514c 172 intel_modeset_check_state(connector->dev);
79e53945
JB
173}
174
175static int intel_crt_mode_valid(struct drm_connector *connector,
176 struct drm_display_mode *mode)
177{
6bcdcd9e
ZY
178 struct drm_device *dev = connector->dev;
179
180 int max_clock = 0;
79e53945
JB
181 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
182 return MODE_NO_DBLESCAN;
183
6bcdcd9e
ZY
184 if (mode->clock < 25000)
185 return MODE_CLOCK_LOW;
186
a6c45cf0 187 if (IS_GEN2(dev))
6bcdcd9e
ZY
188 max_clock = 350000;
189 else
190 max_clock = 400000;
191 if (mode->clock > max_clock)
192 return MODE_CLOCK_HIGH;
79e53945 193
d4b1931c
PZ
194 /* The FDI receiver on LPT only supports 8bpc and only has 2 lanes. */
195 if (HAS_PCH_LPT(dev) &&
196 (ironlake_get_lanes_required(mode->clock, 270000, 24) > 2))
197 return MODE_CLOCK_HIGH;
198
79e53945
JB
199 return MODE_OK;
200}
201
202static bool intel_crt_mode_fixup(struct drm_encoder *encoder,
e811f5ae 203 const struct drm_display_mode *mode,
79e53945
JB
204 struct drm_display_mode *adjusted_mode)
205{
206 return true;
207}
208
209static void intel_crt_mode_set(struct drm_encoder *encoder,
210 struct drm_display_mode *mode,
211 struct drm_display_mode *adjusted_mode)
212{
213
214 struct drm_device *dev = encoder->dev;
215 struct drm_crtc *crtc = encoder->crtc;
540a8950
DV
216 struct intel_crt *crt =
217 intel_encoder_to_crt(to_intel_encoder(encoder));
79e53945
JB
218 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
219 struct drm_i915_private *dev_priv = dev->dev_private;
6478d414 220 u32 adpa;
79e53945 221
912d812e
DV
222 if (HAS_PCH_SPLIT(dev))
223 adpa = ADPA_HOTPLUG_BITS;
224 else
225 adpa = 0;
226
79e53945
JB
227 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
228 adpa |= ADPA_HSYNC_ACTIVE_HIGH;
229 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
230 adpa |= ADPA_VSYNC_ACTIVE_HIGH;
231
75770564 232 /* For CPT allow 3 pipe config, for others just use A or B */
4837813a
PZ
233 if (HAS_PCH_LPT(dev))
234 ; /* Those bits don't exist here */
235 else if (HAS_PCH_CPT(dev))
75770564
JB
236 adpa |= PORT_TRANS_SEL_CPT(intel_crtc->pipe);
237 else if (intel_crtc->pipe == 0)
238 adpa |= ADPA_PIPE_A_SELECT;
239 else
240 adpa |= ADPA_PIPE_B_SELECT;
79e53945 241
9db4a9c7
JB
242 if (!HAS_PCH_SPLIT(dev))
243 I915_WRITE(BCLRPAT(intel_crtc->pipe), 0);
244
540a8950 245 I915_WRITE(crt->adpa_reg, adpa);
2c07245f
ZW
246}
247
f2b115e6 248static bool intel_ironlake_crt_detect_hotplug(struct drm_connector *connector)
2c07245f
ZW
249{
250 struct drm_device *dev = connector->dev;
e7dbb2f2 251 struct intel_crt *crt = intel_attached_crt(connector);
2c07245f 252 struct drm_i915_private *dev_priv = dev->dev_private;
e7dbb2f2 253 u32 adpa;
2c07245f
ZW
254 bool ret;
255
e7dbb2f2
KP
256 /* The first time through, trigger an explicit detection cycle */
257 if (crt->force_hotplug_required) {
258 bool turn_off_dac = HAS_PCH_SPLIT(dev);
259 u32 save_adpa;
67941da2 260
e7dbb2f2
KP
261 crt->force_hotplug_required = 0;
262
ca54b810 263 save_adpa = adpa = I915_READ(crt->adpa_reg);
e7dbb2f2
KP
264 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
265
266 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
267 if (turn_off_dac)
268 adpa &= ~ADPA_DAC_ENABLE;
269
ca54b810 270 I915_WRITE(crt->adpa_reg, adpa);
e7dbb2f2 271
ca54b810 272 if (wait_for((I915_READ(crt->adpa_reg) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
e7dbb2f2
KP
273 1000))
274 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
275
276 if (turn_off_dac) {
ca54b810
VS
277 I915_WRITE(crt->adpa_reg, save_adpa);
278 POSTING_READ(crt->adpa_reg);
e7dbb2f2 279 }
a4a6b901
ZW
280 }
281
2c07245f 282 /* Check the status to see if both blue and green are on now */
ca54b810 283 adpa = I915_READ(crt->adpa_reg);
e7dbb2f2 284 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
2c07245f
ZW
285 ret = true;
286 else
287 ret = false;
e7dbb2f2 288 DRM_DEBUG_KMS("ironlake hotplug adpa=0x%x, result %d\n", adpa, ret);
2c07245f 289
2c07245f 290 return ret;
79e53945
JB
291}
292
7d2c24e8
JB
293static bool valleyview_crt_detect_hotplug(struct drm_connector *connector)
294{
295 struct drm_device *dev = connector->dev;
ca54b810 296 struct intel_crt *crt = intel_attached_crt(connector);
7d2c24e8
JB
297 struct drm_i915_private *dev_priv = dev->dev_private;
298 u32 adpa;
299 bool ret;
300 u32 save_adpa;
301
ca54b810 302 save_adpa = adpa = I915_READ(crt->adpa_reg);
7d2c24e8
JB
303 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
304
305 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
306
ca54b810 307 I915_WRITE(crt->adpa_reg, adpa);
7d2c24e8 308
ca54b810 309 if (wait_for((I915_READ(crt->adpa_reg) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
7d2c24e8
JB
310 1000)) {
311 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
ca54b810 312 I915_WRITE(crt->adpa_reg, save_adpa);
7d2c24e8
JB
313 }
314
315 /* Check the status to see if both blue and green are on now */
ca54b810 316 adpa = I915_READ(crt->adpa_reg);
7d2c24e8
JB
317 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
318 ret = true;
319 else
320 ret = false;
321
322 DRM_DEBUG_KMS("valleyview hotplug adpa=0x%x, result %d\n", adpa, ret);
323
324 /* FIXME: debug force function and remove */
325 ret = true;
326
327 return ret;
328}
329
79e53945
JB
330/**
331 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect CRT presence.
332 *
333 * Not for i915G/i915GM
334 *
335 * \return true if CRT is connected.
336 * \return false if CRT is disconnected.
337 */
338static bool intel_crt_detect_hotplug(struct drm_connector *connector)
339{
340 struct drm_device *dev = connector->dev;
341 struct drm_i915_private *dev_priv = dev->dev_private;
7a772c49
AJ
342 u32 hotplug_en, orig, stat;
343 bool ret = false;
771cb081 344 int i, tries = 0;
2c07245f 345
bad720ff 346 if (HAS_PCH_SPLIT(dev))
f2b115e6 347 return intel_ironlake_crt_detect_hotplug(connector);
2c07245f 348
7d2c24e8
JB
349 if (IS_VALLEYVIEW(dev))
350 return valleyview_crt_detect_hotplug(connector);
351
771cb081
ZY
352 /*
353 * On 4 series desktop, CRT detect sequence need to be done twice
354 * to get a reliable result.
355 */
79e53945 356
771cb081
ZY
357 if (IS_G4X(dev) && !IS_GM45(dev))
358 tries = 2;
359 else
360 tries = 1;
7a772c49 361 hotplug_en = orig = I915_READ(PORT_HOTPLUG_EN);
771cb081
ZY
362 hotplug_en |= CRT_HOTPLUG_FORCE_DETECT;
363
771cb081 364 for (i = 0; i < tries ; i++) {
771cb081
ZY
365 /* turn on the FORCE_DETECT */
366 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
771cb081 367 /* wait for FORCE_DETECT to go off */
913d8d11
CW
368 if (wait_for((I915_READ(PORT_HOTPLUG_EN) &
369 CRT_HOTPLUG_FORCE_DETECT) == 0,
481b6af3 370 1000))
79077319 371 DRM_DEBUG_KMS("timed out waiting for FORCE_DETECT to go off");
771cb081 372 }
79e53945 373
7a772c49
AJ
374 stat = I915_READ(PORT_HOTPLUG_STAT);
375 if ((stat & CRT_HOTPLUG_MONITOR_MASK) != CRT_HOTPLUG_MONITOR_NONE)
376 ret = true;
377
378 /* clear the interrupt we just generated, if any */
379 I915_WRITE(PORT_HOTPLUG_STAT, CRT_HOTPLUG_INT_STATUS);
79e53945 380
7a772c49
AJ
381 /* and put the bits back */
382 I915_WRITE(PORT_HOTPLUG_EN, orig);
383
384 return ret;
79e53945
JB
385}
386
f1a2f5b7
JN
387static struct edid *intel_crt_get_edid(struct drm_connector *connector,
388 struct i2c_adapter *i2c)
389{
390 struct edid *edid;
391
392 edid = drm_get_edid(connector, i2c);
393
394 if (!edid && !intel_gmbus_is_forced_bit(i2c)) {
395 DRM_DEBUG_KMS("CRT GMBUS EDID read failed, retry using GPIO bit-banging\n");
396 intel_gmbus_force_bit(i2c, true);
397 edid = drm_get_edid(connector, i2c);
398 intel_gmbus_force_bit(i2c, false);
399 }
400
401 return edid;
402}
403
404/* local version of intel_ddc_get_modes() to use intel_crt_get_edid() */
405static int intel_crt_ddc_get_modes(struct drm_connector *connector,
406 struct i2c_adapter *adapter)
407{
408 struct edid *edid;
ebda95a9 409 int ret;
f1a2f5b7
JN
410
411 edid = intel_crt_get_edid(connector, adapter);
412 if (!edid)
413 return 0;
414
ebda95a9
JN
415 ret = intel_connector_update_modes(connector, edid);
416 kfree(edid);
417
418 return ret;
f1a2f5b7
JN
419}
420
f5afcd3d 421static bool intel_crt_detect_ddc(struct drm_connector *connector)
79e53945 422{
f5afcd3d 423 struct intel_crt *crt = intel_attached_crt(connector);
c9a1c4cd 424 struct drm_i915_private *dev_priv = crt->base.base.dev->dev_private;
a2bd1f54
DV
425 struct edid *edid;
426 struct i2c_adapter *i2c;
79e53945 427
a2bd1f54 428 BUG_ON(crt->base.type != INTEL_OUTPUT_ANALOG);
79e53945 429
a2bd1f54 430 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->crt_ddc_pin);
f1a2f5b7 431 edid = intel_crt_get_edid(connector, i2c);
a2bd1f54
DV
432
433 if (edid) {
434 bool is_digital = edid->input & DRM_EDID_INPUT_DIGITAL;
f5afcd3d 435
f5afcd3d
DM
436 /*
437 * This may be a DVI-I connector with a shared DDC
438 * link between analog and digital outputs, so we
439 * have to check the EDID input spec of the attached device.
440 */
f5afcd3d
DM
441 if (!is_digital) {
442 DRM_DEBUG_KMS("CRT detected via DDC:0x50 [EDID]\n");
443 return true;
444 }
a2bd1f54
DV
445
446 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [EDID reports a digital panel]\n");
447 } else {
448 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [no valid EDID found]\n");
6ec3d0c0
CW
449 }
450
a2bd1f54
DV
451 kfree(edid);
452
6ec3d0c0 453 return false;
79e53945
JB
454}
455
e4a5d54f 456static enum drm_connector_status
7173188d 457intel_crt_load_detect(struct intel_crt *crt)
e4a5d54f 458{
7173188d 459 struct drm_device *dev = crt->base.base.dev;
e4a5d54f 460 struct drm_i915_private *dev_priv = dev->dev_private;
7173188d 461 uint32_t pipe = to_intel_crtc(crt->base.base.crtc)->pipe;
e4a5d54f
ML
462 uint32_t save_bclrpat;
463 uint32_t save_vtotal;
464 uint32_t vtotal, vactive;
465 uint32_t vsample;
466 uint32_t vblank, vblank_start, vblank_end;
467 uint32_t dsl;
468 uint32_t bclrpat_reg;
469 uint32_t vtotal_reg;
470 uint32_t vblank_reg;
471 uint32_t vsync_reg;
472 uint32_t pipeconf_reg;
473 uint32_t pipe_dsl_reg;
474 uint8_t st00;
475 enum drm_connector_status status;
476
6ec3d0c0
CW
477 DRM_DEBUG_KMS("starting load-detect on CRT\n");
478
9db4a9c7
JB
479 bclrpat_reg = BCLRPAT(pipe);
480 vtotal_reg = VTOTAL(pipe);
481 vblank_reg = VBLANK(pipe);
482 vsync_reg = VSYNC(pipe);
483 pipeconf_reg = PIPECONF(pipe);
484 pipe_dsl_reg = PIPEDSL(pipe);
e4a5d54f
ML
485
486 save_bclrpat = I915_READ(bclrpat_reg);
487 save_vtotal = I915_READ(vtotal_reg);
488 vblank = I915_READ(vblank_reg);
489
490 vtotal = ((save_vtotal >> 16) & 0xfff) + 1;
491 vactive = (save_vtotal & 0x7ff) + 1;
492
493 vblank_start = (vblank & 0xfff) + 1;
494 vblank_end = ((vblank >> 16) & 0xfff) + 1;
495
496 /* Set the border color to purple. */
497 I915_WRITE(bclrpat_reg, 0x500050);
498
a6c45cf0 499 if (!IS_GEN2(dev)) {
e4a5d54f
ML
500 uint32_t pipeconf = I915_READ(pipeconf_reg);
501 I915_WRITE(pipeconf_reg, pipeconf | PIPECONF_FORCE_BORDER);
19c55da1 502 POSTING_READ(pipeconf_reg);
e4a5d54f
ML
503 /* Wait for next Vblank to substitue
504 * border color for Color info */
9d0498a2 505 intel_wait_for_vblank(dev, pipe);
e4a5d54f
ML
506 st00 = I915_READ8(VGA_MSR_WRITE);
507 status = ((st00 & (1 << 4)) != 0) ?
508 connector_status_connected :
509 connector_status_disconnected;
510
511 I915_WRITE(pipeconf_reg, pipeconf);
512 } else {
513 bool restore_vblank = false;
514 int count, detect;
515
516 /*
517 * If there isn't any border, add some.
518 * Yes, this will flicker
519 */
520 if (vblank_start <= vactive && vblank_end >= vtotal) {
521 uint32_t vsync = I915_READ(vsync_reg);
522 uint32_t vsync_start = (vsync & 0xffff) + 1;
523
524 vblank_start = vsync_start;
525 I915_WRITE(vblank_reg,
526 (vblank_start - 1) |
527 ((vblank_end - 1) << 16));
528 restore_vblank = true;
529 }
530 /* sample in the vertical border, selecting the larger one */
531 if (vblank_start - vactive >= vtotal - vblank_end)
532 vsample = (vblank_start + vactive) >> 1;
533 else
534 vsample = (vtotal + vblank_end) >> 1;
535
536 /*
537 * Wait for the border to be displayed
538 */
539 while (I915_READ(pipe_dsl_reg) >= vactive)
540 ;
541 while ((dsl = I915_READ(pipe_dsl_reg)) <= vsample)
542 ;
543 /*
544 * Watch ST00 for an entire scanline
545 */
546 detect = 0;
547 count = 0;
548 do {
549 count++;
550 /* Read the ST00 VGA status register */
551 st00 = I915_READ8(VGA_MSR_WRITE);
552 if (st00 & (1 << 4))
553 detect++;
554 } while ((I915_READ(pipe_dsl_reg) == dsl));
555
556 /* restore vblank if necessary */
557 if (restore_vblank)
558 I915_WRITE(vblank_reg, vblank);
559 /*
560 * If more than 3/4 of the scanline detected a monitor,
561 * then it is assumed to be present. This works even on i830,
562 * where there isn't any way to force the border color across
563 * the screen
564 */
565 status = detect * 4 > count * 3 ?
566 connector_status_connected :
567 connector_status_disconnected;
568 }
569
570 /* Restore previous settings */
571 I915_WRITE(bclrpat_reg, save_bclrpat);
572
573 return status;
574}
575
7b334fcb 576static enum drm_connector_status
930a9e28 577intel_crt_detect(struct drm_connector *connector, bool force)
79e53945
JB
578{
579 struct drm_device *dev = connector->dev;
c9a1c4cd 580 struct intel_crt *crt = intel_attached_crt(connector);
e4a5d54f 581 enum drm_connector_status status;
e95c8438 582 struct intel_load_detect_pipe tmp;
79e53945 583
a6c45cf0 584 if (I915_HAS_HOTPLUG(dev)) {
aaa37730
DV
585 /* We can not rely on the HPD pin always being correctly wired
586 * up, for example many KVM do not pass it through, and so
587 * only trust an assertion that the monitor is connected.
588 */
6ec3d0c0
CW
589 if (intel_crt_detect_hotplug(connector)) {
590 DRM_DEBUG_KMS("CRT detected via hotplug\n");
79e53945 591 return connector_status_connected;
aaa37730 592 } else
e7dbb2f2 593 DRM_DEBUG_KMS("CRT not detected via hotplug\n");
79e53945
JB
594 }
595
f5afcd3d 596 if (intel_crt_detect_ddc(connector))
79e53945
JB
597 return connector_status_connected;
598
aaa37730
DV
599 /* Load detection is broken on HPD capable machines. Whoever wants a
600 * broken monitor (without edid) to work behind a broken kvm (that fails
601 * to have the right resistors for HP detection) needs to fix this up.
602 * For now just bail out. */
603 if (I915_HAS_HOTPLUG(dev))
604 return connector_status_disconnected;
605
930a9e28 606 if (!force)
7b334fcb
CW
607 return connector->status;
608
e4a5d54f 609 /* for pre-945g platforms use load detect */
d2434ab7 610 if (intel_get_load_detect_pipe(connector, NULL, &tmp)) {
e95c8438
DV
611 if (intel_crt_detect_ddc(connector))
612 status = connector_status_connected;
613 else
614 status = intel_crt_load_detect(crt);
d2434ab7 615 intel_release_load_detect_pipe(connector, &tmp);
e95c8438
DV
616 } else
617 status = connector_status_unknown;
e4a5d54f
ML
618
619 return status;
79e53945
JB
620}
621
622static void intel_crt_destroy(struct drm_connector *connector)
623{
79e53945
JB
624 drm_sysfs_connector_remove(connector);
625 drm_connector_cleanup(connector);
626 kfree(connector);
627}
628
629static int intel_crt_get_modes(struct drm_connector *connector)
630{
8e4d36b9 631 struct drm_device *dev = connector->dev;
f899fc64 632 struct drm_i915_private *dev_priv = dev->dev_private;
890f3359 633 int ret;
3bd7d909 634 struct i2c_adapter *i2c;
8e4d36b9 635
3bd7d909 636 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->crt_ddc_pin);
f1a2f5b7 637 ret = intel_crt_ddc_get_modes(connector, i2c);
8e4d36b9 638 if (ret || !IS_G4X(dev))
f899fc64 639 return ret;
8e4d36b9 640
8e4d36b9 641 /* Try to probe digital port for output in DVI-I -> VGA mode. */
3bd7d909 642 i2c = intel_gmbus_get_adapter(dev_priv, GMBUS_PORT_DPB);
f1a2f5b7 643 return intel_crt_ddc_get_modes(connector, i2c);
79e53945
JB
644}
645
646static int intel_crt_set_property(struct drm_connector *connector,
647 struct drm_property *property,
648 uint64_t value)
649{
79e53945
JB
650 return 0;
651}
652
f3269058
CW
653static void intel_crt_reset(struct drm_connector *connector)
654{
655 struct drm_device *dev = connector->dev;
2e938892 656 struct drm_i915_private *dev_priv = dev->dev_private;
f3269058
CW
657 struct intel_crt *crt = intel_attached_crt(connector);
658
2e938892
DV
659 if (HAS_PCH_SPLIT(dev)) {
660 u32 adpa;
661
ca54b810 662 adpa = I915_READ(crt->adpa_reg);
2e938892
DV
663 adpa &= ~ADPA_CRT_HOTPLUG_MASK;
664 adpa |= ADPA_HOTPLUG_BITS;
ca54b810
VS
665 I915_WRITE(crt->adpa_reg, adpa);
666 POSTING_READ(crt->adpa_reg);
2e938892
DV
667
668 DRM_DEBUG_KMS("pch crt adpa set to 0x%x\n", adpa);
f3269058 669 crt->force_hotplug_required = 1;
2e938892
DV
670 }
671
f3269058
CW
672}
673
79e53945
JB
674/*
675 * Routines for controlling stuff on the analog port
676 */
677
b2cabb0e 678static const struct drm_encoder_helper_funcs crt_encoder_funcs = {
df0323c4 679 .mode_fixup = intel_crt_mode_fixup,
df0323c4 680 .mode_set = intel_crt_mode_set,
79e53945
JB
681};
682
683static const struct drm_connector_funcs intel_crt_connector_funcs = {
f3269058 684 .reset = intel_crt_reset,
b2cabb0e 685 .dpms = intel_crt_dpms,
79e53945
JB
686 .detect = intel_crt_detect,
687 .fill_modes = drm_helper_probe_single_connector_modes,
688 .destroy = intel_crt_destroy,
689 .set_property = intel_crt_set_property,
690};
691
692static const struct drm_connector_helper_funcs intel_crt_connector_helper_funcs = {
693 .mode_valid = intel_crt_mode_valid,
694 .get_modes = intel_crt_get_modes,
df0e9248 695 .best_encoder = intel_best_encoder,
79e53945
JB
696};
697
79e53945 698static const struct drm_encoder_funcs intel_crt_enc_funcs = {
ea5b213a 699 .destroy = intel_encoder_destroy,
79e53945
JB
700};
701
8ca4013d
DL
702static int __init intel_no_crt_dmi_callback(const struct dmi_system_id *id)
703{
bc0daf48 704 DRM_INFO("Skipping CRT initialization for %s\n", id->ident);
8ca4013d
DL
705 return 1;
706}
707
708static const struct dmi_system_id intel_no_crt[] = {
709 {
710 .callback = intel_no_crt_dmi_callback,
711 .ident = "ACER ZGB",
712 .matches = {
713 DMI_MATCH(DMI_SYS_VENDOR, "ACER"),
714 DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"),
715 },
716 },
717 { }
718};
719
79e53945
JB
720void intel_crt_init(struct drm_device *dev)
721{
722 struct drm_connector *connector;
c9a1c4cd 723 struct intel_crt *crt;
454c1ca8 724 struct intel_connector *intel_connector;
db545019 725 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 726
8ca4013d
DL
727 /* Skip machines without VGA that falsely report hotplug events */
728 if (dmi_check_system(intel_no_crt))
729 return;
730
c9a1c4cd
CW
731 crt = kzalloc(sizeof(struct intel_crt), GFP_KERNEL);
732 if (!crt)
79e53945
JB
733 return;
734
454c1ca8
ZW
735 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
736 if (!intel_connector) {
c9a1c4cd 737 kfree(crt);
454c1ca8
ZW
738 return;
739 }
740
741 connector = &intel_connector->base;
637f44d2 742 crt->connector = intel_connector;
454c1ca8 743 drm_connector_init(dev, &intel_connector->base,
79e53945
JB
744 &intel_crt_connector_funcs, DRM_MODE_CONNECTOR_VGA);
745
c9a1c4cd 746 drm_encoder_init(dev, &crt->base.base, &intel_crt_enc_funcs,
79e53945
JB
747 DRM_MODE_ENCODER_DAC);
748
c9a1c4cd 749 intel_connector_attach_encoder(intel_connector, &crt->base);
79e53945 750
c9a1c4cd 751 crt->base.type = INTEL_OUTPUT_ANALOG;
66a9278e 752 crt->base.cloneable = true;
d63fa0dc 753 if (IS_I830(dev))
59c859d6
ED
754 crt->base.crtc_mask = (1 << 0);
755 else
0826874a 756 crt->base.crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
59c859d6 757
dbb02575
DV
758 if (IS_GEN2(dev))
759 connector->interlace_allowed = 0;
760 else
761 connector->interlace_allowed = 1;
79e53945
JB
762 connector->doublescan_allowed = 0;
763
df0323c4 764 if (HAS_PCH_SPLIT(dev))
540a8950
DV
765 crt->adpa_reg = PCH_ADPA;
766 else if (IS_VALLEYVIEW(dev))
767 crt->adpa_reg = VLV_ADPA;
df0323c4 768 else
540a8950
DV
769 crt->adpa_reg = ADPA;
770
2124604b
DV
771 crt->base.disable = intel_disable_crt;
772 crt->base.enable = intel_enable_crt;
affa9354 773 if (HAS_DDI(dev))
4eda01b2
PZ
774 crt->base.get_hw_state = intel_ddi_get_hw_state;
775 else
776 crt->base.get_hw_state = intel_crt_get_hw_state;
e403fc94 777 intel_connector->get_hw_state = intel_connector_get_hw_state;
df0323c4 778
b2cabb0e 779 drm_encoder_helper_add(&crt->base.base, &crt_encoder_funcs);
79e53945
JB
780 drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs);
781
782 drm_sysfs_connector_add(connector);
b01f2c3a 783
eb1f8e4f
DA
784 if (I915_HAS_HOTPLUG(dev))
785 connector->polled = DRM_CONNECTOR_POLL_HPD;
786 else
787 connector->polled = DRM_CONNECTOR_POLL_CONNECT;
788
e7dbb2f2
KP
789 /*
790 * Configure the automatic hotplug detection stuff
791 */
792 crt->force_hotplug_required = 0;
e7dbb2f2 793
b01f2c3a 794 dev_priv->hotplug_supported_mask |= CRT_HOTPLUG_INT_STATUS;
68d18ad7
PZ
795
796 /*
3e68320e
DL
797 * TODO: find a proper way to discover whether we need to set the the
798 * polarity and link reversal bits or not, instead of relying on the
799 * BIOS.
68d18ad7 800 */
3e68320e
DL
801 if (HAS_PCH_LPT(dev)) {
802 u32 fdi_config = FDI_RX_POLARITY_REVERSED_LPT |
803 FDI_RX_LINK_REVERSAL_OVERRIDE;
804
805 dev_priv->fdi_rx_config = I915_READ(_FDI_RXA_CTL) & fdi_config;
806 }
79e53945 807}
This page took 0.315936 seconds and 5 git commands to generate.