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