gpiodev: Add GPIO device frontend
authorNikita Shubin <n.shubin@yadro.com>
Fri, 7 Mar 2025 10:15:15 +0000 (13:15 +0300)
committerNikita Shubin <n.shubin@yadro.com>
Wed, 12 Mar 2025 09:21:05 +0000 (12:21 +0300)
commit2bab31b35b64eb61186386bfc73ca8cb578a4188
tree8d41a97e8701e6835cb4a6e8e650a0e5c3018ef2
parentca25147d137da373c55b3ed0f937c6630d656e1a
gpiodev: Add GPIO device frontend

Add GPIO device front end with helper functions to provide information
about GPIO Port to Backends and to allow Frontend to set data.

To use it GPIO device should register with qemu_gpio_fe_init()
and provide handlers with qemu_gpio_fe_set_handlers().

Notifications about config and changed value events should be done with
qemu_gpio_fe_line_event() and qemu_gpio_fe_config_event().

Signed-off-by: Nikita Shubin <n.shubin@yadro.com>
gpiodev/gpio-fe.c [new file with mode: 0644]
gpiodev/gpio.c
gpiodev/meson.build
include/gpiodev/gpio-fe.h [new file with mode: 0644]
include/gpiodev/gpio.h
qom/object.c