gpiodev: Add gpiobackend over GUSE b4/gpiodev
authorNikita Shubin <n.shubin@yadro.com>
Wed, 12 Mar 2025 07:37:39 +0000 (10:37 +0300)
committerNikita Shubin <n.shubin@yadro.com>
Wed, 19 Mar 2025 07:06:47 +0000 (10:06 +0300)
commit0c551043a19cec5d456ac22bfc92abb64325be47
tree7392a448141ca33952bb7590be037e47e84bd051
parent5be925406cbd4511c40fa4ea08f325d8adefe977
gpiodev: Add gpiobackend over GUSE

Add GUSE (FUSE based kernel module similiar to CUSE) based backend.

This allows transparent usage of Linux GPIO UAPI based tools like
in kernel tools/gpio or libgpiod.

libgpiod requires some modification to allow "/sys/class/guse" in
gpiod_check_gpiochip_device().

It requires guse module to be loaded and providing DEVICE()->id
for GPIO module, for example:

```
DEVICE(&s->gpio)->id = g_strdup("aspeed-gpio0");
```

The id should be provided to gpiodev with any `devname` that doesn't
exists in /dev:

```
-gpiodev guse,id=aspeed-gpio0,devname=gpiochip10
```

That /dev/gpiochip10 can be used in the same way we usually operate with
gpiochip's.

Link: http://git.maquefel.me/?p=qemu-gpiodev/libgpiod.git;a=shortlog;h=refs/heads/nshubin/guse-fix
Link: http://git.maquefel.me/?p=qemu-gpiodev/guse.git;a=summary
Link: http://git.maquefel.me/?p=qemu-gpiodev/libfuse.git;a=shortlog;h=refs/heads/nshubin/guse
Signed-off-by: Nikita Shubin <n.shubin@yadro.com>
gpiodev/gpio-guse.c [new file with mode: 0644]
gpiodev/meson.build
include/gpiodev/gpio.h
qapi/gpio.json