libsoc is a C library to interface with common peripherals found in System on Chips through generic Linux Kernel interfaces.
It is aimed at new Linux users, and intends to be a stepping stone to enable a user to get started quickly. It is optimised for reliability rather than speed. While the library should be fast, no guarantees are made on it's determinism and it should not be used in time critical routines.
libsoc was born due to the influx of new embedded Linux boards becoming available cheap, and to hobbyists. There are currently numerous libraries that do interfacing with common SoC peripherals, but they all tend to be centred around a particular board or SoC. This leads to board specific hacks and in some cases direct bypassing of the Linux Kernel.
libsoc aims to be generic and compatible with any SoC that has drivers exposing the correct interfaces for the defined peripheral.
Current Support:
Future ideas are:
Please see the roadmap folder for more information
The real question here is, do your SoC drivers use the generic Linux Kernel interfaces to expose functionality to userspace. If the answer is yes, then libsoc supports your board!
libsoc is licenced under the LGPLv2.1, please see the COPYING file for futher details.
libsoc uses the autotools build system. A script called autogen.sh is included to setup the build. Exact steps:
1) ./autogen.sh
2) ./configure [--disable-debug] [--enable-board=
--disable-debug : disables the debug code, turn off the debug to get the fastest operation but at the cost of any debug print outs. Ommiting this flag will leave debug enabled. --enable-board : install board specific GPIO pin mappings file. This enables the use of the libsocboardgpioid function to look up GPIO ID's based on how the pin is named for a supported board. Supported board can be found under ./contrib/boardfiles
The libsoc public functions are documented in the include files in the lib/include directory. There are also test programs in the test/ directory which give examples of use.
libsoc is Open Source Software and as such you are welcome to browse the code and either add features, or fix bugs. Please submit pull requests, and bugs to http://www.github.com/jackmitch/libsoc. If you have any comments or questions, I can be contacted by email at the address jackatembeddotmedotuk.