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