gpiodev: Add gpiobackend over GUSE nshubin/v9.2.0-gpiodev
authorNikita Shubin <n.shubin@yadro.com>
Wed, 12 Mar 2025 07:37:39 +0000 (10:37 +0300)
committerNikita Shubin <n.shubin@yadro.com>
Thu, 13 Mar 2025 08:18:08 +0000 (11:18 +0300)
commitab18fa175fa1cc6029e42ab60c55f0eb66a4a6ad
tree5bdcb0fac0af0bc3728bc6d78d676956d914145d
parent2dd5ab84aa2b0629a0315ee2c7f492a69b0808a4
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