系统i2c驱动在Linux系统上的应用(i2c驱动linux)

系统I2C驱动说明:

I2C(Inter-Integrated Circuit)是一种消息式命令和响应式控制系统,通常被用于多系统(主机系统和外设)之间的总线通信。由于I2C电力低且性能好,它经常用于执行不同的异构系统之间的感应,控制,存储和数据交换操作,并被广泛应用在许多行业中。

Linux是一个自由和开放源代码的操作系统,具有优秀的I/O性能,因此它在开发中使用I2C更为常见。Linux提供了一种可以完全控制I2C总线的方式,使应用程序可以完全控制I2C总线,而不需要专用硬件。因此,在Linux中使用I2C驱动是必不可少的。

I2C驱动在Linux中的应用:

Linux下的I2C驱动分三类:驱动程序层,设备和速度层次。驱动程序层的I2C驱动用于初始化设备,设定总线的时钟频率,激活和管理总线中设备的活动,以及实现设备之间的数据传输。设备层的I2C驱动可以明确管理特定于一个设备的I2C接口,并进一步延展到驱动程序中支持功能。速度层次的I2C驱动涉及对总线线速,协议和时钟延迟的控制。

为了给Linux内核提供内核态I2C驱动,内核应该支持以下特性:在内核空间调用I2C接口,控制I2C总线中设备的活动,在内核空间进行数据传输,通过芯片的全部特性控制设备,在内核空间调用I2C命令,并且I2C应用程序可以实现对应用程序的控制。

下面是Linux下的I2C Linux驱动程序:

/*

* i2c-core.c – a device driver for the I2C bus interface

*

* This file is part of the Linux kernel.

*

* Copyright (C) 2002-2009 Albert Huang

*

* This program is free software; you can redistribute it and/or modify

* it under the terms of the GNU General Public License as published by

* the Free Software Foundation; either version 2 of the License, or

* (at your option) any later version.

*

* This program is distributed in the hope that it will be useful,

* but WITHOUT ANY WARRANTY; without even the implied warranty of

* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the

* GNU General Public License for more details.

*

* You should have received a copy of the GNU General Public License

* along with this program; if not, write to the Free Software

* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA

*/

#include

#include

#include

/* Linux I2C bus driver structure */

static struct i2c_driver i2c_core_driver = {

.driver = {

.name = “i2c-core”

},

.id_table = i2c_core_ids,

.probe = i2c_core_probe,

.remove = i2c_core_remove,

};

/* register the I2C driver in the Linux kernel */

static int __init i2c_core_init(void)

{

return i2c_add_driver(&i2c_core_driver);

}

/* unregister the I2C driver in the Linux kernel */

static void __exit i2c_core_exit(void)

{

i2c_del_driver(&i2c_core_driver);

}

module_init(i2c_core_init);

module_exit(i2c_core_exit);

总结:

I2C驱动在Linux中得到了广泛的应用,它提供了在Linux中完全控制I2C总线的方式,并且可以让应用程序完全控制I2C总线,而无需使用专用的硬件设备。Linux下的I2C驱动主要由驱动程序层,设备层和速度层三部分组成,他们分别实现了Linux内核的I2C控制功能,控制I2C总线的活动,设置总线的时钟频率,进行数据传输和设备管理等操作。


数据运维技术 » 系统i2c驱动在Linux系统上的应用(i2c驱动linux)