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