


Linux driver | Create sysfs interface in driver
Preface
In some Linux development boards, you can often see the echo method. Directly control the hardware or modify the driver, for example:
//灯灭 echo 0 >/sys/class/leds/firefly:blue:power/brightness //灯亮 echo 1 >/sys/class/leds/firefly:blue:power/brightness
How to do this?
Actually, this is because the sysfs
interface is provided in the driver for users to use, so that users can use the cat
or echo
command to View and modify the values of certain variables in the driver.
The following describes how to create a sysfs interface in the driver.
sysfs interface creation
Basic steps:
1. UseDEVICE_ATTR
Declare a sys
node
static DEVICE_ATTR(led_status, 0600, led_status_show, led_status_store);
led_status
: The node name displayed in the sys interface
0600
:表示操作这个led_status节点的权限
led_status_show
:使用cat
命令查看sys接口时调用的函数
led_status_store
:使用echo
命令往sys接口写入内容时调用的函数
2、完成sys节点的读写函数
static unsigned int led = 0; /* * sys节点的读函数 * 执行 cat /sys/devices/platform/leds/led_status时会调用 */ static ssize_t led_status_show(struct device *dev, struct device_attribute *attr, char *buf) { //buf是通过cat命令显示到终端的内容,这里显示led变量 return sprintf(buf, "%s:%d.\n", "led", led); } /** * sys节点的写函数 * 用echo命令往sys节点写入内容时,会调用该函数 */ static ssize_t led_status_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { //写入的内容会存放到buf中,这里将buf内容赋值给led变量 sscanf(buf, "%d", &led); return count; }
示例中,led_status_show()
函数和led_status_store()
函数的作用分为打印led变量的值和修改led变量的值.
3、定义struct attribute
和struct attribute_group
数组
static struct attribute *led_attributes[]={ /*上述使用了DEVICE_ATTR声明节点名字为led_status, * 则struct attribute名字应为: * dev_attr_ + (节点名) + .attr * 所以名字为dev_attr_led_status.attr */ &dev_attr_led_status.attr, NULL, }; static const struct attribute_group led_attrs={ .attrs = led_attributes,//引用上述struct attribute数组 };
上述使用了DEVICE_ATTR
声明节点名字为led_status
,
则struct attribute
名字应为:dev_attr_ + (节点名) + .attr
。所以名字为dev_attr_led_status.attr
。
4、在probe函数中调用sysfs_create_group()
函数注册sysfs
接口
完整例子
设备树:
leds:leds{ compatible = "xx,xx-led"; };
驱动:
static unsigned int led = 0; static ssize_t led_status_show(struct device *dev, struct device_attribute *attr, char *buf) { return sprintf(buf, "%s:%d.\n", "led", led); } static ssize_t led_status_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count) { sscanf(buf, "%d", &led); return count; } static DEVICE_ATTR(led_status, 0600, led_status_show, led_status_store); static struct attribute *led_attributes[]={ &dev_attr_led_status.attr, NULL, }; static const struct attribute_group led_attrs={ .attrs = led_attributes, }; static int xx_led_probe(struct platform_device *pdev) { sysfs_create_group(&pdev->dev.kobj, &led_attrs); return 0; } static int xx_led_remove(struct platform_device *pdev) { sysfs_remove_group(&pdev->dev.kobj, &led_attrs); return 0; } static const struct of_device_id xx_led_of_match[] = { {.compatible = "xx,xx-led"}, }; static struct platform_driver xx_led_driver = { .probe = xx_led_probe, .remove = xx_led_remove, .driver = { .name = "xx-led", .owner = THIS_MODULE, .of_match_table = xx_led_of_match, }, }; static int __init xx_led_init(void) { return platform_driver_register(&xx_led_driver ); } static void __exit xx_led_exit(void) { platform_driver_unregister(&xx_led_driver); } module_init(xx_led_init); module_exit(xx_led_exit); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("xx led driver"); MODULE_AUTHOR("Vincent"); MODULE_VERSION("V1.0.00");
驱动加载后,就可以在linux终端中,使用cat
和echo
命令来查看和修改驱动中led
变量的值。例如:
//查看led变量的值 cat /sys/devices/platform/leds/led_status led:0. //修改led变量的值为9 echo 9 > /sys/devices/platform/leds/led_status //查看 cat /sys/devices/platform/leds/led_status led:9.
The above is the detailed content of Linux driver | Create sysfs interface in driver. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

DeepSeek is a powerful intelligent search and analysis tool that provides two access methods: web version and official website. The web version is convenient and efficient, and can be used without installation; the official website provides comprehensive product information, download resources and support services. Whether individuals or corporate users, they can easily obtain and analyze massive data through DeepSeek to improve work efficiency, assist decision-making and promote innovation.

There are many ways to install DeepSeek, including: compile from source (for experienced developers) using precompiled packages (for Windows users) using Docker containers (for most convenient, no need to worry about compatibility) No matter which method you choose, Please read the official documents carefully and prepare them fully to avoid unnecessary trouble.

Ouyi OKX, the world's leading digital asset exchange, has now launched an official installation package to provide a safe and convenient trading experience. The OKX installation package of Ouyi does not need to be accessed through a browser. It can directly install independent applications on the device, creating a stable and efficient trading platform for users. The installation process is simple and easy to understand. Users only need to download the latest version of the installation package and follow the prompts to complete the installation step by step.

BITGet is a cryptocurrency exchange that provides a variety of trading services including spot trading, contract trading and derivatives. Founded in 2018, the exchange is headquartered in Singapore and is committed to providing users with a safe and reliable trading platform. BITGet offers a variety of trading pairs, including BTC/USDT, ETH/USDT and XRP/USDT. Additionally, the exchange has a reputation for security and liquidity and offers a variety of features such as premium order types, leveraged trading and 24/7 customer support.

Gate.io is a popular cryptocurrency exchange that users can use by downloading its installation package and installing it on their devices. The steps to obtain the installation package are as follows: Visit the official website of Gate.io, click "Download", select the corresponding operating system (Windows, Mac or Linux), and download the installation package to your computer. It is recommended to temporarily disable antivirus software or firewall during installation to ensure smooth installation. After completion, the user needs to create a Gate.io account to start using it.

Ouyi, also known as OKX, is a world-leading cryptocurrency trading platform. The article provides a download portal for Ouyi's official installation package, which facilitates users to install Ouyi client on different devices. This installation package supports Windows, Mac, Android and iOS systems. Users can choose the corresponding version to download according to their device type. After the installation is completed, users can register or log in to the Ouyi account, start trading cryptocurrencies and enjoy other services provided by the platform.

Solution to permission issues when viewing Python version in Linux terminal When you try to view Python version in Linux terminal, enter python...

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...
