一.参考文档:
1.linux gpio模拟i2c的使用/用GPIO模拟I2C总线-1:
http://blog.163.com/ac952_hmz/blog/static/94791513201281133230840/
2.基于S3C2440的嵌入式Linux驱动——AT24C02(EEPROM I2C接口)驱动解读:
http://blog.csdn.net/yj4231/article/details/18182775
二.Linux内核支持的I2C总线形式:
1.使用芯片上有I2C总线控制器:
可以直接将I2C设备挂载在对应的总线上。
2.不使用芯片上I2C总线控制器,通过模拟I2C总线时序:
通过使用普通的GPIO口,自己去控制GPIO引脚电平,延时时长,模拟出I2C时序,以此来和I2C设备通信。
3.不使用芯片上I2C总线控制器,使用Linux内核自带的i2c-gpio驱动:
只需要指定要使用的GPIO口,延时时长,由i2c-gpio驱动去管理如何跟I2C设备通信,相当是一个I2C控制器,这是Linux内核提供的。
由于当前工作中的硬件设计需求,本文主要阐述第3种实现方式。
三.开启内核i2c-gpio功能:
如下图在内核配置中打开I2C_GPIO功能:
──────────────────────────────────────────────────────────────────────────────
┌───────────────────────── I2C Hardware Bus support ─────────────────────────┐
│ Arrow keys navigate the menu. selects submenus --->. │
│ Highlighted letters are hotkeys. Pressing includes, excludes, │
│ modularizes features. Press to exit, > for Help, > │
│ for Search. Legend: [*] built-in [ ] excluded module < > module │
│ ┌────^(-)────────────────────────────────────────────────────────────────┐ │
│ │ < > SiS 96x │ │
│ │ < > VIA VT82C586B │ │
│ │ < > VIA VT82C596/82C686/82xx and CX700/VX8xx │ │
│ │ *** I2C system bus drivers (mostly embedded / system-on-chip) **│ │
│ │ < > Synopsys DesignWare │ │
│ │ <*> GPIO-based bitbanging I2C │ │
│ │ <*> IMX I2C interface │ │
│ │ < > Intel Moorestown/Medfield Platform I2C controller │ │
│ │ < > OpenCores I2C Controller │ │
│ │ < > PCA9564/PCA9665 as platform device │ │
│ │ < > Simtec Generic I2C interface │ │
│ │ < > Xilinx I2C Controller │ │
│ └────v(+)────────────────────────────────────────────────────────────────┘ │
├────────────────────────────────────────────────────────────────────────────┤
│
阅读(515) | 评论(0) | 转发(0) |