0
  • 聊天消息
  • 系统消息
  • 评论与回复
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
会员中心
创作中心

完善资料让更多小伙伴认识你,还能领取20积分哦,立即完善>

3天内不再提示

i2c的设备树是如何匹配以及何时调用probe的

电子设计 来源:电子设计 作者:电子设计 2020-12-24 13:38 次阅读

一、粉丝提问

i2c的设备树和驱动是如何匹配以及何时调用probe的?粉丝手里的I2C外设是ov5640,一个摄像头。粉丝提问,一口君必须安排。

二、问题分析

设备树信息如下:

ov5640: ov5640@3c {
compatible = "ovti,ov5640";
reg = <0x3c>;
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_csi1
&csi_pwn_rst>;
clocks = <&clks IMX6UL_CLK_CSI>;
clock-names = "csi_mclk";
pwn-gpios = <&gpio1 4 1>;
rst-gpios = <&gpio1 2 0>;
csi_id = <0>;
mclk = <24000000>;
mclk_source = <0>;
status = "okay";
port {
ov5640_ep: endpoint {
remote-endpoint = <&csi1_ep>;
};
};
};

驱动最重要的结构体如下:

ov5640_i2c_driver

要搞懂这个问题,我们需要有一些基础知识:

1.内核如何维护i2c总线

Linux内核维护很多总线,platform、usb、i2c、spi、pci等等,这个总线的架构在内核中都支持的很完善,内核通过以下结构体来维护总线:

struct bus_type {
const char *name;
const char *dev_name;
struct device *dev_root;
struct device_attribute *dev_attrs; use dev_groups instead
const struct attribute_group **bus_groups;
const struct attribute_group **dev_groups;
const struct attribute_group **drv_groups;
int (*match)(struct device *dev, struct device_driver *drv);
int (*uevent)(struct device *dev, struct kobj_uevent_env *env);
int (*probe)(struct device *dev);
int (*remove)(struct device *dev);
void (*shutdown)(struct device *dev);
int (*online)(struct device *dev);
int (*offline)(struct device *dev);
int (*suspend)(struct device *dev, pm_message_t state);
int (*resume)(struct device *dev);
const struct dev_pm_ops *pm;
struct iommu_ops *iommu_ops;
struct subsys_private *p;
struct lock_class_key lock_key;
};

i2c对应总线结构体变量为i2c_bus_type,定义如下:

drivers/i2c/I2c-core.c
struct bus_type i2c_bus_type = {
.name = "i2c",
.match = i2c_device_match,
.probe = i2c_device_probe,
.remove = i2c_device_remove,
.shutdown = i2c_device_shutdown,
.pm = &i2c_device_pm_ops,
};

其中:

i2c_device_match(),匹配总线维护的驱动链表和设备信息链表,如果其中名字完全相同,则返回true,否则false;i2c_device_probe(),当我们注册一个i2c_drive或者i2c_client结构体时,会从对应的链表中查找节点,并通过i2c_device_match函数比较,如果匹配成功,则调用i2c_drive中定义的probe函数,即ov5640的ov5640_probe()函数;remove:如果卸载i2c_drive或者i2c_client结构体,会调用该函数卸载对应的资源;shutdown、pm是电源管理接口,在此不讨论。

该结构体变量在函数i2c_init()中初始化:

static int __init i2c_init(void)

…………
retval = bus_register(&i2c_bus_type);
…………

i2c架构是通用架构,可支持多种不同的i2c控制器驱动。

2. i2c架构如何如何管理硬件信息和驱动?

不论哪一种总线,一定会维护两个链表,一个是驱动链表,一个是硬件信息链表。链表如下:

i2c总线的两个节点信息如下:

「struct i2c_driver」

struct i2c_driver {
unsigned int class;
Notifies the driver that a new bus has appeared. You should avoid
* using this, it will be removed in a near future.

int (*attach_adapter)(struct i2c_adapter *) __deprecated;
Standard driver model interfaces
int (*probe)(struct i2c_client *, const struct i2c_device_id *);
int (*remove)(struct i2c_client *);
driver model interfaces that don't relate to enumeration
void (*shutdown)(struct i2c_client *);
int (*suspend)(struct i2c_client *, pm_message_t mesg);
int (*resume)(struct i2c_client *);
Alert callback, for example for the SMBus alert protocol.
* The format and meaning of the data value depends on the protocol.
* For the SMBus alert protocol, there is a single bit of data passed
* as the alert response's low bit ("event flag").

void (*alert)(struct i2c_client *, unsigned int data);
a ioctl like command that can be used to perform specific functions
* with the device.

int (*command)(struct i2c_client *client, unsigned int cmd, void *arg);
struct device_driver driver;
const struct i2c_device_id *id_table;
Device detection callback for automatic device creation
int (*detect)(struct i2c_client *, struct i2c_board_info *);
const unsigned short *address_list;
struct list_head clients;
};
当总线匹配驱动和硬件信息成功后就会调用其中的probe()函数;struct device_driver driver,内核中注册的驱动模块,必须包含该类型的结构体成员。

