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 | |
| 30 | #include <linux/i2c.h> |
| 31 | #include "drmP.h" |
| 32 | #include "drm.h" |
| 33 | #include "drm_crtc.h" |
| 34 | #include "drm_edid.h" |
| 35 | #include "intel_drv.h" |
| 36 | #include "i915_drm.h" |
| 37 | #include "i915_drv.h" |
| 38 | |
| 39 | /** |
| 40 | * Sets the backlight level. |
| 41 | * |
| 42 | * \param level backlight level, from 0 to intel_lvds_get_max_backlight(). |
| 43 | */ |
| 44 | static void intel_lvds_set_backlight(struct drm_device *dev, int level) |
| 45 | { |
| 46 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 47 | u32 blc_pwm_ctl; |
| 48 | |
| 49 | blc_pwm_ctl = I915_READ(BLC_PWM_CTL) & ~BACKLIGHT_DUTY_CYCLE_MASK; |
| 50 | I915_WRITE(BLC_PWM_CTL, (blc_pwm_ctl | |
| 51 | (level << BACKLIGHT_DUTY_CYCLE_SHIFT))); |
| 52 | } |
| 53 | |
| 54 | /** |
| 55 | * Returns the maximum level of the backlight duty cycle field. |
| 56 | */ |
| 57 | static u32 intel_lvds_get_max_backlight(struct drm_device *dev) |
| 58 | { |
| 59 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 60 | |
| 61 | return ((I915_READ(BLC_PWM_CTL) & BACKLIGHT_MODULATION_FREQ_MASK) >> |
| 62 | BACKLIGHT_MODULATION_FREQ_SHIFT) * 2; |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Sets the power state for the panel. |
| 67 | */ |
| 68 | static void intel_lvds_set_power(struct drm_device *dev, bool on) |
| 69 | { |
| 70 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 71 | u32 pp_status; |
| 72 | |
| 73 | if (on) { |
| 74 | I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) | |
| 75 | POWER_TARGET_ON); |
| 76 | do { |
| 77 | pp_status = I915_READ(PP_STATUS); |
| 78 | } while ((pp_status & PP_ON) == 0); |
| 79 | |
| 80 | intel_lvds_set_backlight(dev, dev_priv->backlight_duty_cycle); |
| 81 | } else { |
| 82 | intel_lvds_set_backlight(dev, 0); |
| 83 | |
| 84 | I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) & |
| 85 | ~POWER_TARGET_ON); |
| 86 | do { |
| 87 | pp_status = I915_READ(PP_STATUS); |
| 88 | } while (pp_status & PP_ON); |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | static void intel_lvds_dpms(struct drm_encoder *encoder, int mode) |
| 93 | { |
| 94 | struct drm_device *dev = encoder->dev; |
| 95 | |
| 96 | if (mode == DRM_MODE_DPMS_ON) |
| 97 | intel_lvds_set_power(dev, true); |
| 98 | else |
| 99 | intel_lvds_set_power(dev, false); |
| 100 | |
| 101 | /* XXX: We never power down the LVDS pairs. */ |
| 102 | } |
| 103 | |
| 104 | static void intel_lvds_save(struct drm_connector *connector) |
| 105 | { |
| 106 | struct drm_device *dev = connector->dev; |
| 107 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 108 | |
| 109 | dev_priv->savePP_ON = I915_READ(PP_ON_DELAYS); |
| 110 | dev_priv->savePP_OFF = I915_READ(PP_OFF_DELAYS); |
| 111 | dev_priv->savePP_CONTROL = I915_READ(PP_CONTROL); |
| 112 | dev_priv->savePP_DIVISOR = I915_READ(PP_DIVISOR); |
| 113 | dev_priv->saveBLC_PWM_CTL = I915_READ(BLC_PWM_CTL); |
| 114 | dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL & |
| 115 | BACKLIGHT_DUTY_CYCLE_MASK); |
| 116 | |
| 117 | /* |
| 118 | * If the light is off at server startup, just make it full brightness |
| 119 | */ |
| 120 | if (dev_priv->backlight_duty_cycle == 0) |
| 121 | dev_priv->backlight_duty_cycle = |
| 122 | intel_lvds_get_max_backlight(dev); |
| 123 | } |
| 124 | |
| 125 | static void intel_lvds_restore(struct drm_connector *connector) |
| 126 | { |
| 127 | struct drm_device *dev = connector->dev; |
| 128 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 129 | |
| 130 | I915_WRITE(BLC_PWM_CTL, dev_priv->saveBLC_PWM_CTL); |
| 131 | I915_WRITE(PP_ON_DELAYS, dev_priv->savePP_ON); |
| 132 | I915_WRITE(PP_OFF_DELAYS, dev_priv->savePP_OFF); |
| 133 | I915_WRITE(PP_DIVISOR, dev_priv->savePP_DIVISOR); |
| 134 | I915_WRITE(PP_CONTROL, dev_priv->savePP_CONTROL); |
| 135 | if (dev_priv->savePP_CONTROL & POWER_TARGET_ON) |
| 136 | intel_lvds_set_power(dev, true); |
| 137 | else |
| 138 | intel_lvds_set_power(dev, false); |
| 139 | } |
| 140 | |
| 141 | static int intel_lvds_mode_valid(struct drm_connector *connector, |
| 142 | struct drm_display_mode *mode) |
| 143 | { |
| 144 | struct drm_device *dev = connector->dev; |
| 145 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 146 | struct drm_display_mode *fixed_mode = dev_priv->panel_fixed_mode; |
| 147 | |
| 148 | if (fixed_mode) { |
| 149 | if (mode->hdisplay > fixed_mode->hdisplay) |
| 150 | return MODE_PANEL; |
| 151 | if (mode->vdisplay > fixed_mode->vdisplay) |
| 152 | return MODE_PANEL; |
| 153 | } |
| 154 | |
| 155 | return MODE_OK; |
| 156 | } |
| 157 | |
| 158 | static bool intel_lvds_mode_fixup(struct drm_encoder *encoder, |
| 159 | struct drm_display_mode *mode, |
| 160 | struct drm_display_mode *adjusted_mode) |
| 161 | { |
| 162 | struct drm_device *dev = encoder->dev; |
| 163 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 164 | struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc); |
| 165 | struct drm_encoder *tmp_encoder; |
| 166 | |
| 167 | /* Should never happen!! */ |
| 168 | if (!IS_I965G(dev) && intel_crtc->pipe == 0) { |
| 169 | printk(KERN_ERR "Can't support LVDS on pipe A\n"); |
| 170 | return false; |
| 171 | } |
| 172 | |
| 173 | /* Should never happen!! */ |
| 174 | list_for_each_entry(tmp_encoder, &dev->mode_config.encoder_list, head) { |
| 175 | if (tmp_encoder != encoder && tmp_encoder->crtc == encoder->crtc) { |
| 176 | printk(KERN_ERR "Can't enable LVDS and another " |
| 177 | "encoder on the same pipe\n"); |
| 178 | return false; |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | /* |
| 183 | * If we have timings from the BIOS for the panel, put them in |
| 184 | * to the adjusted mode. The CRTC will be set up for this mode, |
| 185 | * with the panel scaling set up to source from the H/VDisplay |
| 186 | * of the original mode. |
| 187 | */ |
| 188 | if (dev_priv->panel_fixed_mode != NULL) { |
| 189 | adjusted_mode->hdisplay = dev_priv->panel_fixed_mode->hdisplay; |
| 190 | adjusted_mode->hsync_start = |
| 191 | dev_priv->panel_fixed_mode->hsync_start; |
| 192 | adjusted_mode->hsync_end = |
| 193 | dev_priv->panel_fixed_mode->hsync_end; |
| 194 | adjusted_mode->htotal = dev_priv->panel_fixed_mode->htotal; |
| 195 | adjusted_mode->vdisplay = dev_priv->panel_fixed_mode->vdisplay; |
| 196 | adjusted_mode->vsync_start = |
| 197 | dev_priv->panel_fixed_mode->vsync_start; |
| 198 | adjusted_mode->vsync_end = |
| 199 | dev_priv->panel_fixed_mode->vsync_end; |
| 200 | adjusted_mode->vtotal = dev_priv->panel_fixed_mode->vtotal; |
| 201 | adjusted_mode->clock = dev_priv->panel_fixed_mode->clock; |
| 202 | drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V); |
| 203 | } |
| 204 | |
| 205 | /* |
| 206 | * XXX: It would be nice to support lower refresh rates on the |
| 207 | * panels to reduce power consumption, and perhaps match the |
| 208 | * user's requested refresh rate. |
| 209 | */ |
| 210 | |
| 211 | return true; |
| 212 | } |
| 213 | |
| 214 | static void intel_lvds_prepare(struct drm_encoder *encoder) |
| 215 | { |
| 216 | struct drm_device *dev = encoder->dev; |
| 217 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 218 | |
| 219 | dev_priv->saveBLC_PWM_CTL = I915_READ(BLC_PWM_CTL); |
| 220 | dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL & |
| 221 | BACKLIGHT_DUTY_CYCLE_MASK); |
| 222 | |
| 223 | intel_lvds_set_power(dev, false); |
| 224 | } |
| 225 | |
| 226 | static void intel_lvds_commit( struct drm_encoder *encoder) |
| 227 | { |
| 228 | struct drm_device *dev = encoder->dev; |
| 229 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 230 | |
| 231 | if (dev_priv->backlight_duty_cycle == 0) |
| 232 | dev_priv->backlight_duty_cycle = |
| 233 | intel_lvds_get_max_backlight(dev); |
| 234 | |
| 235 | intel_lvds_set_power(dev, true); |
| 236 | } |
| 237 | |
| 238 | static void intel_lvds_mode_set(struct drm_encoder *encoder, |
| 239 | struct drm_display_mode *mode, |
| 240 | struct drm_display_mode *adjusted_mode) |
| 241 | { |
| 242 | struct drm_device *dev = encoder->dev; |
| 243 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 244 | struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc); |
| 245 | u32 pfit_control; |
| 246 | |
| 247 | /* |
| 248 | * The LVDS pin pair will already have been turned on in the |
| 249 | * intel_crtc_mode_set since it has a large impact on the DPLL |
| 250 | * settings. |
| 251 | */ |
| 252 | |
| 253 | /* |
| 254 | * Enable automatic panel scaling so that non-native modes fill the |
| 255 | * screen. Should be enabled before the pipe is enabled, according to |
| 256 | * register description and PRM. |
| 257 | */ |
| 258 | if (mode->hdisplay != adjusted_mode->hdisplay || |
| 259 | mode->vdisplay != adjusted_mode->vdisplay) |
| 260 | pfit_control = (PFIT_ENABLE | VERT_AUTO_SCALE | |
| 261 | HORIZ_AUTO_SCALE | VERT_INTERP_BILINEAR | |
| 262 | HORIZ_INTERP_BILINEAR); |
| 263 | else |
| 264 | pfit_control = 0; |
| 265 | |
| 266 | if (!IS_I965G(dev)) { |
| 267 | if (dev_priv->panel_wants_dither) |
| 268 | pfit_control |= PANEL_8TO6_DITHER_ENABLE; |
| 269 | } |
| 270 | else |
| 271 | pfit_control |= intel_crtc->pipe << PFIT_PIPE_SHIFT; |
| 272 | |
| 273 | I915_WRITE(PFIT_CONTROL, pfit_control); |
| 274 | } |
| 275 | |
| 276 | /** |
| 277 | * Detect the LVDS connection. |
| 278 | * |
| 279 | * This always returns CONNECTOR_STATUS_CONNECTED. This connector should only have |
| 280 | * been set up if the LVDS was actually connected anyway. |
| 281 | */ |
| 282 | static enum drm_connector_status intel_lvds_detect(struct drm_connector *connector) |
| 283 | { |
| 284 | return connector_status_connected; |
| 285 | } |
| 286 | |
| 287 | /** |
| 288 | * Return the list of DDC modes if available, or the BIOS fixed mode otherwise. |
| 289 | */ |
| 290 | static int intel_lvds_get_modes(struct drm_connector *connector) |
| 291 | { |
| 292 | struct drm_device *dev = connector->dev; |
| 293 | struct intel_output *intel_output = to_intel_output(connector); |
| 294 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 295 | int ret = 0; |
| 296 | |
| 297 | ret = intel_ddc_get_modes(intel_output); |
| 298 | |
| 299 | if (ret) |
| 300 | return ret; |
| 301 | |
| 302 | /* Didn't get an EDID, so |
| 303 | * Set wide sync ranges so we get all modes |
| 304 | * handed to valid_mode for checking |
| 305 | */ |
| 306 | connector->display_info.min_vfreq = 0; |
| 307 | connector->display_info.max_vfreq = 200; |
| 308 | connector->display_info.min_hfreq = 0; |
| 309 | connector->display_info.max_hfreq = 200; |
| 310 | |
| 311 | if (dev_priv->panel_fixed_mode != NULL) { |
| 312 | struct drm_display_mode *mode; |
| 313 | |
Andrew Morton | 726a669 | 2009-01-29 14:25:27 -0800 | [diff] [blame] | 314 | mutex_lock(&dev->mode_config.mutex); |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 315 | mode = drm_mode_duplicate(dev, dev_priv->panel_fixed_mode); |
| 316 | drm_mode_probed_add(connector, mode); |
| 317 | mutex_unlock(&dev->mode_config.mutex); |
| 318 | |
| 319 | return 1; |
| 320 | } |
| 321 | |
| 322 | return 0; |
| 323 | } |
| 324 | |
| 325 | /** |
| 326 | * intel_lvds_destroy - unregister and free LVDS structures |
| 327 | * @connector: connector to free |
| 328 | * |
| 329 | * Unregister the DDC bus for this connector then free the driver private |
| 330 | * structure. |
| 331 | */ |
| 332 | static void intel_lvds_destroy(struct drm_connector *connector) |
| 333 | { |
| 334 | struct intel_output *intel_output = to_intel_output(connector); |
| 335 | |
| 336 | if (intel_output->ddc_bus) |
| 337 | intel_i2c_destroy(intel_output->ddc_bus); |
| 338 | drm_sysfs_connector_remove(connector); |
| 339 | drm_connector_cleanup(connector); |
| 340 | kfree(connector); |
| 341 | } |
| 342 | |
Jesse Barnes | 335041e | 2009-01-22 22:22:06 +1000 | [diff] [blame] | 343 | static int intel_lvds_set_property(struct drm_connector *connector, |
| 344 | struct drm_property *property, |
| 345 | uint64_t value) |
| 346 | { |
| 347 | struct drm_device *dev = connector->dev; |
| 348 | |
| 349 | if (property == dev->mode_config.dpms_property && connector->encoder) |
| 350 | intel_lvds_dpms(connector->encoder, (uint32_t)(value & 0xf)); |
| 351 | |
| 352 | return 0; |
| 353 | } |
| 354 | |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 355 | static const struct drm_encoder_helper_funcs intel_lvds_helper_funcs = { |
| 356 | .dpms = intel_lvds_dpms, |
| 357 | .mode_fixup = intel_lvds_mode_fixup, |
| 358 | .prepare = intel_lvds_prepare, |
| 359 | .mode_set = intel_lvds_mode_set, |
| 360 | .commit = intel_lvds_commit, |
| 361 | }; |
| 362 | |
| 363 | static const struct drm_connector_helper_funcs intel_lvds_connector_helper_funcs = { |
| 364 | .get_modes = intel_lvds_get_modes, |
| 365 | .mode_valid = intel_lvds_mode_valid, |
| 366 | .best_encoder = intel_best_encoder, |
| 367 | }; |
| 368 | |
| 369 | static const struct drm_connector_funcs intel_lvds_connector_funcs = { |
| 370 | .save = intel_lvds_save, |
| 371 | .restore = intel_lvds_restore, |
| 372 | .detect = intel_lvds_detect, |
| 373 | .fill_modes = drm_helper_probe_single_connector_modes, |
Jesse Barnes | 335041e | 2009-01-22 22:22:06 +1000 | [diff] [blame] | 374 | .set_property = intel_lvds_set_property, |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 375 | .destroy = intel_lvds_destroy, |
| 376 | }; |
| 377 | |
| 378 | |
| 379 | static void intel_lvds_enc_destroy(struct drm_encoder *encoder) |
| 380 | { |
| 381 | drm_encoder_cleanup(encoder); |
| 382 | } |
| 383 | |
| 384 | static const struct drm_encoder_funcs intel_lvds_enc_funcs = { |
| 385 | .destroy = intel_lvds_enc_destroy, |
| 386 | }; |
| 387 | |
| 388 | |
| 389 | |
| 390 | /** |
| 391 | * intel_lvds_init - setup LVDS connectors on this device |
| 392 | * @dev: drm device |
| 393 | * |
| 394 | * Create the connector, register the LVDS DDC bus, and try to figure out what |
| 395 | * modes we can display on the LVDS panel (if present). |
| 396 | */ |
| 397 | void intel_lvds_init(struct drm_device *dev) |
| 398 | { |
| 399 | struct drm_i915_private *dev_priv = dev->dev_private; |
| 400 | struct intel_output *intel_output; |
| 401 | struct drm_connector *connector; |
| 402 | struct drm_encoder *encoder; |
| 403 | struct drm_display_mode *scan; /* *modes, *bios_mode; */ |
| 404 | struct drm_crtc *crtc; |
| 405 | u32 lvds; |
| 406 | int pipe; |
| 407 | |
| 408 | intel_output = kzalloc(sizeof(struct intel_output), GFP_KERNEL); |
| 409 | if (!intel_output) { |
| 410 | return; |
| 411 | } |
| 412 | |
| 413 | connector = &intel_output->base; |
| 414 | encoder = &intel_output->enc; |
| 415 | drm_connector_init(dev, &intel_output->base, &intel_lvds_connector_funcs, |
| 416 | DRM_MODE_CONNECTOR_LVDS); |
| 417 | |
| 418 | drm_encoder_init(dev, &intel_output->enc, &intel_lvds_enc_funcs, |
| 419 | DRM_MODE_ENCODER_LVDS); |
| 420 | |
| 421 | drm_mode_connector_attach_encoder(&intel_output->base, &intel_output->enc); |
| 422 | intel_output->type = INTEL_OUTPUT_LVDS; |
| 423 | |
| 424 | drm_encoder_helper_add(encoder, &intel_lvds_helper_funcs); |
| 425 | drm_connector_helper_add(connector, &intel_lvds_connector_helper_funcs); |
| 426 | connector->display_info.subpixel_order = SubPixelHorizontalRGB; |
| 427 | connector->interlace_allowed = false; |
| 428 | connector->doublescan_allowed = false; |
| 429 | |
| 430 | |
| 431 | /* |
| 432 | * LVDS discovery: |
| 433 | * 1) check for EDID on DDC |
| 434 | * 2) check for VBT data |
| 435 | * 3) check to see if LVDS is already on |
| 436 | * if none of the above, no panel |
| 437 | * 4) make sure lid is open |
| 438 | * if closed, act like it's not there for now |
| 439 | */ |
| 440 | |
| 441 | /* Set up the DDC bus. */ |
| 442 | intel_output->ddc_bus = intel_i2c_create(dev, GPIOC, "LVDSDDC_C"); |
| 443 | if (!intel_output->ddc_bus) { |
| 444 | dev_printk(KERN_ERR, &dev->pdev->dev, "DDC bus registration " |
| 445 | "failed.\n"); |
| 446 | goto failed; |
| 447 | } |
| 448 | |
| 449 | /* |
| 450 | * Attempt to get the fixed panel mode from DDC. Assume that the |
| 451 | * preferred mode is the right one. |
| 452 | */ |
| 453 | intel_ddc_get_modes(intel_output); |
| 454 | |
| 455 | list_for_each_entry(scan, &connector->probed_modes, head) { |
| 456 | mutex_lock(&dev->mode_config.mutex); |
| 457 | if (scan->type & DRM_MODE_TYPE_PREFERRED) { |
| 458 | dev_priv->panel_fixed_mode = |
| 459 | drm_mode_duplicate(dev, scan); |
| 460 | mutex_unlock(&dev->mode_config.mutex); |
| 461 | goto out; /* FIXME: check for quirks */ |
| 462 | } |
| 463 | mutex_unlock(&dev->mode_config.mutex); |
| 464 | } |
| 465 | |
| 466 | /* Failed to get EDID, what about VBT? */ |
| 467 | if (dev_priv->vbt_mode) { |
| 468 | mutex_lock(&dev->mode_config.mutex); |
| 469 | dev_priv->panel_fixed_mode = |
| 470 | drm_mode_duplicate(dev, dev_priv->vbt_mode); |
| 471 | mutex_unlock(&dev->mode_config.mutex); |
Jesse Barnes | e285f3c | 2009-01-14 10:53:36 -0800 | [diff] [blame] | 472 | if (dev_priv->panel_fixed_mode) { |
| 473 | dev_priv->panel_fixed_mode->type |= |
| 474 | DRM_MODE_TYPE_PREFERRED; |
| 475 | drm_mode_probed_add(connector, |
| 476 | dev_priv->panel_fixed_mode); |
| 477 | goto out; |
| 478 | } |
Jesse Barnes | 79e5394 | 2008-11-07 14:24:08 -0800 | [diff] [blame] | 479 | } |
| 480 | |
| 481 | /* |
| 482 | * If we didn't get EDID, try checking if the panel is already turned |
| 483 | * on. If so, assume that whatever is currently programmed is the |
| 484 | * correct mode. |
| 485 | */ |
| 486 | lvds = I915_READ(LVDS); |
| 487 | pipe = (lvds & LVDS_PIPEB_SELECT) ? 1 : 0; |
| 488 | crtc = intel_get_crtc_from_pipe(dev, pipe); |
| 489 | |
| 490 | if (crtc && (lvds & LVDS_PORT_EN)) { |
| 491 | dev_priv->panel_fixed_mode = intel_crtc_mode_get(dev, crtc); |
| 492 | if (dev_priv->panel_fixed_mode) { |
| 493 | dev_priv->panel_fixed_mode->type |= |
| 494 | DRM_MODE_TYPE_PREFERRED; |
| 495 | goto out; /* FIXME: check for quirks */ |
| 496 | } |
| 497 | } |
| 498 | |
| 499 | /* If we still don't have a mode after all that, give up. */ |
| 500 | if (!dev_priv->panel_fixed_mode) |
| 501 | goto failed; |
| 502 | |
| 503 | /* FIXME: detect aopen & mac mini type stuff automatically? */ |
| 504 | /* |
| 505 | * Blacklist machines with BIOSes that list an LVDS panel without |
| 506 | * actually having one. |
| 507 | */ |
| 508 | if (IS_I945GM(dev)) { |
| 509 | /* aopen mini pc */ |
| 510 | if (dev->pdev->subsystem_vendor == 0xa0a0) |
| 511 | goto failed; |
| 512 | |
| 513 | if ((dev->pdev->subsystem_vendor == 0x8086) && |
| 514 | (dev->pdev->subsystem_device == 0x7270)) { |
| 515 | /* It's a Mac Mini or Macbook Pro. |
| 516 | * |
| 517 | * Apple hardware is out to get us. The macbook pro |
| 518 | * has a real LVDS panel, but the mac mini does not, |
| 519 | * and they have the same device IDs. We'll |
| 520 | * distinguish by panel size, on the assumption |
| 521 | * that Apple isn't about to make any machines with an |
| 522 | * 800x600 display. |
| 523 | */ |
| 524 | |
| 525 | if (dev_priv->panel_fixed_mode != NULL && |
| 526 | dev_priv->panel_fixed_mode->hdisplay == 800 && |
| 527 | dev_priv->panel_fixed_mode->vdisplay == 600) { |
| 528 | DRM_DEBUG("Suspected Mac Mini, ignoring the LVDS\n"); |
| 529 | goto failed; |
| 530 | } |
| 531 | } |
| 532 | } |
| 533 | |
| 534 | |
| 535 | out: |
| 536 | drm_sysfs_connector_add(connector); |
| 537 | return; |
| 538 | |
| 539 | failed: |
| 540 | DRM_DEBUG("No LVDS modes found, disabling.\n"); |
| 541 | if (intel_output->ddc_bus) |
| 542 | intel_i2c_destroy(intel_output->ddc_bus); |
| 543 | drm_connector_cleanup(connector); |
| 544 | kfree(connector); |
| 545 | } |