blob: 0c0d4e8d768e7c4d852931a694658609f7b1b48f [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
55static struct intel_crt *intel_attached_crt(struct drm_connector *connector)
56{
57 return container_of(intel_attached_encoder(connector),
58 struct intel_crt, base);
59}
60
Daniel Vetter540a8952012-07-11 16:27:57 +020061static struct intel_crt *intel_encoder_to_crt(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080062{
Daniel Vetter540a8952012-07-11 16:27:57 +020063 return container_of(encoder, struct intel_crt, base);
Jesse Barnesdf0323c2012-04-17 15:06:33 -070064}
65
Daniel Vettere403fc92012-07-02 13:41:21 +020066static bool intel_crt_get_hw_state(struct intel_encoder *encoder,
67 enum pipe *pipe)
Jesse Barnesdf0323c2012-04-17 15:06:33 -070068{
Daniel Vettere403fc92012-07-02 13:41:21 +020069 struct drm_device *dev = encoder->base.dev;
Jesse Barnesdf0323c2012-04-17 15:06:33 -070070 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere403fc92012-07-02 13:41:21 +020071 struct intel_crt *crt = intel_encoder_to_crt(encoder);
72 u32 tmp;
Zhenyu Wang2c072452009-06-05 15:38:42 +080073
Daniel Vettere403fc92012-07-02 13:41:21 +020074 tmp = I915_READ(crt->adpa_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +080075
Daniel Vettere403fc92012-07-02 13:41:21 +020076 if (!(tmp & ADPA_DAC_ENABLE))
77 return false;
Jesse Barnesdf0323c2012-04-17 15:06:33 -070078
Daniel Vettere403fc92012-07-02 13:41:21 +020079 if (HAS_PCH_CPT(dev))
80 *pipe = PORT_TO_PIPE_CPT(tmp);
81 else
82 *pipe = PORT_TO_PIPE(tmp);
83
84 return true;
Jesse Barnesdf0323c2012-04-17 15:06:33 -070085}
86
Jesse Barnes045ac3b2013-05-14 17:08:26 -070087static void intel_crt_get_config(struct intel_encoder *encoder,
88 struct intel_crtc_config *pipe_config)
89{
90 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
91 struct intel_crt *crt = intel_encoder_to_crt(encoder);
92 u32 tmp, flags = 0;
93
94 tmp = I915_READ(crt->adpa_reg);
95
96 if (tmp & ADPA_HSYNC_ACTIVE_HIGH)
97 flags |= DRM_MODE_FLAG_PHSYNC;
98 else
99 flags |= DRM_MODE_FLAG_NHSYNC;
100
101 if (tmp & ADPA_VSYNC_ACTIVE_HIGH)
102 flags |= DRM_MODE_FLAG_PVSYNC;
103 else
104 flags |= DRM_MODE_FLAG_NVSYNC;
105
106 pipe_config->adjusted_mode.flags |= flags;
107}
108
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200109/* Note: The caller is required to filter out dpms modes not supported by the
110 * platform. */
111static void intel_crt_set_dpms(struct intel_encoder *encoder, int mode)
Jesse Barnes79e53942008-11-07 14:24:08 -0800112{
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200113 struct drm_device *dev = encoder->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800114 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200115 struct intel_crt *crt = intel_encoder_to_crt(encoder);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800116 u32 temp;
117
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200118 temp = I915_READ(crt->adpa_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800119 temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
ling.ma@intel.comfebc7692009-06-25 11:55:57 +0800120 temp &= ~ADPA_DAC_ENABLE;
Jesse Barnesbd9e8412012-06-15 11:55:18 -0700121
Akshay Joshi0206e352011-08-16 15:34:10 -0400122 switch (mode) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800123 case DRM_MODE_DPMS_ON:
124 temp |= ADPA_DAC_ENABLE;
125 break;
126 case DRM_MODE_DPMS_STANDBY:
127 temp |= ADPA_DAC_ENABLE | ADPA_HSYNC_CNTL_DISABLE;
128 break;
129 case DRM_MODE_DPMS_SUSPEND:
130 temp |= ADPA_DAC_ENABLE | ADPA_VSYNC_CNTL_DISABLE;
131 break;
132 case DRM_MODE_DPMS_OFF:
133 temp |= ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE;
134 break;
135 }
136
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200137 I915_WRITE(crt->adpa_reg, temp);
138}
139
Adam Jackson637f44d2013-03-25 15:40:05 -0400140static void intel_disable_crt(struct intel_encoder *encoder)
141{
142 intel_crt_set_dpms(encoder, DRM_MODE_DPMS_OFF);
143}
144
145static void intel_enable_crt(struct intel_encoder *encoder)
146{
147 struct intel_crt *crt = intel_encoder_to_crt(encoder);
148
149 intel_crt_set_dpms(encoder, crt->connector->base.dpms);
150}
151
Jani Nikula6b1c087b2013-05-28 12:35:02 +0300152/* Special dpms function to support cloning between dvo/sdvo/crt. */
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200153static void intel_crt_dpms(struct drm_connector *connector, int mode)
154{
155 struct drm_device *dev = connector->dev;
156 struct intel_encoder *encoder = intel_attached_encoder(connector);
157 struct drm_crtc *crtc;
158 int old_dpms;
159
160 /* PCH platforms and VLV only support on/off. */
Jani Nikula4a8dece2012-11-05 13:51:51 +0200161 if (INTEL_INFO(dev)->gen >= 5 && mode != DRM_MODE_DPMS_ON)
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200162 mode = DRM_MODE_DPMS_OFF;
163
164 if (mode == connector->dpms)
165 return;
166
167 old_dpms = connector->dpms;
168 connector->dpms = mode;
169
170 /* Only need to change hw state when actually enabled */
171 crtc = encoder->base.crtc;
172 if (!crtc) {
173 encoder->connectors_active = false;
174 return;
175 }
176
177 /* We need the pipe to run for anything but OFF. */
178 if (mode == DRM_MODE_DPMS_OFF)
179 encoder->connectors_active = false;
180 else
181 encoder->connectors_active = true;
182
Jani Nikula6b1c087b2013-05-28 12:35:02 +0300183 /* We call connector dpms manually below in case pipe dpms doesn't
184 * change due to cloning. */
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200185 if (mode < old_dpms) {
186 /* From off to on, enable the pipe first. */
187 intel_crtc_update_dpms(crtc);
188
189 intel_crt_set_dpms(encoder, mode);
190 } else {
191 intel_crt_set_dpms(encoder, mode);
192
193 intel_crtc_update_dpms(crtc);
194 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +0200195
Daniel Vetterb9805142012-08-31 17:37:33 +0200196 intel_modeset_check_state(connector->dev);
Jesse Barnes79e53942008-11-07 14:24:08 -0800197}
198
199static int intel_crt_mode_valid(struct drm_connector *connector,
200 struct drm_display_mode *mode)
201{
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800202 struct drm_device *dev = connector->dev;
203
204 int max_clock = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800205 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
206 return MODE_NO_DBLESCAN;
207
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800208 if (mode->clock < 25000)
209 return MODE_CLOCK_LOW;
210
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100211 if (IS_GEN2(dev))
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800212 max_clock = 350000;
213 else
214 max_clock = 400000;
215 if (mode->clock > max_clock)
216 return MODE_CLOCK_HIGH;
Jesse Barnes79e53942008-11-07 14:24:08 -0800217
Paulo Zanonid4b19312012-11-29 11:29:32 -0200218 /* The FDI receiver on LPT only supports 8bpc and only has 2 lanes. */
219 if (HAS_PCH_LPT(dev) &&
220 (ironlake_get_lanes_required(mode->clock, 270000, 24) > 2))
221 return MODE_CLOCK_HIGH;
222
Jesse Barnes79e53942008-11-07 14:24:08 -0800223 return MODE_OK;
224}
225
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100226static bool intel_crt_compute_config(struct intel_encoder *encoder,
227 struct intel_crtc_config *pipe_config)
Jesse Barnes79e53942008-11-07 14:24:08 -0800228{
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100229 struct drm_device *dev = encoder->base.dev;
230
231 if (HAS_PCH_SPLIT(dev))
232 pipe_config->has_pch_encoder = true;
233
Daniel Vetter2a7acee2013-04-19 11:24:39 +0200234 /* LPT FDI RX only supports 8bpc. */
235 if (HAS_PCH_LPT(dev))
236 pipe_config->pipe_bpp = 24;
237
Jesse Barnes79e53942008-11-07 14:24:08 -0800238 return true;
239}
240
241static void intel_crt_mode_set(struct drm_encoder *encoder,
242 struct drm_display_mode *mode,
243 struct drm_display_mode *adjusted_mode)
244{
245
246 struct drm_device *dev = encoder->dev;
247 struct drm_crtc *crtc = encoder->crtc;
Daniel Vetter540a8952012-07-11 16:27:57 +0200248 struct intel_crt *crt =
249 intel_encoder_to_crt(to_intel_encoder(encoder));
Jesse Barnes79e53942008-11-07 14:24:08 -0800250 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
251 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich6478d412012-10-14 16:33:11 +0200252 u32 adpa;
Jesse Barnes79e53942008-11-07 14:24:08 -0800253
Daniel Vetter912d8122012-10-11 20:08:23 +0200254 if (HAS_PCH_SPLIT(dev))
255 adpa = ADPA_HOTPLUG_BITS;
256 else
257 adpa = 0;
258
Jesse Barnes79e53942008-11-07 14:24:08 -0800259 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
260 adpa |= ADPA_HSYNC_ACTIVE_HIGH;
261 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
262 adpa |= ADPA_VSYNC_ACTIVE_HIGH;
263
Jesse Barnes75770562011-10-12 09:01:58 -0700264 /* For CPT allow 3 pipe config, for others just use A or B */
Paulo Zanoni48378132012-10-31 18:12:20 -0200265 if (HAS_PCH_LPT(dev))
266 ; /* Those bits don't exist here */
267 else if (HAS_PCH_CPT(dev))
Jesse Barnes75770562011-10-12 09:01:58 -0700268 adpa |= PORT_TRANS_SEL_CPT(intel_crtc->pipe);
269 else if (intel_crtc->pipe == 0)
270 adpa |= ADPA_PIPE_A_SELECT;
271 else
272 adpa |= ADPA_PIPE_B_SELECT;
Jesse Barnes79e53942008-11-07 14:24:08 -0800273
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800274 if (!HAS_PCH_SPLIT(dev))
275 I915_WRITE(BCLRPAT(intel_crtc->pipe), 0);
276
Daniel Vetter540a8952012-07-11 16:27:57 +0200277 I915_WRITE(crt->adpa_reg, adpa);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800278}
279
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500280static bool intel_ironlake_crt_detect_hotplug(struct drm_connector *connector)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800281{
282 struct drm_device *dev = connector->dev;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800283 struct intel_crt *crt = intel_attached_crt(connector);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800284 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800285 u32 adpa;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800286 bool ret;
287
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800288 /* The first time through, trigger an explicit detection cycle */
289 if (crt->force_hotplug_required) {
290 bool turn_off_dac = HAS_PCH_SPLIT(dev);
291 u32 save_adpa;
Zhenyu Wang67941da2009-07-24 01:00:33 +0800292
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800293 crt->force_hotplug_required = 0;
Dave Airlied5dd96c2010-08-04 15:52:19 +1000294
Ville Syrjäläca54b812013-01-25 21:44:42 +0200295 save_adpa = adpa = I915_READ(crt->adpa_reg);
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800296 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
Dave Airlied5dd96c2010-08-04 15:52:19 +1000297
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800298 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
299 if (turn_off_dac)
300 adpa &= ~ADPA_DAC_ENABLE;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800301
Ville Syrjäläca54b812013-01-25 21:44:42 +0200302 I915_WRITE(crt->adpa_reg, adpa);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800303
Ville Syrjäläca54b812013-01-25 21:44:42 +0200304 if (wait_for((I915_READ(crt->adpa_reg) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800305 1000))
306 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
Zhenyu Wang2c072452009-06-05 15:38:42 +0800307
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800308 if (turn_off_dac) {
Ville Syrjäläca54b812013-01-25 21:44:42 +0200309 I915_WRITE(crt->adpa_reg, save_adpa);
310 POSTING_READ(crt->adpa_reg);
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800311 }
Zhenyu Wanga4a6b902010-04-07 16:15:55 +0800312 }
313
Zhenyu Wang2c072452009-06-05 15:38:42 +0800314 /* Check the status to see if both blue and green are on now */
Ville Syrjäläca54b812013-01-25 21:44:42 +0200315 adpa = I915_READ(crt->adpa_reg);
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800316 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800317 ret = true;
318 else
319 ret = false;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800320 DRM_DEBUG_KMS("ironlake hotplug adpa=0x%x, result %d\n", adpa, ret);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800321
Zhenyu Wang2c072452009-06-05 15:38:42 +0800322 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800323}
324
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700325static bool valleyview_crt_detect_hotplug(struct drm_connector *connector)
326{
327 struct drm_device *dev = connector->dev;
Ville Syrjäläca54b812013-01-25 21:44:42 +0200328 struct intel_crt *crt = intel_attached_crt(connector);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700329 struct drm_i915_private *dev_priv = dev->dev_private;
330 u32 adpa;
331 bool ret;
332 u32 save_adpa;
333
Ville Syrjäläca54b812013-01-25 21:44:42 +0200334 save_adpa = adpa = I915_READ(crt->adpa_reg);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700335 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
336
337 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
338
Ville Syrjäläca54b812013-01-25 21:44:42 +0200339 I915_WRITE(crt->adpa_reg, adpa);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700340
Ville Syrjäläca54b812013-01-25 21:44:42 +0200341 if (wait_for((I915_READ(crt->adpa_reg) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700342 1000)) {
343 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
Ville Syrjäläca54b812013-01-25 21:44:42 +0200344 I915_WRITE(crt->adpa_reg, save_adpa);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700345 }
346
347 /* Check the status to see if both blue and green are on now */
Ville Syrjäläca54b812013-01-25 21:44:42 +0200348 adpa = I915_READ(crt->adpa_reg);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700349 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
350 ret = true;
351 else
352 ret = false;
353
354 DRM_DEBUG_KMS("valleyview hotplug adpa=0x%x, result %d\n", adpa, ret);
355
356 /* FIXME: debug force function and remove */
357 ret = true;
358
359 return ret;
360}
361
Jesse Barnes79e53942008-11-07 14:24:08 -0800362/**
363 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect CRT presence.
364 *
365 * Not for i915G/i915GM
366 *
367 * \return true if CRT is connected.
368 * \return false if CRT is disconnected.
369 */
370static bool intel_crt_detect_hotplug(struct drm_connector *connector)
371{
372 struct drm_device *dev = connector->dev;
373 struct drm_i915_private *dev_priv = dev->dev_private;
Adam Jackson7a772c42010-05-24 16:46:29 -0400374 u32 hotplug_en, orig, stat;
375 bool ret = false;
Zhao Yakui771cb082009-03-03 18:07:52 +0800376 int i, tries = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800377
Eric Anholtbad720f2009-10-22 16:11:14 -0700378 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500379 return intel_ironlake_crt_detect_hotplug(connector);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800380
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700381 if (IS_VALLEYVIEW(dev))
382 return valleyview_crt_detect_hotplug(connector);
383
Zhao Yakui771cb082009-03-03 18:07:52 +0800384 /*
385 * On 4 series desktop, CRT detect sequence need to be done twice
386 * to get a reliable result.
387 */
Jesse Barnes79e53942008-11-07 14:24:08 -0800388
Zhao Yakui771cb082009-03-03 18:07:52 +0800389 if (IS_G4X(dev) && !IS_GM45(dev))
390 tries = 2;
391 else
392 tries = 1;
Adam Jackson7a772c42010-05-24 16:46:29 -0400393 hotplug_en = orig = I915_READ(PORT_HOTPLUG_EN);
Zhao Yakui771cb082009-03-03 18:07:52 +0800394 hotplug_en |= CRT_HOTPLUG_FORCE_DETECT;
Jesse Barnes79e53942008-11-07 14:24:08 -0800395
Zhao Yakui771cb082009-03-03 18:07:52 +0800396 for (i = 0; i < tries ; i++) {
Zhao Yakui771cb082009-03-03 18:07:52 +0800397 /* turn on the FORCE_DETECT */
398 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
Zhao Yakui771cb082009-03-03 18:07:52 +0800399 /* wait for FORCE_DETECT to go off */
Chris Wilson913d8d12010-08-07 11:01:35 +0100400 if (wait_for((I915_READ(PORT_HOTPLUG_EN) &
401 CRT_HOTPLUG_FORCE_DETECT) == 0,
Chris Wilson481b6af2010-08-23 17:43:35 +0100402 1000))
Chris Wilson79077312010-09-12 19:58:04 +0100403 DRM_DEBUG_KMS("timed out waiting for FORCE_DETECT to go off");
Zhao Yakui771cb082009-03-03 18:07:52 +0800404 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800405
Adam Jackson7a772c42010-05-24 16:46:29 -0400406 stat = I915_READ(PORT_HOTPLUG_STAT);
407 if ((stat & CRT_HOTPLUG_MONITOR_MASK) != CRT_HOTPLUG_MONITOR_NONE)
408 ret = true;
Jesse Barnes79e53942008-11-07 14:24:08 -0800409
Adam Jackson7a772c42010-05-24 16:46:29 -0400410 /* clear the interrupt we just generated, if any */
411 I915_WRITE(PORT_HOTPLUG_STAT, CRT_HOTPLUG_INT_STATUS);
412
413 /* and put the bits back */
414 I915_WRITE(PORT_HOTPLUG_EN, orig);
415
416 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800417}
418
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300419static struct edid *intel_crt_get_edid(struct drm_connector *connector,
420 struct i2c_adapter *i2c)
421{
422 struct edid *edid;
423
424 edid = drm_get_edid(connector, i2c);
425
426 if (!edid && !intel_gmbus_is_forced_bit(i2c)) {
427 DRM_DEBUG_KMS("CRT GMBUS EDID read failed, retry using GPIO bit-banging\n");
428 intel_gmbus_force_bit(i2c, true);
429 edid = drm_get_edid(connector, i2c);
430 intel_gmbus_force_bit(i2c, false);
431 }
432
433 return edid;
434}
435
436/* local version of intel_ddc_get_modes() to use intel_crt_get_edid() */
437static int intel_crt_ddc_get_modes(struct drm_connector *connector,
438 struct i2c_adapter *adapter)
439{
440 struct edid *edid;
Jani Nikulaebda95a2012-10-19 14:51:51 +0300441 int ret;
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300442
443 edid = intel_crt_get_edid(connector, adapter);
444 if (!edid)
445 return 0;
446
Jani Nikulaebda95a2012-10-19 14:51:51 +0300447 ret = intel_connector_update_modes(connector, edid);
448 kfree(edid);
449
450 return ret;
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300451}
452
David Müllerf5afcd32011-01-06 12:29:32 +0000453static bool intel_crt_detect_ddc(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -0800454{
David Müllerf5afcd32011-01-06 12:29:32 +0000455 struct intel_crt *crt = intel_attached_crt(connector);
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000456 struct drm_i915_private *dev_priv = crt->base.base.dev->dev_private;
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200457 struct edid *edid;
458 struct i2c_adapter *i2c;
Jesse Barnes79e53942008-11-07 14:24:08 -0800459
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200460 BUG_ON(crt->base.type != INTEL_OUTPUT_ANALOG);
Jesse Barnes79e53942008-11-07 14:24:08 -0800461
Rodrigo Vivi41aa3442013-05-09 20:03:18 -0300462 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->vbt.crt_ddc_pin);
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300463 edid = intel_crt_get_edid(connector, i2c);
David Müllerf5afcd32011-01-06 12:29:32 +0000464
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200465 if (edid) {
466 bool is_digital = edid->input & DRM_EDID_INPUT_DIGITAL;
467
David Müllerf5afcd32011-01-06 12:29:32 +0000468 /*
469 * This may be a DVI-I connector with a shared DDC
470 * link between analog and digital outputs, so we
471 * have to check the EDID input spec of the attached device.
472 */
David Müllerf5afcd32011-01-06 12:29:32 +0000473 if (!is_digital) {
474 DRM_DEBUG_KMS("CRT detected via DDC:0x50 [EDID]\n");
475 return true;
476 }
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200477
478 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [EDID reports a digital panel]\n");
479 } else {
480 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [no valid EDID found]\n");
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100481 }
482
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200483 kfree(edid);
484
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100485 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800486}
487
Ma Linge4a5d542009-05-26 11:31:00 +0800488static enum drm_connector_status
Chris Wilson71731882011-04-19 23:10:58 +0100489intel_crt_load_detect(struct intel_crt *crt)
Ma Linge4a5d542009-05-26 11:31:00 +0800490{
Chris Wilson71731882011-04-19 23:10:58 +0100491 struct drm_device *dev = crt->base.base.dev;
Ma Linge4a5d542009-05-26 11:31:00 +0800492 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson71731882011-04-19 23:10:58 +0100493 uint32_t pipe = to_intel_crtc(crt->base.base.crtc)->pipe;
Ma Linge4a5d542009-05-26 11:31:00 +0800494 uint32_t save_bclrpat;
495 uint32_t save_vtotal;
496 uint32_t vtotal, vactive;
497 uint32_t vsample;
498 uint32_t vblank, vblank_start, vblank_end;
499 uint32_t dsl;
500 uint32_t bclrpat_reg;
501 uint32_t vtotal_reg;
502 uint32_t vblank_reg;
503 uint32_t vsync_reg;
504 uint32_t pipeconf_reg;
505 uint32_t pipe_dsl_reg;
506 uint8_t st00;
507 enum drm_connector_status status;
508
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100509 DRM_DEBUG_KMS("starting load-detect on CRT\n");
510
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800511 bclrpat_reg = BCLRPAT(pipe);
512 vtotal_reg = VTOTAL(pipe);
513 vblank_reg = VBLANK(pipe);
514 vsync_reg = VSYNC(pipe);
515 pipeconf_reg = PIPECONF(pipe);
516 pipe_dsl_reg = PIPEDSL(pipe);
Ma Linge4a5d542009-05-26 11:31:00 +0800517
518 save_bclrpat = I915_READ(bclrpat_reg);
519 save_vtotal = I915_READ(vtotal_reg);
520 vblank = I915_READ(vblank_reg);
521
522 vtotal = ((save_vtotal >> 16) & 0xfff) + 1;
523 vactive = (save_vtotal & 0x7ff) + 1;
524
525 vblank_start = (vblank & 0xfff) + 1;
526 vblank_end = ((vblank >> 16) & 0xfff) + 1;
527
528 /* Set the border color to purple. */
529 I915_WRITE(bclrpat_reg, 0x500050);
530
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100531 if (!IS_GEN2(dev)) {
Ma Linge4a5d542009-05-26 11:31:00 +0800532 uint32_t pipeconf = I915_READ(pipeconf_reg);
533 I915_WRITE(pipeconf_reg, pipeconf | PIPECONF_FORCE_BORDER);
Chris Wilson19c55da2010-08-09 14:50:53 +0100534 POSTING_READ(pipeconf_reg);
Ma Linge4a5d542009-05-26 11:31:00 +0800535 /* Wait for next Vblank to substitue
536 * border color for Color info */
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700537 intel_wait_for_vblank(dev, pipe);
Ma Linge4a5d542009-05-26 11:31:00 +0800538 st00 = I915_READ8(VGA_MSR_WRITE);
539 status = ((st00 & (1 << 4)) != 0) ?
540 connector_status_connected :
541 connector_status_disconnected;
542
543 I915_WRITE(pipeconf_reg, pipeconf);
544 } else {
545 bool restore_vblank = false;
546 int count, detect;
547
548 /*
549 * If there isn't any border, add some.
550 * Yes, this will flicker
551 */
552 if (vblank_start <= vactive && vblank_end >= vtotal) {
553 uint32_t vsync = I915_READ(vsync_reg);
554 uint32_t vsync_start = (vsync & 0xffff) + 1;
555
556 vblank_start = vsync_start;
557 I915_WRITE(vblank_reg,
558 (vblank_start - 1) |
559 ((vblank_end - 1) << 16));
560 restore_vblank = true;
561 }
562 /* sample in the vertical border, selecting the larger one */
563 if (vblank_start - vactive >= vtotal - vblank_end)
564 vsample = (vblank_start + vactive) >> 1;
565 else
566 vsample = (vtotal + vblank_end) >> 1;
567
568 /*
569 * Wait for the border to be displayed
570 */
571 while (I915_READ(pipe_dsl_reg) >= vactive)
572 ;
573 while ((dsl = I915_READ(pipe_dsl_reg)) <= vsample)
574 ;
575 /*
576 * Watch ST00 for an entire scanline
577 */
578 detect = 0;
579 count = 0;
580 do {
581 count++;
582 /* Read the ST00 VGA status register */
583 st00 = I915_READ8(VGA_MSR_WRITE);
584 if (st00 & (1 << 4))
585 detect++;
586 } while ((I915_READ(pipe_dsl_reg) == dsl));
587
588 /* restore vblank if necessary */
589 if (restore_vblank)
590 I915_WRITE(vblank_reg, vblank);
591 /*
592 * If more than 3/4 of the scanline detected a monitor,
593 * then it is assumed to be present. This works even on i830,
594 * where there isn't any way to force the border color across
595 * the screen
596 */
597 status = detect * 4 > count * 3 ?
598 connector_status_connected :
599 connector_status_disconnected;
600 }
601
602 /* Restore previous settings */
603 I915_WRITE(bclrpat_reg, save_bclrpat);
604
605 return status;
606}
607
Chris Wilson7b334fc2010-09-09 23:51:02 +0100608static enum drm_connector_status
Chris Wilson930a9e22010-09-14 11:07:23 +0100609intel_crt_detect(struct drm_connector *connector, bool force)
Jesse Barnes79e53942008-11-07 14:24:08 -0800610{
611 struct drm_device *dev = connector->dev;
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000612 struct intel_crt *crt = intel_attached_crt(connector);
Ma Linge4a5d542009-05-26 11:31:00 +0800613 enum drm_connector_status status;
Daniel Vettere95c8432012-04-20 21:03:36 +0200614 struct intel_load_detect_pipe tmp;
Jesse Barnes79e53942008-11-07 14:24:08 -0800615
Chris Wilson164c8592013-07-20 20:27:08 +0100616 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] force=%d\n",
617 connector->base.id, drm_get_connector_name(connector),
618 force);
619
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100620 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetteraaa37732012-06-16 15:30:32 +0200621 /* We can not rely on the HPD pin always being correctly wired
622 * up, for example many KVM do not pass it through, and so
623 * only trust an assertion that the monitor is connected.
624 */
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100625 if (intel_crt_detect_hotplug(connector)) {
626 DRM_DEBUG_KMS("CRT detected via hotplug\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800627 return connector_status_connected;
Daniel Vetteraaa37732012-06-16 15:30:32 +0200628 } else
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800629 DRM_DEBUG_KMS("CRT not detected via hotplug\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800630 }
631
David Müllerf5afcd32011-01-06 12:29:32 +0000632 if (intel_crt_detect_ddc(connector))
Jesse Barnes79e53942008-11-07 14:24:08 -0800633 return connector_status_connected;
634
Daniel Vetteraaa37732012-06-16 15:30:32 +0200635 /* Load detection is broken on HPD capable machines. Whoever wants a
636 * broken monitor (without edid) to work behind a broken kvm (that fails
637 * to have the right resistors for HP detection) needs to fix this up.
638 * For now just bail out. */
639 if (I915_HAS_HOTPLUG(dev))
640 return connector_status_disconnected;
641
Chris Wilson930a9e22010-09-14 11:07:23 +0100642 if (!force)
Chris Wilson7b334fc2010-09-09 23:51:02 +0100643 return connector->status;
644
Ma Linge4a5d542009-05-26 11:31:00 +0800645 /* for pre-945g platforms use load detect */
Daniel Vetterd2434ab2012-08-12 21:20:10 +0200646 if (intel_get_load_detect_pipe(connector, NULL, &tmp)) {
Daniel Vettere95c8432012-04-20 21:03:36 +0200647 if (intel_crt_detect_ddc(connector))
648 status = connector_status_connected;
649 else
650 status = intel_crt_load_detect(crt);
Daniel Vetterd2434ab2012-08-12 21:20:10 +0200651 intel_release_load_detect_pipe(connector, &tmp);
Daniel Vettere95c8432012-04-20 21:03:36 +0200652 } else
653 status = connector_status_unknown;
Ma Linge4a5d542009-05-26 11:31:00 +0800654
655 return status;
Jesse Barnes79e53942008-11-07 14:24:08 -0800656}
657
658static void intel_crt_destroy(struct drm_connector *connector)
659{
Jesse Barnes79e53942008-11-07 14:24:08 -0800660 drm_sysfs_connector_remove(connector);
661 drm_connector_cleanup(connector);
662 kfree(connector);
663}
664
665static int intel_crt_get_modes(struct drm_connector *connector)
666{
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800667 struct drm_device *dev = connector->dev;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700668 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson890f3352010-09-14 16:46:59 +0100669 int ret;
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800670 struct i2c_adapter *i2c;
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800671
Rodrigo Vivi41aa3442013-05-09 20:03:18 -0300672 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->vbt.crt_ddc_pin);
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300673 ret = intel_crt_ddc_get_modes(connector, i2c);
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800674 if (ret || !IS_G4X(dev))
Chris Wilsonf899fc62010-07-20 15:44:45 -0700675 return ret;
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800676
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800677 /* Try to probe digital port for output in DVI-I -> VGA mode. */
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800678 i2c = intel_gmbus_get_adapter(dev_priv, GMBUS_PORT_DPB);
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300679 return intel_crt_ddc_get_modes(connector, i2c);
Jesse Barnes79e53942008-11-07 14:24:08 -0800680}
681
682static int intel_crt_set_property(struct drm_connector *connector,
683 struct drm_property *property,
684 uint64_t value)
685{
Jesse Barnes79e53942008-11-07 14:24:08 -0800686 return 0;
687}
688
Chris Wilsonf3269052011-01-24 15:17:08 +0000689static void intel_crt_reset(struct drm_connector *connector)
690{
691 struct drm_device *dev = connector->dev;
Daniel Vetter2e938892012-10-11 20:08:24 +0200692 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonf3269052011-01-24 15:17:08 +0000693 struct intel_crt *crt = intel_attached_crt(connector);
694
Daniel Vetter2e938892012-10-11 20:08:24 +0200695 if (HAS_PCH_SPLIT(dev)) {
696 u32 adpa;
697
Ville Syrjäläca54b812013-01-25 21:44:42 +0200698 adpa = I915_READ(crt->adpa_reg);
Daniel Vetter2e938892012-10-11 20:08:24 +0200699 adpa &= ~ADPA_CRT_HOTPLUG_MASK;
700 adpa |= ADPA_HOTPLUG_BITS;
Ville Syrjäläca54b812013-01-25 21:44:42 +0200701 I915_WRITE(crt->adpa_reg, adpa);
702 POSTING_READ(crt->adpa_reg);
Daniel Vetter2e938892012-10-11 20:08:24 +0200703
704 DRM_DEBUG_KMS("pch crt adpa set to 0x%x\n", adpa);
Chris Wilsonf3269052011-01-24 15:17:08 +0000705 crt->force_hotplug_required = 1;
Daniel Vetter2e938892012-10-11 20:08:24 +0200706 }
707
Chris Wilsonf3269052011-01-24 15:17:08 +0000708}
709
Jesse Barnes79e53942008-11-07 14:24:08 -0800710/*
711 * Routines for controlling stuff on the analog port
712 */
713
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200714static const struct drm_encoder_helper_funcs crt_encoder_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800715 .mode_set = intel_crt_mode_set,
716};
717
718static const struct drm_connector_funcs intel_crt_connector_funcs = {
Chris Wilsonf3269052011-01-24 15:17:08 +0000719 .reset = intel_crt_reset,
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200720 .dpms = intel_crt_dpms,
Jesse Barnes79e53942008-11-07 14:24:08 -0800721 .detect = intel_crt_detect,
722 .fill_modes = drm_helper_probe_single_connector_modes,
723 .destroy = intel_crt_destroy,
724 .set_property = intel_crt_set_property,
725};
726
727static const struct drm_connector_helper_funcs intel_crt_connector_helper_funcs = {
728 .mode_valid = intel_crt_mode_valid,
729 .get_modes = intel_crt_get_modes,
Chris Wilsondf0e9242010-09-09 16:20:55 +0100730 .best_encoder = intel_best_encoder,
Jesse Barnes79e53942008-11-07 14:24:08 -0800731};
732
Jesse Barnes79e53942008-11-07 14:24:08 -0800733static const struct drm_encoder_funcs intel_crt_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100734 .destroy = intel_encoder_destroy,
Jesse Barnes79e53942008-11-07 14:24:08 -0800735};
736
Duncan Laurie8ca40132011-10-25 15:42:21 -0700737static int __init intel_no_crt_dmi_callback(const struct dmi_system_id *id)
738{
Daniel Vetterbc0daf42012-04-01 13:16:49 +0200739 DRM_INFO("Skipping CRT initialization for %s\n", id->ident);
Duncan Laurie8ca40132011-10-25 15:42:21 -0700740 return 1;
741}
742
743static const struct dmi_system_id intel_no_crt[] = {
744 {
745 .callback = intel_no_crt_dmi_callback,
746 .ident = "ACER ZGB",
747 .matches = {
748 DMI_MATCH(DMI_SYS_VENDOR, "ACER"),
749 DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"),
750 },
751 },
752 { }
753};
754
Jesse Barnes79e53942008-11-07 14:24:08 -0800755void intel_crt_init(struct drm_device *dev)
756{
757 struct drm_connector *connector;
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000758 struct intel_crt *crt;
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800759 struct intel_connector *intel_connector;
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200760 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -0800761
Duncan Laurie8ca40132011-10-25 15:42:21 -0700762 /* Skip machines without VGA that falsely report hotplug events */
763 if (dmi_check_system(intel_no_crt))
764 return;
765
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000766 crt = kzalloc(sizeof(struct intel_crt), GFP_KERNEL);
767 if (!crt)
Jesse Barnes79e53942008-11-07 14:24:08 -0800768 return;
769
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800770 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
771 if (!intel_connector) {
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000772 kfree(crt);
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800773 return;
774 }
775
776 connector = &intel_connector->base;
Adam Jackson637f44d2013-03-25 15:40:05 -0400777 crt->connector = intel_connector;
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800778 drm_connector_init(dev, &intel_connector->base,
Jesse Barnes79e53942008-11-07 14:24:08 -0800779 &intel_crt_connector_funcs, DRM_MODE_CONNECTOR_VGA);
780
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000781 drm_encoder_init(dev, &crt->base.base, &intel_crt_enc_funcs,
Jesse Barnes79e53942008-11-07 14:24:08 -0800782 DRM_MODE_ENCODER_DAC);
783
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000784 intel_connector_attach_encoder(intel_connector, &crt->base);
Jesse Barnes79e53942008-11-07 14:24:08 -0800785
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000786 crt->base.type = INTEL_OUTPUT_ANALOG;
Daniel Vetter66a92782012-07-12 20:08:18 +0200787 crt->base.cloneable = true;
Paulo Zanonid63fa0d2012-11-20 13:27:35 -0200788 if (IS_I830(dev))
Eugeni Dodonov59c859d2012-05-09 15:37:19 -0300789 crt->base.crtc_mask = (1 << 0);
790 else
Keith Packard08268742012-08-13 21:34:45 -0700791 crt->base.crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -0300792
Daniel Vetterdbb02572012-01-28 14:49:23 +0100793 if (IS_GEN2(dev))
794 connector->interlace_allowed = 0;
795 else
796 connector->interlace_allowed = 1;
Jesse Barnes79e53942008-11-07 14:24:08 -0800797 connector->doublescan_allowed = 0;
798
Jesse Barnesdf0323c2012-04-17 15:06:33 -0700799 if (HAS_PCH_SPLIT(dev))
Daniel Vetter540a8952012-07-11 16:27:57 +0200800 crt->adpa_reg = PCH_ADPA;
801 else if (IS_VALLEYVIEW(dev))
802 crt->adpa_reg = VLV_ADPA;
Jesse Barnesdf0323c2012-04-17 15:06:33 -0700803 else
Daniel Vetter540a8952012-07-11 16:27:57 +0200804 crt->adpa_reg = ADPA;
Jesse Barnesdf0323c2012-04-17 15:06:33 -0700805
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100806 crt->base.compute_config = intel_crt_compute_config;
Daniel Vetter21246042012-07-01 14:58:27 +0200807 crt->base.disable = intel_disable_crt;
808 crt->base.enable = intel_enable_crt;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700809 crt->base.get_config = intel_crt_get_config;
Egbert Eich1d843f92013-02-25 12:06:49 -0500810 if (I915_HAS_HOTPLUG(dev))
811 crt->base.hpd_pin = HPD_CRT;
Paulo Zanoniaffa9352012-11-23 15:30:39 -0200812 if (HAS_DDI(dev))
Paulo Zanoni4eda01b2012-10-31 18:12:21 -0200813 crt->base.get_hw_state = intel_ddi_get_hw_state;
814 else
815 crt->base.get_hw_state = intel_crt_get_hw_state;
Daniel Vettere403fc92012-07-02 13:41:21 +0200816 intel_connector->get_hw_state = intel_connector_get_hw_state;
Daniel Vetter21246042012-07-01 14:58:27 +0200817
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200818 drm_encoder_helper_add(&crt->base.base, &crt_encoder_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -0800819 drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs);
820
821 drm_sysfs_connector_add(connector);
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800822
Egbert Eich821450c2013-04-16 13:36:55 +0200823 if (!I915_HAS_HOTPLUG(dev))
824 intel_connector->polled = DRM_CONNECTOR_POLL_CONNECT;
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000825
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800826 /*
827 * Configure the automatic hotplug detection stuff
828 */
829 crt->force_hotplug_required = 0;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800830
Paulo Zanoni68d18ad2012-12-01 12:04:26 -0200831 /*
Damien Lespiau3e683202012-12-11 18:48:29 +0000832 * TODO: find a proper way to discover whether we need to set the the
833 * polarity and link reversal bits or not, instead of relying on the
834 * BIOS.
Paulo Zanoni68d18ad2012-12-01 12:04:26 -0200835 */
Damien Lespiau3e683202012-12-11 18:48:29 +0000836 if (HAS_PCH_LPT(dev)) {
837 u32 fdi_config = FDI_RX_POLARITY_REVERSED_LPT |
838 FDI_RX_LINK_REVERSAL_OVERRIDE;
839
840 dev_priv->fdi_rx_config = I915_READ(_FDI_RXA_CTL) & fdi_config;
841 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800842}