做嵌入式6个月,说道sysfs接口,就不得不提到函数宏 DEVICE_ATTR原型是#define DEVICE_ATTR(_name, _mode, _show, _store)
struct device_attribute dev_attr_##_name = __ATTR(_name, _mode, _show, _store)
函数宏DEVICE_ATTR内封装的是__ATTR(_name,_mode,_show,_stroe)方法,_show表示的是读方法,_stroe表示的是写方法。
当然_ATTR不是独生子女,他还有一系列的姊妹__ATTR_RO宏只有读方法,__ATTR_NULL等等
如对设备的使用DEVICE_ATTR,对总线使用BUS_ATTR,对驱动使用DRIVER_ATTR,对类别(class) 使用CLASS_ATTR,这四个高级的宏来自于<include/linux/device.h>
DEVICE_ATTR宏声明有四个参数,分别是名称、权限位、读函数、写函数。其中读函数和写函数是读写功能函数的函数名。
1、如果你完成了DEVICE_ATTR函数宏的填充,下面就需要创建接口了
例如:
staticDEVICE_ATTR(polling, S_IRUGO | S_IWUSR, show_polling, set_polling);
static struct attribute *dev_attrs[] = {
&dev_attr_polling.attr,
NULL,
};
eg:staticDEVICE_ATTR(proximity_poll_delay, S_IRUGO | S_IWUGO, proximity_poll_delay_show, proximity_poll_delay_store);
static struct device_attribute dev_attr_proximity_enable =
__ATTR(enable, S_IRUGO | S_IWUGO, proximity_enable_show, proximity_enable_store);
当你想要实现的接口名字是polling的时候,需要实现结构体struct attribute*dev_attrs[]
其中成员变量的名字必须是&dev_attr_polling.attr
eg: static struct attribute *proximity_sysfs_attrs[] = {
&dev_attr_proximity_enable.attr,
&dev_attr_proximity_poll_delay.attr,
2、然后再封装
static structattribute_group dev_attr_grp = {
.attrs = dev_attrs,
};
eg:static struct attribute_group proximity_attribute_group = {
.attrs = proximity_sysfs_attrs,
通过以上简单的三个步骤,就可以在adb shell 终端查看到接口了。当我们将数据 echo 到接口中时,在上层实际上完成了一次 write 操作,对应到 kernel ,调用了驱动中的 “store”。同理,当我们cat 一个 接口时则会调用 “show” 。到这里,只是简单的建立了 android 层到 kernel 的桥梁,真正实现对硬件操作的,还是在 "show" 和 "store" 中完成的。
创建设备节点的一般固定用法:
首先定义设备:
static DEVICE_ATTR(fw_version,S_IRUGO,mxt_fw_version_show, mxt_fw_version_store);
第二部增加结构体:
static struct attribute *mxt_attrs[] ={
&dev_attr_fw_version.attr,
NULL
}
static const struct attribute_group mxt_attr_group = {
.attr = mxt_attrs,
}
最后创建节点:
sysfs_create_group(&client->dev.kobj.&mxt_attr_group);
写好,希望大家多多留言,