Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2006-2007 Intel Corporation |
| 3 | * |
| 4 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 5 | * copy of this software and associated documentation files (the "Software"), |
| 6 | * to deal in the Software without restriction, including without limitation |
| 7 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 8 | * and/or sell copies of the Software, and to permit persons to whom the |
| 9 | * Software is furnished to do so, subject to the following conditions: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice (including the next |
| 12 | * paragraph) shall be included in all copies or substantial portions of the |
| 13 | * Software. |
| 14 | * |
| 15 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 16 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 17 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 18 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 19 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 20 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 21 | * DEALINGS IN THE SOFTWARE. |
| 22 | * |
| 23 | * Authors: |
| 24 | * Eric Anholt <eric@anholt.net> |
| 25 | */ |
| 26 | |
Duncan Laurie | 8ca4013 | 2011-10-25 15:42:21 -0700 | [diff] [blame] | 27 | #include <linux/dmi.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 28 | #include <linux/i2c.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 30 | #include <drm/drmP.h> |
| 31 | #include <drm/drm_crtc.h> |
| 32 | #include <drm/drm_crtc_helper.h> |
| 33 | #include <drm/drm_edid.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 34 | #include "intel_drv.h" |
David Howells | 760285e | 2012-10-02 18:01:07 +0100 | [diff] [blame] | 35 | #include <drm/i915_drm.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 36 | #include "i915_drv.h" |
| 37 | |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 38 | /* Here's the desired hotplug mode */ |
| 39 | #define ADPA_HOTPLUG_BITS (ADPA_CRT_HOTPLUG_PERIOD_128 | \ |
| 40 | ADPA_CRT_HOTPLUG_WARMUP_10MS | \ |
| 41 | ADPA_CRT_HOTPLUG_SAMPLE_4S | \ |
| 42 | ADPA_CRT_HOTPLUG_VOLTAGE_50 | \ |
| 43 | ADPA_CRT_HOTPLUG_VOLREF_325MV | \ |
| 44 | ADPA_CRT_HOTPLUG_ENABLE) |
| 45 | |
Chris Wilson | c9a1c4c | 2010-11-16 10:58:37 +0000 | [diff] [blame] | 46 | struct intel_crt { |
| 47 | struct intel_encoder base; |
Adam Jackson | 637f44d | 2013-03-25 15:40:05 -0400 | [diff] [blame] | 48 | /* DPMS state is stored in the connector, which we need in the |
| 49 | * encoder's enable/disable callbacks */ |
| 50 | struct intel_connector *connector; |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 51 | bool force_hotplug_required; |
Daniel Vetter | 540a895 | 2012-07-11 16:27:57 +0200 | [diff] [blame] | 52 | u32 adpa_reg; |
Chris Wilson | c9a1c4c | 2010-11-16 10:58:37 +0000 | [diff] [blame] | 53 | }; |
| 54 | |
Daniel Vetter | 540a895 | 2012-07-11 16:27:57 +0200 | [diff] [blame] | 55 | static struct intel_crt *intel_encoder_to_crt(struct intel_encoder *encoder) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 56 | { |
Daniel Vetter | 540a895 | 2012-07-11 16:27:57 +0200 | [diff] [blame] | 57 | return container_of(encoder, struct intel_crt, base); |
Jesse Barnes | df0323c | 2012-04-17 15:06:33 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Daniel Vetter | eebe6f0 | 2013-07-21 21:37:03 +0200 | [diff] [blame] | 60 | static struct intel_crt *intel_attached_crt(struct drm_connector *connector) |
| 61 | { |
| 62 | return intel_encoder_to_crt(intel_attached_encoder(connector)); |
| 63 | } |
| 64 | |
Daniel Vetter | e403fc9 | 2012-07-02 13:41:21 +0200 | [diff] [blame] | 65 | static bool intel_crt_get_hw_state(struct intel_encoder *encoder, |
| 66 | enum pipe *pipe) |
Jesse Barnes | df0323c | 2012-04-17 15:06:33 -0700 | [diff] [blame] | 67 | { |
Daniel Vetter | e403fc9 | 2012-07-02 13:41:21 +0200 | [diff] [blame] | 68 | struct drm_device *dev = encoder->base.dev; |
Jesse Barnes | df0323c | 2012-04-17 15:06:33 -0700 | [diff] [blame] | 69 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | e403fc9 | 2012-07-02 13:41:21 +0200 | [diff] [blame] | 70 | struct intel_crt *crt = intel_encoder_to_crt(encoder); |
Imre Deak | 6d129be | 2014-03-05 16:20:54 +0200 | [diff] [blame] | 71 | enum intel_display_power_domain power_domain; |
Daniel Vetter | e403fc9 | 2012-07-02 13:41:21 +0200 | [diff] [blame] | 72 | u32 tmp; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 73 | |
Imre Deak | 6d129be | 2014-03-05 16:20:54 +0200 | [diff] [blame] | 74 | power_domain = intel_display_port_power_domain(encoder); |
| 75 | if (!intel_display_power_enabled(dev_priv, power_domain)) |
| 76 | return false; |
| 77 | |
Daniel Vetter | e403fc9 | 2012-07-02 13:41:21 +0200 | [diff] [blame] | 78 | tmp = I915_READ(crt->adpa_reg); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 79 | |
Daniel Vetter | e403fc9 | 2012-07-02 13:41:21 +0200 | [diff] [blame] | 80 | if (!(tmp & ADPA_DAC_ENABLE)) |
| 81 | return false; |
Jesse Barnes | df0323c | 2012-04-17 15:06:33 -0700 | [diff] [blame] | 82 | |
Daniel Vetter | e403fc9 | 2012-07-02 13:41:21 +0200 | [diff] [blame] | 83 | if (HAS_PCH_CPT(dev)) |
| 84 | *pipe = PORT_TO_PIPE_CPT(tmp); |
| 85 | else |
| 86 | *pipe = PORT_TO_PIPE(tmp); |
| 87 | |
| 88 | return true; |
Jesse Barnes | df0323c | 2012-04-17 15:06:33 -0700 | [diff] [blame] | 89 | } |
| 90 | |
Ville Syrjälä | 6801c18 | 2013-09-24 14:24:05 +0300 | [diff] [blame] | 91 | static unsigned int intel_crt_get_flags(struct intel_encoder *encoder) |
Jesse Barnes | 045ac3b | 2013-05-14 17:08:26 -0700 | [diff] [blame] | 92 | { |
| 93 | struct drm_i915_private *dev_priv = encoder->base.dev->dev_private; |
| 94 | struct intel_crt *crt = intel_encoder_to_crt(encoder); |
| 95 | u32 tmp, flags = 0; |
| 96 | |
| 97 | tmp = I915_READ(crt->adpa_reg); |
| 98 | |
| 99 | if (tmp & ADPA_HSYNC_ACTIVE_HIGH) |
| 100 | flags |= DRM_MODE_FLAG_PHSYNC; |
| 101 | else |
| 102 | flags |= DRM_MODE_FLAG_NHSYNC; |
| 103 | |
| 104 | if (tmp & ADPA_VSYNC_ACTIVE_HIGH) |
| 105 | flags |= DRM_MODE_FLAG_PVSYNC; |
| 106 | else |
| 107 | flags |= DRM_MODE_FLAG_NVSYNC; |
| 108 | |
Ville Syrjälä | 6801c18 | 2013-09-24 14:24:05 +0300 | [diff] [blame] | 109 | return flags; |
| 110 | } |
| 111 | |
| 112 | static void intel_crt_get_config(struct intel_encoder *encoder, |
| 113 | struct intel_crtc_config *pipe_config) |
| 114 | { |
| 115 | struct drm_device *dev = encoder->base.dev; |
| 116 | int dotclock; |
| 117 | |
| 118 | pipe_config->adjusted_mode.flags |= intel_crt_get_flags(encoder); |
Ville Syrjälä | 18442d0 | 2013-09-13 16:00:08 +0300 | [diff] [blame] | 119 | |
| 120 | dotclock = pipe_config->port_clock; |
| 121 | |
Ville Syrjälä | 6801c18 | 2013-09-24 14:24:05 +0300 | [diff] [blame] | 122 | if (HAS_PCH_SPLIT(dev)) |
Ville Syrjälä | 18442d0 | 2013-09-13 16:00:08 +0300 | [diff] [blame] | 123 | ironlake_check_encoder_dotclock(pipe_config, dotclock); |
| 124 | |
Damien Lespiau | 241bfc3 | 2013-09-25 16:45:37 +0100 | [diff] [blame] | 125 | pipe_config->adjusted_mode.crtc_clock = dotclock; |
Jesse Barnes | 045ac3b | 2013-05-14 17:08:26 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Ville Syrjälä | 6801c18 | 2013-09-24 14:24:05 +0300 | [diff] [blame] | 128 | static void hsw_crt_get_config(struct intel_encoder *encoder, |
| 129 | struct intel_crtc_config *pipe_config) |
| 130 | { |
| 131 | intel_ddi_get_config(encoder, pipe_config); |
| 132 | |
| 133 | pipe_config->adjusted_mode.flags &= ~(DRM_MODE_FLAG_PHSYNC | |
| 134 | DRM_MODE_FLAG_NHSYNC | |
| 135 | DRM_MODE_FLAG_PVSYNC | |
| 136 | DRM_MODE_FLAG_NVSYNC); |
| 137 | pipe_config->adjusted_mode.flags |= intel_crt_get_flags(encoder); |
| 138 | } |
| 139 | |
Daniel Vetter | b2cabb0 | 2012-07-01 22:42:24 +0200 | [diff] [blame] | 140 | /* Note: The caller is required to filter out dpms modes not supported by the |
| 141 | * platform. */ |
| 142 | static void intel_crt_set_dpms(struct intel_encoder *encoder, int mode) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 143 | { |
Daniel Vetter | b2cabb0 | 2012-07-01 22:42:24 +0200 | [diff] [blame] | 144 | struct drm_device *dev = encoder->base.dev; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 145 | struct drm_i915_private *dev_priv = dev->dev_private; |
Daniel Vetter | b2cabb0 | 2012-07-01 22:42:24 +0200 | [diff] [blame] | 146 | struct intel_crt *crt = intel_encoder_to_crt(encoder); |
Daniel Vetter | 894ed1e | 2014-04-24 23:54:44 +0200 | [diff] [blame^] | 147 | struct intel_crtc *crtc = to_intel_crtc(encoder->base.crtc); |
| 148 | struct drm_display_mode *adjusted_mode = &crtc->config.adjusted_mode; |
| 149 | u32 adpa; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 150 | |
Daniel Vetter | 894ed1e | 2014-04-24 23:54:44 +0200 | [diff] [blame^] | 151 | if (INTEL_INFO(dev)->gen >= 5) |
| 152 | adpa = ADPA_HOTPLUG_BITS; |
| 153 | else |
| 154 | adpa = 0; |
| 155 | |
| 156 | if (adjusted_mode->flags & DRM_MODE_FLAG_PHSYNC) |
| 157 | adpa |= ADPA_HSYNC_ACTIVE_HIGH; |
| 158 | if (adjusted_mode->flags & DRM_MODE_FLAG_PVSYNC) |
| 159 | adpa |= ADPA_VSYNC_ACTIVE_HIGH; |
| 160 | |
| 161 | /* For CPT allow 3 pipe config, for others just use A or B */ |
| 162 | if (HAS_PCH_LPT(dev)) |
| 163 | ; /* Those bits don't exist here */ |
| 164 | else if (HAS_PCH_CPT(dev)) |
| 165 | adpa |= PORT_TRANS_SEL_CPT(crtc->pipe); |
| 166 | else if (crtc->pipe == 0) |
| 167 | adpa |= ADPA_PIPE_A_SELECT; |
| 168 | else |
| 169 | adpa |= ADPA_PIPE_B_SELECT; |
| 170 | |
| 171 | if (!HAS_PCH_SPLIT(dev)) |
| 172 | I915_WRITE(BCLRPAT(crtc->pipe), 0); |
Jesse Barnes | bd9e841 | 2012-06-15 11:55:18 -0700 | [diff] [blame] | 173 | |
Akshay Joshi | 0206e35 | 2011-08-16 15:34:10 -0400 | [diff] [blame] | 174 | switch (mode) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 175 | case DRM_MODE_DPMS_ON: |
Daniel Vetter | 894ed1e | 2014-04-24 23:54:44 +0200 | [diff] [blame^] | 176 | adpa |= ADPA_DAC_ENABLE; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 177 | break; |
| 178 | case DRM_MODE_DPMS_STANDBY: |
Daniel Vetter | 894ed1e | 2014-04-24 23:54:44 +0200 | [diff] [blame^] | 179 | adpa |= ADPA_DAC_ENABLE | ADPA_HSYNC_CNTL_DISABLE; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 180 | break; |
| 181 | case DRM_MODE_DPMS_SUSPEND: |
Daniel Vetter | 894ed1e | 2014-04-24 23:54:44 +0200 | [diff] [blame^] | 182 | adpa |= ADPA_DAC_ENABLE | ADPA_VSYNC_CNTL_DISABLE; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 183 | break; |
| 184 | case DRM_MODE_DPMS_OFF: |
Daniel Vetter | 894ed1e | 2014-04-24 23:54:44 +0200 | [diff] [blame^] | 185 | adpa |= ADPA_HSYNC_CNTL_DISABLE | ADPA_VSYNC_CNTL_DISABLE; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 186 | break; |
| 187 | } |
| 188 | |
Daniel Vetter | 894ed1e | 2014-04-24 23:54:44 +0200 | [diff] [blame^] | 189 | I915_WRITE(crt->adpa_reg, adpa); |
Daniel Vetter | b2cabb0 | 2012-07-01 22:42:24 +0200 | [diff] [blame] | 190 | } |
| 191 | |
Adam Jackson | 637f44d | 2013-03-25 15:40:05 -0400 | [diff] [blame] | 192 | static void intel_disable_crt(struct intel_encoder *encoder) |
| 193 | { |
| 194 | intel_crt_set_dpms(encoder, DRM_MODE_DPMS_OFF); |
| 195 | } |
| 196 | |
| 197 | static void intel_enable_crt(struct intel_encoder *encoder) |
| 198 | { |
| 199 | struct intel_crt *crt = intel_encoder_to_crt(encoder); |
| 200 | |
| 201 | intel_crt_set_dpms(encoder, crt->connector->base.dpms); |
| 202 | } |
| 203 | |
Jani Nikula | 6b1c087b | 2013-05-28 12:35:02 +0300 | [diff] [blame] | 204 | /* Special dpms function to support cloning between dvo/sdvo/crt. */ |
Daniel Vetter | b2cabb0 | 2012-07-01 22:42:24 +0200 | [diff] [blame] | 205 | static void intel_crt_dpms(struct drm_connector *connector, int mode) |
| 206 | { |
| 207 | struct drm_device *dev = connector->dev; |
| 208 | struct intel_encoder *encoder = intel_attached_encoder(connector); |
| 209 | struct drm_crtc *crtc; |
| 210 | int old_dpms; |
| 211 | |
| 212 | /* PCH platforms and VLV only support on/off. */ |
Jani Nikula | 4a8dece | 2012-11-05 13:51:51 +0200 | [diff] [blame] | 213 | if (INTEL_INFO(dev)->gen >= 5 && mode != DRM_MODE_DPMS_ON) |
Daniel Vetter | b2cabb0 | 2012-07-01 22:42:24 +0200 | [diff] [blame] | 214 | mode = DRM_MODE_DPMS_OFF; |
| 215 | |
| 216 | if (mode == connector->dpms) |
| 217 | return; |
| 218 | |
| 219 | old_dpms = connector->dpms; |
| 220 | connector->dpms = mode; |
| 221 | |
| 222 | /* Only need to change hw state when actually enabled */ |
| 223 | crtc = encoder->base.crtc; |
| 224 | if (!crtc) { |
| 225 | encoder->connectors_active = false; |
| 226 | return; |
| 227 | } |
| 228 | |
| 229 | /* We need the pipe to run for anything but OFF. */ |
| 230 | if (mode == DRM_MODE_DPMS_OFF) |
| 231 | encoder->connectors_active = false; |
| 232 | else |
| 233 | encoder->connectors_active = true; |
| 234 | |
Jani Nikula | 6b1c087b | 2013-05-28 12:35:02 +0300 | [diff] [blame] | 235 | /* We call connector dpms manually below in case pipe dpms doesn't |
| 236 | * change due to cloning. */ |
Daniel Vetter | b2cabb0 | 2012-07-01 22:42:24 +0200 | [diff] [blame] | 237 | if (mode < old_dpms) { |
| 238 | /* From off to on, enable the pipe first. */ |
| 239 | intel_crtc_update_dpms(crtc); |
| 240 | |
| 241 | intel_crt_set_dpms(encoder, mode); |
| 242 | } else { |
| 243 | intel_crt_set_dpms(encoder, mode); |
| 244 | |
| 245 | intel_crtc_update_dpms(crtc); |
| 246 | } |
Daniel Vetter | 0a91ca2 | 2012-07-02 21:54:27 +0200 | [diff] [blame] | 247 | |
Daniel Vetter | b980514 | 2012-08-31 17:37:33 +0200 | [diff] [blame] | 248 | intel_modeset_check_state(connector->dev); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 249 | } |
| 250 | |
Damien Lespiau | c19de8e | 2013-11-28 15:29:18 +0000 | [diff] [blame] | 251 | static enum drm_mode_status |
| 252 | intel_crt_mode_valid(struct drm_connector *connector, |
| 253 | struct drm_display_mode *mode) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 254 | { |
Zhao Yakui | 6bcdcd9 | 2009-03-03 18:06:42 +0800 | [diff] [blame] | 255 | struct drm_device *dev = connector->dev; |
| 256 | |
| 257 | int max_clock = 0; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 258 | if (mode->flags & DRM_MODE_FLAG_DBLSCAN) |
| 259 | return MODE_NO_DBLESCAN; |
| 260 | |
Zhao Yakui | 6bcdcd9 | 2009-03-03 18:06:42 +0800 | [diff] [blame] | 261 | if (mode->clock < 25000) |
| 262 | return MODE_CLOCK_LOW; |
| 263 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 264 | if (IS_GEN2(dev)) |
Zhao Yakui | 6bcdcd9 | 2009-03-03 18:06:42 +0800 | [diff] [blame] | 265 | max_clock = 350000; |
| 266 | else |
| 267 | max_clock = 400000; |
| 268 | if (mode->clock > max_clock) |
| 269 | return MODE_CLOCK_HIGH; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 270 | |
Paulo Zanoni | d4b1931 | 2012-11-29 11:29:32 -0200 | [diff] [blame] | 271 | /* The FDI receiver on LPT only supports 8bpc and only has 2 lanes. */ |
| 272 | if (HAS_PCH_LPT(dev) && |
| 273 | (ironlake_get_lanes_required(mode->clock, 270000, 24) > 2)) |
| 274 | return MODE_CLOCK_HIGH; |
| 275 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 276 | return MODE_OK; |
| 277 | } |
| 278 | |
Daniel Vetter | 5bfe2ac | 2013-03-27 00:44:55 +0100 | [diff] [blame] | 279 | static bool intel_crt_compute_config(struct intel_encoder *encoder, |
| 280 | struct intel_crtc_config *pipe_config) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 281 | { |
Daniel Vetter | 5bfe2ac | 2013-03-27 00:44:55 +0100 | [diff] [blame] | 282 | struct drm_device *dev = encoder->base.dev; |
| 283 | |
| 284 | if (HAS_PCH_SPLIT(dev)) |
| 285 | pipe_config->has_pch_encoder = true; |
| 286 | |
Daniel Vetter | 2a7acee | 2013-04-19 11:24:39 +0200 | [diff] [blame] | 287 | /* LPT FDI RX only supports 8bpc. */ |
| 288 | if (HAS_PCH_LPT(dev)) |
| 289 | pipe_config->pipe_bpp = 24; |
| 290 | |
Ville Syrjälä | 8f7abfd | 2014-02-27 14:23:12 +0200 | [diff] [blame] | 291 | /* FDI must always be 2.7 GHz */ |
| 292 | if (HAS_DDI(dev)) |
| 293 | pipe_config->port_clock = 135000 * 2; |
| 294 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 295 | return true; |
| 296 | } |
| 297 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 298 | static bool intel_ironlake_crt_detect_hotplug(struct drm_connector *connector) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 299 | { |
| 300 | struct drm_device *dev = connector->dev; |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 301 | struct intel_crt *crt = intel_attached_crt(connector); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 302 | struct drm_i915_private *dev_priv = dev->dev_private; |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 303 | u32 adpa; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 304 | bool ret; |
| 305 | |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 306 | /* The first time through, trigger an explicit detection cycle */ |
| 307 | if (crt->force_hotplug_required) { |
| 308 | bool turn_off_dac = HAS_PCH_SPLIT(dev); |
| 309 | u32 save_adpa; |
Zhenyu Wang | 67941da | 2009-07-24 01:00:33 +0800 | [diff] [blame] | 310 | |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 311 | crt->force_hotplug_required = 0; |
Dave Airlie | d5dd96c | 2010-08-04 15:52:19 +1000 | [diff] [blame] | 312 | |
Ville Syrjälä | ca54b81 | 2013-01-25 21:44:42 +0200 | [diff] [blame] | 313 | save_adpa = adpa = I915_READ(crt->adpa_reg); |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 314 | DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa); |
Dave Airlie | d5dd96c | 2010-08-04 15:52:19 +1000 | [diff] [blame] | 315 | |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 316 | adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER; |
| 317 | if (turn_off_dac) |
| 318 | adpa &= ~ADPA_DAC_ENABLE; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 319 | |
Ville Syrjälä | ca54b81 | 2013-01-25 21:44:42 +0200 | [diff] [blame] | 320 | I915_WRITE(crt->adpa_reg, adpa); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 321 | |
Ville Syrjälä | ca54b81 | 2013-01-25 21:44:42 +0200 | [diff] [blame] | 322 | if (wait_for((I915_READ(crt->adpa_reg) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0, |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 323 | 1000)) |
| 324 | DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER"); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 325 | |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 326 | if (turn_off_dac) { |
Ville Syrjälä | ca54b81 | 2013-01-25 21:44:42 +0200 | [diff] [blame] | 327 | I915_WRITE(crt->adpa_reg, save_adpa); |
| 328 | POSTING_READ(crt->adpa_reg); |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 329 | } |
Zhenyu Wang | a4a6b90 | 2010-04-07 16:15:55 +0800 | [diff] [blame] | 330 | } |
| 331 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 332 | /* Check the status to see if both blue and green are on now */ |
Ville Syrjälä | ca54b81 | 2013-01-25 21:44:42 +0200 | [diff] [blame] | 333 | adpa = I915_READ(crt->adpa_reg); |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 334 | if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0) |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 335 | ret = true; |
| 336 | else |
| 337 | ret = false; |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 338 | DRM_DEBUG_KMS("ironlake hotplug adpa=0x%x, result %d\n", adpa, ret); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 339 | |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 340 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 341 | } |
| 342 | |
Jesse Barnes | 7d2c24e | 2012-06-15 11:55:15 -0700 | [diff] [blame] | 343 | static bool valleyview_crt_detect_hotplug(struct drm_connector *connector) |
| 344 | { |
| 345 | struct drm_device *dev = connector->dev; |
Ville Syrjälä | ca54b81 | 2013-01-25 21:44:42 +0200 | [diff] [blame] | 346 | struct intel_crt *crt = intel_attached_crt(connector); |
Jesse Barnes | 7d2c24e | 2012-06-15 11:55:15 -0700 | [diff] [blame] | 347 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 348 | u32 adpa; |
| 349 | bool ret; |
| 350 | u32 save_adpa; |
| 351 | |
Ville Syrjälä | ca54b81 | 2013-01-25 21:44:42 +0200 | [diff] [blame] | 352 | save_adpa = adpa = I915_READ(crt->adpa_reg); |
Jesse Barnes | 7d2c24e | 2012-06-15 11:55:15 -0700 | [diff] [blame] | 353 | DRM_DEBUG_KMS("trigger hotplug detect cycle: adpa=0x%x\n", adpa); |
| 354 | |
| 355 | adpa |= ADPA_CRT_HOTPLUG_FORCE_TRIGGER; |
| 356 | |
Ville Syrjälä | ca54b81 | 2013-01-25 21:44:42 +0200 | [diff] [blame] | 357 | I915_WRITE(crt->adpa_reg, adpa); |
Jesse Barnes | 7d2c24e | 2012-06-15 11:55:15 -0700 | [diff] [blame] | 358 | |
Ville Syrjälä | ca54b81 | 2013-01-25 21:44:42 +0200 | [diff] [blame] | 359 | if (wait_for((I915_READ(crt->adpa_reg) & ADPA_CRT_HOTPLUG_FORCE_TRIGGER) == 0, |
Jesse Barnes | 7d2c24e | 2012-06-15 11:55:15 -0700 | [diff] [blame] | 360 | 1000)) { |
| 361 | DRM_DEBUG_KMS("timed out waiting for FORCE_TRIGGER"); |
Ville Syrjälä | ca54b81 | 2013-01-25 21:44:42 +0200 | [diff] [blame] | 362 | I915_WRITE(crt->adpa_reg, save_adpa); |
Jesse Barnes | 7d2c24e | 2012-06-15 11:55:15 -0700 | [diff] [blame] | 363 | } |
| 364 | |
| 365 | /* Check the status to see if both blue and green are on now */ |
Ville Syrjälä | ca54b81 | 2013-01-25 21:44:42 +0200 | [diff] [blame] | 366 | adpa = I915_READ(crt->adpa_reg); |
Jesse Barnes | 7d2c24e | 2012-06-15 11:55:15 -0700 | [diff] [blame] | 367 | if ((adpa & ADPA_CRT_HOTPLUG_MONITOR_MASK) != 0) |
| 368 | ret = true; |
| 369 | else |
| 370 | ret = false; |
| 371 | |
| 372 | DRM_DEBUG_KMS("valleyview hotplug adpa=0x%x, result %d\n", adpa, ret); |
| 373 | |
Jesse Barnes | 7d2c24e | 2012-06-15 11:55:15 -0700 | [diff] [blame] | 374 | return ret; |
| 375 | } |
| 376 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 377 | /** |
| 378 | * Uses CRT_HOTPLUG_EN and CRT_HOTPLUG_STAT to detect CRT presence. |
| 379 | * |
| 380 | * Not for i915G/i915GM |
| 381 | * |
| 382 | * \return true if CRT is connected. |
| 383 | * \return false if CRT is disconnected. |
| 384 | */ |
| 385 | static bool intel_crt_detect_hotplug(struct drm_connector *connector) |
| 386 | { |
| 387 | struct drm_device *dev = connector->dev; |
| 388 | struct drm_i915_private *dev_priv = dev->dev_private; |
Adam Jackson | 7a772c4 | 2010-05-24 16:46:29 -0400 | [diff] [blame] | 389 | u32 hotplug_en, orig, stat; |
| 390 | bool ret = false; |
Zhao Yakui | 771cb08 | 2009-03-03 18:07:52 +0800 | [diff] [blame] | 391 | int i, tries = 0; |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 392 | |
Eric Anholt | bad720f | 2009-10-22 16:11:14 -0700 | [diff] [blame] | 393 | if (HAS_PCH_SPLIT(dev)) |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 394 | return intel_ironlake_crt_detect_hotplug(connector); |
Zhenyu Wang | 2c07245 | 2009-06-05 15:38:42 +0800 | [diff] [blame] | 395 | |
Jesse Barnes | 7d2c24e | 2012-06-15 11:55:15 -0700 | [diff] [blame] | 396 | if (IS_VALLEYVIEW(dev)) |
| 397 | return valleyview_crt_detect_hotplug(connector); |
| 398 | |
Zhao Yakui | 771cb08 | 2009-03-03 18:07:52 +0800 | [diff] [blame] | 399 | /* |
| 400 | * On 4 series desktop, CRT detect sequence need to be done twice |
| 401 | * to get a reliable result. |
| 402 | */ |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 403 | |
Zhao Yakui | 771cb08 | 2009-03-03 18:07:52 +0800 | [diff] [blame] | 404 | if (IS_G4X(dev) && !IS_GM45(dev)) |
| 405 | tries = 2; |
| 406 | else |
| 407 | tries = 1; |
Adam Jackson | 7a772c4 | 2010-05-24 16:46:29 -0400 | [diff] [blame] | 408 | hotplug_en = orig = I915_READ(PORT_HOTPLUG_EN); |
Zhao Yakui | 771cb08 | 2009-03-03 18:07:52 +0800 | [diff] [blame] | 409 | hotplug_en |= CRT_HOTPLUG_FORCE_DETECT; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 410 | |
Zhao Yakui | 771cb08 | 2009-03-03 18:07:52 +0800 | [diff] [blame] | 411 | for (i = 0; i < tries ; i++) { |
Zhao Yakui | 771cb08 | 2009-03-03 18:07:52 +0800 | [diff] [blame] | 412 | /* turn on the FORCE_DETECT */ |
| 413 | I915_WRITE(PORT_HOTPLUG_EN, hotplug_en); |
Zhao Yakui | 771cb08 | 2009-03-03 18:07:52 +0800 | [diff] [blame] | 414 | /* wait for FORCE_DETECT to go off */ |
Chris Wilson | 913d8d1 | 2010-08-07 11:01:35 +0100 | [diff] [blame] | 415 | if (wait_for((I915_READ(PORT_HOTPLUG_EN) & |
| 416 | CRT_HOTPLUG_FORCE_DETECT) == 0, |
Chris Wilson | 481b6af | 2010-08-23 17:43:35 +0100 | [diff] [blame] | 417 | 1000)) |
Chris Wilson | 7907731 | 2010-09-12 19:58:04 +0100 | [diff] [blame] | 418 | DRM_DEBUG_KMS("timed out waiting for FORCE_DETECT to go off"); |
Zhao Yakui | 771cb08 | 2009-03-03 18:07:52 +0800 | [diff] [blame] | 419 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 420 | |
Adam Jackson | 7a772c4 | 2010-05-24 16:46:29 -0400 | [diff] [blame] | 421 | stat = I915_READ(PORT_HOTPLUG_STAT); |
| 422 | if ((stat & CRT_HOTPLUG_MONITOR_MASK) != CRT_HOTPLUG_MONITOR_NONE) |
| 423 | ret = true; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 424 | |
Adam Jackson | 7a772c4 | 2010-05-24 16:46:29 -0400 | [diff] [blame] | 425 | /* clear the interrupt we just generated, if any */ |
| 426 | I915_WRITE(PORT_HOTPLUG_STAT, CRT_HOTPLUG_INT_STATUS); |
| 427 | |
| 428 | /* and put the bits back */ |
| 429 | I915_WRITE(PORT_HOTPLUG_EN, orig); |
| 430 | |
| 431 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 432 | } |
| 433 | |
Jani Nikula | f1a2f5b | 2012-08-13 13:22:35 +0300 | [diff] [blame] | 434 | static struct edid *intel_crt_get_edid(struct drm_connector *connector, |
| 435 | struct i2c_adapter *i2c) |
| 436 | { |
| 437 | struct edid *edid; |
| 438 | |
| 439 | edid = drm_get_edid(connector, i2c); |
| 440 | |
| 441 | if (!edid && !intel_gmbus_is_forced_bit(i2c)) { |
| 442 | DRM_DEBUG_KMS("CRT GMBUS EDID read failed, retry using GPIO bit-banging\n"); |
| 443 | intel_gmbus_force_bit(i2c, true); |
| 444 | edid = drm_get_edid(connector, i2c); |
| 445 | intel_gmbus_force_bit(i2c, false); |
| 446 | } |
| 447 | |
| 448 | return edid; |
| 449 | } |
| 450 | |
| 451 | /* local version of intel_ddc_get_modes() to use intel_crt_get_edid() */ |
| 452 | static int intel_crt_ddc_get_modes(struct drm_connector *connector, |
| 453 | struct i2c_adapter *adapter) |
| 454 | { |
| 455 | struct edid *edid; |
Jani Nikula | ebda95a | 2012-10-19 14:51:51 +0300 | [diff] [blame] | 456 | int ret; |
Jani Nikula | f1a2f5b | 2012-08-13 13:22:35 +0300 | [diff] [blame] | 457 | |
| 458 | edid = intel_crt_get_edid(connector, adapter); |
| 459 | if (!edid) |
| 460 | return 0; |
| 461 | |
Jani Nikula | ebda95a | 2012-10-19 14:51:51 +0300 | [diff] [blame] | 462 | ret = intel_connector_update_modes(connector, edid); |
| 463 | kfree(edid); |
| 464 | |
| 465 | return ret; |
Jani Nikula | f1a2f5b | 2012-08-13 13:22:35 +0300 | [diff] [blame] | 466 | } |
| 467 | |
David Müller | f5afcd3 | 2011-01-06 12:29:32 +0000 | [diff] [blame] | 468 | static bool intel_crt_detect_ddc(struct drm_connector *connector) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 469 | { |
David Müller | f5afcd3 | 2011-01-06 12:29:32 +0000 | [diff] [blame] | 470 | struct intel_crt *crt = intel_attached_crt(connector); |
Chris Wilson | c9a1c4c | 2010-11-16 10:58:37 +0000 | [diff] [blame] | 471 | struct drm_i915_private *dev_priv = crt->base.base.dev->dev_private; |
Daniel Vetter | a2bd1f5 | 2012-07-11 12:31:52 +0200 | [diff] [blame] | 472 | struct edid *edid; |
| 473 | struct i2c_adapter *i2c; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 474 | |
Daniel Vetter | a2bd1f5 | 2012-07-11 12:31:52 +0200 | [diff] [blame] | 475 | BUG_ON(crt->base.type != INTEL_OUTPUT_ANALOG); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 476 | |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 477 | i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->vbt.crt_ddc_pin); |
Jani Nikula | f1a2f5b | 2012-08-13 13:22:35 +0300 | [diff] [blame] | 478 | edid = intel_crt_get_edid(connector, i2c); |
David Müller | f5afcd3 | 2011-01-06 12:29:32 +0000 | [diff] [blame] | 479 | |
Daniel Vetter | a2bd1f5 | 2012-07-11 12:31:52 +0200 | [diff] [blame] | 480 | if (edid) { |
| 481 | bool is_digital = edid->input & DRM_EDID_INPUT_DIGITAL; |
| 482 | |
David Müller | f5afcd3 | 2011-01-06 12:29:32 +0000 | [diff] [blame] | 483 | /* |
| 484 | * This may be a DVI-I connector with a shared DDC |
| 485 | * link between analog and digital outputs, so we |
| 486 | * have to check the EDID input spec of the attached device. |
| 487 | */ |
David Müller | f5afcd3 | 2011-01-06 12:29:32 +0000 | [diff] [blame] | 488 | if (!is_digital) { |
| 489 | DRM_DEBUG_KMS("CRT detected via DDC:0x50 [EDID]\n"); |
| 490 | return true; |
| 491 | } |
Daniel Vetter | a2bd1f5 | 2012-07-11 12:31:52 +0200 | [diff] [blame] | 492 | |
| 493 | DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [EDID reports a digital panel]\n"); |
| 494 | } else { |
| 495 | DRM_DEBUG_KMS("CRT not detected via DDC:0x50 [no valid EDID found]\n"); |
Chris Wilson | 6ec3d0c | 2010-09-22 18:17:01 +0100 | [diff] [blame] | 496 | } |
| 497 | |
Daniel Vetter | a2bd1f5 | 2012-07-11 12:31:52 +0200 | [diff] [blame] | 498 | kfree(edid); |
| 499 | |
Chris Wilson | 6ec3d0c | 2010-09-22 18:17:01 +0100 | [diff] [blame] | 500 | return false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 501 | } |
| 502 | |
Ma Ling | e4a5d54 | 2009-05-26 11:31:00 +0800 | [diff] [blame] | 503 | static enum drm_connector_status |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 504 | intel_crt_load_detect(struct intel_crt *crt) |
Ma Ling | e4a5d54 | 2009-05-26 11:31:00 +0800 | [diff] [blame] | 505 | { |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 506 | struct drm_device *dev = crt->base.base.dev; |
Ma Ling | e4a5d54 | 2009-05-26 11:31:00 +0800 | [diff] [blame] | 507 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | 7173188 | 2011-04-19 23:10:58 +0100 | [diff] [blame] | 508 | uint32_t pipe = to_intel_crtc(crt->base.base.crtc)->pipe; |
Ma Ling | e4a5d54 | 2009-05-26 11:31:00 +0800 | [diff] [blame] | 509 | uint32_t save_bclrpat; |
| 510 | uint32_t save_vtotal; |
| 511 | uint32_t vtotal, vactive; |
| 512 | uint32_t vsample; |
| 513 | uint32_t vblank, vblank_start, vblank_end; |
| 514 | uint32_t dsl; |
| 515 | uint32_t bclrpat_reg; |
| 516 | uint32_t vtotal_reg; |
| 517 | uint32_t vblank_reg; |
| 518 | uint32_t vsync_reg; |
| 519 | uint32_t pipeconf_reg; |
| 520 | uint32_t pipe_dsl_reg; |
| 521 | uint8_t st00; |
| 522 | enum drm_connector_status status; |
| 523 | |
Chris Wilson | 6ec3d0c | 2010-09-22 18:17:01 +0100 | [diff] [blame] | 524 | DRM_DEBUG_KMS("starting load-detect on CRT\n"); |
| 525 | |
Jesse Barnes | 9db4a9c | 2011-02-07 12:26:52 -0800 | [diff] [blame] | 526 | bclrpat_reg = BCLRPAT(pipe); |
| 527 | vtotal_reg = VTOTAL(pipe); |
| 528 | vblank_reg = VBLANK(pipe); |
| 529 | vsync_reg = VSYNC(pipe); |
| 530 | pipeconf_reg = PIPECONF(pipe); |
| 531 | pipe_dsl_reg = PIPEDSL(pipe); |
Ma Ling | e4a5d54 | 2009-05-26 11:31:00 +0800 | [diff] [blame] | 532 | |
| 533 | save_bclrpat = I915_READ(bclrpat_reg); |
| 534 | save_vtotal = I915_READ(vtotal_reg); |
| 535 | vblank = I915_READ(vblank_reg); |
| 536 | |
| 537 | vtotal = ((save_vtotal >> 16) & 0xfff) + 1; |
| 538 | vactive = (save_vtotal & 0x7ff) + 1; |
| 539 | |
| 540 | vblank_start = (vblank & 0xfff) + 1; |
| 541 | vblank_end = ((vblank >> 16) & 0xfff) + 1; |
| 542 | |
| 543 | /* Set the border color to purple. */ |
| 544 | I915_WRITE(bclrpat_reg, 0x500050); |
| 545 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 546 | if (!IS_GEN2(dev)) { |
Ma Ling | e4a5d54 | 2009-05-26 11:31:00 +0800 | [diff] [blame] | 547 | uint32_t pipeconf = I915_READ(pipeconf_reg); |
| 548 | I915_WRITE(pipeconf_reg, pipeconf | PIPECONF_FORCE_BORDER); |
Chris Wilson | 19c55da | 2010-08-09 14:50:53 +0100 | [diff] [blame] | 549 | POSTING_READ(pipeconf_reg); |
Ma Ling | e4a5d54 | 2009-05-26 11:31:00 +0800 | [diff] [blame] | 550 | /* Wait for next Vblank to substitue |
| 551 | * border color for Color info */ |
Jesse Barnes | 9d0498a | 2010-08-18 13:20:54 -0700 | [diff] [blame] | 552 | intel_wait_for_vblank(dev, pipe); |
Ma Ling | e4a5d54 | 2009-05-26 11:31:00 +0800 | [diff] [blame] | 553 | st00 = I915_READ8(VGA_MSR_WRITE); |
| 554 | status = ((st00 & (1 << 4)) != 0) ? |
| 555 | connector_status_connected : |
| 556 | connector_status_disconnected; |
| 557 | |
| 558 | I915_WRITE(pipeconf_reg, pipeconf); |
| 559 | } else { |
| 560 | bool restore_vblank = false; |
| 561 | int count, detect; |
| 562 | |
| 563 | /* |
| 564 | * If there isn't any border, add some. |
| 565 | * Yes, this will flicker |
| 566 | */ |
| 567 | if (vblank_start <= vactive && vblank_end >= vtotal) { |
| 568 | uint32_t vsync = I915_READ(vsync_reg); |
| 569 | uint32_t vsync_start = (vsync & 0xffff) + 1; |
| 570 | |
| 571 | vblank_start = vsync_start; |
| 572 | I915_WRITE(vblank_reg, |
| 573 | (vblank_start - 1) | |
| 574 | ((vblank_end - 1) << 16)); |
| 575 | restore_vblank = true; |
| 576 | } |
| 577 | /* sample in the vertical border, selecting the larger one */ |
| 578 | if (vblank_start - vactive >= vtotal - vblank_end) |
| 579 | vsample = (vblank_start + vactive) >> 1; |
| 580 | else |
| 581 | vsample = (vtotal + vblank_end) >> 1; |
| 582 | |
| 583 | /* |
| 584 | * Wait for the border to be displayed |
| 585 | */ |
| 586 | while (I915_READ(pipe_dsl_reg) >= vactive) |
| 587 | ; |
| 588 | while ((dsl = I915_READ(pipe_dsl_reg)) <= vsample) |
| 589 | ; |
| 590 | /* |
| 591 | * Watch ST00 for an entire scanline |
| 592 | */ |
| 593 | detect = 0; |
| 594 | count = 0; |
| 595 | do { |
| 596 | count++; |
| 597 | /* Read the ST00 VGA status register */ |
| 598 | st00 = I915_READ8(VGA_MSR_WRITE); |
| 599 | if (st00 & (1 << 4)) |
| 600 | detect++; |
| 601 | } while ((I915_READ(pipe_dsl_reg) == dsl)); |
| 602 | |
| 603 | /* restore vblank if necessary */ |
| 604 | if (restore_vblank) |
| 605 | I915_WRITE(vblank_reg, vblank); |
| 606 | /* |
| 607 | * If more than 3/4 of the scanline detected a monitor, |
| 608 | * then it is assumed to be present. This works even on i830, |
| 609 | * where there isn't any way to force the border color across |
| 610 | * the screen |
| 611 | */ |
| 612 | status = detect * 4 > count * 3 ? |
| 613 | connector_status_connected : |
| 614 | connector_status_disconnected; |
| 615 | } |
| 616 | |
| 617 | /* Restore previous settings */ |
| 618 | I915_WRITE(bclrpat_reg, save_bclrpat); |
| 619 | |
| 620 | return status; |
| 621 | } |
| 622 | |
Chris Wilson | 7b334fc | 2010-09-09 23:51:02 +0100 | [diff] [blame] | 623 | static enum drm_connector_status |
Chris Wilson | 930a9e2 | 2010-09-14 11:07:23 +0100 | [diff] [blame] | 624 | intel_crt_detect(struct drm_connector *connector, bool force) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 625 | { |
| 626 | struct drm_device *dev = connector->dev; |
Paulo Zanoni | c19a0df | 2014-02-21 13:52:22 -0300 | [diff] [blame] | 627 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | c9a1c4c | 2010-11-16 10:58:37 +0000 | [diff] [blame] | 628 | struct intel_crt *crt = intel_attached_crt(connector); |
Imre Deak | 671dedd | 2014-03-05 16:20:53 +0200 | [diff] [blame] | 629 | struct intel_encoder *intel_encoder = &crt->base; |
| 630 | enum intel_display_power_domain power_domain; |
Ma Ling | e4a5d54 | 2009-05-26 11:31:00 +0800 | [diff] [blame] | 631 | enum drm_connector_status status; |
Daniel Vetter | e95c843 | 2012-04-20 21:03:36 +0200 | [diff] [blame] | 632 | struct intel_load_detect_pipe tmp; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 633 | |
Paulo Zanoni | c19a0df | 2014-02-21 13:52:22 -0300 | [diff] [blame] | 634 | intel_runtime_pm_get(dev_priv); |
| 635 | |
Chris Wilson | 164c859 | 2013-07-20 20:27:08 +0100 | [diff] [blame] | 636 | DRM_DEBUG_KMS("[CONNECTOR:%d:%s] force=%d\n", |
| 637 | connector->base.id, drm_get_connector_name(connector), |
| 638 | force); |
| 639 | |
Imre Deak | 671dedd | 2014-03-05 16:20:53 +0200 | [diff] [blame] | 640 | power_domain = intel_display_port_power_domain(intel_encoder); |
| 641 | intel_display_power_get(dev_priv, power_domain); |
| 642 | |
Chris Wilson | a6c45cf | 2010-09-17 00:32:17 +0100 | [diff] [blame] | 643 | if (I915_HAS_HOTPLUG(dev)) { |
Daniel Vetter | aaa3773 | 2012-06-16 15:30:32 +0200 | [diff] [blame] | 644 | /* We can not rely on the HPD pin always being correctly wired |
| 645 | * up, for example many KVM do not pass it through, and so |
| 646 | * only trust an assertion that the monitor is connected. |
| 647 | */ |
Chris Wilson | 6ec3d0c | 2010-09-22 18:17:01 +0100 | [diff] [blame] | 648 | if (intel_crt_detect_hotplug(connector)) { |
| 649 | DRM_DEBUG_KMS("CRT detected via hotplug\n"); |
Paulo Zanoni | c19a0df | 2014-02-21 13:52:22 -0300 | [diff] [blame] | 650 | status = connector_status_connected; |
| 651 | goto out; |
Daniel Vetter | aaa3773 | 2012-06-16 15:30:32 +0200 | [diff] [blame] | 652 | } else |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 653 | DRM_DEBUG_KMS("CRT not detected via hotplug\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 654 | } |
| 655 | |
Paulo Zanoni | c19a0df | 2014-02-21 13:52:22 -0300 | [diff] [blame] | 656 | if (intel_crt_detect_ddc(connector)) { |
| 657 | status = connector_status_connected; |
| 658 | goto out; |
| 659 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 660 | |
Daniel Vetter | aaa3773 | 2012-06-16 15:30:32 +0200 | [diff] [blame] | 661 | /* Load detection is broken on HPD capable machines. Whoever wants a |
| 662 | * broken monitor (without edid) to work behind a broken kvm (that fails |
| 663 | * to have the right resistors for HP detection) needs to fix this up. |
| 664 | * For now just bail out. */ |
Paulo Zanoni | c19a0df | 2014-02-21 13:52:22 -0300 | [diff] [blame] | 665 | if (I915_HAS_HOTPLUG(dev)) { |
| 666 | status = connector_status_disconnected; |
| 667 | goto out; |
| 668 | } |
Daniel Vetter | aaa3773 | 2012-06-16 15:30:32 +0200 | [diff] [blame] | 669 | |
Paulo Zanoni | c19a0df | 2014-02-21 13:52:22 -0300 | [diff] [blame] | 670 | if (!force) { |
| 671 | status = connector->status; |
| 672 | goto out; |
| 673 | } |
Chris Wilson | 7b334fc | 2010-09-09 23:51:02 +0100 | [diff] [blame] | 674 | |
Ma Ling | e4a5d54 | 2009-05-26 11:31:00 +0800 | [diff] [blame] | 675 | /* for pre-945g platforms use load detect */ |
Daniel Vetter | d2434ab | 2012-08-12 21:20:10 +0200 | [diff] [blame] | 676 | if (intel_get_load_detect_pipe(connector, NULL, &tmp)) { |
Daniel Vetter | e95c843 | 2012-04-20 21:03:36 +0200 | [diff] [blame] | 677 | if (intel_crt_detect_ddc(connector)) |
| 678 | status = connector_status_connected; |
| 679 | else |
| 680 | status = intel_crt_load_detect(crt); |
Daniel Vetter | d2434ab | 2012-08-12 21:20:10 +0200 | [diff] [blame] | 681 | intel_release_load_detect_pipe(connector, &tmp); |
Daniel Vetter | e95c843 | 2012-04-20 21:03:36 +0200 | [diff] [blame] | 682 | } else |
| 683 | status = connector_status_unknown; |
Ma Ling | e4a5d54 | 2009-05-26 11:31:00 +0800 | [diff] [blame] | 684 | |
Paulo Zanoni | c19a0df | 2014-02-21 13:52:22 -0300 | [diff] [blame] | 685 | out: |
Imre Deak | 671dedd | 2014-03-05 16:20:53 +0200 | [diff] [blame] | 686 | intel_display_power_put(dev_priv, power_domain); |
Paulo Zanoni | c19a0df | 2014-02-21 13:52:22 -0300 | [diff] [blame] | 687 | intel_runtime_pm_put(dev_priv); |
Imre Deak | 671dedd | 2014-03-05 16:20:53 +0200 | [diff] [blame] | 688 | |
Ma Ling | e4a5d54 | 2009-05-26 11:31:00 +0800 | [diff] [blame] | 689 | return status; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 690 | } |
| 691 | |
| 692 | static void intel_crt_destroy(struct drm_connector *connector) |
| 693 | { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 694 | drm_connector_cleanup(connector); |
| 695 | kfree(connector); |
| 696 | } |
| 697 | |
| 698 | static int intel_crt_get_modes(struct drm_connector *connector) |
| 699 | { |
ling.ma@intel.com | 8e4d36b | 2009-06-30 11:35:34 +0800 | [diff] [blame] | 700 | struct drm_device *dev = connector->dev; |
Chris Wilson | f899fc6 | 2010-07-20 15:44:45 -0700 | [diff] [blame] | 701 | struct drm_i915_private *dev_priv = dev->dev_private; |
Imre Deak | 671dedd | 2014-03-05 16:20:53 +0200 | [diff] [blame] | 702 | struct intel_crt *crt = intel_attached_crt(connector); |
| 703 | struct intel_encoder *intel_encoder = &crt->base; |
| 704 | enum intel_display_power_domain power_domain; |
Chris Wilson | 890f335 | 2010-09-14 16:46:59 +0100 | [diff] [blame] | 705 | int ret; |
Daniel Kurtz | 3bd7d90 | 2012-03-28 02:36:14 +0800 | [diff] [blame] | 706 | struct i2c_adapter *i2c; |
ling.ma@intel.com | 8e4d36b | 2009-06-30 11:35:34 +0800 | [diff] [blame] | 707 | |
Imre Deak | 671dedd | 2014-03-05 16:20:53 +0200 | [diff] [blame] | 708 | power_domain = intel_display_port_power_domain(intel_encoder); |
| 709 | intel_display_power_get(dev_priv, power_domain); |
| 710 | |
Rodrigo Vivi | 41aa344 | 2013-05-09 20:03:18 -0300 | [diff] [blame] | 711 | i2c = intel_gmbus_get_adapter(dev_priv, dev_priv->vbt.crt_ddc_pin); |
Jani Nikula | f1a2f5b | 2012-08-13 13:22:35 +0300 | [diff] [blame] | 712 | ret = intel_crt_ddc_get_modes(connector, i2c); |
ling.ma@intel.com | 8e4d36b | 2009-06-30 11:35:34 +0800 | [diff] [blame] | 713 | if (ret || !IS_G4X(dev)) |
Imre Deak | 671dedd | 2014-03-05 16:20:53 +0200 | [diff] [blame] | 714 | goto out; |
ling.ma@intel.com | 8e4d36b | 2009-06-30 11:35:34 +0800 | [diff] [blame] | 715 | |
ling.ma@intel.com | 8e4d36b | 2009-06-30 11:35:34 +0800 | [diff] [blame] | 716 | /* Try to probe digital port for output in DVI-I -> VGA mode. */ |
Daniel Kurtz | 3bd7d90 | 2012-03-28 02:36:14 +0800 | [diff] [blame] | 717 | i2c = intel_gmbus_get_adapter(dev_priv, GMBUS_PORT_DPB); |
Imre Deak | 671dedd | 2014-03-05 16:20:53 +0200 | [diff] [blame] | 718 | ret = intel_crt_ddc_get_modes(connector, i2c); |
| 719 | |
| 720 | out: |
| 721 | intel_display_power_put(dev_priv, power_domain); |
| 722 | |
| 723 | return ret; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 724 | } |
| 725 | |
| 726 | static int intel_crt_set_property(struct drm_connector *connector, |
| 727 | struct drm_property *property, |
| 728 | uint64_t value) |
| 729 | { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 730 | return 0; |
| 731 | } |
| 732 | |
Chris Wilson | f326905 | 2011-01-24 15:17:08 +0000 | [diff] [blame] | 733 | static void intel_crt_reset(struct drm_connector *connector) |
| 734 | { |
| 735 | struct drm_device *dev = connector->dev; |
Daniel Vetter | 2e93889 | 2012-10-11 20:08:24 +0200 | [diff] [blame] | 736 | struct drm_i915_private *dev_priv = dev->dev_private; |
Chris Wilson | f326905 | 2011-01-24 15:17:08 +0000 | [diff] [blame] | 737 | struct intel_crt *crt = intel_attached_crt(connector); |
| 738 | |
Chris Wilson | 10603ca | 2013-08-26 19:51:06 -0300 | [diff] [blame] | 739 | if (INTEL_INFO(dev)->gen >= 5) { |
Daniel Vetter | 2e93889 | 2012-10-11 20:08:24 +0200 | [diff] [blame] | 740 | u32 adpa; |
| 741 | |
Ville Syrjälä | ca54b81 | 2013-01-25 21:44:42 +0200 | [diff] [blame] | 742 | adpa = I915_READ(crt->adpa_reg); |
Daniel Vetter | 2e93889 | 2012-10-11 20:08:24 +0200 | [diff] [blame] | 743 | adpa &= ~ADPA_CRT_HOTPLUG_MASK; |
| 744 | adpa |= ADPA_HOTPLUG_BITS; |
Ville Syrjälä | ca54b81 | 2013-01-25 21:44:42 +0200 | [diff] [blame] | 745 | I915_WRITE(crt->adpa_reg, adpa); |
| 746 | POSTING_READ(crt->adpa_reg); |
Daniel Vetter | 2e93889 | 2012-10-11 20:08:24 +0200 | [diff] [blame] | 747 | |
| 748 | DRM_DEBUG_KMS("pch crt adpa set to 0x%x\n", adpa); |
Chris Wilson | f326905 | 2011-01-24 15:17:08 +0000 | [diff] [blame] | 749 | crt->force_hotplug_required = 1; |
Daniel Vetter | 2e93889 | 2012-10-11 20:08:24 +0200 | [diff] [blame] | 750 | } |
| 751 | |
Chris Wilson | f326905 | 2011-01-24 15:17:08 +0000 | [diff] [blame] | 752 | } |
| 753 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 754 | /* |
| 755 | * Routines for controlling stuff on the analog port |
| 756 | */ |
| 757 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 758 | static const struct drm_connector_funcs intel_crt_connector_funcs = { |
Chris Wilson | f326905 | 2011-01-24 15:17:08 +0000 | [diff] [blame] | 759 | .reset = intel_crt_reset, |
Daniel Vetter | b2cabb0 | 2012-07-01 22:42:24 +0200 | [diff] [blame] | 760 | .dpms = intel_crt_dpms, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 761 | .detect = intel_crt_detect, |
| 762 | .fill_modes = drm_helper_probe_single_connector_modes, |
| 763 | .destroy = intel_crt_destroy, |
| 764 | .set_property = intel_crt_set_property, |
| 765 | }; |
| 766 | |
| 767 | static const struct drm_connector_helper_funcs intel_crt_connector_helper_funcs = { |
| 768 | .mode_valid = intel_crt_mode_valid, |
| 769 | .get_modes = intel_crt_get_modes, |
Chris Wilson | df0e924 | 2010-09-09 16:20:55 +0100 | [diff] [blame] | 770 | .best_encoder = intel_best_encoder, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 771 | }; |
| 772 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 773 | static const struct drm_encoder_funcs intel_crt_enc_funcs = { |
Chris Wilson | ea5b213 | 2010-08-04 13:50:23 +0100 | [diff] [blame] | 774 | .destroy = intel_encoder_destroy, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 775 | }; |
| 776 | |
Duncan Laurie | 8ca4013 | 2011-10-25 15:42:21 -0700 | [diff] [blame] | 777 | static int __init intel_no_crt_dmi_callback(const struct dmi_system_id *id) |
| 778 | { |
Daniel Vetter | bc0daf4 | 2012-04-01 13:16:49 +0200 | [diff] [blame] | 779 | DRM_INFO("Skipping CRT initialization for %s\n", id->ident); |
Duncan Laurie | 8ca4013 | 2011-10-25 15:42:21 -0700 | [diff] [blame] | 780 | return 1; |
| 781 | } |
| 782 | |
| 783 | static const struct dmi_system_id intel_no_crt[] = { |
| 784 | { |
| 785 | .callback = intel_no_crt_dmi_callback, |
| 786 | .ident = "ACER ZGB", |
| 787 | .matches = { |
| 788 | DMI_MATCH(DMI_SYS_VENDOR, "ACER"), |
| 789 | DMI_MATCH(DMI_PRODUCT_NAME, "ZGB"), |
| 790 | }, |
| 791 | }, |
Giacomo Comes | 10b6ee4 | 2014-04-03 14:13:55 -0400 | [diff] [blame] | 792 | { |
| 793 | .callback = intel_no_crt_dmi_callback, |
| 794 | .ident = "DELL XPS 8700", |
| 795 | .matches = { |
| 796 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 797 | DMI_MATCH(DMI_PRODUCT_NAME, "XPS 8700"), |
| 798 | }, |
| 799 | }, |
Duncan Laurie | 8ca4013 | 2011-10-25 15:42:21 -0700 | [diff] [blame] | 800 | { } |
| 801 | }; |
| 802 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 803 | void intel_crt_init(struct drm_device *dev) |
| 804 | { |
| 805 | struct drm_connector *connector; |
Chris Wilson | c9a1c4c | 2010-11-16 10:58:37 +0000 | [diff] [blame] | 806 | struct intel_crt *crt; |
Zhenyu Wang | 454c1ca | 2010-03-29 15:53:23 +0800 | [diff] [blame] | 807 | struct intel_connector *intel_connector; |
David Müller (ELSOFT AG) | db54501 | 2009-08-29 08:54:45 +0200 | [diff] [blame] | 808 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 809 | |
Duncan Laurie | 8ca4013 | 2011-10-25 15:42:21 -0700 | [diff] [blame] | 810 | /* Skip machines without VGA that falsely report hotplug events */ |
| 811 | if (dmi_check_system(intel_no_crt)) |
| 812 | return; |
| 813 | |
Chris Wilson | c9a1c4c | 2010-11-16 10:58:37 +0000 | [diff] [blame] | 814 | crt = kzalloc(sizeof(struct intel_crt), GFP_KERNEL); |
| 815 | if (!crt) |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 816 | return; |
| 817 | |
Daniel Vetter | b14c567 | 2013-09-19 12:18:32 +0200 | [diff] [blame] | 818 | intel_connector = kzalloc(sizeof(*intel_connector), GFP_KERNEL); |
Zhenyu Wang | 454c1ca | 2010-03-29 15:53:23 +0800 | [diff] [blame] | 819 | if (!intel_connector) { |
Chris Wilson | c9a1c4c | 2010-11-16 10:58:37 +0000 | [diff] [blame] | 820 | kfree(crt); |
Zhenyu Wang | 454c1ca | 2010-03-29 15:53:23 +0800 | [diff] [blame] | 821 | return; |
| 822 | } |
| 823 | |
| 824 | connector = &intel_connector->base; |
Adam Jackson | 637f44d | 2013-03-25 15:40:05 -0400 | [diff] [blame] | 825 | crt->connector = intel_connector; |
Zhenyu Wang | 454c1ca | 2010-03-29 15:53:23 +0800 | [diff] [blame] | 826 | drm_connector_init(dev, &intel_connector->base, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 827 | &intel_crt_connector_funcs, DRM_MODE_CONNECTOR_VGA); |
| 828 | |
Chris Wilson | c9a1c4c | 2010-11-16 10:58:37 +0000 | [diff] [blame] | 829 | drm_encoder_init(dev, &crt->base.base, &intel_crt_enc_funcs, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 830 | DRM_MODE_ENCODER_DAC); |
| 831 | |
Chris Wilson | c9a1c4c | 2010-11-16 10:58:37 +0000 | [diff] [blame] | 832 | intel_connector_attach_encoder(intel_connector, &crt->base); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 833 | |
Chris Wilson | c9a1c4c | 2010-11-16 10:58:37 +0000 | [diff] [blame] | 834 | crt->base.type = INTEL_OUTPUT_ANALOG; |
Ville Syrjälä | 301ea74 | 2014-03-03 16:15:30 +0200 | [diff] [blame] | 835 | crt->base.cloneable = (1 << INTEL_OUTPUT_DVO) | (1 << INTEL_OUTPUT_HDMI); |
Paulo Zanoni | d63fa0d | 2012-11-20 13:27:35 -0200 | [diff] [blame] | 836 | if (IS_I830(dev)) |
Eugeni Dodonov | 59c859d | 2012-05-09 15:37:19 -0300 | [diff] [blame] | 837 | crt->base.crtc_mask = (1 << 0); |
| 838 | else |
Keith Packard | 0826874 | 2012-08-13 21:34:45 -0700 | [diff] [blame] | 839 | crt->base.crtc_mask = (1 << 0) | (1 << 1) | (1 << 2); |
Eugeni Dodonov | 59c859d | 2012-05-09 15:37:19 -0300 | [diff] [blame] | 840 | |
Daniel Vetter | dbb0257 | 2012-01-28 14:49:23 +0100 | [diff] [blame] | 841 | if (IS_GEN2(dev)) |
| 842 | connector->interlace_allowed = 0; |
| 843 | else |
| 844 | connector->interlace_allowed = 1; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 845 | connector->doublescan_allowed = 0; |
| 846 | |
Jesse Barnes | df0323c | 2012-04-17 15:06:33 -0700 | [diff] [blame] | 847 | if (HAS_PCH_SPLIT(dev)) |
Daniel Vetter | 540a895 | 2012-07-11 16:27:57 +0200 | [diff] [blame] | 848 | crt->adpa_reg = PCH_ADPA; |
| 849 | else if (IS_VALLEYVIEW(dev)) |
| 850 | crt->adpa_reg = VLV_ADPA; |
Jesse Barnes | df0323c | 2012-04-17 15:06:33 -0700 | [diff] [blame] | 851 | else |
Daniel Vetter | 540a895 | 2012-07-11 16:27:57 +0200 | [diff] [blame] | 852 | crt->adpa_reg = ADPA; |
Jesse Barnes | df0323c | 2012-04-17 15:06:33 -0700 | [diff] [blame] | 853 | |
Daniel Vetter | 5bfe2ac | 2013-03-27 00:44:55 +0100 | [diff] [blame] | 854 | crt->base.compute_config = intel_crt_compute_config; |
Daniel Vetter | 2124604 | 2012-07-01 14:58:27 +0200 | [diff] [blame] | 855 | crt->base.disable = intel_disable_crt; |
| 856 | crt->base.enable = intel_enable_crt; |
Egbert Eich | 1d843f9 | 2013-02-25 12:06:49 -0500 | [diff] [blame] | 857 | if (I915_HAS_HOTPLUG(dev)) |
| 858 | crt->base.hpd_pin = HPD_CRT; |
Ville Syrjälä | a298579 | 2013-11-07 19:25:59 +0200 | [diff] [blame] | 859 | if (HAS_DDI(dev)) { |
| 860 | crt->base.get_config = hsw_crt_get_config; |
Paulo Zanoni | 4eda01b | 2012-10-31 18:12:21 -0200 | [diff] [blame] | 861 | crt->base.get_hw_state = intel_ddi_get_hw_state; |
Ville Syrjälä | a298579 | 2013-11-07 19:25:59 +0200 | [diff] [blame] | 862 | } else { |
| 863 | crt->base.get_config = intel_crt_get_config; |
Paulo Zanoni | 4eda01b | 2012-10-31 18:12:21 -0200 | [diff] [blame] | 864 | crt->base.get_hw_state = intel_crt_get_hw_state; |
Ville Syrjälä | a298579 | 2013-11-07 19:25:59 +0200 | [diff] [blame] | 865 | } |
Daniel Vetter | e403fc9 | 2012-07-02 13:41:21 +0200 | [diff] [blame] | 866 | intel_connector->get_hw_state = intel_connector_get_hw_state; |
Imre Deak | 4932e2c | 2014-02-11 17:12:48 +0200 | [diff] [blame] | 867 | intel_connector->unregister = intel_connector_unregister; |
Daniel Vetter | 2124604 | 2012-07-01 14:58:27 +0200 | [diff] [blame] | 868 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 869 | drm_connector_helper_add(connector, &intel_crt_connector_helper_funcs); |
| 870 | |
| 871 | drm_sysfs_connector_add(connector); |
Jesse Barnes | b01f2c3 | 2009-12-11 11:07:17 -0800 | [diff] [blame] | 872 | |
Egbert Eich | 821450c | 2013-04-16 13:36:55 +0200 | [diff] [blame] | 873 | if (!I915_HAS_HOTPLUG(dev)) |
| 874 | intel_connector->polled = DRM_CONNECTOR_POLL_CONNECT; |
Dave Airlie | eb1f8e4 | 2010-05-07 06:42:51 +0000 | [diff] [blame] | 875 | |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 876 | /* |
| 877 | * Configure the automatic hotplug detection stuff |
| 878 | */ |
| 879 | crt->force_hotplug_required = 0; |
Keith Packard | e7dbb2f | 2010-11-16 16:03:53 +0800 | [diff] [blame] | 880 | |
Paulo Zanoni | 68d18ad | 2012-12-01 12:04:26 -0200 | [diff] [blame] | 881 | /* |
Damien Lespiau | 3e68320 | 2012-12-11 18:48:29 +0000 | [diff] [blame] | 882 | * TODO: find a proper way to discover whether we need to set the the |
| 883 | * polarity and link reversal bits or not, instead of relying on the |
| 884 | * BIOS. |
Paulo Zanoni | 68d18ad | 2012-12-01 12:04:26 -0200 | [diff] [blame] | 885 | */ |
Damien Lespiau | 3e68320 | 2012-12-11 18:48:29 +0000 | [diff] [blame] | 886 | if (HAS_PCH_LPT(dev)) { |
| 887 | u32 fdi_config = FDI_RX_POLARITY_REVERSED_LPT | |
| 888 | FDI_RX_LINK_REVERSAL_OVERRIDE; |
| 889 | |
| 890 | dev_priv->fdi_rx_config = I915_READ(_FDI_RXA_CTL) & fdi_config; |
| 891 | } |
Daniel Vetter | 754970e | 2014-01-16 22:28:44 +0100 | [diff] [blame] | 892 | |
| 893 | intel_crt_reset(connector); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 894 | } |