blob: 5df486fbe056759ed8b86e39a80c08306b965a4a [file] [log] [blame]
Jesse Barnes79e53942008-11-07 14:24:08 -08001/*
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
Paul Collins565dcd42009-02-04 23:05:41 +130030#include <linux/dmi.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080031#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"
Zhao Yakuie99da352009-06-26 09:46:18 +080039#include <linux/acpi.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080040
Zhao Yakui3fbe18d2009-06-22 15:31:25 +080041/* Private structure for the integrated LVDS support */
42struct intel_lvds_priv {
43 int fitting_mode;
44 u32 pfit_control;
45 u32 pfit_pgm_ratios;
46};
47
Jesse Barnes79e53942008-11-07 14:24:08 -080048/**
49 * Sets the backlight level.
50 *
51 * \param level backlight level, from 0 to intel_lvds_get_max_backlight().
52 */
53static void intel_lvds_set_backlight(struct drm_device *dev, int level)
54{
55 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +080056 u32 blc_pwm_ctl, reg;
Jesse Barnes79e53942008-11-07 14:24:08 -080057
Zhenyu Wang541998a2009-06-05 15:38:44 +080058 if (IS_IGDNG(dev))
59 reg = BLC_PWM_CPU_CTL;
60 else
61 reg = BLC_PWM_CTL;
62
63 blc_pwm_ctl = I915_READ(reg) & ~BACKLIGHT_DUTY_CYCLE_MASK;
64 I915_WRITE(reg, (blc_pwm_ctl |
Jesse Barnes79e53942008-11-07 14:24:08 -080065 (level << BACKLIGHT_DUTY_CYCLE_SHIFT)));
66}
67
68/**
69 * Returns the maximum level of the backlight duty cycle field.
70 */
71static u32 intel_lvds_get_max_backlight(struct drm_device *dev)
72{
73 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +080074 u32 reg;
Jesse Barnes79e53942008-11-07 14:24:08 -080075
Zhenyu Wang541998a2009-06-05 15:38:44 +080076 if (IS_IGDNG(dev))
77 reg = BLC_PWM_PCH_CTL2;
78 else
79 reg = BLC_PWM_CTL;
80
81 return ((I915_READ(reg) & BACKLIGHT_MODULATION_FREQ_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -080082 BACKLIGHT_MODULATION_FREQ_SHIFT) * 2;
83}
84
85/**
86 * Sets the power state for the panel.
87 */
88static void intel_lvds_set_power(struct drm_device *dev, bool on)
89{
90 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +080091 u32 pp_status, ctl_reg, status_reg;
92
93 if (IS_IGDNG(dev)) {
94 ctl_reg = PCH_PP_CONTROL;
95 status_reg = PCH_PP_STATUS;
96 } else {
97 ctl_reg = PP_CONTROL;
98 status_reg = PP_STATUS;
99 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800100
101 if (on) {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800102 I915_WRITE(ctl_reg, I915_READ(ctl_reg) |
Jesse Barnes79e53942008-11-07 14:24:08 -0800103 POWER_TARGET_ON);
104 do {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800105 pp_status = I915_READ(status_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800106 } while ((pp_status & PP_ON) == 0);
107
108 intel_lvds_set_backlight(dev, dev_priv->backlight_duty_cycle);
109 } else {
110 intel_lvds_set_backlight(dev, 0);
111
Zhenyu Wang541998a2009-06-05 15:38:44 +0800112 I915_WRITE(ctl_reg, I915_READ(ctl_reg) &
Jesse Barnes79e53942008-11-07 14:24:08 -0800113 ~POWER_TARGET_ON);
114 do {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800115 pp_status = I915_READ(status_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800116 } while (pp_status & PP_ON);
117 }
118}
119
120static void intel_lvds_dpms(struct drm_encoder *encoder, int mode)
121{
122 struct drm_device *dev = encoder->dev;
123
124 if (mode == DRM_MODE_DPMS_ON)
125 intel_lvds_set_power(dev, true);
126 else
127 intel_lvds_set_power(dev, false);
128
129 /* XXX: We never power down the LVDS pairs. */
130}
131
132static void intel_lvds_save(struct drm_connector *connector)
133{
134 struct drm_device *dev = connector->dev;
135 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800136 u32 pp_on_reg, pp_off_reg, pp_ctl_reg, pp_div_reg;
137 u32 pwm_ctl_reg;
Jesse Barnes79e53942008-11-07 14:24:08 -0800138
Zhenyu Wang541998a2009-06-05 15:38:44 +0800139 if (IS_IGDNG(dev)) {
140 pp_on_reg = PCH_PP_ON_DELAYS;
141 pp_off_reg = PCH_PP_OFF_DELAYS;
142 pp_ctl_reg = PCH_PP_CONTROL;
143 pp_div_reg = PCH_PP_DIVISOR;
144 pwm_ctl_reg = BLC_PWM_CPU_CTL;
145 } else {
146 pp_on_reg = PP_ON_DELAYS;
147 pp_off_reg = PP_OFF_DELAYS;
148 pp_ctl_reg = PP_CONTROL;
149 pp_div_reg = PP_DIVISOR;
150 pwm_ctl_reg = BLC_PWM_CTL;
151 }
152
153 dev_priv->savePP_ON = I915_READ(pp_on_reg);
154 dev_priv->savePP_OFF = I915_READ(pp_off_reg);
155 dev_priv->savePP_CONTROL = I915_READ(pp_ctl_reg);
156 dev_priv->savePP_DIVISOR = I915_READ(pp_div_reg);
157 dev_priv->saveBLC_PWM_CTL = I915_READ(pwm_ctl_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800158 dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL &
159 BACKLIGHT_DUTY_CYCLE_MASK);
160
161 /*
162 * If the light is off at server startup, just make it full brightness
163 */
164 if (dev_priv->backlight_duty_cycle == 0)
165 dev_priv->backlight_duty_cycle =
166 intel_lvds_get_max_backlight(dev);
167}
168
169static void intel_lvds_restore(struct drm_connector *connector)
170{
171 struct drm_device *dev = connector->dev;
172 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800173 u32 pp_on_reg, pp_off_reg, pp_ctl_reg, pp_div_reg;
174 u32 pwm_ctl_reg;
Jesse Barnes79e53942008-11-07 14:24:08 -0800175
Zhenyu Wang541998a2009-06-05 15:38:44 +0800176 if (IS_IGDNG(dev)) {
177 pp_on_reg = PCH_PP_ON_DELAYS;
178 pp_off_reg = PCH_PP_OFF_DELAYS;
179 pp_ctl_reg = PCH_PP_CONTROL;
180 pp_div_reg = PCH_PP_DIVISOR;
181 pwm_ctl_reg = BLC_PWM_CPU_CTL;
182 } else {
183 pp_on_reg = PP_ON_DELAYS;
184 pp_off_reg = PP_OFF_DELAYS;
185 pp_ctl_reg = PP_CONTROL;
186 pp_div_reg = PP_DIVISOR;
187 pwm_ctl_reg = BLC_PWM_CTL;
188 }
189
190 I915_WRITE(pwm_ctl_reg, dev_priv->saveBLC_PWM_CTL);
191 I915_WRITE(pp_on_reg, dev_priv->savePP_ON);
192 I915_WRITE(pp_off_reg, dev_priv->savePP_OFF);
193 I915_WRITE(pp_div_reg, dev_priv->savePP_DIVISOR);
194 I915_WRITE(pp_ctl_reg, dev_priv->savePP_CONTROL);
Jesse Barnes79e53942008-11-07 14:24:08 -0800195 if (dev_priv->savePP_CONTROL & POWER_TARGET_ON)
196 intel_lvds_set_power(dev, true);
197 else
198 intel_lvds_set_power(dev, false);
199}
200
201static int intel_lvds_mode_valid(struct drm_connector *connector,
202 struct drm_display_mode *mode)
203{
204 struct drm_device *dev = connector->dev;
205 struct drm_i915_private *dev_priv = dev->dev_private;
206 struct drm_display_mode *fixed_mode = dev_priv->panel_fixed_mode;
207
208 if (fixed_mode) {
209 if (mode->hdisplay > fixed_mode->hdisplay)
210 return MODE_PANEL;
211 if (mode->vdisplay > fixed_mode->vdisplay)
212 return MODE_PANEL;
213 }
214
215 return MODE_OK;
216}
217
218static bool intel_lvds_mode_fixup(struct drm_encoder *encoder,
219 struct drm_display_mode *mode,
220 struct drm_display_mode *adjusted_mode)
221{
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800222 /*
223 * float point operation is not supported . So the PANEL_RATIO_FACTOR
224 * is defined, which can avoid the float point computation when
225 * calculating the panel ratio.
226 */
227#define PANEL_RATIO_FACTOR 8192
Jesse Barnes79e53942008-11-07 14:24:08 -0800228 struct drm_device *dev = encoder->dev;
229 struct drm_i915_private *dev_priv = dev->dev_private;
230 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
231 struct drm_encoder *tmp_encoder;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800232 struct intel_output *intel_output = enc_to_intel_output(encoder);
233 struct intel_lvds_priv *lvds_priv = intel_output->dev_priv;
234 u32 pfit_control = 0, pfit_pgm_ratios = 0;
235 int left_border = 0, right_border = 0, top_border = 0;
236 int bottom_border = 0;
237 bool border = 0;
238 int panel_ratio, desired_ratio, vert_scale, horiz_scale;
239 int horiz_ratio, vert_ratio;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800240 u32 hsync_width, vsync_width;
241 u32 hblank_width, vblank_width;
242 u32 hsync_pos, vsync_pos;
Jesse Barnes79e53942008-11-07 14:24:08 -0800243
244 /* Should never happen!! */
245 if (!IS_I965G(dev) && intel_crtc->pipe == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700246 DRM_ERROR("Can't support LVDS on pipe A\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800247 return false;
248 }
249
250 /* Should never happen!! */
251 list_for_each_entry(tmp_encoder, &dev->mode_config.encoder_list, head) {
252 if (tmp_encoder != encoder && tmp_encoder->crtc == encoder->crtc) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700253 DRM_ERROR("Can't enable LVDS and another "
Jesse Barnes79e53942008-11-07 14:24:08 -0800254 "encoder on the same pipe\n");
255 return false;
256 }
257 }
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800258 /* If we don't have a panel mode, there is nothing we can do */
259 if (dev_priv->panel_fixed_mode == NULL)
260 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -0800261 /*
262 * If we have timings from the BIOS for the panel, put them in
263 * to the adjusted mode. The CRTC will be set up for this mode,
264 * with the panel scaling set up to source from the H/VDisplay
265 * of the original mode.
266 */
267 if (dev_priv->panel_fixed_mode != NULL) {
268 adjusted_mode->hdisplay = dev_priv->panel_fixed_mode->hdisplay;
269 adjusted_mode->hsync_start =
270 dev_priv->panel_fixed_mode->hsync_start;
271 adjusted_mode->hsync_end =
272 dev_priv->panel_fixed_mode->hsync_end;
273 adjusted_mode->htotal = dev_priv->panel_fixed_mode->htotal;
274 adjusted_mode->vdisplay = dev_priv->panel_fixed_mode->vdisplay;
275 adjusted_mode->vsync_start =
276 dev_priv->panel_fixed_mode->vsync_start;
277 adjusted_mode->vsync_end =
278 dev_priv->panel_fixed_mode->vsync_end;
279 adjusted_mode->vtotal = dev_priv->panel_fixed_mode->vtotal;
280 adjusted_mode->clock = dev_priv->panel_fixed_mode->clock;
281 drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V);
282 }
283
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800284 /* Make sure pre-965s set dither correctly */
285 if (!IS_I965G(dev)) {
286 if (dev_priv->panel_wants_dither || dev_priv->lvds_dither)
287 pfit_control |= PANEL_8TO6_DITHER_ENABLE;
288 }
289
290 /* Native modes don't need fitting */
291 if (adjusted_mode->hdisplay == mode->hdisplay &&
292 adjusted_mode->vdisplay == mode->vdisplay) {
293 pfit_pgm_ratios = 0;
294 border = 0;
295 goto out;
296 }
297
298 /* 965+ wants fuzzy fitting */
299 if (IS_I965G(dev))
300 pfit_control |= (intel_crtc->pipe << PFIT_PIPE_SHIFT) |
301 PFIT_FILTER_FUZZY;
302
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800303 hsync_width = adjusted_mode->crtc_hsync_end -
304 adjusted_mode->crtc_hsync_start;
305 vsync_width = adjusted_mode->crtc_vsync_end -
306 adjusted_mode->crtc_vsync_start;
307 hblank_width = adjusted_mode->crtc_hblank_end -
308 adjusted_mode->crtc_hblank_start;
309 vblank_width = adjusted_mode->crtc_vblank_end -
310 adjusted_mode->crtc_vblank_start;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800311 /*
312 * Deal with panel fitting options. Figure out how to stretch the
313 * image based on its aspect ratio & the current panel fitting mode.
314 */
315 panel_ratio = adjusted_mode->hdisplay * PANEL_RATIO_FACTOR /
316 adjusted_mode->vdisplay;
317 desired_ratio = mode->hdisplay * PANEL_RATIO_FACTOR /
318 mode->vdisplay;
319 /*
320 * Enable automatic panel scaling for non-native modes so that they fill
321 * the screen. Should be enabled before the pipe is enabled, according
322 * to register description and PRM.
323 * Change the value here to see the borders for debugging
324 */
325 I915_WRITE(BCLRPAT_A, 0);
326 I915_WRITE(BCLRPAT_B, 0);
327
328 switch (lvds_priv->fitting_mode) {
Jesse Barnes53bd8382009-07-01 10:04:40 -0700329 case DRM_MODE_SCALE_CENTER:
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800330 /*
331 * For centered modes, we have to calculate border widths &
332 * heights and modify the values programmed into the CRTC.
333 */
334 left_border = (adjusted_mode->hdisplay - mode->hdisplay) / 2;
335 right_border = left_border;
336 if (mode->hdisplay & 1)
337 right_border++;
338 top_border = (adjusted_mode->vdisplay - mode->vdisplay) / 2;
339 bottom_border = top_border;
340 if (mode->vdisplay & 1)
341 bottom_border++;
342 /* Set active & border values */
343 adjusted_mode->crtc_hdisplay = mode->hdisplay;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800344 /* Keep the boder be even */
345 if (right_border & 1)
346 right_border++;
347 /* use the border directly instead of border minuse one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800348 adjusted_mode->crtc_hblank_start = mode->hdisplay +
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800349 right_border;
350 /* keep the blank width constant */
351 adjusted_mode->crtc_hblank_end =
352 adjusted_mode->crtc_hblank_start + hblank_width;
353 /* get the hsync pos relative to hblank start */
354 hsync_pos = (hblank_width - hsync_width) / 2;
355 /* keep the hsync pos be even */
356 if (hsync_pos & 1)
357 hsync_pos++;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800358 adjusted_mode->crtc_hsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800359 adjusted_mode->crtc_hblank_start + hsync_pos;
360 /* keep the hsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800361 adjusted_mode->crtc_hsync_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800362 adjusted_mode->crtc_hsync_start + hsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800363 adjusted_mode->crtc_vdisplay = mode->vdisplay;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800364 /* use the border instead of border minus one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800365 adjusted_mode->crtc_vblank_start = mode->vdisplay +
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800366 bottom_border;
367 /* keep the vblank width constant */
368 adjusted_mode->crtc_vblank_end =
369 adjusted_mode->crtc_vblank_start + vblank_width;
370 /* get the vsync start postion relative to vblank start */
371 vsync_pos = (vblank_width - vsync_width) / 2;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800372 adjusted_mode->crtc_vsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800373 adjusted_mode->crtc_vblank_start + vsync_pos;
374 /* keep the vsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800375 adjusted_mode->crtc_vsync_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800376 adjusted_mode->crtc_vblank_start + vsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800377 border = 1;
378 break;
379 case DRM_MODE_SCALE_ASPECT:
380 /* Scale but preserve the spect ratio */
381 pfit_control |= PFIT_ENABLE;
382 if (IS_I965G(dev)) {
383 /* 965+ is easy, it does everything in hw */
384 if (panel_ratio > desired_ratio)
385 pfit_control |= PFIT_SCALING_PILLAR;
386 else if (panel_ratio < desired_ratio)
387 pfit_control |= PFIT_SCALING_LETTER;
388 else
389 pfit_control |= PFIT_SCALING_AUTO;
390 } else {
391 /*
392 * For earlier chips we have to calculate the scaling
393 * ratio by hand and program it into the
394 * PFIT_PGM_RATIO register
395 */
396 u32 horiz_bits, vert_bits, bits = 12;
397 horiz_ratio = mode->hdisplay * PANEL_RATIO_FACTOR/
398 adjusted_mode->hdisplay;
399 vert_ratio = mode->vdisplay * PANEL_RATIO_FACTOR/
400 adjusted_mode->vdisplay;
401 horiz_scale = adjusted_mode->hdisplay *
402 PANEL_RATIO_FACTOR / mode->hdisplay;
403 vert_scale = adjusted_mode->vdisplay *
404 PANEL_RATIO_FACTOR / mode->vdisplay;
405
406 /* retain aspect ratio */
407 if (panel_ratio > desired_ratio) { /* Pillar */
408 u32 scaled_width;
409 scaled_width = mode->hdisplay * vert_scale /
410 PANEL_RATIO_FACTOR;
411 horiz_ratio = vert_ratio;
412 pfit_control |= (VERT_AUTO_SCALE |
413 VERT_INTERP_BILINEAR |
414 HORIZ_INTERP_BILINEAR);
415 /* Pillar will have left/right borders */
416 left_border = (adjusted_mode->hdisplay -
417 scaled_width) / 2;
418 right_border = left_border;
419 if (mode->hdisplay & 1) /* odd resolutions */
420 right_border++;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800421 /* keep the border be even */
422 if (right_border & 1)
423 right_border++;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800424 adjusted_mode->crtc_hdisplay = scaled_width;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800425 /* use border instead of border minus one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800426 adjusted_mode->crtc_hblank_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800427 scaled_width + right_border;
428 /* keep the hblank width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800429 adjusted_mode->crtc_hblank_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800430 adjusted_mode->crtc_hblank_start +
431 hblank_width;
432 /*
433 * get the hsync start pos relative to
434 * hblank start
435 */
436 hsync_pos = (hblank_width - hsync_width) / 2;
437 /* keep the hsync_pos be even */
438 if (hsync_pos & 1)
439 hsync_pos++;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800440 adjusted_mode->crtc_hsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800441 adjusted_mode->crtc_hblank_start +
442 hsync_pos;
443 /* keept hsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800444 adjusted_mode->crtc_hsync_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800445 adjusted_mode->crtc_hsync_start +
446 hsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800447 border = 1;
448 } else if (panel_ratio < desired_ratio) { /* letter */
449 u32 scaled_height = mode->vdisplay *
450 horiz_scale / PANEL_RATIO_FACTOR;
451 vert_ratio = horiz_ratio;
452 pfit_control |= (HORIZ_AUTO_SCALE |
453 VERT_INTERP_BILINEAR |
454 HORIZ_INTERP_BILINEAR);
455 /* Letterbox will have top/bottom border */
456 top_border = (adjusted_mode->vdisplay -
457 scaled_height) / 2;
458 bottom_border = top_border;
459 if (mode->vdisplay & 1)
460 bottom_border++;
461 adjusted_mode->crtc_vdisplay = scaled_height;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800462 /* use border instead of border minus one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800463 adjusted_mode->crtc_vblank_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800464 scaled_height + bottom_border;
465 /* keep the vblank width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800466 adjusted_mode->crtc_vblank_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800467 adjusted_mode->crtc_vblank_start +
468 vblank_width;
469 /*
470 * get the vsync start pos relative to
471 * vblank start
472 */
473 vsync_pos = (vblank_width - vsync_width) / 2;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800474 adjusted_mode->crtc_vsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800475 adjusted_mode->crtc_vblank_start +
476 vsync_pos;
477 /* keep the vsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800478 adjusted_mode->crtc_vsync_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800479 adjusted_mode->crtc_vsync_start +
480 vsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800481 border = 1;
482 } else {
483 /* Aspects match, Let hw scale both directions */
484 pfit_control |= (VERT_AUTO_SCALE |
485 HORIZ_AUTO_SCALE |
486 VERT_INTERP_BILINEAR |
487 HORIZ_INTERP_BILINEAR);
488 }
489 horiz_bits = (1 << bits) * horiz_ratio /
490 PANEL_RATIO_FACTOR;
491 vert_bits = (1 << bits) * vert_ratio /
492 PANEL_RATIO_FACTOR;
493 pfit_pgm_ratios =
494 ((vert_bits << PFIT_VERT_SCALE_SHIFT) &
495 PFIT_VERT_SCALE_MASK) |
496 ((horiz_bits << PFIT_HORIZ_SCALE_SHIFT) &
497 PFIT_HORIZ_SCALE_MASK);
498 }
499 break;
500
501 case DRM_MODE_SCALE_FULLSCREEN:
502 /*
503 * Full scaling, even if it changes the aspect ratio.
504 * Fortunately this is all done for us in hw.
505 */
506 pfit_control |= PFIT_ENABLE;
507 if (IS_I965G(dev))
508 pfit_control |= PFIT_SCALING_AUTO;
509 else
510 pfit_control |= (VERT_AUTO_SCALE | HORIZ_AUTO_SCALE |
511 VERT_INTERP_BILINEAR |
512 HORIZ_INTERP_BILINEAR);
513 break;
514 default:
515 break;
516 }
517
518out:
519 lvds_priv->pfit_control = pfit_control;
520 lvds_priv->pfit_pgm_ratios = pfit_pgm_ratios;
Jesse Barnes79e53942008-11-07 14:24:08 -0800521 /*
522 * XXX: It would be nice to support lower refresh rates on the
523 * panels to reduce power consumption, and perhaps match the
524 * user's requested refresh rate.
525 */
526
527 return true;
528}
529
530static void intel_lvds_prepare(struct drm_encoder *encoder)
531{
532 struct drm_device *dev = encoder->dev;
533 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800534 u32 reg;
Jesse Barnes79e53942008-11-07 14:24:08 -0800535
Zhenyu Wang541998a2009-06-05 15:38:44 +0800536 if (IS_IGDNG(dev))
537 reg = BLC_PWM_CPU_CTL;
538 else
539 reg = BLC_PWM_CTL;
540
541 dev_priv->saveBLC_PWM_CTL = I915_READ(reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800542 dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL &
543 BACKLIGHT_DUTY_CYCLE_MASK);
544
545 intel_lvds_set_power(dev, false);
546}
547
548static void intel_lvds_commit( struct drm_encoder *encoder)
549{
550 struct drm_device *dev = encoder->dev;
551 struct drm_i915_private *dev_priv = dev->dev_private;
552
553 if (dev_priv->backlight_duty_cycle == 0)
554 dev_priv->backlight_duty_cycle =
555 intel_lvds_get_max_backlight(dev);
556
557 intel_lvds_set_power(dev, true);
558}
559
560static void intel_lvds_mode_set(struct drm_encoder *encoder,
561 struct drm_display_mode *mode,
562 struct drm_display_mode *adjusted_mode)
563{
564 struct drm_device *dev = encoder->dev;
565 struct drm_i915_private *dev_priv = dev->dev_private;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800566 struct intel_output *intel_output = enc_to_intel_output(encoder);
567 struct intel_lvds_priv *lvds_priv = intel_output->dev_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -0800568
569 /*
570 * The LVDS pin pair will already have been turned on in the
571 * intel_crtc_mode_set since it has a large impact on the DPLL
572 * settings.
573 */
574
Zhenyu Wang541998a2009-06-05 15:38:44 +0800575 /* No panel fitting yet, fixme */
576 if (IS_IGDNG(dev))
577 return;
578
Jesse Barnes79e53942008-11-07 14:24:08 -0800579 /*
580 * Enable automatic panel scaling so that non-native modes fill the
581 * screen. Should be enabled before the pipe is enabled, according to
582 * register description and PRM.
583 */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800584 I915_WRITE(PFIT_PGM_RATIOS, lvds_priv->pfit_pgm_ratios);
585 I915_WRITE(PFIT_CONTROL, lvds_priv->pfit_control);
Jesse Barnes79e53942008-11-07 14:24:08 -0800586}
587
588/**
589 * Detect the LVDS connection.
590 *
591 * This always returns CONNECTOR_STATUS_CONNECTED. This connector should only have
592 * been set up if the LVDS was actually connected anyway.
593 */
594static enum drm_connector_status intel_lvds_detect(struct drm_connector *connector)
595{
596 return connector_status_connected;
597}
598
599/**
600 * Return the list of DDC modes if available, or the BIOS fixed mode otherwise.
601 */
602static int intel_lvds_get_modes(struct drm_connector *connector)
603{
604 struct drm_device *dev = connector->dev;
605 struct intel_output *intel_output = to_intel_output(connector);
606 struct drm_i915_private *dev_priv = dev->dev_private;
607 int ret = 0;
608
609 ret = intel_ddc_get_modes(intel_output);
610
611 if (ret)
612 return ret;
613
614 /* Didn't get an EDID, so
615 * Set wide sync ranges so we get all modes
616 * handed to valid_mode for checking
617 */
618 connector->display_info.min_vfreq = 0;
619 connector->display_info.max_vfreq = 200;
620 connector->display_info.min_hfreq = 0;
621 connector->display_info.max_hfreq = 200;
622
623 if (dev_priv->panel_fixed_mode != NULL) {
624 struct drm_display_mode *mode;
625
Jesse Barnes79e53942008-11-07 14:24:08 -0800626 mode = drm_mode_duplicate(dev, dev_priv->panel_fixed_mode);
627 drm_mode_probed_add(connector, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -0800628
629 return 1;
630 }
631
632 return 0;
633}
634
635/**
636 * intel_lvds_destroy - unregister and free LVDS structures
637 * @connector: connector to free
638 *
639 * Unregister the DDC bus for this connector then free the driver private
640 * structure.
641 */
642static void intel_lvds_destroy(struct drm_connector *connector)
643{
644 struct intel_output *intel_output = to_intel_output(connector);
645
646 if (intel_output->ddc_bus)
647 intel_i2c_destroy(intel_output->ddc_bus);
648 drm_sysfs_connector_remove(connector);
649 drm_connector_cleanup(connector);
650 kfree(connector);
651}
652
Jesse Barnes335041e2009-01-22 22:22:06 +1000653static int intel_lvds_set_property(struct drm_connector *connector,
654 struct drm_property *property,
655 uint64_t value)
656{
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800657 struct drm_device *dev = connector->dev;
658 struct intel_output *intel_output =
659 to_intel_output(connector);
660
661 if (property == dev->mode_config.scaling_mode_property &&
662 connector->encoder) {
663 struct drm_crtc *crtc = connector->encoder->crtc;
664 struct intel_lvds_priv *lvds_priv = intel_output->dev_priv;
Jesse Barnes53bd8382009-07-01 10:04:40 -0700665 if (value == DRM_MODE_SCALE_NONE) {
666 DRM_DEBUG_KMS("no scaling not supported\n");
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800667 return 0;
668 }
669 if (lvds_priv->fitting_mode == value) {
670 /* the LVDS scaling property is not changed */
671 return 0;
672 }
673 lvds_priv->fitting_mode = value;
674 if (crtc && crtc->enabled) {
675 /*
676 * If the CRTC is enabled, the display will be changed
677 * according to the new panel fitting mode.
678 */
679 drm_crtc_helper_set_mode(crtc, &crtc->mode,
680 crtc->x, crtc->y, crtc->fb);
681 }
682 }
683
Jesse Barnes335041e2009-01-22 22:22:06 +1000684 return 0;
685}
686
Jesse Barnes79e53942008-11-07 14:24:08 -0800687static const struct drm_encoder_helper_funcs intel_lvds_helper_funcs = {
688 .dpms = intel_lvds_dpms,
689 .mode_fixup = intel_lvds_mode_fixup,
690 .prepare = intel_lvds_prepare,
691 .mode_set = intel_lvds_mode_set,
692 .commit = intel_lvds_commit,
693};
694
695static const struct drm_connector_helper_funcs intel_lvds_connector_helper_funcs = {
696 .get_modes = intel_lvds_get_modes,
697 .mode_valid = intel_lvds_mode_valid,
698 .best_encoder = intel_best_encoder,
699};
700
701static const struct drm_connector_funcs intel_lvds_connector_funcs = {
Keith Packardc9fb15f2009-05-30 20:42:28 -0700702 .dpms = drm_helper_connector_dpms,
Jesse Barnes79e53942008-11-07 14:24:08 -0800703 .save = intel_lvds_save,
704 .restore = intel_lvds_restore,
705 .detect = intel_lvds_detect,
706 .fill_modes = drm_helper_probe_single_connector_modes,
Jesse Barnes335041e2009-01-22 22:22:06 +1000707 .set_property = intel_lvds_set_property,
Jesse Barnes79e53942008-11-07 14:24:08 -0800708 .destroy = intel_lvds_destroy,
709};
710
711
712static void intel_lvds_enc_destroy(struct drm_encoder *encoder)
713{
714 drm_encoder_cleanup(encoder);
715}
716
717static const struct drm_encoder_funcs intel_lvds_enc_funcs = {
718 .destroy = intel_lvds_enc_destroy,
719};
720
Jarod Wilson425d2442009-05-05 10:00:25 -0400721static int __init intel_no_lvds_dmi_callback(const struct dmi_system_id *id)
722{
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800723 DRM_DEBUG_KMS("Skipping LVDS initialization for %s\n", id->ident);
Jarod Wilson425d2442009-05-05 10:00:25 -0400724 return 1;
725}
Jesse Barnes79e53942008-11-07 14:24:08 -0800726
Jarod Wilson425d2442009-05-05 10:00:25 -0400727/* These systems claim to have LVDS, but really don't */
Jaswinder Singh Rajput93c05f22009-06-04 09:41:19 +1000728static const struct dmi_system_id intel_no_lvds[] = {
Jarod Wilson425d2442009-05-05 10:00:25 -0400729 {
730 .callback = intel_no_lvds_dmi_callback,
731 .ident = "Apple Mac Mini (Core series)",
732 .matches = {
Keith Packard98acd462009-06-14 12:31:58 -0700733 DMI_MATCH(DMI_SYS_VENDOR, "Apple"),
Jarod Wilson425d2442009-05-05 10:00:25 -0400734 DMI_MATCH(DMI_PRODUCT_NAME, "Macmini1,1"),
735 },
736 },
737 {
738 .callback = intel_no_lvds_dmi_callback,
739 .ident = "Apple Mac Mini (Core 2 series)",
740 .matches = {
Keith Packard98acd462009-06-14 12:31:58 -0700741 DMI_MATCH(DMI_SYS_VENDOR, "Apple"),
Jarod Wilson425d2442009-05-05 10:00:25 -0400742 DMI_MATCH(DMI_PRODUCT_NAME, "Macmini2,1"),
743 },
744 },
745 {
746 .callback = intel_no_lvds_dmi_callback,
747 .ident = "MSI IM-945GSE-A",
748 .matches = {
749 DMI_MATCH(DMI_SYS_VENDOR, "MSI"),
750 DMI_MATCH(DMI_PRODUCT_NAME, "A9830IMS"),
751 },
752 },
753 {
754 .callback = intel_no_lvds_dmi_callback,
755 .ident = "Dell Studio Hybrid",
756 .matches = {
757 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
758 DMI_MATCH(DMI_PRODUCT_NAME, "Studio Hybrid 140g"),
759 },
760 },
Jarod Wilson70aa96c2009-05-27 17:20:39 -0400761 {
762 .callback = intel_no_lvds_dmi_callback,
763 .ident = "AOpen Mini PC",
764 .matches = {
765 DMI_MATCH(DMI_SYS_VENDOR, "AOpen"),
766 DMI_MATCH(DMI_PRODUCT_NAME, "i965GMx-IF"),
767 },
768 },
Michael Cousinfa0864b2009-06-05 21:16:22 +0200769 {
770 .callback = intel_no_lvds_dmi_callback,
771 .ident = "Aopen i945GTt-VFA",
772 .matches = {
773 DMI_MATCH(DMI_PRODUCT_VERSION, "AO00001JW"),
774 },
775 },
Jarod Wilson425d2442009-05-05 10:00:25 -0400776
777 { } /* terminating entry */
778};
Jesse Barnes79e53942008-11-07 14:24:08 -0800779
Zhao Yakuie99da352009-06-26 09:46:18 +0800780#ifdef CONFIG_ACPI
781/*
782 * check_lid_device -- check whether @handle is an ACPI LID device.
783 * @handle: ACPI device handle
784 * @level : depth in the ACPI namespace tree
785 * @context: the number of LID device when we find the device
786 * @rv: a return value to fill if desired (Not use)
787 */
788static acpi_status
789check_lid_device(acpi_handle handle, u32 level, void *context,
790 void **return_value)
791{
792 struct acpi_device *acpi_dev;
793 int *lid_present = context;
794
795 acpi_dev = NULL;
796 /* Get the acpi device for device handle */
797 if (acpi_bus_get_device(handle, &acpi_dev) || !acpi_dev) {
798 /* If there is no ACPI device for handle, return */
799 return AE_OK;
800 }
801
802 if (!strncmp(acpi_device_hid(acpi_dev), "PNP0C0D", 7))
803 *lid_present = 1;
804
805 return AE_OK;
806}
807
808/**
809 * check whether there exists the ACPI LID device by enumerating the ACPI
810 * device tree.
811 */
812static int intel_lid_present(void)
813{
814 int lid_present = 0;
815
816 if (acpi_disabled) {
817 /* If ACPI is disabled, there is no ACPI device tree to
818 * check, so assume the LID device would have been present.
819 */
820 return 1;
821 }
822
823 acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
824 ACPI_UINT32_MAX,
825 check_lid_device, &lid_present, NULL);
826
827 return lid_present;
828}
829#else
830static int intel_lid_present(void)
831{
832 /* In the absence of ACPI built in, assume that the LID device would
833 * have been present.
834 */
835 return 1;
836}
837#endif
838
Jesse Barnes79e53942008-11-07 14:24:08 -0800839/**
840 * intel_lvds_init - setup LVDS connectors on this device
841 * @dev: drm device
842 *
843 * Create the connector, register the LVDS DDC bus, and try to figure out what
844 * modes we can display on the LVDS panel (if present).
845 */
846void intel_lvds_init(struct drm_device *dev)
847{
848 struct drm_i915_private *dev_priv = dev->dev_private;
849 struct intel_output *intel_output;
850 struct drm_connector *connector;
851 struct drm_encoder *encoder;
852 struct drm_display_mode *scan; /* *modes, *bios_mode; */
853 struct drm_crtc *crtc;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800854 struct intel_lvds_priv *lvds_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -0800855 u32 lvds;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800856 int pipe, gpio = GPIOC;
Jesse Barnes79e53942008-11-07 14:24:08 -0800857
Jarod Wilson425d2442009-05-05 10:00:25 -0400858 /* Skip init on machines we know falsely report LVDS */
859 if (dmi_check_system(intel_no_lvds))
Paul Collins565dcd42009-02-04 23:05:41 +1300860 return;
Paul Collins565dcd42009-02-04 23:05:41 +1300861
Zhao Yakuie99da352009-06-26 09:46:18 +0800862 /* Assume that any device without an ACPI LID device also doesn't
863 * have an integrated LVDS. We would be better off parsing the BIOS
864 * to get a reliable indicator, but that code isn't written yet.
865 *
866 * In the case of all-in-one desktops using LVDS that we've seen,
867 * they're using SDVO LVDS.
868 */
869 if (!intel_lid_present())
870 return;
871
Zhenyu Wang541998a2009-06-05 15:38:44 +0800872 if (IS_IGDNG(dev)) {
873 if ((I915_READ(PCH_LVDS) & LVDS_DETECTED) == 0)
874 return;
875 gpio = PCH_GPIOC;
876 }
877
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800878 intel_output = kzalloc(sizeof(struct intel_output) +
879 sizeof(struct intel_lvds_priv), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -0800880 if (!intel_output) {
881 return;
882 }
883
884 connector = &intel_output->base;
885 encoder = &intel_output->enc;
886 drm_connector_init(dev, &intel_output->base, &intel_lvds_connector_funcs,
887 DRM_MODE_CONNECTOR_LVDS);
888
889 drm_encoder_init(dev, &intel_output->enc, &intel_lvds_enc_funcs,
890 DRM_MODE_ENCODER_LVDS);
891
892 drm_mode_connector_attach_encoder(&intel_output->base, &intel_output->enc);
893 intel_output->type = INTEL_OUTPUT_LVDS;
894
895 drm_encoder_helper_add(encoder, &intel_lvds_helper_funcs);
896 drm_connector_helper_add(connector, &intel_lvds_connector_helper_funcs);
897 connector->display_info.subpixel_order = SubPixelHorizontalRGB;
898 connector->interlace_allowed = false;
899 connector->doublescan_allowed = false;
900
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800901 lvds_priv = (struct intel_lvds_priv *)(intel_output + 1);
902 intel_output->dev_priv = lvds_priv;
903 /* create the scaling mode property */
904 drm_mode_create_scaling_mode_property(dev);
905 /*
906 * the initial panel fitting mode will be FULL_SCREEN.
907 */
Jesse Barnes79e53942008-11-07 14:24:08 -0800908
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800909 drm_connector_attach_property(&intel_output->base,
910 dev->mode_config.scaling_mode_property,
911 DRM_MODE_SCALE_FULLSCREEN);
912 lvds_priv->fitting_mode = DRM_MODE_SCALE_FULLSCREEN;
Jesse Barnes79e53942008-11-07 14:24:08 -0800913 /*
914 * LVDS discovery:
915 * 1) check for EDID on DDC
916 * 2) check for VBT data
917 * 3) check to see if LVDS is already on
918 * if none of the above, no panel
919 * 4) make sure lid is open
920 * if closed, act like it's not there for now
921 */
922
923 /* Set up the DDC bus. */
Zhenyu Wang541998a2009-06-05 15:38:44 +0800924 intel_output->ddc_bus = intel_i2c_create(dev, gpio, "LVDSDDC_C");
Jesse Barnes79e53942008-11-07 14:24:08 -0800925 if (!intel_output->ddc_bus) {
926 dev_printk(KERN_ERR, &dev->pdev->dev, "DDC bus registration "
927 "failed.\n");
928 goto failed;
929 }
930
931 /*
932 * Attempt to get the fixed panel mode from DDC. Assume that the
933 * preferred mode is the right one.
934 */
935 intel_ddc_get_modes(intel_output);
936
937 list_for_each_entry(scan, &connector->probed_modes, head) {
938 mutex_lock(&dev->mode_config.mutex);
939 if (scan->type & DRM_MODE_TYPE_PREFERRED) {
940 dev_priv->panel_fixed_mode =
941 drm_mode_duplicate(dev, scan);
942 mutex_unlock(&dev->mode_config.mutex);
Paul Collins565dcd42009-02-04 23:05:41 +1300943 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -0800944 }
945 mutex_unlock(&dev->mode_config.mutex);
946 }
947
948 /* Failed to get EDID, what about VBT? */
Ma Ling88631702009-05-13 11:19:55 +0800949 if (dev_priv->lfp_lvds_vbt_mode) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800950 mutex_lock(&dev->mode_config.mutex);
951 dev_priv->panel_fixed_mode =
Ma Ling88631702009-05-13 11:19:55 +0800952 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -0800953 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnese285f3cd2009-01-14 10:53:36 -0800954 if (dev_priv->panel_fixed_mode) {
955 dev_priv->panel_fixed_mode->type |=
956 DRM_MODE_TYPE_PREFERRED;
Jesse Barnese285f3cd2009-01-14 10:53:36 -0800957 goto out;
958 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800959 }
960
961 /*
962 * If we didn't get EDID, try checking if the panel is already turned
963 * on. If so, assume that whatever is currently programmed is the
964 * correct mode.
965 */
Zhenyu Wang541998a2009-06-05 15:38:44 +0800966
967 /* IGDNG: FIXME if still fail, not try pipe mode now */
968 if (IS_IGDNG(dev))
969 goto failed;
970
Jesse Barnes79e53942008-11-07 14:24:08 -0800971 lvds = I915_READ(LVDS);
972 pipe = (lvds & LVDS_PIPEB_SELECT) ? 1 : 0;
973 crtc = intel_get_crtc_from_pipe(dev, pipe);
974
975 if (crtc && (lvds & LVDS_PORT_EN)) {
976 dev_priv->panel_fixed_mode = intel_crtc_mode_get(dev, crtc);
977 if (dev_priv->panel_fixed_mode) {
978 dev_priv->panel_fixed_mode->type |=
979 DRM_MODE_TYPE_PREFERRED;
Paul Collins565dcd42009-02-04 23:05:41 +1300980 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -0800981 }
982 }
983
984 /* If we still don't have a mode after all that, give up. */
985 if (!dev_priv->panel_fixed_mode)
986 goto failed;
987
Jesse Barnes79e53942008-11-07 14:24:08 -0800988out:
Zhenyu Wang541998a2009-06-05 15:38:44 +0800989 if (IS_IGDNG(dev)) {
990 u32 pwm;
991 /* make sure PWM is enabled */
992 pwm = I915_READ(BLC_PWM_CPU_CTL2);
993 pwm |= (PWM_ENABLE | PWM_PIPE_B);
994 I915_WRITE(BLC_PWM_CPU_CTL2, pwm);
995
996 pwm = I915_READ(BLC_PWM_PCH_CTL1);
997 pwm |= PWM_PCH_ENABLE;
998 I915_WRITE(BLC_PWM_PCH_CTL1, pwm);
999 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001000 drm_sysfs_connector_add(connector);
1001 return;
1002
1003failed:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001004 DRM_DEBUG_KMS("No LVDS modes found, disabling.\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08001005 if (intel_output->ddc_bus)
1006 intel_i2c_destroy(intel_output->ddc_bus);
1007 drm_connector_cleanup(connector);
Zhao Yakui3fbe18d2009-06-22 15:31:25 +08001008 kfree(intel_output);
Jesse Barnes79e53942008-11-07 14:24:08 -08001009}