drm/i915: Reset state after a GPU reset or resume
[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
27#include <linux/i2c.h>
5a0e3ad6 28#include <linux/slab.h>
79e53945
JB
29#include "drmP.h"
30#include "drm.h"
31#include "drm_crtc.h"
32#include "drm_crtc_helper.h"
f5afcd3d 33#include "drm_edid.h"
79e53945
JB
34#include "intel_drv.h"
35#include "i915_drm.h"
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;
c9a1c4cd
CW
49};
50
51static struct intel_crt *intel_attached_crt(struct drm_connector *connector)
52{
53 return container_of(intel_attached_encoder(connector),
54 struct intel_crt, base);
55}
56
79e53945
JB
57static void intel_crt_dpms(struct drm_encoder *encoder, int mode)
58{
59 struct drm_device *dev = encoder->dev;
60 struct drm_i915_private *dev_priv = dev->dev_private;
2c07245f 61 u32 temp, reg;
79e53945 62
bad720ff 63 if (HAS_PCH_SPLIT(dev))
2c07245f
ZW
64 reg = PCH_ADPA;
65 else
66 reg = ADPA;
67
68 temp = I915_READ(reg);
79e53945 69 temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
febc7694 70 temp &= ~ADPA_DAC_ENABLE;
79e53945
JB
71
72 switch(mode) {
73 case DRM_MODE_DPMS_ON:
74 temp |= ADPA_DAC_ENABLE;
75 break;
76 case DRM_MODE_DPMS_STANDBY:
77 temp |= ADPA_DAC_ENABLE | ADPA_HSYNC_CNTL_DISABLE;
78 break;
79 case DRM_MODE_DPMS_SUSPEND:
80 temp |= ADPA_DAC_ENABLE | ADPA_VSYNC_CNTL_DISABLE;
81 break;
82 case DRM_MODE_DPMS_OFF:
83 temp |= ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE;
84 break;
85 }
86
2c07245f 87 I915_WRITE(reg, temp);
79e53945
JB
88}
89
90static int intel_crt_mode_valid(struct drm_connector *connector,
91 struct drm_display_mode *mode)
92{
6bcdcd9e
ZY
93 struct drm_device *dev = connector->dev;
94
95 int max_clock = 0;
79e53945
JB
96 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
97 return MODE_NO_DBLESCAN;
98
6bcdcd9e
ZY
99 if (mode->clock < 25000)
100 return MODE_CLOCK_LOW;
101
a6c45cf0 102 if (IS_GEN2(dev))
6bcdcd9e
ZY
103 max_clock = 350000;
104 else
105 max_clock = 400000;
106 if (mode->clock > max_clock)
107 return MODE_CLOCK_HIGH;
79e53945
JB
108
109 return MODE_OK;
110}
111
112static bool intel_crt_mode_fixup(struct drm_encoder *encoder,
113 struct drm_display_mode *mode,
114 struct drm_display_mode *adjusted_mode)
115{
116 return true;
117}
118
119static void intel_crt_mode_set(struct drm_encoder *encoder,
120 struct drm_display_mode *mode,
121 struct drm_display_mode *adjusted_mode)
122{
123
124 struct drm_device *dev = encoder->dev;
125 struct drm_crtc *crtc = encoder->crtc;
126 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
127 struct drm_i915_private *dev_priv = dev->dev_private;
128 int dpll_md_reg;
129 u32 adpa, dpll_md;
2c07245f 130 u32 adpa_reg;
79e53945
JB
131
132 if (intel_crtc->pipe == 0)
133 dpll_md_reg = DPLL_A_MD;
134 else
135 dpll_md_reg = DPLL_B_MD;
136
bad720ff 137 if (HAS_PCH_SPLIT(dev))
2c07245f
ZW
138 adpa_reg = PCH_ADPA;
139 else
140 adpa_reg = ADPA;
141
79e53945
JB
142 /*
143 * Disable separate mode multiplier used when cloning SDVO to CRT
144 * XXX this needs to be adjusted when we really are cloning
145 */
a6c45cf0 146 if (INTEL_INFO(dev)->gen >= 4 && !HAS_PCH_SPLIT(dev)) {
79e53945
JB
147 dpll_md = I915_READ(dpll_md_reg);
148 I915_WRITE(dpll_md_reg,
149 dpll_md & ~DPLL_MD_UDI_MULTIPLIER_MASK);
150 }
151
e7dbb2f2 152 adpa = ADPA_HOTPLUG_BITS;
79e53945
JB
153 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
154 adpa |= ADPA_HSYNC_ACTIVE_HIGH;
155 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
156 adpa |= ADPA_VSYNC_ACTIVE_HIGH;
157
6bcdcd9e 158 if (intel_crtc->pipe == 0) {
8db9d77b
ZW
159 if (HAS_PCH_CPT(dev))
160 adpa |= PORT_TRANS_A_SEL_CPT;
161 else
162 adpa |= ADPA_PIPE_A_SELECT;
bad720ff 163 if (!HAS_PCH_SPLIT(dev))
2c07245f 164 I915_WRITE(BCLRPAT_A, 0);
6bcdcd9e 165 } else {
8db9d77b
ZW
166 if (HAS_PCH_CPT(dev))
167 adpa |= PORT_TRANS_B_SEL_CPT;
168 else
169 adpa |= ADPA_PIPE_B_SELECT;
bad720ff 170 if (!HAS_PCH_SPLIT(dev))
2c07245f 171 I915_WRITE(BCLRPAT_B, 0);
6bcdcd9e 172 }
79e53945 173
2c07245f
ZW
174 I915_WRITE(adpa_reg, adpa);
175}
176
f2b115e6 177static bool intel_ironlake_crt_detect_hotplug(struct drm_connector *connector)
2c07245f
ZW
178{
179 struct drm_device *dev = connector->dev;
e7dbb2f2 180 struct intel_crt *crt = intel_attached_crt(connector);
2c07245f 181 struct drm_i915_private *dev_priv = dev->dev_private;
e7dbb2f2 182 u32 adpa;
2c07245f
ZW
183 bool ret;
184
e7dbb2f2
KP
185 /* The first time through, trigger an explicit detection cycle */
186 if (crt->force_hotplug_required) {
187 bool turn_off_dac = HAS_PCH_SPLIT(dev);
188 u32 save_adpa;
67941da2 189
e7dbb2f2
KP
190 crt->force_hotplug_required = 0;
191
192 save_adpa = adpa = I915_READ(PCH_ADPA);
193 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
194
195 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
196 if (turn_off_dac)
197 adpa &= ~ADPA_DAC_ENABLE;
198
199 I915_WRITE(PCH_ADPA, adpa);
200
201 if (wait_for((I915_READ(PCH_ADPA) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
202 1000))
203 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
204
205 if (turn_off_dac) {
206 I915_WRITE(PCH_ADPA, save_adpa);
207 POSTING_READ(PCH_ADPA);
208 }
a4a6b901
ZW
209 }
210
2c07245f
ZW
211 /* Check the status to see if both blue and green are on now */
212 adpa = I915_READ(PCH_ADPA);
e7dbb2f2 213 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
2c07245f
ZW
214 ret = true;
215 else
216 ret = false;
e7dbb2f2 217 DRM_DEBUG_KMS("ironlake hotplug adpa=0x%x, result %d\n", adpa, ret);
2c07245f 218
2c07245f 219 return ret;
79e53945
JB
220}
221
222/**
223 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect CRT presence.
224 *
225 * Not for i915G/i915GM
226 *
227 * \return true if CRT is connected.
228 * \return false if CRT is disconnected.
229 */
230static bool intel_crt_detect_hotplug(struct drm_connector *connector)
231{
232 struct drm_device *dev = connector->dev;
233 struct drm_i915_private *dev_priv = dev->dev_private;
7a772c49
AJ
234 u32 hotplug_en, orig, stat;
235 bool ret = false;
771cb081 236 int i, tries = 0;
2c07245f 237
bad720ff 238 if (HAS_PCH_SPLIT(dev))
f2b115e6 239 return intel_ironlake_crt_detect_hotplug(connector);
2c07245f 240
771cb081
ZY
241 /*
242 * On 4 series desktop, CRT detect sequence need to be done twice
243 * to get a reliable result.
244 */
79e53945 245
771cb081
ZY
246 if (IS_G4X(dev) && !IS_GM45(dev))
247 tries = 2;
248 else
249 tries = 1;
7a772c49 250 hotplug_en = orig = I915_READ(PORT_HOTPLUG_EN);
771cb081
ZY
251 hotplug_en |= CRT_HOTPLUG_FORCE_DETECT;
252
771cb081 253 for (i = 0; i < tries ; i++) {
771cb081
ZY
254 /* turn on the FORCE_DETECT */
255 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
771cb081 256 /* wait for FORCE_DETECT to go off */
913d8d11
CW
257 if (wait_for((I915_READ(PORT_HOTPLUG_EN) &
258 CRT_HOTPLUG_FORCE_DETECT) == 0,
481b6af3 259 1000))
79077319 260 DRM_DEBUG_KMS("timed out waiting for FORCE_DETECT to go off");
771cb081 261 }
79e53945 262
7a772c49
AJ
263 stat = I915_READ(PORT_HOTPLUG_STAT);
264 if ((stat & CRT_HOTPLUG_MONITOR_MASK) != CRT_HOTPLUG_MONITOR_NONE)
265 ret = true;
266
267 /* clear the interrupt we just generated, if any */
268 I915_WRITE(PORT_HOTPLUG_STAT, CRT_HOTPLUG_INT_STATUS);
79e53945 269
7a772c49
AJ
270 /* and put the bits back */
271 I915_WRITE(PORT_HOTPLUG_EN, orig);
272
273 return ret;
79e53945
JB
274}
275
6ec3d0c0
CW
276static bool intel_crt_ddc_probe(struct drm_i915_private *dev_priv, int ddc_bus)
277{
278 u8 buf;
279 struct i2c_msg msgs[] = {
280 {
281 .addr = 0xA0,
282 .flags = 0,
283 .len = 1,
284 .buf = &buf,
285 },
286 };
287 /* DDC monitor detect: Does it ACK a write to 0xA0? */
288 return i2c_transfer(&dev_priv->gmbus[ddc_bus].adapter, msgs, 1) == 1;
289}
290
f5afcd3d 291static bool intel_crt_detect_ddc(struct drm_connector *connector)
79e53945 292{
f5afcd3d 293 struct intel_crt *crt = intel_attached_crt(connector);
c9a1c4cd 294 struct drm_i915_private *dev_priv = crt->base.base.dev->dev_private;
79e53945
JB
295
296 /* CRT should always be at 0, but check anyway */
c9a1c4cd 297 if (crt->base.type != INTEL_OUTPUT_ANALOG)
79e53945
JB
298 return false;
299
6ec3d0c0
CW
300 if (intel_crt_ddc_probe(dev_priv, dev_priv->crt_ddc_pin)) {
301 DRM_DEBUG_KMS("CRT detected via DDC:0xa0\n");
302 return true;
303 }
304
c9a1c4cd 305 if (intel_ddc_probe(&crt->base, dev_priv->crt_ddc_pin)) {
f5afcd3d
DM
306 struct edid *edid;
307 bool is_digital = false;
308
309 edid = drm_get_edid(connector,
310 &dev_priv->gmbus[dev_priv->crt_ddc_pin].adapter);
311 /*
312 * This may be a DVI-I connector with a shared DDC
313 * link between analog and digital outputs, so we
314 * have to check the EDID input spec of the attached device.
315 */
316 if (edid != NULL) {
317 is_digital = edid->input & DRM_EDID_INPUT_DIGITAL;
318 connector->display_info.raw_edid = NULL;
319 kfree(edid);
320 }
321
322 if (!is_digital) {
323 DRM_DEBUG_KMS("CRT detected via DDC:0x50 [EDID]\n");
324 return true;
325 }
6ec3d0c0
CW
326 }
327
328 return false;
79e53945
JB
329}
330
e4a5d54f 331static enum drm_connector_status
c9a1c4cd 332intel_crt_load_detect(struct drm_crtc *crtc, struct intel_crt *crt)
e4a5d54f 333{
c9a1c4cd 334 struct drm_encoder *encoder = &crt->base.base;
e4a5d54f
ML
335 struct drm_device *dev = encoder->dev;
336 struct drm_i915_private *dev_priv = dev->dev_private;
337 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
338 uint32_t pipe = intel_crtc->pipe;
339 uint32_t save_bclrpat;
340 uint32_t save_vtotal;
341 uint32_t vtotal, vactive;
342 uint32_t vsample;
343 uint32_t vblank, vblank_start, vblank_end;
344 uint32_t dsl;
345 uint32_t bclrpat_reg;
346 uint32_t vtotal_reg;
347 uint32_t vblank_reg;
348 uint32_t vsync_reg;
349 uint32_t pipeconf_reg;
350 uint32_t pipe_dsl_reg;
351 uint8_t st00;
352 enum drm_connector_status status;
353
6ec3d0c0
CW
354 DRM_DEBUG_KMS("starting load-detect on CRT\n");
355
e4a5d54f
ML
356 if (pipe == 0) {
357 bclrpat_reg = BCLRPAT_A;
358 vtotal_reg = VTOTAL_A;
359 vblank_reg = VBLANK_A;
360 vsync_reg = VSYNC_A;
361 pipeconf_reg = PIPEACONF;
362 pipe_dsl_reg = PIPEADSL;
363 } else {
364 bclrpat_reg = BCLRPAT_B;
365 vtotal_reg = VTOTAL_B;
366 vblank_reg = VBLANK_B;
367 vsync_reg = VSYNC_B;
368 pipeconf_reg = PIPEBCONF;
369 pipe_dsl_reg = PIPEBDSL;
370 }
371
372 save_bclrpat = I915_READ(bclrpat_reg);
373 save_vtotal = I915_READ(vtotal_reg);
374 vblank = I915_READ(vblank_reg);
375
376 vtotal = ((save_vtotal >> 16) & 0xfff) + 1;
377 vactive = (save_vtotal & 0x7ff) + 1;
378
379 vblank_start = (vblank & 0xfff) + 1;
380 vblank_end = ((vblank >> 16) & 0xfff) + 1;
381
382 /* Set the border color to purple. */
383 I915_WRITE(bclrpat_reg, 0x500050);
384
a6c45cf0 385 if (!IS_GEN2(dev)) {
e4a5d54f
ML
386 uint32_t pipeconf = I915_READ(pipeconf_reg);
387 I915_WRITE(pipeconf_reg, pipeconf | PIPECONF_FORCE_BORDER);
19c55da1 388 POSTING_READ(pipeconf_reg);
e4a5d54f
ML
389 /* Wait for next Vblank to substitue
390 * border color for Color info */
9d0498a2 391 intel_wait_for_vblank(dev, pipe);
e4a5d54f
ML
392 st00 = I915_READ8(VGA_MSR_WRITE);
393 status = ((st00 & (1 << 4)) != 0) ?
394 connector_status_connected :
395 connector_status_disconnected;
396
397 I915_WRITE(pipeconf_reg, pipeconf);
398 } else {
399 bool restore_vblank = false;
400 int count, detect;
401
402 /*
403 * If there isn't any border, add some.
404 * Yes, this will flicker
405 */
406 if (vblank_start <= vactive && vblank_end >= vtotal) {
407 uint32_t vsync = I915_READ(vsync_reg);
408 uint32_t vsync_start = (vsync & 0xffff) + 1;
409
410 vblank_start = vsync_start;
411 I915_WRITE(vblank_reg,
412 (vblank_start - 1) |
413 ((vblank_end - 1) << 16));
414 restore_vblank = true;
415 }
416 /* sample in the vertical border, selecting the larger one */
417 if (vblank_start - vactive >= vtotal - vblank_end)
418 vsample = (vblank_start + vactive) >> 1;
419 else
420 vsample = (vtotal + vblank_end) >> 1;
421
422 /*
423 * Wait for the border to be displayed
424 */
425 while (I915_READ(pipe_dsl_reg) >= vactive)
426 ;
427 while ((dsl = I915_READ(pipe_dsl_reg)) <= vsample)
428 ;
429 /*
430 * Watch ST00 for an entire scanline
431 */
432 detect = 0;
433 count = 0;
434 do {
435 count++;
436 /* Read the ST00 VGA status register */
437 st00 = I915_READ8(VGA_MSR_WRITE);
438 if (st00 & (1 << 4))
439 detect++;
440 } while ((I915_READ(pipe_dsl_reg) == dsl));
441
442 /* restore vblank if necessary */
443 if (restore_vblank)
444 I915_WRITE(vblank_reg, vblank);
445 /*
446 * If more than 3/4 of the scanline detected a monitor,
447 * then it is assumed to be present. This works even on i830,
448 * where there isn't any way to force the border color across
449 * the screen
450 */
451 status = detect * 4 > count * 3 ?
452 connector_status_connected :
453 connector_status_disconnected;
454 }
455
456 /* Restore previous settings */
457 I915_WRITE(bclrpat_reg, save_bclrpat);
458
459 return status;
460}
461
7b334fcb 462static enum drm_connector_status
930a9e28 463intel_crt_detect(struct drm_connector *connector, bool force)
79e53945
JB
464{
465 struct drm_device *dev = connector->dev;
c9a1c4cd 466 struct intel_crt *crt = intel_attached_crt(connector);
e4a5d54f
ML
467 struct drm_crtc *crtc;
468 int dpms_mode;
469 enum drm_connector_status status;
79e53945 470
a6c45cf0 471 if (I915_HAS_HOTPLUG(dev)) {
6ec3d0c0
CW
472 if (intel_crt_detect_hotplug(connector)) {
473 DRM_DEBUG_KMS("CRT detected via hotplug\n");
79e53945 474 return connector_status_connected;
e7dbb2f2
KP
475 } else {
476 DRM_DEBUG_KMS("CRT not detected via hotplug\n");
79e53945 477 return connector_status_disconnected;
e7dbb2f2 478 }
79e53945
JB
479 }
480
f5afcd3d 481 if (intel_crt_detect_ddc(connector))
79e53945
JB
482 return connector_status_connected;
483
930a9e28 484 if (!force)
7b334fcb
CW
485 return connector->status;
486
e4a5d54f 487 /* for pre-945g platforms use load detect */
c9a1c4cd
CW
488 crtc = crt->base.base.crtc;
489 if (crtc && crtc->enabled) {
490 status = intel_crt_load_detect(crtc, crt);
e4a5d54f 491 } else {
c9a1c4cd 492 crtc = intel_get_load_detect_pipe(&crt->base, connector,
e4a5d54f
ML
493 NULL, &dpms_mode);
494 if (crtc) {
f5afcd3d 495 if (intel_crt_detect_ddc(connector))
6ec3d0c0
CW
496 status = connector_status_connected;
497 else
c9a1c4cd
CW
498 status = intel_crt_load_detect(crtc, crt);
499 intel_release_load_detect_pipe(&crt->base,
c1c43977 500 connector, dpms_mode);
e4a5d54f
ML
501 } else
502 status = connector_status_unknown;
503 }
504
505 return status;
79e53945
JB
506}
507
508static void intel_crt_destroy(struct drm_connector *connector)
509{
79e53945
JB
510 drm_sysfs_connector_remove(connector);
511 drm_connector_cleanup(connector);
512 kfree(connector);
513}
514
515static int intel_crt_get_modes(struct drm_connector *connector)
516{
8e4d36b9 517 struct drm_device *dev = connector->dev;
f899fc64 518 struct drm_i915_private *dev_priv = dev->dev_private;
890f3359 519 int ret;
8e4d36b9 520
f899fc64
CW
521 ret = intel_ddc_get_modes(connector,
522 &dev_priv->gmbus[dev_priv->crt_ddc_pin].adapter);
8e4d36b9 523 if (ret || !IS_G4X(dev))
f899fc64 524 return ret;
8e4d36b9 525
8e4d36b9 526 /* Try to probe digital port for output in DVI-I -> VGA mode. */
f899fc64
CW
527 return intel_ddc_get_modes(connector,
528 &dev_priv->gmbus[GMBUS_PORT_DPB].adapter);
79e53945
JB
529}
530
531static int intel_crt_set_property(struct drm_connector *connector,
532 struct drm_property *property,
533 uint64_t value)
534{
79e53945
JB
535 return 0;
536}
537
538/*
539 * Routines for controlling stuff on the analog port
540 */
541
542static const struct drm_encoder_helper_funcs intel_crt_helper_funcs = {
543 .dpms = intel_crt_dpms,
544 .mode_fixup = intel_crt_mode_fixup,
545 .prepare = intel_encoder_prepare,
546 .commit = intel_encoder_commit,
547 .mode_set = intel_crt_mode_set,
548};
549
550static const struct drm_connector_funcs intel_crt_connector_funcs = {
c9fb15f6 551 .dpms = drm_helper_connector_dpms,
79e53945
JB
552 .detect = intel_crt_detect,
553 .fill_modes = drm_helper_probe_single_connector_modes,
554 .destroy = intel_crt_destroy,
555 .set_property = intel_crt_set_property,
556};
557
558static const struct drm_connector_helper_funcs intel_crt_connector_helper_funcs = {
559 .mode_valid = intel_crt_mode_valid,
560 .get_modes = intel_crt_get_modes,
df0e9248 561 .best_encoder = intel_best_encoder,
79e53945
JB
562};
563
79e53945 564static const struct drm_encoder_funcs intel_crt_enc_funcs = {
ea5b213a 565 .destroy = intel_encoder_destroy,
79e53945
JB
566};
567
568void intel_crt_init(struct drm_device *dev)
569{
570 struct drm_connector *connector;
c9a1c4cd 571 struct intel_crt *crt;
454c1ca8 572 struct intel_connector *intel_connector;
db545019 573 struct drm_i915_private *dev_priv = dev->dev_private;
79e53945 574
c9a1c4cd
CW
575 crt = kzalloc(sizeof(struct intel_crt), GFP_KERNEL);
576 if (!crt)
79e53945
JB
577 return;
578
454c1ca8
ZW
579 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
580 if (!intel_connector) {
c9a1c4cd 581 kfree(crt);
454c1ca8
ZW
582 return;
583 }
584
585 connector = &intel_connector->base;
586 drm_connector_init(dev, &intel_connector->base,
79e53945
JB
587 &intel_crt_connector_funcs, DRM_MODE_CONNECTOR_VGA);
588
c9a1c4cd 589 drm_encoder_init(dev, &crt->base.base, &intel_crt_enc_funcs,
79e53945
JB
590 DRM_MODE_ENCODER_DAC);
591
c9a1c4cd 592 intel_connector_attach_encoder(intel_connector, &crt->base);
79e53945 593
c9a1c4cd
CW
594 crt->base.type = INTEL_OUTPUT_ANALOG;
595 crt->base.clone_mask = (1 << INTEL_SDVO_NON_TV_CLONE_BIT |
596 1 << INTEL_ANALOG_CLONE_BIT |
597 1 << INTEL_SDVO_LVDS_CLONE_BIT);
598 crt->base.crtc_mask = (1 << 0) | (1 << 1);
734b4157 599 connector->interlace_allowed = 1;
79e53945
JB
600 connector->doublescan_allowed = 0;
601
c9a1c4cd 602 drm_encoder_helper_add(&crt->base.base, &intel_crt_helper_funcs);
79e53945
JB
603 drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs);
604
605 drm_sysfs_connector_add(connector);
b01f2c3a 606
eb1f8e4f
DA
607 if (I915_HAS_HOTPLUG(dev))
608 connector->polled = DRM_CONNECTOR_POLL_HPD;
609 else
610 connector->polled = DRM_CONNECTOR_POLL_CONNECT;
611
e7dbb2f2
KP
612 /*
613 * Configure the automatic hotplug detection stuff
614 */
615 crt->force_hotplug_required = 0;
616 if (HAS_PCH_SPLIT(dev)) {
617 u32 adpa;
618
619 adpa = I915_READ(PCH_ADPA);
620 adpa &= ~ADPA_CRT_HOTPLUG_MASK;
621 adpa |= ADPA_HOTPLUG_BITS;
622 I915_WRITE(PCH_ADPA, adpa);
623 POSTING_READ(PCH_ADPA);
624
625 DRM_DEBUG_KMS("pch crt adpa set to 0x%x\n", adpa);
626 crt->force_hotplug_required = 1;
627 }
628
b01f2c3a 629 dev_priv->hotplug_supported_mask |= CRT_HOTPLUG_INT_STATUS;
79e53945 630}