資料介紹

Table of Contents
ADP8870 Back-light LED Linux Driver
Supported Devices
Evaluation Boards
Description
Configuration
Software configurable features
Backlight:
- Ambient Light Sensor Support (ALS)
- Five programmable ambient light sensing zones for optimal backlight power savings
- PWM input can be used for Content Adaptive Brightness Control (CABC) of any, or all, of the LEDs (PWM input scales the LED output current)
- Configurable Fade On/Off times
- Configurable Fade Law functions
- Configurable ALS filter settings
- Configurable Brightness/Intensity in 128 steps
LED:
- Up to 7 LEDs configurable
- Configurable Fade On/Off times
- LED Blink On/Off times
- Configurable Fade Law functions
- Configurable Brightness/Intensity in 128 steps from [0..255]
Source Code
Status
Files
| Function | File |
|---|---|
| driver | drivers/video/backlight/adp8870_bl.c |
| include | include/linux/i2c/adp8870.h |
Instructions / Theory of operation
Backlight control
With the ADP8870 driver installed, you will find sysfs files in the
/sys/class/backlight/adp8870_bl/
directory. You will be able to query and set the current screen
brightness:
- brightness
- get/set screen brightness (an integer between 0 and 126)
writing 127 will enable the Ambient Light Sensor. - actual_brightness
- reading from this file will query the HW to get real brightness value.
- max_brightness
- the maximum brightness value.
- bl_power
- Current FB Power mode (0: full on, 1..3: power saving modes; 4: full off).
ADP8870 Specific Backlight controls
The ADP8870 features 5 individually programmable Ambient Light Sensing Zones:
- l1_daylight_dim
- Ambient Light Zone Daylight: Backlight DIM Intensity (an integer between 0 and 127, typically set to 0).
- l1_daylight_max
- Ambient Light Zone Daylight: Backlight Intensity (an integer between 0 and 127).
- l2_bright_dim
- Ambient Light Zone Bright: Backlight DIM Intensity (an integer between 0 and 127, typically set to 0)
- l2_bright_max
- Ambient Light Zone Bright: Backlight Intensity (an integer between 0 and 127)
- l3_office_dim
- Ambient Light Zone Office: Backlight DIM Intensity (an integer between 0 and 127, typically set to 0)
- l3_office_max
- Ambient Light Zone Office: Backlight Intensity (an integer between 0 and 127)
- l4_indoor_dim
- Ambient Light Zone Indoor: Backlight DIM Intensity (an integer between 0 and 127, typically set to 0)
- l4_indoor_max
- Ambient Light Zone Indoor: Backlight Intensity (an integer between 0 and 127)
- l5_dark_dim
- Ambient Light Zone Dark: Backlight DIM Intensity (an integer between 0 and 127, typically set to 0)
- l5_dark_max
- Ambient Light Zone Dark: Backlight Intensity (an integer between 0 and 127)
- ambient_light_level
- Get conversion value of the first light sensor. This value is updated every 80 ms
(when the light sensor is enabled). Returns integer between 0 (dark) and 8000 (max ambient brightness) - ambient_light_zone
- Get/Set current Ambient Light Zone. Reading returns integer between 1..5
(1 = Daylight, 2 = bright, …, 5 = dark). Writing a value between 1..5 forces the Backlight controller
to enter the corresponding Ambient Light Zone. Writing 0 returns to normal operation.
LED handling under Linux
LEDs not assigned to the Backlight are optionally exposed to the Linux LEDs Class.
The LED class allows control of LEDs from userspace.
LEDs appear in /sys/class/leds/. The brightness file will
set the brightness of the LED (taking a value 0-255).
The LEDS class also introduces the optional concept of an LED trigger. A trigger
is a kernel based source of led events, such as ide-disk or backlight control.
For more information read linux/Documentaion/leds-class.txt
- brightness
- get/set LED brightness (an integer between 0 and 255)
- max_brightness
- the maximum brightness value.
Example platform device initialization
For compile time configuration, it’s common Linux practice to keep board- and application-specific configuration out of the main driver file, instead putting it into the board support file.
For devices on custom boards, as typical of embedded and SoC-(system-on-chip) based hardware, Linux uses platform_data to point to board-specific structures describing devices and how they are connected to the SoC. This can include available ports, chip variants, preferred modes, default initialization, additional pin roles, and so on. This shrinks the board-support packages (BSPs) and minimizes board and application specific #ifdefs in drivers.
platform_data: Platform data specific to the ADP8870 device.
Includes what LEDs are available, feature selections and default initialization.
#include
Declaring I2C devices
Unlike PCI or USB devices, I2C devices are not enumerated at the hardware level. Instead, the software must know which devices are connected on each I2C bus segment, and what address these devices are using. For this reason, the kernel code must instantiate I2C devices explicitly. There are different ways to achieve this, depending on the context and requirements. However the most common method is to declare the I2C devices by bus number.
This method is appropriate when the I2C bus is a system bus, as in many embedded systems, wherein each I2C bus has a number which is known in advance. It is thus possible to pre-declare the I2C devices that inhabit this bus. This is done with an array of struct i2c_board_info, which is registered by calling i2c_register_board_info().
So, to enable such a driver one need only edit the board support file by adding an appropriate entry to i2c_board_info.
For more information see: Documentation/i2c/instantiating-devices
static struct i2c_board_info __initdata bfin_i2c_board_info[] = { #if defined(CONFIG_BACKLIGHT_ADP8870) || defined(CONFIG_BACKLIGHT_ADP8870_MODULE) { I2C_BOARD_INFO("adp8870", 0x2B), .platform_data = (void *)&adp8870_pdata, }, #endif }
Adding Linux driver support
Configure kernel with “make menuconfig” (alternatively use “make xconfig” or “make qconfig”)
The ADP8870 Backlight driver depends on I2C. It therefore requires selected I2C support to show up during kernel configuration.
Device Drivers ---> Graphics support ---> [*] Backlight & LCD device support ---> <*> Lowlevel Backlight controlsBacklight Driver for ADP8870 using WLED
Hardware configuration
There is no dedicated Blackfin STAMP evaluation board for the ADP8870. During test and driver development we used the ADP8870 Evaluation Mother/Daughter Board.
It can be easily wired to the Blackfin STAMP TWI/I2C header.
| BF537-STAMP (P10) TWI/I2C header | ADP886x Adaptor Board (J30) | |
|---|---|---|
| PIN | Function | PIN/Function |
| 5 | SCL | SCL |
| 6 | SDA | SDA |
| 20 | GND | GND |
Leave J31 and J32 open (these jumpers connect the SCL and SDA to the cypress chip used as USB bridge). Then apply your own SCL, SDA, and GND to the big J30 connector on the left edge of the board.
The ADP8870 chip still needs Vin (to power the chip), Vddio (to pull nRST and nINT high), and Vboard (to power the ALS sensor on the daughter card). These are provided through the USB port and then get regulated down (Vin becomes 3.6V, Vddio is 2.7V, and Vboard is around 4 V). So even though you won't be using the USB to program the part, it would still be easiest to plug the board into a USB port just to power Vin, Vddio, and Vboard. Of course, if you want, you can power these supplies from a lab bench power supply. In that case, move LK1, 2, and 3 to the “EXT” position and apply the signals to J29.
Driver testing
Driver compiled as a module
ADP8870 driver is build as a module
root:/> modprobe adp8870_bl adp8870_bl 0-002b: Rev.0 Backlight Registered led device: adp8870-led7 root:/>
Example Backlight usage
root:/> cd sys/class/backlight/adp8870_bl/ root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/backlight/adp8870_bl> ls -l -r--r--r-- 1 root root 4096 Jan 1 03:29 actual_brightness -r--r--r-- 1 root root 4096 Jan 1 03:29 ambient_light_level -rw-rw-r-- 1 root root 4096 Jan 1 03:29 ambient_light_zone -rw-r--r-- 1 root root 4096 Jan 1 03:31 bl_power -rw-r--r-- 1 root root 4096 Jan 1 04:55 brightness lrwxrwxrwx 1 root root 0 Jan 1 03:29 device -> ../../../0-002b -rw-rw-r-- 1 root root 4096 Jan 1 03:29 l1_daylight_dim -rw-rw-r-- 1 root root 4096 Jan 1 03:29 l1_daylight_max -rw-rw-r-- 1 root root 4096 Jan 1 03:30 l2_bright_dim -rw-rw-r-- 1 root root 4096 Jan 1 03:29 l2_bright_max -rw-rw-r-- 1 root root 4096 Jan 1 03:30 l3_office_dim -rw-rw-r-- 1 root root 4096 Jan 1 03:29 l3_office_max -rw-rw-r-- 1 root root 4096 Jan 1 03:31 l4_indoor_dim -rw-rw-r-- 1 root root 4096 Jan 1 03:29 l4_indoor_max -rw-rw-r-- 1 root root 4096 Jan 1 03:31 l5_dark_dim -rw-rw-r-- 1 root root 4096 Jan 1 03:29 l5_dark_max -r--r--r-- 1 root root 4096 Jan 1 03:29 max_brightness drwxr-xr-x 2 root root 0 Jan 1 03:29 power lrwxrwxrwx 1 root root 0 Jan 1 03:29 subsystem -> ../../../../../../../../class/backlight -rw-r--r-- 1 root root 4096 Jan 1 03:29 uevent root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/backlight/adp8870_bl>
Set Backlight Intensity
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/backlight/adp8870_bl> echo 42 > brightness
Query Backlight Intensity
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/backlight/adp8870_bl> cat brightness 42
Enable Ambient Light Sensing Feature
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/backlight/adp8870_bl> echo 127 > brightness
Query Ambient Light Level
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/backlight/adp8870_bl> cat ambient_light_level 1276
Query Ambient Light Zone
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/backlight/adp8870_bl> cat ambient_light_zone 4
Adjust Intensity for Ambient Light Zone 4 (indoor)
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/backlight/adp8870_bl> echo 22 > l4_indoor_max 22
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/backlight/adp8870_bl> cat l4_indoor_max 22
Example LED usage
root:/> cd /sys/class/leds/adp8870-led7/ root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/leds/adp8870-led7> ls -l -rw-r--r-- 1 root root 4096 Jan 1 03:29 brightness lrwxrwxrwx 1 root root 0 Jan 1 03:29 device -> ../../../0-002b -r--r--r-- 1 root root 4096 Jan 1 03:29 max_brightness drwxr-xr-x 2 root root 0 Jan 1 03:29 power lrwxrwxrwx 1 root root 0 Jan 1 03:29 subsystem -> ../../../../../../../../class/leds
Set Intensity
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/leds/adp8870-led7>echo 99 > brightness
Turn LED OFF
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/leds/adp8870-led7> echo 0 > brightness
Query Max Brightness
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/leds/adp8870-led7> cat max_brightness 255 root:/sys/devices/platform/i2c-bfin-twi.0/i2c-adapter/i2c-0/0-002b/leds/adp8870-led7>
More Information
掃碼添加小助手
加入工程師交流群
- LED背光燈用驅(qū)動(dòng)器技術(shù)
- 通用led背光驅(qū)動(dòng)器設(shè)計(jì)
- ADP5520:帶I/O擴(kuò)展器的背光驅(qū)動(dòng)器產(chǎn)品手冊(cè)
- ADP5520 LED驅(qū)動(dòng)器
- ADP8870:電荷泵并行背光驅(qū)動(dòng)器,帶圖像內(nèi)容PWM輸入數(shù)據(jù)表
- ADP8860背光LED Linux驅(qū)動(dòng)器
- 單通道直流有刷電機(jī)驅(qū)動(dòng)器芯片AT8870 98次下載
- ADD5207:用于LCD背光應(yīng)用的四串白光LED驅(qū)動(dòng)器產(chǎn)品手冊(cè)
- ADP1650 LED Linux驅(qū)動(dòng)器
- ADD5211:適合LCD背光應(yīng)用的4串白光LED驅(qū)動(dòng)器
- 帶ALS的并行背光驅(qū)動(dòng)器ADP8860的評(píng)估板(EVAL-ADP8860)手冊(cè)
- LED背光恒流驅(qū)動(dòng)器 29次下載
- 液晶顯示器背光源LED驅(qū)動(dòng)器產(chǎn)品說明書 4次下載
- LED背光boost驅(qū)動(dòng)器
- ADP8870,pdf (Charge Pump Paral
- LED驅(qū)動(dòng)器常見故障解決 1w次閱讀
- 采用MAX25014的LED背光驅(qū)動(dòng)系統(tǒng)的低輸入電壓工作 1.4k次閱讀
- PWM設(shè)置LCD/LED驅(qū)動(dòng)器的輸出 3.7k次閱讀
- 局部調(diào)光LED驅(qū)動(dòng)器IC的解決方案尺寸 2.8k次閱讀
- 基于原邊反饋方式的LED背光驅(qū)動(dòng)方案探討 2.9k次閱讀
- 基于ROHM的車載背光燈用LED驅(qū)動(dòng)器電路設(shè)計(jì) 3.1k次閱讀
- On Semi公司推出了LED驅(qū)動(dòng)器評(píng)估板NCL30051電路解決方案 2k次閱讀
- 淺談LED驅(qū)動(dòng)器的應(yīng)用及驅(qū)動(dòng)方法 9.6k次閱讀
- 設(shè)計(jì)白光LED驅(qū)動(dòng)器時(shí)的EMI干擾問題不可忽視 4.2k次閱讀
- 什么是LED驅(qū)動(dòng)時(shí)序?LCD背光驅(qū)動(dòng)程序設(shè)計(jì) 5.3k次閱讀
- 防止LED驅(qū)動(dòng)器輸出對(duì)地短路 4.7k次閱讀
- 基于四路LED驅(qū)動(dòng)器驅(qū)動(dòng)的解決方案 6.1k次閱讀
- 帶有集成電源的10通道LED背光驅(qū)動(dòng)器 2.4k次閱讀
- 專家揭秘:汽車前向照明為何需要高性能LED驅(qū)動(dòng)器 3.9k次閱讀
- 針對(duì)高功率LED燈泡替換應(yīng)用的LED驅(qū)動(dòng)器設(shè)計(jì) 1.5k次閱讀
下載排行
本周
- 1新一代網(wǎng)絡(luò)可視化(NPB 2.0)
- 3.40 MB | 1次下載 | 免費(fèi)
- 2MDD品牌三極管MMBT3906數(shù)據(jù)手冊(cè)
- 2.33 MB | 次下載 | 免費(fèi)
- 3MDD品牌三極管S9012數(shù)據(jù)手冊(cè)
- 2.62 MB | 次下載 | 免費(fèi)
- 4聯(lián)想flex2-14D/15D說明書
- 4.92 MB | 次下載 | 免費(fèi)
- 5收音環(huán)繞擴(kuò)音機(jī) AVR-1507手冊(cè)
- 2.50 MB | 次下載 | 免費(fèi)
- 624Pin Type-C連接器設(shè)計(jì)報(bào)告
- 1.06 MB | 次下載 | 免費(fèi)
- 7MS1000TA 超聲波測(cè)量模擬前端芯片技術(shù)手冊(cè)
- 0.60 MB | 次下載 | 免費(fèi)
- 8MS1022高精度時(shí)間測(cè)量(TDC)電路數(shù)據(jù)手冊(cè)
- 1.81 MB | 次下載 | 免費(fèi)
本月
- 1愛華AIWA HS-J202維修手冊(cè)
- 3.34 MB | 37次下載 | 免費(fèi)
- 2PC5502負(fù)載均流控制電路數(shù)據(jù)手冊(cè)
- 1.63 MB | 23次下載 | 免費(fèi)
- 3NB-IoT芯片廠商的資料說明
- 0.31 MB | 22次下載 | 1 積分
- 4H110主板CPU PWM芯片ISL95858HRZ-T核心供電電路圖資料
- 0.63 MB | 6次下載 | 1 積分
- 5UWB653Pro USB口測(cè)距通信定位模塊規(guī)格書
- 838.47 KB | 5次下載 | 免費(fèi)
- 6技嘉H110主板IT8628E_BX IO電路圖資料
- 2.61 MB | 4次下載 | 1 積分
- 7蘇泊爾DCL6907(即CHK-S007)單芯片電磁爐原理圖資料
- 0.04 MB | 4次下載 | 1 積分
- 8100W準(zhǔn)諧振反激式恒流電源電路圖資料
- 0.09 MB | 2次下載 | 1 積分
總榜
- 1matlab軟件下載入口
- 未知 | 935137次下載 | 10 積分
- 2開源硬件-PMP21529.1-4 開關(guān)降壓/升壓雙向直流/直流轉(zhuǎn)換器 PCB layout 設(shè)計(jì)
- 1.48MB | 420064次下載 | 10 積分
- 3Altium DXP2002下載入口
- 未知 | 233089次下載 | 10 積分
- 4電路仿真軟件multisim 10.0免費(fèi)下載
- 340992 | 191439次下載 | 10 積分
- 5十天學(xué)會(huì)AVR單片機(jī)與C語(yǔ)言視頻教程 下載
- 158M | 183353次下載 | 10 積分
- 6labview8.5下載
- 未知 | 81602次下載 | 10 積分
- 7Keil工具M(jìn)DK-Arm免費(fèi)下載
- 0.02 MB | 73822次下載 | 10 積分
- 8LabVIEW 8.6下載
- 未知 | 65991次下載 | 10 積分
電子發(fā)燒友App





創(chuàng)作
發(fā)文章
發(fā)帖
提問
發(fā)資料
發(fā)視頻

上傳資料賺積分
評(píng)論