2 * Copyright © 2006-2007 Intel Corporation
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
18 * Eric Anholt <eric@anholt.net>
19 * Dave Airlie <airlied@linux.ie>
20 * Jesse Barnes <jesse.barnes@intel.com>
23 #include <linux/i2c.h>
26 #include "intel_bios.h"
28 #include "psb_intel_drv.h"
29 #include "psb_intel_reg.h"
31 #include <linux/pm_runtime.h>
34 * LVDS I2C backlight control macros
36 #define BRIGHTNESS_MAX_LEVEL 100
37 #define BRIGHTNESS_MASK 0xFF
38 #define BLC_I2C_TYPE 0x01
39 #define BLC_PWM_TYPT 0x02
41 #define BLC_POLARITY_NORMAL 0
42 #define BLC_POLARITY_INVERSE 1
44 #define PSB_BLC_MAX_PWM_REG_FREQ (0xFFFE)
45 #define PSB_BLC_MIN_PWM_REG_FREQ (0x2)
46 #define PSB_BLC_PWM_PRECISION_FACTOR (10)
47 #define PSB_BACKLIGHT_PWM_CTL_SHIFT (16)
48 #define PSB_BACKLIGHT_PWM_POLARITY_BIT_CLEAR (0xFFFE)
50 struct psb_intel_lvds_priv
{
52 * Saved LVDO output states
57 uint32_t savePP_CONTROL
;
58 uint32_t savePP_CYCLE
;
59 uint32_t savePFIT_CONTROL
;
60 uint32_t savePFIT_PGM_RATIOS
;
61 uint32_t saveBLC_PWM_CTL
;
63 struct psb_intel_i2c_chan
*i2c_bus
;
64 struct psb_intel_i2c_chan
*ddc_bus
;
69 * Returns the maximum level of the backlight duty cycle field.
71 static u32
psb_intel_lvds_get_max_backlight(struct drm_device
*dev
)
73 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
76 if (gma_power_begin(dev
, false)) {
77 ret
= REG_READ(BLC_PWM_CTL
);
79 } else /* Powered off, use the saved value */
80 ret
= dev_priv
->regs
.saveBLC_PWM_CTL
;
82 /* Top 15bits hold the frequency mask */
83 ret
= (ret
& BACKLIGHT_MODULATION_FREQ_MASK
) >>
84 BACKLIGHT_MODULATION_FREQ_SHIFT
;
86 ret
*= 2; /* Return a 16bit range as needed for setting */
88 dev_err(dev
->dev
, "BL bug: Reg %08x save %08X\n",
89 REG_READ(BLC_PWM_CTL
), dev_priv
->regs
.saveBLC_PWM_CTL
);
94 * Set LVDS backlight level by I2C command
96 * FIXME: at some point we need to both track this for PM and also
97 * disable runtime pm on MRST if the brightness is nil (ie blanked)
99 static int psb_lvds_i2c_set_brightness(struct drm_device
*dev
,
102 struct drm_psb_private
*dev_priv
=
103 (struct drm_psb_private
*)dev
->dev_private
;
105 struct psb_intel_i2c_chan
*lvds_i2c_bus
= dev_priv
->lvds_i2c_bus
;
107 unsigned int blc_i2c_brightness
;
109 struct i2c_msg msgs
[] = {
111 .addr
= lvds_i2c_bus
->slave_addr
,
118 blc_i2c_brightness
= BRIGHTNESS_MASK
& ((unsigned int)level
*
120 BRIGHTNESS_MAX_LEVEL
);
122 if (dev_priv
->lvds_bl
->pol
== BLC_POLARITY_INVERSE
)
123 blc_i2c_brightness
= BRIGHTNESS_MASK
- blc_i2c_brightness
;
125 out_buf
[0] = dev_priv
->lvds_bl
->brightnesscmd
;
126 out_buf
[1] = (u8
)blc_i2c_brightness
;
128 if (i2c_transfer(&lvds_i2c_bus
->adapter
, msgs
, 1) == 1) {
129 dev_dbg(dev
->dev
, "I2C set brightness.(command, value) (%d, %d)\n",
130 dev_priv
->lvds_bl
->brightnesscmd
,
135 dev_err(dev
->dev
, "I2C transfer error\n");
140 static int psb_lvds_pwm_set_brightness(struct drm_device
*dev
, int level
)
142 struct drm_psb_private
*dev_priv
=
143 (struct drm_psb_private
*)dev
->dev_private
;
146 u32 blc_pwm_duty_cycle
;
148 max_pwm_blc
= psb_intel_lvds_get_max_backlight(dev
);
150 /*BLC_PWM_CTL Should be initiated while backlight device init*/
151 BUG_ON(max_pwm_blc
== 0);
153 blc_pwm_duty_cycle
= level
* max_pwm_blc
/ BRIGHTNESS_MAX_LEVEL
;
155 if (dev_priv
->lvds_bl
->pol
== BLC_POLARITY_INVERSE
)
156 blc_pwm_duty_cycle
= max_pwm_blc
- blc_pwm_duty_cycle
;
158 blc_pwm_duty_cycle
&= PSB_BACKLIGHT_PWM_POLARITY_BIT_CLEAR
;
159 REG_WRITE(BLC_PWM_CTL
,
160 (max_pwm_blc
<< PSB_BACKLIGHT_PWM_CTL_SHIFT
) |
161 (blc_pwm_duty_cycle
));
163 dev_info(dev
->dev
, "Backlight lvds set brightness %08x\n",
164 (max_pwm_blc
<< PSB_BACKLIGHT_PWM_CTL_SHIFT
) |
165 (blc_pwm_duty_cycle
));
171 * Set LVDS backlight level either by I2C or PWM
173 void psb_intel_lvds_set_brightness(struct drm_device
*dev
, int level
)
175 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
177 dev_dbg(dev
->dev
, "backlight level is %d\n", level
);
179 if (!dev_priv
->lvds_bl
) {
180 dev_err(dev
->dev
, "NO LVDS backlight info\n");
184 if (dev_priv
->lvds_bl
->type
== BLC_I2C_TYPE
)
185 psb_lvds_i2c_set_brightness(dev
, level
);
187 psb_lvds_pwm_set_brightness(dev
, level
);
191 * Sets the backlight level.
193 * level: backlight level, from 0 to psb_intel_lvds_get_max_backlight().
195 static void psb_intel_lvds_set_backlight(struct drm_device
*dev
, int level
)
197 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
200 if (gma_power_begin(dev
, false)) {
201 blc_pwm_ctl
= REG_READ(BLC_PWM_CTL
);
202 blc_pwm_ctl
&= ~BACKLIGHT_DUTY_CYCLE_MASK
;
203 REG_WRITE(BLC_PWM_CTL
,
205 (level
<< BACKLIGHT_DUTY_CYCLE_SHIFT
)));
206 dev_priv
->regs
.saveBLC_PWM_CTL
= (blc_pwm_ctl
|
207 (level
<< BACKLIGHT_DUTY_CYCLE_SHIFT
));
210 blc_pwm_ctl
= dev_priv
->regs
.saveBLC_PWM_CTL
&
211 ~BACKLIGHT_DUTY_CYCLE_MASK
;
212 dev_priv
->regs
.saveBLC_PWM_CTL
= (blc_pwm_ctl
|
213 (level
<< BACKLIGHT_DUTY_CYCLE_SHIFT
));
218 * Sets the power state for the panel.
220 static void psb_intel_lvds_set_power(struct drm_device
*dev
, bool on
)
222 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
223 struct psb_intel_mode_device
*mode_dev
= &dev_priv
->mode_dev
;
226 if (!gma_power_begin(dev
, true)) {
227 dev_err(dev
->dev
, "set power, chip off!\n");
232 REG_WRITE(PP_CONTROL
, REG_READ(PP_CONTROL
) |
235 pp_status
= REG_READ(PP_STATUS
);
236 } while ((pp_status
& PP_ON
) == 0);
238 psb_intel_lvds_set_backlight(dev
,
239 mode_dev
->backlight_duty_cycle
);
241 psb_intel_lvds_set_backlight(dev
, 0);
243 REG_WRITE(PP_CONTROL
, REG_READ(PP_CONTROL
) &
246 pp_status
= REG_READ(PP_STATUS
);
247 } while (pp_status
& PP_ON
);
253 static void psb_intel_lvds_encoder_dpms(struct drm_encoder
*encoder
, int mode
)
255 struct drm_device
*dev
= encoder
->dev
;
257 if (mode
== DRM_MODE_DPMS_ON
)
258 psb_intel_lvds_set_power(dev
, true);
260 psb_intel_lvds_set_power(dev
, false);
262 /* XXX: We never power down the LVDS pairs. */
265 static void psb_intel_lvds_save(struct drm_connector
*connector
)
267 struct drm_device
*dev
= connector
->dev
;
268 struct drm_psb_private
*dev_priv
=
269 (struct drm_psb_private
*)dev
->dev_private
;
270 struct gma_encoder
*gma_encoder
= gma_attached_encoder(connector
);
271 struct psb_intel_lvds_priv
*lvds_priv
=
272 (struct psb_intel_lvds_priv
*)gma_encoder
->dev_priv
;
274 lvds_priv
->savePP_ON
= REG_READ(LVDSPP_ON
);
275 lvds_priv
->savePP_OFF
= REG_READ(LVDSPP_OFF
);
276 lvds_priv
->saveLVDS
= REG_READ(LVDS
);
277 lvds_priv
->savePP_CONTROL
= REG_READ(PP_CONTROL
);
278 lvds_priv
->savePP_CYCLE
= REG_READ(PP_CYCLE
);
279 /*lvds_priv->savePP_DIVISOR = REG_READ(PP_DIVISOR);*/
280 lvds_priv
->saveBLC_PWM_CTL
= REG_READ(BLC_PWM_CTL
);
281 lvds_priv
->savePFIT_CONTROL
= REG_READ(PFIT_CONTROL
);
282 lvds_priv
->savePFIT_PGM_RATIOS
= REG_READ(PFIT_PGM_RATIOS
);
284 /*TODO: move backlight_duty_cycle to psb_intel_lvds_priv*/
285 dev_priv
->backlight_duty_cycle
= (dev_priv
->regs
.saveBLC_PWM_CTL
&
286 BACKLIGHT_DUTY_CYCLE_MASK
);
289 * If the light is off at server startup,
290 * just make it full brightness
292 if (dev_priv
->backlight_duty_cycle
== 0)
293 dev_priv
->backlight_duty_cycle
=
294 psb_intel_lvds_get_max_backlight(dev
);
296 dev_dbg(dev
->dev
, "(0x%x, 0x%x, 0x%x, 0x%x, 0x%x, 0x%x)\n",
297 lvds_priv
->savePP_ON
,
298 lvds_priv
->savePP_OFF
,
300 lvds_priv
->savePP_CONTROL
,
301 lvds_priv
->savePP_CYCLE
,
302 lvds_priv
->saveBLC_PWM_CTL
);
305 static void psb_intel_lvds_restore(struct drm_connector
*connector
)
307 struct drm_device
*dev
= connector
->dev
;
309 struct gma_encoder
*gma_encoder
= gma_attached_encoder(connector
);
310 struct psb_intel_lvds_priv
*lvds_priv
=
311 (struct psb_intel_lvds_priv
*)gma_encoder
->dev_priv
;
313 dev_dbg(dev
->dev
, "(0x%x, 0x%x, 0x%x, 0x%x, 0x%x, 0x%x)\n",
314 lvds_priv
->savePP_ON
,
315 lvds_priv
->savePP_OFF
,
317 lvds_priv
->savePP_CONTROL
,
318 lvds_priv
->savePP_CYCLE
,
319 lvds_priv
->saveBLC_PWM_CTL
);
321 REG_WRITE(BLC_PWM_CTL
, lvds_priv
->saveBLC_PWM_CTL
);
322 REG_WRITE(PFIT_CONTROL
, lvds_priv
->savePFIT_CONTROL
);
323 REG_WRITE(PFIT_PGM_RATIOS
, lvds_priv
->savePFIT_PGM_RATIOS
);
324 REG_WRITE(LVDSPP_ON
, lvds_priv
->savePP_ON
);
325 REG_WRITE(LVDSPP_OFF
, lvds_priv
->savePP_OFF
);
326 /*REG_WRITE(PP_DIVISOR, lvds_priv->savePP_DIVISOR);*/
327 REG_WRITE(PP_CYCLE
, lvds_priv
->savePP_CYCLE
);
328 REG_WRITE(PP_CONTROL
, lvds_priv
->savePP_CONTROL
);
329 REG_WRITE(LVDS
, lvds_priv
->saveLVDS
);
331 if (lvds_priv
->savePP_CONTROL
& POWER_TARGET_ON
) {
332 REG_WRITE(PP_CONTROL
, REG_READ(PP_CONTROL
) |
335 pp_status
= REG_READ(PP_STATUS
);
336 } while ((pp_status
& PP_ON
) == 0);
338 REG_WRITE(PP_CONTROL
, REG_READ(PP_CONTROL
) &
341 pp_status
= REG_READ(PP_STATUS
);
342 } while (pp_status
& PP_ON
);
346 int psb_intel_lvds_mode_valid(struct drm_connector
*connector
,
347 struct drm_display_mode
*mode
)
349 struct drm_psb_private
*dev_priv
= connector
->dev
->dev_private
;
350 struct gma_encoder
*gma_encoder
= gma_attached_encoder(connector
);
351 struct drm_display_mode
*fixed_mode
=
352 dev_priv
->mode_dev
.panel_fixed_mode
;
354 if (gma_encoder
->type
== INTEL_OUTPUT_MIPI2
)
355 fixed_mode
= dev_priv
->mode_dev
.panel_fixed_mode2
;
358 if (mode
->flags
& DRM_MODE_FLAG_DBLSCAN
)
359 return MODE_NO_DBLESCAN
;
362 if (mode
->flags
& DRM_MODE_FLAG_INTERLACE
)
363 return MODE_NO_INTERLACE
;
366 if (mode
->hdisplay
> fixed_mode
->hdisplay
)
368 if (mode
->vdisplay
> fixed_mode
->vdisplay
)
374 bool psb_intel_lvds_mode_fixup(struct drm_encoder
*encoder
,
375 const struct drm_display_mode
*mode
,
376 struct drm_display_mode
*adjusted_mode
)
378 struct drm_device
*dev
= encoder
->dev
;
379 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
380 struct psb_intel_mode_device
*mode_dev
= &dev_priv
->mode_dev
;
381 struct gma_crtc
*gma_crtc
= to_gma_crtc(encoder
->crtc
);
382 struct drm_encoder
*tmp_encoder
;
383 struct drm_display_mode
*panel_fixed_mode
= mode_dev
->panel_fixed_mode
;
384 struct gma_encoder
*gma_encoder
= to_gma_encoder(encoder
);
386 if (gma_encoder
->type
== INTEL_OUTPUT_MIPI2
)
387 panel_fixed_mode
= mode_dev
->panel_fixed_mode2
;
389 /* PSB requires the LVDS is on pipe B, MRST has only one pipe anyway */
390 if (!IS_MRST(dev
) && gma_crtc
->pipe
== 0) {
391 printk(KERN_ERR
"Can't support LVDS on pipe A\n");
394 if (IS_MRST(dev
) && gma_crtc
->pipe
!= 0) {
395 printk(KERN_ERR
"Must use PIPE A\n");
398 /* Should never happen!! */
399 list_for_each_entry(tmp_encoder
, &dev
->mode_config
.encoder_list
,
401 if (tmp_encoder
!= encoder
402 && tmp_encoder
->crtc
== encoder
->crtc
) {
403 printk(KERN_ERR
"Can't enable LVDS and another "
404 "encoder on the same pipe\n");
410 * If we have timings from the BIOS for the panel, put them in
411 * to the adjusted mode. The CRTC will be set up for this mode,
412 * with the panel scaling set up to source from the H/VDisplay
413 * of the original mode.
415 if (panel_fixed_mode
!= NULL
) {
416 adjusted_mode
->hdisplay
= panel_fixed_mode
->hdisplay
;
417 adjusted_mode
->hsync_start
= panel_fixed_mode
->hsync_start
;
418 adjusted_mode
->hsync_end
= panel_fixed_mode
->hsync_end
;
419 adjusted_mode
->htotal
= panel_fixed_mode
->htotal
;
420 adjusted_mode
->vdisplay
= panel_fixed_mode
->vdisplay
;
421 adjusted_mode
->vsync_start
= panel_fixed_mode
->vsync_start
;
422 adjusted_mode
->vsync_end
= panel_fixed_mode
->vsync_end
;
423 adjusted_mode
->vtotal
= panel_fixed_mode
->vtotal
;
424 adjusted_mode
->clock
= panel_fixed_mode
->clock
;
425 drm_mode_set_crtcinfo(adjusted_mode
,
426 CRTC_INTERLACE_HALVE_V
);
430 * XXX: It would be nice to support lower refresh rates on the
431 * panels to reduce power consumption, and perhaps match the
432 * user's requested refresh rate.
438 static void psb_intel_lvds_prepare(struct drm_encoder
*encoder
)
440 struct drm_device
*dev
= encoder
->dev
;
441 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
442 struct psb_intel_mode_device
*mode_dev
= &dev_priv
->mode_dev
;
444 if (!gma_power_begin(dev
, true))
447 mode_dev
->saveBLC_PWM_CTL
= REG_READ(BLC_PWM_CTL
);
448 mode_dev
->backlight_duty_cycle
= (mode_dev
->saveBLC_PWM_CTL
&
449 BACKLIGHT_DUTY_CYCLE_MASK
);
451 psb_intel_lvds_set_power(dev
, false);
456 static void psb_intel_lvds_commit(struct drm_encoder
*encoder
)
458 struct drm_device
*dev
= encoder
->dev
;
459 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
460 struct psb_intel_mode_device
*mode_dev
= &dev_priv
->mode_dev
;
462 if (mode_dev
->backlight_duty_cycle
== 0)
463 mode_dev
->backlight_duty_cycle
=
464 psb_intel_lvds_get_max_backlight(dev
);
466 psb_intel_lvds_set_power(dev
, true);
469 static void psb_intel_lvds_mode_set(struct drm_encoder
*encoder
,
470 struct drm_display_mode
*mode
,
471 struct drm_display_mode
*adjusted_mode
)
473 struct drm_device
*dev
= encoder
->dev
;
474 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
478 * The LVDS pin pair will already have been turned on in the
479 * psb_intel_crtc_mode_set since it has a large impact on the DPLL
484 * Enable automatic panel scaling so that non-native modes fill the
485 * screen. Should be enabled before the pipe is enabled, according to
486 * register description and PRM.
488 if (mode
->hdisplay
!= adjusted_mode
->hdisplay
||
489 mode
->vdisplay
!= adjusted_mode
->vdisplay
)
490 pfit_control
= (PFIT_ENABLE
| VERT_AUTO_SCALE
|
491 HORIZ_AUTO_SCALE
| VERT_INTERP_BILINEAR
|
492 HORIZ_INTERP_BILINEAR
);
496 if (dev_priv
->lvds_dither
)
497 pfit_control
|= PANEL_8TO6_DITHER_ENABLE
;
499 REG_WRITE(PFIT_CONTROL
, pfit_control
);
503 * Detect the LVDS connection.
505 * This always returns CONNECTOR_STATUS_CONNECTED.
506 * This connector should only have
507 * been set up if the LVDS was actually connected anyway.
509 static enum drm_connector_status
psb_intel_lvds_detect(struct drm_connector
510 *connector
, bool force
)
512 return connector_status_connected
;
516 * Return the list of DDC modes if available, or the BIOS fixed mode otherwise.
518 static int psb_intel_lvds_get_modes(struct drm_connector
*connector
)
520 struct drm_device
*dev
= connector
->dev
;
521 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
522 struct psb_intel_mode_device
*mode_dev
= &dev_priv
->mode_dev
;
523 struct gma_encoder
*gma_encoder
= gma_attached_encoder(connector
);
524 struct psb_intel_lvds_priv
*lvds_priv
= gma_encoder
->dev_priv
;
528 ret
= psb_intel_ddc_get_modes(connector
, &lvds_priv
->i2c_bus
->adapter
);
533 /* Didn't get an EDID, so
534 * Set wide sync ranges so we get all modes
535 * handed to valid_mode for checking
537 connector
->display_info
.min_vfreq
= 0;
538 connector
->display_info
.max_vfreq
= 200;
539 connector
->display_info
.min_hfreq
= 0;
540 connector
->display_info
.max_hfreq
= 200;
542 if (mode_dev
->panel_fixed_mode
!= NULL
) {
543 struct drm_display_mode
*mode
=
544 drm_mode_duplicate(dev
, mode_dev
->panel_fixed_mode
);
545 drm_mode_probed_add(connector
, mode
);
553 * psb_intel_lvds_destroy - unregister and free LVDS structures
554 * @connector: connector to free
556 * Unregister the DDC bus for this connector then free the driver private
559 void psb_intel_lvds_destroy(struct drm_connector
*connector
)
561 struct gma_encoder
*gma_encoder
= gma_attached_encoder(connector
);
562 struct psb_intel_lvds_priv
*lvds_priv
= gma_encoder
->dev_priv
;
564 if (lvds_priv
->ddc_bus
)
565 psb_intel_i2c_destroy(lvds_priv
->ddc_bus
);
566 drm_sysfs_connector_remove(connector
);
567 drm_connector_cleanup(connector
);
571 int psb_intel_lvds_set_property(struct drm_connector
*connector
,
572 struct drm_property
*property
,
575 struct drm_encoder
*encoder
= connector
->encoder
;
580 if (!strcmp(property
->name
, "scaling mode")) {
581 struct gma_crtc
*crtc
= to_gma_crtc(encoder
->crtc
);
588 case DRM_MODE_SCALE_FULLSCREEN
:
590 case DRM_MODE_SCALE_NO_SCALE
:
592 case DRM_MODE_SCALE_ASPECT
:
598 if (drm_object_property_get_value(&connector
->base
,
606 if (drm_object_property_set_value(&connector
->base
,
611 if (crtc
->saved_mode
.hdisplay
!= 0 &&
612 crtc
->saved_mode
.vdisplay
!= 0) {
613 if (!drm_crtc_helper_set_mode(encoder
->crtc
,
620 } else if (!strcmp(property
->name
, "backlight")) {
621 if (drm_object_property_set_value(&connector
->base
,
626 gma_backlight_set(encoder
->dev
, value
);
627 } else if (!strcmp(property
->name
, "DPMS")) {
628 struct drm_encoder_helper_funcs
*hfuncs
629 = encoder
->helper_private
;
630 hfuncs
->dpms(encoder
, value
);
639 static const struct drm_encoder_helper_funcs psb_intel_lvds_helper_funcs
= {
640 .dpms
= psb_intel_lvds_encoder_dpms
,
641 .mode_fixup
= psb_intel_lvds_mode_fixup
,
642 .prepare
= psb_intel_lvds_prepare
,
643 .mode_set
= psb_intel_lvds_mode_set
,
644 .commit
= psb_intel_lvds_commit
,
647 const struct drm_connector_helper_funcs
648 psb_intel_lvds_connector_helper_funcs
= {
649 .get_modes
= psb_intel_lvds_get_modes
,
650 .mode_valid
= psb_intel_lvds_mode_valid
,
651 .best_encoder
= gma_best_encoder
,
654 const struct drm_connector_funcs psb_intel_lvds_connector_funcs
= {
655 .dpms
= drm_helper_connector_dpms
,
656 .save
= psb_intel_lvds_save
,
657 .restore
= psb_intel_lvds_restore
,
658 .detect
= psb_intel_lvds_detect
,
659 .fill_modes
= drm_helper_probe_single_connector_modes
,
660 .set_property
= psb_intel_lvds_set_property
,
661 .destroy
= psb_intel_lvds_destroy
,
665 static void psb_intel_lvds_enc_destroy(struct drm_encoder
*encoder
)
667 drm_encoder_cleanup(encoder
);
670 const struct drm_encoder_funcs psb_intel_lvds_enc_funcs
= {
671 .destroy
= psb_intel_lvds_enc_destroy
,
677 * psb_intel_lvds_init - setup LVDS connectors on this device
680 * Create the connector, register the LVDS DDC bus, and try to figure out what
681 * modes we can display on the LVDS panel (if present).
683 void psb_intel_lvds_init(struct drm_device
*dev
,
684 struct psb_intel_mode_device
*mode_dev
)
686 struct gma_encoder
*gma_encoder
;
687 struct gma_connector
*gma_connector
;
688 struct psb_intel_lvds_priv
*lvds_priv
;
689 struct drm_connector
*connector
;
690 struct drm_encoder
*encoder
;
691 struct drm_display_mode
*scan
; /* *modes, *bios_mode; */
692 struct drm_crtc
*crtc
;
693 struct drm_psb_private
*dev_priv
= dev
->dev_private
;
697 gma_encoder
= kzalloc(sizeof(struct gma_encoder
), GFP_KERNEL
);
699 dev_err(dev
->dev
, "gma_encoder allocation error\n");
703 gma_connector
= kzalloc(sizeof(struct gma_connector
), GFP_KERNEL
);
704 if (!gma_connector
) {
705 dev_err(dev
->dev
, "gma_connector allocation error\n");
709 lvds_priv
= kzalloc(sizeof(struct psb_intel_lvds_priv
), GFP_KERNEL
);
711 dev_err(dev
->dev
, "LVDS private allocation error\n");
712 goto failed_connector
;
715 gma_encoder
->dev_priv
= lvds_priv
;
717 connector
= &gma_connector
->base
;
718 encoder
= &gma_encoder
->base
;
719 drm_connector_init(dev
, connector
,
720 &psb_intel_lvds_connector_funcs
,
721 DRM_MODE_CONNECTOR_LVDS
);
723 drm_encoder_init(dev
, encoder
,
724 &psb_intel_lvds_enc_funcs
,
725 DRM_MODE_ENCODER_LVDS
);
727 gma_connector_attach_encoder(gma_connector
, gma_encoder
);
728 gma_encoder
->type
= INTEL_OUTPUT_LVDS
;
730 drm_encoder_helper_add(encoder
, &psb_intel_lvds_helper_funcs
);
731 drm_connector_helper_add(connector
,
732 &psb_intel_lvds_connector_helper_funcs
);
733 connector
->display_info
.subpixel_order
= SubPixelHorizontalRGB
;
734 connector
->interlace_allowed
= false;
735 connector
->doublescan_allowed
= false;
737 /*Attach connector properties*/
738 drm_object_attach_property(&connector
->base
,
739 dev
->mode_config
.scaling_mode_property
,
740 DRM_MODE_SCALE_FULLSCREEN
);
741 drm_object_attach_property(&connector
->base
,
742 dev_priv
->backlight_property
,
743 BRIGHTNESS_MAX_LEVEL
);
747 * FIXME: distroy i2c_bus when exit
749 lvds_priv
->i2c_bus
= psb_intel_i2c_create(dev
, GPIOB
, "LVDSBLC_B");
750 if (!lvds_priv
->i2c_bus
) {
752 &dev
->pdev
->dev
, "I2C bus registration failed.\n");
755 lvds_priv
->i2c_bus
->slave_addr
= 0x2C;
756 dev_priv
->lvds_i2c_bus
= lvds_priv
->i2c_bus
;
760 * 1) check for EDID on DDC
761 * 2) check for VBT data
762 * 3) check to see if LVDS is already on
763 * if none of the above, no panel
764 * 4) make sure lid is open
765 * if closed, act like it's not there for now
768 /* Set up the DDC bus. */
769 lvds_priv
->ddc_bus
= psb_intel_i2c_create(dev
, GPIOC
, "LVDSDDC_C");
770 if (!lvds_priv
->ddc_bus
) {
771 dev_printk(KERN_ERR
, &dev
->pdev
->dev
,
772 "DDC bus registration " "failed.\n");
777 * Attempt to get the fixed panel mode from DDC. Assume that the
778 * preferred mode is the right one.
780 psb_intel_ddc_get_modes(connector
, &lvds_priv
->ddc_bus
->adapter
);
781 list_for_each_entry(scan
, &connector
->probed_modes
, head
) {
782 if (scan
->type
& DRM_MODE_TYPE_PREFERRED
) {
783 mode_dev
->panel_fixed_mode
=
784 drm_mode_duplicate(dev
, scan
);
785 goto out
; /* FIXME: check for quirks */
789 /* Failed to get EDID, what about VBT? do we need this? */
790 if (mode_dev
->vbt_mode
)
791 mode_dev
->panel_fixed_mode
=
792 drm_mode_duplicate(dev
, mode_dev
->vbt_mode
);
794 if (!mode_dev
->panel_fixed_mode
)
795 if (dev_priv
->lfp_lvds_vbt_mode
)
796 mode_dev
->panel_fixed_mode
=
797 drm_mode_duplicate(dev
,
798 dev_priv
->lfp_lvds_vbt_mode
);
801 * If we didn't get EDID, try checking if the panel is already turned
802 * on. If so, assume that whatever is currently programmed is the
805 lvds
= REG_READ(LVDS
);
806 pipe
= (lvds
& LVDS_PIPEB_SELECT
) ? 1 : 0;
807 crtc
= psb_intel_get_crtc_from_pipe(dev
, pipe
);
809 if (crtc
&& (lvds
& LVDS_PORT_EN
)) {
810 mode_dev
->panel_fixed_mode
=
811 psb_intel_crtc_mode_get(dev
, crtc
);
812 if (mode_dev
->panel_fixed_mode
) {
813 mode_dev
->panel_fixed_mode
->type
|=
814 DRM_MODE_TYPE_PREFERRED
;
815 goto out
; /* FIXME: check for quirks */
819 /* If we still don't have a mode after all that, give up. */
820 if (!mode_dev
->panel_fixed_mode
) {
821 dev_err(dev
->dev
, "Found no modes on the lvds, ignoring the LVDS\n");
826 * Blacklist machines with BIOSes that list an LVDS panel without
827 * actually having one.
830 drm_sysfs_connector_add(connector
);
834 if (lvds_priv
->ddc_bus
)
835 psb_intel_i2c_destroy(lvds_priv
->ddc_bus
);
837 if (lvds_priv
->i2c_bus
)
838 psb_intel_i2c_destroy(lvds_priv
->i2c_bus
);
840 drm_encoder_cleanup(encoder
);
841 drm_connector_cleanup(connector
);
843 kfree(gma_connector
);