資料介紹
Table of Contents
ADP1650 LED Flash Linux Driver
Supported Devices
Evaluation Boards
Description
Source Code
Status
Source | Mainlined? |
---|---|
git | In Progress |
Files
Function | File |
---|---|
driver | drivers/leds/leds-adp1650.c |
include | include/linux/i2c/adp1650.h |
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 ADP1650 device.
Includes feature selections and default initialization.
Please see include/linux/i2c/adp1650.h for details.
#include? static struct adp1650_leds_platform_data adp1650_pdata = { .timer_iocfg = ADP1650_IOCFG_IO2_HIGH_IMP | ADP1650_IOCFG_IO1_TORCH | ADP1650_FL_TIMER_ms(500), ? .current_set = ADP1650_I_FL_mA(900) | ADP1650_I_TOR_mA(100), ? .output_mode = ADP1650_IL_PEAK_2A25 | ADP1650_STR_LV_EDGE | ADP1650_FREQ_FB_EN | ADP1650_OUTPUT_EN | ADP1650_STR_MODE_HW | ADP1650_STR_MODE_STBY, ? .control = ADP1650_I_TX2_mA(400) | ADP1650_I_TX1_mA(400), ? .ad_mode = ADP1650_DYN_OVP_EN | ADP1650_STR_POL_ACTIVE_HIGH | ADP1650_I_ILED_2mA75 | ADP1650_IL_DC_1A50 | ADP1650_IL_DC_EN, ? .batt_low = ADP1650_CL_SOFT_EN | ADP1650_I_VB_LO_mA(400) | ADP1650_V_VB_LO_3V50, ? .gpio_enable = -1, };
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 board_i2c_board_info[] = { #if defined(CONFIG_LEDS_ADP1650) || defined(CONFIG_LEDS_ADP1650_MODULE) { I2C_BOARD_INFO("adp1650", 0x30), .platform_data = (void *)&adp1650_pdata, }, #endif };
static int __init board_init(void) { [--snip--] ? i2c_register_board_info(0, board_i2c_board_info, ARRAY_SIZE(board_i2c_board_info)); [--snip--] ? return 0; } arch_initcall(board_init);
Adding Linux driver support
Configure kernel with “make menuconfig” (alternatively use “make xconfig” or “make qconfig”)
The ADP1650 LED driver depends on I2C.
Device Drivers ---> [*] LED Support ---> --- LED Support [*] LED Class Support * LED drivers * <--snip--> <*> LED Support for ADP1650 I2C chips <--snip-->
Driver testing
LED handling under Linux
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).
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.
Driver specific brightness interpretation
Value | Define | Description | Intensity |
---|---|---|---|
0 | FL_MODE_OFF | Turns LED/FLASH off | 0 |
1 | FL_MODE_TORCH_25mA | Software initiated TORCH/Assist light | 25mA |
2 | FL_MODE_TORCH_50mA | (STROBE) triggers FLASH | 50mA |
3 | FL_MODE_TORCH_75mA | 75mA | |
4 | FL_MODE_TORCH_100mA | 100mA | |
5 | FL_MODE_TORCH_125mA | 125mA | |
6 | FL_MODE_TORCH_150mA | 150mA | |
7 | FL_MODE_TORCH_175mA | 175mA | |
8 | FL_MODE_TORCH_200mA | 200mA | |
9 | FL_MODE_TORCH_TRIG_EXT_25mA | Hardware (GPIO1) triggered TORCH/Assist light | 25mA |
10 | FL_MODE_TORCH_TRIG_EXT_50mA | (STROBE) triggers FLASH | 50mA |
11 | FL_MODE_TORCH_TRIG_EXT_75mA | 75mA | |
12 | FL_MODE_TORCH_TRIG_EXT_100mA | 100mA | |
13 | FL_MODE_TORCH_TRIG_EXT_125mA | 125mA | |
14 | FL_MODE_TORCH_TRIG_EXT_150mA | 150mA | |
15 | FL_MODE_TORCH_TRIG_EXT_175mA | 175mA | |
16 | FL_MODE_TORCH_TRIG_EXT_200mA | 200mA | |
254 | FL_MODE_FLASH | Software initiated LED FLASH | I_FL |
255 | FL_MODE_FLASH_TRIG_EXT | Hardware (STROBE) triggered LED FLASH | I_FL |
Example LED usage
root:/> cd sys/class/leds/adp1650/ root:/sys/devices/platform/i2c-bfin-twi.0/i2c-0/0-0030/leds/adp1650> ls -l -rw-r--r-- 1 root root 4096 Jan 5 08:42 brightness lrwxrwxrwx 1 root root 0 Jan 5 08:23 device -> ../../../0-0030 -r--r--r-- 1 root root 4096 Jan 5 08:23 max_brightness drwxr-xr-x 2 root root 0 Jan 5 08:23 power lrwxrwxrwx 1 root root 0 Jan 5 08:23 subsystem -> ../../../../../../../class/leds -rw-r--r-- 1 root root 4096 Jan 5 08:23 uevent
Enable TORCH/Assist Light (Intensity 100mA)
A subsequent assert of STROBE will trigger the FLASH
This specifies any shell prompt running on the target
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-0/0-0030/leds/adp1650> echo 4 > brightness
Prepare TORCH/Assist Light for an GPIO1 enable trigger (Intensity 100mA)
A subsequent assert of STROBE will trigger the FLASH
This specifies any shell prompt running on the target
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-0/0-0030/leds/adp1650> echo 12 > brightness
Initiate FLASH (Intensity set by I_FL)
This specifies any shell prompt running on the target
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-0/0-0030/leds/adp1650> echo 254 > brightness
Prepare FLASH for an STROBE triggered enable (Intensity set by I_FL)
This specifies any shell prompt running on the target
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-0/0-0030/leds/adp1650> echo 255 > brightness
Disable all LED activity
This specifies any shell prompt running on the target
root:/sys/devices/platform/i2c-bfin-twi.0/i2c-0/0-0030/leds/adp1650> echo 0 > brightness
More Information
- LED驅(qū)動芯片VK1650產(chǎn)品資料 14次下載
- LED照明及驅(qū)動器基本知識培訓(xùn)PPT 55次下載
- 基于ADP1650_Typical Application閃光發(fā)光二極管驅(qū)動器的參考設(shè)計
- 基于ADP1650CB-EVALZ閃光發(fā)光二極管驅(qū)動器的參考設(shè)計
- 帶I2C兼容接口的ADP1655雙LED閃存驅(qū)動器產(chǎn)品手冊
- EVADP1650 ADP1650評估板
- UG-1476:評估采用自適應(yīng)電源控制的ADP8140 4通道大電流LED驅(qū)動器
- ADP5520 LED驅(qū)動器
- ADP8860背光LED Linux驅(qū)動器
- ADP8863:電荷泵,7通道FUN照明LED驅(qū)動器數(shù)據(jù)表
- ADP1650:1.5帶I<sup>2</sup>C兼容接口的LED閃存驅(qū)動器產(chǎn)品手冊
- ADP8870背光LED Linux驅(qū)動器
- UG-139:ADP1650評估板用戶指南
- 1.5A,I2C兼容接口的led閃存驅(qū)動器ADP1650數(shù)據(jù)表 4次下載
- ADP1650,pdf datasheet (single white LED flash driver)
- PWM設(shè)置LCD/LED驅(qū)動器的輸出 2325次閱讀
- 使用高調(diào)光比汽車LED驅(qū)動器保持抬頭 1032次閱讀
- 局部調(diào)光LED驅(qū)動器IC的解決方案尺寸 1498次閱讀
- 基于一種太陽能供電的中等電壓LED照明應(yīng)用驅(qū)動器方案 1036次閱讀
- 照明用LED驅(qū)動器的常用術(shù)語解析 3177次閱讀
- 汽車LED升壓驅(qū)動器電路設(shè)計 2768次閱讀
- 基于一種中等電壓LED照明的驅(qū)動器設(shè)計方案 975次閱讀
- 基于ROHM的車載背光燈用LED驅(qū)動器電路設(shè)計 2435次閱讀
- 如何使用555定時器實現(xiàn)LED驅(qū)動器的控制 3980次閱讀
- 淺談LED驅(qū)動器的應(yīng)用及驅(qū)動方法 7394次閱讀
- 設(shè)計白光LED驅(qū)動器時的EMI干擾問題不可忽視 3634次閱讀
- 基于LT3797三通道LED驅(qū)動器的設(shè)計與實現(xiàn) 2266次閱讀
- 基于四路LED驅(qū)動器驅(qū)動的解決方案 3850次閱讀
- 針對高功率LED燈泡替換應(yīng)用的LED驅(qū)動器設(shè)計 1182次閱讀
- 切換式LED驅(qū)動器調(diào)光技術(shù) 1214次閱讀
下載排行
本周
- 1電子電路原理第七版PDF電子教材免費下載
- 0.00 MB | 1491次下載 | 免費
- 2單片機典型實例介紹
- 18.19 MB | 95次下載 | 1 積分
- 3S7-200PLC編程實例詳細(xì)資料
- 1.17 MB | 27次下載 | 1 積分
- 4筆記本電腦主板的元件識別和講解說明
- 4.28 MB | 18次下載 | 4 積分
- 5開關(guān)電源原理及各功能電路詳解
- 0.38 MB | 11次下載 | 免費
- 6100W短波放大電路圖
- 0.05 MB | 4次下載 | 3 積分
- 7基于單片機和 SG3525的程控開關(guān)電源設(shè)計
- 0.23 MB | 4次下載 | 免費
- 8基于AT89C2051/4051單片機編程器的實驗
- 0.11 MB | 4次下載 | 免費
本月
- 1OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234313次下載 | 免費
- 2PADS 9.0 2009最新版 -下載
- 0.00 MB | 66304次下載 | 免費
- 3protel99下載protel99軟件下載(中文版)
- 0.00 MB | 51209次下載 | 免費
- 4LabView 8.0 專業(yè)版下載 (3CD完整版)
- 0.00 MB | 51043次下載 | 免費
- 5555集成電路應(yīng)用800例(新編版)
- 0.00 MB | 33562次下載 | 免費
- 6接口電路圖大全
- 未知 | 30320次下載 | 免費
- 7Multisim 10下載Multisim 10 中文版
- 0.00 MB | 28588次下載 | 免費
- 8開關(guān)電源設(shè)計實例指南
- 未知 | 21539次下載 | 免費
總榜
- 1matlab軟件下載入口
- 未知 | 935053次下載 | 免費
- 2protel99se軟件下載(可英文版轉(zhuǎn)中文版)
- 78.1 MB | 537793次下載 | 免費
- 3MATLAB 7.1 下載 (含軟件介紹)
- 未知 | 420026次下載 | 免費
- 4OrCAD10.5下載OrCAD10.5中文版軟件
- 0.00 MB | 234313次下載 | 免費
- 5Altium DXP2002下載入口
- 未知 | 233046次下載 | 免費
- 6電路仿真軟件multisim 10.0免費下載
- 340992 | 191183次下載 | 免費
- 7十天學(xué)會AVR單片機與C語言視頻教程 下載
- 158M | 183277次下載 | 免費
- 8proe5.0野火版下載(中文版免費下載)
- 未知 | 138039次下載 | 免費
評論
查看更多