treewide: libgpiod v2 implementation
authorBartosz Golaszewski <brgl@bgdev.pl>
Thu, 25 Mar 2021 08:26:37 +0000 (09:26 +0100)
committerBartosz Golaszewski <brgl@bgdev.pl>
Mon, 31 Oct 2022 10:15:14 +0000 (11:15 +0100)
commitb7ba732e6a93313d4609c4d3ffb426996bf68d02
tree6e34bf6355ee0b2bfad0b90eeb55dfd5cf7bf19a
parent7311e1d5b9473ab561977bd730acb793821a683f
treewide: libgpiod v2 implementation

This commit is the result of a squash of all the commits created during
the development of libgpiod v2. This is done to preserve bisectability
of the git tree. It contains significant re-writes of the core C library
as well as C++ and python bindings. The tools have been adjusted to work
with the new API but have not undergone significant changes yet.

This commit contains the bulk of the work on libgpiod v2 but the
development continues with more changes planned.

Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
[Ben: fix format specifier for uint64_t]
Signed-off-by: Ben Hutchings <ben.hutchings@mind.be>
[Viresh: Fix ioctl number for gpiod_line_request_reconfigure_lines()]
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
[Kent: bug fixes, improvements, better pointer contracts, type strictness]
Signed-off-by: Kent Gibson <warthog618@gmail.com>
170 files changed:
.gitignore
Doxyfile.in
bindings/cxx/Makefile.am
bindings/cxx/chip-info.cpp [new file with mode: 0644]
bindings/cxx/chip.cpp
bindings/cxx/edge-event-buffer.cpp [new file with mode: 0644]
bindings/cxx/edge-event.cpp [new file with mode: 0644]
bindings/cxx/examples/Makefile.am
bindings/cxx/examples/gpiodetectcxx.cpp
bindings/cxx/examples/gpiofindcxx.cpp
bindings/cxx/examples/gpiogetcxx.cpp
bindings/cxx/examples/gpioinfocxx.cpp
bindings/cxx/examples/gpiomoncxx.cpp
bindings/cxx/examples/gpiosetcxx.cpp
bindings/cxx/exception.cpp [new file with mode: 0644]
bindings/cxx/gpiod.hpp
bindings/cxx/gpiodcxx/Makefile.am [new file with mode: 0644]
bindings/cxx/gpiodcxx/chip-info.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/chip.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/edge-event-buffer.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/edge-event.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/exception.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/info-event.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/line-config.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/line-info.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/line-request.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/line-settings.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/line.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/misc.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/request-builder.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/request-config.hpp [new file with mode: 0644]
bindings/cxx/gpiodcxx/timestamp.hpp [new file with mode: 0644]
bindings/cxx/info-event.cpp [new file with mode: 0644]
bindings/cxx/internal.cpp [new file with mode: 0644]
bindings/cxx/internal.hpp
bindings/cxx/iter.cpp [deleted file]
bindings/cxx/line-config.cpp [new file with mode: 0644]
bindings/cxx/line-info.cpp [new file with mode: 0644]
bindings/cxx/line-request.cpp [new file with mode: 0644]
bindings/cxx/line-settings.cpp [new file with mode: 0644]
bindings/cxx/line.cpp
bindings/cxx/line_bulk.cpp [deleted file]
bindings/cxx/misc.cpp [new file with mode: 0644]
bindings/cxx/request-builder.cpp [new file with mode: 0644]
bindings/cxx/request-config.cpp [new file with mode: 0644]
bindings/cxx/tests/Makefile.am
bindings/cxx/tests/check-kernel.cpp [new file with mode: 0644]
bindings/cxx/tests/gpio-mockup.cpp [deleted file]
bindings/cxx/tests/gpio-mockup.hpp [deleted file]
bindings/cxx/tests/gpiod-cxx-test.cpp [deleted file]
bindings/cxx/tests/gpiosim.cpp [new file with mode: 0644]
bindings/cxx/tests/gpiosim.hpp [new file with mode: 0644]
bindings/cxx/tests/helpers.cpp [new file with mode: 0644]
bindings/cxx/tests/helpers.hpp [new file with mode: 0644]
bindings/cxx/tests/tests-chip-info.cpp [new file with mode: 0644]
bindings/cxx/tests/tests-chip.cpp
bindings/cxx/tests/tests-edge-event.cpp [new file with mode: 0644]
bindings/cxx/tests/tests-event.cpp [deleted file]
bindings/cxx/tests/tests-info-event.cpp [new file with mode: 0644]
bindings/cxx/tests/tests-iter.cpp [deleted file]
bindings/cxx/tests/tests-line-config.cpp [new file with mode: 0644]
bindings/cxx/tests/tests-line-info.cpp [new file with mode: 0644]
bindings/cxx/tests/tests-line-request.cpp [new file with mode: 0644]
bindings/cxx/tests/tests-line-settings.cpp [new file with mode: 0644]
bindings/cxx/tests/tests-line.cpp
bindings/cxx/tests/tests-misc.cpp [new file with mode: 0644]
bindings/cxx/tests/tests-request-config.cpp [new file with mode: 0644]
bindings/python/.gitignore [new file with mode: 0644]
bindings/python/Makefile.am
bindings/python/examples/Makefile.am
bindings/python/examples/gpiodetect.py
bindings/python/examples/gpiofind.py
bindings/python/examples/gpioget.py
bindings/python/examples/gpioinfo.py
bindings/python/examples/gpiomon.py
bindings/python/examples/gpioset.py
bindings/python/examples/helpers.py [new file with mode: 0644]
bindings/python/gpiod/Makefile.am [new file with mode: 0644]
bindings/python/gpiod/__init__.py [new file with mode: 0644]
bindings/python/gpiod/chip.py [new file with mode: 0644]
bindings/python/gpiod/chip_info.py [new file with mode: 0644]
bindings/python/gpiod/edge_event.py [new file with mode: 0644]
bindings/python/gpiod/exception.py [new file with mode: 0644]
bindings/python/gpiod/ext/Makefile.am [new file with mode: 0644]
bindings/python/gpiod/ext/chip.c [new file with mode: 0644]
bindings/python/gpiod/ext/common.c [new file with mode: 0644]
bindings/python/gpiod/ext/internal.h [new file with mode: 0644]
bindings/python/gpiod/ext/line-config.c [new file with mode: 0644]
bindings/python/gpiod/ext/line-settings.c [new file with mode: 0644]
bindings/python/gpiod/ext/module.c [new file with mode: 0644]
bindings/python/gpiod/ext/request.c [new file with mode: 0644]
bindings/python/gpiod/info_event.py [new file with mode: 0644]
bindings/python/gpiod/internal.py [new file with mode: 0644]
bindings/python/gpiod/line.py [new file with mode: 0644]
bindings/python/gpiod/line_info.py [new file with mode: 0644]
bindings/python/gpiod/line_request.py [new file with mode: 0644]
bindings/python/gpiod/line_settings.py [new file with mode: 0644]
bindings/python/gpiodmodule.c [deleted file]
bindings/python/setup.py [new file with mode: 0644]
bindings/python/tests/Makefile.am
bindings/python/tests/__init__.py [new file with mode: 0644]
bindings/python/tests/__main__.py [new file with mode: 0644]
bindings/python/tests/gpiod_py_test.py [deleted file]
bindings/python/tests/gpiomockupmodule.c [deleted file]
bindings/python/tests/gpiosim/Makefile.am [new file with mode: 0644]
bindings/python/tests/gpiosim/__init__.py [new file with mode: 0644]
bindings/python/tests/gpiosim/chip.py [new file with mode: 0644]
bindings/python/tests/gpiosim/ext.c [new file with mode: 0644]
bindings/python/tests/helpers.py [new file with mode: 0644]
bindings/python/tests/tests_chip.py [new file with mode: 0644]
bindings/python/tests/tests_chip_info.py [new file with mode: 0644]
bindings/python/tests/tests_edge_event.py [new file with mode: 0644]
bindings/python/tests/tests_info_event.py [new file with mode: 0644]
bindings/python/tests/tests_line_info.py [new file with mode: 0644]
bindings/python/tests/tests_line_request.py [new file with mode: 0644]
bindings/python/tests/tests_line_settings.py [new file with mode: 0644]
bindings/python/tests/tests_module.py [new file with mode: 0644]
configure.ac
include/gpiod.h
lib/Makefile.am
lib/chip-info.c [new file with mode: 0644]
lib/chip.c [new file with mode: 0644]
lib/core.c [deleted file]
lib/edge-event.c [new file with mode: 0644]
lib/helpers.c [deleted file]
lib/info-event.c [new file with mode: 0644]
lib/internal.c [new file with mode: 0644]
lib/internal.h
lib/line-config.c [new file with mode: 0644]
lib/line-info.c [new file with mode: 0644]
lib/line-request.c [new file with mode: 0644]
lib/line-settings.c [new file with mode: 0644]
lib/misc.c
lib/request-config.c [new file with mode: 0644]
lib/uapi/gpio.h
tests/Makefile.am
tests/gpiod-test-helpers.c [new file with mode: 0644]
tests/gpiod-test-helpers.h [new file with mode: 0644]
tests/gpiod-test-sim.c [new file with mode: 0644]
tests/gpiod-test-sim.h [new file with mode: 0644]
tests/gpiod-test.c
tests/gpiod-test.h
tests/gpiosim/Makefile.am
tests/gpiosim/gpiosim-selftest.c
tests/gpiosim/gpiosim.c
tests/gpiosim/gpiosim.h
tests/mockup/Makefile.am [deleted file]
tests/mockup/gpio-mockup.c [deleted file]
tests/mockup/gpio-mockup.h [deleted file]
tests/tests-chip-info.c [new file with mode: 0644]
tests/tests-chip.c
tests/tests-edge-event.c [new file with mode: 0644]
tests/tests-event.c [deleted file]
tests/tests-info-event.c [new file with mode: 0644]
tests/tests-line-config.c [new file with mode: 0644]
tests/tests-line-info.c [new file with mode: 0644]
tests/tests-line-request.c [new file with mode: 0644]
tests/tests-line-settings.c [new file with mode: 0644]
tests/tests-line.c [deleted file]
tests/tests-misc.c
tests/tests-request-config.c [new file with mode: 0644]
tools/gpio-tools-test.bats
tools/gpiodetect.c
tools/gpiofind.c
tools/gpioget.c
tools/gpioinfo.c
tools/gpiomon.c
tools/gpioset.c
tools/tools-common.c
tools/tools-common.h