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