added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / drivers / gpu / drm / i915 / intel_lvds.c
blob0d211af98854c18debd6af4f1ea6a246af16871d
1 /*
2 * Copyright © 2006-2007 Intel Corporation
3 * Copyright (c) 2006 Dave Airlie <airlied@linux.ie>
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:
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.
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.
24 * Authors:
25 * Eric Anholt <eric@anholt.net>
26 * Dave Airlie <airlied@linux.ie>
27 * Jesse Barnes <jesse.barnes@intel.com>
30 #include <linux/dmi.h>
31 #include <linux/i2c.h>
32 #include "drmP.h"
33 #include "drm.h"
34 #include "drm_crtc.h"
35 #include "drm_edid.h"
36 #include "intel_drv.h"
37 #include "i915_drm.h"
38 #include "i915_drv.h"
40 /**
41 * Sets the backlight level.
43 * \param level backlight level, from 0 to intel_lvds_get_max_backlight().
45 static void intel_lvds_set_backlight(struct drm_device *dev, int level)
47 struct drm_i915_private *dev_priv = dev->dev_private;
48 u32 blc_pwm_ctl;
50 blc_pwm_ctl = I915_READ(BLC_PWM_CTL) & ~BACKLIGHT_DUTY_CYCLE_MASK;
51 I915_WRITE(BLC_PWM_CTL, (blc_pwm_ctl |
52 (level << BACKLIGHT_DUTY_CYCLE_SHIFT)));
55 /**
56 * Returns the maximum level of the backlight duty cycle field.
58 static u32 intel_lvds_get_max_backlight(struct drm_device *dev)
60 struct drm_i915_private *dev_priv = dev->dev_private;
62 return ((I915_READ(BLC_PWM_CTL) & BACKLIGHT_MODULATION_FREQ_MASK) >>
63 BACKLIGHT_MODULATION_FREQ_SHIFT) * 2;
66 /**
67 * Sets the power state for the panel.
69 static void intel_lvds_set_power(struct drm_device *dev, bool on)
71 struct drm_i915_private *dev_priv = dev->dev_private;
72 u32 pp_status;
74 if (on) {
75 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) |
76 POWER_TARGET_ON);
77 do {
78 pp_status = I915_READ(PP_STATUS);
79 } while ((pp_status & PP_ON) == 0);
81 intel_lvds_set_backlight(dev, dev_priv->backlight_duty_cycle);
82 } else {
83 intel_lvds_set_backlight(dev, 0);
85 I915_WRITE(PP_CONTROL, I915_READ(PP_CONTROL) &
86 ~POWER_TARGET_ON);
87 do {
88 pp_status = I915_READ(PP_STATUS);
89 } while (pp_status & PP_ON);
93 static void intel_lvds_dpms(struct drm_encoder *encoder, int mode)
95 struct drm_device *dev = encoder->dev;
97 if (mode == DRM_MODE_DPMS_ON)
98 intel_lvds_set_power(dev, true);
99 else
100 intel_lvds_set_power(dev, false);
102 /* XXX: We never power down the LVDS pairs. */
105 static void intel_lvds_save(struct drm_connector *connector)
107 struct drm_device *dev = connector->dev;
108 struct drm_i915_private *dev_priv = dev->dev_private;
110 dev_priv->savePP_ON = I915_READ(PP_ON_DELAYS);
111 dev_priv->savePP_OFF = I915_READ(PP_OFF_DELAYS);
112 dev_priv->savePP_CONTROL = I915_READ(PP_CONTROL);
113 dev_priv->savePP_DIVISOR = I915_READ(PP_DIVISOR);
114 dev_priv->saveBLC_PWM_CTL = I915_READ(BLC_PWM_CTL);
115 dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL &
116 BACKLIGHT_DUTY_CYCLE_MASK);
119 * If the light is off at server startup, just make it full brightness
121 if (dev_priv->backlight_duty_cycle == 0)
122 dev_priv->backlight_duty_cycle =
123 intel_lvds_get_max_backlight(dev);
126 static void intel_lvds_restore(struct drm_connector *connector)
128 struct drm_device *dev = connector->dev;
129 struct drm_i915_private *dev_priv = dev->dev_private;
131 I915_WRITE(BLC_PWM_CTL, dev_priv->saveBLC_PWM_CTL);
132 I915_WRITE(PP_ON_DELAYS, dev_priv->savePP_ON);
133 I915_WRITE(PP_OFF_DELAYS, dev_priv->savePP_OFF);
134 I915_WRITE(PP_DIVISOR, dev_priv->savePP_DIVISOR);
135 I915_WRITE(PP_CONTROL, dev_priv->savePP_CONTROL);
136 if (dev_priv->savePP_CONTROL & POWER_TARGET_ON)
137 intel_lvds_set_power(dev, true);
138 else
139 intel_lvds_set_power(dev, false);
142 static int intel_lvds_mode_valid(struct drm_connector *connector,
143 struct drm_display_mode *mode)
145 struct drm_device *dev = connector->dev;
146 struct drm_i915_private *dev_priv = dev->dev_private;
147 struct drm_display_mode *fixed_mode = dev_priv->panel_fixed_mode;
149 if (fixed_mode) {
150 if (mode->hdisplay > fixed_mode->hdisplay)
151 return MODE_PANEL;
152 if (mode->vdisplay > fixed_mode->vdisplay)
153 return MODE_PANEL;
156 return MODE_OK;
159 static bool intel_lvds_mode_fixup(struct drm_encoder *encoder,
160 struct drm_display_mode *mode,
161 struct drm_display_mode *adjusted_mode)
163 struct drm_device *dev = encoder->dev;
164 struct drm_i915_private *dev_priv = dev->dev_private;
165 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
166 struct drm_encoder *tmp_encoder;
168 /* Should never happen!! */
169 if (!IS_I965G(dev) && intel_crtc->pipe == 0) {
170 printk(KERN_ERR "Can't support LVDS on pipe A\n");
171 return false;
174 /* Should never happen!! */
175 list_for_each_entry(tmp_encoder, &dev->mode_config.encoder_list, head) {
176 if (tmp_encoder != encoder && tmp_encoder->crtc == encoder->crtc) {
177 printk(KERN_ERR "Can't enable LVDS and another "
178 "encoder on the same pipe\n");
179 return false;
184 * If we have timings from the BIOS for the panel, put them in
185 * to the adjusted mode. The CRTC will be set up for this mode,
186 * with the panel scaling set up to source from the H/VDisplay
187 * of the original mode.
189 if (dev_priv->panel_fixed_mode != NULL) {
190 adjusted_mode->hdisplay = dev_priv->panel_fixed_mode->hdisplay;
191 adjusted_mode->hsync_start =
192 dev_priv->panel_fixed_mode->hsync_start;
193 adjusted_mode->hsync_end =
194 dev_priv->panel_fixed_mode->hsync_end;
195 adjusted_mode->htotal = dev_priv->panel_fixed_mode->htotal;
196 adjusted_mode->vdisplay = dev_priv->panel_fixed_mode->vdisplay;
197 adjusted_mode->vsync_start =
198 dev_priv->panel_fixed_mode->vsync_start;
199 adjusted_mode->vsync_end =
200 dev_priv->panel_fixed_mode->vsync_end;
201 adjusted_mode->vtotal = dev_priv->panel_fixed_mode->vtotal;
202 adjusted_mode->clock = dev_priv->panel_fixed_mode->clock;
203 drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V);
207 * XXX: It would be nice to support lower refresh rates on the
208 * panels to reduce power consumption, and perhaps match the
209 * user's requested refresh rate.
212 return true;
215 static void intel_lvds_prepare(struct drm_encoder *encoder)
217 struct drm_device *dev = encoder->dev;
218 struct drm_i915_private *dev_priv = dev->dev_private;
220 dev_priv->saveBLC_PWM_CTL = I915_READ(BLC_PWM_CTL);
221 dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL &
222 BACKLIGHT_DUTY_CYCLE_MASK);
224 intel_lvds_set_power(dev, false);
227 static void intel_lvds_commit( struct drm_encoder *encoder)
229 struct drm_device *dev = encoder->dev;
230 struct drm_i915_private *dev_priv = dev->dev_private;
232 if (dev_priv->backlight_duty_cycle == 0)
233 dev_priv->backlight_duty_cycle =
234 intel_lvds_get_max_backlight(dev);
236 intel_lvds_set_power(dev, true);
239 static void intel_lvds_mode_set(struct drm_encoder *encoder,
240 struct drm_display_mode *mode,
241 struct drm_display_mode *adjusted_mode)
243 struct drm_device *dev = encoder->dev;
244 struct drm_i915_private *dev_priv = dev->dev_private;
245 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
246 u32 pfit_control;
249 * The LVDS pin pair will already have been turned on in the
250 * intel_crtc_mode_set since it has a large impact on the DPLL
251 * settings.
255 * Enable automatic panel scaling so that non-native modes fill the
256 * screen. Should be enabled before the pipe is enabled, according to
257 * register description and PRM.
259 if (mode->hdisplay != adjusted_mode->hdisplay ||
260 mode->vdisplay != adjusted_mode->vdisplay)
261 pfit_control = (PFIT_ENABLE | VERT_AUTO_SCALE |
262 HORIZ_AUTO_SCALE | VERT_INTERP_BILINEAR |
263 HORIZ_INTERP_BILINEAR);
264 else
265 pfit_control = 0;
267 if (!IS_I965G(dev)) {
268 if (dev_priv->panel_wants_dither)
269 pfit_control |= PANEL_8TO6_DITHER_ENABLE;
271 else
272 pfit_control |= intel_crtc->pipe << PFIT_PIPE_SHIFT;
274 I915_WRITE(PFIT_CONTROL, pfit_control);
278 * Detect the LVDS connection.
280 * This always returns CONNECTOR_STATUS_CONNECTED. This connector should only have
281 * been set up if the LVDS was actually connected anyway.
283 static enum drm_connector_status intel_lvds_detect(struct drm_connector *connector)
285 return connector_status_connected;
289 * Return the list of DDC modes if available, or the BIOS fixed mode otherwise.
291 static int intel_lvds_get_modes(struct drm_connector *connector)
293 struct drm_device *dev = connector->dev;
294 struct intel_output *intel_output = to_intel_output(connector);
295 struct drm_i915_private *dev_priv = dev->dev_private;
296 int ret = 0;
298 ret = intel_ddc_get_modes(intel_output);
300 if (ret)
301 return ret;
303 /* Didn't get an EDID, so
304 * Set wide sync ranges so we get all modes
305 * handed to valid_mode for checking
307 connector->display_info.min_vfreq = 0;
308 connector->display_info.max_vfreq = 200;
309 connector->display_info.min_hfreq = 0;
310 connector->display_info.max_hfreq = 200;
312 if (dev_priv->panel_fixed_mode != NULL) {
313 struct drm_display_mode *mode;
315 mode = drm_mode_duplicate(dev, dev_priv->panel_fixed_mode);
316 drm_mode_probed_add(connector, mode);
318 return 1;
321 return 0;
325 * intel_lvds_destroy - unregister and free LVDS structures
326 * @connector: connector to free
328 * Unregister the DDC bus for this connector then free the driver private
329 * structure.
331 static void intel_lvds_destroy(struct drm_connector *connector)
333 struct intel_output *intel_output = to_intel_output(connector);
335 if (intel_output->ddc_bus)
336 intel_i2c_destroy(intel_output->ddc_bus);
337 drm_sysfs_connector_remove(connector);
338 drm_connector_cleanup(connector);
339 kfree(connector);
342 static int intel_lvds_set_property(struct drm_connector *connector,
343 struct drm_property *property,
344 uint64_t value)
346 struct drm_device *dev = connector->dev;
348 if (property == dev->mode_config.dpms_property && connector->encoder)
349 intel_lvds_dpms(connector->encoder, (uint32_t)(value & 0xf));
351 return 0;
354 static const struct drm_encoder_helper_funcs intel_lvds_helper_funcs = {
355 .dpms = intel_lvds_dpms,
356 .mode_fixup = intel_lvds_mode_fixup,
357 .prepare = intel_lvds_prepare,
358 .mode_set = intel_lvds_mode_set,
359 .commit = intel_lvds_commit,
362 static const struct drm_connector_helper_funcs intel_lvds_connector_helper_funcs = {
363 .get_modes = intel_lvds_get_modes,
364 .mode_valid = intel_lvds_mode_valid,
365 .best_encoder = intel_best_encoder,
368 static const struct drm_connector_funcs intel_lvds_connector_funcs = {
369 .save = intel_lvds_save,
370 .restore = intel_lvds_restore,
371 .detect = intel_lvds_detect,
372 .fill_modes = drm_helper_probe_single_connector_modes,
373 .set_property = intel_lvds_set_property,
374 .destroy = intel_lvds_destroy,
378 static void intel_lvds_enc_destroy(struct drm_encoder *encoder)
380 drm_encoder_cleanup(encoder);
383 static const struct drm_encoder_funcs intel_lvds_enc_funcs = {
384 .destroy = intel_lvds_enc_destroy,
390 * intel_lvds_init - setup LVDS connectors on this device
391 * @dev: drm device
393 * Create the connector, register the LVDS DDC bus, and try to figure out what
394 * modes we can display on the LVDS panel (if present).
396 void intel_lvds_init(struct drm_device *dev)
398 struct drm_i915_private *dev_priv = dev->dev_private;
399 struct intel_output *intel_output;
400 struct drm_connector *connector;
401 struct drm_encoder *encoder;
402 struct drm_display_mode *scan; /* *modes, *bios_mode; */
403 struct drm_crtc *crtc;
404 u32 lvds;
405 int pipe;
407 /* Blacklist machines that we know falsely report LVDS. */
408 /* FIXME: add a check for the Aopen Mini PC */
410 /* Apple Mac Mini Core Duo and Mac Mini Core 2 Duo */
411 if(dmi_match(DMI_PRODUCT_NAME, "Macmini1,1") ||
412 dmi_match(DMI_PRODUCT_NAME, "Macmini2,1")) {
413 DRM_DEBUG("Skipping LVDS initialization for Apple Mac Mini\n");
414 return;
417 intel_output = kzalloc(sizeof(struct intel_output), GFP_KERNEL);
418 if (!intel_output) {
419 return;
422 connector = &intel_output->base;
423 encoder = &intel_output->enc;
424 drm_connector_init(dev, &intel_output->base, &intel_lvds_connector_funcs,
425 DRM_MODE_CONNECTOR_LVDS);
427 drm_encoder_init(dev, &intel_output->enc, &intel_lvds_enc_funcs,
428 DRM_MODE_ENCODER_LVDS);
430 drm_mode_connector_attach_encoder(&intel_output->base, &intel_output->enc);
431 intel_output->type = INTEL_OUTPUT_LVDS;
433 drm_encoder_helper_add(encoder, &intel_lvds_helper_funcs);
434 drm_connector_helper_add(connector, &intel_lvds_connector_helper_funcs);
435 connector->display_info.subpixel_order = SubPixelHorizontalRGB;
436 connector->interlace_allowed = false;
437 connector->doublescan_allowed = false;
441 * LVDS discovery:
442 * 1) check for EDID on DDC
443 * 2) check for VBT data
444 * 3) check to see if LVDS is already on
445 * if none of the above, no panel
446 * 4) make sure lid is open
447 * if closed, act like it's not there for now
450 /* Set up the DDC bus. */
451 intel_output->ddc_bus = intel_i2c_create(dev, GPIOC, "LVDSDDC_C");
452 if (!intel_output->ddc_bus) {
453 dev_printk(KERN_ERR, &dev->pdev->dev, "DDC bus registration "
454 "failed.\n");
455 goto failed;
459 * Attempt to get the fixed panel mode from DDC. Assume that the
460 * preferred mode is the right one.
462 intel_ddc_get_modes(intel_output);
464 list_for_each_entry(scan, &connector->probed_modes, head) {
465 mutex_lock(&dev->mode_config.mutex);
466 if (scan->type & DRM_MODE_TYPE_PREFERRED) {
467 dev_priv->panel_fixed_mode =
468 drm_mode_duplicate(dev, scan);
469 mutex_unlock(&dev->mode_config.mutex);
470 goto out;
472 mutex_unlock(&dev->mode_config.mutex);
475 /* Failed to get EDID, what about VBT? */
476 if (dev_priv->vbt_mode) {
477 mutex_lock(&dev->mode_config.mutex);
478 dev_priv->panel_fixed_mode =
479 drm_mode_duplicate(dev, dev_priv->vbt_mode);
480 mutex_unlock(&dev->mode_config.mutex);
481 if (dev_priv->panel_fixed_mode) {
482 dev_priv->panel_fixed_mode->type |=
483 DRM_MODE_TYPE_PREFERRED;
484 goto out;
489 * If we didn't get EDID, try checking if the panel is already turned
490 * on. If so, assume that whatever is currently programmed is the
491 * correct mode.
493 lvds = I915_READ(LVDS);
494 pipe = (lvds & LVDS_PIPEB_SELECT) ? 1 : 0;
495 crtc = intel_get_crtc_from_pipe(dev, pipe);
497 if (crtc && (lvds & LVDS_PORT_EN)) {
498 dev_priv->panel_fixed_mode = intel_crtc_mode_get(dev, crtc);
499 if (dev_priv->panel_fixed_mode) {
500 dev_priv->panel_fixed_mode->type |=
501 DRM_MODE_TYPE_PREFERRED;
502 goto out;
506 /* If we still don't have a mode after all that, give up. */
507 if (!dev_priv->panel_fixed_mode)
508 goto failed;
510 out:
511 drm_sysfs_connector_add(connector);
512 return;
514 failed:
515 DRM_DEBUG("No LVDS modes found, disabling.\n");
516 if (intel_output->ddc_bus)
517 intel_i2c_destroy(intel_output->ddc_bus);
518 drm_connector_cleanup(connector);
519 kfree(connector);