blob: 8238b408644e2801b22f36c821ee3b349ae13134 [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
Jesse Barnesc1c7af62009-09-10 15:28:03 -070030#include <acpi/button.h>
Paul Collins565dcd42009-02-04 23:05:41 +130031#include <linux/dmi.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080032#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 Yakuie99da352009-06-26 09:46:18 +080040#include <linux/acpi.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080041
Zhao Yakui3fbe18d2009-06-22 15:31:25 +080042/* Private structure for the integrated LVDS support */
43struct intel_lvds_priv {
44 int fitting_mode;
45 u32 pfit_control;
46 u32 pfit_pgm_ratios;
47};
48
Jesse Barnes79e53942008-11-07 14:24:08 -080049/**
50 * Sets the backlight level.
51 *
52 * \param level backlight level, from 0 to intel_lvds_get_max_backlight().
53 */
54static void intel_lvds_set_backlight(struct drm_device *dev, int level)
55{
56 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +080057 u32 blc_pwm_ctl, reg;
Jesse Barnes79e53942008-11-07 14:24:08 -080058
Eric Anholtc619eed2010-01-28 16:45:52 -080059 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +080060 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 Barnes79e53942008-11-07 14:24:08 -080066 (level << BACKLIGHT_DUTY_CYCLE_SHIFT)));
67}
68
69/**
70 * Returns the maximum level of the backlight duty cycle field.
71 */
72static u32 intel_lvds_get_max_backlight(struct drm_device *dev)
73{
74 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +080075 u32 reg;
Jesse Barnes79e53942008-11-07 14:24:08 -080076
Eric Anholtc619eed2010-01-28 16:45:52 -080077 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +080078 reg = BLC_PWM_PCH_CTL2;
79 else
80 reg = BLC_PWM_CTL;
81
82 return ((I915_READ(reg) & BACKLIGHT_MODULATION_FREQ_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -080083 BACKLIGHT_MODULATION_FREQ_SHIFT) * 2;
84}
85
86/**
87 * Sets the power state for the panel.
88 */
89static void intel_lvds_set_power(struct drm_device *dev, bool on)
90{
91 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes469d1292010-02-11 12:41:05 -080092 u32 pp_status, ctl_reg, status_reg, lvds_reg;
Zhenyu Wang541998a2009-06-05 15:38:44 +080093
Eric Anholtc619eed2010-01-28 16:45:52 -080094 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +080095 ctl_reg = PCH_PP_CONTROL;
96 status_reg = PCH_PP_STATUS;
Jesse Barnes469d1292010-02-11 12:41:05 -080097 lvds_reg = PCH_LVDS;
Zhenyu Wang541998a2009-06-05 15:38:44 +080098 } else {
99 ctl_reg = PP_CONTROL;
100 status_reg = PP_STATUS;
Jesse Barnes469d1292010-02-11 12:41:05 -0800101 lvds_reg = LVDS;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800102 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800103
104 if (on) {
Jesse Barnes469d1292010-02-11 12:41:05 -0800105 I915_WRITE(lvds_reg, I915_READ(lvds_reg) | LVDS_PORT_EN);
106 POSTING_READ(lvds_reg);
107
Zhenyu Wang541998a2009-06-05 15:38:44 +0800108 I915_WRITE(ctl_reg, I915_READ(ctl_reg) |
Jesse Barnes79e53942008-11-07 14:24:08 -0800109 POWER_TARGET_ON);
110 do {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800111 pp_status = I915_READ(status_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800112 } while ((pp_status & PP_ON) == 0);
113
114 intel_lvds_set_backlight(dev, dev_priv->backlight_duty_cycle);
115 } else {
116 intel_lvds_set_backlight(dev, 0);
117
Zhenyu Wang541998a2009-06-05 15:38:44 +0800118 I915_WRITE(ctl_reg, I915_READ(ctl_reg) &
Jesse Barnes79e53942008-11-07 14:24:08 -0800119 ~POWER_TARGET_ON);
120 do {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800121 pp_status = I915_READ(status_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800122 } while (pp_status & PP_ON);
Jesse Barnes469d1292010-02-11 12:41:05 -0800123
124 I915_WRITE(lvds_reg, I915_READ(lvds_reg) & ~LVDS_PORT_EN);
125 POSTING_READ(lvds_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800126 }
127}
128
129static void intel_lvds_dpms(struct drm_encoder *encoder, int mode)
130{
131 struct drm_device *dev = encoder->dev;
132
133 if (mode == DRM_MODE_DPMS_ON)
134 intel_lvds_set_power(dev, true);
135 else
136 intel_lvds_set_power(dev, false);
137
138 /* XXX: We never power down the LVDS pairs. */
139}
140
141static void intel_lvds_save(struct drm_connector *connector)
142{
143 struct drm_device *dev = connector->dev;
144 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800145 u32 pp_on_reg, pp_off_reg, pp_ctl_reg, pp_div_reg;
146 u32 pwm_ctl_reg;
Jesse Barnes79e53942008-11-07 14:24:08 -0800147
Eric Anholtc619eed2010-01-28 16:45:52 -0800148 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800149 pp_on_reg = PCH_PP_ON_DELAYS;
150 pp_off_reg = PCH_PP_OFF_DELAYS;
151 pp_ctl_reg = PCH_PP_CONTROL;
152 pp_div_reg = PCH_PP_DIVISOR;
153 pwm_ctl_reg = BLC_PWM_CPU_CTL;
154 } else {
155 pp_on_reg = PP_ON_DELAYS;
156 pp_off_reg = PP_OFF_DELAYS;
157 pp_ctl_reg = PP_CONTROL;
158 pp_div_reg = PP_DIVISOR;
159 pwm_ctl_reg = BLC_PWM_CTL;
160 }
161
162 dev_priv->savePP_ON = I915_READ(pp_on_reg);
163 dev_priv->savePP_OFF = I915_READ(pp_off_reg);
164 dev_priv->savePP_CONTROL = I915_READ(pp_ctl_reg);
165 dev_priv->savePP_DIVISOR = I915_READ(pp_div_reg);
166 dev_priv->saveBLC_PWM_CTL = I915_READ(pwm_ctl_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800167 dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL &
168 BACKLIGHT_DUTY_CYCLE_MASK);
169
170 /*
171 * If the light is off at server startup, just make it full brightness
172 */
173 if (dev_priv->backlight_duty_cycle == 0)
174 dev_priv->backlight_duty_cycle =
175 intel_lvds_get_max_backlight(dev);
176}
177
178static void intel_lvds_restore(struct drm_connector *connector)
179{
180 struct drm_device *dev = connector->dev;
181 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800182 u32 pp_on_reg, pp_off_reg, pp_ctl_reg, pp_div_reg;
183 u32 pwm_ctl_reg;
Jesse Barnes79e53942008-11-07 14:24:08 -0800184
Eric Anholtc619eed2010-01-28 16:45:52 -0800185 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800186 pp_on_reg = PCH_PP_ON_DELAYS;
187 pp_off_reg = PCH_PP_OFF_DELAYS;
188 pp_ctl_reg = PCH_PP_CONTROL;
189 pp_div_reg = PCH_PP_DIVISOR;
190 pwm_ctl_reg = BLC_PWM_CPU_CTL;
191 } else {
192 pp_on_reg = PP_ON_DELAYS;
193 pp_off_reg = PP_OFF_DELAYS;
194 pp_ctl_reg = PP_CONTROL;
195 pp_div_reg = PP_DIVISOR;
196 pwm_ctl_reg = BLC_PWM_CTL;
197 }
198
199 I915_WRITE(pwm_ctl_reg, dev_priv->saveBLC_PWM_CTL);
200 I915_WRITE(pp_on_reg, dev_priv->savePP_ON);
201 I915_WRITE(pp_off_reg, dev_priv->savePP_OFF);
202 I915_WRITE(pp_div_reg, dev_priv->savePP_DIVISOR);
203 I915_WRITE(pp_ctl_reg, dev_priv->savePP_CONTROL);
Jesse Barnes79e53942008-11-07 14:24:08 -0800204 if (dev_priv->savePP_CONTROL & POWER_TARGET_ON)
205 intel_lvds_set_power(dev, true);
206 else
207 intel_lvds_set_power(dev, false);
208}
209
210static int intel_lvds_mode_valid(struct drm_connector *connector,
211 struct drm_display_mode *mode)
212{
213 struct drm_device *dev = connector->dev;
214 struct drm_i915_private *dev_priv = dev->dev_private;
215 struct drm_display_mode *fixed_mode = dev_priv->panel_fixed_mode;
216
217 if (fixed_mode) {
218 if (mode->hdisplay > fixed_mode->hdisplay)
219 return MODE_PANEL;
220 if (mode->vdisplay > fixed_mode->vdisplay)
221 return MODE_PANEL;
222 }
223
224 return MODE_OK;
225}
226
227static bool intel_lvds_mode_fixup(struct drm_encoder *encoder,
228 struct drm_display_mode *mode,
229 struct drm_display_mode *adjusted_mode)
230{
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800231 /*
232 * float point operation is not supported . So the PANEL_RATIO_FACTOR
233 * is defined, which can avoid the float point computation when
234 * calculating the panel ratio.
235 */
236#define PANEL_RATIO_FACTOR 8192
Jesse Barnes79e53942008-11-07 14:24:08 -0800237 struct drm_device *dev = encoder->dev;
238 struct drm_i915_private *dev_priv = dev->dev_private;
239 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
240 struct drm_encoder *tmp_encoder;
Eric Anholt21d40d32010-03-25 11:11:14 -0700241 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
242 struct intel_lvds_priv *lvds_priv = intel_encoder->dev_priv;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800243 u32 pfit_control = 0, pfit_pgm_ratios = 0;
244 int left_border = 0, right_border = 0, top_border = 0;
245 int bottom_border = 0;
246 bool border = 0;
247 int panel_ratio, desired_ratio, vert_scale, horiz_scale;
248 int horiz_ratio, vert_ratio;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800249 u32 hsync_width, vsync_width;
250 u32 hblank_width, vblank_width;
251 u32 hsync_pos, vsync_pos;
Jesse Barnes79e53942008-11-07 14:24:08 -0800252
253 /* Should never happen!! */
254 if (!IS_I965G(dev) && intel_crtc->pipe == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700255 DRM_ERROR("Can't support LVDS on pipe A\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800256 return false;
257 }
258
259 /* Should never happen!! */
260 list_for_each_entry(tmp_encoder, &dev->mode_config.encoder_list, head) {
261 if (tmp_encoder != encoder && tmp_encoder->crtc == encoder->crtc) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700262 DRM_ERROR("Can't enable LVDS and another "
Jesse Barnes79e53942008-11-07 14:24:08 -0800263 "encoder on the same pipe\n");
264 return false;
265 }
266 }
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800267 /* If we don't have a panel mode, there is nothing we can do */
268 if (dev_priv->panel_fixed_mode == NULL)
269 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -0800270 /*
271 * If we have timings from the BIOS for the panel, put them in
272 * to the adjusted mode. The CRTC will be set up for this mode,
273 * with the panel scaling set up to source from the H/VDisplay
274 * of the original mode.
275 */
276 if (dev_priv->panel_fixed_mode != NULL) {
277 adjusted_mode->hdisplay = dev_priv->panel_fixed_mode->hdisplay;
278 adjusted_mode->hsync_start =
279 dev_priv->panel_fixed_mode->hsync_start;
280 adjusted_mode->hsync_end =
281 dev_priv->panel_fixed_mode->hsync_end;
282 adjusted_mode->htotal = dev_priv->panel_fixed_mode->htotal;
283 adjusted_mode->vdisplay = dev_priv->panel_fixed_mode->vdisplay;
284 adjusted_mode->vsync_start =
285 dev_priv->panel_fixed_mode->vsync_start;
286 adjusted_mode->vsync_end =
287 dev_priv->panel_fixed_mode->vsync_end;
288 adjusted_mode->vtotal = dev_priv->panel_fixed_mode->vtotal;
289 adjusted_mode->clock = dev_priv->panel_fixed_mode->clock;
290 drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V);
291 }
292
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800293 /* Make sure pre-965s set dither correctly */
294 if (!IS_I965G(dev)) {
295 if (dev_priv->panel_wants_dither || dev_priv->lvds_dither)
296 pfit_control |= PANEL_8TO6_DITHER_ENABLE;
297 }
298
299 /* Native modes don't need fitting */
300 if (adjusted_mode->hdisplay == mode->hdisplay &&
301 adjusted_mode->vdisplay == mode->vdisplay) {
302 pfit_pgm_ratios = 0;
303 border = 0;
304 goto out;
305 }
306
Zhenyu Wang8dd81a32009-09-19 14:54:09 +0800307 /* full screen scale for now */
Eric Anholtc619eed2010-01-28 16:45:52 -0800308 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang8dd81a32009-09-19 14:54:09 +0800309 goto out;
310
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800311 /* 965+ wants fuzzy fitting */
312 if (IS_I965G(dev))
313 pfit_control |= (intel_crtc->pipe << PFIT_PIPE_SHIFT) |
314 PFIT_FILTER_FUZZY;
315
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800316 hsync_width = adjusted_mode->crtc_hsync_end -
317 adjusted_mode->crtc_hsync_start;
318 vsync_width = adjusted_mode->crtc_vsync_end -
319 adjusted_mode->crtc_vsync_start;
320 hblank_width = adjusted_mode->crtc_hblank_end -
321 adjusted_mode->crtc_hblank_start;
322 vblank_width = adjusted_mode->crtc_vblank_end -
323 adjusted_mode->crtc_vblank_start;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800324 /*
325 * Deal with panel fitting options. Figure out how to stretch the
326 * image based on its aspect ratio & the current panel fitting mode.
327 */
328 panel_ratio = adjusted_mode->hdisplay * PANEL_RATIO_FACTOR /
329 adjusted_mode->vdisplay;
330 desired_ratio = mode->hdisplay * PANEL_RATIO_FACTOR /
331 mode->vdisplay;
332 /*
333 * Enable automatic panel scaling for non-native modes so that they fill
334 * the screen. Should be enabled before the pipe is enabled, according
335 * to register description and PRM.
336 * Change the value here to see the borders for debugging
337 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800338 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang8dd81a32009-09-19 14:54:09 +0800339 I915_WRITE(BCLRPAT_A, 0);
340 I915_WRITE(BCLRPAT_B, 0);
341 }
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800342
343 switch (lvds_priv->fitting_mode) {
Jesse Barnes53bd8382009-07-01 10:04:40 -0700344 case DRM_MODE_SCALE_CENTER:
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800345 /*
346 * For centered modes, we have to calculate border widths &
347 * heights and modify the values programmed into the CRTC.
348 */
349 left_border = (adjusted_mode->hdisplay - mode->hdisplay) / 2;
350 right_border = left_border;
351 if (mode->hdisplay & 1)
352 right_border++;
353 top_border = (adjusted_mode->vdisplay - mode->vdisplay) / 2;
354 bottom_border = top_border;
355 if (mode->vdisplay & 1)
356 bottom_border++;
357 /* Set active & border values */
358 adjusted_mode->crtc_hdisplay = mode->hdisplay;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800359 /* Keep the boder be even */
360 if (right_border & 1)
361 right_border++;
362 /* use the border directly instead of border minuse one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800363 adjusted_mode->crtc_hblank_start = mode->hdisplay +
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800364 right_border;
365 /* keep the blank width constant */
366 adjusted_mode->crtc_hblank_end =
367 adjusted_mode->crtc_hblank_start + hblank_width;
368 /* get the hsync pos relative to hblank start */
369 hsync_pos = (hblank_width - hsync_width) / 2;
370 /* keep the hsync pos be even */
371 if (hsync_pos & 1)
372 hsync_pos++;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800373 adjusted_mode->crtc_hsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800374 adjusted_mode->crtc_hblank_start + hsync_pos;
375 /* keep the hsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800376 adjusted_mode->crtc_hsync_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800377 adjusted_mode->crtc_hsync_start + hsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800378 adjusted_mode->crtc_vdisplay = mode->vdisplay;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800379 /* use the border instead of border minus one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800380 adjusted_mode->crtc_vblank_start = mode->vdisplay +
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800381 bottom_border;
382 /* keep the vblank width constant */
383 adjusted_mode->crtc_vblank_end =
384 adjusted_mode->crtc_vblank_start + vblank_width;
385 /* get the vsync start postion relative to vblank start */
386 vsync_pos = (vblank_width - vsync_width) / 2;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800387 adjusted_mode->crtc_vsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800388 adjusted_mode->crtc_vblank_start + vsync_pos;
389 /* keep the vsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800390 adjusted_mode->crtc_vsync_end =
Zhao Yakuia3e17eb2009-10-10 10:42:37 +0800391 adjusted_mode->crtc_vsync_start + vsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800392 border = 1;
393 break;
394 case DRM_MODE_SCALE_ASPECT:
395 /* Scale but preserve the spect ratio */
396 pfit_control |= PFIT_ENABLE;
397 if (IS_I965G(dev)) {
398 /* 965+ is easy, it does everything in hw */
399 if (panel_ratio > desired_ratio)
400 pfit_control |= PFIT_SCALING_PILLAR;
401 else if (panel_ratio < desired_ratio)
402 pfit_control |= PFIT_SCALING_LETTER;
403 else
404 pfit_control |= PFIT_SCALING_AUTO;
405 } else {
406 /*
407 * For earlier chips we have to calculate the scaling
408 * ratio by hand and program it into the
409 * PFIT_PGM_RATIO register
410 */
411 u32 horiz_bits, vert_bits, bits = 12;
412 horiz_ratio = mode->hdisplay * PANEL_RATIO_FACTOR/
413 adjusted_mode->hdisplay;
414 vert_ratio = mode->vdisplay * PANEL_RATIO_FACTOR/
415 adjusted_mode->vdisplay;
416 horiz_scale = adjusted_mode->hdisplay *
417 PANEL_RATIO_FACTOR / mode->hdisplay;
418 vert_scale = adjusted_mode->vdisplay *
419 PANEL_RATIO_FACTOR / mode->vdisplay;
420
421 /* retain aspect ratio */
422 if (panel_ratio > desired_ratio) { /* Pillar */
423 u32 scaled_width;
424 scaled_width = mode->hdisplay * vert_scale /
425 PANEL_RATIO_FACTOR;
426 horiz_ratio = vert_ratio;
427 pfit_control |= (VERT_AUTO_SCALE |
428 VERT_INTERP_BILINEAR |
429 HORIZ_INTERP_BILINEAR);
430 /* Pillar will have left/right borders */
431 left_border = (adjusted_mode->hdisplay -
432 scaled_width) / 2;
433 right_border = left_border;
434 if (mode->hdisplay & 1) /* odd resolutions */
435 right_border++;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800436 /* keep the border be even */
437 if (right_border & 1)
438 right_border++;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800439 adjusted_mode->crtc_hdisplay = scaled_width;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800440 /* use border instead of border minus one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800441 adjusted_mode->crtc_hblank_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800442 scaled_width + right_border;
443 /* keep the hblank width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800444 adjusted_mode->crtc_hblank_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800445 adjusted_mode->crtc_hblank_start +
446 hblank_width;
447 /*
448 * get the hsync start pos relative to
449 * hblank start
450 */
451 hsync_pos = (hblank_width - hsync_width) / 2;
452 /* keep the hsync_pos be even */
453 if (hsync_pos & 1)
454 hsync_pos++;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800455 adjusted_mode->crtc_hsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800456 adjusted_mode->crtc_hblank_start +
457 hsync_pos;
458 /* keept hsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800459 adjusted_mode->crtc_hsync_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800460 adjusted_mode->crtc_hsync_start +
461 hsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800462 border = 1;
463 } else if (panel_ratio < desired_ratio) { /* letter */
464 u32 scaled_height = mode->vdisplay *
465 horiz_scale / PANEL_RATIO_FACTOR;
466 vert_ratio = horiz_ratio;
467 pfit_control |= (HORIZ_AUTO_SCALE |
468 VERT_INTERP_BILINEAR |
469 HORIZ_INTERP_BILINEAR);
470 /* Letterbox will have top/bottom border */
471 top_border = (adjusted_mode->vdisplay -
472 scaled_height) / 2;
473 bottom_border = top_border;
474 if (mode->vdisplay & 1)
475 bottom_border++;
476 adjusted_mode->crtc_vdisplay = scaled_height;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800477 /* use border instead of border minus one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800478 adjusted_mode->crtc_vblank_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800479 scaled_height + bottom_border;
480 /* keep the vblank width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800481 adjusted_mode->crtc_vblank_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800482 adjusted_mode->crtc_vblank_start +
483 vblank_width;
484 /*
485 * get the vsync start pos relative to
486 * vblank start
487 */
488 vsync_pos = (vblank_width - vsync_width) / 2;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800489 adjusted_mode->crtc_vsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800490 adjusted_mode->crtc_vblank_start +
491 vsync_pos;
492 /* keep the vsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800493 adjusted_mode->crtc_vsync_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800494 adjusted_mode->crtc_vsync_start +
495 vsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800496 border = 1;
497 } else {
498 /* Aspects match, Let hw scale both directions */
499 pfit_control |= (VERT_AUTO_SCALE |
500 HORIZ_AUTO_SCALE |
501 VERT_INTERP_BILINEAR |
502 HORIZ_INTERP_BILINEAR);
503 }
504 horiz_bits = (1 << bits) * horiz_ratio /
505 PANEL_RATIO_FACTOR;
506 vert_bits = (1 << bits) * vert_ratio /
507 PANEL_RATIO_FACTOR;
508 pfit_pgm_ratios =
509 ((vert_bits << PFIT_VERT_SCALE_SHIFT) &
510 PFIT_VERT_SCALE_MASK) |
511 ((horiz_bits << PFIT_HORIZ_SCALE_SHIFT) &
512 PFIT_HORIZ_SCALE_MASK);
513 }
514 break;
515
516 case DRM_MODE_SCALE_FULLSCREEN:
517 /*
518 * Full scaling, even if it changes the aspect ratio.
519 * Fortunately this is all done for us in hw.
520 */
521 pfit_control |= PFIT_ENABLE;
522 if (IS_I965G(dev))
523 pfit_control |= PFIT_SCALING_AUTO;
524 else
525 pfit_control |= (VERT_AUTO_SCALE | HORIZ_AUTO_SCALE |
526 VERT_INTERP_BILINEAR |
527 HORIZ_INTERP_BILINEAR);
528 break;
529 default:
530 break;
531 }
532
533out:
534 lvds_priv->pfit_control = pfit_control;
535 lvds_priv->pfit_pgm_ratios = pfit_pgm_ratios;
Jesse Barnes79e53942008-11-07 14:24:08 -0800536 /*
Zhao Yakuia3e17eb2009-10-10 10:42:37 +0800537 * When there exists the border, it means that the LVDS_BORDR
538 * should be enabled.
539 */
540 if (border)
541 dev_priv->lvds_border_bits |= LVDS_BORDER_ENABLE;
542 else
543 dev_priv->lvds_border_bits &= ~(LVDS_BORDER_ENABLE);
544 /*
Jesse Barnes79e53942008-11-07 14:24:08 -0800545 * XXX: It would be nice to support lower refresh rates on the
546 * panels to reduce power consumption, and perhaps match the
547 * user's requested refresh rate.
548 */
549
550 return true;
551}
552
553static void intel_lvds_prepare(struct drm_encoder *encoder)
554{
555 struct drm_device *dev = encoder->dev;
556 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800557 u32 reg;
Jesse Barnes79e53942008-11-07 14:24:08 -0800558
Eric Anholtc619eed2010-01-28 16:45:52 -0800559 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +0800560 reg = BLC_PWM_CPU_CTL;
561 else
562 reg = BLC_PWM_CTL;
563
564 dev_priv->saveBLC_PWM_CTL = I915_READ(reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800565 dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL &
566 BACKLIGHT_DUTY_CYCLE_MASK);
567
568 intel_lvds_set_power(dev, false);
569}
570
571static void intel_lvds_commit( struct drm_encoder *encoder)
572{
573 struct drm_device *dev = encoder->dev;
574 struct drm_i915_private *dev_priv = dev->dev_private;
575
576 if (dev_priv->backlight_duty_cycle == 0)
577 dev_priv->backlight_duty_cycle =
578 intel_lvds_get_max_backlight(dev);
579
580 intel_lvds_set_power(dev, true);
581}
582
583static void intel_lvds_mode_set(struct drm_encoder *encoder,
584 struct drm_display_mode *mode,
585 struct drm_display_mode *adjusted_mode)
586{
587 struct drm_device *dev = encoder->dev;
588 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt21d40d32010-03-25 11:11:14 -0700589 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
590 struct intel_lvds_priv *lvds_priv = intel_encoder->dev_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -0800591
592 /*
593 * The LVDS pin pair will already have been turned on in the
594 * intel_crtc_mode_set since it has a large impact on the DPLL
595 * settings.
596 */
597
Eric Anholtc619eed2010-01-28 16:45:52 -0800598 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +0800599 return;
600
Jesse Barnes79e53942008-11-07 14:24:08 -0800601 /*
602 * Enable automatic panel scaling so that non-native modes fill the
603 * screen. Should be enabled before the pipe is enabled, according to
604 * register description and PRM.
605 */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800606 I915_WRITE(PFIT_PGM_RATIOS, lvds_priv->pfit_pgm_ratios);
607 I915_WRITE(PFIT_CONTROL, lvds_priv->pfit_control);
Jesse Barnes79e53942008-11-07 14:24:08 -0800608}
609
610/**
611 * Detect the LVDS connection.
612 *
Jesse Barnesb42d4c52009-09-10 15:28:04 -0700613 * Since LVDS doesn't have hotlug, we use the lid as a proxy. Open means
614 * connected and closed means disconnected. We also send hotplug events as
615 * needed, using lid status notification from the input layer.
Jesse Barnes79e53942008-11-07 14:24:08 -0800616 */
617static enum drm_connector_status intel_lvds_detect(struct drm_connector *connector)
618{
Jesse Barnes7b9c5ab2010-02-12 09:30:00 -0800619 struct drm_device *dev = connector->dev;
Jesse Barnesb42d4c52009-09-10 15:28:04 -0700620 enum drm_connector_status status = connector_status_connected;
621
Jesse Barnes7b9c5ab2010-02-12 09:30:00 -0800622 /* ACPI lid methods were generally unreliable in this generation, so
623 * don't even bother.
624 */
Eric Anholt6e6c8222010-03-17 13:48:06 -0700625 if (IS_GEN2(dev) || IS_GEN3(dev))
Jesse Barnes7b9c5ab2010-02-12 09:30:00 -0800626 return connector_status_connected;
627
Jesse Barnesb42d4c52009-09-10 15:28:04 -0700628 return status;
Jesse Barnes79e53942008-11-07 14:24:08 -0800629}
630
631/**
632 * Return the list of DDC modes if available, or the BIOS fixed mode otherwise.
633 */
634static int intel_lvds_get_modes(struct drm_connector *connector)
635{
636 struct drm_device *dev = connector->dev;
Eric Anholt21d40d32010-03-25 11:11:14 -0700637 struct intel_encoder *intel_encoder = to_intel_encoder(connector);
Jesse Barnes79e53942008-11-07 14:24:08 -0800638 struct drm_i915_private *dev_priv = dev->dev_private;
639 int ret = 0;
640
Eric Anholt21d40d32010-03-25 11:11:14 -0700641 ret = intel_ddc_get_modes(intel_encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -0800642
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 Barnes79e53942008-11-07 14:24:08 -0800658 mode = drm_mode_duplicate(dev, dev_priv->panel_fixed_mode);
659 drm_mode_probed_add(connector, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -0800660
661 return 1;
662 }
663
664 return 0;
665}
666
Linus Torvaldsc9354c82009-11-02 09:29:55 -0800667/*
668 * Lid events. Note the use of 'modeset_on_lid':
669 * - we set it on lid close, and reset it on open
670 * - we use it as a "only once" bit (ie we ignore
671 * duplicate events where it was already properly
672 * set/reset)
673 * - the suspend/resume paths will also set it to
674 * zero, since they restore the mode ("lid open").
675 */
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700676static int intel_lid_notify(struct notifier_block *nb, unsigned long val,
677 void *unused)
678{
679 struct drm_i915_private *dev_priv =
680 container_of(nb, struct drm_i915_private, lid_notifier);
681 struct drm_device *dev = dev_priv->dev;
Zhao Yakuia2565372009-12-11 09:26:11 +0800682 struct drm_connector *connector = dev_priv->int_lvds_connector;
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700683
Zhao Yakuia2565372009-12-11 09:26:11 +0800684 /*
685 * check and update the status of LVDS connector after receiving
686 * the LID nofication event.
687 */
688 if (connector)
689 connector->status = connector->funcs->detect(connector);
Linus Torvaldsc9354c82009-11-02 09:29:55 -0800690 if (!acpi_lid_open()) {
691 dev_priv->modeset_on_lid = 1;
692 return NOTIFY_OK;
Jesse Barnes06891e22009-09-14 10:58:48 -0700693 }
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700694
Linus Torvaldsc9354c82009-11-02 09:29:55 -0800695 if (!dev_priv->modeset_on_lid)
696 return NOTIFY_OK;
697
698 dev_priv->modeset_on_lid = 0;
699
700 mutex_lock(&dev->mode_config.mutex);
701 drm_helper_resume_force_mode(dev);
702 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnes06324192009-09-10 15:28:05 -0700703
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700704 return NOTIFY_OK;
705}
706
Jesse Barnes79e53942008-11-07 14:24:08 -0800707/**
708 * intel_lvds_destroy - unregister and free LVDS structures
709 * @connector: connector to free
710 *
711 * Unregister the DDC bus for this connector then free the driver private
712 * structure.
713 */
714static void intel_lvds_destroy(struct drm_connector *connector)
715{
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700716 struct drm_device *dev = connector->dev;
Eric Anholt21d40d32010-03-25 11:11:14 -0700717 struct intel_encoder *intel_encoder = to_intel_encoder(connector);
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700718 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -0800719
Eric Anholt21d40d32010-03-25 11:11:14 -0700720 if (intel_encoder->ddc_bus)
721 intel_i2c_destroy(intel_encoder->ddc_bus);
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700722 if (dev_priv->lid_notifier.notifier_call)
723 acpi_lid_notifier_unregister(&dev_priv->lid_notifier);
Jesse Barnes79e53942008-11-07 14:24:08 -0800724 drm_sysfs_connector_remove(connector);
725 drm_connector_cleanup(connector);
726 kfree(connector);
727}
728
Jesse Barnes335041e2009-01-22 22:22:06 +1000729static int intel_lvds_set_property(struct drm_connector *connector,
730 struct drm_property *property,
731 uint64_t value)
732{
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800733 struct drm_device *dev = connector->dev;
Eric Anholt21d40d32010-03-25 11:11:14 -0700734 struct intel_encoder *intel_encoder =
735 to_intel_encoder(connector);
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800736
737 if (property == dev->mode_config.scaling_mode_property &&
738 connector->encoder) {
739 struct drm_crtc *crtc = connector->encoder->crtc;
Eric Anholt21d40d32010-03-25 11:11:14 -0700740 struct intel_lvds_priv *lvds_priv = intel_encoder->dev_priv;
Jesse Barnes53bd8382009-07-01 10:04:40 -0700741 if (value == DRM_MODE_SCALE_NONE) {
742 DRM_DEBUG_KMS("no scaling not supported\n");
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800743 return 0;
744 }
745 if (lvds_priv->fitting_mode == value) {
746 /* the LVDS scaling property is not changed */
747 return 0;
748 }
749 lvds_priv->fitting_mode = value;
750 if (crtc && crtc->enabled) {
751 /*
752 * If the CRTC is enabled, the display will be changed
753 * according to the new panel fitting mode.
754 */
755 drm_crtc_helper_set_mode(crtc, &crtc->mode,
756 crtc->x, crtc->y, crtc->fb);
757 }
758 }
759
Jesse Barnes335041e2009-01-22 22:22:06 +1000760 return 0;
761}
762
Jesse Barnes79e53942008-11-07 14:24:08 -0800763static const struct drm_encoder_helper_funcs intel_lvds_helper_funcs = {
764 .dpms = intel_lvds_dpms,
765 .mode_fixup = intel_lvds_mode_fixup,
766 .prepare = intel_lvds_prepare,
767 .mode_set = intel_lvds_mode_set,
768 .commit = intel_lvds_commit,
769};
770
771static const struct drm_connector_helper_funcs intel_lvds_connector_helper_funcs = {
772 .get_modes = intel_lvds_get_modes,
773 .mode_valid = intel_lvds_mode_valid,
774 .best_encoder = intel_best_encoder,
775};
776
777static const struct drm_connector_funcs intel_lvds_connector_funcs = {
Keith Packardc9fb15f2009-05-30 20:42:28 -0700778 .dpms = drm_helper_connector_dpms,
Jesse Barnes79e53942008-11-07 14:24:08 -0800779 .save = intel_lvds_save,
780 .restore = intel_lvds_restore,
781 .detect = intel_lvds_detect,
782 .fill_modes = drm_helper_probe_single_connector_modes,
Jesse Barnes335041e2009-01-22 22:22:06 +1000783 .set_property = intel_lvds_set_property,
Jesse Barnes79e53942008-11-07 14:24:08 -0800784 .destroy = intel_lvds_destroy,
785};
786
787
788static void intel_lvds_enc_destroy(struct drm_encoder *encoder)
789{
790 drm_encoder_cleanup(encoder);
791}
792
793static const struct drm_encoder_funcs intel_lvds_enc_funcs = {
794 .destroy = intel_lvds_enc_destroy,
795};
796
Jarod Wilson425d2442009-05-05 10:00:25 -0400797static int __init intel_no_lvds_dmi_callback(const struct dmi_system_id *id)
798{
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800799 DRM_DEBUG_KMS("Skipping LVDS initialization for %s\n", id->ident);
Jarod Wilson425d2442009-05-05 10:00:25 -0400800 return 1;
801}
Jesse Barnes79e53942008-11-07 14:24:08 -0800802
Jarod Wilson425d2442009-05-05 10:00:25 -0400803/* These systems claim to have LVDS, but really don't */
Jaswinder Singh Rajput93c05f22009-06-04 09:41:19 +1000804static const struct dmi_system_id intel_no_lvds[] = {
Jarod Wilson425d2442009-05-05 10:00:25 -0400805 {
806 .callback = intel_no_lvds_dmi_callback,
807 .ident = "Apple Mac Mini (Core series)",
808 .matches = {
Keith Packard98acd462009-06-14 12:31:58 -0700809 DMI_MATCH(DMI_SYS_VENDOR, "Apple"),
Jarod Wilson425d2442009-05-05 10:00:25 -0400810 DMI_MATCH(DMI_PRODUCT_NAME, "Macmini1,1"),
811 },
812 },
813 {
814 .callback = intel_no_lvds_dmi_callback,
815 .ident = "Apple Mac Mini (Core 2 series)",
816 .matches = {
Keith Packard98acd462009-06-14 12:31:58 -0700817 DMI_MATCH(DMI_SYS_VENDOR, "Apple"),
Jarod Wilson425d2442009-05-05 10:00:25 -0400818 DMI_MATCH(DMI_PRODUCT_NAME, "Macmini2,1"),
819 },
820 },
821 {
822 .callback = intel_no_lvds_dmi_callback,
823 .ident = "MSI IM-945GSE-A",
824 .matches = {
825 DMI_MATCH(DMI_SYS_VENDOR, "MSI"),
826 DMI_MATCH(DMI_PRODUCT_NAME, "A9830IMS"),
827 },
828 },
829 {
830 .callback = intel_no_lvds_dmi_callback,
831 .ident = "Dell Studio Hybrid",
832 .matches = {
833 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
834 DMI_MATCH(DMI_PRODUCT_NAME, "Studio Hybrid 140g"),
835 },
836 },
Jarod Wilson70aa96c2009-05-27 17:20:39 -0400837 {
838 .callback = intel_no_lvds_dmi_callback,
839 .ident = "AOpen Mini PC",
840 .matches = {
841 DMI_MATCH(DMI_SYS_VENDOR, "AOpen"),
842 DMI_MATCH(DMI_PRODUCT_NAME, "i965GMx-IF"),
843 },
844 },
Michael Cousinfa0864b2009-06-05 21:16:22 +0200845 {
846 .callback = intel_no_lvds_dmi_callback,
Tormod Voldened8c7542009-07-13 22:26:48 +0200847 .ident = "AOpen Mini PC MP915",
848 .matches = {
849 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
850 DMI_MATCH(DMI_BOARD_NAME, "i915GMx-F"),
851 },
852 },
853 {
854 .callback = intel_no_lvds_dmi_callback,
Michael Cousinfa0864b2009-06-05 21:16:22 +0200855 .ident = "Aopen i945GTt-VFA",
856 .matches = {
857 DMI_MATCH(DMI_PRODUCT_VERSION, "AO00001JW"),
858 },
859 },
Stefan Bader9875557ee82010-03-29 17:53:12 +0200860 {
861 .callback = intel_no_lvds_dmi_callback,
862 .ident = "Clientron U800",
863 .matches = {
864 DMI_MATCH(DMI_SYS_VENDOR, "Clientron"),
865 DMI_MATCH(DMI_PRODUCT_NAME, "U800"),
866 },
867 },
Jarod Wilson425d2442009-05-05 10:00:25 -0400868
869 { } /* terminating entry */
870};
Jesse Barnes79e53942008-11-07 14:24:08 -0800871
872/**
Zhao Yakui18f9ed12009-11-20 03:24:16 +0000873 * intel_find_lvds_downclock - find the reduced downclock for LVDS in EDID
874 * @dev: drm device
875 * @connector: LVDS connector
876 *
877 * Find the reduced downclock for LVDS in EDID.
878 */
879static void intel_find_lvds_downclock(struct drm_device *dev,
880 struct drm_connector *connector)
881{
882 struct drm_i915_private *dev_priv = dev->dev_private;
883 struct drm_display_mode *scan, *panel_fixed_mode;
884 int temp_downclock;
885
886 panel_fixed_mode = dev_priv->panel_fixed_mode;
887 temp_downclock = panel_fixed_mode->clock;
888
889 mutex_lock(&dev->mode_config.mutex);
890 list_for_each_entry(scan, &connector->probed_modes, head) {
891 /*
892 * If one mode has the same resolution with the fixed_panel
893 * mode while they have the different refresh rate, it means
894 * that the reduced downclock is found for the LVDS. In such
895 * case we can set the different FPx0/1 to dynamically select
896 * between low and high frequency.
897 */
898 if (scan->hdisplay == panel_fixed_mode->hdisplay &&
899 scan->hsync_start == panel_fixed_mode->hsync_start &&
900 scan->hsync_end == panel_fixed_mode->hsync_end &&
901 scan->htotal == panel_fixed_mode->htotal &&
902 scan->vdisplay == panel_fixed_mode->vdisplay &&
903 scan->vsync_start == panel_fixed_mode->vsync_start &&
904 scan->vsync_end == panel_fixed_mode->vsync_end &&
905 scan->vtotal == panel_fixed_mode->vtotal) {
906 if (scan->clock < temp_downclock) {
907 /*
908 * The downclock is already found. But we
909 * expect to find the lower downclock.
910 */
911 temp_downclock = scan->clock;
912 }
913 }
914 }
915 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnes33814342010-01-14 20:48:02 +0000916 if (temp_downclock < panel_fixed_mode->clock &&
917 i915_lvds_downclock) {
Zhao Yakui18f9ed12009-11-20 03:24:16 +0000918 /* We found the downclock for LVDS. */
919 dev_priv->lvds_downclock_avail = 1;
920 dev_priv->lvds_downclock = temp_downclock;
921 DRM_DEBUG_KMS("LVDS downclock is found in EDID. "
922 "Normal clock %dKhz, downclock %dKhz\n",
923 panel_fixed_mode->clock, temp_downclock);
924 }
925 return;
926}
927
Zhao Yakui7cf4f692009-11-24 09:48:47 +0800928/*
929 * Enumerate the child dev array parsed from VBT to check whether
930 * the LVDS is present.
931 * If it is present, return 1.
932 * If it is not present, return false.
933 * If no child dev is parsed from VBT, it assumes that the LVDS is present.
934 * Note: The addin_offset should also be checked for LVDS panel.
935 * Only when it is non-zero, it is assumed that it is present.
936 */
Zhao Yakui6e365952009-12-02 10:03:34 +0800937static int lvds_is_present_in_vbt(struct drm_device *dev)
Zhao Yakui7cf4f692009-11-24 09:48:47 +0800938{
939 struct drm_i915_private *dev_priv = dev->dev_private;
940 struct child_device_config *p_child;
941 int i, ret;
942
943 if (!dev_priv->child_dev_num)
944 return 1;
945
946 ret = 0;
947 for (i = 0; i < dev_priv->child_dev_num; i++) {
948 p_child = dev_priv->child_dev + i;
949 /*
950 * If the device type is not LFP, continue.
951 * If the device type is 0x22, it is also regarded as LFP.
952 */
953 if (p_child->device_type != DEVICE_TYPE_INT_LFP &&
954 p_child->device_type != DEVICE_TYPE_LFP)
955 continue;
956
957 /* The addin_offset should be checked. Only when it is
958 * non-zero, it is regarded as present.
959 */
960 if (p_child->addin_offset) {
961 ret = 1;
962 break;
963 }
964 }
965 return ret;
966}
967
Zhao Yakui18f9ed12009-11-20 03:24:16 +0000968/**
Jesse Barnes79e53942008-11-07 14:24:08 -0800969 * intel_lvds_init - setup LVDS connectors on this device
970 * @dev: drm device
971 *
972 * Create the connector, register the LVDS DDC bus, and try to figure out what
973 * modes we can display on the LVDS panel (if present).
974 */
975void intel_lvds_init(struct drm_device *dev)
976{
977 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt21d40d32010-03-25 11:11:14 -0700978 struct intel_encoder *intel_encoder;
Jesse Barnes79e53942008-11-07 14:24:08 -0800979 struct drm_connector *connector;
980 struct drm_encoder *encoder;
981 struct drm_display_mode *scan; /* *modes, *bios_mode; */
982 struct drm_crtc *crtc;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800983 struct intel_lvds_priv *lvds_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -0800984 u32 lvds;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800985 int pipe, gpio = GPIOC;
Jesse Barnes79e53942008-11-07 14:24:08 -0800986
Jarod Wilson425d2442009-05-05 10:00:25 -0400987 /* Skip init on machines we know falsely report LVDS */
988 if (dmi_check_system(intel_no_lvds))
Paul Collins565dcd42009-02-04 23:05:41 +1300989 return;
Paul Collins565dcd42009-02-04 23:05:41 +1300990
Matthew Garrett11ba1592009-12-15 13:55:24 -0500991 if (!lvds_is_present_in_vbt(dev)) {
992 DRM_DEBUG_KMS("LVDS is not present in VBT\n");
Zhao Yakuie99da352009-06-26 09:46:18 +0800993 return;
Zhao Yakui7cf4f692009-11-24 09:48:47 +0800994 }
Zhao Yakuie99da352009-06-26 09:46:18 +0800995
Eric Anholtc619eed2010-01-28 16:45:52 -0800996 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800997 if ((I915_READ(PCH_LVDS) & LVDS_DETECTED) == 0)
998 return;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800999 if (dev_priv->edp_support) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001000 DRM_DEBUG_KMS("disable LVDS for eDP support\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001001 return;
1002 }
Zhenyu Wang541998a2009-06-05 15:38:44 +08001003 gpio = PCH_GPIOC;
1004 }
1005
Eric Anholt21d40d32010-03-25 11:11:14 -07001006 intel_encoder = kzalloc(sizeof(struct intel_encoder) +
Zhao Yakui3fbe18d2009-06-22 15:31:25 +08001007 sizeof(struct intel_lvds_priv), GFP_KERNEL);
Eric Anholt21d40d32010-03-25 11:11:14 -07001008 if (!intel_encoder) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001009 return;
1010 }
1011
Eric Anholt21d40d32010-03-25 11:11:14 -07001012 connector = &intel_encoder->base;
1013 encoder = &intel_encoder->enc;
1014 drm_connector_init(dev, &intel_encoder->base, &intel_lvds_connector_funcs,
Jesse Barnes79e53942008-11-07 14:24:08 -08001015 DRM_MODE_CONNECTOR_LVDS);
1016
Eric Anholt21d40d32010-03-25 11:11:14 -07001017 drm_encoder_init(dev, &intel_encoder->enc, &intel_lvds_enc_funcs,
Jesse Barnes79e53942008-11-07 14:24:08 -08001018 DRM_MODE_ENCODER_LVDS);
1019
Eric Anholt21d40d32010-03-25 11:11:14 -07001020 drm_mode_connector_attach_encoder(&intel_encoder->base, &intel_encoder->enc);
1021 intel_encoder->type = INTEL_OUTPUT_LVDS;
Jesse Barnes79e53942008-11-07 14:24:08 -08001022
Eric Anholt21d40d32010-03-25 11:11:14 -07001023 intel_encoder->clone_mask = (1 << INTEL_LVDS_CLONE_BIT);
1024 intel_encoder->crtc_mask = (1 << 1);
Jesse Barnes79e53942008-11-07 14:24:08 -08001025 drm_encoder_helper_add(encoder, &intel_lvds_helper_funcs);
1026 drm_connector_helper_add(connector, &intel_lvds_connector_helper_funcs);
1027 connector->display_info.subpixel_order = SubPixelHorizontalRGB;
1028 connector->interlace_allowed = false;
1029 connector->doublescan_allowed = false;
1030
Eric Anholt21d40d32010-03-25 11:11:14 -07001031 lvds_priv = (struct intel_lvds_priv *)(intel_encoder + 1);
1032 intel_encoder->dev_priv = lvds_priv;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +08001033 /* create the scaling mode property */
1034 drm_mode_create_scaling_mode_property(dev);
1035 /*
1036 * the initial panel fitting mode will be FULL_SCREEN.
1037 */
Jesse Barnes79e53942008-11-07 14:24:08 -08001038
Eric Anholt21d40d32010-03-25 11:11:14 -07001039 drm_connector_attach_property(&intel_encoder->base,
Zhao Yakui3fbe18d2009-06-22 15:31:25 +08001040 dev->mode_config.scaling_mode_property,
1041 DRM_MODE_SCALE_FULLSCREEN);
1042 lvds_priv->fitting_mode = DRM_MODE_SCALE_FULLSCREEN;
Jesse Barnes79e53942008-11-07 14:24:08 -08001043 /*
1044 * LVDS discovery:
1045 * 1) check for EDID on DDC
1046 * 2) check for VBT data
1047 * 3) check to see if LVDS is already on
1048 * if none of the above, no panel
1049 * 4) make sure lid is open
1050 * if closed, act like it's not there for now
1051 */
1052
1053 /* Set up the DDC bus. */
Eric Anholt21d40d32010-03-25 11:11:14 -07001054 intel_encoder->ddc_bus = intel_i2c_create(dev, gpio, "LVDSDDC_C");
1055 if (!intel_encoder->ddc_bus) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001056 dev_printk(KERN_ERR, &dev->pdev->dev, "DDC bus registration "
1057 "failed.\n");
1058 goto failed;
1059 }
1060
1061 /*
1062 * Attempt to get the fixed panel mode from DDC. Assume that the
1063 * preferred mode is the right one.
1064 */
Eric Anholt21d40d32010-03-25 11:11:14 -07001065 intel_ddc_get_modes(intel_encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08001066
1067 list_for_each_entry(scan, &connector->probed_modes, head) {
1068 mutex_lock(&dev->mode_config.mutex);
1069 if (scan->type & DRM_MODE_TYPE_PREFERRED) {
1070 dev_priv->panel_fixed_mode =
1071 drm_mode_duplicate(dev, scan);
1072 mutex_unlock(&dev->mode_config.mutex);
Zhao Yakui18f9ed12009-11-20 03:24:16 +00001073 intel_find_lvds_downclock(dev, connector);
Paul Collins565dcd42009-02-04 23:05:41 +13001074 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08001075 }
1076 mutex_unlock(&dev->mode_config.mutex);
1077 }
1078
1079 /* Failed to get EDID, what about VBT? */
Ma Ling88631702009-05-13 11:19:55 +08001080 if (dev_priv->lfp_lvds_vbt_mode) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001081 mutex_lock(&dev->mode_config.mutex);
1082 dev_priv->panel_fixed_mode =
Ma Ling88631702009-05-13 11:19:55 +08001083 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08001084 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnese285f3cd2009-01-14 10:53:36 -08001085 if (dev_priv->panel_fixed_mode) {
1086 dev_priv->panel_fixed_mode->type |=
1087 DRM_MODE_TYPE_PREFERRED;
Jesse Barnese285f3cd2009-01-14 10:53:36 -08001088 goto out;
1089 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001090 }
1091
1092 /*
1093 * If we didn't get EDID, try checking if the panel is already turned
1094 * on. If so, assume that whatever is currently programmed is the
1095 * correct mode.
1096 */
Zhenyu Wang541998a2009-06-05 15:38:44 +08001097
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001098 /* Ironlake: FIXME if still fail, not try pipe mode now */
Eric Anholtc619eed2010-01-28 16:45:52 -08001099 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +08001100 goto failed;
1101
Jesse Barnes79e53942008-11-07 14:24:08 -08001102 lvds = I915_READ(LVDS);
1103 pipe = (lvds & LVDS_PIPEB_SELECT) ? 1 : 0;
1104 crtc = intel_get_crtc_from_pipe(dev, pipe);
1105
1106 if (crtc && (lvds & LVDS_PORT_EN)) {
1107 dev_priv->panel_fixed_mode = intel_crtc_mode_get(dev, crtc);
1108 if (dev_priv->panel_fixed_mode) {
1109 dev_priv->panel_fixed_mode->type |=
1110 DRM_MODE_TYPE_PREFERRED;
Paul Collins565dcd42009-02-04 23:05:41 +13001111 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08001112 }
1113 }
1114
1115 /* If we still don't have a mode after all that, give up. */
1116 if (!dev_priv->panel_fixed_mode)
1117 goto failed;
1118
Jesse Barnes79e53942008-11-07 14:24:08 -08001119out:
Eric Anholtc619eed2010-01-28 16:45:52 -08001120 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +08001121 u32 pwm;
1122 /* make sure PWM is enabled */
1123 pwm = I915_READ(BLC_PWM_CPU_CTL2);
1124 pwm |= (PWM_ENABLE | PWM_PIPE_B);
1125 I915_WRITE(BLC_PWM_CPU_CTL2, pwm);
1126
1127 pwm = I915_READ(BLC_PWM_PCH_CTL1);
1128 pwm |= PWM_PCH_ENABLE;
1129 I915_WRITE(BLC_PWM_PCH_CTL1, pwm);
1130 }
Jesse Barnesc1c7af62009-09-10 15:28:03 -07001131 dev_priv->lid_notifier.notifier_call = intel_lid_notify;
1132 if (acpi_lid_notifier_register(&dev_priv->lid_notifier)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001133 DRM_DEBUG_KMS("lid notifier registration failed\n");
Jesse Barnesc1c7af62009-09-10 15:28:03 -07001134 dev_priv->lid_notifier.notifier_call = NULL;
1135 }
Zhao Yakuia2565372009-12-11 09:26:11 +08001136 /* keep the LVDS connector */
1137 dev_priv->int_lvds_connector = connector;
Jesse Barnes79e53942008-11-07 14:24:08 -08001138 drm_sysfs_connector_add(connector);
1139 return;
1140
1141failed:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001142 DRM_DEBUG_KMS("No LVDS modes found, disabling.\n");
Eric Anholt21d40d32010-03-25 11:11:14 -07001143 if (intel_encoder->ddc_bus)
1144 intel_i2c_destroy(intel_encoder->ddc_bus);
Jesse Barnes79e53942008-11-07 14:24:08 -08001145 drm_connector_cleanup(connector);
Shaohua Li1991bdf2009-11-17 17:19:23 +08001146 drm_encoder_cleanup(encoder);
Eric Anholt21d40d32010-03-25 11:11:14 -07001147 kfree(intel_encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -08001148}