Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have some question about Linux kernel and GPIOs. I know that in Linux everything is file so when I do something like

echo 30 > /sys/class/gpio/export

and

echo 1 > /sys/class/gpio/gpio30/value

what really happens? I mean how does sysfs handle that? Does it call system calls implemented in gpiolib?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
405 views
Welcome To Ask or Share your Answers For Others

1 Answer

The gpiolib registers the value attribute in this way:

 static const DEVICE_ATTR(value, 0644, gpio_value_show, gpio_value_store);

It creates a device attribute named value, with permission 644; on read it calls gpio_value_show, on write it calls gpio_value_store

What sysfs does, is to redirect read and write to the correspondent function of a sysfs attribute.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share

548k questions

547k answers

4 comments

86.3k users

...