core: add support for bias flags
authorKent Gibson <warthog618@gmail.com>
Sun, 1 Dec 2019 03:23:48 +0000 (11:23 +0800)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Mon, 9 Dec 2019 16:45:41 +0000 (17:45 +0100)
commit26d8d8f0b7bc0e300aaab05c75d5af1b0686af08
tree18d1672afc1f77f8223bcb8c3606c0a5f4e1d9de
parent00418dfdfc8bc1c6a1430f781f8a59808b57508f
core: add support for bias flags

Extend the libgpiod API to support the bias flags recently added to the
kernel GPIO uAPI.  The core change is the addition of
GPIOD_LINE_REQUEST_FLAG_BIAS_DISABLE, GPIOD_LINE_REQUEST_FLAG_BIAS_PULL_UP
and GPIOD_LINE_REQUEST_FLAG_BIAS_PULL_DOWN flags to be passed into
line_request functions, and the addition of gpiod_line_bias to return the
bias state of lines.

Variants of the ctxless functions that accept an active_low flag
are added to also accept other flags. The variant names add a "_ext"
suffix to the name of the original function.

Based on initial work by Drew Fustini <drew@pdp7.com>.

Signed-off-by: Kent Gibson <warthog618@gmail.com>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
include/gpiod.h
lib/core.c
lib/ctxless.c