2 * Copyright © 2006-2007 Intel Corporation
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:
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
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.
27 #include <linux/dmi.h>
28 #include <linux/i2c.h>
29 #include <linux/slab.h>
33 #include "drm_crtc_helper.h"
35 #include "intel_drv.h"
39 /* Here's the desired hotplug mode */
40 #define ADPA_HOTPLUG_BITS (ADPA_CRT_HOTPLUG_PERIOD_128 | \
41 ADPA_CRT_HOTPLUG_WARMUP_10MS | \
42 ADPA_CRT_HOTPLUG_SAMPLE_4S | \
43 ADPA_CRT_HOTPLUG_VOLTAGE_50 | \
44 ADPA_CRT_HOTPLUG_VOLREF_325MV | \
45 ADPA_CRT_HOTPLUG_ENABLE)
48 struct intel_encoder base;
49 bool force_hotplug_required;
53 static struct intel_crt *intel_attached_crt(struct drm_connector *connector)
55 return container_of(intel_attached_encoder(connector),
56 struct intel_crt, base);
59 static struct intel_crt *intel_encoder_to_crt(struct intel_encoder *encoder)
61 return container_of(encoder, struct intel_crt, base);
64 static bool intel_crt_get_hw_state(struct intel_encoder *encoder,
67 struct drm_device *dev = encoder->base.dev;
68 struct drm_i915_private *dev_priv = dev->dev_private;
69 struct intel_crt *crt = intel_encoder_to_crt(encoder);
72 tmp = I915_READ(crt->adpa_reg);
74 if (!(tmp & ADPA_DAC_ENABLE))
78 *pipe = PORT_TO_PIPE_CPT(tmp);
80 *pipe = PORT_TO_PIPE(tmp);
85 static void intel_disable_crt(struct intel_encoder *encoder)
87 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
88 struct intel_crt *crt = intel_encoder_to_crt(encoder);
91 temp = I915_READ(crt->adpa_reg);
92 temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
93 temp &= ~ADPA_DAC_ENABLE;
94 I915_WRITE(crt->adpa_reg, temp);
97 static void intel_enable_crt(struct intel_encoder *encoder)
99 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
100 struct intel_crt *crt = intel_encoder_to_crt(encoder);
103 temp = I915_READ(crt->adpa_reg);
104 temp |= ADPA_DAC_ENABLE;
105 I915_WRITE(crt->adpa_reg, temp);
108 /* Note: The caller is required to filter out dpms modes not supported by the
110 static void intel_crt_set_dpms(struct intel_encoder *encoder, int mode)
112 struct drm_device *dev = encoder->base.dev;
113 struct drm_i915_private *dev_priv = dev->dev_private;
114 struct intel_crt *crt = intel_encoder_to_crt(encoder);
117 temp = I915_READ(crt->adpa_reg);
118 temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
119 temp &= ~ADPA_DAC_ENABLE;
122 case DRM_MODE_DPMS_ON:
123 temp |= ADPA_DAC_ENABLE;
125 case DRM_MODE_DPMS_STANDBY:
126 temp |= ADPA_DAC_ENABLE | ADPA_HSYNC_CNTL_DISABLE;
128 case DRM_MODE_DPMS_SUSPEND:
129 temp |= ADPA_DAC_ENABLE | ADPA_VSYNC_CNTL_DISABLE;
131 case DRM_MODE_DPMS_OFF:
132 temp |= ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE;
136 I915_WRITE(crt->adpa_reg, temp);
139 static void intel_crt_dpms(struct drm_connector *connector, int mode)
141 struct drm_device *dev = connector->dev;
142 struct intel_encoder *encoder = intel_attached_encoder(connector);
143 struct drm_crtc *crtc;
146 /* PCH platforms and VLV only support on/off. */
147 if (INTEL_INFO(dev)->gen < 5 && mode != DRM_MODE_DPMS_ON)
148 mode = DRM_MODE_DPMS_OFF;
150 if (mode == connector->dpms)
153 old_dpms = connector->dpms;
154 connector->dpms = mode;
156 /* Only need to change hw state when actually enabled */
157 crtc = encoder->base.crtc;
159 encoder->connectors_active = false;
163 /* We need the pipe to run for anything but OFF. */
164 if (mode == DRM_MODE_DPMS_OFF)
165 encoder->connectors_active = false;
167 encoder->connectors_active = true;
169 if (mode < old_dpms) {
170 /* From off to on, enable the pipe first. */
171 intel_crtc_update_dpms(crtc);
173 intel_crt_set_dpms(encoder, mode);
175 intel_crt_set_dpms(encoder, mode);
177 intel_crtc_update_dpms(crtc);
180 intel_modeset_check_state(connector->dev);
183 static int intel_crt_mode_valid(struct drm_connector *connector,
184 struct drm_display_mode *mode)
186 struct drm_device *dev = connector->dev;
189 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
190 return MODE_NO_DBLESCAN;
192 if (mode->clock < 25000)
193 return MODE_CLOCK_LOW;
199 if (mode->clock > max_clock)
200 return MODE_CLOCK_HIGH;
205 static bool intel_crt_mode_fixup(struct drm_encoder *encoder,
206 const struct drm_display_mode *mode,
207 struct drm_display_mode *adjusted_mode)
212 static void intel_crt_mode_set(struct drm_encoder *encoder,
213 struct drm_display_mode *mode,
214 struct drm_display_mode *adjusted_mode)
217 struct drm_device *dev = encoder->dev;
218 struct drm_crtc *crtc = encoder->crtc;
219 struct intel_crt *crt =
220 intel_encoder_to_crt(to_intel_encoder(encoder));
221 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
222 struct drm_i915_private *dev_priv = dev->dev_private;
226 dpll_md_reg = DPLL_MD(intel_crtc->pipe);
229 * Disable separate mode multiplier used when cloning SDVO to CRT
230 * XXX this needs to be adjusted when we really are cloning
232 if (INTEL_INFO(dev)->gen >= 4 && !HAS_PCH_SPLIT(dev)) {
233 dpll_md = I915_READ(dpll_md_reg);
234 I915_WRITE(dpll_md_reg,
235 dpll_md & ~DPLL_MD_UDI_MULTIPLIER_MASK);
238 if (HAS_PCH_SPLIT(dev))
239 adpa = ADPA_HOTPLUG_BITS;
243 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
244 adpa |= ADPA_HSYNC_ACTIVE_HIGH;
245 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
246 adpa |= ADPA_VSYNC_ACTIVE_HIGH;
248 /* For CPT allow 3 pipe config, for others just use A or B */
249 if (HAS_PCH_CPT(dev))
250 adpa |= PORT_TRANS_SEL_CPT(intel_crtc->pipe);
251 else if (intel_crtc->pipe == 0)
252 adpa |= ADPA_PIPE_A_SELECT;
254 adpa |= ADPA_PIPE_B_SELECT;
256 if (!HAS_PCH_SPLIT(dev))
257 I915_WRITE(BCLRPAT(intel_crtc->pipe), 0);
259 I915_WRITE(crt->adpa_reg, adpa);
262 static bool intel_ironlake_crt_detect_hotplug(struct drm_connector *connector)
264 struct drm_device *dev = connector->dev;
265 struct intel_crt *crt = intel_attached_crt(connector);
266 struct drm_i915_private *dev_priv = dev->dev_private;
270 /* The first time through, trigger an explicit detection cycle */
271 if (crt->force_hotplug_required) {
272 bool turn_off_dac = HAS_PCH_SPLIT(dev);
275 crt->force_hotplug_required = 0;
277 save_adpa = adpa = I915_READ(PCH_ADPA);
278 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
280 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
282 adpa &= ~ADPA_DAC_ENABLE;
284 I915_WRITE(PCH_ADPA, adpa);
286 if (wait_for((I915_READ(PCH_ADPA) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
288 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
291 I915_WRITE(PCH_ADPA, save_adpa);
292 POSTING_READ(PCH_ADPA);
296 /* Check the status to see if both blue and green are on now */
297 adpa = I915_READ(PCH_ADPA);
298 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
302 DRM_DEBUG_KMS("ironlake hotplug adpa=0x%x, result %d\n", adpa, ret);
307 static bool valleyview_crt_detect_hotplug(struct drm_connector *connector)
309 struct drm_device *dev = connector->dev;
310 struct drm_i915_private *dev_priv = dev->dev_private;
315 save_adpa = adpa = I915_READ(ADPA);
316 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
318 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
320 I915_WRITE(ADPA, adpa);
322 if (wait_for((I915_READ(ADPA) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
324 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
325 I915_WRITE(ADPA, save_adpa);
328 /* Check the status to see if both blue and green are on now */
329 adpa = I915_READ(ADPA);
330 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
335 DRM_DEBUG_KMS("valleyview hotplug adpa=0x%x, result %d\n", adpa, ret);
337 /* FIXME: debug force function and remove */
344 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect CRT presence.
346 * Not for i915G/i915GM
348 * \return true if CRT is connected.
349 * \return false if CRT is disconnected.
351 static bool intel_crt_detect_hotplug(struct drm_connector *connector)
353 struct drm_device *dev = connector->dev;
354 struct drm_i915_private *dev_priv = dev->dev_private;
355 u32 hotplug_en, orig, stat;
359 if (HAS_PCH_SPLIT(dev))
360 return intel_ironlake_crt_detect_hotplug(connector);
362 if (IS_VALLEYVIEW(dev))
363 return valleyview_crt_detect_hotplug(connector);
366 * On 4 series desktop, CRT detect sequence need to be done twice
367 * to get a reliable result.
370 if (IS_G4X(dev) && !IS_GM45(dev))
374 hotplug_en = orig = I915_READ(PORT_HOTPLUG_EN);
375 hotplug_en |= CRT_HOTPLUG_FORCE_DETECT;
377 for (i = 0; i < tries ; i++) {
378 /* turn on the FORCE_DETECT */
379 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
380 /* wait for FORCE_DETECT to go off */
381 if (wait_for((I915_READ(PORT_HOTPLUG_EN) &
382 CRT_HOTPLUG_FORCE_DETECT) == 0,
384 DRM_DEBUG_KMS("timed out waiting for FORCE_DETECT to go off");
387 stat = I915_READ(PORT_HOTPLUG_STAT);
388 if ((stat & CRT_HOTPLUG_MONITOR_MASK) != CRT_HOTPLUG_MONITOR_NONE)
391 /* clear the interrupt we just generated, if any */
392 I915_WRITE(PORT_HOTPLUG_STAT, CRT_HOTPLUG_INT_STATUS);
394 /* and put the bits back */
395 I915_WRITE(PORT_HOTPLUG_EN, orig);
400 static struct edid *intel_crt_get_edid(struct drm_connector *connector,
401 struct i2c_adapter *i2c)
405 edid = drm_get_edid(connector, i2c);
407 if (!edid && !intel_gmbus_is_forced_bit(i2c)) {
408 DRM_DEBUG_KMS("CRT GMBUS EDID read failed, retry using GPIO bit-banging\n");
409 intel_gmbus_force_bit(i2c, true);
410 edid = drm_get_edid(connector, i2c);
411 intel_gmbus_force_bit(i2c, false);
417 /* local version of intel_ddc_get_modes() to use intel_crt_get_edid() */
418 static int intel_crt_ddc_get_modes(struct drm_connector *connector,
419 struct i2c_adapter *adapter)
423 edid = intel_crt_get_edid(connector, adapter);
427 return intel_connector_update_modes(connector, edid);
430 static bool intel_crt_detect_ddc(struct drm_connector *connector)
432 struct intel_crt *crt = intel_attached_crt(connector);
433 struct drm_i915_private *dev_priv = crt->base.base.dev->dev_private;
435 struct i2c_adapter *i2c;
437 BUG_ON(crt->base.type != INTEL_OUTPUT_ANALOG);
439 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->crt_ddc_pin);
440 edid = intel_crt_get_edid(connector, i2c);
443 bool is_digital = edid->input & DRM_EDID_INPUT_DIGITAL;
446 * This may be a DVI-I connector with a shared DDC
447 * link between analog and digital outputs, so we
448 * have to check the EDID input spec of the attached device.
451 DRM_DEBUG_KMS("CRT detected via DDC:0x50 [EDID]\n");
455 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [EDID reports a digital panel]\n");
457 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [no valid EDID found]\n");
465 static enum drm_connector_status
466 intel_crt_load_detect(struct intel_crt *crt)
468 struct drm_device *dev = crt->base.base.dev;
469 struct drm_i915_private *dev_priv = dev->dev_private;
470 uint32_t pipe = to_intel_crtc(crt->base.base.crtc)->pipe;
471 uint32_t save_bclrpat;
472 uint32_t save_vtotal;
473 uint32_t vtotal, vactive;
475 uint32_t vblank, vblank_start, vblank_end;
477 uint32_t bclrpat_reg;
481 uint32_t pipeconf_reg;
482 uint32_t pipe_dsl_reg;
484 enum drm_connector_status status;
486 DRM_DEBUG_KMS("starting load-detect on CRT\n");
488 bclrpat_reg = BCLRPAT(pipe);
489 vtotal_reg = VTOTAL(pipe);
490 vblank_reg = VBLANK(pipe);
491 vsync_reg = VSYNC(pipe);
492 pipeconf_reg = PIPECONF(pipe);
493 pipe_dsl_reg = PIPEDSL(pipe);
495 save_bclrpat = I915_READ(bclrpat_reg);
496 save_vtotal = I915_READ(vtotal_reg);
497 vblank = I915_READ(vblank_reg);
499 vtotal = ((save_vtotal >> 16) & 0xfff) + 1;
500 vactive = (save_vtotal & 0x7ff) + 1;
502 vblank_start = (vblank & 0xfff) + 1;
503 vblank_end = ((vblank >> 16) & 0xfff) + 1;
505 /* Set the border color to purple. */
506 I915_WRITE(bclrpat_reg, 0x500050);
509 uint32_t pipeconf = I915_READ(pipeconf_reg);
510 I915_WRITE(pipeconf_reg, pipeconf | PIPECONF_FORCE_BORDER);
511 POSTING_READ(pipeconf_reg);
512 /* Wait for next Vblank to substitue
513 * border color for Color info */
514 intel_wait_for_vblank(dev, pipe);
515 st00 = I915_READ8(VGA_MSR_WRITE);
516 status = ((st00 & (1 << 4)) != 0) ?
517 connector_status_connected :
518 connector_status_disconnected;
520 I915_WRITE(pipeconf_reg, pipeconf);
522 bool restore_vblank = false;
526 * If there isn't any border, add some.
527 * Yes, this will flicker
529 if (vblank_start <= vactive && vblank_end >= vtotal) {
530 uint32_t vsync = I915_READ(vsync_reg);
531 uint32_t vsync_start = (vsync & 0xffff) + 1;
533 vblank_start = vsync_start;
534 I915_WRITE(vblank_reg,
536 ((vblank_end - 1) << 16));
537 restore_vblank = true;
539 /* sample in the vertical border, selecting the larger one */
540 if (vblank_start - vactive >= vtotal - vblank_end)
541 vsample = (vblank_start + vactive) >> 1;
543 vsample = (vtotal + vblank_end) >> 1;
546 * Wait for the border to be displayed
548 while (I915_READ(pipe_dsl_reg) >= vactive)
550 while ((dsl = I915_READ(pipe_dsl_reg)) <= vsample)
553 * Watch ST00 for an entire scanline
559 /* Read the ST00 VGA status register */
560 st00 = I915_READ8(VGA_MSR_WRITE);
563 } while ((I915_READ(pipe_dsl_reg) == dsl));
565 /* restore vblank if necessary */
567 I915_WRITE(vblank_reg, vblank);
569 * If more than 3/4 of the scanline detected a monitor,
570 * then it is assumed to be present. This works even on i830,
571 * where there isn't any way to force the border color across
574 status = detect * 4 > count * 3 ?
575 connector_status_connected :
576 connector_status_disconnected;
579 /* Restore previous settings */
580 I915_WRITE(bclrpat_reg, save_bclrpat);
585 static enum drm_connector_status
586 intel_crt_detect(struct drm_connector *connector, bool force)
588 struct drm_device *dev = connector->dev;
589 struct intel_crt *crt = intel_attached_crt(connector);
590 enum drm_connector_status status;
591 struct intel_load_detect_pipe tmp;
593 if (I915_HAS_HOTPLUG(dev)) {
594 /* We can not rely on the HPD pin always being correctly wired
595 * up, for example many KVM do not pass it through, and so
596 * only trust an assertion that the monitor is connected.
598 if (intel_crt_detect_hotplug(connector)) {
599 DRM_DEBUG_KMS("CRT detected via hotplug\n");
600 return connector_status_connected;
602 DRM_DEBUG_KMS("CRT not detected via hotplug\n");
605 if (intel_crt_detect_ddc(connector))
606 return connector_status_connected;
608 /* Load detection is broken on HPD capable machines. Whoever wants a
609 * broken monitor (without edid) to work behind a broken kvm (that fails
610 * to have the right resistors for HP detection) needs to fix this up.
611 * For now just bail out. */
612 if (I915_HAS_HOTPLUG(dev))
613 return connector_status_disconnected;
616 return connector->status;
618 /* for pre-945g platforms use load detect */
619 if (intel_get_load_detect_pipe(connector, NULL, &tmp)) {
620 if (intel_crt_detect_ddc(connector))
621 status = connector_status_connected;
623 status = intel_crt_load_detect(crt);
624 intel_release_load_detect_pipe(connector, &tmp);
626 status = connector_status_unknown;
631 static void intel_crt_destroy(struct drm_connector *connector)
633 drm_sysfs_connector_remove(connector);
634 drm_connector_cleanup(connector);
638 static int intel_crt_get_modes(struct drm_connector *connector)
640 struct drm_device *dev = connector->dev;
641 struct drm_i915_private *dev_priv = dev->dev_private;
643 struct i2c_adapter *i2c;
645 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->crt_ddc_pin);
646 ret = intel_crt_ddc_get_modes(connector, i2c);
647 if (ret || !IS_G4X(dev))
650 /* Try to probe digital port for output in DVI-I -> VGA mode. */
651 i2c = intel_gmbus_get_adapter(dev_priv, GMBUS_PORT_DPB);
652 return intel_crt_ddc_get_modes(connector, i2c);
655 static int intel_crt_set_property(struct drm_connector *connector,
656 struct drm_property *property,
662 static void intel_crt_reset(struct drm_connector *connector)
664 struct drm_device *dev = connector->dev;
665 struct drm_i915_private *dev_priv = dev->dev_private;
666 struct intel_crt *crt = intel_attached_crt(connector);
668 if (HAS_PCH_SPLIT(dev)) {
671 adpa = I915_READ(PCH_ADPA);
672 adpa &= ~ADPA_CRT_HOTPLUG_MASK;
673 adpa |= ADPA_HOTPLUG_BITS;
674 I915_WRITE(PCH_ADPA, adpa);
675 POSTING_READ(PCH_ADPA);
677 DRM_DEBUG_KMS("pch crt adpa set to 0x%x\n", adpa);
678 crt->force_hotplug_required = 1;
684 * Routines for controlling stuff on the analog port
687 static const struct drm_encoder_helper_funcs crt_encoder_funcs = {
688 .mode_fixup = intel_crt_mode_fixup,
689 .mode_set = intel_crt_mode_set,
690 .disable = intel_encoder_noop,
693 static const struct drm_connector_funcs intel_crt_connector_funcs = {
694 .reset = intel_crt_reset,
695 .dpms = intel_crt_dpms,
696 .detect = intel_crt_detect,
697 .fill_modes = drm_helper_probe_single_connector_modes,
698 .destroy = intel_crt_destroy,
699 .set_property = intel_crt_set_property,
702 static const struct drm_connector_helper_funcs intel_crt_connector_helper_funcs = {
703 .mode_valid = intel_crt_mode_valid,
704 .get_modes = intel_crt_get_modes,
705 .best_encoder = intel_best_encoder,
708 static const struct drm_encoder_funcs intel_crt_enc_funcs = {
709 .destroy = intel_encoder_destroy,
712 static int __init intel_no_crt_dmi_callback(const struct dmi_system_id *id)
714 DRM_INFO("Skipping CRT initialization for %s\n", id->ident);
718 static const struct dmi_system_id intel_no_crt[] = {
720 .callback = intel_no_crt_dmi_callback,
723 DMI_MATCH(DMI_SYS_VENDOR, "ACER"),
724 DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"),
730 void intel_crt_init(struct drm_device *dev)
732 struct drm_connector *connector;
733 struct intel_crt *crt;
734 struct intel_connector *intel_connector;
735 struct drm_i915_private *dev_priv = dev->dev_private;
737 /* Skip machines without VGA that falsely report hotplug events */
738 if (dmi_check_system(intel_no_crt))
741 crt = kzalloc(sizeof(struct intel_crt), GFP_KERNEL);
745 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
746 if (!intel_connector) {
751 connector = &intel_connector->base;
752 drm_connector_init(dev, &intel_connector->base,
753 &intel_crt_connector_funcs, DRM_MODE_CONNECTOR_VGA);
755 drm_encoder_init(dev, &crt->base.base, &intel_crt_enc_funcs,
756 DRM_MODE_ENCODER_DAC);
758 intel_connector_attach_encoder(intel_connector, &crt->base);
760 crt->base.type = INTEL_OUTPUT_ANALOG;
761 crt->base.cloneable = true;
763 crt->base.crtc_mask = (1 << 0);
765 crt->base.crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
768 connector->interlace_allowed = 0;
770 connector->interlace_allowed = 1;
771 connector->doublescan_allowed = 0;
773 if (HAS_PCH_SPLIT(dev))
774 crt->adpa_reg = PCH_ADPA;
775 else if (IS_VALLEYVIEW(dev))
776 crt->adpa_reg = VLV_ADPA;
778 crt->adpa_reg = ADPA;
780 crt->base.disable = intel_disable_crt;
781 crt->base.enable = intel_enable_crt;
782 crt->base.get_hw_state = intel_crt_get_hw_state;
783 intel_connector->get_hw_state = intel_connector_get_hw_state;
785 drm_encoder_helper_add(&crt->base.base, &crt_encoder_funcs);
786 drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs);
788 drm_sysfs_connector_add(connector);
790 if (I915_HAS_HOTPLUG(dev))
791 connector->polled = DRM_CONNECTOR_POLL_HPD;
793 connector->polled = DRM_CONNECTOR_POLL_CONNECT;
796 * Configure the automatic hotplug detection stuff
798 crt->force_hotplug_required = 0;
800 dev_priv->hotplug_supported_mask |= CRT_HOTPLUG_INT_STATUS;