- 论坛徽章:
- 0
|
本帖最后由 npuazm 于 2011-11-23 12:32 编辑
在我刚刚开始学习linux 驱动设备模型的时候,看的是I2C 设备模型,为什么选取这个linux device driver 呢?原因很简单,就是因为网络上关于这方面的讨论很多,有很多现成的资源。我对I2C 设备模型的总结如下:
Summary
HOST
When the I2C host probe , it will make one adapter and some clients those share the same adapter. The program will initiate the client->dev , and put the dev into the kernel, at same time the program will fill the client->name with the device info (from the __i2c_board_list) .
DEVICE
When use i2c_add_driver add I2C driver , the program will use the i2c_device_id name find the client (which has the same name ),and fill the client-driver with the I2C driver.
Host 指的是IC 芯片的 I2C host control(这已经由大的IC 芯片公司做好了,不需要驱动工程师来做。当然你如果你在芯片公司做驱动,这块就是你来做喽~)
Device 指的是具体的具有I2C接口的功能芯片,比如 具有I2C 的EEROM等等。(这个一般由驱动工程师,自己移植,注意是移植呀,不用从头写。linux 是开源的,一个芯片的驱动很可能已经在发布的版本中实现了,你只需要改改相应的配置和初始化就ok了,即使你从linux 找不到一样,但是完全可能找到类似的,再即使类似的找不到,你还可以从功能芯片的公司索取demo,总之驱动工程师的工作主要是修改移植代码。)
附件中是我学习的总结,希望能够对各位xdjm有点帮助~
目录大概是
1 I2C protocol
2 Software I2C overview in linux kernel
3 How add I2C device driver in kernel ?
4 How make client ?
其中前两项是我从网上找的资料,后两项是我看代码的总结~
有不对的地方请各位指出,谢谢
I2C_linux_device_driver.7z
(205.97 KB, 下载次数: 844)
|
|