blob: 0a2e60059fb31fc9ab9cd8ef208191b94b74e055 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080034#include "drmP.h"
35#include "drm.h"
36#include "drm_crtc.h"
37#include "drm_edid.h"
38#include "intel_drv.h"
39#include "i915_drm.h"
40#include "i915_drv.h"
Zhao Yakuie99da352009-06-26 09:46:18 +080041#include <linux/acpi.h>
Jesse Barnes79e53942008-11-07 14:24:08 -080042
Zhao Yakui3fbe18d2009-06-22 15:31:25 +080043/* Private structure for the integrated LVDS support */
44struct intel_lvds_priv {
45 int fitting_mode;
46 u32 pfit_control;
47 u32 pfit_pgm_ratios;
48};
49
Jesse Barnes79e53942008-11-07 14:24:08 -080050/**
51 * Sets the backlight level.
52 *
53 * \param level backlight level, from 0 to intel_lvds_get_max_backlight().
54 */
55static void intel_lvds_set_backlight(struct drm_device *dev, int level)
56{
57 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +080058 u32 blc_pwm_ctl, reg;
Jesse Barnes79e53942008-11-07 14:24:08 -080059
Eric Anholtc619eed2010-01-28 16:45:52 -080060 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +080061 reg = BLC_PWM_CPU_CTL;
62 else
63 reg = BLC_PWM_CTL;
64
65 blc_pwm_ctl = I915_READ(reg) & ~BACKLIGHT_DUTY_CYCLE_MASK;
66 I915_WRITE(reg, (blc_pwm_ctl |
Jesse Barnes79e53942008-11-07 14:24:08 -080067 (level << BACKLIGHT_DUTY_CYCLE_SHIFT)));
68}
69
70/**
71 * Returns the maximum level of the backlight duty cycle field.
72 */
73static u32 intel_lvds_get_max_backlight(struct drm_device *dev)
74{
75 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +080076 u32 reg;
Jesse Barnes79e53942008-11-07 14:24:08 -080077
Eric Anholtc619eed2010-01-28 16:45:52 -080078 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +080079 reg = BLC_PWM_PCH_CTL2;
80 else
81 reg = BLC_PWM_CTL;
82
83 return ((I915_READ(reg) & BACKLIGHT_MODULATION_FREQ_MASK) >>
Jesse Barnes79e53942008-11-07 14:24:08 -080084 BACKLIGHT_MODULATION_FREQ_SHIFT) * 2;
85}
86
87/**
88 * Sets the power state for the panel.
89 */
90static void intel_lvds_set_power(struct drm_device *dev, bool on)
91{
92 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes469d1292010-02-11 12:41:05 -080093 u32 pp_status, ctl_reg, status_reg, lvds_reg;
Zhenyu Wang541998a2009-06-05 15:38:44 +080094
Eric Anholtc619eed2010-01-28 16:45:52 -080095 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +080096 ctl_reg = PCH_PP_CONTROL;
97 status_reg = PCH_PP_STATUS;
Jesse Barnes469d1292010-02-11 12:41:05 -080098 lvds_reg = PCH_LVDS;
Zhenyu Wang541998a2009-06-05 15:38:44 +080099 } else {
100 ctl_reg = PP_CONTROL;
101 status_reg = PP_STATUS;
Jesse Barnes469d1292010-02-11 12:41:05 -0800102 lvds_reg = LVDS;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800103 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800104
105 if (on) {
Jesse Barnes469d1292010-02-11 12:41:05 -0800106 I915_WRITE(lvds_reg, I915_READ(lvds_reg) | LVDS_PORT_EN);
107 POSTING_READ(lvds_reg);
108
Zhenyu Wang541998a2009-06-05 15:38:44 +0800109 I915_WRITE(ctl_reg, I915_READ(ctl_reg) |
Jesse Barnes79e53942008-11-07 14:24:08 -0800110 POWER_TARGET_ON);
111 do {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800112 pp_status = I915_READ(status_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800113 } while ((pp_status & PP_ON) == 0);
114
115 intel_lvds_set_backlight(dev, dev_priv->backlight_duty_cycle);
116 } else {
117 intel_lvds_set_backlight(dev, 0);
118
Zhenyu Wang541998a2009-06-05 15:38:44 +0800119 I915_WRITE(ctl_reg, I915_READ(ctl_reg) &
Jesse Barnes79e53942008-11-07 14:24:08 -0800120 ~POWER_TARGET_ON);
121 do {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800122 pp_status = I915_READ(status_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800123 } while (pp_status & PP_ON);
Jesse Barnes469d1292010-02-11 12:41:05 -0800124
125 I915_WRITE(lvds_reg, I915_READ(lvds_reg) & ~LVDS_PORT_EN);
126 POSTING_READ(lvds_reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800127 }
128}
129
130static void intel_lvds_dpms(struct drm_encoder *encoder, int mode)
131{
132 struct drm_device *dev = encoder->dev;
133
134 if (mode == DRM_MODE_DPMS_ON)
135 intel_lvds_set_power(dev, true);
136 else
137 intel_lvds_set_power(dev, false);
138
139 /* XXX: We never power down the LVDS pairs. */
140}
141
Jesse Barnes79e53942008-11-07 14:24:08 -0800142static int intel_lvds_mode_valid(struct drm_connector *connector,
143 struct drm_display_mode *mode)
144{
145 struct drm_device *dev = connector->dev;
146 struct drm_i915_private *dev_priv = dev->dev_private;
147 struct drm_display_mode *fixed_mode = dev_priv->panel_fixed_mode;
148
149 if (fixed_mode) {
150 if (mode->hdisplay > fixed_mode->hdisplay)
151 return MODE_PANEL;
152 if (mode->vdisplay > fixed_mode->vdisplay)
153 return MODE_PANEL;
154 }
155
156 return MODE_OK;
157}
158
Chris Wilson49be6632010-07-18 12:05:54 +0100159static void
160centre_horizontally(struct drm_display_mode *mode,
161 int width)
162{
163 u32 border, sync_pos, blank_width, sync_width;
164
165 /* keep the hsync and hblank widths constant */
166 sync_width = mode->crtc_hsync_end - mode->crtc_hsync_start;
167 blank_width = mode->crtc_hblank_end - mode->crtc_hblank_start;
168 sync_pos = (blank_width - sync_width + 1) / 2;
169
170 border = (mode->hdisplay - width + 1) / 2;
171 border += border & 1; /* make the border even */
172
173 mode->crtc_hdisplay = width;
174 mode->crtc_hblank_start = width + border;
175 mode->crtc_hblank_end = mode->crtc_hblank_start + blank_width;
176
177 mode->crtc_hsync_start = mode->crtc_hblank_start + sync_pos;
178 mode->crtc_hsync_end = mode->crtc_hsync_start + sync_width;
179}
180
181static void
182centre_vertically(struct drm_display_mode *mode,
183 int height)
184{
185 u32 border, sync_pos, blank_width, sync_width;
186
187 /* keep the vsync and vblank widths constant */
188 sync_width = mode->crtc_vsync_end - mode->crtc_vsync_start;
189 blank_width = mode->crtc_vblank_end - mode->crtc_vblank_start;
190 sync_pos = (blank_width - sync_width + 1) / 2;
191
192 border = (mode->vdisplay - height + 1) / 2;
193
194 mode->crtc_vdisplay = height;
195 mode->crtc_vblank_start = height + border;
196 mode->crtc_vblank_end = mode->crtc_vblank_start + blank_width;
197
198 mode->crtc_vsync_start = mode->crtc_vblank_start + sync_pos;
199 mode->crtc_vsync_end = mode->crtc_vsync_start + sync_width;
200}
201
202static inline u32 panel_fitter_scaling(u32 source, u32 target)
203{
204 /*
205 * Floating point operation is not supported. So the FACTOR
206 * is defined, which can avoid the floating point computation
207 * when calculating the panel ratio.
208 */
209#define ACCURACY 12
210#define FACTOR (1 << ACCURACY)
211 u32 ratio = source * FACTOR / target;
212 return (FACTOR * ratio + FACTOR/2) / FACTOR;
213}
214
Jesse Barnes79e53942008-11-07 14:24:08 -0800215static bool intel_lvds_mode_fixup(struct drm_encoder *encoder,
216 struct drm_display_mode *mode,
217 struct drm_display_mode *adjusted_mode)
218{
219 struct drm_device *dev = encoder->dev;
220 struct drm_i915_private *dev_priv = dev->dev_private;
221 struct intel_crtc *intel_crtc = to_intel_crtc(encoder->crtc);
222 struct drm_encoder *tmp_encoder;
Eric Anholt21d40d32010-03-25 11:11:14 -0700223 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
224 struct intel_lvds_priv *lvds_priv = intel_encoder->dev_priv;
Chris Wilson49be6632010-07-18 12:05:54 +0100225 u32 pfit_control = 0, pfit_pgm_ratios = 0, border = 0;
Jesse Barnes79e53942008-11-07 14:24:08 -0800226
227 /* Should never happen!! */
228 if (!IS_I965G(dev) && intel_crtc->pipe == 0) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700229 DRM_ERROR("Can't support LVDS on pipe A\n");
Jesse Barnes79e53942008-11-07 14:24:08 -0800230 return false;
231 }
232
233 /* Should never happen!! */
234 list_for_each_entry(tmp_encoder, &dev->mode_config.encoder_list, head) {
235 if (tmp_encoder != encoder && tmp_encoder->crtc == encoder->crtc) {
Keith Packard1ae8c0a2009-06-28 15:42:17 -0700236 DRM_ERROR("Can't enable LVDS and another "
Jesse Barnes79e53942008-11-07 14:24:08 -0800237 "encoder on the same pipe\n");
238 return false;
239 }
240 }
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800241 /* If we don't have a panel mode, there is nothing we can do */
242 if (dev_priv->panel_fixed_mode == NULL)
243 return true;
Jesse Barnes79e53942008-11-07 14:24:08 -0800244 /*
Chris Wilson71677042010-07-17 13:38:43 +0100245 * We have timings from the BIOS for the panel, put them in
Jesse Barnes79e53942008-11-07 14:24:08 -0800246 * to the adjusted mode. The CRTC will be set up for this mode,
247 * with the panel scaling set up to source from the H/VDisplay
248 * of the original mode.
249 */
Chris Wilson71677042010-07-17 13:38:43 +0100250 adjusted_mode->hdisplay = dev_priv->panel_fixed_mode->hdisplay;
251 adjusted_mode->hsync_start =
252 dev_priv->panel_fixed_mode->hsync_start;
253 adjusted_mode->hsync_end =
254 dev_priv->panel_fixed_mode->hsync_end;
255 adjusted_mode->htotal = dev_priv->panel_fixed_mode->htotal;
256 adjusted_mode->vdisplay = dev_priv->panel_fixed_mode->vdisplay;
257 adjusted_mode->vsync_start =
258 dev_priv->panel_fixed_mode->vsync_start;
259 adjusted_mode->vsync_end =
260 dev_priv->panel_fixed_mode->vsync_end;
261 adjusted_mode->vtotal = dev_priv->panel_fixed_mode->vtotal;
262 adjusted_mode->clock = dev_priv->panel_fixed_mode->clock;
263 drm_mode_set_crtcinfo(adjusted_mode, CRTC_INTERLACE_HALVE_V);
Jesse Barnes79e53942008-11-07 14:24:08 -0800264
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800265 /* Make sure pre-965s set dither correctly */
266 if (!IS_I965G(dev)) {
267 if (dev_priv->panel_wants_dither || dev_priv->lvds_dither)
268 pfit_control |= PANEL_8TO6_DITHER_ENABLE;
269 }
270
271 /* Native modes don't need fitting */
272 if (adjusted_mode->hdisplay == mode->hdisplay &&
Chris Wilson49be6632010-07-18 12:05:54 +0100273 adjusted_mode->vdisplay == mode->vdisplay)
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800274 goto out;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800275
Zhenyu Wang8dd81a32009-09-19 14:54:09 +0800276 /* full screen scale for now */
Eric Anholtc619eed2010-01-28 16:45:52 -0800277 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang8dd81a32009-09-19 14:54:09 +0800278 goto out;
279
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800280 /* 965+ wants fuzzy fitting */
281 if (IS_I965G(dev))
Chris Wilson49be6632010-07-18 12:05:54 +0100282 pfit_control |= ((intel_crtc->pipe << PFIT_PIPE_SHIFT) |
283 PFIT_FILTER_FUZZY);
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800284
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800285 /*
286 * Enable automatic panel scaling for non-native modes so that they fill
287 * the screen. Should be enabled before the pipe is enabled, according
288 * to register description and PRM.
289 * Change the value here to see the borders for debugging
290 */
Eric Anholtc619eed2010-01-28 16:45:52 -0800291 if (!HAS_PCH_SPLIT(dev)) {
Zhenyu Wang8dd81a32009-09-19 14:54:09 +0800292 I915_WRITE(BCLRPAT_A, 0);
293 I915_WRITE(BCLRPAT_B, 0);
294 }
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800295
296 switch (lvds_priv->fitting_mode) {
Jesse Barnes53bd8382009-07-01 10:04:40 -0700297 case DRM_MODE_SCALE_CENTER:
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800298 /*
299 * For centered modes, we have to calculate border widths &
300 * heights and modify the values programmed into the CRTC.
301 */
Chris Wilson49be6632010-07-18 12:05:54 +0100302 centre_horizontally(adjusted_mode, mode->hdisplay);
303 centre_vertically(adjusted_mode, mode->vdisplay);
304 border = LVDS_BORDER_ENABLE;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800305 break;
Chris Wilson49be6632010-07-18 12:05:54 +0100306
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800307 case DRM_MODE_SCALE_ASPECT:
Chris Wilson49be6632010-07-18 12:05:54 +0100308 /* Scale but preserve the aspect ratio */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800309 if (IS_I965G(dev)) {
Chris Wilson49be6632010-07-18 12:05:54 +0100310 u32 scaled_width = adjusted_mode->hdisplay * mode->vdisplay;
311 u32 scaled_height = mode->hdisplay * adjusted_mode->vdisplay;
312
313 pfit_control |= PFIT_ENABLE;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800314 /* 965+ is easy, it does everything in hw */
Chris Wilson49be6632010-07-18 12:05:54 +0100315 if (scaled_width > scaled_height)
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800316 pfit_control |= PFIT_SCALING_PILLAR;
Chris Wilson49be6632010-07-18 12:05:54 +0100317 else if (scaled_width < scaled_height)
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800318 pfit_control |= PFIT_SCALING_LETTER;
319 else
320 pfit_control |= PFIT_SCALING_AUTO;
321 } else {
Chris Wilson49be6632010-07-18 12:05:54 +0100322 u32 scaled_width = adjusted_mode->hdisplay * mode->vdisplay;
323 u32 scaled_height = mode->hdisplay * adjusted_mode->vdisplay;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800324 /*
325 * For earlier chips we have to calculate the scaling
326 * ratio by hand and program it into the
327 * PFIT_PGM_RATIO register
328 */
Chris Wilson49be6632010-07-18 12:05:54 +0100329 if (scaled_width > scaled_height) { /* pillar */
330 centre_horizontally(adjusted_mode, scaled_height / mode->vdisplay);
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800331
Chris Wilson49be6632010-07-18 12:05:54 +0100332 border = LVDS_BORDER_ENABLE;
333 if (mode->vdisplay != adjusted_mode->vdisplay) {
334 u32 bits = panel_fitter_scaling(mode->vdisplay, adjusted_mode->vdisplay);
335 pfit_pgm_ratios |= (bits << PFIT_HORIZ_SCALE_SHIFT |
336 bits << PFIT_VERT_SCALE_SHIFT);
337 pfit_control |= (PFIT_ENABLE |
338 VERT_INTERP_BILINEAR |
339 HORIZ_INTERP_BILINEAR);
340 }
341 } else if (scaled_width < scaled_height) { /* letter */
342 centre_vertically(adjusted_mode, scaled_width / mode->hdisplay);
343
344 border = LVDS_BORDER_ENABLE;
345 if (mode->hdisplay != adjusted_mode->hdisplay) {
346 u32 bits = panel_fitter_scaling(mode->hdisplay, adjusted_mode->hdisplay);
347 pfit_pgm_ratios |= (bits << PFIT_HORIZ_SCALE_SHIFT |
348 bits << PFIT_VERT_SCALE_SHIFT);
349 pfit_control |= (PFIT_ENABLE |
350 VERT_INTERP_BILINEAR |
351 HORIZ_INTERP_BILINEAR);
352 }
353 } else
354 /* Aspects match, Let hw scale both directions */
355 pfit_control |= (PFIT_ENABLE |
356 VERT_AUTO_SCALE | HORIZ_AUTO_SCALE |
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800357 VERT_INTERP_BILINEAR |
358 HORIZ_INTERP_BILINEAR);
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800359 }
360 break;
361
362 case DRM_MODE_SCALE_FULLSCREEN:
363 /*
364 * Full scaling, even if it changes the aspect ratio.
365 * Fortunately this is all done for us in hw.
366 */
367 pfit_control |= PFIT_ENABLE;
368 if (IS_I965G(dev))
369 pfit_control |= PFIT_SCALING_AUTO;
370 else
371 pfit_control |= (VERT_AUTO_SCALE | HORIZ_AUTO_SCALE |
372 VERT_INTERP_BILINEAR |
373 HORIZ_INTERP_BILINEAR);
374 break;
Chris Wilson49be6632010-07-18 12:05:54 +0100375
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800376 default:
377 break;
378 }
379
380out:
381 lvds_priv->pfit_control = pfit_control;
382 lvds_priv->pfit_pgm_ratios = pfit_pgm_ratios;
Chris Wilson49be6632010-07-18 12:05:54 +0100383 dev_priv->lvds_border_bits = border;
384
Zhao Yakuia3e17eb2009-10-10 10:42:37 +0800385 /*
Jesse Barnes79e53942008-11-07 14:24:08 -0800386 * XXX: It would be nice to support lower refresh rates on the
387 * panels to reduce power consumption, and perhaps match the
388 * user's requested refresh rate.
389 */
390
391 return true;
392}
393
394static void intel_lvds_prepare(struct drm_encoder *encoder)
395{
396 struct drm_device *dev = encoder->dev;
397 struct drm_i915_private *dev_priv = dev->dev_private;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800398 u32 reg;
Jesse Barnes79e53942008-11-07 14:24:08 -0800399
Eric Anholtc619eed2010-01-28 16:45:52 -0800400 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +0800401 reg = BLC_PWM_CPU_CTL;
402 else
403 reg = BLC_PWM_CTL;
404
405 dev_priv->saveBLC_PWM_CTL = I915_READ(reg);
Jesse Barnes79e53942008-11-07 14:24:08 -0800406 dev_priv->backlight_duty_cycle = (dev_priv->saveBLC_PWM_CTL &
407 BACKLIGHT_DUTY_CYCLE_MASK);
408
409 intel_lvds_set_power(dev, false);
410}
411
412static void intel_lvds_commit( struct drm_encoder *encoder)
413{
414 struct drm_device *dev = encoder->dev;
415 struct drm_i915_private *dev_priv = dev->dev_private;
416
417 if (dev_priv->backlight_duty_cycle == 0)
418 dev_priv->backlight_duty_cycle =
419 intel_lvds_get_max_backlight(dev);
420
421 intel_lvds_set_power(dev, true);
422}
423
424static void intel_lvds_mode_set(struct drm_encoder *encoder,
425 struct drm_display_mode *mode,
426 struct drm_display_mode *adjusted_mode)
427{
428 struct drm_device *dev = encoder->dev;
429 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt21d40d32010-03-25 11:11:14 -0700430 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
431 struct intel_lvds_priv *lvds_priv = intel_encoder->dev_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -0800432
433 /*
434 * The LVDS pin pair will already have been turned on in the
435 * intel_crtc_mode_set since it has a large impact on the DPLL
436 * settings.
437 */
438
Eric Anholtc619eed2010-01-28 16:45:52 -0800439 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +0800440 return;
441
Jesse Barnes79e53942008-11-07 14:24:08 -0800442 /*
443 * Enable automatic panel scaling so that non-native modes fill the
444 * screen. Should be enabled before the pipe is enabled, according to
445 * register description and PRM.
446 */
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800447 I915_WRITE(PFIT_PGM_RATIOS, lvds_priv->pfit_pgm_ratios);
448 I915_WRITE(PFIT_CONTROL, lvds_priv->pfit_control);
Jesse Barnes79e53942008-11-07 14:24:08 -0800449}
450
451/**
452 * Detect the LVDS connection.
453 *
Jesse Barnesb42d4c52009-09-10 15:28:04 -0700454 * Since LVDS doesn't have hotlug, we use the lid as a proxy. Open means
455 * connected and closed means disconnected. We also send hotplug events as
456 * needed, using lid status notification from the input layer.
Jesse Barnes79e53942008-11-07 14:24:08 -0800457 */
458static enum drm_connector_status intel_lvds_detect(struct drm_connector *connector)
459{
Jesse Barnes7b9c5ab2010-02-12 09:30:00 -0800460 struct drm_device *dev = connector->dev;
Jesse Barnesb42d4c52009-09-10 15:28:04 -0700461 enum drm_connector_status status = connector_status_connected;
462
Jesse Barnes7b9c5ab2010-02-12 09:30:00 -0800463 /* ACPI lid methods were generally unreliable in this generation, so
464 * don't even bother.
465 */
Eric Anholt6e6c8222010-03-17 13:48:06 -0700466 if (IS_GEN2(dev) || IS_GEN3(dev))
Jesse Barnes7b9c5ab2010-02-12 09:30:00 -0800467 return connector_status_connected;
468
Jesse Barnesb42d4c52009-09-10 15:28:04 -0700469 return status;
Jesse Barnes79e53942008-11-07 14:24:08 -0800470}
471
472/**
473 * Return the list of DDC modes if available, or the BIOS fixed mode otherwise.
474 */
475static int intel_lvds_get_modes(struct drm_connector *connector)
476{
477 struct drm_device *dev = connector->dev;
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800478 struct drm_encoder *encoder = intel_attached_encoder(connector);
479 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -0800480 struct drm_i915_private *dev_priv = dev->dev_private;
481 int ret = 0;
482
Zhao Yakuibfac4d62010-04-07 17:11:22 +0800483 if (dev_priv->lvds_edid_good) {
Zhenyu Wang335af9a2010-03-30 14:39:31 +0800484 ret = intel_ddc_get_modes(connector, intel_encoder->ddc_bus);
Jesse Barnes79e53942008-11-07 14:24:08 -0800485
Zhao Yakuibfac4d62010-04-07 17:11:22 +0800486 if (ret)
487 return ret;
488 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800489
490 /* Didn't get an EDID, so
491 * Set wide sync ranges so we get all modes
492 * handed to valid_mode for checking
493 */
494 connector->display_info.min_vfreq = 0;
495 connector->display_info.max_vfreq = 200;
496 connector->display_info.min_hfreq = 0;
497 connector->display_info.max_hfreq = 200;
498
499 if (dev_priv->panel_fixed_mode != NULL) {
500 struct drm_display_mode *mode;
501
Jesse Barnes79e53942008-11-07 14:24:08 -0800502 mode = drm_mode_duplicate(dev, dev_priv->panel_fixed_mode);
503 drm_mode_probed_add(connector, mode);
Jesse Barnes79e53942008-11-07 14:24:08 -0800504
505 return 1;
506 }
507
508 return 0;
509}
510
Thomas Bächler0544edf2010-07-02 10:44:23 +0200511static int intel_no_modeset_on_lid_dmi_callback(const struct dmi_system_id *id)
512{
513 DRM_DEBUG_KMS("Skipping forced modeset for %s\n", id->ident);
514 return 1;
515}
516
517/* The GPU hangs up on these systems if modeset is performed on LID open */
518static const struct dmi_system_id intel_no_modeset_on_lid[] = {
519 {
520 .callback = intel_no_modeset_on_lid_dmi_callback,
521 .ident = "Toshiba Tecra A11",
522 .matches = {
523 DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
524 DMI_MATCH(DMI_PRODUCT_NAME, "TECRA A11"),
525 },
526 },
527
528 { } /* terminating entry */
529};
530
Linus Torvaldsc9354c82009-11-02 09:29:55 -0800531/*
532 * Lid events. Note the use of 'modeset_on_lid':
533 * - we set it on lid close, and reset it on open
534 * - we use it as a "only once" bit (ie we ignore
535 * duplicate events where it was already properly
536 * set/reset)
537 * - the suspend/resume paths will also set it to
538 * zero, since they restore the mode ("lid open").
539 */
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700540static int intel_lid_notify(struct notifier_block *nb, unsigned long val,
541 void *unused)
542{
543 struct drm_i915_private *dev_priv =
544 container_of(nb, struct drm_i915_private, lid_notifier);
545 struct drm_device *dev = dev_priv->dev;
Zhao Yakuia2565372009-12-11 09:26:11 +0800546 struct drm_connector *connector = dev_priv->int_lvds_connector;
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700547
Zhao Yakuia2565372009-12-11 09:26:11 +0800548 /*
549 * check and update the status of LVDS connector after receiving
550 * the LID nofication event.
551 */
552 if (connector)
553 connector->status = connector->funcs->detect(connector);
Thomas Bächler0544edf2010-07-02 10:44:23 +0200554 /* Don't force modeset on machines where it causes a GPU lockup */
555 if (dmi_check_system(intel_no_modeset_on_lid))
556 return NOTIFY_OK;
Linus Torvaldsc9354c82009-11-02 09:29:55 -0800557 if (!acpi_lid_open()) {
558 dev_priv->modeset_on_lid = 1;
559 return NOTIFY_OK;
Jesse Barnes06891e22009-09-14 10:58:48 -0700560 }
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700561
Linus Torvaldsc9354c82009-11-02 09:29:55 -0800562 if (!dev_priv->modeset_on_lid)
563 return NOTIFY_OK;
564
565 dev_priv->modeset_on_lid = 0;
566
567 mutex_lock(&dev->mode_config.mutex);
568 drm_helper_resume_force_mode(dev);
569 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnes06324192009-09-10 15:28:05 -0700570
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700571 return NOTIFY_OK;
572}
573
Jesse Barnes79e53942008-11-07 14:24:08 -0800574/**
575 * intel_lvds_destroy - unregister and free LVDS structures
576 * @connector: connector to free
577 *
578 * Unregister the DDC bus for this connector then free the driver private
579 * structure.
580 */
581static void intel_lvds_destroy(struct drm_connector *connector)
582{
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700583 struct drm_device *dev = connector->dev;
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700584 struct drm_i915_private *dev_priv = dev->dev_private;
Jesse Barnes79e53942008-11-07 14:24:08 -0800585
Jesse Barnesc1c7af62009-09-10 15:28:03 -0700586 if (dev_priv->lid_notifier.notifier_call)
587 acpi_lid_notifier_unregister(&dev_priv->lid_notifier);
Jesse Barnes79e53942008-11-07 14:24:08 -0800588 drm_sysfs_connector_remove(connector);
589 drm_connector_cleanup(connector);
590 kfree(connector);
591}
592
Jesse Barnes335041e2009-01-22 22:22:06 +1000593static int intel_lvds_set_property(struct drm_connector *connector,
594 struct drm_property *property,
595 uint64_t value)
596{
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800597 struct drm_device *dev = connector->dev;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800598
599 if (property == dev->mode_config.scaling_mode_property &&
600 connector->encoder) {
601 struct drm_crtc *crtc = connector->encoder->crtc;
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800602 struct drm_encoder *encoder = connector->encoder;
603 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
Eric Anholt21d40d32010-03-25 11:11:14 -0700604 struct intel_lvds_priv *lvds_priv = intel_encoder->dev_priv;
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800605
Jesse Barnes53bd8382009-07-01 10:04:40 -0700606 if (value == DRM_MODE_SCALE_NONE) {
607 DRM_DEBUG_KMS("no scaling not supported\n");
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800608 return 0;
609 }
610 if (lvds_priv->fitting_mode == value) {
611 /* the LVDS scaling property is not changed */
612 return 0;
613 }
614 lvds_priv->fitting_mode = value;
615 if (crtc && crtc->enabled) {
616 /*
617 * If the CRTC is enabled, the display will be changed
618 * according to the new panel fitting mode.
619 */
620 drm_crtc_helper_set_mode(crtc, &crtc->mode,
621 crtc->x, crtc->y, crtc->fb);
622 }
623 }
624
Jesse Barnes335041e2009-01-22 22:22:06 +1000625 return 0;
626}
627
Jesse Barnes79e53942008-11-07 14:24:08 -0800628static const struct drm_encoder_helper_funcs intel_lvds_helper_funcs = {
629 .dpms = intel_lvds_dpms,
630 .mode_fixup = intel_lvds_mode_fixup,
631 .prepare = intel_lvds_prepare,
632 .mode_set = intel_lvds_mode_set,
633 .commit = intel_lvds_commit,
634};
635
636static const struct drm_connector_helper_funcs intel_lvds_connector_helper_funcs = {
637 .get_modes = intel_lvds_get_modes,
638 .mode_valid = intel_lvds_mode_valid,
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800639 .best_encoder = intel_attached_encoder,
Jesse Barnes79e53942008-11-07 14:24:08 -0800640};
641
642static const struct drm_connector_funcs intel_lvds_connector_funcs = {
Keith Packardc9fb15f2009-05-30 20:42:28 -0700643 .dpms = drm_helper_connector_dpms,
Jesse Barnes79e53942008-11-07 14:24:08 -0800644 .detect = intel_lvds_detect,
645 .fill_modes = drm_helper_probe_single_connector_modes,
Jesse Barnes335041e2009-01-22 22:22:06 +1000646 .set_property = intel_lvds_set_property,
Jesse Barnes79e53942008-11-07 14:24:08 -0800647 .destroy = intel_lvds_destroy,
648};
649
650
651static void intel_lvds_enc_destroy(struct drm_encoder *encoder)
652{
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800653 struct intel_encoder *intel_encoder = enc_to_intel_encoder(encoder);
654
655 if (intel_encoder->ddc_bus)
656 intel_i2c_destroy(intel_encoder->ddc_bus);
Jesse Barnes79e53942008-11-07 14:24:08 -0800657 drm_encoder_cleanup(encoder);
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800658 kfree(intel_encoder);
Jesse Barnes79e53942008-11-07 14:24:08 -0800659}
660
661static const struct drm_encoder_funcs intel_lvds_enc_funcs = {
662 .destroy = intel_lvds_enc_destroy,
663};
664
Jarod Wilson425d2442009-05-05 10:00:25 -0400665static int __init intel_no_lvds_dmi_callback(const struct dmi_system_id *id)
666{
Zhao Yakui8a4c47f2009-07-20 13:48:04 +0800667 DRM_DEBUG_KMS("Skipping LVDS initialization for %s\n", id->ident);
Jarod Wilson425d2442009-05-05 10:00:25 -0400668 return 1;
669}
Jesse Barnes79e53942008-11-07 14:24:08 -0800670
Jarod Wilson425d2442009-05-05 10:00:25 -0400671/* These systems claim to have LVDS, but really don't */
Jaswinder Singh Rajput93c05f22009-06-04 09:41:19 +1000672static const struct dmi_system_id intel_no_lvds[] = {
Jarod Wilson425d2442009-05-05 10:00:25 -0400673 {
674 .callback = intel_no_lvds_dmi_callback,
675 .ident = "Apple Mac Mini (Core series)",
676 .matches = {
Keith Packard98acd462009-06-14 12:31:58 -0700677 DMI_MATCH(DMI_SYS_VENDOR, "Apple"),
Jarod Wilson425d2442009-05-05 10:00:25 -0400678 DMI_MATCH(DMI_PRODUCT_NAME, "Macmini1,1"),
679 },
680 },
681 {
682 .callback = intel_no_lvds_dmi_callback,
683 .ident = "Apple Mac Mini (Core 2 series)",
684 .matches = {
Keith Packard98acd462009-06-14 12:31:58 -0700685 DMI_MATCH(DMI_SYS_VENDOR, "Apple"),
Jarod Wilson425d2442009-05-05 10:00:25 -0400686 DMI_MATCH(DMI_PRODUCT_NAME, "Macmini2,1"),
687 },
688 },
689 {
690 .callback = intel_no_lvds_dmi_callback,
691 .ident = "MSI IM-945GSE-A",
692 .matches = {
693 DMI_MATCH(DMI_SYS_VENDOR, "MSI"),
694 DMI_MATCH(DMI_PRODUCT_NAME, "A9830IMS"),
695 },
696 },
697 {
698 .callback = intel_no_lvds_dmi_callback,
699 .ident = "Dell Studio Hybrid",
700 .matches = {
701 DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."),
702 DMI_MATCH(DMI_PRODUCT_NAME, "Studio Hybrid 140g"),
703 },
704 },
Jarod Wilson70aa96c2009-05-27 17:20:39 -0400705 {
706 .callback = intel_no_lvds_dmi_callback,
707 .ident = "AOpen Mini PC",
708 .matches = {
709 DMI_MATCH(DMI_SYS_VENDOR, "AOpen"),
710 DMI_MATCH(DMI_PRODUCT_NAME, "i965GMx-IF"),
711 },
712 },
Michael Cousinfa0864b2009-06-05 21:16:22 +0200713 {
714 .callback = intel_no_lvds_dmi_callback,
Tormod Voldened8c7542009-07-13 22:26:48 +0200715 .ident = "AOpen Mini PC MP915",
716 .matches = {
717 DMI_MATCH(DMI_BOARD_VENDOR, "AOpen"),
718 DMI_MATCH(DMI_BOARD_NAME, "i915GMx-F"),
719 },
720 },
721 {
722 .callback = intel_no_lvds_dmi_callback,
Michael Cousinfa0864b2009-06-05 21:16:22 +0200723 .ident = "Aopen i945GTt-VFA",
724 .matches = {
725 DMI_MATCH(DMI_PRODUCT_VERSION, "AO00001JW"),
726 },
727 },
Stefan Bader9875557ee82010-03-29 17:53:12 +0200728 {
729 .callback = intel_no_lvds_dmi_callback,
730 .ident = "Clientron U800",
731 .matches = {
732 DMI_MATCH(DMI_SYS_VENDOR, "Clientron"),
733 DMI_MATCH(DMI_PRODUCT_NAME, "U800"),
734 },
735 },
Jarod Wilson425d2442009-05-05 10:00:25 -0400736
737 { } /* terminating entry */
738};
Jesse Barnes79e53942008-11-07 14:24:08 -0800739
740/**
Zhao Yakui18f9ed12009-11-20 03:24:16 +0000741 * intel_find_lvds_downclock - find the reduced downclock for LVDS in EDID
742 * @dev: drm device
743 * @connector: LVDS connector
744 *
745 * Find the reduced downclock for LVDS in EDID.
746 */
747static void intel_find_lvds_downclock(struct drm_device *dev,
748 struct drm_connector *connector)
749{
750 struct drm_i915_private *dev_priv = dev->dev_private;
751 struct drm_display_mode *scan, *panel_fixed_mode;
752 int temp_downclock;
753
754 panel_fixed_mode = dev_priv->panel_fixed_mode;
755 temp_downclock = panel_fixed_mode->clock;
756
757 mutex_lock(&dev->mode_config.mutex);
758 list_for_each_entry(scan, &connector->probed_modes, head) {
759 /*
760 * If one mode has the same resolution with the fixed_panel
761 * mode while they have the different refresh rate, it means
762 * that the reduced downclock is found for the LVDS. In such
763 * case we can set the different FPx0/1 to dynamically select
764 * between low and high frequency.
765 */
766 if (scan->hdisplay == panel_fixed_mode->hdisplay &&
767 scan->hsync_start == panel_fixed_mode->hsync_start &&
768 scan->hsync_end == panel_fixed_mode->hsync_end &&
769 scan->htotal == panel_fixed_mode->htotal &&
770 scan->vdisplay == panel_fixed_mode->vdisplay &&
771 scan->vsync_start == panel_fixed_mode->vsync_start &&
772 scan->vsync_end == panel_fixed_mode->vsync_end &&
773 scan->vtotal == panel_fixed_mode->vtotal) {
774 if (scan->clock < temp_downclock) {
775 /*
776 * The downclock is already found. But we
777 * expect to find the lower downclock.
778 */
779 temp_downclock = scan->clock;
780 }
781 }
782 }
783 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnes33814342010-01-14 20:48:02 +0000784 if (temp_downclock < panel_fixed_mode->clock &&
785 i915_lvds_downclock) {
Zhao Yakui18f9ed12009-11-20 03:24:16 +0000786 /* We found the downclock for LVDS. */
787 dev_priv->lvds_downclock_avail = 1;
788 dev_priv->lvds_downclock = temp_downclock;
789 DRM_DEBUG_KMS("LVDS downclock is found in EDID. "
790 "Normal clock %dKhz, downclock %dKhz\n",
791 panel_fixed_mode->clock, temp_downclock);
792 }
793 return;
794}
795
Zhao Yakui7cf4f692009-11-24 09:48:47 +0800796/*
797 * Enumerate the child dev array parsed from VBT to check whether
798 * the LVDS is present.
799 * If it is present, return 1.
800 * If it is not present, return false.
801 * If no child dev is parsed from VBT, it assumes that the LVDS is present.
802 * Note: The addin_offset should also be checked for LVDS panel.
803 * Only when it is non-zero, it is assumed that it is present.
804 */
Zhao Yakui6e365952009-12-02 10:03:34 +0800805static int lvds_is_present_in_vbt(struct drm_device *dev)
Zhao Yakui7cf4f692009-11-24 09:48:47 +0800806{
807 struct drm_i915_private *dev_priv = dev->dev_private;
808 struct child_device_config *p_child;
809 int i, ret;
810
811 if (!dev_priv->child_dev_num)
812 return 1;
813
814 ret = 0;
815 for (i = 0; i < dev_priv->child_dev_num; i++) {
816 p_child = dev_priv->child_dev + i;
817 /*
818 * If the device type is not LFP, continue.
819 * If the device type is 0x22, it is also regarded as LFP.
820 */
821 if (p_child->device_type != DEVICE_TYPE_INT_LFP &&
822 p_child->device_type != DEVICE_TYPE_LFP)
823 continue;
824
825 /* The addin_offset should be checked. Only when it is
826 * non-zero, it is regarded as present.
827 */
828 if (p_child->addin_offset) {
829 ret = 1;
830 break;
831 }
832 }
833 return ret;
834}
835
Zhao Yakui18f9ed12009-11-20 03:24:16 +0000836/**
Jesse Barnes79e53942008-11-07 14:24:08 -0800837 * intel_lvds_init - setup LVDS connectors on this device
838 * @dev: drm device
839 *
840 * Create the connector, register the LVDS DDC bus, and try to figure out what
841 * modes we can display on the LVDS panel (if present).
842 */
843void intel_lvds_init(struct drm_device *dev)
844{
845 struct drm_i915_private *dev_priv = dev->dev_private;
Eric Anholt21d40d32010-03-25 11:11:14 -0700846 struct intel_encoder *intel_encoder;
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800847 struct intel_connector *intel_connector;
Jesse Barnes79e53942008-11-07 14:24:08 -0800848 struct drm_connector *connector;
849 struct drm_encoder *encoder;
850 struct drm_display_mode *scan; /* *modes, *bios_mode; */
851 struct drm_crtc *crtc;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800852 struct intel_lvds_priv *lvds_priv;
Jesse Barnes79e53942008-11-07 14:24:08 -0800853 u32 lvds;
Zhenyu Wang541998a2009-06-05 15:38:44 +0800854 int pipe, gpio = GPIOC;
Jesse Barnes79e53942008-11-07 14:24:08 -0800855
Jarod Wilson425d2442009-05-05 10:00:25 -0400856 /* Skip init on machines we know falsely report LVDS */
857 if (dmi_check_system(intel_no_lvds))
Paul Collins565dcd42009-02-04 23:05:41 +1300858 return;
Paul Collins565dcd42009-02-04 23:05:41 +1300859
Matthew Garrett11ba1592009-12-15 13:55:24 -0500860 if (!lvds_is_present_in_vbt(dev)) {
861 DRM_DEBUG_KMS("LVDS is not present in VBT\n");
Zhao Yakuie99da352009-06-26 09:46:18 +0800862 return;
Zhao Yakui7cf4f692009-11-24 09:48:47 +0800863 }
Zhao Yakuie99da352009-06-26 09:46:18 +0800864
Eric Anholtc619eed2010-01-28 16:45:52 -0800865 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +0800866 if ((I915_READ(PCH_LVDS) & LVDS_DETECTED) == 0)
867 return;
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800868 if (dev_priv->edp_support) {
Zhao Yakui28c97732009-10-09 11:39:41 +0800869 DRM_DEBUG_KMS("disable LVDS for eDP support\n");
Zhenyu Wang32f9d652009-07-24 01:00:32 +0800870 return;
871 }
Zhenyu Wang541998a2009-06-05 15:38:44 +0800872 gpio = PCH_GPIOC;
873 }
874
Eric Anholt21d40d32010-03-25 11:11:14 -0700875 intel_encoder = kzalloc(sizeof(struct intel_encoder) +
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800876 sizeof(struct intel_lvds_priv), GFP_KERNEL);
Eric Anholt21d40d32010-03-25 11:11:14 -0700877 if (!intel_encoder) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800878 return;
879 }
880
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800881 intel_connector = kzalloc(sizeof(struct intel_connector), GFP_KERNEL);
882 if (!intel_connector) {
883 kfree(intel_encoder);
884 return;
885 }
886
887 connector = &intel_connector->base;
Eric Anholt21d40d32010-03-25 11:11:14 -0700888 encoder = &intel_encoder->enc;
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800889 drm_connector_init(dev, &intel_connector->base, &intel_lvds_connector_funcs,
Jesse Barnes79e53942008-11-07 14:24:08 -0800890 DRM_MODE_CONNECTOR_LVDS);
891
Eric Anholt21d40d32010-03-25 11:11:14 -0700892 drm_encoder_init(dev, &intel_encoder->enc, &intel_lvds_enc_funcs,
Jesse Barnes79e53942008-11-07 14:24:08 -0800893 DRM_MODE_ENCODER_LVDS);
894
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800895 drm_mode_connector_attach_encoder(&intel_connector->base, &intel_encoder->enc);
Eric Anholt21d40d32010-03-25 11:11:14 -0700896 intel_encoder->type = INTEL_OUTPUT_LVDS;
Jesse Barnes79e53942008-11-07 14:24:08 -0800897
Eric Anholt21d40d32010-03-25 11:11:14 -0700898 intel_encoder->clone_mask = (1 << INTEL_LVDS_CLONE_BIT);
899 intel_encoder->crtc_mask = (1 << 1);
Adam Jackson0f3ee802010-03-31 11:41:51 -0400900 if (IS_I965G(dev))
901 intel_encoder->crtc_mask |= (1 << 0);
Jesse Barnes79e53942008-11-07 14:24:08 -0800902 drm_encoder_helper_add(encoder, &intel_lvds_helper_funcs);
903 drm_connector_helper_add(connector, &intel_lvds_connector_helper_funcs);
904 connector->display_info.subpixel_order = SubPixelHorizontalRGB;
905 connector->interlace_allowed = false;
906 connector->doublescan_allowed = false;
907
Eric Anholt21d40d32010-03-25 11:11:14 -0700908 lvds_priv = (struct intel_lvds_priv *)(intel_encoder + 1);
909 intel_encoder->dev_priv = lvds_priv;
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800910 /* create the scaling mode property */
911 drm_mode_create_scaling_mode_property(dev);
912 /*
913 * the initial panel fitting mode will be FULL_SCREEN.
914 */
Jesse Barnes79e53942008-11-07 14:24:08 -0800915
Zhenyu Wangbb8a3562010-03-29 16:40:50 +0800916 drm_connector_attach_property(&intel_connector->base,
Zhao Yakui3fbe18d2009-06-22 15:31:25 +0800917 dev->mode_config.scaling_mode_property,
Jesse Barnesdd1ea372010-06-24 11:05:10 -0700918 DRM_MODE_SCALE_ASPECT);
919 lvds_priv->fitting_mode = DRM_MODE_SCALE_ASPECT;
Jesse Barnes79e53942008-11-07 14:24:08 -0800920 /*
921 * LVDS discovery:
922 * 1) check for EDID on DDC
923 * 2) check for VBT data
924 * 3) check to see if LVDS is already on
925 * if none of the above, no panel
926 * 4) make sure lid is open
927 * if closed, act like it's not there for now
928 */
929
930 /* Set up the DDC bus. */
Eric Anholt21d40d32010-03-25 11:11:14 -0700931 intel_encoder->ddc_bus = intel_i2c_create(dev, gpio, "LVDSDDC_C");
932 if (!intel_encoder->ddc_bus) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800933 dev_printk(KERN_ERR, &dev->pdev->dev, "DDC bus registration "
934 "failed.\n");
935 goto failed;
936 }
937
938 /*
939 * Attempt to get the fixed panel mode from DDC. Assume that the
940 * preferred mode is the right one.
941 */
Zhao Yakuibfac4d62010-04-07 17:11:22 +0800942 dev_priv->lvds_edid_good = true;
943
Zhenyu Wang335af9a2010-03-30 14:39:31 +0800944 if (!intel_ddc_get_modes(connector, intel_encoder->ddc_bus))
Zhao Yakuibfac4d62010-04-07 17:11:22 +0800945 dev_priv->lvds_edid_good = false;
Jesse Barnes79e53942008-11-07 14:24:08 -0800946
947 list_for_each_entry(scan, &connector->probed_modes, head) {
948 mutex_lock(&dev->mode_config.mutex);
949 if (scan->type & DRM_MODE_TYPE_PREFERRED) {
950 dev_priv->panel_fixed_mode =
951 drm_mode_duplicate(dev, scan);
952 mutex_unlock(&dev->mode_config.mutex);
Zhao Yakui18f9ed12009-11-20 03:24:16 +0000953 intel_find_lvds_downclock(dev, connector);
Paul Collins565dcd42009-02-04 23:05:41 +1300954 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -0800955 }
956 mutex_unlock(&dev->mode_config.mutex);
957 }
958
959 /* Failed to get EDID, what about VBT? */
Ma Ling88631702009-05-13 11:19:55 +0800960 if (dev_priv->lfp_lvds_vbt_mode) {
Jesse Barnes79e53942008-11-07 14:24:08 -0800961 mutex_lock(&dev->mode_config.mutex);
962 dev_priv->panel_fixed_mode =
Ma Ling88631702009-05-13 11:19:55 +0800963 drm_mode_duplicate(dev, dev_priv->lfp_lvds_vbt_mode);
Jesse Barnes79e53942008-11-07 14:24:08 -0800964 mutex_unlock(&dev->mode_config.mutex);
Jesse Barnese285f3cd2009-01-14 10:53:36 -0800965 if (dev_priv->panel_fixed_mode) {
966 dev_priv->panel_fixed_mode->type |=
967 DRM_MODE_TYPE_PREFERRED;
Jesse Barnese285f3cd2009-01-14 10:53:36 -0800968 goto out;
969 }
Jesse Barnes79e53942008-11-07 14:24:08 -0800970 }
971
972 /*
973 * If we didn't get EDID, try checking if the panel is already turned
974 * on. If so, assume that whatever is currently programmed is the
975 * correct mode.
976 */
Zhenyu Wang541998a2009-06-05 15:38:44 +0800977
Adam Jacksonf2b115e2009-12-03 17:14:42 -0500978 /* Ironlake: FIXME if still fail, not try pipe mode now */
Eric Anholtc619eed2010-01-28 16:45:52 -0800979 if (HAS_PCH_SPLIT(dev))
Zhenyu Wang541998a2009-06-05 15:38:44 +0800980 goto failed;
981
Jesse Barnes79e53942008-11-07 14:24:08 -0800982 lvds = I915_READ(LVDS);
983 pipe = (lvds & LVDS_PIPEB_SELECT) ? 1 : 0;
984 crtc = intel_get_crtc_from_pipe(dev, pipe);
985
986 if (crtc && (lvds & LVDS_PORT_EN)) {
987 dev_priv->panel_fixed_mode = intel_crtc_mode_get(dev, crtc);
988 if (dev_priv->panel_fixed_mode) {
989 dev_priv->panel_fixed_mode->type |=
990 DRM_MODE_TYPE_PREFERRED;
Paul Collins565dcd42009-02-04 23:05:41 +1300991 goto out;
Jesse Barnes79e53942008-11-07 14:24:08 -0800992 }
993 }
994
995 /* If we still don't have a mode after all that, give up. */
996 if (!dev_priv->panel_fixed_mode)
997 goto failed;
998
Jesse Barnes79e53942008-11-07 14:24:08 -0800999out:
Eric Anholtc619eed2010-01-28 16:45:52 -08001000 if (HAS_PCH_SPLIT(dev)) {
Zhenyu Wang541998a2009-06-05 15:38:44 +08001001 u32 pwm;
1002 /* make sure PWM is enabled */
1003 pwm = I915_READ(BLC_PWM_CPU_CTL2);
1004 pwm |= (PWM_ENABLE | PWM_PIPE_B);
1005 I915_WRITE(BLC_PWM_CPU_CTL2, pwm);
1006
1007 pwm = I915_READ(BLC_PWM_PCH_CTL1);
1008 pwm |= PWM_PCH_ENABLE;
1009 I915_WRITE(BLC_PWM_PCH_CTL1, pwm);
1010 }
Jesse Barnesc1c7af62009-09-10 15:28:03 -07001011 dev_priv->lid_notifier.notifier_call = intel_lid_notify;
1012 if (acpi_lid_notifier_register(&dev_priv->lid_notifier)) {
Zhao Yakui28c97732009-10-09 11:39:41 +08001013 DRM_DEBUG_KMS("lid notifier registration failed\n");
Jesse Barnesc1c7af62009-09-10 15:28:03 -07001014 dev_priv->lid_notifier.notifier_call = NULL;
1015 }
Zhao Yakuia2565372009-12-11 09:26:11 +08001016 /* keep the LVDS connector */
1017 dev_priv->int_lvds_connector = connector;
Jesse Barnes79e53942008-11-07 14:24:08 -08001018 drm_sysfs_connector_add(connector);
1019 return;
1020
1021failed:
Zhao Yakui8a4c47f2009-07-20 13:48:04 +08001022 DRM_DEBUG_KMS("No LVDS modes found, disabling.\n");
Eric Anholt21d40d32010-03-25 11:11:14 -07001023 if (intel_encoder->ddc_bus)
1024 intel_i2c_destroy(intel_encoder->ddc_bus);
Jesse Barnes79e53942008-11-07 14:24:08 -08001025 drm_connector_cleanup(connector);
Shaohua Li1991bdf2009-11-17 17:19:23 +08001026 drm_encoder_cleanup(encoder);
Eric Anholt21d40d32010-03-25 11:11:14 -07001027 kfree(intel_encoder);
Zhenyu Wangbb8a3562010-03-29 16:40:50 +08001028 kfree(intel_connector);
Jesse Barnes79e53942008-11-07 14:24:08 -08001029}