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