虚拟文件系统

PROC

最初开发 /proc 文件系统是为了提供有关系统中进程的信息。但是由于这个文件系统非常有用,因此内核中的很多元素也开始使用它来报告信息,或启用动态运行时配置。

        entry = create_proc_entry(XXX_DEVICE_PROC_NAME, 0, NULL);  
        if(entry) {  
            entry->owner = THIS_MODULE;  
            entry->read_proc = xxx_proc_read;  
            entry->write_proc = xxx_proc_write;  
        }  
    }  
    static ssize_t xxx_proc_write(struct file* filp, const char __user *buff, unsigned long len, void* data) {  
   
    //先把用户提供的缓冲区值拷贝到内核缓冲区中去
    copy_from_user...

    }  
 static ssize_t xxx_proc_read(char* page, char** start, off_t off, int count, int* eof, void* data) {  
 

//在用户或应用程序访问该proc文件时,就会调用这个函数,实现这个函数时只需将想要让用户看到的内容放入page即可
//page 参数是这些数据写入到的位置,其中 count 定义了可以写入的最大字符数。在返回多页数据(通常一页是 4KB)时,我们需要使用 start和 off 参数
//此处提供的 page 缓冲区在内核空间中

    }  
    

其他的一些函数

create_proc_entry()创建一个文件
proc_symlink() 创建符号链接
proc_mknod() 创建设备文件
proc_mkdir() 创建目录
remove_proc_entry() 删除文件或目录

SYSFS

比proc组织更好

block/ 
bus/    每个总线包含两个目录 devices/ drivers/
class/
dev/
devices/   ==>  device tree
firmware/
net/
fs/

sysfs接口创建驱动对应的属性,使得可以在用户空间通过sysfs接口的show和store函数与硬件交互;

函数宏

DEVICE_ATTR;
BUS_ATTR
DRIVER_ATTR
#define DEVICE_ATTR(_name, _mode, _show, _store) \
     struct device_attribute dev_attr_##_name = __ATTR(_name, _mode, _show, _store)
     
 struct device_attribute {
     struct attribute    attr;
     ssize_t (*show)(struct device *dev, struct device_attribute *attr,
             char *buf);
     ssize_t (*store)(struct device *dev, struct device_attribute *attr,
              const char *buf, size_t count);
 };
  static ssize_t xxx_show(struct device *d, struct device_attribute*attr, char *buf)
  {
 
  }
  
  static ssize_t xxx_store(struct device *d, struct device_attribute *attr,const char *buf,size_t count)
  {

 }
  
 static DEVICE_ATTR(xxx_name, S_IWUSR |S_IRUGO, xxx_show, xxx_store);
//属性结构体数组最后一项必须以NULL结尾。
 static struct attribute *xxx_attrs[] = {
        &dev_attr_xxx.attr,
        NULL
 };

模块加载的时候创建/sys/class/classxxx, /dev/devXXX

没有总线的字符设备驱动

在驱动init实现

1. /sys/class/下创建类目录
struct class *class_create(struct module *owner, const char *name)

返回 class 结构体
一个struct class结构体类型变量对应一个类

2. 创建设备节点
static struct device_attribute door_dev_attrs[] = {
    __ATTR(door_io2, S_IWUGO, NULL, door_io2_store),
    __ATTR(door_io1, S_IRUGO, door_io1_show, NULL),
    __ATTR_NULL
};

    g_door_class->dev_attrs = door_dev_attrs;
    device_create(g_door_class, NULL, g_devid, &(door_devdata->io_data), DEV_NAME);

devt:设备号
alloc_chrdev_region(&g_devid, 0, 1, DEV_NAME);
或者
MKDEV(tmp_major, 0)

platform总线驱动下添加

在probe函数中实现

调用device_create_file创建属性节点

ret = device_create_file(psy->dev,&axp_charger_attrs[j]);

一次创建多个属性节点group

 static const struct attribute_group xxx_attr_grp = {
         .attrs = xxx_attrs,
         
  }
ret = sysfs_create_group(&pdev->dev.kobj,&gpio_attr_grp);

//sysfs_create_group()在kobj目录下创建一个属性集合,并显示集合中的属性文件。如果文件已存在,会报错

类的属性的创建

class_attribute

static struct class_attribute axppower_class_attrs[] = {
    __ATTR(vbuslimit,S_IRUGO|S_IWUSR,vbuslimit_show,vbuslimit_store),
    __ATTR(axpdebug,S_IRUGO|S_IWUSR,axpdebug_show,axpdebug_store),
    __ATTR(longkeypoweroff,S_IRUGO|S_IWUSR,longkeypoweroff_show,longkeypoweroff_store),
    __ATTR(out_factory_mode,S_IRUGO|S_IWUSR,out_factory_mode_show,out_factory_mode_store),
    __ATTR(pmu_temp,S_IRUGO|S_IWUSR,pmu_temp_show,pmu_temp_store),
    __ATTR_NULL
};
static struct class axppower_class = {
    .name = "axppower",
    .class_attrs = axppower_class_attrs,
};

class_register(&axppower_class);

注册
class_register 和class_create作用相同,参数用法不同而已。

你可能感兴趣的:(虚拟文件系统)