blob: 4c1230c737d5d8f06b05e1b05d85ee0d08c62997 [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
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
Duncan Laurie8ca40132011-10-25 15:42:21 -070027#include <linux/dmi.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080028#include <linux/i2c.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/drmP.h>
31#include <drm/drm_crtc.h>
32#include <drm/drm_crtc_helper.h>
33#include <drm/drm_edid.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080034#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010035#include <drm/i915_drm.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080036#include "i915_drv.h"
37
Keith Packarde7dbb2f2010-11-16 16:03:53 +080038/* 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
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +000046struct intel_crt {
47 struct intel_encoder base;
Adam Jackson637f44d2013-03-25 15:40:05 -040048 /* DPMS state is stored in the connector, which we need in the
49 * encoder's enable/disable callbacks */
50 struct intel_connector *connector;
Keith Packarde7dbb2f2010-11-16 16:03:53 +080051 bool force_hotplug_required;
Daniel Vetter540a8952012-07-11 16:27:57 +020052 u32 adpa_reg;
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +000053};
54
Daniel Vetter540a8952012-07-11 16:27:57 +020055static struct intel_crt *intel_encoder_to_crt(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080056{
Daniel Vetter540a8952012-07-11 16:27:57 +020057 return container_of(encoder, struct intel_crt, base);
Jesse Barnesdf0323c2012-04-17 15:06:33 -070058}
59
Daniel Vettereebe6f02013-07-21 21:37:03 +020060static struct intel_crt *intel_attached_crt(struct drm_connector *connector)
61{
62 return intel_encoder_to_crt(intel_attached_encoder(connector));
63}
64
Daniel Vettere403fc92012-07-02 13:41:21 +020065static bool intel_crt_get_hw_state(struct intel_encoder *encoder,
66 enum pipe *pipe)
Jesse Barnesdf0323c2012-04-17 15:06:33 -070067{
Daniel Vettere403fc92012-07-02 13:41:21 +020068 struct drm_device *dev = encoder->base.dev;
Jesse Barnesdf0323c2012-04-17 15:06:33 -070069 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere403fc92012-07-02 13:41:21 +020070 struct intel_crt *crt = intel_encoder_to_crt(encoder);
71 u32 tmp;
Zhenyu Wang2c072452009-06-05 15:38:42 +080072
Daniel Vettere403fc92012-07-02 13:41:21 +020073 tmp = I915_READ(crt->adpa_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +080074
Daniel Vettere403fc92012-07-02 13:41:21 +020075 if (!(tmp & ADPA_DAC_ENABLE))
76 return false;
Jesse Barnesdf0323c2012-04-17 15:06:33 -070077
Daniel Vettere403fc92012-07-02 13:41:21 +020078 if (HAS_PCH_CPT(dev))
79 *pipe = PORT_TO_PIPE_CPT(tmp);
80 else
81 *pipe = PORT_TO_PIPE(tmp);
82
83 return true;
Jesse Barnesdf0323c2012-04-17 15:06:33 -070084}
85
Ville Syrjälä6801c182013-09-24 14:24:05 +030086static unsigned int intel_crt_get_flags(struct intel_encoder *encoder)
Jesse Barnes045ac3b2013-05-14 17:08:26 -070087{
88 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
89 struct intel_crt *crt = intel_encoder_to_crt(encoder);
90 u32 tmp, flags = 0;
91
92 tmp = I915_READ(crt->adpa_reg);
93
94 if (tmp & ADPA_HSYNC_ACTIVE_HIGH)
95 flags |= DRM_MODE_FLAG_PHSYNC;
96 else
97 flags |= DRM_MODE_FLAG_NHSYNC;
98
99 if (tmp & ADPA_VSYNC_ACTIVE_HIGH)
100 flags |= DRM_MODE_FLAG_PVSYNC;
101 else
102 flags |= DRM_MODE_FLAG_NVSYNC;
103
Ville Syrjälä6801c182013-09-24 14:24:05 +0300104 return flags;
105}
106
107static void intel_crt_get_config(struct intel_encoder *encoder,
108 struct intel_crtc_config *pipe_config)
109{
110 struct drm_device *dev = encoder->base.dev;
111 int dotclock;
112
113 pipe_config->adjusted_mode.flags |= intel_crt_get_flags(encoder);
Ville Syrjälä18442d02013-09-13 16:00:08 +0300114
115 dotclock = pipe_config->port_clock;
116
Ville Syrjälä6801c182013-09-24 14:24:05 +0300117 if (HAS_PCH_SPLIT(dev))
Ville Syrjälä18442d02013-09-13 16:00:08 +0300118 ironlake_check_encoder_dotclock(pipe_config, dotclock);
119
Damien Lespiau241bfc32013-09-25 16:45:37 +0100120 pipe_config->adjusted_mode.crtc_clock = dotclock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700121}
122
Ville Syrjälä6801c182013-09-24 14:24:05 +0300123static void hsw_crt_get_config(struct intel_encoder *encoder,
124 struct intel_crtc_config *pipe_config)
125{
126 intel_ddi_get_config(encoder, pipe_config);
127
128 pipe_config->adjusted_mode.flags &= ~(DRM_MODE_FLAG_PHSYNC |
129 DRM_MODE_FLAG_NHSYNC |
130 DRM_MODE_FLAG_PVSYNC |
131 DRM_MODE_FLAG_NVSYNC);
132 pipe_config->adjusted_mode.flags |= intel_crt_get_flags(encoder);
133}
134
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200135/* Note: The caller is required to filter out dpms modes not supported by the
136 * platform. */
137static void intel_crt_set_dpms(struct intel_encoder *encoder, int mode)
Jesse Barnes79e53942008-11-07 14:24:08 -0800138{
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200139 struct drm_device *dev = encoder->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800140 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200141 struct intel_crt *crt = intel_encoder_to_crt(encoder);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800142 u32 temp;
143
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200144 temp = I915_READ(crt->adpa_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800145 temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
ling.ma@intel.comfebc7692009-06-25 11:55:57 +0800146 temp &= ~ADPA_DAC_ENABLE;
Jesse Barnesbd9e8412012-06-15 11:55:18 -0700147
Akshay Joshi0206e352011-08-16 15:34:10 -0400148 switch (mode) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800149 case DRM_MODE_DPMS_ON:
150 temp |= ADPA_DAC_ENABLE;
151 break;
152 case DRM_MODE_DPMS_STANDBY:
153 temp |= ADPA_DAC_ENABLE | ADPA_HSYNC_CNTL_DISABLE;
154 break;
155 case DRM_MODE_DPMS_SUSPEND:
156 temp |= ADPA_DAC_ENABLE | ADPA_VSYNC_CNTL_DISABLE;
157 break;
158 case DRM_MODE_DPMS_OFF:
159 temp |= ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE;
160 break;
161 }
162
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200163 I915_WRITE(crt->adpa_reg, temp);
164}
165
Adam Jackson637f44d2013-03-25 15:40:05 -0400166static void intel_disable_crt(struct intel_encoder *encoder)
167{
168 intel_crt_set_dpms(encoder, DRM_MODE_DPMS_OFF);
169}
170
171static void intel_enable_crt(struct intel_encoder *encoder)
172{
173 struct intel_crt *crt = intel_encoder_to_crt(encoder);
174
175 intel_crt_set_dpms(encoder, crt->connector->base.dpms);
176}
177
Jani Nikula6b1c087b2013-05-28 12:35:02 +0300178/* Special dpms function to support cloning between dvo/sdvo/crt. */
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200179static void intel_crt_dpms(struct drm_connector *connector, int mode)
180{
181 struct drm_device *dev = connector->dev;
182 struct intel_encoder *encoder = intel_attached_encoder(connector);
183 struct drm_crtc *crtc;
184 int old_dpms;
185
186 /* PCH platforms and VLV only support on/off. */
Jani Nikula4a8dece2012-11-05 13:51:51 +0200187 if (INTEL_INFO(dev)->gen >= 5 && mode != DRM_MODE_DPMS_ON)
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200188 mode = DRM_MODE_DPMS_OFF;
189
190 if (mode == connector->dpms)
191 return;
192
193 old_dpms = connector->dpms;
194 connector->dpms = mode;
195
196 /* Only need to change hw state when actually enabled */
197 crtc = encoder->base.crtc;
198 if (!crtc) {
199 encoder->connectors_active = false;
200 return;
201 }
202
203 /* We need the pipe to run for anything but OFF. */
204 if (mode == DRM_MODE_DPMS_OFF)
205 encoder->connectors_active = false;
206 else
207 encoder->connectors_active = true;
208
Jani Nikula6b1c087b2013-05-28 12:35:02 +0300209 /* We call connector dpms manually below in case pipe dpms doesn't
210 * change due to cloning. */
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200211 if (mode < old_dpms) {
212 /* From off to on, enable the pipe first. */
213 intel_crtc_update_dpms(crtc);
214
215 intel_crt_set_dpms(encoder, mode);
216 } else {
217 intel_crt_set_dpms(encoder, mode);
218
219 intel_crtc_update_dpms(crtc);
220 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +0200221
Daniel Vetterb9805142012-08-31 17:37:33 +0200222 intel_modeset_check_state(connector->dev);
Jesse Barnes79e53942008-11-07 14:24:08 -0800223}
224
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000225static enum drm_mode_status
226intel_crt_mode_valid(struct drm_connector *connector,
227 struct drm_display_mode *mode)
Jesse Barnes79e53942008-11-07 14:24:08 -0800228{
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800229 struct drm_device *dev = connector->dev;
230
231 int max_clock = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800232 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
233 return MODE_NO_DBLESCAN;
234
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800235 if (mode->clock < 25000)
236 return MODE_CLOCK_LOW;
237
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100238 if (IS_GEN2(dev))
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800239 max_clock = 350000;
240 else
241 max_clock = 400000;
242 if (mode->clock > max_clock)
243 return MODE_CLOCK_HIGH;
Jesse Barnes79e53942008-11-07 14:24:08 -0800244
Paulo Zanonid4b19312012-11-29 11:29:32 -0200245 /* The FDI receiver on LPT only supports 8bpc and only has 2 lanes. */
246 if (HAS_PCH_LPT(dev) &&
247 (ironlake_get_lanes_required(mode->clock, 270000, 24) > 2))
248 return MODE_CLOCK_HIGH;
249
Jesse Barnes79e53942008-11-07 14:24:08 -0800250 return MODE_OK;
251}
252
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100253static bool intel_crt_compute_config(struct intel_encoder *encoder,
254 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -0800255{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100256 struct drm_device *dev = encoder->base.dev;
257
258 if (HAS_PCH_SPLIT(dev))
259 pipe_config->has_pch_encoder = true;
260
Daniel Vetter2a7acee2013-04-19 11:24:39 +0200261 /* LPT FDI RX only supports 8bpc. */
262 if (HAS_PCH_LPT(dev))
263 pipe_config->pipe_bpp = 24;
264
Jesse Barnes79e53942008-11-07 14:24:08 -0800265 return true;
266}
267
Daniel Vettereebe6f02013-07-21 21:37:03 +0200268static void intel_crt_mode_set(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -0800269{
270
Daniel Vettereebe6f02013-07-21 21:37:03 +0200271 struct drm_device *dev = encoder->base.dev;
272 struct intel_crt *crt = intel_encoder_to_crt(encoder);
273 struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc);
Jesse Barnes79e53942008-11-07 14:24:08 -0800274 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettereebe6f02013-07-21 21:37:03 +0200275 struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode;
Egbert Eich6478d412012-10-14 16:33:11 +0200276 u32 adpa;
Jesse Barnes79e53942008-11-07 14:24:08 -0800277
Imre Deak533df0f2013-10-16 20:39:24 +0300278 if (INTEL_INFO(dev)->gen >= 5)
Daniel Vetter912d8122012-10-11 20:08:23 +0200279 adpa = ADPA_HOTPLUG_BITS;
280 else
281 adpa = 0;
282
Jesse Barnes79e53942008-11-07 14:24:08 -0800283 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
284 adpa |= ADPA_HSYNC_ACTIVE_HIGH;
285 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
286 adpa |= ADPA_VSYNC_ACTIVE_HIGH;
287
Jesse Barnes75770562011-10-12 09:01:58 -0700288 /* For CPT allow 3 pipe config, for others just use A or B */
Paulo Zanoni48378132012-10-31 18:12:20 -0200289 if (HAS_PCH_LPT(dev))
290 ; /* Those bits don't exist here */
291 else if (HAS_PCH_CPT(dev))
Daniel Vettereebe6f02013-07-21 21:37:03 +0200292 adpa |= PORT_TRANS_SEL_CPT(crtc->pipe);
293 else if (crtc->pipe == 0)
Jesse Barnes75770562011-10-12 09:01:58 -0700294 adpa |= ADPA_PIPE_A_SELECT;
295 else
296 adpa |= ADPA_PIPE_B_SELECT;
Jesse Barnes79e53942008-11-07 14:24:08 -0800297
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800298 if (!HAS_PCH_SPLIT(dev))
Daniel Vettereebe6f02013-07-21 21:37:03 +0200299 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800300
Daniel Vetter540a8952012-07-11 16:27:57 +0200301 I915_WRITE(crt->adpa_reg, adpa);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800302}
303
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500304static bool intel_ironlake_crt_detect_hotplug(struct drm_connector *connector)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800305{
306 struct drm_device *dev = connector->dev;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800307 struct intel_crt *crt = intel_attached_crt(connector);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800308 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800309 u32 adpa;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800310 bool ret;
311
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800312 /* The first time through, trigger an explicit detection cycle */
313 if (crt->force_hotplug_required) {
314 bool turn_off_dac = HAS_PCH_SPLIT(dev);
315 u32 save_adpa;
Zhenyu Wang67941da2009-07-24 01:00:33 +0800316
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800317 crt->force_hotplug_required = 0;
Dave Airlied5dd96c2010-08-04 15:52:19 +1000318
Ville Syrjäläca54b812013-01-25 21:44:42 +0200319 save_adpa = adpa = I915_READ(crt->adpa_reg);
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800320 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
Dave Airlied5dd96c2010-08-04 15:52:19 +1000321
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800322 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
323 if (turn_off_dac)
324 adpa &= ~ADPA_DAC_ENABLE;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800325
Ville Syrjäläca54b812013-01-25 21:44:42 +0200326 I915_WRITE(crt->adpa_reg, adpa);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800327
Ville Syrjäläca54b812013-01-25 21:44:42 +0200328 if (wait_for((I915_READ(crt->adpa_reg) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800329 1000))
330 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
Zhenyu Wang2c072452009-06-05 15:38:42 +0800331
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800332 if (turn_off_dac) {
Ville Syrjäläca54b812013-01-25 21:44:42 +0200333 I915_WRITE(crt->adpa_reg, save_adpa);
334 POSTING_READ(crt->adpa_reg);
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800335 }
Zhenyu Wanga4a6b902010-04-07 16:15:55 +0800336 }
337
Zhenyu Wang2c072452009-06-05 15:38:42 +0800338 /* Check the status to see if both blue and green are on now */
Ville Syrjäläca54b812013-01-25 21:44:42 +0200339 adpa = I915_READ(crt->adpa_reg);
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800340 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800341 ret = true;
342 else
343 ret = false;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800344 DRM_DEBUG_KMS("ironlake hotplug adpa=0x%x, result %d\n", adpa, ret);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800345
Zhenyu Wang2c072452009-06-05 15:38:42 +0800346 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800347}
348
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700349static bool valleyview_crt_detect_hotplug(struct drm_connector *connector)
350{
351 struct drm_device *dev = connector->dev;
Ville Syrjäläca54b812013-01-25 21:44:42 +0200352 struct intel_crt *crt = intel_attached_crt(connector);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700353 struct drm_i915_private *dev_priv = dev->dev_private;
354 u32 adpa;
355 bool ret;
356 u32 save_adpa;
357
Ville Syrjäläca54b812013-01-25 21:44:42 +0200358 save_adpa = adpa = I915_READ(crt->adpa_reg);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700359 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
360
361 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
362
Ville Syrjäläca54b812013-01-25 21:44:42 +0200363 I915_WRITE(crt->adpa_reg, adpa);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700364
Ville Syrjäläca54b812013-01-25 21:44:42 +0200365 if (wait_for((I915_READ(crt->adpa_reg) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700366 1000)) {
367 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
Ville Syrjäläca54b812013-01-25 21:44:42 +0200368 I915_WRITE(crt->adpa_reg, save_adpa);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700369 }
370
371 /* Check the status to see if both blue and green are on now */
Ville Syrjäläca54b812013-01-25 21:44:42 +0200372 adpa = I915_READ(crt->adpa_reg);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700373 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
374 ret = true;
375 else
376 ret = false;
377
378 DRM_DEBUG_KMS("valleyview hotplug adpa=0x%x, result %d\n", adpa, ret);
379
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700380 return ret;
381}
382
Jesse Barnes79e53942008-11-07 14:24:08 -0800383/**
384 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect CRT presence.
385 *
386 * Not for i915G/i915GM
387 *
388 * \return true if CRT is connected.
389 * \return false if CRT is disconnected.
390 */
391static bool intel_crt_detect_hotplug(struct drm_connector *connector)
392{
393 struct drm_device *dev = connector->dev;
394 struct drm_i915_private *dev_priv = dev->dev_private;
Adam Jackson7a772c42010-05-24 16:46:29 -0400395 u32 hotplug_en, orig, stat;
396 bool ret = false;
Zhao Yakui771cb082009-03-03 18:07:52 +0800397 int i, tries = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800398
Eric Anholtbad720f2009-10-22 16:11:14 -0700399 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500400 return intel_ironlake_crt_detect_hotplug(connector);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800401
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700402 if (IS_VALLEYVIEW(dev))
403 return valleyview_crt_detect_hotplug(connector);
404
Zhao Yakui771cb082009-03-03 18:07:52 +0800405 /*
406 * On 4 series desktop, CRT detect sequence need to be done twice
407 * to get a reliable result.
408 */
Jesse Barnes79e53942008-11-07 14:24:08 -0800409
Zhao Yakui771cb082009-03-03 18:07:52 +0800410 if (IS_G4X(dev) && !IS_GM45(dev))
411 tries = 2;
412 else
413 tries = 1;
Adam Jackson7a772c42010-05-24 16:46:29 -0400414 hotplug_en = orig = I915_READ(PORT_HOTPLUG_EN);
Zhao Yakui771cb082009-03-03 18:07:52 +0800415 hotplug_en |= CRT_HOTPLUG_FORCE_DETECT;
Jesse Barnes79e53942008-11-07 14:24:08 -0800416
Zhao Yakui771cb082009-03-03 18:07:52 +0800417 for (i = 0; i < tries ; i++) {
Zhao Yakui771cb082009-03-03 18:07:52 +0800418 /* turn on the FORCE_DETECT */
419 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
Zhao Yakui771cb082009-03-03 18:07:52 +0800420 /* wait for FORCE_DETECT to go off */
Chris Wilson913d8d12010-08-07 11:01:35 +0100421 if (wait_for((I915_READ(PORT_HOTPLUG_EN) &
422 CRT_HOTPLUG_FORCE_DETECT) == 0,
Chris Wilson481b6af2010-08-23 17:43:35 +0100423 1000))
Chris Wilson79077312010-09-12 19:58:04 +0100424 DRM_DEBUG_KMS("timed out waiting for FORCE_DETECT to go off");
Zhao Yakui771cb082009-03-03 18:07:52 +0800425 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800426
Adam Jackson7a772c42010-05-24 16:46:29 -0400427 stat = I915_READ(PORT_HOTPLUG_STAT);
428 if ((stat & CRT_HOTPLUG_MONITOR_MASK) != CRT_HOTPLUG_MONITOR_NONE)
429 ret = true;
Jesse Barnes79e53942008-11-07 14:24:08 -0800430
Adam Jackson7a772c42010-05-24 16:46:29 -0400431 /* clear the interrupt we just generated, if any */
432 I915_WRITE(PORT_HOTPLUG_STAT, CRT_HOTPLUG_INT_STATUS);
433
434 /* and put the bits back */
435 I915_WRITE(PORT_HOTPLUG_EN, orig);
436
437 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800438}
439
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300440static struct edid *intel_crt_get_edid(struct drm_connector *connector,
441 struct i2c_adapter *i2c)
442{
443 struct edid *edid;
444
445 edid = drm_get_edid(connector, i2c);
446
447 if (!edid && !intel_gmbus_is_forced_bit(i2c)) {
448 DRM_DEBUG_KMS("CRT GMBUS EDID read failed, retry using GPIO bit-banging\n");
449 intel_gmbus_force_bit(i2c, true);
450 edid = drm_get_edid(connector, i2c);
451 intel_gmbus_force_bit(i2c, false);
452 }
453
454 return edid;
455}
456
457/* local version of intel_ddc_get_modes() to use intel_crt_get_edid() */
458static int intel_crt_ddc_get_modes(struct drm_connector *connector,
459 struct i2c_adapter *adapter)
460{
461 struct edid *edid;
Jani Nikulaebda95a2012-10-19 14:51:51 +0300462 int ret;
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300463
464 edid = intel_crt_get_edid(connector, adapter);
465 if (!edid)
466 return 0;
467
Jani Nikulaebda95a2012-10-19 14:51:51 +0300468 ret = intel_connector_update_modes(connector, edid);
469 kfree(edid);
470
471 return ret;
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300472}
473
David Müllerf5afcd32011-01-06 12:29:32 +0000474static bool intel_crt_detect_ddc(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -0800475{
David Müllerf5afcd32011-01-06 12:29:32 +0000476 struct intel_crt *crt = intel_attached_crt(connector);
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000477 struct drm_i915_private *dev_priv = crt->base.base.dev->dev_private;
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200478 struct edid *edid;
479 struct i2c_adapter *i2c;
Jesse Barnes79e53942008-11-07 14:24:08 -0800480
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200481 BUG_ON(crt->base.type != INTEL_OUTPUT_ANALOG);
Jesse Barnes79e53942008-11-07 14:24:08 -0800482
Rodrigo Vivi41aa3442013-05-09 20:03:18 -0300483 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->vbt.crt_ddc_pin);
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300484 edid = intel_crt_get_edid(connector, i2c);
David Müllerf5afcd32011-01-06 12:29:32 +0000485
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200486 if (edid) {
487 bool is_digital = edid->input & DRM_EDID_INPUT_DIGITAL;
488
David Müllerf5afcd32011-01-06 12:29:32 +0000489 /*
490 * This may be a DVI-I connector with a shared DDC
491 * link between analog and digital outputs, so we
492 * have to check the EDID input spec of the attached device.
493 */
David Müllerf5afcd32011-01-06 12:29:32 +0000494 if (!is_digital) {
495 DRM_DEBUG_KMS("CRT detected via DDC:0x50 [EDID]\n");
496 return true;
497 }
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200498
499 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [EDID reports a digital panel]\n");
500 } else {
501 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [no valid EDID found]\n");
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100502 }
503
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200504 kfree(edid);
505
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100506 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800507}
508
Ma Linge4a5d542009-05-26 11:31:00 +0800509static enum drm_connector_status
Chris Wilson71731882011-04-19 23:10:58 +0100510intel_crt_load_detect(struct intel_crt *crt)
Ma Linge4a5d542009-05-26 11:31:00 +0800511{
Chris Wilson71731882011-04-19 23:10:58 +0100512 struct drm_device *dev = crt->base.base.dev;
Ma Linge4a5d542009-05-26 11:31:00 +0800513 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson71731882011-04-19 23:10:58 +0100514 uint32_t pipe = to_intel_crtc(crt->base.base.crtc)->pipe;
Ma Linge4a5d542009-05-26 11:31:00 +0800515 uint32_t save_bclrpat;
516 uint32_t save_vtotal;
517 uint32_t vtotal, vactive;
518 uint32_t vsample;
519 uint32_t vblank, vblank_start, vblank_end;
520 uint32_t dsl;
521 uint32_t bclrpat_reg;
522 uint32_t vtotal_reg;
523 uint32_t vblank_reg;
524 uint32_t vsync_reg;
525 uint32_t pipeconf_reg;
526 uint32_t pipe_dsl_reg;
527 uint8_t st00;
528 enum drm_connector_status status;
529
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100530 DRM_DEBUG_KMS("starting load-detect on CRT\n");
531
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800532 bclrpat_reg = BCLRPAT(pipe);
533 vtotal_reg = VTOTAL(pipe);
534 vblank_reg = VBLANK(pipe);
535 vsync_reg = VSYNC(pipe);
536 pipeconf_reg = PIPECONF(pipe);
537 pipe_dsl_reg = PIPEDSL(pipe);
Ma Linge4a5d542009-05-26 11:31:00 +0800538
539 save_bclrpat = I915_READ(bclrpat_reg);
540 save_vtotal = I915_READ(vtotal_reg);
541 vblank = I915_READ(vblank_reg);
542
543 vtotal = ((save_vtotal >> 16) & 0xfff) + 1;
544 vactive = (save_vtotal & 0x7ff) + 1;
545
546 vblank_start = (vblank & 0xfff) + 1;
547 vblank_end = ((vblank >> 16) & 0xfff) + 1;
548
549 /* Set the border color to purple. */
550 I915_WRITE(bclrpat_reg, 0x500050);
551
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100552 if (!IS_GEN2(dev)) {
Ma Linge4a5d542009-05-26 11:31:00 +0800553 uint32_t pipeconf = I915_READ(pipeconf_reg);
554 I915_WRITE(pipeconf_reg, pipeconf | PIPECONF_FORCE_BORDER);
Chris Wilson19c55da2010-08-09 14:50:53 +0100555 POSTING_READ(pipeconf_reg);
Ma Linge4a5d542009-05-26 11:31:00 +0800556 /* Wait for next Vblank to substitue
557 * border color for Color info */
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700558 intel_wait_for_vblank(dev, pipe);
Ma Linge4a5d542009-05-26 11:31:00 +0800559 st00 = I915_READ8(VGA_MSR_WRITE);
560 status = ((st00 & (1 << 4)) != 0) ?
561 connector_status_connected :
562 connector_status_disconnected;
563
564 I915_WRITE(pipeconf_reg, pipeconf);
565 } else {
566 bool restore_vblank = false;
567 int count, detect;
568
569 /*
570 * If there isn't any border, add some.
571 * Yes, this will flicker
572 */
573 if (vblank_start <= vactive && vblank_end >= vtotal) {
574 uint32_t vsync = I915_READ(vsync_reg);
575 uint32_t vsync_start = (vsync & 0xffff) + 1;
576
577 vblank_start = vsync_start;
578 I915_WRITE(vblank_reg,
579 (vblank_start - 1) |
580 ((vblank_end - 1) << 16));
581 restore_vblank = true;
582 }
583 /* sample in the vertical border, selecting the larger one */
584 if (vblank_start - vactive >= vtotal - vblank_end)
585 vsample = (vblank_start + vactive) >> 1;
586 else
587 vsample = (vtotal + vblank_end) >> 1;
588
589 /*
590 * Wait for the border to be displayed
591 */
592 while (I915_READ(pipe_dsl_reg) >= vactive)
593 ;
594 while ((dsl = I915_READ(pipe_dsl_reg)) <= vsample)
595 ;
596 /*
597 * Watch ST00 for an entire scanline
598 */
599 detect = 0;
600 count = 0;
601 do {
602 count++;
603 /* Read the ST00 VGA status register */
604 st00 = I915_READ8(VGA_MSR_WRITE);
605 if (st00 & (1 << 4))
606 detect++;
607 } while ((I915_READ(pipe_dsl_reg) == dsl));
608
609 /* restore vblank if necessary */
610 if (restore_vblank)
611 I915_WRITE(vblank_reg, vblank);
612 /*
613 * If more than 3/4 of the scanline detected a monitor,
614 * then it is assumed to be present. This works even on i830,
615 * where there isn't any way to force the border color across
616 * the screen
617 */
618 status = detect * 4 > count * 3 ?
619 connector_status_connected :
620 connector_status_disconnected;
621 }
622
623 /* Restore previous settings */
624 I915_WRITE(bclrpat_reg, save_bclrpat);
625
626 return status;
627}
628
Chris Wilson7b334fc2010-09-09 23:51:02 +0100629static enum drm_connector_status
Chris Wilson930a9e22010-09-14 11:07:23 +0100630intel_crt_detect(struct drm_connector *connector, bool force)
Jesse Barnes79e53942008-11-07 14:24:08 -0800631{
632 struct drm_device *dev = connector->dev;
Paulo Zanonic19a0df2014-02-21 13:52:22 -0300633 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000634 struct intel_crt *crt = intel_attached_crt(connector);
Ma Linge4a5d542009-05-26 11:31:00 +0800635 enum drm_connector_status status;
Daniel Vettere95c8432012-04-20 21:03:36 +0200636 struct intel_load_detect_pipe tmp;
Jesse Barnes79e53942008-11-07 14:24:08 -0800637
Paulo Zanonic19a0df2014-02-21 13:52:22 -0300638 intel_runtime_pm_get(dev_priv);
639
Chris Wilson164c8592013-07-20 20:27:08 +0100640 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] force=%d\n",
641 connector->base.id, drm_get_connector_name(connector),
642 force);
643
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100644 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetteraaa37732012-06-16 15:30:32 +0200645 /* We can not rely on the HPD pin always being correctly wired
646 * up, for example many KVM do not pass it through, and so
647 * only trust an assertion that the monitor is connected.
648 */
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100649 if (intel_crt_detect_hotplug(connector)) {
650 DRM_DEBUG_KMS("CRT detected via hotplug\n");
Paulo Zanonic19a0df2014-02-21 13:52:22 -0300651 status = connector_status_connected;
652 goto out;
Daniel Vetteraaa37732012-06-16 15:30:32 +0200653 } else
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800654 DRM_DEBUG_KMS("CRT not detected via hotplug\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800655 }
656
Paulo Zanonic19a0df2014-02-21 13:52:22 -0300657 if (intel_crt_detect_ddc(connector)) {
658 status = connector_status_connected;
659 goto out;
660 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800661
Daniel Vetteraaa37732012-06-16 15:30:32 +0200662 /* Load detection is broken on HPD capable machines. Whoever wants a
663 * broken monitor (without edid) to work behind a broken kvm (that fails
664 * to have the right resistors for HP detection) needs to fix this up.
665 * For now just bail out. */
Paulo Zanonic19a0df2014-02-21 13:52:22 -0300666 if (I915_HAS_HOTPLUG(dev)) {
667 status = connector_status_disconnected;
668 goto out;
669 }
Daniel Vetteraaa37732012-06-16 15:30:32 +0200670
Paulo Zanonic19a0df2014-02-21 13:52:22 -0300671 if (!force) {
672 status = connector->status;
673 goto out;
674 }
Chris Wilson7b334fc2010-09-09 23:51:02 +0100675
Ma Linge4a5d542009-05-26 11:31:00 +0800676 /* for pre-945g platforms use load detect */
Daniel Vetterd2434ab2012-08-12 21:20:10 +0200677 if (intel_get_load_detect_pipe(connector, NULL, &tmp)) {
Daniel Vettere95c8432012-04-20 21:03:36 +0200678 if (intel_crt_detect_ddc(connector))
679 status = connector_status_connected;
680 else
681 status = intel_crt_load_detect(crt);
Daniel Vetterd2434ab2012-08-12 21:20:10 +0200682 intel_release_load_detect_pipe(connector, &tmp);
Daniel Vettere95c8432012-04-20 21:03:36 +0200683 } else
684 status = connector_status_unknown;
Ma Linge4a5d542009-05-26 11:31:00 +0800685
Paulo Zanonic19a0df2014-02-21 13:52:22 -0300686out:
687 intel_runtime_pm_put(dev_priv);
Ma Linge4a5d542009-05-26 11:31:00 +0800688 return status;
Jesse Barnes79e53942008-11-07 14:24:08 -0800689}
690
691static void intel_crt_destroy(struct drm_connector *connector)
692{
Jesse Barnes79e53942008-11-07 14:24:08 -0800693 drm_connector_cleanup(connector);
694 kfree(connector);
695}
696
697static int intel_crt_get_modes(struct drm_connector *connector)
698{
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800699 struct drm_device *dev = connector->dev;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700700 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson890f3352010-09-14 16:46:59 +0100701 int ret;
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800702 struct i2c_adapter *i2c;
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800703
Rodrigo Vivi41aa3442013-05-09 20:03:18 -0300704 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->vbt.crt_ddc_pin);
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300705 ret = intel_crt_ddc_get_modes(connector, i2c);
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800706 if (ret || !IS_G4X(dev))
Chris Wilsonf899fc62010-07-20 15:44:45 -0700707 return ret;
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800708
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800709 /* Try to probe digital port for output in DVI-I -> VGA mode. */
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800710 i2c = intel_gmbus_get_adapter(dev_priv, GMBUS_PORT_DPB);
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300711 return intel_crt_ddc_get_modes(connector, i2c);
Jesse Barnes79e53942008-11-07 14:24:08 -0800712}
713
714static int intel_crt_set_property(struct drm_connector *connector,
715 struct drm_property *property,
716 uint64_t value)
717{
Jesse Barnes79e53942008-11-07 14:24:08 -0800718 return 0;
719}
720
Chris Wilsonf3269052011-01-24 15:17:08 +0000721static void intel_crt_reset(struct drm_connector *connector)
722{
723 struct drm_device *dev = connector->dev;
Daniel Vetter2e938892012-10-11 20:08:24 +0200724 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonf3269052011-01-24 15:17:08 +0000725 struct intel_crt *crt = intel_attached_crt(connector);
726
Chris Wilson10603ca2013-08-26 19:51:06 -0300727 if (INTEL_INFO(dev)->gen >= 5) {
Daniel Vetter2e938892012-10-11 20:08:24 +0200728 u32 adpa;
729
Ville Syrjäläca54b812013-01-25 21:44:42 +0200730 adpa = I915_READ(crt->adpa_reg);
Daniel Vetter2e938892012-10-11 20:08:24 +0200731 adpa &= ~ADPA_CRT_HOTPLUG_MASK;
732 adpa |= ADPA_HOTPLUG_BITS;
Ville Syrjäläca54b812013-01-25 21:44:42 +0200733 I915_WRITE(crt->adpa_reg, adpa);
734 POSTING_READ(crt->adpa_reg);
Daniel Vetter2e938892012-10-11 20:08:24 +0200735
736 DRM_DEBUG_KMS("pch crt adpa set to 0x%x\n", adpa);
Chris Wilsonf3269052011-01-24 15:17:08 +0000737 crt->force_hotplug_required = 1;
Daniel Vetter2e938892012-10-11 20:08:24 +0200738 }
739
Chris Wilsonf3269052011-01-24 15:17:08 +0000740}
741
Jesse Barnes79e53942008-11-07 14:24:08 -0800742/*
743 * Routines for controlling stuff on the analog port
744 */
745
Jesse Barnes79e53942008-11-07 14:24:08 -0800746static const struct drm_connector_funcs intel_crt_connector_funcs = {
Chris Wilsonf3269052011-01-24 15:17:08 +0000747 .reset = intel_crt_reset,
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200748 .dpms = intel_crt_dpms,
Jesse Barnes79e53942008-11-07 14:24:08 -0800749 .detect = intel_crt_detect,
750 .fill_modes = drm_helper_probe_single_connector_modes,
751 .destroy = intel_crt_destroy,
752 .set_property = intel_crt_set_property,
753};
754
755static const struct drm_connector_helper_funcs intel_crt_connector_helper_funcs = {
756 .mode_valid = intel_crt_mode_valid,
757 .get_modes = intel_crt_get_modes,
Chris Wilsondf0e9242010-09-09 16:20:55 +0100758 .best_encoder = intel_best_encoder,
Jesse Barnes79e53942008-11-07 14:24:08 -0800759};
760
Jesse Barnes79e53942008-11-07 14:24:08 -0800761static const struct drm_encoder_funcs intel_crt_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100762 .destroy = intel_encoder_destroy,
Jesse Barnes79e53942008-11-07 14:24:08 -0800763};
764
Duncan Laurie8ca40132011-10-25 15:42:21 -0700765static int __init intel_no_crt_dmi_callback(const struct dmi_system_id *id)
766{
Daniel Vetterbc0daf42012-04-01 13:16:49 +0200767 DRM_INFO("Skipping CRT initialization for %s\n", id->ident);
Duncan Laurie8ca40132011-10-25 15:42:21 -0700768 return 1;
769}
770
771static const struct dmi_system_id intel_no_crt[] = {
772 {
773 .callback = intel_no_crt_dmi_callback,
774 .ident = "ACER ZGB",
775 .matches = {
776 DMI_MATCH(DMI_SYS_VENDOR, "ACER"),
777 DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"),
778 },
779 },
780 { }
781};
782
Jesse Barnes79e53942008-11-07 14:24:08 -0800783void intel_crt_init(struct drm_device *dev)
784{
785 struct drm_connector *connector;
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000786 struct intel_crt *crt;
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800787 struct intel_connector *intel_connector;
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200788 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -0800789
Duncan Laurie8ca40132011-10-25 15:42:21 -0700790 /* Skip machines without VGA that falsely report hotplug events */
791 if (dmi_check_system(intel_no_crt))
792 return;
793
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000794 crt = kzalloc(sizeof(struct intel_crt), GFP_KERNEL);
795 if (!crt)
Jesse Barnes79e53942008-11-07 14:24:08 -0800796 return;
797
Daniel Vetterb14c5672013-09-19 12:18:32 +0200798 intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL);
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800799 if (!intel_connector) {
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000800 kfree(crt);
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800801 return;
802 }
803
804 connector = &intel_connector->base;
Adam Jackson637f44d2013-03-25 15:40:05 -0400805 crt->connector = intel_connector;
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800806 drm_connector_init(dev, &intel_connector->base,
Jesse Barnes79e53942008-11-07 14:24:08 -0800807 &intel_crt_connector_funcs, DRM_MODE_CONNECTOR_VGA);
808
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000809 drm_encoder_init(dev, &crt->base.base, &intel_crt_enc_funcs,
Jesse Barnes79e53942008-11-07 14:24:08 -0800810 DRM_MODE_ENCODER_DAC);
811
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000812 intel_connector_attach_encoder(intel_connector, &crt->base);
Jesse Barnes79e53942008-11-07 14:24:08 -0800813
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000814 crt->base.type = INTEL_OUTPUT_ANALOG;
Daniel Vetter66a92782012-07-12 20:08:18 +0200815 crt->base.cloneable = true;
Paulo Zanonid63fa0d2012-11-20 13:27:35 -0200816 if (IS_I830(dev))
Eugeni Dodonov59c859d2012-05-09 15:37:19 -0300817 crt->base.crtc_mask = (1 << 0);
818 else
Keith Packard08268742012-08-13 21:34:45 -0700819 crt->base.crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -0300820
Daniel Vetterdbb02572012-01-28 14:49:23 +0100821 if (IS_GEN2(dev))
822 connector->interlace_allowed = 0;
823 else
824 connector->interlace_allowed = 1;
Jesse Barnes79e53942008-11-07 14:24:08 -0800825 connector->doublescan_allowed = 0;
826
Jesse Barnesdf0323c2012-04-17 15:06:33 -0700827 if (HAS_PCH_SPLIT(dev))
Daniel Vetter540a8952012-07-11 16:27:57 +0200828 crt->adpa_reg = PCH_ADPA;
829 else if (IS_VALLEYVIEW(dev))
830 crt->adpa_reg = VLV_ADPA;
Jesse Barnesdf0323c2012-04-17 15:06:33 -0700831 else
Daniel Vetter540a8952012-07-11 16:27:57 +0200832 crt->adpa_reg = ADPA;
Jesse Barnesdf0323c2012-04-17 15:06:33 -0700833
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100834 crt->base.compute_config = intel_crt_compute_config;
Daniel Vettereebe6f02013-07-21 21:37:03 +0200835 crt->base.mode_set = intel_crt_mode_set;
Daniel Vetter21246042012-07-01 14:58:27 +0200836 crt->base.disable = intel_disable_crt;
837 crt->base.enable = intel_enable_crt;
Egbert Eich1d843f92013-02-25 12:06:49 -0500838 if (I915_HAS_HOTPLUG(dev))
839 crt->base.hpd_pin = HPD_CRT;
Ville Syrjäläa2985792013-11-07 19:25:59 +0200840 if (HAS_DDI(dev)) {
841 crt->base.get_config = hsw_crt_get_config;
Paulo Zanoni4eda01b2012-10-31 18:12:21 -0200842 crt->base.get_hw_state = intel_ddi_get_hw_state;
Ville Syrjäläa2985792013-11-07 19:25:59 +0200843 } else {
844 crt->base.get_config = intel_crt_get_config;
Paulo Zanoni4eda01b2012-10-31 18:12:21 -0200845 crt->base.get_hw_state = intel_crt_get_hw_state;
Ville Syrjäläa2985792013-11-07 19:25:59 +0200846 }
Daniel Vettere403fc92012-07-02 13:41:21 +0200847 intel_connector->get_hw_state = intel_connector_get_hw_state;
Imre Deak4932e2c2014-02-11 17:12:48 +0200848 intel_connector->unregister = intel_connector_unregister;
Daniel Vetter21246042012-07-01 14:58:27 +0200849
Jesse Barnes79e53942008-11-07 14:24:08 -0800850 drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs);
851
852 drm_sysfs_connector_add(connector);
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800853
Egbert Eich821450c2013-04-16 13:36:55 +0200854 if (!I915_HAS_HOTPLUG(dev))
855 intel_connector->polled = DRM_CONNECTOR_POLL_CONNECT;
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000856
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800857 /*
858 * Configure the automatic hotplug detection stuff
859 */
860 crt->force_hotplug_required = 0;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800861
Paulo Zanoni68d18ad2012-12-01 12:04:26 -0200862 /*
Damien Lespiau3e683202012-12-11 18:48:29 +0000863 * TODO: find a proper way to discover whether we need to set the the
864 * polarity and link reversal bits or not, instead of relying on the
865 * BIOS.
Paulo Zanoni68d18ad2012-12-01 12:04:26 -0200866 */
Damien Lespiau3e683202012-12-11 18:48:29 +0000867 if (HAS_PCH_LPT(dev)) {
868 u32 fdi_config = FDI_RX_POLARITY_REVERSED_LPT |
869 FDI_RX_LINK_REVERSAL_OVERRIDE;
870
871 dev_priv->fdi_rx_config = I915_READ(_FDI_RXA_CTL) & fdi_config;
872 }
Daniel Vetter754970ee2014-01-16 22:28:44 +0100873
874 intel_crt_reset(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -0800875}