Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright © 2006-2007 Intel Corporation |
| 3 | * Copyright (c) 2006 Dave Airlie <airlied@linux.ie> |
| 4 | * |
| 5 | * Permission is hereby granted, free of charge, to any person obtaining a |
| 6 | * copy of this software and associated documentation files (the "Software"), |
| 7 | * to deal in the Software without restriction, including without limitation |
| 8 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
| 9 | * and/or sell copies of the Software, and to permit persons to whom the |
| 10 | * Software is furnished to do so, subject to the following conditions: |
| 11 | * |
| 12 | * The above copyright notice and this permission notice (including the next |
| 13 | * paragraph) shall be included in all copies or substantial portions of the |
| 14 | * Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 21 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
| 22 | * DEALINGS IN THE SOFTWARE. |
| 23 | * |
| 24 | * Authors: |
| 25 | * Eric Anholt <eric@anholt.net> |
| 26 | * Dave Airlie <airlied@linux.ie> |
| 27 | * Jesse Barnes <jesse.barnes@intel.com> |
| 28 | */ |
| 29 | |
Jesse Barnes | c1c7af6 | 2009-09-10 15:28:03 -0700 | [diff] [blame] | 30 | #include <acpi/button.h> |
Paul Collins | 565dcd4 | 2009-02-04 23:05:41 +1300 | [diff] [blame] | 31 | #include <linux/dmi.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 32 | #include <linux/i2c.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 33 | #include <linux/slab.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 34 | #include "drmP.h" |
| 35 | #include "drm.h" |
| 36 | #include "drm_crtc.h" |
| 37 | #include "drm_edid.h" |
| 38 | #include "intel_drv.h" |
| 39 | #include "i915_drm.h" |
| 40 | #include "i915_drv.h" |
Zhao Yakui | e99da35 | 2009-06-26 09:46:18 +0800 | [diff] [blame] | 41 | #include <linux/acpi.h> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 42 | |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 43 | /* Private structure for the integrated LVDS support */ |
| 44 | struct intel_lvds_priv { |
| 45 | int fitting_mode; |
| 46 | u32 pfit_control; |
| 47 | u32 pfit_pgm_ratios; |
| 48 | }; |
| 49 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 50 | /** |
| 51 | * Sets the backlight level. |
| 52 | * |
| 53 | * \param level backlight level, from 0 to intel_lvds_get_max_backlight(). |
| 54 | */ |
| 55 | static void intel_lvds_set_backlight(struct drm_device *dev, int level) |
| 56 | { |
| 57 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 58 | u32 blc_pwm_ctl, reg; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 59 | |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 60 | if (HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 61 | reg = BLC_PWM_CPU_CTL; |
| 62 | else |
| 63 | reg = BLC_PWM_CTL; |
| 64 | |
| 65 | blc_pwm_ctl = I915_READ(reg) & ~BACKLIGHT_DUTY_CYCLE_MASK; |
| 66 | I915_WRITE(reg, (blc_pwm_ctl | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 67 | (level << BACKLIGHT_DUTY_CYCLE_SHIFT))); |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * Returns the maximum level of the backlight duty cycle field. |
| 72 | */ |
| 73 | static u32 intel_lvds_get_max_backlight(struct drm_device *dev) |
| 74 | { |
| 75 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 76 | u32 reg; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 77 | |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 78 | if (HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 79 | reg = BLC_PWM_PCH_CTL2; |
| 80 | else |
| 81 | reg = BLC_PWM_CTL; |
| 82 | |
| 83 | return ((I915_READ(reg) & BACKLIGHT_MODULATION_FREQ_MASK) >> |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 84 | BACKLIGHT_MODULATION_FREQ_SHIFT) * 2; |
| 85 | } |
| 86 | |
| 87 | /** |
| 88 | * Sets the power state for the panel. |
| 89 | */ |
| 90 | static void intel_lvds_set_power(struct drm_device *dev, bool on) |
| 91 | { |
| 92 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 469d129 | 2010-02-11 12:41:05 -0800 | [diff] [blame] | 93 | u32 pp_status, ctl_reg, status_reg, lvds_reg; |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 94 | |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 95 | if (HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 96 | ctl_reg = PCH_PP_CONTROL; |
| 97 | status_reg = PCH_PP_STATUS; |
Jesse Barnes | 469d129 | 2010-02-11 12:41:05 -0800 | [diff] [blame] | 98 | lvds_reg = PCH_LVDS; |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 99 | } else { |
| 100 | ctl_reg = PP_CONTROL; |
| 101 | status_reg = PP_STATUS; |
Jesse Barnes | 469d129 | 2010-02-11 12:41:05 -0800 | [diff] [blame] | 102 | lvds_reg = LVDS; |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 103 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 104 | |
| 105 | if (on) { |
Jesse Barnes | 469d129 | 2010-02-11 12:41:05 -0800 | [diff] [blame] | 106 | I915_WRITE(lvds_reg, I915_READ(lvds_reg) | LVDS_PORT_EN); |
| 107 | POSTING_READ(lvds_reg); |
| 108 | |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 109 | I915_WRITE(ctl_reg, I915_READ(ctl_reg) | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 110 | POWER_TARGET_ON); |
| 111 | do { |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 112 | pp_status = I915_READ(status_reg); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 113 | } while ((pp_status & PP_ON) == 0); |
| 114 | |
| 115 | intel_lvds_set_backlight(dev, dev_priv->backlight_duty_cycle); |
| 116 | } else { |
| 117 | intel_lvds_set_backlight(dev, 0); |
| 118 | |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 119 | I915_WRITE(ctl_reg, I915_READ(ctl_reg) & |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 120 | ~POWER_TARGET_ON); |
| 121 | do { |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 122 | pp_status = I915_READ(status_reg); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 123 | } while (pp_status & PP_ON); |
Jesse Barnes | 469d129 | 2010-02-11 12:41:05 -0800 | [diff] [blame] | 124 | |
| 125 | I915_WRITE(lvds_reg, I915_READ(lvds_reg) & ~LVDS_PORT_EN); |
| 126 | POSTING_READ(lvds_reg); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 127 | } |
| 128 | } |
| 129 | |
| 130 | static void intel_lvds_dpms(struct drm_encoder *encoder, int mode) |
| 131 | { |
| 132 | struct drm_device *dev = encoder->dev; |
| 133 | |
| 134 | if (mode == DRM_MODE_DPMS_ON) |
| 135 | intel_lvds_set_power(dev, true); |
| 136 | else |
| 137 | intel_lvds_set_power(dev, false); |
| 138 | |
| 139 | /* XXX: We never power down the LVDS pairs. */ |
| 140 | } |
| 141 | |
| 142 | static void intel_lvds_save(struct drm_connector *connector) |
| 143 | { |
| 144 | struct drm_device *dev = connector->dev; |
| 145 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 146 | u32 pp_on_reg, pp_off_reg, pp_ctl_reg, pp_div_reg; |
| 147 | u32 pwm_ctl_reg; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 148 | |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 149 | if (HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 150 | pp_on_reg = PCH_PP_ON_DELAYS; |
| 151 | pp_off_reg = PCH_PP_OFF_DELAYS; |
| 152 | pp_ctl_reg = PCH_PP_CONTROL; |
| 153 | pp_div_reg = PCH_PP_DIVISOR; |
| 154 | pwm_ctl_reg = BLC_PWM_CPU_CTL; |
| 155 | } else { |
| 156 | pp_on_reg = PP_ON_DELAYS; |
| 157 | pp_off_reg = PP_OFF_DELAYS; |
| 158 | pp_ctl_reg = PP_CONTROL; |
| 159 | pp_div_reg = PP_DIVISOR; |
| 160 | pwm_ctl_reg = BLC_PWM_CTL; |
| 161 | } |
| 162 | |
| 163 | dev_priv->savePP_ON = I915_READ(pp_on_reg); |
| 164 | dev_priv->savePP_OFF = I915_READ(pp_off_reg); |
| 165 | dev_priv->savePP_CONTROL = I915_READ(pp_ctl_reg); |
| 166 | dev_priv->savePP_DIVISOR = I915_READ(pp_div_reg); |
| 167 | dev_priv->saveBLC_PWM_CTL = I915_READ(pwm_ctl_reg); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 168 | dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL & |
| 169 | BACKLIGHT_DUTY_CYCLE_MASK); |
| 170 | |
| 171 | /* |
| 172 | * If the light is off at server startup, just make it full brightness |
| 173 | */ |
| 174 | if (dev_priv->backlight_duty_cycle == 0) |
| 175 | dev_priv->backlight_duty_cycle = |
| 176 | intel_lvds_get_max_backlight(dev); |
| 177 | } |
| 178 | |
| 179 | static void intel_lvds_restore(struct drm_connector *connector) |
| 180 | { |
| 181 | struct drm_device *dev = connector->dev; |
| 182 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 183 | u32 pp_on_reg, pp_off_reg, pp_ctl_reg, pp_div_reg; |
| 184 | u32 pwm_ctl_reg; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 185 | |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 186 | if (HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 187 | pp_on_reg = PCH_PP_ON_DELAYS; |
| 188 | pp_off_reg = PCH_PP_OFF_DELAYS; |
| 189 | pp_ctl_reg = PCH_PP_CONTROL; |
| 190 | pp_div_reg = PCH_PP_DIVISOR; |
| 191 | pwm_ctl_reg = BLC_PWM_CPU_CTL; |
| 192 | } else { |
| 193 | pp_on_reg = PP_ON_DELAYS; |
| 194 | pp_off_reg = PP_OFF_DELAYS; |
| 195 | pp_ctl_reg = PP_CONTROL; |
| 196 | pp_div_reg = PP_DIVISOR; |
| 197 | pwm_ctl_reg = BLC_PWM_CTL; |
| 198 | } |
| 199 | |
| 200 | I915_WRITE(pwm_ctl_reg, dev_priv->saveBLC_PWM_CTL); |
| 201 | I915_WRITE(pp_on_reg, dev_priv->savePP_ON); |
| 202 | I915_WRITE(pp_off_reg, dev_priv->savePP_OFF); |
| 203 | I915_WRITE(pp_div_reg, dev_priv->savePP_DIVISOR); |
| 204 | I915_WRITE(pp_ctl_reg, dev_priv->savePP_CONTROL); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 205 | if (dev_priv->savePP_CONTROL & POWER_TARGET_ON) |
| 206 | intel_lvds_set_power(dev, true); |
| 207 | else |
| 208 | intel_lvds_set_power(dev, false); |
| 209 | } |
| 210 | |
| 211 | static int intel_lvds_mode_valid(struct drm_connector *connector, |
| 212 | struct drm_display_mode *mode) |
| 213 | { |
| 214 | struct drm_device *dev = connector->dev; |
| 215 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 216 | struct drm_display_mode *fixed_mode = dev_priv->panel_fixed_mode; |
| 217 | |
| 218 | if (fixed_mode) { |
| 219 | if (mode->hdisplay > fixed_mode->hdisplay) |
| 220 | return MODE_PANEL; |
| 221 | if (mode->vdisplay > fixed_mode->vdisplay) |
| 222 | return MODE_PANEL; |
| 223 | } |
| 224 | |
| 225 | return MODE_OK; |
| 226 | } |
| 227 | |
| 228 | static bool intel_lvds_mode_fixup(struct drm_encoder *encoder, |
| 229 | struct drm_display_mode *mode, |
| 230 | struct drm_display_mode *adjusted_mode) |
| 231 | { |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 232 | /* |
| 233 | * float point operation is not supported . So the PANEL_RATIO_FACTOR |
| 234 | * is defined, which can avoid the float point computation when |
| 235 | * calculating the panel ratio. |
| 236 | */ |
| 237 | #define PANEL_RATIO_FACTOR 8192 |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 238 | struct drm_device *dev = encoder->dev; |
| 239 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 240 | struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc); |
| 241 | struct drm_encoder *tmp_encoder; |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 242 | struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder); |
| 243 | struct intel_lvds_priv *lvds_priv = intel_encoder->dev_priv; |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 244 | u32 pfit_control = 0, pfit_pgm_ratios = 0; |
| 245 | int left_border = 0, right_border = 0, top_border = 0; |
| 246 | int bottom_border = 0; |
| 247 | bool border = 0; |
| 248 | int panel_ratio, desired_ratio, vert_scale, horiz_scale; |
| 249 | int horiz_ratio, vert_ratio; |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 250 | u32 hsync_width, vsync_width; |
| 251 | u32 hblank_width, vblank_width; |
| 252 | u32 hsync_pos, vsync_pos; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 253 | |
| 254 | /* Should never happen!! */ |
| 255 | if (!IS_I965G(dev) && intel_crtc->pipe == 0) { |
Keith Packard | 1ae8c0a | 2009-06-28 15:42:17 -0700 | [diff] [blame] | 256 | DRM_ERROR("Can't support LVDS on pipe A\n"); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 257 | return false; |
| 258 | } |
| 259 | |
| 260 | /* Should never happen!! */ |
| 261 | list_for_each_entry(tmp_encoder, &dev->mode_config.encoder_list, head) { |
| 262 | if (tmp_encoder != encoder && tmp_encoder->crtc == encoder->crtc) { |
Keith Packard | 1ae8c0a | 2009-06-28 15:42:17 -0700 | [diff] [blame] | 263 | DRM_ERROR("Can't enable LVDS and another " |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 264 | "encoder on the same pipe\n"); |
| 265 | return false; |
| 266 | } |
| 267 | } |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 268 | /* If we don't have a panel mode, there is nothing we can do */ |
| 269 | if (dev_priv->panel_fixed_mode == NULL) |
| 270 | return true; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 271 | /* |
| 272 | * If we have timings from the BIOS for the panel, put them in |
| 273 | * to the adjusted mode. The CRTC will be set up for this mode, |
| 274 | * with the panel scaling set up to source from the H/VDisplay |
| 275 | * of the original mode. |
| 276 | */ |
| 277 | if (dev_priv->panel_fixed_mode != NULL) { |
| 278 | adjusted_mode->hdisplay = dev_priv->panel_fixed_mode->hdisplay; |
| 279 | adjusted_mode->hsync_start = |
| 280 | dev_priv->panel_fixed_mode->hsync_start; |
| 281 | adjusted_mode->hsync_end = |
| 282 | dev_priv->panel_fixed_mode->hsync_end; |
| 283 | adjusted_mode->htotal = dev_priv->panel_fixed_mode->htotal; |
| 284 | adjusted_mode->vdisplay = dev_priv->panel_fixed_mode->vdisplay; |
| 285 | adjusted_mode->vsync_start = |
| 286 | dev_priv->panel_fixed_mode->vsync_start; |
| 287 | adjusted_mode->vsync_end = |
| 288 | dev_priv->panel_fixed_mode->vsync_end; |
| 289 | adjusted_mode->vtotal = dev_priv->panel_fixed_mode->vtotal; |
| 290 | adjusted_mode->clock = dev_priv->panel_fixed_mode->clock; |
| 291 | drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V); |
| 292 | } |
| 293 | |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 294 | /* Make sure pre-965s set dither correctly */ |
| 295 | if (!IS_I965G(dev)) { |
| 296 | if (dev_priv->panel_wants_dither || dev_priv->lvds_dither) |
| 297 | pfit_control |= PANEL_8TO6_DITHER_ENABLE; |
| 298 | } |
| 299 | |
| 300 | /* Native modes don't need fitting */ |
| 301 | if (adjusted_mode->hdisplay == mode->hdisplay && |
| 302 | adjusted_mode->vdisplay == mode->vdisplay) { |
| 303 | pfit_pgm_ratios = 0; |
| 304 | border = 0; |
| 305 | goto out; |
| 306 | } |
| 307 | |
Zhenyu Wang | 8dd81a3 | 2009-09-19 14:54:09 +0800 | [diff] [blame] | 308 | /* full screen scale for now */ |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 309 | if (HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 8dd81a3 | 2009-09-19 14:54:09 +0800 | [diff] [blame] | 310 | goto out; |
| 311 | |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 312 | /* 965+ wants fuzzy fitting */ |
| 313 | if (IS_I965G(dev)) |
| 314 | pfit_control |= (intel_crtc->pipe << PFIT_PIPE_SHIFT) | |
| 315 | PFIT_FILTER_FUZZY; |
| 316 | |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 317 | hsync_width = adjusted_mode->crtc_hsync_end - |
| 318 | adjusted_mode->crtc_hsync_start; |
| 319 | vsync_width = adjusted_mode->crtc_vsync_end - |
| 320 | adjusted_mode->crtc_vsync_start; |
| 321 | hblank_width = adjusted_mode->crtc_hblank_end - |
| 322 | adjusted_mode->crtc_hblank_start; |
| 323 | vblank_width = adjusted_mode->crtc_vblank_end - |
| 324 | adjusted_mode->crtc_vblank_start; |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 325 | /* |
| 326 | * Deal with panel fitting options. Figure out how to stretch the |
| 327 | * image based on its aspect ratio & the current panel fitting mode. |
| 328 | */ |
| 329 | panel_ratio = adjusted_mode->hdisplay * PANEL_RATIO_FACTOR / |
| 330 | adjusted_mode->vdisplay; |
| 331 | desired_ratio = mode->hdisplay * PANEL_RATIO_FACTOR / |
| 332 | mode->vdisplay; |
| 333 | /* |
| 334 | * Enable automatic panel scaling for non-native modes so that they fill |
| 335 | * the screen. Should be enabled before the pipe is enabled, according |
| 336 | * to register description and PRM. |
| 337 | * Change the value here to see the borders for debugging |
| 338 | */ |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 339 | if (!HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 8dd81a3 | 2009-09-19 14:54:09 +0800 | [diff] [blame] | 340 | I915_WRITE(BCLRPAT_A, 0); |
| 341 | I915_WRITE(BCLRPAT_B, 0); |
| 342 | } |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 343 | |
| 344 | switch (lvds_priv->fitting_mode) { |
Jesse Barnes | 53bd838 | 2009-07-01 10:04:40 -0700 | [diff] [blame] | 345 | case DRM_MODE_SCALE_CENTER: |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 346 | /* |
| 347 | * For centered modes, we have to calculate border widths & |
| 348 | * heights and modify the values programmed into the CRTC. |
| 349 | */ |
| 350 | left_border = (adjusted_mode->hdisplay - mode->hdisplay) / 2; |
| 351 | right_border = left_border; |
| 352 | if (mode->hdisplay & 1) |
| 353 | right_border++; |
| 354 | top_border = (adjusted_mode->vdisplay - mode->vdisplay) / 2; |
| 355 | bottom_border = top_border; |
| 356 | if (mode->vdisplay & 1) |
| 357 | bottom_border++; |
| 358 | /* Set active & border values */ |
| 359 | adjusted_mode->crtc_hdisplay = mode->hdisplay; |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 360 | /* Keep the boder be even */ |
| 361 | if (right_border & 1) |
| 362 | right_border++; |
| 363 | /* use the border directly instead of border minuse one */ |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 364 | adjusted_mode->crtc_hblank_start = mode->hdisplay + |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 365 | right_border; |
| 366 | /* keep the blank width constant */ |
| 367 | adjusted_mode->crtc_hblank_end = |
| 368 | adjusted_mode->crtc_hblank_start + hblank_width; |
| 369 | /* get the hsync pos relative to hblank start */ |
| 370 | hsync_pos = (hblank_width - hsync_width) / 2; |
| 371 | /* keep the hsync pos be even */ |
| 372 | if (hsync_pos & 1) |
| 373 | hsync_pos++; |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 374 | adjusted_mode->crtc_hsync_start = |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 375 | adjusted_mode->crtc_hblank_start + hsync_pos; |
| 376 | /* keep the hsync width constant */ |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 377 | adjusted_mode->crtc_hsync_end = |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 378 | adjusted_mode->crtc_hsync_start + hsync_width; |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 379 | adjusted_mode->crtc_vdisplay = mode->vdisplay; |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 380 | /* use the border instead of border minus one */ |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 381 | adjusted_mode->crtc_vblank_start = mode->vdisplay + |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 382 | bottom_border; |
| 383 | /* keep the vblank width constant */ |
| 384 | adjusted_mode->crtc_vblank_end = |
| 385 | adjusted_mode->crtc_vblank_start + vblank_width; |
| 386 | /* get the vsync start postion relative to vblank start */ |
| 387 | vsync_pos = (vblank_width - vsync_width) / 2; |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 388 | adjusted_mode->crtc_vsync_start = |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 389 | adjusted_mode->crtc_vblank_start + vsync_pos; |
| 390 | /* keep the vsync width constant */ |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 391 | adjusted_mode->crtc_vsync_end = |
Zhao Yakui | a3e17eb | 2009-10-10 10:42:37 +0800 | [diff] [blame] | 392 | adjusted_mode->crtc_vsync_start + vsync_width; |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 393 | border = 1; |
| 394 | break; |
| 395 | case DRM_MODE_SCALE_ASPECT: |
| 396 | /* Scale but preserve the spect ratio */ |
| 397 | pfit_control |= PFIT_ENABLE; |
| 398 | if (IS_I965G(dev)) { |
| 399 | /* 965+ is easy, it does everything in hw */ |
| 400 | if (panel_ratio > desired_ratio) |
| 401 | pfit_control |= PFIT_SCALING_PILLAR; |
| 402 | else if (panel_ratio < desired_ratio) |
| 403 | pfit_control |= PFIT_SCALING_LETTER; |
| 404 | else |
| 405 | pfit_control |= PFIT_SCALING_AUTO; |
| 406 | } else { |
| 407 | /* |
| 408 | * For earlier chips we have to calculate the scaling |
| 409 | * ratio by hand and program it into the |
| 410 | * PFIT_PGM_RATIO register |
| 411 | */ |
| 412 | u32 horiz_bits, vert_bits, bits = 12; |
| 413 | horiz_ratio = mode->hdisplay * PANEL_RATIO_FACTOR/ |
| 414 | adjusted_mode->hdisplay; |
| 415 | vert_ratio = mode->vdisplay * PANEL_RATIO_FACTOR/ |
| 416 | adjusted_mode->vdisplay; |
| 417 | horiz_scale = adjusted_mode->hdisplay * |
| 418 | PANEL_RATIO_FACTOR / mode->hdisplay; |
| 419 | vert_scale = adjusted_mode->vdisplay * |
| 420 | PANEL_RATIO_FACTOR / mode->vdisplay; |
| 421 | |
| 422 | /* retain aspect ratio */ |
| 423 | if (panel_ratio > desired_ratio) { /* Pillar */ |
| 424 | u32 scaled_width; |
| 425 | scaled_width = mode->hdisplay * vert_scale / |
| 426 | PANEL_RATIO_FACTOR; |
| 427 | horiz_ratio = vert_ratio; |
| 428 | pfit_control |= (VERT_AUTO_SCALE | |
| 429 | VERT_INTERP_BILINEAR | |
| 430 | HORIZ_INTERP_BILINEAR); |
| 431 | /* Pillar will have left/right borders */ |
| 432 | left_border = (adjusted_mode->hdisplay - |
| 433 | scaled_width) / 2; |
| 434 | right_border = left_border; |
| 435 | if (mode->hdisplay & 1) /* odd resolutions */ |
| 436 | right_border++; |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 437 | /* keep the border be even */ |
| 438 | if (right_border & 1) |
| 439 | right_border++; |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 440 | adjusted_mode->crtc_hdisplay = scaled_width; |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 441 | /* use border instead of border minus one */ |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 442 | adjusted_mode->crtc_hblank_start = |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 443 | scaled_width + right_border; |
| 444 | /* keep the hblank width constant */ |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 445 | adjusted_mode->crtc_hblank_end = |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 446 | adjusted_mode->crtc_hblank_start + |
| 447 | hblank_width; |
| 448 | /* |
| 449 | * get the hsync start pos relative to |
| 450 | * hblank start |
| 451 | */ |
| 452 | hsync_pos = (hblank_width - hsync_width) / 2; |
| 453 | /* keep the hsync_pos be even */ |
| 454 | if (hsync_pos & 1) |
| 455 | hsync_pos++; |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 456 | adjusted_mode->crtc_hsync_start = |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 457 | adjusted_mode->crtc_hblank_start + |
| 458 | hsync_pos; |
| 459 | /* keept hsync width constant */ |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 460 | adjusted_mode->crtc_hsync_end = |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 461 | adjusted_mode->crtc_hsync_start + |
| 462 | hsync_width; |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 463 | border = 1; |
| 464 | } else if (panel_ratio < desired_ratio) { /* letter */ |
| 465 | u32 scaled_height = mode->vdisplay * |
| 466 | horiz_scale / PANEL_RATIO_FACTOR; |
| 467 | vert_ratio = horiz_ratio; |
| 468 | pfit_control |= (HORIZ_AUTO_SCALE | |
| 469 | VERT_INTERP_BILINEAR | |
| 470 | HORIZ_INTERP_BILINEAR); |
| 471 | /* Letterbox will have top/bottom border */ |
| 472 | top_border = (adjusted_mode->vdisplay - |
| 473 | scaled_height) / 2; |
| 474 | bottom_border = top_border; |
| 475 | if (mode->vdisplay & 1) |
| 476 | bottom_border++; |
| 477 | adjusted_mode->crtc_vdisplay = scaled_height; |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 478 | /* use border instead of border minus one */ |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 479 | adjusted_mode->crtc_vblank_start = |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 480 | scaled_height + bottom_border; |
| 481 | /* keep the vblank width constant */ |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 482 | adjusted_mode->crtc_vblank_end = |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 483 | adjusted_mode->crtc_vblank_start + |
| 484 | vblank_width; |
| 485 | /* |
| 486 | * get the vsync start pos relative to |
| 487 | * vblank start |
| 488 | */ |
| 489 | vsync_pos = (vblank_width - vsync_width) / 2; |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 490 | adjusted_mode->crtc_vsync_start = |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 491 | adjusted_mode->crtc_vblank_start + |
| 492 | vsync_pos; |
| 493 | /* keep the vsync width constant */ |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 494 | adjusted_mode->crtc_vsync_end = |
Zhao Yakui | aa0261f | 2009-06-22 15:31:26 +0800 | [diff] [blame] | 495 | adjusted_mode->crtc_vsync_start + |
| 496 | vsync_width; |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 497 | border = 1; |
| 498 | } else { |
| 499 | /* Aspects match, Let hw scale both directions */ |
| 500 | pfit_control |= (VERT_AUTO_SCALE | |
| 501 | HORIZ_AUTO_SCALE | |
| 502 | VERT_INTERP_BILINEAR | |
| 503 | HORIZ_INTERP_BILINEAR); |
| 504 | } |
| 505 | horiz_bits = (1 << bits) * horiz_ratio / |
| 506 | PANEL_RATIO_FACTOR; |
| 507 | vert_bits = (1 << bits) * vert_ratio / |
| 508 | PANEL_RATIO_FACTOR; |
| 509 | pfit_pgm_ratios = |
| 510 | ((vert_bits << PFIT_VERT_SCALE_SHIFT) & |
| 511 | PFIT_VERT_SCALE_MASK) | |
| 512 | ((horiz_bits << PFIT_HORIZ_SCALE_SHIFT) & |
| 513 | PFIT_HORIZ_SCALE_MASK); |
| 514 | } |
| 515 | break; |
| 516 | |
| 517 | case DRM_MODE_SCALE_FULLSCREEN: |
| 518 | /* |
| 519 | * Full scaling, even if it changes the aspect ratio. |
| 520 | * Fortunately this is all done for us in hw. |
| 521 | */ |
| 522 | pfit_control |= PFIT_ENABLE; |
| 523 | if (IS_I965G(dev)) |
| 524 | pfit_control |= PFIT_SCALING_AUTO; |
| 525 | else |
| 526 | pfit_control |= (VERT_AUTO_SCALE | HORIZ_AUTO_SCALE | |
| 527 | VERT_INTERP_BILINEAR | |
| 528 | HORIZ_INTERP_BILINEAR); |
| 529 | break; |
| 530 | default: |
| 531 | break; |
| 532 | } |
| 533 | |
| 534 | out: |
| 535 | lvds_priv->pfit_control = pfit_control; |
| 536 | lvds_priv->pfit_pgm_ratios = pfit_pgm_ratios; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 537 | /* |
Zhao Yakui | a3e17eb | 2009-10-10 10:42:37 +0800 | [diff] [blame] | 538 | * When there exists the border, it means that the LVDS_BORDR |
| 539 | * should be enabled. |
| 540 | */ |
| 541 | if (border) |
| 542 | dev_priv->lvds_border_bits |= LVDS_BORDER_ENABLE; |
| 543 | else |
| 544 | dev_priv->lvds_border_bits &= ~(LVDS_BORDER_ENABLE); |
| 545 | /* |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 546 | * XXX: It would be nice to support lower refresh rates on the |
| 547 | * panels to reduce power consumption, and perhaps match the |
| 548 | * user's requested refresh rate. |
| 549 | */ |
| 550 | |
| 551 | return true; |
| 552 | } |
| 553 | |
| 554 | static void intel_lvds_prepare(struct drm_encoder *encoder) |
| 555 | { |
| 556 | struct drm_device *dev = encoder->dev; |
| 557 | struct drm_i915_private *dev_priv = dev->dev_private; |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 558 | u32 reg; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 559 | |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 560 | if (HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 561 | reg = BLC_PWM_CPU_CTL; |
| 562 | else |
| 563 | reg = BLC_PWM_CTL; |
| 564 | |
| 565 | dev_priv->saveBLC_PWM_CTL = I915_READ(reg); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 566 | dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL & |
| 567 | BACKLIGHT_DUTY_CYCLE_MASK); |
| 568 | |
| 569 | intel_lvds_set_power(dev, false); |
| 570 | } |
| 571 | |
| 572 | static void intel_lvds_commit( struct drm_encoder *encoder) |
| 573 | { |
| 574 | struct drm_device *dev = encoder->dev; |
| 575 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 576 | |
| 577 | if (dev_priv->backlight_duty_cycle == 0) |
| 578 | dev_priv->backlight_duty_cycle = |
| 579 | intel_lvds_get_max_backlight(dev); |
| 580 | |
| 581 | intel_lvds_set_power(dev, true); |
| 582 | } |
| 583 | |
| 584 | static void intel_lvds_mode_set(struct drm_encoder *encoder, |
| 585 | struct drm_display_mode *mode, |
| 586 | struct drm_display_mode *adjusted_mode) |
| 587 | { |
| 588 | struct drm_device *dev = encoder->dev; |
| 589 | struct drm_i915_private *dev_priv = dev->dev_private; |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 590 | struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder); |
| 591 | struct intel_lvds_priv *lvds_priv = intel_encoder->dev_priv; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 592 | |
| 593 | /* |
| 594 | * The LVDS pin pair will already have been turned on in the |
| 595 | * intel_crtc_mode_set since it has a large impact on the DPLL |
| 596 | * settings. |
| 597 | */ |
| 598 | |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 599 | if (HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 600 | return; |
| 601 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 602 | /* |
| 603 | * Enable automatic panel scaling so that non-native modes fill the |
| 604 | * screen. Should be enabled before the pipe is enabled, according to |
| 605 | * register description and PRM. |
| 606 | */ |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 607 | I915_WRITE(PFIT_PGM_RATIOS, lvds_priv->pfit_pgm_ratios); |
| 608 | I915_WRITE(PFIT_CONTROL, lvds_priv->pfit_control); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 609 | } |
| 610 | |
| 611 | /** |
| 612 | * Detect the LVDS connection. |
| 613 | * |
Jesse Barnes | b42d4c5 | 2009-09-10 15:28:04 -0700 | [diff] [blame] | 614 | * Since LVDS doesn't have hotlug, we use the lid as a proxy. Open means |
| 615 | * connected and closed means disconnected. We also send hotplug events as |
| 616 | * needed, using lid status notification from the input layer. |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 617 | */ |
| 618 | static enum drm_connector_status intel_lvds_detect(struct drm_connector *connector) |
| 619 | { |
Jesse Barnes | 7b9c5ab | 2010-02-12 09:30:00 -0800 | [diff] [blame] | 620 | struct drm_device *dev = connector->dev; |
Jesse Barnes | b42d4c5 | 2009-09-10 15:28:04 -0700 | [diff] [blame] | 621 | enum drm_connector_status status = connector_status_connected; |
| 622 | |
Jesse Barnes | 7b9c5ab | 2010-02-12 09:30:00 -0800 | [diff] [blame] | 623 | /* ACPI lid methods were generally unreliable in this generation, so |
| 624 | * don't even bother. |
| 625 | */ |
Eric Anholt | 6e6c822 | 2010-03-17 13:48:06 -0700 | [diff] [blame] | 626 | if (IS_GEN2(dev) || IS_GEN3(dev)) |
Jesse Barnes | 7b9c5ab | 2010-02-12 09:30:00 -0800 | [diff] [blame] | 627 | return connector_status_connected; |
| 628 | |
Jesse Barnes | b42d4c5 | 2009-09-10 15:28:04 -0700 | [diff] [blame] | 629 | return status; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | /** |
| 633 | * Return the list of DDC modes if available, or the BIOS fixed mode otherwise. |
| 634 | */ |
| 635 | static int intel_lvds_get_modes(struct drm_connector *connector) |
| 636 | { |
| 637 | struct drm_device *dev = connector->dev; |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 638 | struct intel_encoder *intel_encoder = to_intel_encoder(connector); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 639 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 640 | int ret = 0; |
| 641 | |
Zhao Yakui | bfac4d6 | 2010-04-07 17:11:22 +0800 | [diff] [blame] | 642 | if (dev_priv->lvds_edid_good) { |
| 643 | ret = intel_ddc_get_modes(intel_encoder); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 644 | |
Zhao Yakui | bfac4d6 | 2010-04-07 17:11:22 +0800 | [diff] [blame] | 645 | if (ret) |
| 646 | return ret; |
| 647 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 648 | |
| 649 | /* Didn't get an EDID, so |
| 650 | * Set wide sync ranges so we get all modes |
| 651 | * handed to valid_mode for checking |
| 652 | */ |
| 653 | connector->display_info.min_vfreq = 0; |
| 654 | connector->display_info.max_vfreq = 200; |
| 655 | connector->display_info.min_hfreq = 0; |
| 656 | connector->display_info.max_hfreq = 200; |
| 657 | |
| 658 | if (dev_priv->panel_fixed_mode != NULL) { |
| 659 | struct drm_display_mode *mode; |
| 660 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 661 | mode = drm_mode_duplicate(dev, dev_priv->panel_fixed_mode); |
| 662 | drm_mode_probed_add(connector, mode); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 663 | |
| 664 | return 1; |
| 665 | } |
| 666 | |
| 667 | return 0; |
| 668 | } |
| 669 | |
Linus Torvalds | c9354c8 | 2009-11-02 09:29:55 -0800 | [diff] [blame] | 670 | /* |
| 671 | * Lid events. Note the use of 'modeset_on_lid': |
| 672 | * - we set it on lid close, and reset it on open |
| 673 | * - we use it as a "only once" bit (ie we ignore |
| 674 | * duplicate events where it was already properly |
| 675 | * set/reset) |
| 676 | * - the suspend/resume paths will also set it to |
| 677 | * zero, since they restore the mode ("lid open"). |
| 678 | */ |
Jesse Barnes | c1c7af6 | 2009-09-10 15:28:03 -0700 | [diff] [blame] | 679 | static int intel_lid_notify(struct notifier_block *nb, unsigned long val, |
| 680 | void *unused) |
| 681 | { |
| 682 | struct drm_i915_private *dev_priv = |
| 683 | container_of(nb, struct drm_i915_private, lid_notifier); |
| 684 | struct drm_device *dev = dev_priv->dev; |
Zhao Yakui | a256537 | 2009-12-11 09:26:11 +0800 | [diff] [blame] | 685 | struct drm_connector *connector = dev_priv->int_lvds_connector; |
Jesse Barnes | c1c7af6 | 2009-09-10 15:28:03 -0700 | [diff] [blame] | 686 | |
Zhao Yakui | a256537 | 2009-12-11 09:26:11 +0800 | [diff] [blame] | 687 | /* |
| 688 | * check and update the status of LVDS connector after receiving |
| 689 | * the LID nofication event. |
| 690 | */ |
| 691 | if (connector) |
| 692 | connector->status = connector->funcs->detect(connector); |
Linus Torvalds | c9354c8 | 2009-11-02 09:29:55 -0800 | [diff] [blame] | 693 | if (!acpi_lid_open()) { |
| 694 | dev_priv->modeset_on_lid = 1; |
| 695 | return NOTIFY_OK; |
Jesse Barnes | 06891e2 | 2009-09-14 10:58:48 -0700 | [diff] [blame] | 696 | } |
Jesse Barnes | c1c7af6 | 2009-09-10 15:28:03 -0700 | [diff] [blame] | 697 | |
Linus Torvalds | c9354c8 | 2009-11-02 09:29:55 -0800 | [diff] [blame] | 698 | if (!dev_priv->modeset_on_lid) |
| 699 | return NOTIFY_OK; |
| 700 | |
| 701 | dev_priv->modeset_on_lid = 0; |
| 702 | |
| 703 | mutex_lock(&dev->mode_config.mutex); |
| 704 | drm_helper_resume_force_mode(dev); |
| 705 | mutex_unlock(&dev->mode_config.mutex); |
Jesse Barnes | 0632419 | 2009-09-10 15:28:05 -0700 | [diff] [blame] | 706 | |
Jesse Barnes | c1c7af6 | 2009-09-10 15:28:03 -0700 | [diff] [blame] | 707 | return NOTIFY_OK; |
| 708 | } |
| 709 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 710 | /** |
| 711 | * intel_lvds_destroy - unregister and free LVDS structures |
| 712 | * @connector: connector to free |
| 713 | * |
| 714 | * Unregister the DDC bus for this connector then free the driver private |
| 715 | * structure. |
| 716 | */ |
| 717 | static void intel_lvds_destroy(struct drm_connector *connector) |
| 718 | { |
Jesse Barnes | c1c7af6 | 2009-09-10 15:28:03 -0700 | [diff] [blame] | 719 | struct drm_device *dev = connector->dev; |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 720 | struct intel_encoder *intel_encoder = to_intel_encoder(connector); |
Jesse Barnes | c1c7af6 | 2009-09-10 15:28:03 -0700 | [diff] [blame] | 721 | struct drm_i915_private *dev_priv = dev->dev_private; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 722 | |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 723 | if (intel_encoder->ddc_bus) |
| 724 | intel_i2c_destroy(intel_encoder->ddc_bus); |
Jesse Barnes | c1c7af6 | 2009-09-10 15:28:03 -0700 | [diff] [blame] | 725 | if (dev_priv->lid_notifier.notifier_call) |
| 726 | acpi_lid_notifier_unregister(&dev_priv->lid_notifier); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 727 | drm_sysfs_connector_remove(connector); |
| 728 | drm_connector_cleanup(connector); |
| 729 | kfree(connector); |
| 730 | } |
| 731 | |
Jesse Barnes | 335041e | 2009-01-22 22:22:06 +1000 | [diff] [blame] | 732 | static int intel_lvds_set_property(struct drm_connector *connector, |
| 733 | struct drm_property *property, |
| 734 | uint64_t value) |
| 735 | { |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 736 | struct drm_device *dev = connector->dev; |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 737 | struct intel_encoder *intel_encoder = |
| 738 | to_intel_encoder(connector); |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 739 | |
| 740 | if (property == dev->mode_config.scaling_mode_property && |
| 741 | connector->encoder) { |
| 742 | struct drm_crtc *crtc = connector->encoder->crtc; |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 743 | struct intel_lvds_priv *lvds_priv = intel_encoder->dev_priv; |
Jesse Barnes | 53bd838 | 2009-07-01 10:04:40 -0700 | [diff] [blame] | 744 | if (value == DRM_MODE_SCALE_NONE) { |
| 745 | DRM_DEBUG_KMS("no scaling not supported\n"); |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 746 | return 0; |
| 747 | } |
| 748 | if (lvds_priv->fitting_mode == value) { |
| 749 | /* the LVDS scaling property is not changed */ |
| 750 | return 0; |
| 751 | } |
| 752 | lvds_priv->fitting_mode = value; |
| 753 | if (crtc && crtc->enabled) { |
| 754 | /* |
| 755 | * If the CRTC is enabled, the display will be changed |
| 756 | * according to the new panel fitting mode. |
| 757 | */ |
| 758 | drm_crtc_helper_set_mode(crtc, &crtc->mode, |
| 759 | crtc->x, crtc->y, crtc->fb); |
| 760 | } |
| 761 | } |
| 762 | |
Jesse Barnes | 335041e | 2009-01-22 22:22:06 +1000 | [diff] [blame] | 763 | return 0; |
| 764 | } |
| 765 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 766 | static const struct drm_encoder_helper_funcs intel_lvds_helper_funcs = { |
| 767 | .dpms = intel_lvds_dpms, |
| 768 | .mode_fixup = intel_lvds_mode_fixup, |
| 769 | .prepare = intel_lvds_prepare, |
| 770 | .mode_set = intel_lvds_mode_set, |
| 771 | .commit = intel_lvds_commit, |
| 772 | }; |
| 773 | |
| 774 | static const struct drm_connector_helper_funcs intel_lvds_connector_helper_funcs = { |
| 775 | .get_modes = intel_lvds_get_modes, |
| 776 | .mode_valid = intel_lvds_mode_valid, |
| 777 | .best_encoder = intel_best_encoder, |
| 778 | }; |
| 779 | |
| 780 | static const struct drm_connector_funcs intel_lvds_connector_funcs = { |
Keith Packard | c9fb15f | 2009-05-30 20:42:28 -0700 | [diff] [blame] | 781 | .dpms = drm_helper_connector_dpms, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 782 | .save = intel_lvds_save, |
| 783 | .restore = intel_lvds_restore, |
| 784 | .detect = intel_lvds_detect, |
| 785 | .fill_modes = drm_helper_probe_single_connector_modes, |
Jesse Barnes | 335041e | 2009-01-22 22:22:06 +1000 | [diff] [blame] | 786 | .set_property = intel_lvds_set_property, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 787 | .destroy = intel_lvds_destroy, |
| 788 | }; |
| 789 | |
| 790 | |
| 791 | static void intel_lvds_enc_destroy(struct drm_encoder *encoder) |
| 792 | { |
| 793 | drm_encoder_cleanup(encoder); |
| 794 | } |
| 795 | |
| 796 | static const struct drm_encoder_funcs intel_lvds_enc_funcs = { |
| 797 | .destroy = intel_lvds_enc_destroy, |
| 798 | }; |
| 799 | |
Jarod Wilson | 425d244 | 2009-05-05 10:00:25 -0400 | [diff] [blame] | 800 | static int __init intel_no_lvds_dmi_callback(const struct dmi_system_id *id) |
| 801 | { |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 802 | DRM_DEBUG_KMS("Skipping LVDS initialization for %s\n", id->ident); |
Jarod Wilson | 425d244 | 2009-05-05 10:00:25 -0400 | [diff] [blame] | 803 | return 1; |
| 804 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 805 | |
Jarod Wilson | 425d244 | 2009-05-05 10:00:25 -0400 | [diff] [blame] | 806 | /* These systems claim to have LVDS, but really don't */ |
Jaswinder Singh Rajput | 93c05f2 | 2009-06-04 09:41:19 +1000 | [diff] [blame] | 807 | static const struct dmi_system_id intel_no_lvds[] = { |
Jarod Wilson | 425d244 | 2009-05-05 10:00:25 -0400 | [diff] [blame] | 808 | { |
| 809 | .callback = intel_no_lvds_dmi_callback, |
| 810 | .ident = "Apple Mac Mini (Core series)", |
| 811 | .matches = { |
Keith Packard | 98acd46 | 2009-06-14 12:31:58 -0700 | [diff] [blame] | 812 | DMI_MATCH(DMI_SYS_VENDOR, "Apple"), |
Jarod Wilson | 425d244 | 2009-05-05 10:00:25 -0400 | [diff] [blame] | 813 | DMI_MATCH(DMI_PRODUCT_NAME, "Macmini1,1"), |
| 814 | }, |
| 815 | }, |
| 816 | { |
| 817 | .callback = intel_no_lvds_dmi_callback, |
| 818 | .ident = "Apple Mac Mini (Core 2 series)", |
| 819 | .matches = { |
Keith Packard | 98acd46 | 2009-06-14 12:31:58 -0700 | [diff] [blame] | 820 | DMI_MATCH(DMI_SYS_VENDOR, "Apple"), |
Jarod Wilson | 425d244 | 2009-05-05 10:00:25 -0400 | [diff] [blame] | 821 | DMI_MATCH(DMI_PRODUCT_NAME, "Macmini2,1"), |
| 822 | }, |
| 823 | }, |
| 824 | { |
| 825 | .callback = intel_no_lvds_dmi_callback, |
| 826 | .ident = "MSI IM-945GSE-A", |
| 827 | .matches = { |
| 828 | DMI_MATCH(DMI_SYS_VENDOR, "MSI"), |
| 829 | DMI_MATCH(DMI_PRODUCT_NAME, "A9830IMS"), |
| 830 | }, |
| 831 | }, |
| 832 | { |
| 833 | .callback = intel_no_lvds_dmi_callback, |
| 834 | .ident = "Dell Studio Hybrid", |
| 835 | .matches = { |
| 836 | DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), |
| 837 | DMI_MATCH(DMI_PRODUCT_NAME, "Studio Hybrid 140g"), |
| 838 | }, |
| 839 | }, |
Jarod Wilson | 70aa96c | 2009-05-27 17:20:39 -0400 | [diff] [blame] | 840 | { |
| 841 | .callback = intel_no_lvds_dmi_callback, |
| 842 | .ident = "AOpen Mini PC", |
| 843 | .matches = { |
| 844 | DMI_MATCH(DMI_SYS_VENDOR, "AOpen"), |
| 845 | DMI_MATCH(DMI_PRODUCT_NAME, "i965GMx-IF"), |
| 846 | }, |
| 847 | }, |
Michael Cousin | fa0864b | 2009-06-05 21:16:22 +0200 | [diff] [blame] | 848 | { |
| 849 | .callback = intel_no_lvds_dmi_callback, |
Tormod Volden | ed8c754 | 2009-07-13 22:26:48 +0200 | [diff] [blame] | 850 | .ident = "AOpen Mini PC MP915", |
| 851 | .matches = { |
| 852 | DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"), |
| 853 | DMI_MATCH(DMI_BOARD_NAME, "i915GMx-F"), |
| 854 | }, |
| 855 | }, |
| 856 | { |
| 857 | .callback = intel_no_lvds_dmi_callback, |
Michael Cousin | fa0864b | 2009-06-05 21:16:22 +0200 | [diff] [blame] | 858 | .ident = "Aopen i945GTt-VFA", |
| 859 | .matches = { |
| 860 | DMI_MATCH(DMI_PRODUCT_VERSION, "AO00001JW"), |
| 861 | }, |
| 862 | }, |
Stefan Bader | 9875557 | 2010-03-29 17:53:12 +0200 | [diff] [blame] | 863 | { |
| 864 | .callback = intel_no_lvds_dmi_callback, |
| 865 | .ident = "Clientron U800", |
| 866 | .matches = { |
| 867 | DMI_MATCH(DMI_SYS_VENDOR, "Clientron"), |
| 868 | DMI_MATCH(DMI_PRODUCT_NAME, "U800"), |
| 869 | }, |
| 870 | }, |
Jarod Wilson | 425d244 | 2009-05-05 10:00:25 -0400 | [diff] [blame] | 871 | |
| 872 | { } /* terminating entry */ |
| 873 | }; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 874 | |
| 875 | /** |
Zhao Yakui | 18f9ed1 | 2009-11-20 03:24:16 +0000 | [diff] [blame] | 876 | * intel_find_lvds_downclock - find the reduced downclock for LVDS in EDID |
| 877 | * @dev: drm device |
| 878 | * @connector: LVDS connector |
| 879 | * |
| 880 | * Find the reduced downclock for LVDS in EDID. |
| 881 | */ |
| 882 | static void intel_find_lvds_downclock(struct drm_device *dev, |
| 883 | struct drm_connector *connector) |
| 884 | { |
| 885 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 886 | struct drm_display_mode *scan, *panel_fixed_mode; |
| 887 | int temp_downclock; |
| 888 | |
| 889 | panel_fixed_mode = dev_priv->panel_fixed_mode; |
| 890 | temp_downclock = panel_fixed_mode->clock; |
| 891 | |
| 892 | mutex_lock(&dev->mode_config.mutex); |
| 893 | list_for_each_entry(scan, &connector->probed_modes, head) { |
| 894 | /* |
| 895 | * If one mode has the same resolution with the fixed_panel |
| 896 | * mode while they have the different refresh rate, it means |
| 897 | * that the reduced downclock is found for the LVDS. In such |
| 898 | * case we can set the different FPx0/1 to dynamically select |
| 899 | * between low and high frequency. |
| 900 | */ |
| 901 | if (scan->hdisplay == panel_fixed_mode->hdisplay && |
| 902 | scan->hsync_start == panel_fixed_mode->hsync_start && |
| 903 | scan->hsync_end == panel_fixed_mode->hsync_end && |
| 904 | scan->htotal == panel_fixed_mode->htotal && |
| 905 | scan->vdisplay == panel_fixed_mode->vdisplay && |
| 906 | scan->vsync_start == panel_fixed_mode->vsync_start && |
| 907 | scan->vsync_end == panel_fixed_mode->vsync_end && |
| 908 | scan->vtotal == panel_fixed_mode->vtotal) { |
| 909 | if (scan->clock < temp_downclock) { |
| 910 | /* |
| 911 | * The downclock is already found. But we |
| 912 | * expect to find the lower downclock. |
| 913 | */ |
| 914 | temp_downclock = scan->clock; |
| 915 | } |
| 916 | } |
| 917 | } |
| 918 | mutex_unlock(&dev->mode_config.mutex); |
Jesse Barnes | 3381434 | 2010-01-14 20:48:02 +0000 | [diff] [blame] | 919 | if (temp_downclock < panel_fixed_mode->clock && |
| 920 | i915_lvds_downclock) { |
Zhao Yakui | 18f9ed1 | 2009-11-20 03:24:16 +0000 | [diff] [blame] | 921 | /* We found the downclock for LVDS. */ |
| 922 | dev_priv->lvds_downclock_avail = 1; |
| 923 | dev_priv->lvds_downclock = temp_downclock; |
| 924 | DRM_DEBUG_KMS("LVDS downclock is found in EDID. " |
| 925 | "Normal clock %dKhz, downclock %dKhz\n", |
| 926 | panel_fixed_mode->clock, temp_downclock); |
| 927 | } |
| 928 | return; |
| 929 | } |
| 930 | |
Zhao Yakui | 7cf4f69 | 2009-11-24 09:48:47 +0800 | [diff] [blame] | 931 | /* |
| 932 | * Enumerate the child dev array parsed from VBT to check whether |
| 933 | * the LVDS is present. |
| 934 | * If it is present, return 1. |
| 935 | * If it is not present, return false. |
| 936 | * If no child dev is parsed from VBT, it assumes that the LVDS is present. |
| 937 | * Note: The addin_offset should also be checked for LVDS panel. |
| 938 | * Only when it is non-zero, it is assumed that it is present. |
| 939 | */ |
Zhao Yakui | 6e36595 | 2009-12-02 10:03:34 +0800 | [diff] [blame] | 940 | static int lvds_is_present_in_vbt(struct drm_device *dev) |
Zhao Yakui | 7cf4f69 | 2009-11-24 09:48:47 +0800 | [diff] [blame] | 941 | { |
| 942 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 943 | struct child_device_config *p_child; |
| 944 | int i, ret; |
| 945 | |
| 946 | if (!dev_priv->child_dev_num) |
| 947 | return 1; |
| 948 | |
| 949 | ret = 0; |
| 950 | for (i = 0; i < dev_priv->child_dev_num; i++) { |
| 951 | p_child = dev_priv->child_dev + i; |
| 952 | /* |
| 953 | * If the device type is not LFP, continue. |
| 954 | * If the device type is 0x22, it is also regarded as LFP. |
| 955 | */ |
| 956 | if (p_child->device_type != DEVICE_TYPE_INT_LFP && |
| 957 | p_child->device_type != DEVICE_TYPE_LFP) |
| 958 | continue; |
| 959 | |
| 960 | /* The addin_offset should be checked. Only when it is |
| 961 | * non-zero, it is regarded as present. |
| 962 | */ |
| 963 | if (p_child->addin_offset) { |
| 964 | ret = 1; |
| 965 | break; |
| 966 | } |
| 967 | } |
| 968 | return ret; |
| 969 | } |
| 970 | |
Zhao Yakui | 18f9ed1 | 2009-11-20 03:24:16 +0000 | [diff] [blame] | 971 | /** |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 972 | * intel_lvds_init - setup LVDS connectors on this device |
| 973 | * @dev: drm device |
| 974 | * |
| 975 | * Create the connector, register the LVDS DDC bus, and try to figure out what |
| 976 | * modes we can display on the LVDS panel (if present). |
| 977 | */ |
| 978 | void intel_lvds_init(struct drm_device *dev) |
| 979 | { |
| 980 | struct drm_i915_private *dev_priv = dev->dev_private; |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 981 | struct intel_encoder *intel_encoder; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 982 | struct drm_connector *connector; |
| 983 | struct drm_encoder *encoder; |
| 984 | struct drm_display_mode *scan; /* *modes, *bios_mode; */ |
| 985 | struct drm_crtc *crtc; |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 986 | struct intel_lvds_priv *lvds_priv; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 987 | u32 lvds; |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 988 | int pipe, gpio = GPIOC; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 989 | |
Jarod Wilson | 425d244 | 2009-05-05 10:00:25 -0400 | [diff] [blame] | 990 | /* Skip init on machines we know falsely report LVDS */ |
| 991 | if (dmi_check_system(intel_no_lvds)) |
Paul Collins | 565dcd4 | 2009-02-04 23:05:41 +1300 | [diff] [blame] | 992 | return; |
Paul Collins | 565dcd4 | 2009-02-04 23:05:41 +1300 | [diff] [blame] | 993 | |
Matthew Garrett | 11ba159 | 2009-12-15 13:55:24 -0500 | [diff] [blame] | 994 | if (!lvds_is_present_in_vbt(dev)) { |
| 995 | DRM_DEBUG_KMS("LVDS is not present in VBT\n"); |
Zhao Yakui | e99da35 | 2009-06-26 09:46:18 +0800 | [diff] [blame] | 996 | return; |
Zhao Yakui | 7cf4f69 | 2009-11-24 09:48:47 +0800 | [diff] [blame] | 997 | } |
Zhao Yakui | e99da35 | 2009-06-26 09:46:18 +0800 | [diff] [blame] | 998 | |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 999 | if (HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 1000 | if ((I915_READ(PCH_LVDS) & LVDS_DETECTED) == 0) |
| 1001 | return; |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1002 | if (dev_priv->edp_support) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1003 | DRM_DEBUG_KMS("disable LVDS for eDP support\n"); |
Zhenyu Wang | 32f9d65 | 2009-07-24 01:00:32 +0800 | [diff] [blame] | 1004 | return; |
| 1005 | } |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 1006 | gpio = PCH_GPIOC; |
| 1007 | } |
| 1008 | |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 1009 | intel_encoder = kzalloc(sizeof(struct intel_encoder) + |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 1010 | sizeof(struct intel_lvds_priv), GFP_KERNEL); |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 1011 | if (!intel_encoder) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1012 | return; |
| 1013 | } |
| 1014 | |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 1015 | connector = &intel_encoder->base; |
| 1016 | encoder = &intel_encoder->enc; |
| 1017 | drm_connector_init(dev, &intel_encoder->base, &intel_lvds_connector_funcs, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1018 | DRM_MODE_CONNECTOR_LVDS); |
| 1019 | |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 1020 | drm_encoder_init(dev, &intel_encoder->enc, &intel_lvds_enc_funcs, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1021 | DRM_MODE_ENCODER_LVDS); |
| 1022 | |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 1023 | drm_mode_connector_attach_encoder(&intel_encoder->base, &intel_encoder->enc); |
| 1024 | intel_encoder->type = INTEL_OUTPUT_LVDS; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1025 | |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 1026 | intel_encoder->clone_mask = (1 << INTEL_LVDS_CLONE_BIT); |
| 1027 | intel_encoder->crtc_mask = (1 << 1); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1028 | drm_encoder_helper_add(encoder, &intel_lvds_helper_funcs); |
| 1029 | drm_connector_helper_add(connector, &intel_lvds_connector_helper_funcs); |
| 1030 | connector->display_info.subpixel_order = SubPixelHorizontalRGB; |
| 1031 | connector->interlace_allowed = false; |
| 1032 | connector->doublescan_allowed = false; |
| 1033 | |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 1034 | lvds_priv = (struct intel_lvds_priv *)(intel_encoder + 1); |
| 1035 | intel_encoder->dev_priv = lvds_priv; |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 1036 | /* create the scaling mode property */ |
| 1037 | drm_mode_create_scaling_mode_property(dev); |
| 1038 | /* |
| 1039 | * the initial panel fitting mode will be FULL_SCREEN. |
| 1040 | */ |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1041 | |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 1042 | drm_connector_attach_property(&intel_encoder->base, |
Zhao Yakui | 3fbe18d | 2009-06-22 15:31:25 +0800 | [diff] [blame] | 1043 | dev->mode_config.scaling_mode_property, |
| 1044 | DRM_MODE_SCALE_FULLSCREEN); |
| 1045 | lvds_priv->fitting_mode = DRM_MODE_SCALE_FULLSCREEN; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1046 | /* |
| 1047 | * LVDS discovery: |
| 1048 | * 1) check for EDID on DDC |
| 1049 | * 2) check for VBT data |
| 1050 | * 3) check to see if LVDS is already on |
| 1051 | * if none of the above, no panel |
| 1052 | * 4) make sure lid is open |
| 1053 | * if closed, act like it's not there for now |
| 1054 | */ |
| 1055 | |
| 1056 | /* Set up the DDC bus. */ |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 1057 | intel_encoder->ddc_bus = intel_i2c_create(dev, gpio, "LVDSDDC_C"); |
| 1058 | if (!intel_encoder->ddc_bus) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1059 | dev_printk(KERN_ERR, &dev->pdev->dev, "DDC bus registration " |
| 1060 | "failed.\n"); |
| 1061 | goto failed; |
| 1062 | } |
| 1063 | |
| 1064 | /* |
| 1065 | * Attempt to get the fixed panel mode from DDC. Assume that the |
| 1066 | * preferred mode is the right one. |
| 1067 | */ |
Zhao Yakui | bfac4d6 | 2010-04-07 17:11:22 +0800 | [diff] [blame] | 1068 | dev_priv->lvds_edid_good = true; |
| 1069 | |
| 1070 | if (!intel_ddc_get_modes(intel_encoder)) |
| 1071 | dev_priv->lvds_edid_good = false; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1072 | |
| 1073 | list_for_each_entry(scan, &connector->probed_modes, head) { |
| 1074 | mutex_lock(&dev->mode_config.mutex); |
| 1075 | if (scan->type & DRM_MODE_TYPE_PREFERRED) { |
| 1076 | dev_priv->panel_fixed_mode = |
| 1077 | drm_mode_duplicate(dev, scan); |
| 1078 | mutex_unlock(&dev->mode_config.mutex); |
Zhao Yakui | 18f9ed1 | 2009-11-20 03:24:16 +0000 | [diff] [blame] | 1079 | intel_find_lvds_downclock(dev, connector); |
Paul Collins | 565dcd4 | 2009-02-04 23:05:41 +1300 | [diff] [blame] | 1080 | goto out; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1081 | } |
| 1082 | mutex_unlock(&dev->mode_config.mutex); |
| 1083 | } |
| 1084 | |
| 1085 | /* Failed to get EDID, what about VBT? */ |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 1086 | if (dev_priv->lfp_lvds_vbt_mode) { |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1087 | mutex_lock(&dev->mode_config.mutex); |
| 1088 | dev_priv->panel_fixed_mode = |
Ma Ling | 8863170 | 2009-05-13 11:19:55 +0800 | [diff] [blame] | 1089 | drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1090 | mutex_unlock(&dev->mode_config.mutex); |
Jesse Barnes | e285f3c | 2009-01-14 10:53:36 -0800 | [diff] [blame] | 1091 | if (dev_priv->panel_fixed_mode) { |
| 1092 | dev_priv->panel_fixed_mode->type |= |
| 1093 | DRM_MODE_TYPE_PREFERRED; |
Jesse Barnes | e285f3c | 2009-01-14 10:53:36 -0800 | [diff] [blame] | 1094 | goto out; |
| 1095 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1096 | } |
| 1097 | |
| 1098 | /* |
| 1099 | * If we didn't get EDID, try checking if the panel is already turned |
| 1100 | * on. If so, assume that whatever is currently programmed is the |
| 1101 | * correct mode. |
| 1102 | */ |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 1103 | |
Adam Jackson | f2b115e | 2009-12-03 17:14:42 -0500 | [diff] [blame] | 1104 | /* Ironlake: FIXME if still fail, not try pipe mode now */ |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 1105 | if (HAS_PCH_SPLIT(dev)) |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 1106 | goto failed; |
| 1107 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1108 | lvds = I915_READ(LVDS); |
| 1109 | pipe = (lvds & LVDS_PIPEB_SELECT) ? 1 : 0; |
| 1110 | crtc = intel_get_crtc_from_pipe(dev, pipe); |
| 1111 | |
| 1112 | if (crtc && (lvds & LVDS_PORT_EN)) { |
| 1113 | dev_priv->panel_fixed_mode = intel_crtc_mode_get(dev, crtc); |
| 1114 | if (dev_priv->panel_fixed_mode) { |
| 1115 | dev_priv->panel_fixed_mode->type |= |
| 1116 | DRM_MODE_TYPE_PREFERRED; |
Paul Collins | 565dcd4 | 2009-02-04 23:05:41 +1300 | [diff] [blame] | 1117 | goto out; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1118 | } |
| 1119 | } |
| 1120 | |
| 1121 | /* If we still don't have a mode after all that, give up. */ |
| 1122 | if (!dev_priv->panel_fixed_mode) |
| 1123 | goto failed; |
| 1124 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1125 | out: |
Eric Anholt | c619eed | 2010-01-28 16:45:52 -0800 | [diff] [blame] | 1126 | if (HAS_PCH_SPLIT(dev)) { |
Zhenyu Wang | 541998a | 2009-06-05 15:38:44 +0800 | [diff] [blame] | 1127 | u32 pwm; |
| 1128 | /* make sure PWM is enabled */ |
| 1129 | pwm = I915_READ(BLC_PWM_CPU_CTL2); |
| 1130 | pwm |= (PWM_ENABLE | PWM_PIPE_B); |
| 1131 | I915_WRITE(BLC_PWM_CPU_CTL2, pwm); |
| 1132 | |
| 1133 | pwm = I915_READ(BLC_PWM_PCH_CTL1); |
| 1134 | pwm |= PWM_PCH_ENABLE; |
| 1135 | I915_WRITE(BLC_PWM_PCH_CTL1, pwm); |
| 1136 | } |
Jesse Barnes | c1c7af6 | 2009-09-10 15:28:03 -0700 | [diff] [blame] | 1137 | dev_priv->lid_notifier.notifier_call = intel_lid_notify; |
| 1138 | if (acpi_lid_notifier_register(&dev_priv->lid_notifier)) { |
Zhao Yakui | 28c9773 | 2009-10-09 11:39:41 +0800 | [diff] [blame] | 1139 | DRM_DEBUG_KMS("lid notifier registration failed\n"); |
Jesse Barnes | c1c7af6 | 2009-09-10 15:28:03 -0700 | [diff] [blame] | 1140 | dev_priv->lid_notifier.notifier_call = NULL; |
| 1141 | } |
Zhao Yakui | a256537 | 2009-12-11 09:26:11 +0800 | [diff] [blame] | 1142 | /* keep the LVDS connector */ |
| 1143 | dev_priv->int_lvds_connector = connector; |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1144 | drm_sysfs_connector_add(connector); |
| 1145 | return; |
| 1146 | |
| 1147 | failed: |
Zhao Yakui | 8a4c47f | 2009-07-20 13:48:04 +0800 | [diff] [blame] | 1148 | DRM_DEBUG_KMS("No LVDS modes found, disabling.\n"); |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 1149 | if (intel_encoder->ddc_bus) |
| 1150 | intel_i2c_destroy(intel_encoder->ddc_bus); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1151 | drm_connector_cleanup(connector); |
Shaohua Li | 1991bdf | 2009-11-17 17:19:23 +0800 | [diff] [blame] | 1152 | drm_encoder_cleanup(encoder); |
Eric Anholt | 21d40d3 | 2010-03-25 11:11:14 -0700 | [diff] [blame] | 1153 | kfree(intel_encoder); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 1154 | } |