blob: a5d61d3273d0a38f41429e86f516b94b28ed2dc4 [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
Jesse Barnes79e53942008-11-07 14:24:08 -0800141static int intel_lvds_mode_valid(struct drm_connector *connector,
142 struct drm_display_mode *mode)
143{
144 struct drm_device *dev = connector->dev;
145 struct drm_i915_private *dev_priv = dev->dev_private;
146 struct drm_display_mode *fixed_mode = dev_priv->panel_fixed_mode;
147
148 if (fixed_mode) {
149 if (mode->hdisplay > fixed_mode->hdisplay)
150 return MODE_PANEL;
151 if (mode->vdisplay > fixed_mode->vdisplay)
152 return MODE_PANEL;
153 }
154
155 return MODE_OK;
156}
157
158static bool intel_lvds_mode_fixup(struct drm_encoder *encoder,
159 struct drm_display_mode *mode,
160 struct drm_display_mode *adjusted_mode)
161{
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800162 /*
163 * float point operation is not supported . So the PANEL_RATIO_FACTOR
164 * is defined, which can avoid the float point computation when
165 * calculating the panel ratio.
166 */
167#define PANEL_RATIO_FACTOR 8192
Jesse Barnes79e53942008-11-07 14:24:08 -0800168 struct drm_device *dev = encoder->dev;
169 struct drm_i915_private *dev_priv = dev->dev_private;
170 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
171 struct drm_encoder *tmp_encoder;
Eric Anholt21d40d32010-03-25 11:11:14 -0700172 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
173 struct intel_lvds_priv *lvds_priv = intel_encoder->dev_priv;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800174 u32 pfit_control = 0, pfit_pgm_ratios = 0;
175 int left_border = 0, right_border = 0, top_border = 0;
176 int bottom_border = 0;
177 bool border = 0;
178 int panel_ratio, desired_ratio, vert_scale, horiz_scale;
179 int horiz_ratio, vert_ratio;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800180 u32 hsync_width, vsync_width;
181 u32 hblank_width, vblank_width;
182 u32 hsync_pos, vsync_pos;
Jesse Barnes79e53942008-11-07 14:24:08 -0800183
184 /* Should never happen!! */
185 if (!IS_I965G(dev) && intel_crtc->pipe == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700186 DRM_ERROR("Can't support LVDS on pipe A\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800187 return false;
188 }
189
190 /* Should never happen!! */
191 list_for_each_entry(tmp_encoder, &dev->mode_config.encoder_list, head) {
192 if (tmp_encoder != encoder && tmp_encoder->crtc == encoder->crtc) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700193 DRM_ERROR("Can't enable LVDS and another "
Jesse Barnes79e53942008-11-07 14:24:08 -0800194 "encoder on the same pipe\n");
195 return false;
196 }
197 }
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800198 /* If we don't have a panel mode, there is nothing we can do */
199 if (dev_priv->panel_fixed_mode == NULL)
200 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -0800201 /*
202 * If we have timings from the BIOS for the panel, put them in
203 * to the adjusted mode. The CRTC will be set up for this mode,
204 * with the panel scaling set up to source from the H/VDisplay
205 * of the original mode.
206 */
207 if (dev_priv->panel_fixed_mode != NULL) {
208 adjusted_mode->hdisplay = dev_priv->panel_fixed_mode->hdisplay;
209 adjusted_mode->hsync_start =
210 dev_priv->panel_fixed_mode->hsync_start;
211 adjusted_mode->hsync_end =
212 dev_priv->panel_fixed_mode->hsync_end;
213 adjusted_mode->htotal = dev_priv->panel_fixed_mode->htotal;
214 adjusted_mode->vdisplay = dev_priv->panel_fixed_mode->vdisplay;
215 adjusted_mode->vsync_start =
216 dev_priv->panel_fixed_mode->vsync_start;
217 adjusted_mode->vsync_end =
218 dev_priv->panel_fixed_mode->vsync_end;
219 adjusted_mode->vtotal = dev_priv->panel_fixed_mode->vtotal;
220 adjusted_mode->clock = dev_priv->panel_fixed_mode->clock;
221 drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V);
222 }
223
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800224 /* Make sure pre-965s set dither correctly */
225 if (!IS_I965G(dev)) {
226 if (dev_priv->panel_wants_dither || dev_priv->lvds_dither)
227 pfit_control |= PANEL_8TO6_DITHER_ENABLE;
228 }
229
230 /* Native modes don't need fitting */
231 if (adjusted_mode->hdisplay == mode->hdisplay &&
232 adjusted_mode->vdisplay == mode->vdisplay) {
233 pfit_pgm_ratios = 0;
234 border = 0;
235 goto out;
236 }
237
Zhenyu Wang8dd81a32009-09-19 14:54:09 +0800238 /* full screen scale for now */
Eric Anholtc619eed2010-01-28 16:45:52 -0800239 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang8dd81a32009-09-19 14:54:09 +0800240 goto out;
241
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800242 /* 965+ wants fuzzy fitting */
243 if (IS_I965G(dev))
244 pfit_control |= (intel_crtc->pipe << PFIT_PIPE_SHIFT) |
245 PFIT_FILTER_FUZZY;
246
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800247 hsync_width = adjusted_mode->crtc_hsync_end -
248 adjusted_mode->crtc_hsync_start;
249 vsync_width = adjusted_mode->crtc_vsync_end -
250 adjusted_mode->crtc_vsync_start;
251 hblank_width = adjusted_mode->crtc_hblank_end -
252 adjusted_mode->crtc_hblank_start;
253 vblank_width = adjusted_mode->crtc_vblank_end -
254 adjusted_mode->crtc_vblank_start;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800255 /*
256 * Deal with panel fitting options. Figure out how to stretch the
257 * image based on its aspect ratio & the current panel fitting mode.
258 */
259 panel_ratio = adjusted_mode->hdisplay * PANEL_RATIO_FACTOR /
260 adjusted_mode->vdisplay;
261 desired_ratio = mode->hdisplay * PANEL_RATIO_FACTOR /
262 mode->vdisplay;
263 /*
264 * Enable automatic panel scaling for non-native modes so that they fill
265 * the screen. Should be enabled before the pipe is enabled, according
266 * to register description and PRM.
267 * Change the value here to see the borders for debugging
268 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800269 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang8dd81a32009-09-19 14:54:09 +0800270 I915_WRITE(BCLRPAT_A, 0);
271 I915_WRITE(BCLRPAT_B, 0);
272 }
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800273
274 switch (lvds_priv->fitting_mode) {
Jesse Barnes53bd8382009-07-01 10:04:40 -0700275 case DRM_MODE_SCALE_CENTER:
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800276 /*
277 * For centered modes, we have to calculate border widths &
278 * heights and modify the values programmed into the CRTC.
279 */
280 left_border = (adjusted_mode->hdisplay - mode->hdisplay) / 2;
281 right_border = left_border;
282 if (mode->hdisplay & 1)
283 right_border++;
284 top_border = (adjusted_mode->vdisplay - mode->vdisplay) / 2;
285 bottom_border = top_border;
286 if (mode->vdisplay & 1)
287 bottom_border++;
288 /* Set active & border values */
289 adjusted_mode->crtc_hdisplay = mode->hdisplay;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800290 /* Keep the boder be even */
291 if (right_border & 1)
292 right_border++;
293 /* use the border directly instead of border minuse one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800294 adjusted_mode->crtc_hblank_start = mode->hdisplay +
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800295 right_border;
296 /* keep the blank width constant */
297 adjusted_mode->crtc_hblank_end =
298 adjusted_mode->crtc_hblank_start + hblank_width;
299 /* get the hsync pos relative to hblank start */
300 hsync_pos = (hblank_width - hsync_width) / 2;
301 /* keep the hsync pos be even */
302 if (hsync_pos & 1)
303 hsync_pos++;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800304 adjusted_mode->crtc_hsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800305 adjusted_mode->crtc_hblank_start + hsync_pos;
306 /* keep the hsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800307 adjusted_mode->crtc_hsync_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800308 adjusted_mode->crtc_hsync_start + hsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800309 adjusted_mode->crtc_vdisplay = mode->vdisplay;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800310 /* use the border instead of border minus one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800311 adjusted_mode->crtc_vblank_start = mode->vdisplay +
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800312 bottom_border;
313 /* keep the vblank width constant */
314 adjusted_mode->crtc_vblank_end =
315 adjusted_mode->crtc_vblank_start + vblank_width;
316 /* get the vsync start postion relative to vblank start */
317 vsync_pos = (vblank_width - vsync_width) / 2;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800318 adjusted_mode->crtc_vsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800319 adjusted_mode->crtc_vblank_start + vsync_pos;
320 /* keep the vsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800321 adjusted_mode->crtc_vsync_end =
Zhao Yakuia3e17eb2009-10-10 10:42:37 +0800322 adjusted_mode->crtc_vsync_start + vsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800323 border = 1;
324 break;
325 case DRM_MODE_SCALE_ASPECT:
326 /* Scale but preserve the spect ratio */
327 pfit_control |= PFIT_ENABLE;
328 if (IS_I965G(dev)) {
329 /* 965+ is easy, it does everything in hw */
330 if (panel_ratio > desired_ratio)
331 pfit_control |= PFIT_SCALING_PILLAR;
332 else if (panel_ratio < desired_ratio)
333 pfit_control |= PFIT_SCALING_LETTER;
334 else
335 pfit_control |= PFIT_SCALING_AUTO;
336 } else {
337 /*
338 * For earlier chips we have to calculate the scaling
339 * ratio by hand and program it into the
340 * PFIT_PGM_RATIO register
341 */
342 u32 horiz_bits, vert_bits, bits = 12;
343 horiz_ratio = mode->hdisplay * PANEL_RATIO_FACTOR/
344 adjusted_mode->hdisplay;
345 vert_ratio = mode->vdisplay * PANEL_RATIO_FACTOR/
346 adjusted_mode->vdisplay;
347 horiz_scale = adjusted_mode->hdisplay *
348 PANEL_RATIO_FACTOR / mode->hdisplay;
349 vert_scale = adjusted_mode->vdisplay *
350 PANEL_RATIO_FACTOR / mode->vdisplay;
351
352 /* retain aspect ratio */
353 if (panel_ratio > desired_ratio) { /* Pillar */
354 u32 scaled_width;
355 scaled_width = mode->hdisplay * vert_scale /
356 PANEL_RATIO_FACTOR;
357 horiz_ratio = vert_ratio;
358 pfit_control |= (VERT_AUTO_SCALE |
359 VERT_INTERP_BILINEAR |
360 HORIZ_INTERP_BILINEAR);
361 /* Pillar will have left/right borders */
362 left_border = (adjusted_mode->hdisplay -
363 scaled_width) / 2;
364 right_border = left_border;
365 if (mode->hdisplay & 1) /* odd resolutions */
366 right_border++;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800367 /* keep the border be even */
368 if (right_border & 1)
369 right_border++;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800370 adjusted_mode->crtc_hdisplay = scaled_width;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800371 /* use border instead of border minus one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800372 adjusted_mode->crtc_hblank_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800373 scaled_width + right_border;
374 /* keep the hblank width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800375 adjusted_mode->crtc_hblank_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800376 adjusted_mode->crtc_hblank_start +
377 hblank_width;
378 /*
379 * get the hsync start pos relative to
380 * hblank start
381 */
382 hsync_pos = (hblank_width - hsync_width) / 2;
383 /* keep the hsync_pos be even */
384 if (hsync_pos & 1)
385 hsync_pos++;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800386 adjusted_mode->crtc_hsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800387 adjusted_mode->crtc_hblank_start +
388 hsync_pos;
389 /* keept hsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800390 adjusted_mode->crtc_hsync_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800391 adjusted_mode->crtc_hsync_start +
392 hsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800393 border = 1;
394 } else if (panel_ratio < desired_ratio) { /* letter */
395 u32 scaled_height = mode->vdisplay *
396 horiz_scale / PANEL_RATIO_FACTOR;
397 vert_ratio = horiz_ratio;
398 pfit_control |= (HORIZ_AUTO_SCALE |
399 VERT_INTERP_BILINEAR |
400 HORIZ_INTERP_BILINEAR);
401 /* Letterbox will have top/bottom border */
402 top_border = (adjusted_mode->vdisplay -
403 scaled_height) / 2;
404 bottom_border = top_border;
405 if (mode->vdisplay & 1)
406 bottom_border++;
407 adjusted_mode->crtc_vdisplay = scaled_height;
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800408 /* use border instead of border minus one */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800409 adjusted_mode->crtc_vblank_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800410 scaled_height + bottom_border;
411 /* keep the vblank width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800412 adjusted_mode->crtc_vblank_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800413 adjusted_mode->crtc_vblank_start +
414 vblank_width;
415 /*
416 * get the vsync start pos relative to
417 * vblank start
418 */
419 vsync_pos = (vblank_width - vsync_width) / 2;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800420 adjusted_mode->crtc_vsync_start =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800421 adjusted_mode->crtc_vblank_start +
422 vsync_pos;
423 /* keep the vsync width constant */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800424 adjusted_mode->crtc_vsync_end =
Zhao Yakuiaa0261f2009-06-22 15:31:26 +0800425 adjusted_mode->crtc_vsync_start +
426 vsync_width;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800427 border = 1;
428 } else {
429 /* Aspects match, Let hw scale both directions */
430 pfit_control |= (VERT_AUTO_SCALE |
431 HORIZ_AUTO_SCALE |
432 VERT_INTERP_BILINEAR |
433 HORIZ_INTERP_BILINEAR);
434 }
435 horiz_bits = (1 << bits) * horiz_ratio /
436 PANEL_RATIO_FACTOR;
437 vert_bits = (1 << bits) * vert_ratio /
438 PANEL_RATIO_FACTOR;
439 pfit_pgm_ratios =
440 ((vert_bits << PFIT_VERT_SCALE_SHIFT) &
441 PFIT_VERT_SCALE_MASK) |
442 ((horiz_bits << PFIT_HORIZ_SCALE_SHIFT) &
443 PFIT_HORIZ_SCALE_MASK);
444 }
445 break;
446
447 case DRM_MODE_SCALE_FULLSCREEN:
448 /*
449 * Full scaling, even if it changes the aspect ratio.
450 * Fortunately this is all done for us in hw.
451 */
452 pfit_control |= PFIT_ENABLE;
453 if (IS_I965G(dev))
454 pfit_control |= PFIT_SCALING_AUTO;
455 else
456 pfit_control |= (VERT_AUTO_SCALE | HORIZ_AUTO_SCALE |
457 VERT_INTERP_BILINEAR |
458 HORIZ_INTERP_BILINEAR);
459 break;
460 default:
461 break;
462 }
463
464out:
465 lvds_priv->pfit_control = pfit_control;
466 lvds_priv->pfit_pgm_ratios = pfit_pgm_ratios;
Jesse Barnes79e53942008-11-07 14:24:08 -0800467 /*
Zhao Yakuia3e17eb2009-10-10 10:42:37 +0800468 * When there exists the border, it means that the LVDS_BORDR
469 * should be enabled.
470 */
471 if (border)
472 dev_priv->lvds_border_bits |= LVDS_BORDER_ENABLE;
473 else
474 dev_priv->lvds_border_bits &= ~(LVDS_BORDER_ENABLE);
475 /*
Jesse Barnes79e53942008-11-07 14:24:08 -0800476 * XXX: It would be nice to support lower refresh rates on the
477 * panels to reduce power consumption, and perhaps match the
478 * user's requested refresh rate.
479 */
480
481 return true;
482}
483
484static void intel_lvds_prepare(struct drm_encoder *encoder)
485{
486 struct drm_device *dev = encoder->dev;
487 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800488 u32 reg;
Jesse Barnes79e53942008-11-07 14:24:08 -0800489
Eric Anholtc619eed2010-01-28 16:45:52 -0800490 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +0800491 reg = BLC_PWM_CPU_CTL;
492 else
493 reg = BLC_PWM_CTL;
494
495 dev_priv->saveBLC_PWM_CTL = I915_READ(reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800496 dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL &
497 BACKLIGHT_DUTY_CYCLE_MASK);
498
499 intel_lvds_set_power(dev, false);
500}
501
502static void intel_lvds_commit( struct drm_encoder *encoder)
503{
504 struct drm_device *dev = encoder->dev;
505 struct drm_i915_private *dev_priv = dev->dev_private;
506
507 if (dev_priv->backlight_duty_cycle == 0)
508 dev_priv->backlight_duty_cycle =
509 intel_lvds_get_max_backlight(dev);
510
511 intel_lvds_set_power(dev, true);
512}
513
514static void intel_lvds_mode_set(struct drm_encoder *encoder,
515 struct drm_display_mode *mode,
516 struct drm_display_mode *adjusted_mode)
517{
518 struct drm_device *dev = encoder->dev;
519 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt21d40d32010-03-25 11:11:14 -0700520 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
521 struct intel_lvds_priv *lvds_priv = intel_encoder->dev_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -0800522
523 /*
524 * The LVDS pin pair will already have been turned on in the
525 * intel_crtc_mode_set since it has a large impact on the DPLL
526 * settings.
527 */
528
Eric Anholtc619eed2010-01-28 16:45:52 -0800529 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +0800530 return;
531
Jesse Barnes79e53942008-11-07 14:24:08 -0800532 /*
533 * Enable automatic panel scaling so that non-native modes fill the
534 * screen. Should be enabled before the pipe is enabled, according to
535 * register description and PRM.
536 */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800537 I915_WRITE(PFIT_PGM_RATIOS, lvds_priv->pfit_pgm_ratios);
538 I915_WRITE(PFIT_CONTROL, lvds_priv->pfit_control);
Jesse Barnes79e53942008-11-07 14:24:08 -0800539}
540
541/**
542 * Detect the LVDS connection.
543 *
Jesse Barnesb42d4c52009-09-10 15:28:04 -0700544 * Since LVDS doesn't have hotlug, we use the lid as a proxy. Open means
545 * connected and closed means disconnected. We also send hotplug events as
546 * needed, using lid status notification from the input layer.
Jesse Barnes79e53942008-11-07 14:24:08 -0800547 */
548static enum drm_connector_status intel_lvds_detect(struct drm_connector *connector)
549{
Jesse Barnes7b9c5ab2010-02-12 09:30:00 -0800550 struct drm_device *dev = connector->dev;
Jesse Barnesb42d4c52009-09-10 15:28:04 -0700551 enum drm_connector_status status = connector_status_connected;
552
Jesse Barnes7b9c5ab2010-02-12 09:30:00 -0800553 /* ACPI lid methods were generally unreliable in this generation, so
554 * don't even bother.
555 */
Eric Anholt6e6c8222010-03-17 13:48:06 -0700556 if (IS_GEN2(dev) || IS_GEN3(dev))
Jesse Barnes7b9c5ab2010-02-12 09:30:00 -0800557 return connector_status_connected;
558
Jesse Barnesb42d4c52009-09-10 15:28:04 -0700559 return status;
Jesse Barnes79e53942008-11-07 14:24:08 -0800560}
561
562/**
563 * Return the list of DDC modes if available, or the BIOS fixed mode otherwise.
564 */
565static int intel_lvds_get_modes(struct drm_connector *connector)
566{
567 struct drm_device *dev = connector->dev;
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800568 struct drm_encoder *encoder = intel_attached_encoder(connector);
569 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -0800570 struct drm_i915_private *dev_priv = dev->dev_private;
571 int ret = 0;
572
Zhao Yakuibfac4d62010-04-07 17:11:22 +0800573 if (dev_priv->lvds_edid_good) {
Zhenyu Wang335af9a2010-03-30 14:39:31 +0800574 ret = intel_ddc_get_modes(connector, intel_encoder->ddc_bus);
Jesse Barnes79e53942008-11-07 14:24:08 -0800575
Zhao Yakuibfac4d62010-04-07 17:11:22 +0800576 if (ret)
577 return ret;
578 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800579
580 /* Didn't get an EDID, so
581 * Set wide sync ranges so we get all modes
582 * handed to valid_mode for checking
583 */
584 connector->display_info.min_vfreq = 0;
585 connector->display_info.max_vfreq = 200;
586 connector->display_info.min_hfreq = 0;
587 connector->display_info.max_hfreq = 200;
588
589 if (dev_priv->panel_fixed_mode != NULL) {
590 struct drm_display_mode *mode;
591
Jesse Barnes79e53942008-11-07 14:24:08 -0800592 mode = drm_mode_duplicate(dev, dev_priv->panel_fixed_mode);
593 drm_mode_probed_add(connector, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -0800594
595 return 1;
596 }
597
598 return 0;
599}
600
Linus Torvaldsc9354c82009-11-02 09:29:55 -0800601/*
602 * Lid events. Note the use of 'modeset_on_lid':
603 * - we set it on lid close, and reset it on open
604 * - we use it as a "only once" bit (ie we ignore
605 * duplicate events where it was already properly
606 * set/reset)
607 * - the suspend/resume paths will also set it to
608 * zero, since they restore the mode ("lid open").
609 */
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700610static int intel_lid_notify(struct notifier_block *nb, unsigned long val,
611 void *unused)
612{
613 struct drm_i915_private *dev_priv =
614 container_of(nb, struct drm_i915_private, lid_notifier);
615 struct drm_device *dev = dev_priv->dev;
Zhao Yakuia2565372009-12-11 09:26:11 +0800616 struct drm_connector *connector = dev_priv->int_lvds_connector;
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700617
Zhao Yakuia2565372009-12-11 09:26:11 +0800618 /*
619 * check and update the status of LVDS connector after receiving
620 * the LID nofication event.
621 */
622 if (connector)
623 connector->status = connector->funcs->detect(connector);
Linus Torvaldsc9354c82009-11-02 09:29:55 -0800624 if (!acpi_lid_open()) {
625 dev_priv->modeset_on_lid = 1;
626 return NOTIFY_OK;
Jesse Barnes06891e22009-09-14 10:58:48 -0700627 }
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700628
Linus Torvaldsc9354c82009-11-02 09:29:55 -0800629 if (!dev_priv->modeset_on_lid)
630 return NOTIFY_OK;
631
632 dev_priv->modeset_on_lid = 0;
633
634 mutex_lock(&dev->mode_config.mutex);
635 drm_helper_resume_force_mode(dev);
636 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnes06324192009-09-10 15:28:05 -0700637
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700638 return NOTIFY_OK;
639}
640
Jesse Barnes79e53942008-11-07 14:24:08 -0800641/**
642 * intel_lvds_destroy - unregister and free LVDS structures
643 * @connector: connector to free
644 *
645 * Unregister the DDC bus for this connector then free the driver private
646 * structure.
647 */
648static void intel_lvds_destroy(struct drm_connector *connector)
649{
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700650 struct drm_device *dev = connector->dev;
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700651 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -0800652
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700653 if (dev_priv->lid_notifier.notifier_call)
654 acpi_lid_notifier_unregister(&dev_priv->lid_notifier);
Jesse Barnes79e53942008-11-07 14:24:08 -0800655 drm_sysfs_connector_remove(connector);
656 drm_connector_cleanup(connector);
657 kfree(connector);
658}
659
Jesse Barnes335041e2009-01-22 22:22:06 +1000660static int intel_lvds_set_property(struct drm_connector *connector,
661 struct drm_property *property,
662 uint64_t value)
663{
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800664 struct drm_device *dev = connector->dev;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800665
666 if (property == dev->mode_config.scaling_mode_property &&
667 connector->encoder) {
668 struct drm_crtc *crtc = connector->encoder->crtc;
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800669 struct drm_encoder *encoder = connector->encoder;
670 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Eric Anholt21d40d32010-03-25 11:11:14 -0700671 struct intel_lvds_priv *lvds_priv = intel_encoder->dev_priv;
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800672
Jesse Barnes53bd8382009-07-01 10:04:40 -0700673 if (value == DRM_MODE_SCALE_NONE) {
674 DRM_DEBUG_KMS("no scaling not supported\n");
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800675 return 0;
676 }
677 if (lvds_priv->fitting_mode == value) {
678 /* the LVDS scaling property is not changed */
679 return 0;
680 }
681 lvds_priv->fitting_mode = value;
682 if (crtc && crtc->enabled) {
683 /*
684 * If the CRTC is enabled, the display will be changed
685 * according to the new panel fitting mode.
686 */
687 drm_crtc_helper_set_mode(crtc, &crtc->mode,
688 crtc->x, crtc->y, crtc->fb);
689 }
690 }
691
Jesse Barnes335041e2009-01-22 22:22:06 +1000692 return 0;
693}
694
Jesse Barnes79e53942008-11-07 14:24:08 -0800695static const struct drm_encoder_helper_funcs intel_lvds_helper_funcs = {
696 .dpms = intel_lvds_dpms,
697 .mode_fixup = intel_lvds_mode_fixup,
698 .prepare = intel_lvds_prepare,
699 .mode_set = intel_lvds_mode_set,
700 .commit = intel_lvds_commit,
701};
702
703static const struct drm_connector_helper_funcs intel_lvds_connector_helper_funcs = {
704 .get_modes = intel_lvds_get_modes,
705 .mode_valid = intel_lvds_mode_valid,
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800706 .best_encoder = intel_attached_encoder,
Jesse Barnes79e53942008-11-07 14:24:08 -0800707};
708
709static const struct drm_connector_funcs intel_lvds_connector_funcs = {
Keith Packardc9fb15f2009-05-30 20:42:28 -0700710 .dpms = drm_helper_connector_dpms,
Jesse Barnes79e53942008-11-07 14:24:08 -0800711 .detect = intel_lvds_detect,
712 .fill_modes = drm_helper_probe_single_connector_modes,
Jesse Barnes335041e2009-01-22 22:22:06 +1000713 .set_property = intel_lvds_set_property,
Jesse Barnes79e53942008-11-07 14:24:08 -0800714 .destroy = intel_lvds_destroy,
715};
716
717
718static void intel_lvds_enc_destroy(struct drm_encoder *encoder)
719{
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800720 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
721
722 if (intel_encoder->ddc_bus)
723 intel_i2c_destroy(intel_encoder->ddc_bus);
Jesse Barnes79e53942008-11-07 14:24:08 -0800724 drm_encoder_cleanup(encoder);
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800725 kfree(intel_encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -0800726}
727
728static const struct drm_encoder_funcs intel_lvds_enc_funcs = {
729 .destroy = intel_lvds_enc_destroy,
730};
731
Jarod Wilson425d2442009-05-05 10:00:25 -0400732static int __init intel_no_lvds_dmi_callback(const struct dmi_system_id *id)
733{
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800734 DRM_DEBUG_KMS("Skipping LVDS initialization for %s\n", id->ident);
Jarod Wilson425d2442009-05-05 10:00:25 -0400735 return 1;
736}
Jesse Barnes79e53942008-11-07 14:24:08 -0800737
Jarod Wilson425d2442009-05-05 10:00:25 -0400738/* These systems claim to have LVDS, but really don't */
Jaswinder Singh Rajput93c05f22009-06-04 09:41:19 +1000739static const struct dmi_system_id intel_no_lvds[] = {
Jarod Wilson425d2442009-05-05 10:00:25 -0400740 {
741 .callback = intel_no_lvds_dmi_callback,
742 .ident = "Apple Mac Mini (Core series)",
743 .matches = {
Keith Packard98acd462009-06-14 12:31:58 -0700744 DMI_MATCH(DMI_SYS_VENDOR, "Apple"),
Jarod Wilson425d2442009-05-05 10:00:25 -0400745 DMI_MATCH(DMI_PRODUCT_NAME, "Macmini1,1"),
746 },
747 },
748 {
749 .callback = intel_no_lvds_dmi_callback,
750 .ident = "Apple Mac Mini (Core 2 series)",
751 .matches = {
Keith Packard98acd462009-06-14 12:31:58 -0700752 DMI_MATCH(DMI_SYS_VENDOR, "Apple"),
Jarod Wilson425d2442009-05-05 10:00:25 -0400753 DMI_MATCH(DMI_PRODUCT_NAME, "Macmini2,1"),
754 },
755 },
756 {
757 .callback = intel_no_lvds_dmi_callback,
758 .ident = "MSI IM-945GSE-A",
759 .matches = {
760 DMI_MATCH(DMI_SYS_VENDOR, "MSI"),
761 DMI_MATCH(DMI_PRODUCT_NAME, "A9830IMS"),
762 },
763 },
764 {
765 .callback = intel_no_lvds_dmi_callback,
766 .ident = "Dell Studio Hybrid",
767 .matches = {
768 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
769 DMI_MATCH(DMI_PRODUCT_NAME, "Studio Hybrid 140g"),
770 },
771 },
Jarod Wilson70aa96c2009-05-27 17:20:39 -0400772 {
773 .callback = intel_no_lvds_dmi_callback,
774 .ident = "AOpen Mini PC",
775 .matches = {
776 DMI_MATCH(DMI_SYS_VENDOR, "AOpen"),
777 DMI_MATCH(DMI_PRODUCT_NAME, "i965GMx-IF"),
778 },
779 },
Michael Cousinfa0864b2009-06-05 21:16:22 +0200780 {
781 .callback = intel_no_lvds_dmi_callback,
Tormod Voldened8c7542009-07-13 22:26:48 +0200782 .ident = "AOpen Mini PC MP915",
783 .matches = {
784 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
785 DMI_MATCH(DMI_BOARD_NAME, "i915GMx-F"),
786 },
787 },
788 {
789 .callback = intel_no_lvds_dmi_callback,
Michael Cousinfa0864b2009-06-05 21:16:22 +0200790 .ident = "Aopen i945GTt-VFA",
791 .matches = {
792 DMI_MATCH(DMI_PRODUCT_VERSION, "AO00001JW"),
793 },
794 },
Stefan Bader9875557ee82010-03-29 17:53:12 +0200795 {
796 .callback = intel_no_lvds_dmi_callback,
797 .ident = "Clientron U800",
798 .matches = {
799 DMI_MATCH(DMI_SYS_VENDOR, "Clientron"),
800 DMI_MATCH(DMI_PRODUCT_NAME, "U800"),
801 },
802 },
Jarod Wilson425d2442009-05-05 10:00:25 -0400803
804 { } /* terminating entry */
805};
Jesse Barnes79e53942008-11-07 14:24:08 -0800806
807/**
Zhao Yakui18f9ed12009-11-20 03:24:16 +0000808 * intel_find_lvds_downclock - find the reduced downclock for LVDS in EDID
809 * @dev: drm device
810 * @connector: LVDS connector
811 *
812 * Find the reduced downclock for LVDS in EDID.
813 */
814static void intel_find_lvds_downclock(struct drm_device *dev,
815 struct drm_connector *connector)
816{
817 struct drm_i915_private *dev_priv = dev->dev_private;
818 struct drm_display_mode *scan, *panel_fixed_mode;
819 int temp_downclock;
820
821 panel_fixed_mode = dev_priv->panel_fixed_mode;
822 temp_downclock = panel_fixed_mode->clock;
823
824 mutex_lock(&dev->mode_config.mutex);
825 list_for_each_entry(scan, &connector->probed_modes, head) {
826 /*
827 * If one mode has the same resolution with the fixed_panel
828 * mode while they have the different refresh rate, it means
829 * that the reduced downclock is found for the LVDS. In such
830 * case we can set the different FPx0/1 to dynamically select
831 * between low and high frequency.
832 */
833 if (scan->hdisplay == panel_fixed_mode->hdisplay &&
834 scan->hsync_start == panel_fixed_mode->hsync_start &&
835 scan->hsync_end == panel_fixed_mode->hsync_end &&
836 scan->htotal == panel_fixed_mode->htotal &&
837 scan->vdisplay == panel_fixed_mode->vdisplay &&
838 scan->vsync_start == panel_fixed_mode->vsync_start &&
839 scan->vsync_end == panel_fixed_mode->vsync_end &&
840 scan->vtotal == panel_fixed_mode->vtotal) {
841 if (scan->clock < temp_downclock) {
842 /*
843 * The downclock is already found. But we
844 * expect to find the lower downclock.
845 */
846 temp_downclock = scan->clock;
847 }
848 }
849 }
850 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnes33814342010-01-14 20:48:02 +0000851 if (temp_downclock < panel_fixed_mode->clock &&
852 i915_lvds_downclock) {
Zhao Yakui18f9ed12009-11-20 03:24:16 +0000853 /* We found the downclock for LVDS. */
854 dev_priv->lvds_downclock_avail = 1;
855 dev_priv->lvds_downclock = temp_downclock;
856 DRM_DEBUG_KMS("LVDS downclock is found in EDID. "
857 "Normal clock %dKhz, downclock %dKhz\n",
858 panel_fixed_mode->clock, temp_downclock);
859 }
860 return;
861}
862
Zhao Yakui7cf4f692009-11-24 09:48:47 +0800863/*
864 * Enumerate the child dev array parsed from VBT to check whether
865 * the LVDS is present.
866 * If it is present, return 1.
867 * If it is not present, return false.
868 * If no child dev is parsed from VBT, it assumes that the LVDS is present.
869 * Note: The addin_offset should also be checked for LVDS panel.
870 * Only when it is non-zero, it is assumed that it is present.
871 */
Zhao Yakui6e365952009-12-02 10:03:34 +0800872static int lvds_is_present_in_vbt(struct drm_device *dev)
Zhao Yakui7cf4f692009-11-24 09:48:47 +0800873{
874 struct drm_i915_private *dev_priv = dev->dev_private;
875 struct child_device_config *p_child;
876 int i, ret;
877
878 if (!dev_priv->child_dev_num)
879 return 1;
880
881 ret = 0;
882 for (i = 0; i < dev_priv->child_dev_num; i++) {
883 p_child = dev_priv->child_dev + i;
884 /*
885 * If the device type is not LFP, continue.
886 * If the device type is 0x22, it is also regarded as LFP.
887 */
888 if (p_child->device_type != DEVICE_TYPE_INT_LFP &&
889 p_child->device_type != DEVICE_TYPE_LFP)
890 continue;
891
892 /* The addin_offset should be checked. Only when it is
893 * non-zero, it is regarded as present.
894 */
895 if (p_child->addin_offset) {
896 ret = 1;
897 break;
898 }
899 }
900 return ret;
901}
902
Zhao Yakui18f9ed12009-11-20 03:24:16 +0000903/**
Jesse Barnes79e53942008-11-07 14:24:08 -0800904 * intel_lvds_init - setup LVDS connectors on this device
905 * @dev: drm device
906 *
907 * Create the connector, register the LVDS DDC bus, and try to figure out what
908 * modes we can display on the LVDS panel (if present).
909 */
910void intel_lvds_init(struct drm_device *dev)
911{
912 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt21d40d32010-03-25 11:11:14 -0700913 struct intel_encoder *intel_encoder;
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800914 struct intel_connector *intel_connector;
Jesse Barnes79e53942008-11-07 14:24:08 -0800915 struct drm_connector *connector;
916 struct drm_encoder *encoder;
917 struct drm_display_mode *scan; /* *modes, *bios_mode; */
918 struct drm_crtc *crtc;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800919 struct intel_lvds_priv *lvds_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -0800920 u32 lvds;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800921 int pipe, gpio = GPIOC;
Jesse Barnes79e53942008-11-07 14:24:08 -0800922
Jarod Wilson425d2442009-05-05 10:00:25 -0400923 /* Skip init on machines we know falsely report LVDS */
924 if (dmi_check_system(intel_no_lvds))
Paul Collins565dcd42009-02-04 23:05:41 +1300925 return;
Paul Collins565dcd42009-02-04 23:05:41 +1300926
Matthew Garrett11ba1592009-12-15 13:55:24 -0500927 if (!lvds_is_present_in_vbt(dev)) {
928 DRM_DEBUG_KMS("LVDS is not present in VBT\n");
Zhao Yakuie99da352009-06-26 09:46:18 +0800929 return;
Zhao Yakui7cf4f692009-11-24 09:48:47 +0800930 }
Zhao Yakuie99da352009-06-26 09:46:18 +0800931
Eric Anholtc619eed2010-01-28 16:45:52 -0800932 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800933 if ((I915_READ(PCH_LVDS) & LVDS_DETECTED) == 0)
934 return;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800935 if (dev_priv->edp_support) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800936 DRM_DEBUG_KMS("disable LVDS for eDP support\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800937 return;
938 }
Zhenyu Wang541998a2009-06-05 15:38:44 +0800939 gpio = PCH_GPIOC;
940 }
941
Eric Anholt21d40d32010-03-25 11:11:14 -0700942 intel_encoder = kzalloc(sizeof(struct intel_encoder) +
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800943 sizeof(struct intel_lvds_priv), GFP_KERNEL);
Eric Anholt21d40d32010-03-25 11:11:14 -0700944 if (!intel_encoder) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800945 return;
946 }
947
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800948 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
949 if (!intel_connector) {
950 kfree(intel_encoder);
951 return;
952 }
953
954 connector = &intel_connector->base;
Eric Anholt21d40d32010-03-25 11:11:14 -0700955 encoder = &intel_encoder->enc;
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800956 drm_connector_init(dev, &intel_connector->base, &intel_lvds_connector_funcs,
Jesse Barnes79e53942008-11-07 14:24:08 -0800957 DRM_MODE_CONNECTOR_LVDS);
958
Eric Anholt21d40d32010-03-25 11:11:14 -0700959 drm_encoder_init(dev, &intel_encoder->enc, &intel_lvds_enc_funcs,
Jesse Barnes79e53942008-11-07 14:24:08 -0800960 DRM_MODE_ENCODER_LVDS);
961
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800962 drm_mode_connector_attach_encoder(&intel_connector->base, &intel_encoder->enc);
Eric Anholt21d40d32010-03-25 11:11:14 -0700963 intel_encoder->type = INTEL_OUTPUT_LVDS;
Jesse Barnes79e53942008-11-07 14:24:08 -0800964
Eric Anholt21d40d32010-03-25 11:11:14 -0700965 intel_encoder->clone_mask = (1 << INTEL_LVDS_CLONE_BIT);
966 intel_encoder->crtc_mask = (1 << 1);
Adam Jackson0f3ee802010-03-31 11:41:51 -0400967 if (IS_I965G(dev))
968 intel_encoder->crtc_mask |= (1 << 0);
Jesse Barnes79e53942008-11-07 14:24:08 -0800969 drm_encoder_helper_add(encoder, &intel_lvds_helper_funcs);
970 drm_connector_helper_add(connector, &intel_lvds_connector_helper_funcs);
971 connector->display_info.subpixel_order = SubPixelHorizontalRGB;
972 connector->interlace_allowed = false;
973 connector->doublescan_allowed = false;
974
Eric Anholt21d40d32010-03-25 11:11:14 -0700975 lvds_priv = (struct intel_lvds_priv *)(intel_encoder + 1);
976 intel_encoder->dev_priv = lvds_priv;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800977 /* create the scaling mode property */
978 drm_mode_create_scaling_mode_property(dev);
979 /*
980 * the initial panel fitting mode will be FULL_SCREEN.
981 */
Jesse Barnes79e53942008-11-07 14:24:08 -0800982
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800983 drm_connector_attach_property(&intel_connector->base,
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800984 dev->mode_config.scaling_mode_property,
985 DRM_MODE_SCALE_FULLSCREEN);
986 lvds_priv->fitting_mode = DRM_MODE_SCALE_FULLSCREEN;
Jesse Barnes79e53942008-11-07 14:24:08 -0800987 /*
988 * LVDS discovery:
989 * 1) check for EDID on DDC
990 * 2) check for VBT data
991 * 3) check to see if LVDS is already on
992 * if none of the above, no panel
993 * 4) make sure lid is open
994 * if closed, act like it's not there for now
995 */
996
997 /* Set up the DDC bus. */
Eric Anholt21d40d32010-03-25 11:11:14 -0700998 intel_encoder->ddc_bus = intel_i2c_create(dev, gpio, "LVDSDDC_C");
999 if (!intel_encoder->ddc_bus) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001000 dev_printk(KERN_ERR, &dev->pdev->dev, "DDC bus registration "
1001 "failed.\n");
1002 goto failed;
1003 }
1004
1005 /*
1006 * Attempt to get the fixed panel mode from DDC. Assume that the
1007 * preferred mode is the right one.
1008 */
Zhao Yakuibfac4d62010-04-07 17:11:22 +08001009 dev_priv->lvds_edid_good = true;
1010
Zhenyu Wang335af9a2010-03-30 14:39:31 +08001011 if (!intel_ddc_get_modes(connector, intel_encoder->ddc_bus))
Zhao Yakuibfac4d62010-04-07 17:11:22 +08001012 dev_priv->lvds_edid_good = false;
Jesse Barnes79e53942008-11-07 14:24:08 -08001013
1014 list_for_each_entry(scan, &connector->probed_modes, head) {
1015 mutex_lock(&dev->mode_config.mutex);
1016 if (scan->type & DRM_MODE_TYPE_PREFERRED) {
1017 dev_priv->panel_fixed_mode =
1018 drm_mode_duplicate(dev, scan);
1019 mutex_unlock(&dev->mode_config.mutex);
Zhao Yakui18f9ed12009-11-20 03:24:16 +00001020 intel_find_lvds_downclock(dev, connector);
Paul Collins565dcd42009-02-04 23:05:41 +13001021 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08001022 }
1023 mutex_unlock(&dev->mode_config.mutex);
1024 }
1025
1026 /* Failed to get EDID, what about VBT? */
Ma Ling88631702009-05-13 11:19:55 +08001027 if (dev_priv->lfp_lvds_vbt_mode) {
Jesse Barnes79e53942008-11-07 14:24:08 -08001028 mutex_lock(&dev->mode_config.mutex);
1029 dev_priv->panel_fixed_mode =
Ma Ling88631702009-05-13 11:19:55 +08001030 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -08001031 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnese285f3cd2009-01-14 10:53:36 -08001032 if (dev_priv->panel_fixed_mode) {
1033 dev_priv->panel_fixed_mode->type |=
1034 DRM_MODE_TYPE_PREFERRED;
Jesse Barnese285f3cd2009-01-14 10:53:36 -08001035 goto out;
1036 }
Jesse Barnes79e53942008-11-07 14:24:08 -08001037 }
1038
1039 /*
1040 * If we didn't get EDID, try checking if the panel is already turned
1041 * on. If so, assume that whatever is currently programmed is the
1042 * correct mode.
1043 */
Zhenyu Wang541998a2009-06-05 15:38:44 +08001044
Adam Jacksonf2b115e2009-12-03 17:14:42 -05001045 /* Ironlake: FIXME if still fail, not try pipe mode now */
Eric Anholtc619eed2010-01-28 16:45:52 -08001046 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +08001047 goto failed;
1048
Jesse Barnes79e53942008-11-07 14:24:08 -08001049 lvds = I915_READ(LVDS);
1050 pipe = (lvds & LVDS_PIPEB_SELECT) ? 1 : 0;
1051 crtc = intel_get_crtc_from_pipe(dev, pipe);
1052
1053 if (crtc && (lvds & LVDS_PORT_EN)) {
1054 dev_priv->panel_fixed_mode = intel_crtc_mode_get(dev, crtc);
1055 if (dev_priv->panel_fixed_mode) {
1056 dev_priv->panel_fixed_mode->type |=
1057 DRM_MODE_TYPE_PREFERRED;
Paul Collins565dcd42009-02-04 23:05:41 +13001058 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -08001059 }
1060 }
1061
1062 /* If we still don't have a mode after all that, give up. */
1063 if (!dev_priv->panel_fixed_mode)
1064 goto failed;
1065
Jesse Barnes79e53942008-11-07 14:24:08 -08001066out:
Eric Anholtc619eed2010-01-28 16:45:52 -08001067 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +08001068 u32 pwm;
1069 /* make sure PWM is enabled */
1070 pwm = I915_READ(BLC_PWM_CPU_CTL2);
1071 pwm |= (PWM_ENABLE | PWM_PIPE_B);
1072 I915_WRITE(BLC_PWM_CPU_CTL2, pwm);
1073
1074 pwm = I915_READ(BLC_PWM_PCH_CTL1);
1075 pwm |= PWM_PCH_ENABLE;
1076 I915_WRITE(BLC_PWM_PCH_CTL1, pwm);
1077 }
Jesse Barnesc1c7af62009-09-10 15:28:03 -07001078 dev_priv->lid_notifier.notifier_call = intel_lid_notify;
1079 if (acpi_lid_notifier_register(&dev_priv->lid_notifier)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001080 DRM_DEBUG_KMS("lid notifier registration failed\n");
Jesse Barnesc1c7af62009-09-10 15:28:03 -07001081 dev_priv->lid_notifier.notifier_call = NULL;
1082 }
Zhao Yakuia2565372009-12-11 09:26:11 +08001083 /* keep the LVDS connector */
1084 dev_priv->int_lvds_connector = connector;
Jesse Barnes79e53942008-11-07 14:24:08 -08001085 drm_sysfs_connector_add(connector);
1086 return;
1087
1088failed:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001089 DRM_DEBUG_KMS("No LVDS modes found, disabling.\n");
Eric Anholt21d40d32010-03-25 11:11:14 -07001090 if (intel_encoder->ddc_bus)
1091 intel_i2c_destroy(intel_encoder->ddc_bus);
Jesse Barnes79e53942008-11-07 14:24:08 -08001092 drm_connector_cleanup(connector);
Shaohua Li1991bdf2009-11-17 17:19:23 +08001093 drm_encoder_cleanup(encoder);
Eric Anholt21d40d32010-03-25 11:11:14 -07001094 kfree(intel_encoder);
Zhenyu Wangbb8a3562010-03-29 16:40:50 +08001095 kfree(intel_connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001096}