Difference between revisions of "BackLight"

From ArmadeusWiki
Jump to: navigation, search
m (Installation)
(apf27 compatible now)
Line 34: Line 34:
 
All backlight controls are done through the ''/sys'' interface:
 
All backlight controls are done through the ''/sys'' interface:
 
<pre class="apf">
 
<pre class="apf">
  # ls /sys/class/backlight/imxl-bl/
+
  # ls /sys/class/backlight/imx-bl/
 
  actual_brightness  max_brightness    subsystem
 
  actual_brightness  max_brightness    subsystem
 
  brightness        power              uevent
 
  brightness        power              uevent
Line 41: Line 41:
 
* To see the actual brightness:
 
* To see the actual brightness:
 
<pre class="apf">
 
<pre class="apf">
  # cat /sys/class/backlight/imxl-bl/actual_brightness
+
  # cat /sys/class/backlight/imx-bl/actual_brightness
 
</pre>
 
</pre>
 
* To see the max allowed brightness:
 
* To see the max allowed brightness:
 
<pre class="apf">
 
<pre class="apf">
  # cat /sys/class/backlight/imxl-bl/max_brightness
+
  # cat /sys/class/backlight/imx-bl/max_brightness
 
</pre>
 
</pre>
 
* To change the brightness:
 
* To change the brightness:
 
<pre class="apf">
 
<pre class="apf">
  # echo 100 > /sys/class/backlight/imxl-bl/brightness
+
  # echo 100 > /sys/class/backlight/imx-bl/brightness
 
</pre>
 
</pre>
  

Revision as of 11:10, 6 February 2009

This page will explain you how to configure and use the Linux driver controlling the BackLight of your LCD

Introduction

Backlight control is done through the i.MXL/i.MX27 integrated backlight PWM (inside LCDC module). The output signal of this PWM is redirected to the CONTRAST pin of your LCD connector.

In short the driver is mainly exporting a /sys interface to user space, allowing you to change the Duty Cycle of the PWM output signal and so the backlight intensity of the LCD.

Installation

This driver is now installed by default on the standard Armadeus rootfs. So, following instructions are only given as reference.

 $ make linux26-menuconfig
    Device Drivers ---> 
        Graphics support  ---> 
            Backlight & LCD device support
                <M>   Lowlevel Backlight controls
            ...
        Armadeus specific drivers --->
            Support for specific Armadeus drivers
                <M> i.MX backlight driver
  • If built in kernel, reflash your kernel image; if selected as module either reflash your rootfs or copy backlight.ko, imx_bl.ko and .../lib/modules/2.6.18.1/modules.dep to your target (for more infos: Linux_drivers_generalities).

Usage

On your APF, load the module:

 # modprobe imx_bl
 i.MX Backlight driver v0.X initialized.

All backlight controls are done through the /sys interface:

 # ls /sys/class/backlight/imx-bl/
 actual_brightness  max_brightness     subsystem
 brightness         power              uevent
  • To see the actual brightness:
 # cat /sys/class/backlight/imx-bl/actual_brightness
  • To see the max allowed brightness:
 # cat /sys/class/backlight/imx-bl/max_brightness
  • To change the brightness:
 # echo 100 > /sys/class/backlight/imx-bl/brightness

There is a small test script in target/linux/modules/backlight/test/

Links