linux驱动—在自己的总线目录下创建属性文件

在总线目录下创建属性文件以扩展其功能。 通过创建属性文件, 我们可以为总线添加额外的信息和控制选项, 以便与设备和驱动进行交互。 简单就是,属性文件,可以完成用户空间和内核空间的数据交互, 比如在应用层快速修改gpio引脚的电平。

介绍一下API

bus_create_file() 函数用于在总线的 sysfs 目录下创建一个属性文件。

参数说明:​

bus: 指向总线类型结构体 struct bus_type 的指针, 表示要在这个目录下创建属性文件的 总线。​

attr:指向属性 struct bus_attribute的指针, 表示要创建的属性文件的属性。

函数原型:

int bus_create_file(struct bus_type *bus,struct bus_attribute *attr);

在调用 bus_create_file()函数之前, 需要先定义好属性结构体 struct bus_attribute *attr, 并将其相关字段填充好。 通常, 属性结构体会包含以下字段:

第一个字段,attr

static ssize_t my_show (struct bus_type *bus, char *buf)
{
    // 在 sysfs 中显示总线的值​
    return sprintf(buf, "%s\n", "mybus_show");
}

static ssize_t my_store(struct bus_type *bus, const char *buf, size_t count)
{
    // 在 sysfs 中显示总线的值​
    return sprintf(buf, "%s\n", "mybus_show");
}

struct bus_attribute mybus_attr = {
    /*属性文件的名字和操作权限*/
    .attr = {
        .name = "value",
        .mode = 0664,
    },
    .show = my_show,
    .store= my_store,

};

代码编写

#include <linux/module.h>
#include <linux/init.h>
#include <linux/slab.h>
#include <linux/configfs.h>
#include <linux/kernel.h>
#include <linux/kobject.h>
#include <linux/device.h>
#include <linux/sysfs.h>


int mybus_match(struct device *dev, struct device_driver *drv)
{
    // 检查设备名称和驱动程序名称是否匹配
    return (strcmp(dev_name(dev), drv->name) == 0);
}

int mybus_probe(struct device *dev)
{
    struct device_driver *drv = dev->driver;
    if(drv->probe)
    {
        drv->probe(dev);
    }
    return 0;
}

static ssize_t my_show (struct bus_type *bus, char *buf)
{
    // 在 sysfs 中显示总线的值​
    return sprintf(buf, "%s\n", "mybus_show");
}

static ssize_t my_store(struct bus_type *bus, const char *buf, size_t count)
{
    // 在 sysfs 中显示总线的值​
    return sprintf(buf, "%s\n", "mybus_show");
}

struct bus_attribute mybus_attr = {
    /*属性文件的名字和操作权限*/
    .attr = {
        .name = "value",
        .mode = 0664,
    },
    .show = my_show,
    .store= my_store,

};

struct bus_type mybus ={
    .name  = "mabus",        // 总线的名称
    .match =  mybus_match,   // 设备和驱动程序匹配的回调函数
    .probe =  mybus_probe,   //设备探测的回调函数
}

EXPORT_SYMBOL_GPL(mybus);             // 导出总线符号

static int bus_attr_init (void)
{
    int ret;
    ret = bus_register(&mybus);      // 注册总线
    buf_create_file(&mybus, &mybus_attr);
    return 0;
}

static void bus_attr_exit (void)
{
    bus_remove_file(&mybus, &mybus_attr);  // 从 sysfs 中移除属性文件​
    bus_unregister(&mybus);                // 取消注册总线
}


/* 加载和卸载*/
module_init(bus_attr_init);
module_eixt(bus_attr_exit );
MODULE_LICENSE("GPL");
MODULE_AUTHOR("xiaoyang");

看现象

相关推荐
团儿.27 分钟前
KVM磁盘配置:构建高效虚拟环境的基石
linux·运维·centos·kvm·kvm磁盘
zhqh1001 小时前
在qemu-system上跑arm-Debian
linux·arm开发·debian
昨天今天明天好多天1 小时前
【Linux】Redis 部署
linux·redis·bootstrap
hanzhuhuaa1 小时前
Linux 查看 nginx 安装目录和配置文件路径
linux·nginx
惊鸿一博2 小时前
linux_电脑一运行程序就死机怎么处理?
linux·运维·电脑
环能jvav大师2 小时前
使用Ubuntu系统+VS Code开发STC51单片机
linux·c语言·开发语言·单片机·嵌入式硬件·ubuntu
HEX9CF3 小时前
【Linux】SQLite 数据库安装教程(Ubuntu 22.04)
linux·数据库·sqlite
kimi-2223 小时前
Linux 常用命令二
linux
苏湘涵3 小时前
socket编程---UDP
linux·开发语言·网络·php·进程通信
、十一、3 小时前
Linux中ES的安装
linux·运维·elasticsearch