blob: 70e0ff41070cbb174cd6b78008f230470d05b861 [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>
Matt Roperc6f95f22015-01-22 16:50:32 -080031#include <drm/drm_atomic_helper.h>
David Howells760285e2012-10-02 18:01:07 +010032#include <drm/drm_crtc.h>
33#include <drm/drm_crtc_helper.h>
34#include <drm/drm_edid.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080035#include "intel_drv.h"
David Howells760285e2012-10-02 18:01:07 +010036#include <drm/i915_drm.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080037#include "i915_drv.h"
38
Keith Packarde7dbb2f2010-11-16 16:03:53 +080039/* Here's the desired hotplug mode */
40#define ADPA_HOTPLUG_BITS (ADPA_CRT_HOTPLUG_PERIOD_128 | \
41 ADPA_CRT_HOTPLUG_WARMUP_10MS | \
42 ADPA_CRT_HOTPLUG_SAMPLE_4S | \
43 ADPA_CRT_HOTPLUG_VOLTAGE_50 | \
44 ADPA_CRT_HOTPLUG_VOLREF_325MV | \
45 ADPA_CRT_HOTPLUG_ENABLE)
46
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +000047struct intel_crt {
48 struct intel_encoder base;
Adam Jackson637f44d2013-03-25 15:40:05 -040049 /* DPMS state is stored in the connector, which we need in the
50 * encoder's enable/disable callbacks */
51 struct intel_connector *connector;
Keith Packarde7dbb2f2010-11-16 16:03:53 +080052 bool force_hotplug_required;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +020053 i915_reg_t adpa_reg;
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +000054};
55
Daniel Vetter540a8952012-07-11 16:27:57 +020056static struct intel_crt *intel_encoder_to_crt(struct intel_encoder *encoder)
Jesse Barnes79e53942008-11-07 14:24:08 -080057{
Daniel Vetter540a8952012-07-11 16:27:57 +020058 return container_of(encoder, struct intel_crt, base);
Jesse Barnesdf0323c2012-04-17 15:06:33 -070059}
60
Daniel Vettereebe6f02013-07-21 21:37:03 +020061static struct intel_crt *intel_attached_crt(struct drm_connector *connector)
62{
63 return intel_encoder_to_crt(intel_attached_encoder(connector));
64}
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;
Chris Wilsonfac5e232016-07-04 11:34:36 +010070 struct drm_i915_private *dev_priv = to_i915(dev);
Daniel Vettere403fc92012-07-02 13:41:21 +020071 struct intel_crt *crt = intel_encoder_to_crt(encoder);
72 u32 tmp;
Imre Deak1c8fdda2016-02-12 18:55:15 +020073 bool ret;
Zhenyu Wang2c072452009-06-05 15:38:42 +080074
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +020075 if (!intel_display_power_get_if_enabled(dev_priv,
76 encoder->power_domain))
Imre Deak6d129be2014-03-05 16:20:54 +020077 return false;
78
Imre Deak1c8fdda2016-02-12 18:55:15 +020079 ret = false;
80
Daniel Vettere403fc92012-07-02 13:41:21 +020081 tmp = I915_READ(crt->adpa_reg);
Zhenyu Wang2c072452009-06-05 15:38:42 +080082
Daniel Vettere403fc92012-07-02 13:41:21 +020083 if (!(tmp & ADPA_DAC_ENABLE))
Imre Deak1c8fdda2016-02-12 18:55:15 +020084 goto out;
Jesse Barnesdf0323c2012-04-17 15:06:33 -070085
Tvrtko Ursulin6e266952016-10-13 11:02:53 +010086 if (HAS_PCH_CPT(dev_priv))
Daniel Vettere403fc92012-07-02 13:41:21 +020087 *pipe = PORT_TO_PIPE_CPT(tmp);
88 else
89 *pipe = PORT_TO_PIPE(tmp);
90
Imre Deak1c8fdda2016-02-12 18:55:15 +020091 ret = true;
92out:
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +020093 intel_display_power_put(dev_priv, encoder->power_domain);
Imre Deak1c8fdda2016-02-12 18:55:15 +020094
95 return ret;
Jesse Barnesdf0323c2012-04-17 15:06:33 -070096}
97
Ville Syrjälä6801c182013-09-24 14:24:05 +030098static unsigned int intel_crt_get_flags(struct intel_encoder *encoder)
Jesse Barnes045ac3b2013-05-14 17:08:26 -070099{
Chris Wilsonfac5e232016-07-04 11:34:36 +0100100 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700101 struct intel_crt *crt = intel_encoder_to_crt(encoder);
102 u32 tmp, flags = 0;
103
104 tmp = I915_READ(crt->adpa_reg);
105
106 if (tmp & ADPA_HSYNC_ACTIVE_HIGH)
107 flags |= DRM_MODE_FLAG_PHSYNC;
108 else
109 flags |= DRM_MODE_FLAG_NHSYNC;
110
111 if (tmp & ADPA_VSYNC_ACTIVE_HIGH)
112 flags |= DRM_MODE_FLAG_PVSYNC;
113 else
114 flags |= DRM_MODE_FLAG_NVSYNC;
115
Ville Syrjälä6801c182013-09-24 14:24:05 +0300116 return flags;
117}
118
119static void intel_crt_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200120 struct intel_crtc_state *pipe_config)
Ville Syrjälä6801c182013-09-24 14:24:05 +0300121{
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200122 pipe_config->base.adjusted_mode.flags |= intel_crt_get_flags(encoder);
Ville Syrjälä18442d02013-09-13 16:00:08 +0300123
Ville Syrjäläe3b247d2016-02-17 21:41:09 +0200124 pipe_config->base.adjusted_mode.crtc_clock = pipe_config->port_clock;
Jesse Barnes045ac3b2013-05-14 17:08:26 -0700125}
126
Ville Syrjälä6801c182013-09-24 14:24:05 +0300127static void hsw_crt_get_config(struct intel_encoder *encoder,
Ander Conselvan de Oliveira5cec2582015-01-15 14:55:21 +0200128 struct intel_crtc_state *pipe_config)
Ville Syrjälä6801c182013-09-24 14:24:05 +0300129{
Ville Syrjälä8802e5b2016-02-17 21:41:12 +0200130 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
131
Ville Syrjälä6801c182013-09-24 14:24:05 +0300132 intel_ddi_get_config(encoder, pipe_config);
133
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200134 pipe_config->base.adjusted_mode.flags &= ~(DRM_MODE_FLAG_PHSYNC |
Ville Syrjälä6801c182013-09-24 14:24:05 +0300135 DRM_MODE_FLAG_NHSYNC |
136 DRM_MODE_FLAG_PVSYNC |
137 DRM_MODE_FLAG_NVSYNC);
Ander Conselvan de Oliveira2d112de2015-01-15 14:55:22 +0200138 pipe_config->base.adjusted_mode.flags |= intel_crt_get_flags(encoder);
Ville Syrjälä8802e5b2016-02-17 21:41:12 +0200139
140 pipe_config->base.adjusted_mode.crtc_clock = lpt_get_iclkip(dev_priv);
Ville Syrjälä6801c182013-09-24 14:24:05 +0300141}
142
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200143/* Note: The caller is required to filter out dpms modes not supported by the
144 * platform. */
Maarten Lankhorst225cc342016-08-09 17:04:07 +0200145static void intel_crt_set_dpms(struct intel_encoder *encoder,
146 struct intel_crtc_state *crtc_state,
147 int mode)
Jesse Barnes79e53942008-11-07 14:24:08 -0800148{
Tvrtko Ursulin66478472016-11-16 08:55:40 +0000149 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200150 struct intel_crt *crt = intel_encoder_to_crt(encoder);
Maarten Lankhorst225cc342016-08-09 17:04:07 +0200151 struct intel_crtc *crtc = to_intel_crtc(crtc_state->base.crtc);
152 const struct drm_display_mode *adjusted_mode = &crtc_state->base.adjusted_mode;
Daniel Vetter894ed1e2014-04-24 23:54:44 +0200153 u32 adpa;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800154
Tvrtko Ursulin66478472016-11-16 08:55:40 +0000155 if (INTEL_GEN(dev_priv) >= 5)
Daniel Vetter894ed1e2014-04-24 23:54:44 +0200156 adpa = ADPA_HOTPLUG_BITS;
157 else
158 adpa = 0;
159
160 if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC)
161 adpa |= ADPA_HSYNC_ACTIVE_HIGH;
162 if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC)
163 adpa |= ADPA_VSYNC_ACTIVE_HIGH;
164
165 /* For CPT allow 3 pipe config, for others just use A or B */
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100166 if (HAS_PCH_LPT(dev_priv))
Daniel Vetter894ed1e2014-04-24 23:54:44 +0200167 ; /* Those bits don't exist here */
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100168 else if (HAS_PCH_CPT(dev_priv))
Daniel Vetter894ed1e2014-04-24 23:54:44 +0200169 adpa |= PORT_TRANS_SEL_CPT(crtc->pipe);
170 else if (crtc->pipe == 0)
171 adpa |= ADPA_PIPE_A_SELECT;
172 else
173 adpa |= ADPA_PIPE_B_SELECT;
174
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100175 if (!HAS_PCH_SPLIT(dev_priv))
Daniel Vetter894ed1e2014-04-24 23:54:44 +0200176 I915_WRITE(BCLRPAT(crtc->pipe), 0);
Jesse Barnesbd9e8412012-06-15 11:55:18 -0700177
Akshay Joshi0206e352011-08-16 15:34:10 -0400178 switch (mode) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800179 case DRM_MODE_DPMS_ON:
Daniel Vetter894ed1e2014-04-24 23:54:44 +0200180 adpa |= ADPA_DAC_ENABLE;
Jesse Barnes79e53942008-11-07 14:24:08 -0800181 break;
182 case DRM_MODE_DPMS_STANDBY:
Daniel Vetter894ed1e2014-04-24 23:54:44 +0200183 adpa |= ADPA_DAC_ENABLE | ADPA_HSYNC_CNTL_DISABLE;
Jesse Barnes79e53942008-11-07 14:24:08 -0800184 break;
185 case DRM_MODE_DPMS_SUSPEND:
Daniel Vetter894ed1e2014-04-24 23:54:44 +0200186 adpa |= ADPA_DAC_ENABLE | ADPA_VSYNC_CNTL_DISABLE;
Jesse Barnes79e53942008-11-07 14:24:08 -0800187 break;
188 case DRM_MODE_DPMS_OFF:
Daniel Vetter894ed1e2014-04-24 23:54:44 +0200189 adpa |= ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE;
Jesse Barnes79e53942008-11-07 14:24:08 -0800190 break;
191 }
192
Daniel Vetter894ed1e2014-04-24 23:54:44 +0200193 I915_WRITE(crt->adpa_reg, adpa);
Daniel Vetterb2cabb02012-07-01 22:42:24 +0200194}
195
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +0200196static void intel_disable_crt(struct intel_encoder *encoder,
197 struct intel_crtc_state *old_crtc_state,
198 struct drm_connector_state *old_conn_state)
Adam Jackson637f44d2013-03-25 15:40:05 -0400199{
Maarten Lankhorst225cc342016-08-09 17:04:07 +0200200 intel_crt_set_dpms(encoder, old_crtc_state, DRM_MODE_DPMS_OFF);
Adam Jackson637f44d2013-03-25 15:40:05 -0400201}
202
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +0200203static void pch_disable_crt(struct intel_encoder *encoder,
204 struct intel_crtc_state *old_crtc_state,
205 struct drm_connector_state *old_conn_state)
Ville Syrjälä1ea56e22015-05-05 17:17:37 +0300206{
207}
208
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +0200209static void pch_post_disable_crt(struct intel_encoder *encoder,
210 struct intel_crtc_state *old_crtc_state,
211 struct drm_connector_state *old_conn_state)
Ville Syrjälä1ea56e22015-05-05 17:17:37 +0300212{
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +0200213 intel_disable_crt(encoder, old_crtc_state, old_conn_state);
Ville Syrjälä1ea56e22015-05-05 17:17:37 +0300214}
Daniel Vetterabfdc1e2014-06-25 22:01:52 +0300215
Maarten Lankhorstb7076542016-08-23 16:18:08 +0200216static void hsw_post_disable_crt(struct intel_encoder *encoder,
217 struct intel_crtc_state *old_crtc_state,
218 struct drm_connector_state *old_conn_state)
219{
220 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
221
222 pch_post_disable_crt(encoder, old_crtc_state, old_conn_state);
223
224 lpt_disable_pch_transcoder(dev_priv);
225 lpt_disable_iclkip(dev_priv);
226
227 intel_ddi_fdi_post_disable(encoder, old_crtc_state, old_conn_state);
228}
229
Maarten Lankhorstfd6bbda2016-08-09 17:04:04 +0200230static void intel_enable_crt(struct intel_encoder *encoder,
231 struct intel_crtc_state *pipe_config,
232 struct drm_connector_state *conn_state)
Adam Jackson637f44d2013-03-25 15:40:05 -0400233{
Maarten Lankhorst225cc342016-08-09 17:04:07 +0200234 intel_crt_set_dpms(encoder, pipe_config, DRM_MODE_DPMS_ON);
Adam Jackson637f44d2013-03-25 15:40:05 -0400235}
236
Damien Lespiauc19de8e2013-11-28 15:29:18 +0000237static enum drm_mode_status
238intel_crt_mode_valid(struct drm_connector *connector,
239 struct drm_display_mode *mode)
Jesse Barnes79e53942008-11-07 14:24:08 -0800240{
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800241 struct drm_device *dev = connector->dev;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100242 struct drm_i915_private *dev_priv = to_i915(dev);
243 int max_dotclk = dev_priv->max_dotclk_freq;
Ville Syrjälädebded82016-02-17 21:41:13 +0200244 int max_clock;
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800245
Jesse Barnes79e53942008-11-07 14:24:08 -0800246 if (mode->flags & DRM_MODE_FLAG_DBLSCAN)
247 return MODE_NO_DBLESCAN;
248
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800249 if (mode->clock < 25000)
250 return MODE_CLOCK_LOW;
251
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100252 if (HAS_PCH_LPT(dev_priv))
Ville Syrjälädebded82016-02-17 21:41:13 +0200253 max_clock = 180000;
Tvrtko Ursulin11a914c2016-10-13 11:03:08 +0100254 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälädebded82016-02-17 21:41:13 +0200255 /*
256 * 270 MHz due to current DPLL limits,
257 * DAC limit supposedly 355 MHz.
258 */
259 max_clock = 270000;
Tvrtko Ursulin5db94012016-10-13 11:03:10 +0100260 else if (IS_GEN3(dev_priv) || IS_GEN4(dev_priv))
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800261 max_clock = 400000;
Ville Syrjälädebded82016-02-17 21:41:13 +0200262 else
263 max_clock = 350000;
Zhao Yakui6bcdcd92009-03-03 18:06:42 +0800264 if (mode->clock > max_clock)
265 return MODE_CLOCK_HIGH;
Jesse Barnes79e53942008-11-07 14:24:08 -0800266
Mika Kaholaf8700b32016-02-02 15:16:42 +0200267 if (mode->clock > max_dotclk)
268 return MODE_CLOCK_HIGH;
269
Paulo Zanonid4b19312012-11-29 11:29:32 -0200270 /* The FDI receiver on LPT only supports 8bpc and only has 2 lanes. */
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100271 if (HAS_PCH_LPT(dev_priv) &&
Paulo Zanonid4b19312012-11-29 11:29:32 -0200272 (ironlake_get_lanes_required(mode->clock, 270000, 24) > 2))
273 return MODE_CLOCK_HIGH;
274
Jesse Barnes79e53942008-11-07 14:24:08 -0800275 return MODE_OK;
276}
277
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100278static bool intel_crt_compute_config(struct intel_encoder *encoder,
Maarten Lankhorst0a478c22016-08-09 17:04:05 +0200279 struct intel_crtc_state *pipe_config,
280 struct drm_connector_state *conn_state)
Jesse Barnes79e53942008-11-07 14:24:08 -0800281{
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +0100282 struct drm_i915_private *dev_priv = to_i915(encoder->base.dev);
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100283
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +0100284 if (HAS_PCH_SPLIT(dev_priv))
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100285 pipe_config->has_pch_encoder = true;
286
Daniel Vetter2a7acee2013-04-19 11:24:39 +0200287 /* LPT FDI RX only supports 8bpc. */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +0100288 if (HAS_PCH_LPT(dev_priv)) {
Daniel Vetterf58a1ac2016-05-03 10:33:01 +0200289 if (pipe_config->bw_constrained && pipe_config->pipe_bpp < 24) {
290 DRM_DEBUG_KMS("LPT only supports 24bpp\n");
291 return false;
292 }
293
Daniel Vetter2a7acee2013-04-19 11:24:39 +0200294 pipe_config->pipe_bpp = 24;
Daniel Vetterf58a1ac2016-05-03 10:33:01 +0200295 }
Daniel Vetter2a7acee2013-04-19 11:24:39 +0200296
Ville Syrjälä8f7abfd2014-02-27 14:23:12 +0200297 /* FDI must always be 2.7 GHz */
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +0100298 if (HAS_DDI(dev_priv))
Ville Syrjälä8f7abfd2014-02-27 14:23:12 +0200299 pipe_config->port_clock = 135000 * 2;
Maarten Lankhorst00490c22015-11-16 14:42:12 +0100300
Jesse Barnes79e53942008-11-07 14:24:08 -0800301 return true;
302}
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);
Chris Wilsonfac5e232016-07-04 11:34:36 +0100308 struct drm_i915_private *dev_priv = to_i915(dev);
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) {
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100314 bool turn_off_dac = HAS_PCH_SPLIT(dev_priv);
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800315 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
Chris Wilsone1672d12016-06-30 15:32:49 +0100328 if (intel_wait_for_register(dev_priv,
329 crt->adpa_reg,
330 ADPA_CRT_HOTPLUG_FORCE_TRIGGER, 0,
331 1000))
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800332 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
Zhenyu Wang2c072452009-06-05 15:38:42 +0800333
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800334 if (turn_off_dac) {
Ville Syrjäläca54b812013-01-25 21:44:42 +0200335 I915_WRITE(crt->adpa_reg, save_adpa);
336 POSTING_READ(crt->adpa_reg);
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800337 }
Zhenyu Wanga4a6b902010-04-07 16:15:55 +0800338 }
339
Zhenyu Wang2c072452009-06-05 15:38:42 +0800340 /* Check the status to see if both blue and green are on now */
Ville Syrjäläca54b812013-01-25 21:44:42 +0200341 adpa = I915_READ(crt->adpa_reg);
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800342 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
Zhenyu Wang2c072452009-06-05 15:38:42 +0800343 ret = true;
344 else
345 ret = false;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800346 DRM_DEBUG_KMS("ironlake hotplug adpa=0x%x, result %d\n", adpa, ret);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800347
Zhenyu Wang2c072452009-06-05 15:38:42 +0800348 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800349}
350
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700351static bool valleyview_crt_detect_hotplug(struct drm_connector *connector)
352{
353 struct drm_device *dev = connector->dev;
Ville Syrjäläca54b812013-01-25 21:44:42 +0200354 struct intel_crt *crt = intel_attached_crt(connector);
Chris Wilsonfac5e232016-07-04 11:34:36 +0100355 struct drm_i915_private *dev_priv = to_i915(dev);
Lyudeb236d7c82016-06-21 17:03:43 -0400356 bool reenable_hpd;
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700357 u32 adpa;
358 bool ret;
359 u32 save_adpa;
360
Lyudeb236d7c82016-06-21 17:03:43 -0400361 /*
362 * Doing a force trigger causes a hpd interrupt to get sent, which can
363 * get us stuck in a loop if we're polling:
364 * - We enable power wells and reset the ADPA
365 * - output_poll_exec does force probe on VGA, triggering a hpd
366 * - HPD handler waits for poll to unlock dev->mode_config.mutex
367 * - output_poll_exec shuts off the ADPA, unlocks
368 * dev->mode_config.mutex
369 * - HPD handler runs, resets ADPA and brings us back to the start
370 *
371 * Just disable HPD interrupts here to prevent this
372 */
373 reenable_hpd = intel_hpd_disable(dev_priv, crt->base.hpd_pin);
374
Ville Syrjäläca54b812013-01-25 21:44:42 +0200375 save_adpa = adpa = I915_READ(crt->adpa_reg);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700376 DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa);
377
378 adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER;
379
Ville Syrjäläca54b812013-01-25 21:44:42 +0200380 I915_WRITE(crt->adpa_reg, adpa);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700381
Chris Wilsona522ae42016-06-30 15:32:50 +0100382 if (intel_wait_for_register(dev_priv,
383 crt->adpa_reg,
384 ADPA_CRT_HOTPLUG_FORCE_TRIGGER, 0,
385 1000)) {
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700386 DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER");
Ville Syrjäläca54b812013-01-25 21:44:42 +0200387 I915_WRITE(crt->adpa_reg, save_adpa);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700388 }
389
390 /* Check the status to see if both blue and green are on now */
Ville Syrjäläca54b812013-01-25 21:44:42 +0200391 adpa = I915_READ(crt->adpa_reg);
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700392 if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0)
393 ret = true;
394 else
395 ret = false;
396
397 DRM_DEBUG_KMS("valleyview hotplug adpa=0x%x, result %d\n", adpa, ret);
398
Lyudeb236d7c82016-06-21 17:03:43 -0400399 if (reenable_hpd)
400 intel_hpd_enable(dev_priv, crt->base.hpd_pin);
401
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700402 return ret;
403}
404
Jesse Barnes79e53942008-11-07 14:24:08 -0800405/**
406 * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect CRT presence.
407 *
408 * Not for i915G/i915GM
409 *
410 * \return true if CRT is connected.
411 * \return false if CRT is disconnected.
412 */
413static bool intel_crt_detect_hotplug(struct drm_connector *connector)
414{
415 struct drm_device *dev = connector->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100416 struct drm_i915_private *dev_priv = to_i915(dev);
Egbert Eich0706f172015-09-23 16:15:27 +0200417 u32 stat;
Adam Jackson7a772c42010-05-24 16:46:29 -0400418 bool ret = false;
Zhao Yakui771cb082009-03-03 18:07:52 +0800419 int i, tries = 0;
Zhenyu Wang2c072452009-06-05 15:38:42 +0800420
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100421 if (HAS_PCH_SPLIT(dev_priv))
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500422 return intel_ironlake_crt_detect_hotplug(connector);
Zhenyu Wang2c072452009-06-05 15:38:42 +0800423
Tvrtko Ursulin11a914c2016-10-13 11:03:08 +0100424 if (IS_VALLEYVIEW(dev_priv))
Jesse Barnes7d2c24e2012-06-15 11:55:15 -0700425 return valleyview_crt_detect_hotplug(connector);
426
Zhao Yakui771cb082009-03-03 18:07:52 +0800427 /*
428 * On 4 series desktop, CRT detect sequence need to be done twice
429 * to get a reliable result.
430 */
Jesse Barnes79e53942008-11-07 14:24:08 -0800431
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100432 if (IS_G4X(dev_priv) && !IS_GM45(dev_priv))
Zhao Yakui771cb082009-03-03 18:07:52 +0800433 tries = 2;
434 else
435 tries = 1;
Jesse Barnes79e53942008-11-07 14:24:08 -0800436
Zhao Yakui771cb082009-03-03 18:07:52 +0800437 for (i = 0; i < tries ; i++) {
Zhao Yakui771cb082009-03-03 18:07:52 +0800438 /* turn on the FORCE_DETECT */
Egbert Eich0706f172015-09-23 16:15:27 +0200439 i915_hotplug_interrupt_update(dev_priv,
440 CRT_HOTPLUG_FORCE_DETECT,
441 CRT_HOTPLUG_FORCE_DETECT);
Zhao Yakui771cb082009-03-03 18:07:52 +0800442 /* wait for FORCE_DETECT to go off */
Chris Wilsonfd3790d2016-06-30 15:32:51 +0100443 if (intel_wait_for_register(dev_priv, PORT_HOTPLUG_EN,
444 CRT_HOTPLUG_FORCE_DETECT, 0,
445 1000))
Chris Wilson79077312010-09-12 19:58:04 +0100446 DRM_DEBUG_KMS("timed out waiting for FORCE_DETECT to go off");
Zhao Yakui771cb082009-03-03 18:07:52 +0800447 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800448
Adam Jackson7a772c42010-05-24 16:46:29 -0400449 stat = I915_READ(PORT_HOTPLUG_STAT);
450 if ((stat & CRT_HOTPLUG_MONITOR_MASK) != CRT_HOTPLUG_MONITOR_NONE)
451 ret = true;
Jesse Barnes79e53942008-11-07 14:24:08 -0800452
Adam Jackson7a772c42010-05-24 16:46:29 -0400453 /* clear the interrupt we just generated, if any */
454 I915_WRITE(PORT_HOTPLUG_STAT, CRT_HOTPLUG_INT_STATUS);
455
Egbert Eich0706f172015-09-23 16:15:27 +0200456 i915_hotplug_interrupt_update(dev_priv, CRT_HOTPLUG_FORCE_DETECT, 0);
Adam Jackson7a772c42010-05-24 16:46:29 -0400457
458 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800459}
460
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300461static struct edid *intel_crt_get_edid(struct drm_connector *connector,
462 struct i2c_adapter *i2c)
463{
464 struct edid *edid;
465
466 edid = drm_get_edid(connector, i2c);
467
468 if (!edid && !intel_gmbus_is_forced_bit(i2c)) {
469 DRM_DEBUG_KMS("CRT GMBUS EDID read failed, retry using GPIO bit-banging\n");
470 intel_gmbus_force_bit(i2c, true);
471 edid = drm_get_edid(connector, i2c);
472 intel_gmbus_force_bit(i2c, false);
473 }
474
475 return edid;
476}
477
478/* local version of intel_ddc_get_modes() to use intel_crt_get_edid() */
479static int intel_crt_ddc_get_modes(struct drm_connector *connector,
480 struct i2c_adapter *adapter)
481{
482 struct edid *edid;
Jani Nikulaebda95a2012-10-19 14:51:51 +0300483 int ret;
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300484
485 edid = intel_crt_get_edid(connector, adapter);
486 if (!edid)
487 return 0;
488
Jani Nikulaebda95a2012-10-19 14:51:51 +0300489 ret = intel_connector_update_modes(connector, edid);
490 kfree(edid);
491
492 return ret;
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300493}
494
David Müllerf5afcd32011-01-06 12:29:32 +0000495static bool intel_crt_detect_ddc(struct drm_connector *connector)
Jesse Barnes79e53942008-11-07 14:24:08 -0800496{
David Müllerf5afcd32011-01-06 12:29:32 +0000497 struct intel_crt *crt = intel_attached_crt(connector);
Chris Wilsonfac5e232016-07-04 11:34:36 +0100498 struct drm_i915_private *dev_priv = to_i915(crt->base.base.dev);
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200499 struct edid *edid;
500 struct i2c_adapter *i2c;
Ander Conselvan de Oliveirac96b63a2017-01-20 16:28:42 +0200501 bool ret = false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800502
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200503 BUG_ON(crt->base.type != INTEL_OUTPUT_ANALOG);
Jesse Barnes79e53942008-11-07 14:24:08 -0800504
Rodrigo Vivi41aa3442013-05-09 20:03:18 -0300505 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->vbt.crt_ddc_pin);
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300506 edid = intel_crt_get_edid(connector, i2c);
David Müllerf5afcd32011-01-06 12:29:32 +0000507
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200508 if (edid) {
509 bool is_digital = edid->input & DRM_EDID_INPUT_DIGITAL;
510
David Müllerf5afcd32011-01-06 12:29:32 +0000511 /*
512 * This may be a DVI-I connector with a shared DDC
513 * link between analog and digital outputs, so we
514 * have to check the EDID input spec of the attached device.
515 */
David Müllerf5afcd32011-01-06 12:29:32 +0000516 if (!is_digital) {
517 DRM_DEBUG_KMS("CRT detected via DDC:0x50 [EDID]\n");
Ander Conselvan de Oliveirac96b63a2017-01-20 16:28:42 +0200518 ret = true;
519 } else {
520 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [EDID reports a digital panel]\n");
David Müllerf5afcd32011-01-06 12:29:32 +0000521 }
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200522 } else {
523 DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [no valid EDID found]\n");
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100524 }
525
Daniel Vettera2bd1f52012-07-11 12:31:52 +0200526 kfree(edid);
527
Ander Conselvan de Oliveirac96b63a2017-01-20 16:28:42 +0200528 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800529}
530
Ma Linge4a5d542009-05-26 11:31:00 +0800531static enum drm_connector_status
Maarten Lankhorstc8ecb2f2016-02-17 09:18:36 +0100532intel_crt_load_detect(struct intel_crt *crt, uint32_t pipe)
Ma Linge4a5d542009-05-26 11:31:00 +0800533{
Chris Wilson71731882011-04-19 23:10:58 +0100534 struct drm_device *dev = crt->base.base.dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100535 struct drm_i915_private *dev_priv = to_i915(dev);
Ma Linge4a5d542009-05-26 11:31:00 +0800536 uint32_t save_bclrpat;
537 uint32_t save_vtotal;
538 uint32_t vtotal, vactive;
539 uint32_t vsample;
540 uint32_t vblank, vblank_start, vblank_end;
541 uint32_t dsl;
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200542 i915_reg_t bclrpat_reg, vtotal_reg,
543 vblank_reg, vsync_reg, pipeconf_reg, pipe_dsl_reg;
Ma Linge4a5d542009-05-26 11:31:00 +0800544 uint8_t st00;
545 enum drm_connector_status status;
546
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100547 DRM_DEBUG_KMS("starting load-detect on CRT\n");
548
Jesse Barnes9db4a9c2011-02-07 12:26:52 -0800549 bclrpat_reg = BCLRPAT(pipe);
550 vtotal_reg = VTOTAL(pipe);
551 vblank_reg = VBLANK(pipe);
552 vsync_reg = VSYNC(pipe);
553 pipeconf_reg = PIPECONF(pipe);
554 pipe_dsl_reg = PIPEDSL(pipe);
Ma Linge4a5d542009-05-26 11:31:00 +0800555
556 save_bclrpat = I915_READ(bclrpat_reg);
557 save_vtotal = I915_READ(vtotal_reg);
558 vblank = I915_READ(vblank_reg);
559
560 vtotal = ((save_vtotal >> 16) & 0xfff) + 1;
561 vactive = (save_vtotal & 0x7ff) + 1;
562
563 vblank_start = (vblank & 0xfff) + 1;
564 vblank_end = ((vblank >> 16) & 0xfff) + 1;
565
566 /* Set the border color to purple. */
567 I915_WRITE(bclrpat_reg, 0x500050);
568
Tvrtko Ursulin5db94012016-10-13 11:03:10 +0100569 if (!IS_GEN2(dev_priv)) {
Ma Linge4a5d542009-05-26 11:31:00 +0800570 uint32_t pipeconf = I915_READ(pipeconf_reg);
571 I915_WRITE(pipeconf_reg, pipeconf | PIPECONF_FORCE_BORDER);
Chris Wilson19c55da2010-08-09 14:50:53 +0100572 POSTING_READ(pipeconf_reg);
Ma Linge4a5d542009-05-26 11:31:00 +0800573 /* Wait for next Vblank to substitue
574 * border color for Color info */
Ville Syrjälä0f0f74b2016-10-31 22:37:06 +0200575 intel_wait_for_vblank(dev_priv, pipe);
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200576 st00 = I915_READ8(_VGA_MSR_WRITE);
Ma Linge4a5d542009-05-26 11:31:00 +0800577 status = ((st00 & (1 << 4)) != 0) ?
578 connector_status_connected :
579 connector_status_disconnected;
580
581 I915_WRITE(pipeconf_reg, pipeconf);
582 } else {
583 bool restore_vblank = false;
584 int count, detect;
585
586 /*
587 * If there isn't any border, add some.
588 * Yes, this will flicker
589 */
590 if (vblank_start <= vactive && vblank_end >= vtotal) {
591 uint32_t vsync = I915_READ(vsync_reg);
592 uint32_t vsync_start = (vsync & 0xffff) + 1;
593
594 vblank_start = vsync_start;
595 I915_WRITE(vblank_reg,
596 (vblank_start - 1) |
597 ((vblank_end - 1) << 16));
598 restore_vblank = true;
599 }
600 /* sample in the vertical border, selecting the larger one */
601 if (vblank_start - vactive >= vtotal - vblank_end)
602 vsample = (vblank_start + vactive) >> 1;
603 else
604 vsample = (vtotal + vblank_end) >> 1;
605
606 /*
607 * Wait for the border to be displayed
608 */
609 while (I915_READ(pipe_dsl_reg) >= vactive)
610 ;
611 while ((dsl = I915_READ(pipe_dsl_reg)) <= vsample)
612 ;
613 /*
614 * Watch ST00 for an entire scanline
615 */
616 detect = 0;
617 count = 0;
618 do {
619 count++;
620 /* Read the ST00 VGA status register */
Ville Syrjäläf0f59a02015-11-18 15:33:26 +0200621 st00 = I915_READ8(_VGA_MSR_WRITE);
Ma Linge4a5d542009-05-26 11:31:00 +0800622 if (st00 & (1 << 4))
623 detect++;
624 } while ((I915_READ(pipe_dsl_reg) == dsl));
625
626 /* restore vblank if necessary */
627 if (restore_vblank)
628 I915_WRITE(vblank_reg, vblank);
629 /*
630 * If more than 3/4 of the scanline detected a monitor,
631 * then it is assumed to be present. This works even on i830,
632 * where there isn't any way to force the border color across
633 * the screen
634 */
635 status = detect * 4 > count * 3 ?
636 connector_status_connected :
637 connector_status_disconnected;
638 }
639
640 /* Restore previous settings */
641 I915_WRITE(bclrpat_reg, save_bclrpat);
642
643 return status;
644}
645
Ville Syrjäläf0dfb1a2016-09-26 12:20:45 +0300646static int intel_spurious_crt_detect_dmi_callback(const struct dmi_system_id *id)
647{
648 DRM_DEBUG_DRIVER("Skipping CRT detection for %s\n", id->ident);
649 return 1;
650}
651
652static const struct dmi_system_id intel_spurious_crt_detect[] = {
653 {
654 .callback = intel_spurious_crt_detect_dmi_callback,
655 .ident = "ACER ZGB",
656 .matches = {
657 DMI_MATCH(DMI_SYS_VENDOR, "ACER"),
658 DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"),
659 },
660 },
Ville Syrjälä69a44b12016-09-26 12:20:46 +0300661 {
662 .callback = intel_spurious_crt_detect_dmi_callback,
663 .ident = "Intel DZ77BH-55K",
664 .matches = {
665 DMI_MATCH(DMI_BOARD_VENDOR, "Intel Corporation"),
666 DMI_MATCH(DMI_BOARD_NAME, "DZ77BH-55K"),
667 },
668 },
Ville Syrjäläf0dfb1a2016-09-26 12:20:45 +0300669 { }
670};
671
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +0200672static int
673intel_crt_detect(struct drm_connector *connector,
674 struct drm_modeset_acquire_ctx *ctx,
675 bool force)
Jesse Barnes79e53942008-11-07 14:24:08 -0800676{
Tvrtko Ursulin66478472016-11-16 08:55:40 +0000677 struct drm_i915_private *dev_priv = to_i915(connector->dev);
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000678 struct intel_crt *crt = intel_attached_crt(connector);
Imre Deak671dedd2014-03-05 16:20:53 +0200679 struct intel_encoder *intel_encoder = &crt->base;
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +0200680 int status, ret;
Daniel Vettere95c8432012-04-20 21:03:36 +0200681 struct intel_load_detect_pipe tmp;
Jesse Barnes79e53942008-11-07 14:24:08 -0800682
Chris Wilson164c8592013-07-20 20:27:08 +0100683 DRM_DEBUG_KMS("[CONNECTOR:%d:%s] force=%d\n",
Jani Nikulac23cc412014-06-03 14:56:17 +0300684 connector->base.id, connector->name,
Chris Wilson164c8592013-07-20 20:27:08 +0100685 force);
686
Ville Syrjäläf0dfb1a2016-09-26 12:20:45 +0300687 /* Skip machines without VGA that falsely report hotplug events */
688 if (dmi_check_system(intel_spurious_crt_detect))
689 return connector_status_disconnected;
690
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +0200691 intel_display_power_get(dev_priv, intel_encoder->power_domain);
Imre Deak671dedd2014-03-05 16:20:53 +0200692
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +0000693 if (I915_HAS_HOTPLUG(dev_priv)) {
Daniel Vetteraaa37732012-06-16 15:30:32 +0200694 /* We can not rely on the HPD pin always being correctly wired
695 * up, for example many KVM do not pass it through, and so
696 * only trust an assertion that the monitor is connected.
697 */
Chris Wilson6ec3d0c2010-09-22 18:17:01 +0100698 if (intel_crt_detect_hotplug(connector)) {
699 DRM_DEBUG_KMS("CRT detected via hotplug\n");
Paulo Zanonic19a0df2014-02-21 13:52:22 -0300700 status = connector_status_connected;
701 goto out;
Daniel Vetteraaa37732012-06-16 15:30:32 +0200702 } else
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800703 DRM_DEBUG_KMS("CRT not detected via hotplug\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800704 }
705
Paulo Zanonic19a0df2014-02-21 13:52:22 -0300706 if (intel_crt_detect_ddc(connector)) {
707 status = connector_status_connected;
708 goto out;
709 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800710
Daniel Vetteraaa37732012-06-16 15:30:32 +0200711 /* Load detection is broken on HPD capable machines. Whoever wants a
712 * broken monitor (without edid) to work behind a broken kvm (that fails
713 * to have the right resistors for HP detection) needs to fix this up.
714 * For now just bail out. */
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +0000715 if (I915_HAS_HOTPLUG(dev_priv) && !i915.load_detect_test) {
Paulo Zanonic19a0df2014-02-21 13:52:22 -0300716 status = connector_status_disconnected;
717 goto out;
718 }
Daniel Vetteraaa37732012-06-16 15:30:32 +0200719
Paulo Zanonic19a0df2014-02-21 13:52:22 -0300720 if (!force) {
721 status = connector->status;
722 goto out;
723 }
Chris Wilson7b334fc2010-09-09 23:51:02 +0100724
Ma Linge4a5d542009-05-26 11:31:00 +0800725 /* for pre-945g platforms use load detect */
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +0200726 ret = intel_get_load_detect_pipe(connector, NULL, &tmp, ctx);
727 if (ret > 0) {
Daniel Vettere95c8432012-04-20 21:03:36 +0200728 if (intel_crt_detect_ddc(connector))
729 status = connector_status_connected;
Tvrtko Ursulin66478472016-11-16 08:55:40 +0000730 else if (INTEL_GEN(dev_priv) < 4)
Maarten Lankhorstc8ecb2f2016-02-17 09:18:36 +0100731 status = intel_crt_load_detect(crt,
732 to_intel_crtc(connector->state->crtc)->pipe);
Maarten Lankhorst32fff612016-03-01 17:04:01 +0100733 else if (i915.load_detect_test)
734 status = connector_status_disconnected;
Daniel Vetter5bedeb22015-03-03 18:03:47 +0100735 else
736 status = connector_status_unknown;
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +0200737 intel_release_load_detect_pipe(connector, &tmp, ctx);
738 } else if (ret == 0)
Daniel Vettere95c8432012-04-20 21:03:36 +0200739 status = connector_status_unknown;
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +0200740 else if (ret < 0)
741 status = ret;
Ville Syrjälä208bf9f2014-08-11 13:15:35 +0300742
Paulo Zanonic19a0df2014-02-21 13:52:22 -0300743out:
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +0200744 intel_display_power_put(dev_priv, intel_encoder->power_domain);
Ma Linge4a5d542009-05-26 11:31:00 +0800745 return status;
Jesse Barnes79e53942008-11-07 14:24:08 -0800746}
747
748static void intel_crt_destroy(struct drm_connector *connector)
749{
Jesse Barnes79e53942008-11-07 14:24:08 -0800750 drm_connector_cleanup(connector);
751 kfree(connector);
752}
753
754static int intel_crt_get_modes(struct drm_connector *connector)
755{
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800756 struct drm_device *dev = connector->dev;
Chris Wilsonfac5e232016-07-04 11:34:36 +0100757 struct drm_i915_private *dev_priv = to_i915(dev);
Imre Deak671dedd2014-03-05 16:20:53 +0200758 struct intel_crt *crt = intel_attached_crt(connector);
759 struct intel_encoder *intel_encoder = &crt->base;
Chris Wilson890f3352010-09-14 16:46:59 +0100760 int ret;
Daniel Kurtz3bd7d902012-03-28 02:36:14 +0800761 struct i2c_adapter *i2c;
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800762
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +0200763 intel_display_power_get(dev_priv, intel_encoder->power_domain);
Imre Deak671dedd2014-03-05 16:20:53 +0200764
Rodrigo Vivi41aa3442013-05-09 20:03:18 -0300765 i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->vbt.crt_ddc_pin);
Jani Nikulaf1a2f5b2012-08-13 13:22:35 +0300766 ret = intel_crt_ddc_get_modes(connector, i2c);
Tvrtko Ursulin9beb5fe2016-10-13 11:03:06 +0100767 if (ret || !IS_G4X(dev_priv))
Imre Deak671dedd2014-03-05 16:20:53 +0200768 goto out;
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800769
ling.ma@intel.com8e4d36b2009-06-30 11:35:34 +0800770 /* Try to probe digital port for output in DVI-I -> VGA mode. */
Jani Nikula988c7012015-03-27 00:20:19 +0200771 i2c = intel_gmbus_get_adapter(dev_priv, GMBUS_PIN_DPB);
Imre Deak671dedd2014-03-05 16:20:53 +0200772 ret = intel_crt_ddc_get_modes(connector, i2c);
773
774out:
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +0200775 intel_display_power_put(dev_priv, intel_encoder->power_domain);
Imre Deak671dedd2014-03-05 16:20:53 +0200776
777 return ret;
Jesse Barnes79e53942008-11-07 14:24:08 -0800778}
779
Lyude9504a892016-06-21 17:03:42 -0400780void intel_crt_reset(struct drm_encoder *encoder)
Chris Wilsonf3269052011-01-24 15:17:08 +0000781{
Tvrtko Ursulin66478472016-11-16 08:55:40 +0000782 struct drm_i915_private *dev_priv = to_i915(encoder->dev);
Lyude28cf71c2016-06-21 17:03:41 -0400783 struct intel_crt *crt = intel_encoder_to_crt(to_intel_encoder(encoder));
Chris Wilsonf3269052011-01-24 15:17:08 +0000784
Tvrtko Ursulin66478472016-11-16 08:55:40 +0000785 if (INTEL_GEN(dev_priv) >= 5) {
Daniel Vetter2e938892012-10-11 20:08:24 +0200786 u32 adpa;
787
Ville Syrjäläca54b812013-01-25 21:44:42 +0200788 adpa = I915_READ(crt->adpa_reg);
Daniel Vetter2e938892012-10-11 20:08:24 +0200789 adpa &= ~ADPA_CRT_HOTPLUG_MASK;
790 adpa |= ADPA_HOTPLUG_BITS;
Ville Syrjäläca54b812013-01-25 21:44:42 +0200791 I915_WRITE(crt->adpa_reg, adpa);
792 POSTING_READ(crt->adpa_reg);
Daniel Vetter2e938892012-10-11 20:08:24 +0200793
Ville Syrjälä0039a4b32014-10-16 20:52:30 +0300794 DRM_DEBUG_KMS("crt adpa set to 0x%x\n", adpa);
Chris Wilsonf3269052011-01-24 15:17:08 +0000795 crt->force_hotplug_required = 1;
Daniel Vetter2e938892012-10-11 20:08:24 +0200796 }
797
Chris Wilsonf3269052011-01-24 15:17:08 +0000798}
799
Jesse Barnes79e53942008-11-07 14:24:08 -0800800/*
801 * Routines for controlling stuff on the analog port
802 */
803
Jesse Barnes79e53942008-11-07 14:24:08 -0800804static const struct drm_connector_funcs intel_crt_connector_funcs = {
Jesse Barnes79e53942008-11-07 14:24:08 -0800805 .fill_modes = drm_helper_probe_single_connector_modes,
Chris Wilson1ebaa0b2016-06-24 14:00:15 +0100806 .late_register = intel_connector_register,
Chris Wilsonc191eca2016-06-17 11:40:33 +0100807 .early_unregister = intel_connector_unregister,
Jesse Barnes79e53942008-11-07 14:24:08 -0800808 .destroy = intel_crt_destroy,
Matt Roperc6f95f22015-01-22 16:50:32 -0800809 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
Ander Conselvan de Oliveira98969722015-03-20 16:18:06 +0200810 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
Jesse Barnes79e53942008-11-07 14:24:08 -0800811};
812
813static const struct drm_connector_helper_funcs intel_crt_connector_helper_funcs = {
Maarten Lankhorst6c5ed5a2017-04-06 20:55:20 +0200814 .detect_ctx = intel_crt_detect,
Jesse Barnes79e53942008-11-07 14:24:08 -0800815 .mode_valid = intel_crt_mode_valid,
816 .get_modes = intel_crt_get_modes,
Jesse Barnes79e53942008-11-07 14:24:08 -0800817};
818
Jesse Barnes79e53942008-11-07 14:24:08 -0800819static const struct drm_encoder_funcs intel_crt_enc_funcs = {
Lyude28cf71c2016-06-21 17:03:41 -0400820 .reset = intel_crt_reset,
Chris Wilsonea5b2132010-08-04 13:50:23 +0100821 .destroy = intel_encoder_destroy,
Jesse Barnes79e53942008-11-07 14:24:08 -0800822};
823
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +0200824void intel_crt_init(struct drm_i915_private *dev_priv)
Jesse Barnes79e53942008-11-07 14:24:08 -0800825{
826 struct drm_connector *connector;
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000827 struct intel_crt *crt;
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800828 struct intel_connector *intel_connector;
Ville Syrjälä6c03a6b2015-11-20 22:35:41 +0200829 i915_reg_t adpa_reg;
830 u32 adpa;
Jesse Barnes79e53942008-11-07 14:24:08 -0800831
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100832 if (HAS_PCH_SPLIT(dev_priv))
Ville Syrjälä6c03a6b2015-11-20 22:35:41 +0200833 adpa_reg = PCH_ADPA;
Tvrtko Ursulin11a914c2016-10-13 11:03:08 +0100834 else if (IS_VALLEYVIEW(dev_priv))
Ville Syrjälä6c03a6b2015-11-20 22:35:41 +0200835 adpa_reg = VLV_ADPA;
836 else
837 adpa_reg = ADPA;
838
839 adpa = I915_READ(adpa_reg);
840 if ((adpa & ADPA_DAC_ENABLE) == 0) {
841 /*
842 * On some machines (some IVB at least) CRT can be
843 * fused off, but there's no known fuse bit to
844 * indicate that. On these machine the ADPA register
845 * works normally, except the DAC enable bit won't
846 * take. So the only way to tell is attempt to enable
847 * it and see what happens.
848 */
849 I915_WRITE(adpa_reg, adpa | ADPA_DAC_ENABLE |
850 ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE);
851 if ((I915_READ(adpa_reg) & ADPA_DAC_ENABLE) == 0)
852 return;
853 I915_WRITE(adpa_reg, adpa);
854 }
855
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000856 crt = kzalloc(sizeof(struct intel_crt), GFP_KERNEL);
857 if (!crt)
Jesse Barnes79e53942008-11-07 14:24:08 -0800858 return;
859
Ander Conselvan de Oliveira9bdbd0b2015-04-10 10:59:10 +0300860 intel_connector = intel_connector_alloc();
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800861 if (!intel_connector) {
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000862 kfree(crt);
Zhenyu Wang454c1ca2010-03-29 15:53:23 +0800863 return;
864 }
865
866 connector = &intel_connector->base;
Adam Jackson637f44d2013-03-25 15:40:05 -0400867 crt->connector = intel_connector;
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +0200868 drm_connector_init(&dev_priv->drm, &intel_connector->base,
Jesse Barnes79e53942008-11-07 14:24:08 -0800869 &intel_crt_connector_funcs, DRM_MODE_CONNECTOR_VGA);
870
Ander Conselvan de Oliveirac39055b2016-11-23 16:21:44 +0200871 drm_encoder_init(&dev_priv->drm, &crt->base.base, &intel_crt_enc_funcs,
Ville Syrjälä580d8ed2016-05-27 20:59:24 +0300872 DRM_MODE_ENCODER_DAC, "CRT");
Jesse Barnes79e53942008-11-07 14:24:08 -0800873
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000874 intel_connector_attach_encoder(intel_connector, &crt->base);
Jesse Barnes79e53942008-11-07 14:24:08 -0800875
Chris Wilsonc9a1c4c2010-11-16 10:58:37 +0000876 crt->base.type = INTEL_OUTPUT_ANALOG;
Ville Syrjälä301ea742014-03-03 16:15:30 +0200877 crt->base.cloneable = (1 << INTEL_OUTPUT_DVO) | (1 << INTEL_OUTPUT_HDMI);
Tvrtko Ursulin50a0bc92016-10-13 11:02:58 +0100878 if (IS_I830(dev_priv))
Eugeni Dodonov59c859d2012-05-09 15:37:19 -0300879 crt->base.crtc_mask = (1 << 0);
880 else
Keith Packard08268742012-08-13 21:34:45 -0700881 crt->base.crtc_mask = (1 << 0) | (1 << 1) | (1 << 2);
Eugeni Dodonov59c859d2012-05-09 15:37:19 -0300882
Tvrtko Ursulin5db94012016-10-13 11:03:10 +0100883 if (IS_GEN2(dev_priv))
Daniel Vetterdbb02572012-01-28 14:49:23 +0100884 connector->interlace_allowed = 0;
885 else
886 connector->interlace_allowed = 1;
Jesse Barnes79e53942008-11-07 14:24:08 -0800887 connector->doublescan_allowed = 0;
888
Ville Syrjälä6c03a6b2015-11-20 22:35:41 +0200889 crt->adpa_reg = adpa_reg;
Jesse Barnesdf0323c2012-04-17 15:06:33 -0700890
Ander Conselvan de Oliveira79f255a2017-02-22 08:34:27 +0200891 crt->base.power_domain = POWER_DOMAIN_PORT_CRT;
892
Daniel Vetter5bfe2ac2013-03-27 00:44:55 +0100893 crt->base.compute_config = intel_crt_compute_config;
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100894 if (HAS_PCH_SPLIT(dev_priv)) {
Ville Syrjälä1ea56e22015-05-05 17:17:37 +0300895 crt->base.disable = pch_disable_crt;
896 crt->base.post_disable = pch_post_disable_crt;
897 } else {
898 crt->base.disable = intel_disable_crt;
899 }
Daniel Vetter21246042012-07-01 14:58:27 +0200900 crt->base.enable = intel_enable_crt;
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +0000901 if (I915_HAS_HOTPLUG(dev_priv) &&
Ville Syrjäläf0dfb1a2016-09-26 12:20:45 +0300902 !dmi_check_system(intel_spurious_crt_detect))
Egbert Eich1d843f92013-02-25 12:06:49 -0500903 crt->base.hpd_pin = HPD_CRT;
Tvrtko Ursulin4f8036a2016-10-13 11:02:52 +0100904 if (HAS_DDI(dev_priv)) {
Pandiyan, Dhinakaran03cdc1d2016-09-19 18:24:38 -0700905 crt->base.port = PORT_E;
Ville Syrjäläa2985792013-11-07 19:25:59 +0200906 crt->base.get_config = hsw_crt_get_config;
Paulo Zanoni4eda01b2012-10-31 18:12:21 -0200907 crt->base.get_hw_state = intel_ddi_get_hw_state;
Maarten Lankhorstb7076542016-08-23 16:18:08 +0200908 crt->base.post_disable = hsw_post_disable_crt;
Ville Syrjäläa2985792013-11-07 19:25:59 +0200909 } else {
Pandiyan, Dhinakaran03cdc1d2016-09-19 18:24:38 -0700910 crt->base.port = PORT_NONE;
Ville Syrjäläa2985792013-11-07 19:25:59 +0200911 crt->base.get_config = intel_crt_get_config;
Paulo Zanoni4eda01b2012-10-31 18:12:21 -0200912 crt->base.get_hw_state = intel_crt_get_hw_state;
Ville Syrjäläa2985792013-11-07 19:25:59 +0200913 }
Daniel Vettere403fc92012-07-02 13:41:21 +0200914 intel_connector->get_hw_state = intel_connector_get_hw_state;
Daniel Vetter21246042012-07-01 14:58:27 +0200915
Jesse Barnes79e53942008-11-07 14:24:08 -0800916 drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs);
917
Tvrtko Ursulin56b857a2016-11-07 09:29:20 +0000918 if (!I915_HAS_HOTPLUG(dev_priv))
Egbert Eich821450c2013-04-16 13:36:55 +0200919 intel_connector->polled = DRM_CONNECTOR_POLL_CONNECT;
Dave Airlieeb1f8e42010-05-07 06:42:51 +0000920
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800921 /*
922 * Configure the automatic hotplug detection stuff
923 */
924 crt->force_hotplug_required = 0;
Keith Packarde7dbb2f2010-11-16 16:03:53 +0800925
Paulo Zanoni68d18ad2012-12-01 12:04:26 -0200926 /*
Damien Lespiau3e683202012-12-11 18:48:29 +0000927 * TODO: find a proper way to discover whether we need to set the the
928 * polarity and link reversal bits or not, instead of relying on the
929 * BIOS.
Paulo Zanoni68d18ad2012-12-01 12:04:26 -0200930 */
Tvrtko Ursulin6e266952016-10-13 11:02:53 +0100931 if (HAS_PCH_LPT(dev_priv)) {
Damien Lespiau3e683202012-12-11 18:48:29 +0000932 u32 fdi_config = FDI_RX_POLARITY_REVERSED_LPT |
933 FDI_RX_LINK_REVERSAL_OVERRIDE;
934
Ville Syrjäläeede3b52015-09-18 20:03:30 +0300935 dev_priv->fdi_rx_config = I915_READ(FDI_RX_CTL(PIPE_A)) & fdi_config;
Damien Lespiau3e683202012-12-11 18:48:29 +0000936 }
Daniel Vetter754970e2014-01-16 22:28:44 +0100937
Lyude28cf71c2016-06-21 17:03:41 -0400938 intel_crt_reset(&crt->base.base);
Jesse Barnes79e53942008-11-07 14:24:08 -0800939}