「struct i2c_client」

成员含义unsigned short flags从设备地址长度unsigned short addr从设备地址char name[I2C_NAME_SIZE]从设备地址名称struct i2c_adapter *adapter从设备地址对应的控制器驱动地址struct device dev注册到内核的每一个设备模块都需要先定义一个该结构体变量,对应struct device_driver driverint irq从设备地址往往会有一根中断线连接到SOC的中断控制器struct list_head detected链表3. i2c_driver和i2c_client1) i2c_driver如何注册

i2c_driver结构需要我们自己定义,然后通过函数i2c_register_driver()注册,将该结构体变量注册到i2c_driver链表,同时从i2c_client链表中查找是否有匹配的节点:

设备树情况下,会比较i2c_drive->driver->of_match_table->compatible和i2c_client->name,对应例子中的of_ov5640_id:

非设备树比较i2c_drive->id_table->name和i2c_client->name,对应例子中的ov5640_id:

代码中并没有直接调用函数i2c_register_driver()注册,而是使用了下面的这个宏:

该宏定义如下:

include/linux/I2c.h

该宏其实自动帮我生成了insmod和rmmod会用到宏module_init和module_exit,以及注册和注销i2c_driver结构体的代码。

如果看不明白宏,可以编写测试文件:test.c

#define module_i2c_driver(__i2c_driver)
module_driver(__i2c_driver, i2c_add_driver,
i2c_del_driver)

#define module_driver(__driver, __register, __unregister, ...)
static int __init __driver##_init(void)

