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

Categories

0 votes
401 views
in Technique[技术] by (71.8m points)

Linux GPIOs handling

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

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

1 Answer

0 votes
by (71.8m points)

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...