ctxless: provide new event monitor
authorBartosz Golaszewski <bartekgola@gmail.com>
Thu, 27 Sep 2018 08:47:14 +0000 (10:47 +0200)
committerBartosz Golaszewski <bartekgola@gmail.com>
Sun, 7 Oct 2018 08:34:26 +0000 (10:34 +0200)
commit61498a0ee52a72f609f811c3bf7eba6530667272
tree639c838cac9be5a16be4dc69aad13f5d9caed88c
parentbbcc88336b20e6bcab6e61e3df7a5d8413416d83
ctxless: provide new event monitor

Current implementation of gpiod_ctxless_event_loop() (and its variant
for multiple lines) always requests GPIO lines for listening for both
rising and falling edge events. This causes a problem when the
underlying hardware doesn't allow this.

It can e.g. result in the following error raised by the interrupt
controller:

  genirq: Setting trigger mode 3 for irq 107 failed (kempld_irq_set_type+0x0/0x130 [gpio_kempld])

For the sake of backward compatibility we're leaving the old
implementation in place and provide two new routines that that take an
additional parameter allowing users to specify the events libgpiod
should listen for.

Signed-off-by: Bartosz Golaszewski <bartekgola@gmail.com>
include/gpiod.h
src/lib/ctxless.c