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