linux i2c driver ============================================================================= from: http://www.linuxjournal.com/article/7136 i2c Drivers, Part I December 1st, 2003 by Greg Kroah-Hartman in Software The i2c bus helps you monitor the health of your system. Here's how to develop a driver that will get you all the hardware info you need to kn...
by nlchjian - Linux文档专区 - 2009-04-03 15:46:09 阅读(3894) 回复(0)
http://www.linuxidc.com/Linux/2011-02/32496.htm
目录
1. 摘要 3
2. 简介 3
3. i2c架构 3
4. i2c总线初始化 4
5. i2c适配器驱动 5
6. i2c设备驱动 9
7. 用户空间驱动支持 12
8. 数据传输框架 16
9. References 16
1. 摘要
主要介绍Msm7227平台上i2c驱动原理,多数部分是29内核标准架构。...
OT_U8 OT_i2c_PutByte(OT_U8 Byte)
{
OT_S8 Counter;
for (Counter=7; Counter>= 0; Counter--)
{
if ( Byte & (1<
i2c architecture in linux kernel ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ i2c(Inter-Integrated Circuit) bus is a very cheap yet effective network used to interconnect periphral devices within small-scale embedded systems. i2c uses two wires to connect multiple devices in a multi-drop bus. The bus is bidirectional, low-speed, and synchronous to a common clock. Devices may be attached or detached from the...
参考代码 http://blog.chinaunix.net/u3/91468/showart_1798987.html linux下24c08的i2c读写程序 #include #include #include #include #include #include #include #include #include #define MAX_i2c_MSG 2 #define i2c_RETRIES 0x701 #define i2c_TIMEOUT 0x702 #define i2c_RDWR 0x707 #define i2c_M_RD 0x1 struct i2c_msg { __u16 addr; __u16 flags; __u16 len; __u8 *buf; }; stru...
大范甘迪个 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/56448/showart_1711057.html
http://tech.ddvip.com/2008/07/121576733546832.html 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/35351/showart_1211336.html
最近在看Linux 2.6.21内核的i2c驱动,也在网上查了一下资料,有错也有对,有些心得,记录下来吧。里面认识或许多有不当之处,还恳请指正。 1. i2c 协议 1.1 i2c总线工作原理 i2c总线是由数据线SDA和时钟SCL构成的串行总线,各种被控制器件均并联在这条总线上,每个器件都有一个唯一的地址识别,可以作为总线上的一个发送器件或接收器件(具体由器件的功能决定) 1.2 i2c总线的几种信号状态 1. 空闲状态:SDA...
i2c驱动组成有三部分: A.i2c 核心驱动 B. i2c总线驱动 C. i2c设备驱动 i2c驱动相关的重要结构: 1. /** * struct i2c_driver - represent an i2c device driver * @class: What kind of i2c device we instantiate (for detect) * @attach_adapter: Callback for bus addition (deprecated) * @detach_adapter: Callback for bus removal (deprecated) * @probe: Callback for device binding * @remove: Callback for...
本帖最后由 breeze505 于 2012-09-12 17:31 编辑 我的ARM平台是 Cortex A9,MSP430G2231通过P1.6、P1.7与ARM核i2c总线通信,ARM上跑的是Linux系统,Linux内核有i2c总线驱动。 所以我除了MSP430端的程序外,ARM端我还需要做MSP430的Linux设备驱动程序。问题: (1)芯片的i2c总线驱动内核上已有,那我是否可以在应用程序中使用内核的设备驱动i2c-dev.c中的open、read、write等接口,而不需要重新开发一个设备驱动程序? (2)若...