I2C驱动的4个数据结构间的关系

I2C驱动的4个数据结构间的关系

一、i2c_driver, i2c_client, i2c_adapter, i2c_algorithm 这4个数据结构的作用及关系

1.i2c_adapter 与 i2c_algorithm

i2c_adapter 对应物理上一个适配器,而i2c_algorithm对应一套通信算法。

I2C适配器需要i2c_algorithm中提供的通信函数,来控制适配器上产生特定的访问周期,缺少i2c_algorithm的i2c_adapter什么也做不了.

i2c_adapter中包含了其使用的i2c_algorithm的指针。

i2c_algorithm中关键函数是 master_xfer(),用于产生I2C访问周期的需要的信号,以i2c_msg为单位。

  1. /** 
  2.  
  3.  * struct i2c_msg - an I2C transaction segment beginning with START 
  4.  
  5.  * @addr: Slave address, either seven or ten bits. When this is a ten 
  6.  
  7.  *    bit address, I2C_M_TEN must be set in @flags and the adapter 
  8.  
  9.  *    must support I2C_FUNC_10BIT_ADDR. 
  10.  
  11.  * @flags: I2C_M_RD is handled by all adapters. No other flags may be 
  12.  
  13.  *    provided unless the adapter exported the relevant I2C_FUNC_* 
  14.  
  15.  *    flags through i2c_check_functionality(). 
  16.  
  17.  * @len: Number of data bytes in @buf being read from or written to the 
  18.  
  19.  *    I2C slave address. For read transactions where I2C_M_RECV_LEN 
  20.  
  21.  *    is set, the caller guarantees that this buffer can hold up to 
  22.  
  23.  *    32 bytes in addition to the initial length byte sent by the 
  24.  
  25.  *    slave (plus, if used, the SMBus PEC); and this value will be 
  26.  
  27.  *    incremented by the number of block data bytes received. 
  28.  
  29.  * @buf: The buffer into which data is read, or from which it's written. 
  30.  
  31.  * 
  32.  
  33.  * An i2c_msg is the low level representation of one segment of an I2C 
  34.  
  35.  * transaction. It is visible to drivers in the @i2c_transfer() procedure, 
  36.  
  37.  * to userspace from i2c-dev, and to I2C adapter drivers through the 
  38.  
  39.  * @i2c_adapter.@master_xfer() method. 
  40.  
  41.  * 
  42.  
  43.  * Except when I2C "protocol mangling" is used, all I2C adapters implement 
  44.  
  45.  * the standard rules for I2C transactions. Each transaction begins with a 
  46.  
  47.  * START. That is followed by the slave address, and a bit encoding read 
  48.  
  49.  * versus write. Then follow all the data bytes, possibly including a byte 
  50.  
  51.  * with SMBus PEC. The transfer terminates with a NAK, or when all those 
  52.  
  53.  * bytes have been transferred and ACKed. If this is the last message in a 
  54.  
  55.  * group, it is followed by a STOP. Otherwise it is followed by the next 
  56.  
  57.  * @i2c_msg transaction segment, beginning with a (repeated) START. 
  58.  
  59.  * 
  60.  
  61.  * Alternatively, when the adapter supports I2C_FUNC_PROTOCOL_MANGLING then 
  62.  
  63.  * passing certain @flags may have changed those standard protocol behaviors. 
  64.  
  65.  * Those flags are only for use with broken/nonconforming slaves, and with 
  66.  
  67.  * adapters which are known to support the specific mangling options they 
  68.  
  69.  * need (one or more of IGNORE_NAK, NO_RD_ACK, NOSTART, and REV_DIR_ADDR). 
  70.  
  71.  */  
  72.   
  73. struct i2c_msg {  
  74.   
  75.     __u16 addr;    /* slave address            */ //设备地址   
  76.   
  77.     __u16 flags;  
  78.   
  79. #define I2C_M_TEN        0x0010    /* this is a ten bit chip address */   
  80.   
  81. #define I2C_M_RD        0x0001    /* read data, from slave to master */   
  82.   
  83. #define I2C_M_NOSTART        0x4000    /* if I2C_FUNC_PROTOCOL_MANGLING */   
  84.   
  85. #define I2C_M_REV_DIR_ADDR    0x2000    /* if I2C_FUNC_PROTOCOL_MANGLING */   
  86.   
  87. #define I2C_M_IGNORE_NAK    0x1000    /* if I2C_FUNC_PROTOCOL_MANGLING */   
  88.   
  89. #define I2C_M_NO_RD_ACK        0x0800    /* if I2C_FUNC_PROTOCOL_MANGLING */   
  90.   
  91. #define I2C_M_RECV_LEN        0x0400    /* length will be first received byte */   
  92.   
  93.     __u16 len;        /* msg length                */  
  94.   
  95.     __u8 *buf;        /* pointer to msg data            */  //消息数据   
  96.   
  97. };  

2. i2c_driver and i2c_client.

i2c_driver是一套驱动方法,用于辅助作用的数据结构,不对应任何物理实体。

i2c_client对应真实的物理设备,每个I2C设备都需要一个i2c_client来描述。

i2c_client一般被包含在I2C字符设备的私有信息结构体中,private_data.

i2c_driver的attach_adapter()函数被运行时,i2c_adapter()会探测物理设备,当确定一个client存在时,把该client使用的i2c_client数据结构的adapter指针指向对应的i2c_adapter, driver指针指向i2c_driver,并会调用i2c_adapter的client_register()函数。

相反的过程发生在i2c_driver的detach_client()函数被调用的时候。

3.i2c_adapter 与 i2c_client

i2c_adapter 与 i2c_client 关系相当于适配器和设备的关系,i2c_client 依附于 i2c_adapter.

一个适配器可以连接多个I2C设备,所以一个 i2c_adapter 可以被多个 i2c_client 依附。

i2c_adapter 中有依附于它的 i2c_client 的链表。

二、I2C模块中工程师需要实现的工作:

1. 写I2C适配器的驱动: 探测、初始化I2C适配器(如申请I2C的I/O地址,中断号)、驱动I2C适配器在硬件上产生各种信号,及处理I2C中断等。

2. 写I2C适配器的algorithm:用具体适配器的xxx_xfer函数填充i2c_algorithm的master_xfer指针,并把i2c_algorithm指针赋值给i2c_adapter的algo指针。

3. 写I2C设备驱动:实现I2C设备驱动与i2c_driver的接口,用具体设备yyy的yyy_attach_adapter()函数指针,yyy_detach_client()函数指针,和yyy_commond()函数指针,赋值给i2c_driver的attach_adater,detach_adapter,和detach_client指针。

4.实现I2C设备驱动的文件操作接口: 即实现具体设备yyy的 yyy_read(),yyy_write(),yyy_ioctl().

前两个工作属于I2C总线驱动,后两个属于I2C设备驱动。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值