资料介绍


Table of Contents
ADP5588 GPIO Linux Driver
Supported Devices
Evaluation Boards
Description
Configuration
Software configurable features
Source Code
Status
Files
Function | File |
---|---|
driver | drivers/gpio/gpio-adp5588.c |
include | include/linux/i2c/adp5588.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.
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_GPIO_ADP5588) || defined(CONFIG_GPIO_ADP5588_MODULE) { I2C_BOARD_INFO("adp5588-gpio", 0x34), .irq = IRQ_PG0, .platform_data = (void *)&adp5588_gpio_data, }, #endif }
Adding Linux driver support
Configure kernel with “make menuconfig” (alternatively use “make xconfig” or “make qconfig”)
The ADP5588 Driver depends on CONFIG_I2C
IRQ-Chip interrupt controller support is not available in case this driver is build as Module
Device Drivers —>
[*] GPIO Support —>
- -- GPIO Support
[ ] Debug GPIO calls
[*] /sys/class/gpio/... (sysfs interface) *** Memory mapped GPIO expanders: *** < > IT8761E GPIO support *** I2C GPIO expanders: *** < > Maxim MAX7300 GPIO expander < > MAX7319, MAX7320-7327 I2C Port Expanders < > PCA953x, PCA955x, TCA64xx, and MAX7310 I/O ports < > PCF857x, PCA{85,96}7x, and MAX732[89] I2C GPIO expanders [ ] Semtech SX150x I2C GPIO expander < > GPIO Support for ADP5520 PMIC <*> ADP5588 I2C GPIO expander [*] Interrupt controller support for ADP5588
< /code>
Hardware configuration
There is no dedicated Blackfin STAMP evaluation board for the ADP5588. During test and driver development we used the ADP5588 Demo Mother/Daughter Board.
It can be easily wired to the Blackfin STAMP TWI/I2C header.
BF537-STAMP (P10) TWI/I2C header | ADP5588 Daughter Board | |
---|---|---|
PIN | Function | PIN/Function |
2 | (+3.3V) | VCC |
5 | SCL | SCL |
6 | SDA | SDA |
10 | PORTG0 | INTB |
20 | GND | GND |
On the ADP5588 Demo Mother Board replace R30 (10kOhm PULL-UP resistor on /INTB strobe) with a 1-3kOhm resistor. The 10kOhm resistor is too weak - Blackfin might see an additional falling edge interrupt on the rising edge of /INTB.
Driver testing
When the driver is loaded, you should see positive output that it found the ADP5588 GPIO device.
root:/> modprobe adp5588-gpio adp5588-gpio 0-0034: gpios 50..67 on a adp5588-gpio Rev. 4
For more information see also here: linux-kernel:drivers:gpio-sysfs
root:/> echo 67 > /sys/class/gpio/export root:/> echo low > /sys/class/gpio/gpio67/direction root:/> echo high > /sys/class/gpio/gpio67/direction root:/> echo in > /sys/class/gpio/gpio67/direction root:/> cat /sys/class/gpio/gpio67/value 1 root:/> cat /sys/class/gpio/gpio67/value 0 root:/
More Information
- EVAL-ADP5588:ADP5588键盘I/O扩展器评估板
- ADP150稳压器固定电压Linux驱动程序
- ADP5589输入键盘和GPIO Linux驱动程序
- ADP5520/01 MFD Linux驱动程序
- ADP5588输入键盘和GPIO Linux驱动程序
- Linux的LEDS GPIO驱动程序免费下载 3次下载
- 嵌入式Linux设备驱动程序开发基础知识总结免费下载 13次下载
- AM3553X的GPIO驱动的设计和硬件的控制驱动程序 20次下载
- Linux驱动程序缺陷检测研究 9次下载
- Linux系统网络驱动程序的编写 0次下载
- 基于Linux下的LCD驱动程序实现 12次下载
- ADP5588原文资料数据手册PDF免费下载(移动I/O扩展器和QWERTY键盘控制器) 10次下载
- 第9章 Linux驱动程序设计 3次下载
- Windows CE下GPIO驱动程序的设计与应用
- 步进电机的Linux驱动程序
- 怎么编写Framebuffer驱动程序 590次阅读
- 基于OpenHarmony编写GPIO平台驱动和应用程序 928次阅读
- 自动删除SDK/Vitis下驱动程序的旧版本的Linux脚本 620次阅读
- 如何写一个Linux设备驱动程序 4535次阅读
- 米尔科技LINUX设备驱动程序教程 2105次阅读
- 嵌入式Linux内核的驱动程序开发是怎样的 1524次阅读
- 浅谈电脑驱动程序的工作原理 详解电脑驱动程序意义 3w次阅读
- 基于嵌入式Linux内核的系统设备驱动程序开发设计 1209次阅读
- 基于Linux2.6.30开发DS18B20的驱动程序的类型和文件操作接口函数详解 1500次阅读
- 可动态安装的Linux设备驱动程序 1013次阅读
- 8255A驱动程序 3434次阅读
- 8155驱动程序 3284次阅读
- 树莓派上MAX7219的字符驱动程序编写 7102次阅读
- Xilinx设备的驱动程序 8200次阅读
- PCI驱动程序开发实例 6831次阅读
下载排行
本周
- 1电子电路原理第七版PDF电子教材免费下载
- 0.00 MB | 1491次下载 | 免费
- 2单片机典型实例介绍
- 18.19 MB | 95次下载 | 1 积分
- 3S7-200PLC编程实例详细资料
- 1.17 MB | 27次下载 | 1 积分
- 4笔记本电脑主板的元件识别和讲解说明
- 4.28 MB | 18次下载 | 4 积分
- 5开关电源原理及各功能电路详解
- 0.38 MB | 11次下载 | 免费
- 6100W短波放大电路图
- 0.05 MB | 4次下载 | 3 积分
- 7基于单片机和 SG3525的程控开关电源设计
- 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 专业版下载 (3CD完整版)
- 0.00 MB | 51043次下载 | 免费
- 5555集成电路应用800例(新编版)
- 0.00 MB | 33562次下载 | 免费
- 6接口电路图大全
- 未知 | 30320次下载 | 免费
- 7Multisim 10下载Multisim 10 中文版
- 0.00 MB | 28588次下载 | 免费
- 8开关电源设计实例指南
- 未知 | 21539次下载 | 免费
总榜
- 1matlab软件下载入口
- 未知 | 935053次下载 | 免费
- 2protel99se软件下载(可英文版转中文版)
- 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十天学会AVR单片机与C语言视频教程 下载
- 158M | 183277次下载 | 免费
- 8proe5.0野火版下载(中文版免费下载)
- 未知 | 138039次下载 | 免费
评论