一. 简介
前面学习了 Linux下 I2C驱动框架分为:I2C总线驱动与I2C设备驱动两个部分。我们主要重点学习 I2C设备驱动,前一篇文章学习了I2C设备驱动相关的结构体与设备驱动注册与删除。文章如下:
Linux下I2C驱动实验:I2C 设备驱动-CSDN博客
本文来学习I2C设备驱动涉及的 i2c_driver 的注册,主要学习一下 i2c_driver 的注册代码示例框架。
二. Linux下I2C设备驱动:i2c_driver 的注册示例代码
i2c_driver 的注册示例代码如下:
/* i2c 驱动的 probe 函数 */
static int xxx_probe(struct i2c_client *client,const struct i2c_device_id *id)
{/* 函数具体程序 */return 0;
}/* i2c 驱动的 remove 函数 */
static int xxx_remove(struct i2c_client *client)
{/* 函数具体程序 */return 0;
}/* 传统匹配方式 ID 列表 */
static const struct i2c_device_id xxx_id[] = {{ "xxx", 0 },{ }
};/* 设备树匹配列表 */
static const struct of_device_id xxx_of_match[] = {{.compatible = "xxx"},{/* Sentinel */}
};/* i2c 驱动结构体 */
static struct i2c_driver xxx_driver = {.probe = xxx_probe,.remove = xxx_remove,.driver = {.owner = THIS_MODULE,.name = "xxx",.of_match_table = of_match_ptr(xxx_of_match),},id_table = xxx_id,
};/* 驱动入口函数 */static int __init xxx_init(void){int ret = 0;/* 注册驱动 */ret = i2c_add_driver(&xxx_driver);return ret;}/* 驱动出口函数 */static void __exit xxx_exit(void){/* 注销驱动 */i2c_del_driver(&xxx_driver);}module_init(xxx_init);module_exit(xxx_exit);
第 19~22 行, i2c_device_id ,无设备树的时候匹配 ID 表。
第 25~28 行,of_device_id,设备树所使用的匹配表。
第 31~41 行,i2c_driver,当 I2C 设备和 I2C 驱动匹配成功以后, probe 函数就会执行。
这些和 platform 驱动一样,probe 函数里面基本就是标准的字符设备驱动那一套了。