blob: fe20bf7e8d24fc1f2dcc361527ffc35fb1820794 [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;
Keith Packarde7dbb2f2010-11-16 16:03:53 +080048 bool force_hotplug_required;
Daniel Vetter540a8952012-07-11 16:27:57 +020049 u32 adpa_reg;
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +000050};
51
52static 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
Daniel Vetter540a8952012-07-11 16:27:57 +020058static struct intel_crt *intel_encoder_to_crt(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080059{
Daniel Vetter540a8952012-07-11 16:27:57 +020060 return container_of(encoder, struct intel_crt, base);
Jesse Barnesdf0323c2012-04-17 15:06:33 -070061}
62
Daniel Vettere403fc92012-07-02 13:41:21 +020063static bool intel_crt_get_hw_state(struct intel_encoder *encoder,
64 enum pipe *pipe)
Jesse Barnesdf0323c2012-04-17 15:06:33 -070065{
Daniel Vettere403fc92012-07-02 13:41:21 +020066 struct drm_device *dev = encoder->base.dev;
Jesse Barnesdf0323c2012-04-17 15:06:33 -070067 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vettere403fc92012-07-02 13:41:21 +020068 struct intel_crt *crt = intel_encoder_to_crt(encoder);
69 u32 tmp;
Zhenyu Wang2c072452009-06-05 15:38:42 +080070
Daniel Vettere403fc92012-07-02 13:41:21 +020071 tmp = I915_READ(crt->adpa_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +080072
Daniel Vettere403fc92012-07-02 13:41:21 +020073 if (!(tmp & ADPA_DAC_ENABLE))
74 return false;
Jesse Barnesdf0323c2012-04-17 15:06:33 -070075
Daniel Vettere403fc92012-07-02 13:41:21 +020076 if (HAS_PCH_CPT(dev))
77 *pipe = PORT_TO_PIPE_CPT(tmp);
78 else
79 *pipe = PORT_TO_PIPE(tmp);
80
81 return true;
Jesse Barnesdf0323c2012-04-17 15:06:33 -070082}
83
Daniel Vetter21246042012-07-01 14:58:27 +020084static void intel_disable_crt(struct intel_encoder *encoder)
Jesse Barnesdf0323c2012-04-17 15:06:33 -070085{
Daniel Vetter21246042012-07-01 14:58:27 +020086 struct drm_i915_private *dev_priv = encoder->base.dev->dev_private;
87 struct intel_crt *crt = intel_encoder_to_crt(encoder);
Jesse Barnesdf0323c2012-04-17 15:06:33 -070088 u32 temp;
89
Daniel Vetter21246042012-07-01 14:58:27 +020090 temp = I915_READ(crt->adpa_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -080091 temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
ling.ma@intel.comfebc7692009-06-25 11:55:57 +080092 temp &= ~ADPA_DAC_ENABLE;
Daniel Vetter21246042012-07-01 14:58:27 +020093 I915_WRITE(crt->adpa_reg, temp);
94}
Jesse Barnes79e53942008-11-07 14:24:08 -080095
Daniel Vetter21246042012-07-01 14:58:27 +020096static 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
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200107/* Note: The caller is required to filter out dpms modes not supported by the
108 * platform. */
109static void intel_crt_set_dpms(struct intel_encoder *encoder, int mode)
Jesse Barnes79e53942008-11-07 14:24:08 -0800110{
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200111 struct drm_device *dev = encoder->base.dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800112 struct drm_i915_private *dev_priv = dev->dev_private;
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200113 struct intel_crt *crt = intel_encoder_to_crt(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -0800114 u32 temp;
115
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200116 temp = I915_READ(crt->adpa_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800117 temp &= ~(ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
118 temp &= ~ADPA_DAC_ENABLE;
Jesse Barnesbd9e8412012-06-15 11:55:18 -0700119
Akshay Joshi0206e352011-08-16 15:34:10 -0400120 switch (mode) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800121 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
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200135 I915_WRITE(crt->adpa_reg, temp);
136}
137
138static 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 }
Daniel Vetter0a91ca22012-07-02 21:54:27 +0200178
Daniel Vetterb9805142012-08-31 17:37:33 +0200179 intel_modeset_check_state(connector->dev);
Jesse Barnes79e53942008-11-07 14:24:08 -0800180}
181
182static int intel_crt_mode_valid(struct drm_connector *connector,
183 struct drm_display_mode *mode)
184{
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800185 struct drm_device *dev = connector->dev;
186
187 int max_clock = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800188 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
189 return MODE_NO_DBLESCAN;
190
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800191 if (mode->clock < 25000)
192 return MODE_CLOCK_LOW;
193
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100194 if (IS_GEN2(dev))
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800195 max_clock = 350000;
196 else
197 max_clock = 400000;
198 if (mode->clock > max_clock)
199 return MODE_CLOCK_HIGH;
Jesse Barnes79e53942008-11-07 14:24:08 -0800200
Paulo Zanonid4b19312012-11-29 11:29:32 -0200201 /* 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
Jesse Barnes79e53942008-11-07 14:24:08 -0800206 return MODE_OK;
207}
208
209static bool intel_crt_mode_fixup(struct drm_encoder *encoder,
Laurent Pincharte811f5a2012-07-17 17:56:50 +0200210 const struct drm_display_mode *mode,
Jesse Barnes79e53942008-11-07 14:24:08 -0800211 struct drm_display_mode *adjusted_mode)
212{
213 return true;
214}
215
216static 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;
Daniel Vetter540a8952012-07-11 16:27:57 +0200223 struct intel_crt *crt =
224 intel_encoder_to_crt(to_intel_encoder(encoder));
Jesse Barnes79e53942008-11-07 14:24:08 -0800225 struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
226 struct drm_i915_private *dev_priv = dev->dev_private;
Egbert Eich6478d412012-10-14 16:33:11 +0200227 u32 adpa;
Jesse Barnes79e53942008-11-07 14:24:08 -0800228
Daniel Vetter912d8122012-10-11 20:08:23 +0200229 if (HAS_PCH_SPLIT(dev))
230 adpa = ADPA_HOTPLUG_BITS;
231 else
232 adpa = 0;
233
Jesse Barnes79e53942008-11-07 14:24:08 -0800234 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
Jesse Barnes75770562011-10-12 09:01:58 -0700239 /* For CPT allow 3 pipe config, for others just use A or B */
Paulo Zanoni48378132012-10-31 18:12:20 -0200240 if (HAS_PCH_LPT(dev))
241 ; /* Those bits don't exist here */
242 else if (HAS_PCH_CPT(dev))
Jesse Barnes75770562011-10-12 09:01:58 -0700243 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;
Jesse Barnes79e53942008-11-07 14:24:08 -0800248
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800249 if (!HAS_PCH_SPLIT(dev))
250 I915_WRITE(BCLRPAT(intel_crtc->pipe), 0);
251
Daniel Vetter540a8952012-07-11 16:27:57 +0200252 I915_WRITE(crt->adpa_reg, adpa);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800253}
254
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500255static bool intel_ironlake_crt_detect_hotplug(struct drm_connector *connector)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800256{
257 struct drm_device *dev = connector->dev;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800258 struct intel_crt *crt = intel_attached_crt(connector);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800259 struct drm_i915_private *dev_priv = dev->dev_private;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800260 u32 adpa;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800261 bool ret;
262
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800263 /* 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;
Zhenyu Wang67941da2009-07-24 01:00:33 +0800267
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800268 crt->force_hotplug_required = 0;
Dave Airlied5dd96c2010-08-04 15:52:19 +1000269
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800270 save_adpa = adpa = I915_READ(PCH_ADPA);
271 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
Dave Airlied5dd96c2010-08-04 15:52:19 +1000272
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800273 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
274 if (turn_off_dac)
275 adpa &= ~ADPA_DAC_ENABLE;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800276
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800277 I915_WRITE(PCH_ADPA, adpa);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800278
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800279 if (wait_for((I915_READ(PCH_ADPA) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
280 1000))
281 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
Zhenyu Wang2c072452009-06-05 15:38:42 +0800282
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800283 if (turn_off_dac) {
284 I915_WRITE(PCH_ADPA, save_adpa);
285 POSTING_READ(PCH_ADPA);
286 }
Zhenyu Wanga4a6b902010-04-07 16:15:55 +0800287 }
288
Zhenyu Wang2c072452009-06-05 15:38:42 +0800289 /* Check the status to see if both blue and green are on now */
290 adpa = I915_READ(PCH_ADPA);
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800291 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800292 ret = true;
293 else
294 ret = false;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800295 DRM_DEBUG_KMS("ironlake hotplug adpa=0x%x, result %d\n", adpa, ret);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800296
Zhenyu Wang2c072452009-06-05 15:38:42 +0800297 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800298}
299
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700300static bool valleyview_crt_detect_hotplug(struct drm_connector *connector)
301{
302 struct drm_device *dev = connector->dev;
303 struct drm_i915_private *dev_priv = dev->dev_private;
304 u32 adpa;
305 bool ret;
306 u32 save_adpa;
307
308 save_adpa = adpa = I915_READ(ADPA);
309 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
310
311 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
312
313 I915_WRITE(ADPA, adpa);
314
315 if (wait_for((I915_READ(ADPA) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0,
316 1000)) {
317 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
318 I915_WRITE(ADPA, save_adpa);
319 }
320
321 /* Check the status to see if both blue and green are on now */
322 adpa = I915_READ(ADPA);
323 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
324 ret = true;
325 else
326 ret = false;
327
328 DRM_DEBUG_KMS("valleyview hotplug adpa=0x%x, result %d\n", adpa, ret);
329
330 /* FIXME: debug force function and remove */
331 ret = true;
332
333 return ret;
334}
335
Jesse Barnes79e53942008-11-07 14:24:08 -0800336/**
337 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect CRT presence.
338 *
339 * Not for i915G/i915GM
340 *
341 * \return true if CRT is connected.
342 * \return false if CRT is disconnected.
343 */
344static bool intel_crt_detect_hotplug(struct drm_connector *connector)
345{
346 struct drm_device *dev = connector->dev;
347 struct drm_i915_private *dev_priv = dev->dev_private;
Adam Jackson7a772c42010-05-24 16:46:29 -0400348 u32 hotplug_en, orig, stat;
349 bool ret = false;
Zhao Yakui771cb082009-03-03 18:07:52 +0800350 int i, tries = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800351
Eric Anholtbad720f2009-10-22 16:11:14 -0700352 if (HAS_PCH_SPLIT(dev))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500353 return intel_ironlake_crt_detect_hotplug(connector);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800354
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700355 if (IS_VALLEYVIEW(dev))
356 return valleyview_crt_detect_hotplug(connector);
357
Zhao Yakui771cb082009-03-03 18:07:52 +0800358 /*
359 * On 4 series desktop, CRT detect sequence need to be done twice
360 * to get a reliable result.
361 */
Jesse Barnes79e53942008-11-07 14:24:08 -0800362
Zhao Yakui771cb082009-03-03 18:07:52 +0800363 if (IS_G4X(dev) && !IS_GM45(dev))
364 tries = 2;
365 else
366 tries = 1;
Adam Jackson7a772c42010-05-24 16:46:29 -0400367 hotplug_en = orig = I915_READ(PORT_HOTPLUG_EN);
Zhao Yakui771cb082009-03-03 18:07:52 +0800368 hotplug_en |= CRT_HOTPLUG_FORCE_DETECT;
Jesse Barnes79e53942008-11-07 14:24:08 -0800369
Zhao Yakui771cb082009-03-03 18:07:52 +0800370 for (i = 0; i < tries ; i++) {
Zhao Yakui771cb082009-03-03 18:07:52 +0800371 /* turn on the FORCE_DETECT */
372 I915_WRITE(PORT_HOTPLUG_EN, hotplug_en);
Zhao Yakui771cb082009-03-03 18:07:52 +0800373 /* wait for FORCE_DETECT to go off */
Chris Wilson913d8d12010-08-07 11:01:35 +0100374 if (wait_for((I915_READ(PORT_HOTPLUG_EN) &
375 CRT_HOTPLUG_FORCE_DETECT) == 0,
Chris Wilson481b6af2010-08-23 17:43:35 +0100376 1000))
Chris Wilson79077312010-09-12 19:58:04 +0100377 DRM_DEBUG_KMS("timed out waiting for FORCE_DETECT to go off");
Zhao Yakui771cb082009-03-03 18:07:52 +0800378 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800379
Adam Jackson7a772c42010-05-24 16:46:29 -0400380 stat = I915_READ(PORT_HOTPLUG_STAT);
381 if ((stat & CRT_HOTPLUG_MONITOR_MASK) != CRT_HOTPLUG_MONITOR_NONE)
382 ret = true;
Jesse Barnes79e53942008-11-07 14:24:08 -0800383
Adam Jackson7a772c42010-05-24 16:46:29 -0400384 /* clear the interrupt we just generated, if any */
385 I915_WRITE(PORT_HOTPLUG_STAT, CRT_HOTPLUG_INT_STATUS);
386
387 /* and put the bits back */
388 I915_WRITE(PORT_HOTPLUG_EN, orig);
389
390 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800391}
392
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300393static struct edid *intel_crt_get_edid(struct drm_connector *connector,
394 struct i2c_adapter *i2c)
395{
396 struct edid *edid;
397
398 edid = drm_get_edid(connector, i2c);
399
400 if (!edid && !intel_gmbus_is_forced_bit(i2c)) {
401 DRM_DEBUG_KMS("CRT GMBUS EDID read failed, retry using GPIO bit-banging\n");
402 intel_gmbus_force_bit(i2c, true);
403 edid = drm_get_edid(connector, i2c);
404 intel_gmbus_force_bit(i2c, false);
405 }
406
407 return edid;
408}
409
410/* local version of intel_ddc_get_modes() to use intel_crt_get_edid() */
411static int intel_crt_ddc_get_modes(struct drm_connector *connector,
412 struct i2c_adapter *adapter)
413{
414 struct edid *edid;
Jani Nikulaebda95a2012-10-19 14:51:51 +0300415 int ret;
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300416
417 edid = intel_crt_get_edid(connector, adapter);
418 if (!edid)
419 return 0;
420
Jani Nikulaebda95a2012-10-19 14:51:51 +0300421 ret = intel_connector_update_modes(connector, edid);
422 kfree(edid);
423
424 return ret;
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300425}
426
David Müllerf5afcd32011-01-06 12:29:32 +0000427static bool intel_crt_detect_ddc(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -0800428{
David Müllerf5afcd32011-01-06 12:29:32 +0000429 struct intel_crt *crt = intel_attached_crt(connector);
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000430 struct drm_i915_private *dev_priv = crt->base.base.dev->dev_private;
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200431 struct edid *edid;
432 struct i2c_adapter *i2c;
Jesse Barnes79e53942008-11-07 14:24:08 -0800433
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200434 BUG_ON(crt->base.type != INTEL_OUTPUT_ANALOG);
Jesse Barnes79e53942008-11-07 14:24:08 -0800435
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200436 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->crt_ddc_pin);
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300437 edid = intel_crt_get_edid(connector, i2c);
David Müllerf5afcd32011-01-06 12:29:32 +0000438
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200439 if (edid) {
440 bool is_digital = edid->input & DRM_EDID_INPUT_DIGITAL;
441
David Müllerf5afcd32011-01-06 12:29:32 +0000442 /*
443 * This may be a DVI-I connector with a shared DDC
444 * link between analog and digital outputs, so we
445 * have to check the EDID input spec of the attached device.
446 */
David Müllerf5afcd32011-01-06 12:29:32 +0000447 if (!is_digital) {
448 DRM_DEBUG_KMS("CRT detected via DDC:0x50 [EDID]\n");
449 return true;
450 }
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200451
452 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [EDID reports a digital panel]\n");
453 } else {
454 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [no valid EDID found]\n");
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100455 }
456
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200457 kfree(edid);
458
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100459 return false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800460}
461
Ma Linge4a5d542009-05-26 11:31:00 +0800462static enum drm_connector_status
Chris Wilson71731882011-04-19 23:10:58 +0100463intel_crt_load_detect(struct intel_crt *crt)
Ma Linge4a5d542009-05-26 11:31:00 +0800464{
Chris Wilson71731882011-04-19 23:10:58 +0100465 struct drm_device *dev = crt->base.base.dev;
Ma Linge4a5d542009-05-26 11:31:00 +0800466 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson71731882011-04-19 23:10:58 +0100467 uint32_t pipe = to_intel_crtc(crt->base.base.crtc)->pipe;
Ma Linge4a5d542009-05-26 11:31:00 +0800468 uint32_t save_bclrpat;
469 uint32_t save_vtotal;
470 uint32_t vtotal, vactive;
471 uint32_t vsample;
472 uint32_t vblank, vblank_start, vblank_end;
473 uint32_t dsl;
474 uint32_t bclrpat_reg;
475 uint32_t vtotal_reg;
476 uint32_t vblank_reg;
477 uint32_t vsync_reg;
478 uint32_t pipeconf_reg;
479 uint32_t pipe_dsl_reg;
480 uint8_t st00;
481 enum drm_connector_status status;
482
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100483 DRM_DEBUG_KMS("starting load-detect on CRT\n");
484
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800485 bclrpat_reg = BCLRPAT(pipe);
486 vtotal_reg = VTOTAL(pipe);
487 vblank_reg = VBLANK(pipe);
488 vsync_reg = VSYNC(pipe);
489 pipeconf_reg = PIPECONF(pipe);
490 pipe_dsl_reg = PIPEDSL(pipe);
Ma Linge4a5d542009-05-26 11:31:00 +0800491
492 save_bclrpat = I915_READ(bclrpat_reg);
493 save_vtotal = I915_READ(vtotal_reg);
494 vblank = I915_READ(vblank_reg);
495
496 vtotal = ((save_vtotal >> 16) & 0xfff) + 1;
497 vactive = (save_vtotal & 0x7ff) + 1;
498
499 vblank_start = (vblank & 0xfff) + 1;
500 vblank_end = ((vblank >> 16) & 0xfff) + 1;
501
502 /* Set the border color to purple. */
503 I915_WRITE(bclrpat_reg, 0x500050);
504
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100505 if (!IS_GEN2(dev)) {
Ma Linge4a5d542009-05-26 11:31:00 +0800506 uint32_t pipeconf = I915_READ(pipeconf_reg);
507 I915_WRITE(pipeconf_reg, pipeconf | PIPECONF_FORCE_BORDER);
Chris Wilson19c55da2010-08-09 14:50:53 +0100508 POSTING_READ(pipeconf_reg);
Ma Linge4a5d542009-05-26 11:31:00 +0800509 /* Wait for next Vblank to substitue
510 * border color for Color info */
Jesse Barnes9d0498a2010-08-18 13:20:54 -0700511 intel_wait_for_vblank(dev, pipe);
Ma Linge4a5d542009-05-26 11:31:00 +0800512 st00 = I915_READ8(VGA_MSR_WRITE);
513 status = ((st00 & (1 << 4)) != 0) ?
514 connector_status_connected :
515 connector_status_disconnected;
516
517 I915_WRITE(pipeconf_reg, pipeconf);
518 } else {
519 bool restore_vblank = false;
520 int count, detect;
521
522 /*
523 * If there isn't any border, add some.
524 * Yes, this will flicker
525 */
526 if (vblank_start <= vactive && vblank_end >= vtotal) {
527 uint32_t vsync = I915_READ(vsync_reg);
528 uint32_t vsync_start = (vsync & 0xffff) + 1;
529
530 vblank_start = vsync_start;
531 I915_WRITE(vblank_reg,
532 (vblank_start - 1) |
533 ((vblank_end - 1) << 16));
534 restore_vblank = true;
535 }
536 /* sample in the vertical border, selecting the larger one */
537 if (vblank_start - vactive >= vtotal - vblank_end)
538 vsample = (vblank_start + vactive) >> 1;
539 else
540 vsample = (vtotal + vblank_end) >> 1;
541
542 /*
543 * Wait for the border to be displayed
544 */
545 while (I915_READ(pipe_dsl_reg) >= vactive)
546 ;
547 while ((dsl = I915_READ(pipe_dsl_reg)) <= vsample)
548 ;
549 /*
550 * Watch ST00 for an entire scanline
551 */
552 detect = 0;
553 count = 0;
554 do {
555 count++;
556 /* Read the ST00 VGA status register */
557 st00 = I915_READ8(VGA_MSR_WRITE);
558 if (st00 & (1 << 4))
559 detect++;
560 } while ((I915_READ(pipe_dsl_reg) == dsl));
561
562 /* restore vblank if necessary */
563 if (restore_vblank)
564 I915_WRITE(vblank_reg, vblank);
565 /*
566 * If more than 3/4 of the scanline detected a monitor,
567 * then it is assumed to be present. This works even on i830,
568 * where there isn't any way to force the border color across
569 * the screen
570 */
571 status = detect * 4 > count * 3 ?
572 connector_status_connected :
573 connector_status_disconnected;
574 }
575
576 /* Restore previous settings */
577 I915_WRITE(bclrpat_reg, save_bclrpat);
578
579 return status;
580}
581
Chris Wilson7b334fc2010-09-09 23:51:02 +0100582static enum drm_connector_status
Chris Wilson930a9e22010-09-14 11:07:23 +0100583intel_crt_detect(struct drm_connector *connector, bool force)
Jesse Barnes79e53942008-11-07 14:24:08 -0800584{
585 struct drm_device *dev = connector->dev;
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000586 struct intel_crt *crt = intel_attached_crt(connector);
Ma Linge4a5d542009-05-26 11:31:00 +0800587 enum drm_connector_status status;
Daniel Vettere95c8432012-04-20 21:03:36 +0200588 struct intel_load_detect_pipe tmp;
Jesse Barnes79e53942008-11-07 14:24:08 -0800589
Chris Wilsona6c45cf2010-09-17 00:32:17 +0100590 if (I915_HAS_HOTPLUG(dev)) {
Daniel Vetteraaa37732012-06-16 15:30:32 +0200591 /* We can not rely on the HPD pin always being correctly wired
592 * up, for example many KVM do not pass it through, and so
593 * only trust an assertion that the monitor is connected.
594 */
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100595 if (intel_crt_detect_hotplug(connector)) {
596 DRM_DEBUG_KMS("CRT detected via hotplug\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800597 return connector_status_connected;
Daniel Vetteraaa37732012-06-16 15:30:32 +0200598 } else
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800599 DRM_DEBUG_KMS("CRT not detected via hotplug\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800600 }
601
David Müllerf5afcd32011-01-06 12:29:32 +0000602 if (intel_crt_detect_ddc(connector))
Jesse Barnes79e53942008-11-07 14:24:08 -0800603 return connector_status_connected;
604
Daniel Vetteraaa37732012-06-16 15:30:32 +0200605 /* Load detection is broken on HPD capable machines. Whoever wants a
606 * broken monitor (without edid) to work behind a broken kvm (that fails
607 * to have the right resistors for HP detection) needs to fix this up.
608 * For now just bail out. */
609 if (I915_HAS_HOTPLUG(dev))
610 return connector_status_disconnected;
611
Chris Wilson930a9e22010-09-14 11:07:23 +0100612 if (!force)
Chris Wilson7b334fc2010-09-09 23:51:02 +0100613 return connector->status;
614
Ma Linge4a5d542009-05-26 11:31:00 +0800615 /* for pre-945g platforms use load detect */
Daniel Vetterd2434ab2012-08-12 21:20:10 +0200616 if (intel_get_load_detect_pipe(connector, NULL, &tmp)) {
Daniel Vettere95c8432012-04-20 21:03:36 +0200617 if (intel_crt_detect_ddc(connector))
618 status = connector_status_connected;
619 else
620 status = intel_crt_load_detect(crt);
Daniel Vetterd2434ab2012-08-12 21:20:10 +0200621 intel_release_load_detect_pipe(connector, &tmp);
Daniel Vettere95c8432012-04-20 21:03:36 +0200622 } else
623 status = connector_status_unknown;
Ma Linge4a5d542009-05-26 11:31:00 +0800624
625 return status;
Jesse Barnes79e53942008-11-07 14:24:08 -0800626}
627
628static void intel_crt_destroy(struct drm_connector *connector)
629{
Jesse Barnes79e53942008-11-07 14:24:08 -0800630 drm_sysfs_connector_remove(connector);
631 drm_connector_cleanup(connector);
632 kfree(connector);
633}
634
635static int intel_crt_get_modes(struct drm_connector *connector)
636{
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800637 struct drm_device *dev = connector->dev;
Chris Wilsonf899fc62010-07-20 15:44:45 -0700638 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilson890f3352010-09-14 16:46:59 +0100639 int ret;
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800640 struct i2c_adapter *i2c;
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800641
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800642 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->crt_ddc_pin);
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300643 ret = intel_crt_ddc_get_modes(connector, i2c);
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800644 if (ret || !IS_G4X(dev))
Chris Wilsonf899fc62010-07-20 15:44:45 -0700645 return ret;
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800646
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800647 /* Try to probe digital port for output in DVI-I -> VGA mode. */
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800648 i2c = intel_gmbus_get_adapter(dev_priv, GMBUS_PORT_DPB);
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300649 return intel_crt_ddc_get_modes(connector, i2c);
Jesse Barnes79e53942008-11-07 14:24:08 -0800650}
651
652static int intel_crt_set_property(struct drm_connector *connector,
653 struct drm_property *property,
654 uint64_t value)
655{
Jesse Barnes79e53942008-11-07 14:24:08 -0800656 return 0;
657}
658
Chris Wilsonf3269052011-01-24 15:17:08 +0000659static void intel_crt_reset(struct drm_connector *connector)
660{
661 struct drm_device *dev = connector->dev;
Daniel Vetter2e938892012-10-11 20:08:24 +0200662 struct drm_i915_private *dev_priv = dev->dev_private;
Chris Wilsonf3269052011-01-24 15:17:08 +0000663 struct intel_crt *crt = intel_attached_crt(connector);
664
Daniel Vetter2e938892012-10-11 20:08:24 +0200665 if (HAS_PCH_SPLIT(dev)) {
666 u32 adpa;
667
668 adpa = I915_READ(PCH_ADPA);
669 adpa &= ~ADPA_CRT_HOTPLUG_MASK;
670 adpa |= ADPA_HOTPLUG_BITS;
671 I915_WRITE(PCH_ADPA, adpa);
672 POSTING_READ(PCH_ADPA);
673
674 DRM_DEBUG_KMS("pch crt adpa set to 0x%x\n", adpa);
Chris Wilsonf3269052011-01-24 15:17:08 +0000675 crt->force_hotplug_required = 1;
Daniel Vetter2e938892012-10-11 20:08:24 +0200676 }
677
Chris Wilsonf3269052011-01-24 15:17:08 +0000678}
679
Jesse Barnes79e53942008-11-07 14:24:08 -0800680/*
681 * Routines for controlling stuff on the analog port
682 */
683
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200684static const struct drm_encoder_helper_funcs crt_encoder_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800685 .mode_fixup = intel_crt_mode_fixup,
Jesse Barnes79e53942008-11-07 14:24:08 -0800686 .mode_set = intel_crt_mode_set,
Daniel Vetter1f703852012-07-11 16:51:39 +0200687 .disable = intel_encoder_noop,
Jesse Barnes79e53942008-11-07 14:24:08 -0800688};
689
690static const struct drm_connector_funcs intel_crt_connector_funcs = {
Chris Wilsonf3269052011-01-24 15:17:08 +0000691 .reset = intel_crt_reset,
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200692 .dpms = intel_crt_dpms,
Jesse Barnes79e53942008-11-07 14:24:08 -0800693 .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
699static 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,
Chris Wilsondf0e9242010-09-09 16:20:55 +0100702 .best_encoder = intel_best_encoder,
Jesse Barnes79e53942008-11-07 14:24:08 -0800703};
704
Jesse Barnes79e53942008-11-07 14:24:08 -0800705static const struct drm_encoder_funcs intel_crt_enc_funcs = {
Chris Wilsonea5b2132010-08-04 13:50:23 +0100706 .destroy = intel_encoder_destroy,
Jesse Barnes79e53942008-11-07 14:24:08 -0800707};
708
Duncan Laurie8ca40132011-10-25 15:42:21 -0700709static int __init intel_no_crt_dmi_callback(const struct dmi_system_id *id)
710{
Daniel Vetterbc0daf42012-04-01 13:16:49 +0200711 DRM_INFO("Skipping CRT initialization for %s\n", id->ident);
Duncan Laurie8ca40132011-10-25 15:42:21 -0700712 return 1;
713}
714
715static 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
Jesse Barnes79e53942008-11-07 14:24:08 -0800727void intel_crt_init(struct drm_device *dev)
728{
729 struct drm_connector *connector;
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000730 struct intel_crt *crt;
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800731 struct intel_connector *intel_connector;
David Müller (ELSOFT AG)db545012009-08-29 08:54:45 +0200732 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -0800733
Duncan Laurie8ca40132011-10-25 15:42:21 -0700734 /* Skip machines without VGA that falsely report hotplug events */
735 if (dmi_check_system(intel_no_crt))
736 return;
737
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000738 crt = kzalloc(sizeof(struct intel_crt), GFP_KERNEL);
739 if (!crt)
Jesse Barnes79e53942008-11-07 14:24:08 -0800740 return;
741
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800742 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
743 if (!intel_connector) {
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000744 kfree(crt);
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800745 return;
746 }
747
748 connector = &intel_connector->base;
749 drm_connector_init(dev, &intel_connector->base,
Jesse Barnes79e53942008-11-07 14:24:08 -0800750 &intel_crt_connector_funcs, DRM_MODE_CONNECTOR_VGA);
751
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000752 drm_encoder_init(dev, &crt->base.base, &intel_crt_enc_funcs,
Jesse Barnes79e53942008-11-07 14:24:08 -0800753 DRM_MODE_ENCODER_DAC);
754
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000755 intel_connector_attach_encoder(intel_connector, &crt->base);
Jesse Barnes79e53942008-11-07 14:24:08 -0800756
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000757 crt->base.type = INTEL_OUTPUT_ANALOG;
Daniel Vetter66a92782012-07-12 20:08:18 +0200758 crt->base.cloneable = true;
Paulo Zanonid63fa0d2012-11-20 13:27:35 -0200759 if (IS_I830(dev))
Eugeni Dodonov59c859d2012-05-09 15:37:19 -0300760 crt->base.crtc_mask = (1 << 0);
761 else
Keith Packard08268742012-08-13 21:34:45 -0700762 crt->base.crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -0300763
Daniel Vetterdbb02572012-01-28 14:49:23 +0100764 if (IS_GEN2(dev))
765 connector->interlace_allowed = 0;
766 else
767 connector->interlace_allowed = 1;
Jesse Barnes79e53942008-11-07 14:24:08 -0800768 connector->doublescan_allowed = 0;
769
Jesse Barnesdf0323c2012-04-17 15:06:33 -0700770 if (HAS_PCH_SPLIT(dev))
Daniel Vetter540a8952012-07-11 16:27:57 +0200771 crt->adpa_reg = PCH_ADPA;
772 else if (IS_VALLEYVIEW(dev))
773 crt->adpa_reg = VLV_ADPA;
Jesse Barnesdf0323c2012-04-17 15:06:33 -0700774 else
Daniel Vetter540a8952012-07-11 16:27:57 +0200775 crt->adpa_reg = ADPA;
Jesse Barnesdf0323c2012-04-17 15:06:33 -0700776
Daniel Vetter21246042012-07-01 14:58:27 +0200777 crt->base.disable = intel_disable_crt;
778 crt->base.enable = intel_enable_crt;
Paulo Zanoni4eda01b2012-10-31 18:12:21 -0200779 if (IS_HASWELL(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;
Daniel Vettere403fc92012-07-02 13:41:21 +0200783 intel_connector->get_hw_state = intel_connector_get_hw_state;
Daniel Vetter21246042012-07-01 14:58:27 +0200784
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200785 drm_encoder_helper_add(&crt->base.base, &crt_encoder_funcs);
Jesse Barnes79e53942008-11-07 14:24:08 -0800786 drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs);
787
788 drm_sysfs_connector_add(connector);
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800789
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000790 if (I915_HAS_HOTPLUG(dev))
791 connector->polled = DRM_CONNECTOR_POLL_HPD;
792 else
793 connector->polled = DRM_CONNECTOR_POLL_CONNECT;
794
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800795 /*
796 * Configure the automatic hotplug detection stuff
797 */
798 crt->force_hotplug_required = 0;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800799
Jesse Barnesb01f2c32009-12-11 11:07:17 -0800800 dev_priv->hotplug_supported_mask |= CRT_HOTPLUG_INT_STATUS;
Paulo Zanoni68d18ad2012-12-01 12:04:26 -0200801
802 /*
803 * TODO: find a proper way to discover whether we need to set the
804 * polarity reversal bit or not, instead of relying on the BIOS.
805 */
806 if (HAS_PCH_LPT(dev))
807 dev_priv->fdi_rx_polarity_reversed =
808 !!(I915_READ(_FDI_RXA_CTL) & FDI_RX_POLARITY_REVERSED_LPT);
Jesse Barnes79e53942008-11-07 14:24:08 -0800809}