当前位置:网站首页>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"); 边栏推荐
- Summary of concurrency control
- poj 3237 Tree(树链拆分)
- Summary of El and JSTL precautions
- EBS Oracle 11g cloning steps (single node)
- The solution to the problem that Oracle hugepages are not used, causing the server to be too laggy
- 装饰器学习01
- 数据泄露怎么办?'华生·K'7招消灭安全威胁
- Matlab | app designer · I used Matlab to make a real-time editor of latex formula
- Implementation technology of recovery
- 等到产业互联网时代真正发展成熟,我们将会看待一系列的新产业巨头的出现
猜你喜欢

Countdown to 92 days, the strategy for the provincial preparation of the Blue Bridge Cup is coming~

Overview of database recovery

EBS Oracle 11g cloning steps (single node)

What about data leakage? " Watson k'7 moves to eliminate security threats

Promql demo service

Database recovery strategy

ICMP 介绍

Type of fault

Two stage locking protocol for concurrency control

A number of ventilator giants' products have been recalled recently, and the ventilator market is still in incremental competition
随机推荐
Common interview questions of JVM manufacturers
Two stage locking protocol for concurrency control
1.3 years of work experience, double non naked resignation agency face-to-face experience [already employed]
"Chris Richardson microservices series" uses API gateway to build microservices
PyGame practical project: write Snake games with 300 lines of code
The difference between MVVM and MVC
他们主动布局(autolayout)环境的图像编辑器
Multiplexing of Oracle control files
科技云报道荣膺全球云计算大会“云鼎奖”2013-2022十周年特别贡献奖
Text组件新增内容通过tag_config设置前景色、背景色
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
Technology cloud report won the special contribution award for the 10th anniversary of 2013-2022 of the "cloud Ding Award" of the global cloud computing conference
Create a virtual machine on VMware (system not installed)
Blocking protocol for concurrency control
MySQL actual combat 45 lecture learning (I)
crm创建基于fetch自己的自定义报告
Oracle hint understanding
A number of ventilator giants' products have been recalled recently, and the ventilator market is still in incremental competition
Common interview questions of redis factory
Storage optimization of performance tuning methodology