色哟哟视频在线观看-色哟哟视频在线-色哟哟欧美15最新在线-色哟哟免费在线观看-国产l精品国产亚洲区在线观看-国产l精品国产亚洲区久久

電子發(fā)燒友App

硬聲App

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫(xiě)文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示
創(chuàng)作
電子發(fā)燒友網(wǎng)>電子資料下載>類型>參考設(shè)計(jì)>ADP1650 LED Linux驅(qū)動(dòng)器

ADP1650 LED Linux驅(qū)動(dòng)器

2021-04-20 | pdf | 65.86KB | 次下載 | 2積分

資料介紹

This version (11 Feb 2016 21:12) was approved by Lars-Peter Clausen.The Previously approved version (08 Nov 2011 17:40) is available.Diff

ADP1650 LED Flash Linux Driver

Supported Devices

Evaluation Boards

Description

Source Code

Status

Source Mainlined?
git In Progress

Files

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.

21 Oct 2010 16:10

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

21 Oct 2010 16:10
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

下載該資料的人也在下載 下載該資料的人還在閱讀
更多 >

評(píng)論

查看更多

下載排行

本周

  1. 1AN-1267: 使用ADSP-CM408F ADC控制器的電機(jī)控制反饋采樣時(shí)序
  2. 1.41MB   |  3次下載  |  免費(fèi)
  3. 2AN158 GD32VW553 Wi-Fi開(kāi)發(fā)指南
  4. 1.51MB   |  2次下載  |  免費(fèi)
  5. 3AN148 GD32VW553射頻硬件開(kāi)發(fā)指南
  6. 2.07MB   |  1次下載  |  免費(fèi)
  7. 4AN-1154: 采用恒定負(fù)滲漏電流優(yōu)化ADF4157和ADF4158 PLL的相位噪聲和雜散性能
  8. 199.28KB   |  次下載  |  免費(fèi)
  9. 5AN-960: RS-485/RS-422電路實(shí)施指南
  10. 380.8KB   |  次下載  |  免費(fèi)
  11. 6EE-249:使用VisualDSP在ADSP-218x DSP上實(shí)現(xiàn)軟件疊加
  12. 60.02KB   |  次下載  |  免費(fèi)
  13. 7AN-1111: 使用ADuCM360/ADuCM361時(shí)的降低功耗選項(xiàng)
  14. 306.09KB   |  次下載  |  免費(fèi)
  15. 8AN-904: ADuC7028評(píng)估板參考指南
  16. 815.82KB   |  次下載  |  免費(fèi)

本月

  1. 1ADI高性能電源管理解決方案
  2. 2.43 MB   |  450次下載  |  免費(fèi)
  3. 2免費(fèi)開(kāi)源CC3D飛控資料(電路圖&PCB源文件、BOM、
  4. 5.67 MB   |  138次下載  |  1 積分
  5. 3基于STM32單片機(jī)智能手環(huán)心率計(jì)步器體溫顯示設(shè)計(jì)
  6. 0.10 MB   |  130次下載  |  免費(fèi)
  7. 4使用單片機(jī)實(shí)現(xiàn)七人表決器的程序和仿真資料免費(fèi)下載
  8. 2.96 MB   |  44次下載  |  免費(fèi)
  9. 5美的電磁爐維修手冊(cè)大全
  10. 1.56 MB   |  24次下載  |  5 積分
  11. 6如何正確測(cè)試電源的紋波
  12. 0.36 MB   |  18次下載  |  免費(fèi)
  13. 7感應(yīng)筆電路圖
  14. 0.06 MB   |  10次下載  |  免費(fèi)
  15. 8萬(wàn)用表UT58A原理圖
  16. 0.09 MB   |  9次下載  |  5 積分

總榜

  1. 1matlab軟件下載入口
  2. 未知  |  935121次下載  |  10 積分
  3. 2開(kāi)源硬件-PMP21529.1-4 開(kāi)關(guān)降壓/升壓雙向直流/直流轉(zhuǎn)換器 PCB layout 設(shè)計(jì)
  4. 1.48MB  |  420062次下載  |  10 積分
  5. 3Altium DXP2002下載入口
  6. 未知  |  233088次下載  |  10 積分
  7. 4電路仿真軟件multisim 10.0免費(fèi)下載
  8. 340992  |  191367次下載  |  10 積分
  9. 5十天學(xué)會(huì)AVR單片機(jī)與C語(yǔ)言視頻教程 下載
  10. 158M  |  183335次下載  |  10 積分
  11. 6labview8.5下載
  12. 未知  |  81581次下載  |  10 積分
  13. 7Keil工具M(jìn)DK-Arm免費(fèi)下載
  14. 0.02 MB  |  73810次下載  |  10 積分
  15. 8LabVIEW 8.6下載
  16. 未知  |  65988次下載  |  10 積分
主站蜘蛛池模板: 久久婷五月综合色啪首页 | 伦理 电影在线观看 | 青青国产在线观看视频 | 色多多污污在线观看网站 | 亚洲黄色免费观看 | 亚洲人成网站在线播放 | 亚洲中文字幕乱倫在线 | 在线观看免费国产成人软件 | 国产 高清 无码 中文 | 小玲被公扒开腿 | 一区二区三区毛AAAA片特级 | 日韩精品无码视频一区二区蜜桃 | 中文字幕永久在线观看 | 国产精品久久久久影院色老大 | 5G在线观看免费年龄确认 | 57PAO强力打造高清免费 | 国语自产拍在线视频普通话 | 国产午夜人成在线视频麻豆 | 果冻传媒AV精品一区 | 同房交换4p好爽 | 欧美午夜精品A片一区二区HD | 国产白丝精品爽爽久久久久久蜜臀 | 黑人巨茎大战白人女40CMO | 日日操夜夜操天天操 | 国产精品嫩草影院 | 好大的太粗好深BL | 欧美极限变态扩张video | 迈开腿让我看下你的小草莓声音 | xxx性欧美在线 | 午夜亚洲WWW湿好爽 午夜亚洲WWW湿好大 | 国产精品亚洲欧美一区麻豆 | 久久精品国产亚洲AV妓女不卡 | 麻豆精品传媒一二三区 | 江苏电台在线收听 | 忘忧草秋观看未满十八 | 9国产露脸精品国产麻豆 | 樱花之恋动漫免费观看 | 亚洲第一伊人 | 果冻传媒我的女老板 | 男人和女人全黄一级毛片 | 国产啪精品视频网免费 |