当前位置:网站首页>IIC bus realizes client device
IIC bus realizes client device
2022-07-05 22:10:00 【wwwlyj123321】
One 、Linux I2C Introduction to drive frame
I2C Bus and platform Bus is similar , It's just platform Bus is a virtual bus , and I2C The bus actually exists .
Linux Medium l2C It is also designed according to the platform bus model , Since it is also designed according to the platform bus model , Is it also divided into one device And a driver Well ? however I2C there device Don't cry device, But is called client.
among I2C Bus driver is SOC Of I2C Controller drive , Generally speaking, it is SOC The manufacturer has achieved good . and I2C The device driver is the user according to their own different devices actualized . The drive of each device is different , But the writing process is one . Let's analyze it in detail .
Two 、 Device side code writing
1、 Do not use device tree files
When you start writing I2C When the device is driven , First, add device information . First, let's take a look at not using the device tree , When using platform files , How to add I2C Equipment information . Pass in the platform file i2c_board_info Structure to describe a specific I2C equipment .
struct i2c_board_info
{
char type[I2C_NAME_SIZE]; /* I2C Device name */
unsigned short flags; /* sign */
unsigned short addr; /* I2C Device address */
void *platform_data;
struct dev_archdata *archdata;
struct device_node *of_node;
struct fwnode_handle *fwnode;
int irq;
};static struct i2c_board_info mx27_3ds_i2c_camera =
{
I2C_BOARD_INFO("ov2640", 0x30),
};Example :
#include <linux/init.h>
#include <linux/module.h>
#include <linux/i2c.h>
struct i2c adapter*i2c_ada;
// Allocate one I2C_client The pointer
struct i2c_cllent*i2c_client;
// Supported by I2C Device list for
struct i2c board_info ft5x06_info[]=
{
// Each item represents a I2C equipment , This sentence means that the name of this device is ft5×06_test, The device address is 0×38
{I2C_BOARD_INFO("ft5×06_test",0x38)},
}
static int ft5x06_client_init(void)
{
// call i2c_get_adapter To obtain a I2C Bus . because t5x06 It is attached to I2C2 On ,
// So this parameter is 1, from 0 Numbered starting
i2c_ada=i2c_get_adapter(1);
// hold I2C CLIENT and I2C Devices are associated
i2c_client=i2c_new_device(i2c_ada,ft5x06_info);
i2c_put_adapter(i2c_ada);// Release I2q
return e;
}
static void ft5x06_client_exit(void)
{
i2c_unregister_device(i2c_client);
}
module_init(ft5x06_client_init);
module_exit(ft5x06_client_exit);
MODULE_LICENSE("GPL");

2、 Use the device tree file
After loading the device tree , stay sys/bus/i2c/devices You can see it under the directory iic Equipment

In the device tree reg It's settings IIC The address of the device , therefore ,edt-ft5x06 The device address of is 0x38

3、 ... and 、driver Side code writing
The basic flow :
- i2c_driver Structure initialization
- After the initialization is completed, the i2c_driver Register into the kernel ,i2c_add_driver
- When the device and driver match successfully , Will execute probe function ,probe Function is to execute a set of processes driven by character devices .
#include <linux/init.h>
#include <linux/module.h>
#include <linux/i2c.h>
static const struct i2c_device_id ft5x06_id_ts[]={
{"xxx",0},
{}
};
static const struct of_device_id ft5x06_id[]=
{
{.compatible="edt,edt-ft5306",0,},
{.compatible="edt,edt-ft5x06",0,},
{.compatible="edt,edt-ft5406",0,},
{}
};
static struct i2c_driver ft5x06_driver={
.driver={
.owner=THIS_MODULE,
.name="ft5×06 test",
.of_match_table=ft5×06_id,// and device Match to use
},
.probe=ft5x06_probe,
.remove=ft5x06_remove,
.idtable=ft5x06_id_ts// It is also used for matching , Usually use of_match_table.
};
int(*probe)(struct l2c_client *i2c_cllent, const struct 12c_device_id * id)
{
// You can register one here misc Equipment or char Equipment
}
static int ft5x06_driver_init(void)
{
int ret;
ret=i2c_add_driver(&ft5x06_driver);
if(ret<0){
printk("i2c_add_ driver is error\n");
return ret;
}
}
static void ft5x06_driver_exit(void)
{
i2c_del_driver(&ft5xo6_driver);
}
module_init(ft5x06_driver_init);
module_exit(ft5x06_driver_exit);
MODULE_LICENSE("GPL"); 边栏推荐
- Alternating merging strings of leetcode simple questions
- AD637使用筆記
- How to add new fields to mongodb with code (all)
- The solution to the problem that Oracle hugepages are not used, causing the server to be too laggy
- K210 learning notes (IV) k210 runs multiple models at the same time
- 2022-07-05: given an array, you want to query the maximum value in any range at any time. If it is only established according to the initial array and has not been modified in the future, the RMQ meth
- poj 3237 Tree(樹鏈拆分)
- Unique occurrence times of leetcode simple questions
- Database tuning solution
- Index optimization of performance tuning methodology
猜你喜欢

U盘的文件无法删除文件怎么办?Win11无法删除U盘文件解决教程

Sentinel production environment practice (I)

How can Bluetooth in notebook computer be used to connect headphones

boundary IoU 的计算方式

Two stage locking protocol for concurrency control

Search: Future Vision (moving sword)

MySQL连接断开报错MySQLdb._exceptions.OperationalError 4031, The client was disconnected by the server

Deeply convinced plan X - network protocol basic DNS

The American Championship is about to start. Are you ready?

Shell script, awk condition judgment and logic comparison &||
随机推荐
PyGame practical project: write Snake games with 300 lines of code
Win11运行cmd提示“请求的操作需要提升”的解决方法
如何向mongoDB中添加新的字段附代码(全)
如何開發引入小程序插件
Leetcode simple question ring and rod
Poj3414 extensive search
装饰器学习01
Decorator learning 01
Pl/sql basic case
Implementing Lmax disruptor queue from scratch (IV) principle analysis of multithreaded producer multiproducersequencer
Net small and medium-sized enterprise project development framework series (one)
Server optimization of performance tuning methodology
MySQL服务莫名宕机的解决方案
从零开始实现lmax-Disruptor队列(四)多线程生产者MultiProducerSequencer原理解析
Livelocks and deadlocks of concurrency control
database mirroring
Tips for using SecureCRT
Promql demo service
Bitbucket installation configuration
Performance testing of software testing