return __register(&(__driver) , ##__VA_ARGS__);

module_init(__driver##_init);
static void __exit __driver##_exit(void)

__unregister(&(__driver) , ##__VA_ARGS__);

module_exit(__driver##_exit);
module_i2c_drive(ov5640_i2c_driver);

预编译:

gcc -E test.c

得到宏替换后的结果:

static int __init ov5640_i2c_driver_init(void)

return i2c_add_driver(&(ov5640_i2c_driver));

module_init(ov5640_i2c_driver_init);
static void __exit ov5640_i2c_driver_exit(void)

i2c_del_driver(&(ov5640_i2c_driver));

module_exit(ov5640_i2c_driver_exit);;

内核中有大量的高效简洁的宏定义,Linux内核就是个宝库,里面有大量的优秀的代码,想提高自己的编程能力,就一定要多看代码,代码读百遍,其义自见。

一口君认为,如果Linux代码都看不太明白,就不要自称精通C语言,充其量是会用C语言。

2)i2c_client如何生成(只讨论有设备树的情况)

在有设备树的情况下,i2c_client的生成是要在控制器驱动adapter注册情况下从设备树中枚举出来的。

i2c控制器有很多种,不同的厂家都会设计自己特有的i2c控制器,但是不论哪一个控制器,最终都会调用i2c_register_adapter()注册控制器驱动。

i2c_client生成流程如下:

i2c_client三、 i2c的设备树和驱动是如何匹配以及何时调用probe?1. i2c的设备树和驱动是如何match,何时调用probe?

从第二章第3节可知,驱动程序中 module_i2c_drive()这个宏其实最终是调用 i2c_add_driver(&(ov5640_i2c_driver));注册ov5640_i2c_driver结构体;当我们insmod加载驱动模块文件时,会调用i2c_add_driver()。

该函数定义如下:

#define i2c_add_driver(driver)
i2c_register_driver(THIS_MODULE, driver)

下面我们来追踪i2c_register_driver()这个函数:

其中drv->bus就是我们之前所说的i2c_bus_type,上图中,分别调用了.match、.probe:

struct bus_type i2c_bus_type = {
.name = "i2c",
.match = i2c_device_match,
.probe = i2c_device_probe,
.remove = i2c_device_remove,
.shutdown = i2c_device_shutdown,
.pm = &i2c_device_pm_ops,
};

下面我们来追一追这两个函数

2. i2c_device_match()

i2c_device_match3. i2c_device_probe

如下图所示,通过driver->probe()调用到我们定义的struct i2c_driver ov5640_i2c_driver结构体变量中的ov5640_probe()函数:

i2c_device_probe

【注意】内核代码中大量使用到driver = to_i2c_driver(dev->driver);通过通用的结构体变量成员struct device_driver *driver来查找自己注册的xx_driver地址。

审核编辑:符乾江
声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容侵权或者其他违规问题,请联系本站处理。 举报投诉
  • 驱动
    +关注

    关注

    12

    文章

    1816

    浏览量

    85100
  • I2C
    I2C
    +关注

    关注

    28

    文章

    1473

    浏览量

    122971
收藏 人收藏

    评论

    相关推荐

    RISC V的I2C操作

    函数功能,除了必须通过I2C设备实现的功能:发送start和stop之外,函数本身并没有主从之分;当需要RISC V中的I2C做从设备时,只需监控总线状态(如是否接收到有效的数据等)
    的头像 发表于 11-01 11:06 53次阅读

    飞凌嵌入式ElfBoard ELF 1板卡-i2c与从设备通讯编程示例之i2c编写程序

    i2c控制器和从设备之间通讯的消息,通常是储存在一个结构体中,首先,定义了一个i2c_rdwr_ioctl_data结构体,用于存储i2c通信相关的消息,我们需要规定好消息的数量,
    发表于 10-31 12:00

    I2C协议的基础知识

    本文从I2C协议的概述开始,描述协议的历史、不同速度模式、物理层和数据帧结构,最后介绍I2C混合电压系统中电平兼容性以及上拉电阻大小计算。
    的头像 发表于 10-22 15:51 164次阅读
    <b class='flag-5'>I2C</b>协议的基础知识

    了解I2C总线

    电子发烧友网站提供《了解I2C总线.pdf》资料免费下载
    发表于 10-08 11:13 1次下载
    了解<b class='flag-5'>I2C</b>总线

    I2C基本指南

    电子发烧友网站提供《I2C基本指南.pdf》资料免费下载
    发表于 09-10 09:40 0次下载
    <b class='flag-5'>I2C</b>基本指南

    CAN转I2C桥接器

    电子发烧友网站提供《CAN转I2C桥接器.pdf》资料免费下载
    发表于 08-28 11:10 0次下载
    CAN转<b class='flag-5'>I2C</b>桥接器

    简单认识I2C通信协议

    I2C(Inter-Integrated Circuit)通信协议是由飞利浦公司(现为恩智浦半导体)开发的一种简单、双向二线制同步串行总线协议。自1982年发布以来,I2C协议因其高效、灵活和易于实现的特点,在电子设备间的数据交
    的头像 发表于 07-25 18:06 1187次阅读

    stm32mp135 i2c3无法正常probe怎么解决?

    /board/stmicroelectronics/stm32mp1/linux-dts/stm32mp135f-dk-mx.dts)。 我一共使用了3路i2c,i21,i2c3和i2c
    发表于 07-05 07:30

    什么是I2C协议 I2C总线的控制逻辑

    在实际使用过程中,I2C比较容易出现的一个问题就是死锁 ,死锁在I2C中主要表现为:I2C死锁时表现为SCL为高,SDA一直为低。
    发表于 03-12 09:17 838次阅读
    什么是<b class='flag-5'>I2C</b>协议 <b class='flag-5'>I2C</b>总线的控制逻辑

    GD32 MCU硬件I2C不可靠不如软件I2C?来看看红枫派开发版的硬件I2C驱动如何做到稳得一批

    在一个评论中,看到网友对硬件I2C的讨论,硬件I2C Busy找不到原因、软件I2C稳得一批。
    的头像 发表于 02-23 09:37 2514次阅读
    GD32 MCU硬件<b class='flag-5'>I2C</b>不可靠不如软件<b class='flag-5'>I2C</b>?来看看红枫派开发版的硬件<b class='flag-5'>I2C</b>驱动如何做到稳得一批

    i2c工作原理及使用方法

    的标准。 I2C协议具有以下特点: 简单:I2C使用两根线(数据线SDA和时钟线SCL)进行通信,极大地简化了连接的线路。 多主机:支持多个主机设备同时连接到总线上,可以进行多路复用和地址选择。 高速:
    的头像 发表于 12-19 16:17 1122次阅读

    I2C地址跳变问题的调试案例

    引言:I2C作为使用最为广泛的通讯接口,调试各类I2C器件,大家应该都很轻车熟路。一般对于外挂电阻配置器件的I2C地址,例如电阻上拉之后,器件的地址就会固定下来不再变动,但是今天给大家分享一个自己的调试案例,即
    的头像 发表于 11-22 10:51 1422次阅读
    <b class='flag-5'>I2C</b>地址跳变问题的调试案例

    I2C总线信号与测试案例(一)

    I2C bus是Inter-IC bus的缩写,意思是IC器件之间的通讯总线;I2C 总线的特点如下
    的头像 发表于 11-20 15:45 1767次阅读
    <b class='flag-5'>I2C</b>总线信号与测试案例(一)

    分享I2C总线规范

    电子发烧友网站提供《分享I2C总线规范.pdf》资料免费下载
    发表于 11-18 10:49 0次下载
    分享<b class='flag-5'>I2C</b>总线规范

    UART、SPI、I2C比较 串口通信介绍

    UART、SPI、I2C比较 I2C线更少,比UART、SPI更为强大,但是技术上也更加麻烦些,因为I2C需要有双向IO的支持,而且使用上拉电阻,抗干扰能力较弱,一般用于同一板卡上芯片之间的通信
    的头像 发表于 11-09 18:06 1250次阅读
    UART、SPI、<b class='flag-5'>I2C</b>比较 串口通信介绍