blob: b1d0acbae4e458270377f400691db4766384f5a5 [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
Adam Jacksonf2b115e2009-12-03 17:14:42 -050059 if (IS_IRONLAKE(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
Adam Jacksonf2b115e2009-12-03 17:14:42 -050077 if (IS_IRONLAKE(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;
Zhenyu Wang541998a2009-06-05 15:38:44 +080092 u32 pp_status, ctl_reg, status_reg;
93
Adam Jacksonf2b115e2009-12-03 17:14:42 -050094 if (IS_IRONLAKE(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +080095 ctl_reg = PCH_PP_CONTROL;
96 status_reg = PCH_PP_STATUS;
97 } else {
98 ctl_reg = PP_CONTROL;
99 status_reg = PP_STATUS;
100 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800101
102 if (on) {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800103 I915_WRITE(ctl_reg, I915_READ(ctl_reg) |
Jesse Barnes79e53942008-11-07 14:24:08 -0800104 POWER_TARGET_ON);
105 do {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800106 pp_status = I915_READ(status_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800107 } while ((pp_status & PP_ON) == 0);
108
109 intel_lvds_set_backlight(dev, dev_priv->backlight_duty_cycle);
110 } else {
111 intel_lvds_set_backlight(dev, 0);
112
Zhenyu Wang541998a2009-06-05 15:38:44 +0800113 I915_WRITE(ctl_reg, I915_READ(ctl_reg) &
Jesse Barnes79e53942008-11-07 14:24:08 -0800114 ~POWER_TARGET_ON);
115 do {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800116 pp_status = I915_READ(status_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800117 } while (pp_status & PP_ON);
118 }
119}
120
121static void intel_lvds_dpms(struct drm_encoder *encoder, int mode)
122{
123 struct drm_device *dev = encoder->dev;
124
125 if (mode == DRM_MODE_DPMS_ON)
126 intel_lvds_set_power(dev, true);
127 else
128 intel_lvds_set_power(dev, false);
129
130 /* XXX: We never power down the LVDS pairs. */
131}
132
133static void intel_lvds_save(struct drm_connector *connector)
134{
135 struct drm_device *dev = connector->dev;
136 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800137 u32 pp_on_reg, pp_off_reg, pp_ctl_reg, pp_div_reg;
138 u32 pwm_ctl_reg;
Jesse Barnes79e53942008-11-07 14:24:08 -0800139
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500140 if (IS_IRONLAKE(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800141 pp_on_reg = PCH_PP_ON_DELAYS;
142 pp_off_reg = PCH_PP_OFF_DELAYS;
143 pp_ctl_reg = PCH_PP_CONTROL;
144 pp_div_reg = PCH_PP_DIVISOR;
145 pwm_ctl_reg = BLC_PWM_CPU_CTL;
146 } else {
147 pp_on_reg = PP_ON_DELAYS;
148 pp_off_reg = PP_OFF_DELAYS;
149 pp_ctl_reg = PP_CONTROL;
150 pp_div_reg = PP_DIVISOR;
151 pwm_ctl_reg = BLC_PWM_CTL;
152 }
153
154 dev_priv->savePP_ON = I915_READ(pp_on_reg);
155 dev_priv->savePP_OFF = I915_READ(pp_off_reg);
156 dev_priv->savePP_CONTROL = I915_READ(pp_ctl_reg);
157 dev_priv->savePP_DIVISOR = I915_READ(pp_div_reg);
158 dev_priv->saveBLC_PWM_CTL = I915_READ(pwm_ctl_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800159 dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL &
160 BACKLIGHT_DUTY_CYCLE_MASK);
161
162 /*
163 * If the light is off at server startup, just make it full brightness
164 */
165 if (dev_priv->backlight_duty_cycle == 0)
166 dev_priv->backlight_duty_cycle =
167 intel_lvds_get_max_backlight(dev);
168}
169
170static void intel_lvds_restore(struct drm_connector *connector)
171{
172 struct drm_device *dev = connector->dev;
173 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800174 u32 pp_on_reg, pp_off_reg, pp_ctl_reg, pp_div_reg;
175 u32 pwm_ctl_reg;
Jesse Barnes79e53942008-11-07 14:24:08 -0800176
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500177 if (IS_IRONLAKE(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800178 pp_on_reg = PCH_PP_ON_DELAYS;
179 pp_off_reg = PCH_PP_OFF_DELAYS;
180 pp_ctl_reg = PCH_PP_CONTROL;
181 pp_div_reg = PCH_PP_DIVISOR;
182 pwm_ctl_reg = BLC_PWM_CPU_CTL;
183 } else {
184 pp_on_reg = PP_ON_DELAYS;
185 pp_off_reg = PP_OFF_DELAYS;
186 pp_ctl_reg = PP_CONTROL;
187 pp_div_reg = PP_DIVISOR;
188 pwm_ctl_reg = BLC_PWM_CTL;
189 }
190
191 I915_WRITE(pwm_ctl_reg, dev_priv->saveBLC_PWM_CTL);
192 I915_WRITE(pp_on_reg, dev_priv->savePP_ON);
193 I915_WRITE(pp_off_reg, dev_priv->savePP_OFF);
194 I915_WRITE(pp_div_reg, dev_priv->savePP_DIVISOR);
195 I915_WRITE(pp_ctl_reg, dev_priv->savePP_CONTROL);
Jesse Barnes79e53942008-11-07 14:24:08 -0800196 if (dev_priv->savePP_CONTROL & POWER_TARGET_ON)
197 intel_lvds_set_power(dev, true);
198 else
199 intel_lvds_set_power(dev, false);
200}
201
202static int intel_lvds_mode_valid(struct drm_connector *connector,
203 struct drm_display_mode *mode)
204{
205 struct drm_device *dev = connector->dev;
206 struct drm_i915_private *dev_priv = dev->dev_private;
207 struct drm_display_mode *fixed_mode = dev_priv->panel_fixed_mode;
208
209 if (fixed_mode) {
210 if (mode->hdisplay > fixed_mode->hdisplay)
211 return MODE_PANEL;
212 if (mode->vdisplay > fixed_mode->vdisplay)
213 return MODE_PANEL;
214 }
215
216 return MODE_OK;
217}
218
219static bool intel_lvds_mode_fixup(struct drm_encoder *encoder,
220 struct drm_display_mode *mode,
221 struct drm_display_mode *adjusted_mode)
222{
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800223 /*
224 * float point operation is not supported . So the PANEL_RATIO_FACTOR
225 * is defined, which can avoid the float point computation when
226 * calculating the panel ratio.
227 */
228#define PANEL_RATIO_FACTOR 8192
Jesse Barnes79e53942008-11-07 14:24:08 -0800229 struct drm_device *dev = encoder->dev;
230 struct drm_i915_private *dev_priv = dev->dev_private;
231 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
232 struct drm_encoder *tmp_encoder;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800233 struct intel_output *intel_output = enc_to_intel_output(encoder);
234 struct intel_lvds_priv *lvds_priv = intel_output->dev_priv;
235 u32 pfit_control = 0, pfit_pgm_ratios = 0;
236 int left_border = 0, right_border = 0, top_border = 0;
237 int bottom_border = 0;
238 bool border = 0;
239 int panel_ratio, desired_ratio, vert_scale, horiz_scale;
240 int horiz_ratio, vert_ratio;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800241 u32 hsync_width, vsync_width;
242 u32 hblank_width, vblank_width;
243 u32 hsync_pos, vsync_pos;
Jesse Barnes79e53942008-11-07 14:24:08 -0800244
245 /* Should never happen!! */
246 if (!IS_I965G(dev) && intel_crtc->pipe == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700247 DRM_ERROR("Can't support LVDS on pipe A\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800248 return false;
249 }
250
251 /* Should never happen!! */
252 list_for_each_entry(tmp_encoder, &dev->mode_config.encoder_list, head) {
253 if (tmp_encoder != encoder && tmp_encoder->crtc == encoder->crtc) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700254 DRM_ERROR("Can't enable LVDS and another "
Jesse Barnes79e53942008-11-07 14:24:08 -0800255 "encoder on the same pipe\n");
256 return false;
257 }
258 }
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800259 /* If we don't have a panel mode, there is nothing we can do */
260 if (dev_priv->panel_fixed_mode == NULL)
261 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -0800262 /*
263 * If we have timings from the BIOS for the panel, put them in
264 * to the adjusted mode. The CRTC will be set up for this mode,
265 * with the panel scaling set up to source from the H/VDisplay
266 * of the original mode.
267 */
268 if (dev_priv->panel_fixed_mode != NULL) {
269 adjusted_mode->hdisplay = dev_priv->panel_fixed_mode->hdisplay;
270 adjusted_mode->hsync_start =
271 dev_priv->panel_fixed_mode->hsync_start;
272 adjusted_mode->hsync_end =
273 dev_priv->panel_fixed_mode->hsync_end;
274 adjusted_mode->htotal = dev_priv->panel_fixed_mode->htotal;
275 adjusted_mode->vdisplay = dev_priv->panel_fixed_mode->vdisplay;
276 adjusted_mode->vsync_start =
277 dev_priv->panel_fixed_mode->vsync_start;
278 adjusted_mode->vsync_end =
279 dev_priv->panel_fixed_mode->vsync_end;
280 adjusted_mode->vtotal = dev_priv->panel_fixed_mode->vtotal;
281 adjusted_mode->clock = dev_priv->panel_fixed_mode->clock;
282 drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V);
283 }
284
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800285 /* Make sure pre-965s set dither correctly */
286 if (!IS_I965G(dev)) {
287 if (dev_priv->panel_wants_dither || dev_priv->lvds_dither)
288 pfit_control |= PANEL_8TO6_DITHER_ENABLE;
289 }
290
291 /* Native modes don't need fitting */
292 if (adjusted_mode->hdisplay == mode->hdisplay &&
293 adjusted_mode->vdisplay == mode->vdisplay) {
294 pfit_pgm_ratios = 0;
295 border = 0;
296 goto out;
297 }
298
Zhenyu Wang8dd81a32009-09-19 14:54:09 +0800299 /* full screen scale for now */
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500300 if (IS_IRONLAKE(dev))
Zhenyu Wang8dd81a32009-09-19 14:54:09 +0800301 goto out;
302
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800303 /* 965+ wants fuzzy fitting */
304 if (IS_I965G(dev))
305 pfit_control |= (intel_crtc->pipe << PFIT_PIPE_SHIFT) |
306 PFIT_FILTER_FUZZY;
307
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800308 hsync_width = adjusted_mode->crtc_hsync_end -
309 adjusted_mode->crtc_hsync_start;
310 vsync_width = adjusted_mode->crtc_vsync_end -
311 adjusted_mode->crtc_vsync_start;
312 hblank_width = adjusted_mode->crtc_hblank_end -
313 adjusted_mode->crtc_hblank_start;
314 vblank_width = adjusted_mode->crtc_vblank_end -
315 adjusted_mode->crtc_vblank_start;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800316 /*
317 * Deal with panel fitting options. Figure out how to stretch the
318 * image based on its aspect ratio & the current panel fitting mode.
319 */
320 panel_ratio = adjusted_mode->hdisplay * PANEL_RATIO_FACTOR /
321 adjusted_mode->vdisplay;
322 desired_ratio = mode->hdisplay * PANEL_RATIO_FACTOR /
323 mode->vdisplay;
324 /*
325 * Enable automatic panel scaling for non-native modes so that they fill
326 * the screen. Should be enabled before the pipe is enabled, according
327 * to register description and PRM.
328 * Change the value here to see the borders for debugging
329 */
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500330 if (!IS_IRONLAKE(dev)) {
Zhenyu Wang8dd81a32009-09-19 14:54:09 +0800331 I915_WRITE(BCLRPAT_A, 0);
332 I915_WRITE(BCLRPAT_B, 0);
333 }
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800334
335 switch (lvds_priv->fitting_mode) {
Jesse Barnes53bd8382009-07-01 10:04:40 -0700336 case DRM_MODE_SCALE_CENTER:
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800337 /*
338 * For centered modes, we have to calculate border widths &
339 * heights and modify the values programmed into the CRTC.
340 */
341 left_border = (adjusted_mode->hdisplay - mode->hdisplay) / 2;
342 right_border = left_border;
343 if (mode->hdisplay & 1)
344 right_border++;
345 top_border = (adjusted_mode->vdisplay - mode->vdisplay) / 2;
346 bottom_border = top_border;
347 if (mode->vdisplay & 1)
348 bottom_border++;
349 /* Set active & border values */
350 adjusted_mode->crtc_hdisplay = mode->hdisplay;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800351 /* Keep the boder be even */
352 if (right_border & 1)
353 right_border++;
354 /* use the border directly instead of border minuse one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800355 adjusted_mode->crtc_hblank_start = mode->hdisplay +
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800356 right_border;
357 /* keep the blank width constant */
358 adjusted_mode->crtc_hblank_end =
359 adjusted_mode->crtc_hblank_start + hblank_width;
360 /* get the hsync pos relative to hblank start */
361 hsync_pos = (hblank_width - hsync_width) / 2;
362 /* keep the hsync pos be even */
363 if (hsync_pos & 1)
364 hsync_pos++;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800365 adjusted_mode->crtc_hsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800366 adjusted_mode->crtc_hblank_start + hsync_pos;
367 /* keep the hsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800368 adjusted_mode->crtc_hsync_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800369 adjusted_mode->crtc_hsync_start + hsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800370 adjusted_mode->crtc_vdisplay = mode->vdisplay;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800371 /* use the border instead of border minus one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800372 adjusted_mode->crtc_vblank_start = mode->vdisplay +
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800373 bottom_border;
374 /* keep the vblank width constant */
375 adjusted_mode->crtc_vblank_end =
376 adjusted_mode->crtc_vblank_start + vblank_width;
377 /* get the vsync start postion relative to vblank start */
378 vsync_pos = (vblank_width - vsync_width) / 2;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800379 adjusted_mode->crtc_vsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800380 adjusted_mode->crtc_vblank_start + vsync_pos;
381 /* keep the vsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800382 adjusted_mode->crtc_vsync_end =
Zhao Yakuia3e17eb2009-10-10 10:42:37 +0800383 adjusted_mode->crtc_vsync_start + vsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800384 border = 1;
385 break;
386 case DRM_MODE_SCALE_ASPECT:
387 /* Scale but preserve the spect ratio */
388 pfit_control |= PFIT_ENABLE;
389 if (IS_I965G(dev)) {
390 /* 965+ is easy, it does everything in hw */
391 if (panel_ratio > desired_ratio)
392 pfit_control |= PFIT_SCALING_PILLAR;
393 else if (panel_ratio < desired_ratio)
394 pfit_control |= PFIT_SCALING_LETTER;
395 else
396 pfit_control |= PFIT_SCALING_AUTO;
397 } else {
398 /*
399 * For earlier chips we have to calculate the scaling
400 * ratio by hand and program it into the
401 * PFIT_PGM_RATIO register
402 */
403 u32 horiz_bits, vert_bits, bits = 12;
404 horiz_ratio = mode->hdisplay * PANEL_RATIO_FACTOR/
405 adjusted_mode->hdisplay;
406 vert_ratio = mode->vdisplay * PANEL_RATIO_FACTOR/
407 adjusted_mode->vdisplay;
408 horiz_scale = adjusted_mode->hdisplay *
409 PANEL_RATIO_FACTOR / mode->hdisplay;
410 vert_scale = adjusted_mode->vdisplay *
411 PANEL_RATIO_FACTOR / mode->vdisplay;
412
413 /* retain aspect ratio */
414 if (panel_ratio > desired_ratio) { /* Pillar */
415 u32 scaled_width;
416 scaled_width = mode->hdisplay * vert_scale /
417 PANEL_RATIO_FACTOR;
418 horiz_ratio = vert_ratio;
419 pfit_control |= (VERT_AUTO_SCALE |
420 VERT_INTERP_BILINEAR |
421 HORIZ_INTERP_BILINEAR);
422 /* Pillar will have left/right borders */
423 left_border = (adjusted_mode->hdisplay -
424 scaled_width) / 2;
425 right_border = left_border;
426 if (mode->hdisplay & 1) /* odd resolutions */
427 right_border++;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800428 /* keep the border be even */
429 if (right_border & 1)
430 right_border++;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800431 adjusted_mode->crtc_hdisplay = scaled_width;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800432 /* use border instead of border minus one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800433 adjusted_mode->crtc_hblank_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800434 scaled_width + right_border;
435 /* keep the hblank width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800436 adjusted_mode->crtc_hblank_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800437 adjusted_mode->crtc_hblank_start +
438 hblank_width;
439 /*
440 * get the hsync start pos relative to
441 * hblank start
442 */
443 hsync_pos = (hblank_width - hsync_width) / 2;
444 /* keep the hsync_pos be even */
445 if (hsync_pos & 1)
446 hsync_pos++;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800447 adjusted_mode->crtc_hsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800448 adjusted_mode->crtc_hblank_start +
449 hsync_pos;
450 /* keept hsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800451 adjusted_mode->crtc_hsync_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800452 adjusted_mode->crtc_hsync_start +
453 hsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800454 border = 1;
455 } else if (panel_ratio < desired_ratio) { /* letter */
456 u32 scaled_height = mode->vdisplay *
457 horiz_scale / PANEL_RATIO_FACTOR;
458 vert_ratio = horiz_ratio;
459 pfit_control |= (HORIZ_AUTO_SCALE |
460 VERT_INTERP_BILINEAR |
461 HORIZ_INTERP_BILINEAR);
462 /* Letterbox will have top/bottom border */
463 top_border = (adjusted_mode->vdisplay -
464 scaled_height) / 2;
465 bottom_border = top_border;
466 if (mode->vdisplay & 1)
467 bottom_border++;
468 adjusted_mode->crtc_vdisplay = scaled_height;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800469 /* use border instead of border minus one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800470 adjusted_mode->crtc_vblank_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800471 scaled_height + bottom_border;
472 /* keep the vblank width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800473 adjusted_mode->crtc_vblank_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800474 adjusted_mode->crtc_vblank_start +
475 vblank_width;
476 /*
477 * get the vsync start pos relative to
478 * vblank start
479 */
480 vsync_pos = (vblank_width - vsync_width) / 2;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800481 adjusted_mode->crtc_vsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800482 adjusted_mode->crtc_vblank_start +
483 vsync_pos;
484 /* keep the vsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800485 adjusted_mode->crtc_vsync_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800486 adjusted_mode->crtc_vsync_start +
487 vsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800488 border = 1;
489 } else {
490 /* Aspects match, Let hw scale both directions */
491 pfit_control |= (VERT_AUTO_SCALE |
492 HORIZ_AUTO_SCALE |
493 VERT_INTERP_BILINEAR |
494 HORIZ_INTERP_BILINEAR);
495 }
496 horiz_bits = (1 << bits) * horiz_ratio /
497 PANEL_RATIO_FACTOR;
498 vert_bits = (1 << bits) * vert_ratio /
499 PANEL_RATIO_FACTOR;
500 pfit_pgm_ratios =
501 ((vert_bits << PFIT_VERT_SCALE_SHIFT) &
502 PFIT_VERT_SCALE_MASK) |
503 ((horiz_bits << PFIT_HORIZ_SCALE_SHIFT) &
504 PFIT_HORIZ_SCALE_MASK);
505 }
506 break;
507
508 case DRM_MODE_SCALE_FULLSCREEN:
509 /*
510 * Full scaling, even if it changes the aspect ratio.
511 * Fortunately this is all done for us in hw.
512 */
513 pfit_control |= PFIT_ENABLE;
514 if (IS_I965G(dev))
515 pfit_control |= PFIT_SCALING_AUTO;
516 else
517 pfit_control |= (VERT_AUTO_SCALE | HORIZ_AUTO_SCALE |
518 VERT_INTERP_BILINEAR |
519 HORIZ_INTERP_BILINEAR);
520 break;
521 default:
522 break;
523 }
524
525out:
526 lvds_priv->pfit_control = pfit_control;
527 lvds_priv->pfit_pgm_ratios = pfit_pgm_ratios;
Jesse Barnes79e53942008-11-07 14:24:08 -0800528 /*
Zhao Yakuia3e17eb2009-10-10 10:42:37 +0800529 * When there exists the border, it means that the LVDS_BORDR
530 * should be enabled.
531 */
532 if (border)
533 dev_priv->lvds_border_bits |= LVDS_BORDER_ENABLE;
534 else
535 dev_priv->lvds_border_bits &= ~(LVDS_BORDER_ENABLE);
536 /*
Jesse Barnes79e53942008-11-07 14:24:08 -0800537 * XXX: It would be nice to support lower refresh rates on the
538 * panels to reduce power consumption, and perhaps match the
539 * user's requested refresh rate.
540 */
541
542 return true;
543}
544
545static void intel_lvds_prepare(struct drm_encoder *encoder)
546{
547 struct drm_device *dev = encoder->dev;
548 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800549 u32 reg;
Jesse Barnes79e53942008-11-07 14:24:08 -0800550
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500551 if (IS_IRONLAKE(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +0800552 reg = BLC_PWM_CPU_CTL;
553 else
554 reg = BLC_PWM_CTL;
555
556 dev_priv->saveBLC_PWM_CTL = I915_READ(reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800557 dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL &
558 BACKLIGHT_DUTY_CYCLE_MASK);
559
560 intel_lvds_set_power(dev, false);
561}
562
563static void intel_lvds_commit( struct drm_encoder *encoder)
564{
565 struct drm_device *dev = encoder->dev;
566 struct drm_i915_private *dev_priv = dev->dev_private;
567
568 if (dev_priv->backlight_duty_cycle == 0)
569 dev_priv->backlight_duty_cycle =
570 intel_lvds_get_max_backlight(dev);
571
572 intel_lvds_set_power(dev, true);
573}
574
575static void intel_lvds_mode_set(struct drm_encoder *encoder,
576 struct drm_display_mode *mode,
577 struct drm_display_mode *adjusted_mode)
578{
579 struct drm_device *dev = encoder->dev;
580 struct drm_i915_private *dev_priv = dev->dev_private;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800581 struct intel_output *intel_output = enc_to_intel_output(encoder);
582 struct intel_lvds_priv *lvds_priv = intel_output->dev_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -0800583
584 /*
585 * The LVDS pin pair will already have been turned on in the
586 * intel_crtc_mode_set since it has a large impact on the DPLL
587 * settings.
588 */
589
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500590 if (IS_IRONLAKE(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +0800591 return;
592
Jesse Barnes79e53942008-11-07 14:24:08 -0800593 /*
594 * Enable automatic panel scaling so that non-native modes fill the
595 * screen. Should be enabled before the pipe is enabled, according to
596 * register description and PRM.
597 */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800598 I915_WRITE(PFIT_PGM_RATIOS, lvds_priv->pfit_pgm_ratios);
599 I915_WRITE(PFIT_CONTROL, lvds_priv->pfit_control);
Jesse Barnes79e53942008-11-07 14:24:08 -0800600}
601
Jesse Barnes71214132009-09-17 15:45:26 -0700602/* Some lid devices report incorrect lid status, assume they're connected */
603static const struct dmi_system_id bad_lid_status[] = {
604 {
Zhao Yakui40f33a92010-01-06 13:30:36 +0800605 .ident = "Compaq nx9020",
606 .matches = {
607 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
608 DMI_MATCH(DMI_BOARD_NAME, "3084"),
609 },
610 },
611 {
612 .ident = "Samsung SX20S",
613 .matches = {
Zhao Yakuif034b122010-01-21 15:20:18 +0800614 DMI_MATCH(DMI_SYS_VENDOR, "Samsung Electronics"),
Zhao Yakui40f33a92010-01-06 13:30:36 +0800615 DMI_MATCH(DMI_BOARD_NAME, "SX20S"),
616 },
617 },
618 {
Jesse Barnes71214132009-09-17 15:45:26 -0700619 .ident = "Aspire One",
620 .matches = {
621 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
622 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire one"),
623 },
624 },
Zhao Yakuia3cb5192009-12-11 09:26:10 +0800625 {
Thomas Meyer67026e02010-02-02 20:09:04 +0100626 .ident = "Aspire 1810T",
627 .matches = {
628 DMI_MATCH(DMI_SYS_VENDOR, "Acer"),
629 DMI_MATCH(DMI_PRODUCT_NAME, "Aspire 1810T"),
630 },
631 },
632 {
Zhao Yakuia3cb5192009-12-11 09:26:10 +0800633 .ident = "PC-81005",
634 .matches = {
635 DMI_MATCH(DMI_SYS_VENDOR, "MALATA"),
636 DMI_MATCH(DMI_PRODUCT_NAME, "PC-81005"),
637 },
638 },
Jesse Barnes71214132009-09-17 15:45:26 -0700639 { }
640};
641
Jesse Barnes79e53942008-11-07 14:24:08 -0800642/**
643 * Detect the LVDS connection.
644 *
Jesse Barnesb42d4c52009-09-10 15:28:04 -0700645 * Since LVDS doesn't have hotlug, we use the lid as a proxy. Open means
646 * connected and closed means disconnected. We also send hotplug events as
647 * needed, using lid status notification from the input layer.
Jesse Barnes79e53942008-11-07 14:24:08 -0800648 */
649static enum drm_connector_status intel_lvds_detect(struct drm_connector *connector)
650{
Jesse Barnesb42d4c52009-09-10 15:28:04 -0700651 enum drm_connector_status status = connector_status_connected;
652
Thomas Meyer67026e02010-02-02 20:09:04 +0100653 if (!dmi_check_system(bad_lid_status) && !acpi_lid_open())
Jesse Barnesb42d4c52009-09-10 15:28:04 -0700654 status = connector_status_disconnected;
655
656 return status;
Jesse Barnes79e53942008-11-07 14:24:08 -0800657}
658
659/**
660 * Return the list of DDC modes if available, or the BIOS fixed mode otherwise.
661 */
662static int intel_lvds_get_modes(struct drm_connector *connector)
663{
664 struct drm_device *dev = connector->dev;
665 struct intel_output *intel_output = to_intel_output(connector);
666 struct drm_i915_private *dev_priv = dev->dev_private;
667 int ret = 0;
668
669 ret = intel_ddc_get_modes(intel_output);
670
671 if (ret)
672 return ret;
673
674 /* Didn't get an EDID, so
675 * Set wide sync ranges so we get all modes
676 * handed to valid_mode for checking
677 */
678 connector->display_info.min_vfreq = 0;
679 connector->display_info.max_vfreq = 200;
680 connector->display_info.min_hfreq = 0;
681 connector->display_info.max_hfreq = 200;
682
683 if (dev_priv->panel_fixed_mode != NULL) {
684 struct drm_display_mode *mode;
685
Jesse Barnes79e53942008-11-07 14:24:08 -0800686 mode = drm_mode_duplicate(dev, dev_priv->panel_fixed_mode);
687 drm_mode_probed_add(connector, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -0800688
689 return 1;
690 }
691
692 return 0;
693}
694
Linus Torvaldsc9354c82009-11-02 09:29:55 -0800695/*
696 * Lid events. Note the use of 'modeset_on_lid':
697 * - we set it on lid close, and reset it on open
698 * - we use it as a "only once" bit (ie we ignore
699 * duplicate events where it was already properly
700 * set/reset)
701 * - the suspend/resume paths will also set it to
702 * zero, since they restore the mode ("lid open").
703 */
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700704static int intel_lid_notify(struct notifier_block *nb, unsigned long val,
705 void *unused)
706{
707 struct drm_i915_private *dev_priv =
708 container_of(nb, struct drm_i915_private, lid_notifier);
709 struct drm_device *dev = dev_priv->dev;
Zhao Yakuia2565372009-12-11 09:26:11 +0800710 struct drm_connector *connector = dev_priv->int_lvds_connector;
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700711
Zhao Yakuia2565372009-12-11 09:26:11 +0800712 /*
713 * check and update the status of LVDS connector after receiving
714 * the LID nofication event.
715 */
716 if (connector)
717 connector->status = connector->funcs->detect(connector);
Linus Torvaldsc9354c82009-11-02 09:29:55 -0800718 if (!acpi_lid_open()) {
719 dev_priv->modeset_on_lid = 1;
720 return NOTIFY_OK;
Jesse Barnes06891e22009-09-14 10:58:48 -0700721 }
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700722
Linus Torvaldsc9354c82009-11-02 09:29:55 -0800723 if (!dev_priv->modeset_on_lid)
724 return NOTIFY_OK;
725
726 dev_priv->modeset_on_lid = 0;
727
728 mutex_lock(&dev->mode_config.mutex);
729 drm_helper_resume_force_mode(dev);
730 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnes06324192009-09-10 15:28:05 -0700731
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700732 return NOTIFY_OK;
733}
734
Jesse Barnes79e53942008-11-07 14:24:08 -0800735/**
736 * intel_lvds_destroy - unregister and free LVDS structures
737 * @connector: connector to free
738 *
739 * Unregister the DDC bus for this connector then free the driver private
740 * structure.
741 */
742static void intel_lvds_destroy(struct drm_connector *connector)
743{
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700744 struct drm_device *dev = connector->dev;
Jesse Barnes79e53942008-11-07 14:24:08 -0800745 struct intel_output *intel_output = to_intel_output(connector);
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700746 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -0800747
748 if (intel_output->ddc_bus)
749 intel_i2c_destroy(intel_output->ddc_bus);
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700750 if (dev_priv->lid_notifier.notifier_call)
751 acpi_lid_notifier_unregister(&dev_priv->lid_notifier);
Jesse Barnes79e53942008-11-07 14:24:08 -0800752 drm_sysfs_connector_remove(connector);
753 drm_connector_cleanup(connector);
754 kfree(connector);
755}
756
Jesse Barnes335041e2009-01-22 22:22:06 +1000757static int intel_lvds_set_property(struct drm_connector *connector,
758 struct drm_property *property,
759 uint64_t value)
760{
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800761 struct drm_device *dev = connector->dev;
762 struct intel_output *intel_output =
763 to_intel_output(connector);
764
765 if (property == dev->mode_config.scaling_mode_property &&
766 connector->encoder) {
767 struct drm_crtc *crtc = connector->encoder->crtc;
768 struct intel_lvds_priv *lvds_priv = intel_output->dev_priv;
Jesse Barnes53bd8382009-07-01 10:04:40 -0700769 if (value == DRM_MODE_SCALE_NONE) {
770 DRM_DEBUG_KMS("no scaling not supported\n");
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800771 return 0;
772 }
773 if (lvds_priv->fitting_mode == value) {
774 /* the LVDS scaling property is not changed */
775 return 0;
776 }
777 lvds_priv->fitting_mode = value;
778 if (crtc && crtc->enabled) {
779 /*
780 * If the CRTC is enabled, the display will be changed
781 * according to the new panel fitting mode.
782 */
783 drm_crtc_helper_set_mode(crtc, &crtc->mode,
784 crtc->x, crtc->y, crtc->fb);
785 }
786 }
787
Jesse Barnes335041e2009-01-22 22:22:06 +1000788 return 0;
789}
790
Jesse Barnes79e53942008-11-07 14:24:08 -0800791static const struct drm_encoder_helper_funcs intel_lvds_helper_funcs = {
792 .dpms = intel_lvds_dpms,
793 .mode_fixup = intel_lvds_mode_fixup,
794 .prepare = intel_lvds_prepare,
795 .mode_set = intel_lvds_mode_set,
796 .commit = intel_lvds_commit,
797};
798
799static const struct drm_connector_helper_funcs intel_lvds_connector_helper_funcs = {
800 .get_modes = intel_lvds_get_modes,
801 .mode_valid = intel_lvds_mode_valid,
802 .best_encoder = intel_best_encoder,
803};
804
805static const struct drm_connector_funcs intel_lvds_connector_funcs = {
Keith Packardc9fb15f2009-05-30 20:42:28 -0700806 .dpms = drm_helper_connector_dpms,
Jesse Barnes79e53942008-11-07 14:24:08 -0800807 .save = intel_lvds_save,
808 .restore = intel_lvds_restore,
809 .detect = intel_lvds_detect,
810 .fill_modes = drm_helper_probe_single_connector_modes,
Jesse Barnes335041e2009-01-22 22:22:06 +1000811 .set_property = intel_lvds_set_property,
Jesse Barnes79e53942008-11-07 14:24:08 -0800812 .destroy = intel_lvds_destroy,
813};
814
815
816static void intel_lvds_enc_destroy(struct drm_encoder *encoder)
817{
818 drm_encoder_cleanup(encoder);
819}
820
821static const struct drm_encoder_funcs intel_lvds_enc_funcs = {
822 .destroy = intel_lvds_enc_destroy,
823};
824
Jarod Wilson425d2442009-05-05 10:00:25 -0400825static int __init intel_no_lvds_dmi_callback(const struct dmi_system_id *id)
826{
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800827 DRM_DEBUG_KMS("Skipping LVDS initialization for %s\n", id->ident);
Jarod Wilson425d2442009-05-05 10:00:25 -0400828 return 1;
829}
Jesse Barnes79e53942008-11-07 14:24:08 -0800830
Jarod Wilson425d2442009-05-05 10:00:25 -0400831/* These systems claim to have LVDS, but really don't */
Jaswinder Singh Rajput93c05f22009-06-04 09:41:19 +1000832static const struct dmi_system_id intel_no_lvds[] = {
Jarod Wilson425d2442009-05-05 10:00:25 -0400833 {
834 .callback = intel_no_lvds_dmi_callback,
835 .ident = "Apple Mac Mini (Core series)",
836 .matches = {
Keith Packard98acd462009-06-14 12:31:58 -0700837 DMI_MATCH(DMI_SYS_VENDOR, "Apple"),
Jarod Wilson425d2442009-05-05 10:00:25 -0400838 DMI_MATCH(DMI_PRODUCT_NAME, "Macmini1,1"),
839 },
840 },
841 {
842 .callback = intel_no_lvds_dmi_callback,
843 .ident = "Apple Mac Mini (Core 2 series)",
844 .matches = {
Keith Packard98acd462009-06-14 12:31:58 -0700845 DMI_MATCH(DMI_SYS_VENDOR, "Apple"),
Jarod Wilson425d2442009-05-05 10:00:25 -0400846 DMI_MATCH(DMI_PRODUCT_NAME, "Macmini2,1"),
847 },
848 },
849 {
850 .callback = intel_no_lvds_dmi_callback,
851 .ident = "MSI IM-945GSE-A",
852 .matches = {
853 DMI_MATCH(DMI_SYS_VENDOR, "MSI"),
854 DMI_MATCH(DMI_PRODUCT_NAME, "A9830IMS"),
855 },
856 },
857 {
858 .callback = intel_no_lvds_dmi_callback,
859 .ident = "Dell Studio Hybrid",
860 .matches = {
861 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
862 DMI_MATCH(DMI_PRODUCT_NAME, "Studio Hybrid 140g"),
863 },
864 },
Jarod Wilson70aa96c2009-05-27 17:20:39 -0400865 {
866 .callback = intel_no_lvds_dmi_callback,
867 .ident = "AOpen Mini PC",
868 .matches = {
869 DMI_MATCH(DMI_SYS_VENDOR, "AOpen"),
870 DMI_MATCH(DMI_PRODUCT_NAME, "i965GMx-IF"),
871 },
872 },
Michael Cousinfa0864b2009-06-05 21:16:22 +0200873 {
874 .callback = intel_no_lvds_dmi_callback,
Tormod Voldened8c7542009-07-13 22:26:48 +0200875 .ident = "AOpen Mini PC MP915",
876 .matches = {
877 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
878 DMI_MATCH(DMI_BOARD_NAME, "i915GMx-F"),
879 },
880 },
881 {
882 .callback = intel_no_lvds_dmi_callback,
Michael Cousinfa0864b2009-06-05 21:16:22 +0200883 .ident = "Aopen i945GTt-VFA",
884 .matches = {
885 DMI_MATCH(DMI_PRODUCT_VERSION, "AO00001JW"),
886 },
887 },
Jarod Wilson425d2442009-05-05 10:00:25 -0400888
889 { } /* terminating entry */
890};
Jesse Barnes79e53942008-11-07 14:24:08 -0800891
892/**
Zhao Yakui18f9ed12009-11-20 03:24:16 +0000893 * intel_find_lvds_downclock - find the reduced downclock for LVDS in EDID
894 * @dev: drm device
895 * @connector: LVDS connector
896 *
897 * Find the reduced downclock for LVDS in EDID.
898 */
899static void intel_find_lvds_downclock(struct drm_device *dev,
900 struct drm_connector *connector)
901{
902 struct drm_i915_private *dev_priv = dev->dev_private;
903 struct drm_display_mode *scan, *panel_fixed_mode;
904 int temp_downclock;
905
906 panel_fixed_mode = dev_priv->panel_fixed_mode;
907 temp_downclock = panel_fixed_mode->clock;
908
909 mutex_lock(&dev->mode_config.mutex);
910 list_for_each_entry(scan, &connector->probed_modes, head) {
911 /*
912 * If one mode has the same resolution with the fixed_panel
913 * mode while they have the different refresh rate, it means
914 * that the reduced downclock is found for the LVDS. In such
915 * case we can set the different FPx0/1 to dynamically select
916 * between low and high frequency.
917 */
918 if (scan->hdisplay == panel_fixed_mode->hdisplay &&
919 scan->hsync_start == panel_fixed_mode->hsync_start &&
920 scan->hsync_end == panel_fixed_mode->hsync_end &&
921 scan->htotal == panel_fixed_mode->htotal &&
922 scan->vdisplay == panel_fixed_mode->vdisplay &&
923 scan->vsync_start == panel_fixed_mode->vsync_start &&
924 scan->vsync_end == panel_fixed_mode->vsync_end &&
925 scan->vtotal == panel_fixed_mode->vtotal) {
926 if (scan->clock < temp_downclock) {
927 /*
928 * The downclock is already found. But we
929 * expect to find the lower downclock.
930 */
931 temp_downclock = scan->clock;
932 }
933 }
934 }
935 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnes33814342010-01-14 20:48:02 +0000936 if (temp_downclock < panel_fixed_mode->clock &&
937 i915_lvds_downclock) {
Zhao Yakui18f9ed12009-11-20 03:24:16 +0000938 /* We found the downclock for LVDS. */
939 dev_priv->lvds_downclock_avail = 1;
940 dev_priv->lvds_downclock = temp_downclock;
941 DRM_DEBUG_KMS("LVDS downclock is found in EDID. "
942 "Normal clock %dKhz, downclock %dKhz\n",
943 panel_fixed_mode->clock, temp_downclock);
944 }
945 return;
946}
947
Zhao Yakui7cf4f692009-11-24 09:48:47 +0800948/*
949 * Enumerate the child dev array parsed from VBT to check whether
950 * the LVDS is present.
951 * If it is present, return 1.
952 * If it is not present, return false.
953 * If no child dev is parsed from VBT, it assumes that the LVDS is present.
954 * Note: The addin_offset should also be checked for LVDS panel.
955 * Only when it is non-zero, it is assumed that it is present.
956 */
Zhao Yakui6e365952009-12-02 10:03:34 +0800957static int lvds_is_present_in_vbt(struct drm_device *dev)
Zhao Yakui7cf4f692009-11-24 09:48:47 +0800958{
959 struct drm_i915_private *dev_priv = dev->dev_private;
960 struct child_device_config *p_child;
961 int i, ret;
962
963 if (!dev_priv->child_dev_num)
964 return 1;
965
966 ret = 0;
967 for (i = 0; i < dev_priv->child_dev_num; i++) {
968 p_child = dev_priv->child_dev + i;
969 /*
970 * If the device type is not LFP, continue.
971 * If the device type is 0x22, it is also regarded as LFP.
972 */
973 if (p_child->device_type != DEVICE_TYPE_INT_LFP &&
974 p_child->device_type != DEVICE_TYPE_LFP)
975 continue;
976
977 /* The addin_offset should be checked. Only when it is
978 * non-zero, it is regarded as present.
979 */
980 if (p_child->addin_offset) {
981 ret = 1;
982 break;
983 }
984 }
985 return ret;
986}
987
Zhao Yakui18f9ed12009-11-20 03:24:16 +0000988/**
Jesse Barnes79e53942008-11-07 14:24:08 -0800989 * intel_lvds_init - setup LVDS connectors on this device
990 * @dev: drm device
991 *
992 * Create the connector, register the LVDS DDC bus, and try to figure out what
993 * modes we can display on the LVDS panel (if present).
994 */
995void intel_lvds_init(struct drm_device *dev)
996{
997 struct drm_i915_private *dev_priv = dev->dev_private;
998 struct intel_output *intel_output;
999 struct drm_connector *connector;
1000 struct drm_encoder *encoder;
1001 struct drm_display_mode *scan; /* *modes, *bios_mode; */
1002 struct drm_crtc *crtc;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +08001003 struct intel_lvds_priv *lvds_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -08001004 u32 lvds;
Zhenyu Wang541998a2009-06-05 15:38:44 +08001005 int pipe, gpio = GPIOC;
Jesse Barnes79e53942008-11-07 14:24:08 -08001006
Jarod Wilson425d2442009-05-05 10:00:25 -04001007 /* Skip init on machines we know falsely report LVDS */
1008 if (dmi_check_system(intel_no_lvds))
Paul Collins565dcd42009-02-04 23:05:41 +13001009 return;
Paul Collins565dcd42009-02-04 23:05:41 +13001010
Matthew Garrett11ba1592009-12-15 13:55:24 -05001011 if (!lvds_is_present_in_vbt(dev)) {
1012 DRM_DEBUG_KMS("LVDS is not present in VBT\n");
Zhao Yakuie99da352009-06-26 09:46:18 +08001013 return;
Zhao Yakui7cf4f692009-11-24 09:48:47 +08001014 }
Zhao Yakuie99da352009-06-26 09:46:18 +08001015
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001016 if (IS_IRONLAKE(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +08001017 if ((I915_READ(PCH_LVDS) & LVDS_DETECTED) == 0)
1018 return;
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001019 if (dev_priv->edp_support) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001020 DRM_DEBUG_KMS("disable LVDS for eDP support\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +08001021 return;
1022 }
Zhenyu Wang541998a2009-06-05 15:38:44 +08001023 gpio = PCH_GPIOC;
1024 }
1025
Zhao Yakui3fbe18d2009-06-22 15:31:25 +08001026 intel_output = kzalloc(sizeof(struct intel_output) +
1027 sizeof(struct intel_lvds_priv), GFP_KERNEL);
Jesse Barnes79e53942008-11-07 14:24:08 -08001028 if (!intel_output) {
1029 return;
1030 }
1031
1032 connector = &intel_output->base;
1033 encoder = &intel_output->enc;
1034 drm_connector_init(dev, &intel_output->base, &intel_lvds_connector_funcs,
1035 DRM_MODE_CONNECTOR_LVDS);
1036
1037 drm_encoder_init(dev, &intel_output->enc, &intel_lvds_enc_funcs,
1038 DRM_MODE_ENCODER_LVDS);
1039
1040 drm_mode_connector_attach_encoder(&intel_output->base, &intel_output->enc);
1041 intel_output->type = INTEL_OUTPUT_LVDS;
1042
Ma Lingf8aed702009-08-24 13:50:24 +08001043 intel_output->clone_mask = (1 << INTEL_LVDS_CLONE_BIT);
1044 intel_output->crtc_mask = (1 << 1);
Jesse Barnes79e53942008-11-07 14:24:08 -08001045 drm_encoder_helper_add(encoder, &intel_lvds_helper_funcs);
1046 drm_connector_helper_add(connector, &intel_lvds_connector_helper_funcs);
1047 connector->display_info.subpixel_order = SubPixelHorizontalRGB;
1048 connector->interlace_allowed = false;
1049 connector->doublescan_allowed = false;
1050
Zhao Yakui3fbe18d2009-06-22 15:31:25 +08001051 lvds_priv = (struct intel_lvds_priv *)(intel_output + 1);
1052 intel_output->dev_priv = lvds_priv;
1053 /* create the scaling mode property */
1054 drm_mode_create_scaling_mode_property(dev);
1055 /*
1056 * the initial panel fitting mode will be FULL_SCREEN.
1057 */
Jesse Barnes79e53942008-11-07 14:24:08 -08001058
Zhao Yakui3fbe18d2009-06-22 15:31:25 +08001059 drm_connector_attach_property(&intel_output->base,
1060 dev->mode_config.scaling_mode_property,
1061 DRM_MODE_SCALE_FULLSCREEN);
1062 lvds_priv->fitting_mode = DRM_MODE_SCALE_FULLSCREEN;
Jesse Barnes79e53942008-11-07 14:24:08 -08001063 /*
1064 * LVDS discovery:
1065 * 1) check for EDID on DDC
1066 * 2) check for VBT data
1067 * 3) check to see if LVDS is already on
1068 * if none of the above, no panel
1069 * 4) make sure lid is open
1070 * if closed, act like it's not there for now
1071 */
1072
1073 /* Set up the DDC bus. */
Zhenyu Wang541998a2009-06-05 15:38:44 +08001074 intel_output->ddc_bus = intel_i2c_create(dev, gpio, "LVDSDDC_C");
Jesse Barnes79e53942008-11-07 14:24:08 -08001075 if (!intel_output->ddc_bus) {
1076 dev_printk(KERN_ERR, &dev->pdev->dev, "DDC bus registration "
1077 "failed.\n");
1078 goto failed;
1079 }
1080
1081 /*
1082 * Attempt to get the fixed panel mode from DDC. Assume that the
1083 * preferred mode is the right one.
1084 */
1085 intel_ddc_get_modes(intel_output);
1086
1087 list_for_each_entry(scan, &connector->probed_modes, head) {
1088 mutex_lock(&dev->mode_config.mutex);
1089 if (scan->type & DRM_MODE_TYPE_PREFERRED) {
1090 dev_priv->panel_fixed_mode =
1091 drm_mode_duplicate(dev, scan);
1092 mutex_unlock(&dev->mode_config.mutex);
Zhao Yakui18f9ed12009-11-20 03:24:16 +00001093 intel_find_lvds_downclock(dev, connector);
Paul Collins565dcd42009-02-04 23:05:41 +13001094 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08001095 }
1096 mutex_unlock(&dev->mode_config.mutex);
1097 }
1098
1099 /* Failed to get EDID, what about VBT? */
Ma Ling88631702009-05-13 11:19:55 +08001100 if (dev_priv->lfp_lvds_vbt_mode) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001101 mutex_lock(&dev->mode_config.mutex);
1102 dev_priv->panel_fixed_mode =
Ma Ling88631702009-05-13 11:19:55 +08001103 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08001104 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnese285f3cd2009-01-14 10:53:36 -08001105 if (dev_priv->panel_fixed_mode) {
1106 dev_priv->panel_fixed_mode->type |=
1107 DRM_MODE_TYPE_PREFERRED;
Jesse Barnese285f3cd2009-01-14 10:53:36 -08001108 goto out;
1109 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001110 }
1111
1112 /*
1113 * If we didn't get EDID, try checking if the panel is already turned
1114 * on. If so, assume that whatever is currently programmed is the
1115 * correct mode.
1116 */
Zhenyu Wang541998a2009-06-05 15:38:44 +08001117
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001118 /* Ironlake: FIXME if still fail, not try pipe mode now */
1119 if (IS_IRONLAKE(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +08001120 goto failed;
1121
Jesse Barnes79e53942008-11-07 14:24:08 -08001122 lvds = I915_READ(LVDS);
1123 pipe = (lvds & LVDS_PIPEB_SELECT) ? 1 : 0;
1124 crtc = intel_get_crtc_from_pipe(dev, pipe);
1125
1126 if (crtc && (lvds & LVDS_PORT_EN)) {
1127 dev_priv->panel_fixed_mode = intel_crtc_mode_get(dev, crtc);
1128 if (dev_priv->panel_fixed_mode) {
1129 dev_priv->panel_fixed_mode->type |=
1130 DRM_MODE_TYPE_PREFERRED;
Paul Collins565dcd42009-02-04 23:05:41 +13001131 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08001132 }
1133 }
1134
1135 /* If we still don't have a mode after all that, give up. */
1136 if (!dev_priv->panel_fixed_mode)
1137 goto failed;
1138
Jesse Barnes79e53942008-11-07 14:24:08 -08001139out:
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001140 if (IS_IRONLAKE(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +08001141 u32 pwm;
1142 /* make sure PWM is enabled */
1143 pwm = I915_READ(BLC_PWM_CPU_CTL2);
1144 pwm |= (PWM_ENABLE | PWM_PIPE_B);
1145 I915_WRITE(BLC_PWM_CPU_CTL2, pwm);
1146
1147 pwm = I915_READ(BLC_PWM_PCH_CTL1);
1148 pwm |= PWM_PCH_ENABLE;
1149 I915_WRITE(BLC_PWM_PCH_CTL1, pwm);
1150 }
Jesse Barnesc1c7af62009-09-10 15:28:03 -07001151 dev_priv->lid_notifier.notifier_call = intel_lid_notify;
1152 if (acpi_lid_notifier_register(&dev_priv->lid_notifier)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001153 DRM_DEBUG_KMS("lid notifier registration failed\n");
Jesse Barnesc1c7af62009-09-10 15:28:03 -07001154 dev_priv->lid_notifier.notifier_call = NULL;
1155 }
Zhao Yakuia2565372009-12-11 09:26:11 +08001156 /* keep the LVDS connector */
1157 dev_priv->int_lvds_connector = connector;
Jesse Barnes79e53942008-11-07 14:24:08 -08001158 drm_sysfs_connector_add(connector);
1159 return;
1160
1161failed:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001162 DRM_DEBUG_KMS("No LVDS modes found, disabling.\n");
Jesse Barnes79e53942008-11-07 14:24:08 -08001163 if (intel_output->ddc_bus)
1164 intel_i2c_destroy(intel_output->ddc_bus);
1165 drm_connector_cleanup(connector);
Shaohua Li1991bdf2009-11-17 17:19:23 +08001166 drm_encoder_cleanup(encoder);
Zhao Yakui3fbe18d2009-06-22 15:31:25 +08001167 kfree(intel_output);
Jesse Barnes79e53942008-11-07 14:24:08 -08001168}