libiio 1.0
Library for interfacing with IIO devices
Loading...
Searching...
No Matches
libiio

Back to libIIO

License

Libiio has been developed and is released under the terms of the GNU Lesser General Public License, version 2 or (at your option) any later version. This open-source license allows anyone to use the library for proprietary or open-source, commercial or non-commercial applications.

Separately, the IIO Library also includes a set of test examples and utilities, (collectively known as iio-utils) which are developed and released under the terms of the GNU General Public License, version 2 or (at your option) any later version.

The full terms of the library license can be found at: http://opensource.org/licenses/LGPL-2.1 and the iio-utils license can be found at: https://opensource.org/licenses/GPL-2.0

Code Model

The basic bricks of the libiio API are the iio_context, iio_device, iio_channel, iio_buffer, iio_buffer_stream and iio_block classes.

Caption text

A C++ API is provided in iio.hpp

Scanning for IIO contexts

The first step when dealing with a collection of IIO devices (known as a context) is to find the context. This can be connected via usb, network, serial or local. Having these different connectivity options could prove to be problematic, but libiio abstracts the low level communications away, and allows you just to find contexts, and talk to devices without being interested in the low level aspects. Many find this convenient to develop applications and algorithms on a host, and quickly move to an embedded Linux system without having to change any code.

To find what IIO contexts are available, use the following:

  • iio_create_scan_context(): Create a iio_scan_context object. Depending on what backends were enabled with compiling the library, some of them may not be available. The first argument to this function is a string which is used as a filter ("usb:", "ip:", "local:", "usb:ip", where the default (NULL) means any backend that is compiled in).
  • iio_scan_context_get_info_list(): get the iio_context_info object from the iio_scan_context object. The iio_context_info object can be examined with the iio_context_info_get_description() and iio_context_info_get_uri() to determine which uri you want to attach to.

Creating a context

Different functions are available to create the iio_context object. Depending on what backends were enabled when compiling the library, some of them may not be available. Each function will result in a different backend being used.

Those functions are:

  • iio_create_context_from_uri(): This should be the main function to create contexts, which takes a Uniform Resource Identifier (uri), and returns a iio_context.
  • iio_create_default_context(): Create a "local" context if we can, otherwise use the ENV_VAR IIOD_REMOTE.
  • iio_create_local_context(): Create a "local" context, to use the IIO devices connected to the system (typically for cross-compiled applications).
  • iio_create_network_context(): Create a "network" context that will work with a remotely connected target.

Note that every function that compose the API of libiio will work independently of the function that was used to create the iio_context object.

The iio_context object can later be destroyed with iio_context_destroy().

Navigation

Device objects

Each iio_device object has an ID that can be used as identifier. This ID can be retrieved with iio_device_get_id(). It optionally also has a name, that can be retrieved with iio_device_get_name().

Channel objects

Each iio_channel can be either input, or output. This information can be retrieved with iio_channel_is_output(). As for the Device objects, the iio_channel object features an ID and optionally a name. The ID can be obtained with iio_channel_get_id(), and the name can be obtained with iio_channel_get_name(). Important note: two iio_channel can have the same ID, as long as one is input and the other is output.

Parameters

Different kinds of parameters are available: parameters that apply to a iio_device, and parameters that apply to one or more iio_channel.

Alternatively, it is possible to lookup for the name of an attribute with iio_device_find_attr() and iio_channel_find_attr().

Reading and modifying parameters

Reading a parameter

Read device-specific attributes with those functions:

  • iio_device_attr_read()
  • iio_device_attr_read_all()
  • iio_device_attr_read_bool()
  • iio_device_attr_read_longlong()
  • iio_device_attr_read_double()

Read channel-specific attributes with those functions:

  • iio_channel_attr_read()
  • iio_channel_attr_read_all()
  • iio_channel_attr_read_bool()
  • iio_channel_attr_read_longlong()
  • iio_channel_attr_read_double()

Read debug attributes with those functions:

  • iio_device_debug_attr_read()
  • iio_device_debug_attr_read_all()
  • iio_device_debug_attr_read_bool()
  • iio_device_debug_attr_read_longlong()
  • iio_device_debug_attr_read_double()

Modifying a parameter

Write device-specific attributes with those functions:

  • iio_device_attr_write()
  • iio_device_attr_write_all()
  • iio_device_attr_write_bool()
  • iio_device_attr_write_longlong()
  • iio_device_attr_write_double()

Write channel-specific attributes with those functions:

  • iio_channel_attr_write()
  • iio_channel_attr_write_all()
  • iio_channel_attr_write_bool()
  • iio_channel_attr_write_longlong()
  • iio_channel_attr_write_double()

Write debug attributes with those functions:

  • iio_device_debug_attr_write()
  • iio_device_debug_attr_write_all()
  • iio_device_debug_attr_write_bool()
  • iio_device_debug_attr_write_longlong()
  • iio_device_debug_attr_write_double()

Triggers

Some devices, mostly low-speed ADCs and DACs, require a trigger to be set for the capture or upload process to work.

In libiio, triggers are just regular iio_device objects. To check if an iio_device can be used as a trigger, you can use iio_device_is_trigger().

To see if one device is associated with a trigger, use iio_device_get_trigger().

To assign one trigger to a iio_device, you can use iio_device_set_trigger(). If you want to disassociate a iio_device from its trigger, pass NULL to the "trigger" parameter of this function.

Capturing or uploading samples

The process of capturing samples from the hardware and uploading samples to the hardware is done using the iio_buffer, iio_buffer_stream and iio_block objects.

Enabling channels and opening a Buffer stream

The very first step is to enable the capture channels that we want to use, and disable those that we don't need. This is done by creating an iio_channels_mask with iio_create_channels_mask() and then calling iio_channel_enable() for the desired channels.

Also, not all channels can be enabled. To know whether or not one channel can be enabled, use iio_channel_is_scan_element().

Buffers are pre-created during device context creation. To obtain a buffer, use iio_device_get_buffer(). To open it for streaming, call iio_buffer_open() with the channels mask, which returns an iio_buffer_stream object. This call will fail if no channels have been enabled in the mask, or for triggered buffers, if the trigger has not been assigned.

When the stream is no longer needed, it can be closed with iio_buffer_close().

Streaming with blocks

Data is transferred to and from the hardware using iio_block objects. There are two approaches: manual block management or the high-level iio_stream API.

Manual block management

Create one or more blocks from the buffer stream with iio_buffer_stream_create_block(). Each block represents a contiguous region of memory for sample data.

To start data flow, call iio_buffer_stream_start(). Then use iio_block_enqueue() to submit a block for I/O, and iio_block_dequeue() to wait for the transfer to complete. To stop, call iio_buffer_stream_stop() or iio_buffer_stream_cancel().

struct iio_buffer *buf = iio_device_get_buffer(dev, 0);
struct iio_buffer_stream *stream = iio_buffer_open(buf, mask);
struct iio_block *block = iio_buffer_stream_create_block(stream, block_size);
/* Streaming loop */
while (!stop) {
iio_block_enqueue(block, 0, false);
iio_block_dequeue(block, false);
/* Process samples via iio_block_start()/iio_block_end() */
}
void iio_block_destroy(struct iio_block *block)
Destroy the given block.
Definition block.c:89
struct iio_block * iio_buffer_stream_create_block(struct iio_buffer_stream *buf_stream, size_t size)
Create a data block for the given buffer stream.
Definition block.c:29
int iio_block_enqueue(struct iio_block *block, size_t bytes_used, bool cyclic)
Enqueue the given iio_block to the buffer's queue.
Definition block.c:143
int iio_block_dequeue(struct iio_block *block, bool nonblock)
Dequeue the given iio_block from the buffer's queue.
Definition block.c:170
struct iio_buffer_stream * iio_buffer_open(struct iio_buffer *buf, const struct iio_channels_mask *mask)
Open a buffer for data streaming.
Definition buffer.c:124
int iio_buffer_stream_start(struct iio_buffer_stream *buf_stream)
Start the buffer stream.
Definition buffer.c:86
void iio_buffer_close(struct iio_buffer_stream *buf_stream)
Close a buffer stream.
Definition buffer.c:186
struct iio_buffer * iio_device_get_buffer(const struct iio_device *dev, unsigned int index)
Get the buffer present at the given index.
Definition device.c:254
An opened buffer ready for data streaming.
An input or output buffer, used to read or write samples.

High-level Stream API

The iio_stream API simplifies streaming by managing blocks internally. Create a stream with iio_buffer_create_stream(), specifying the number of blocks and the number of samples per block. Then iterate by calling iio_stream_get_next_block() in a loop.

struct iio_buffer *buf = iio_device_get_buffer(dev, 0);
struct iio_stream *stream = iio_buffer_create_stream(buf, 4, num_samples, mask);
while (!stop) {
const struct iio_block *block = iio_stream_get_next_block(stream);
/* Process samples via iio_block_start()/iio_block_end() */
}
void iio_stream_destroy(struct iio_stream *stream)
Destroy the given stream object.
Definition stream.c:86
struct iio_stream * iio_buffer_create_stream(struct iio_buffer *buffer, size_t nb_blocks, size_t samples_count, struct iio_channels_mask *mask)
Create a iio_stream object for the given iio_buffer.
Definition stream.c:26
const struct iio_block * iio_stream_get_next_block(struct iio_stream *stream)
Get a pointer to the next data block.
Definition stream.c:110

To abort a running stream from another thread or signal context, use iio_stream_cancel(). Destroying the stream with iio_stream_destroy() will also close the underlying buffer stream.

Reading or writing samples to a Block

Libiio offers various ways to interact with the iio_block object.

Direct copy

If you already have a buffer of samples, correctly interleaved and in the format that the hardware expects, it is possible to copy the samples directly into the iio_block object using memcpy:

size_t block_size = iio_block_end(block) - iio_block_start(block);
size_t count = MIN(sizeof(samples_buffer), block_size);
memcpy(iio_block_start(block), samples_buffer, count);
void * iio_block_start(const struct iio_block *block)
Get the start address of the block.
Definition block.c:198
void * iio_block_end(const struct iio_block *block)
Get the address after the last sample in a block.
Definition block.c:203

Using memcpy to copy samples from the iio_block is not recommended. When capturing samples from an input device, you cannot assume that the iio_block object contains only the samples you're interested in.

Iterating over a block with a callback

Libiio provides a way to iterate over a block by registering a callback function, with the iio_block_foreach_sample() function.

The callback function will be called for each "sample slot" of the block, which will contain a valid sample if the block has been dequeued from an input device, or correspond to an area where a sample should be stored if using an output device.

ssize_t sample_cb(const struct iio_channel *chn, void *src, size_t bytes, void *d)
{
/* Use "src" to read or write a sample for this channel */
}
int main(void)
{
...
iio_block_foreach_sample(block, mask, sample_cb, NULL);
...
}
Represents an input or output channel of a device.

Note that the callback will be called in the order that the samples appear in the block, and only for samples that correspond to channels that were enabled.

Iterating on the samples with a for loop

This method allows you to iterate over the sample slots that correspond to one channel. As such, it is interesting if you want to process the data channel by channel.

Use iio_block_first() to find the first sample for a given channel, iio_block_end() for the end, and iio_device_get_sample_size() for the step between consecutive samples:

size_t step = iio_device_get_sample_size(dev, mask);
for (void *ptr = iio_block_first(block, channel);
ptr < iio_block_end(block);
ptr += step) {
/* Use "ptr" to read or write a sample for this channel */
}
void * iio_block_first(const struct iio_block *block, const struct iio_channel *chn)
Find the first sample of a channel in a block.
Definition block.c:208

Extracting from/to a second buffer

Finally, it is possible to use the iio_channel_read() and iio_channel_read_raw() functions to read samples from an iio_block to a second byte array. The samples will be deinterleaved if needed. The "raw" variant will only deinterleave the samples, while the other variant will deinterleave and convert the samples.

For output devices, the iio_channel_write() and iio_channel_write_raw() functions are also available. The "raw" variant will only interleave the samples (if needed), while the other variant will interleave and convert the samples back to their hardware format.

Convert the samples from/to hardware format

The raw stream of samples generally isn't in a format that can be directly used in algorithms. Some operations, like endianness conversion and bit-shifting of the samples, have to be performed first.

Libiio offers two functions that can be used to convert samples:

Those two functions should always be used when manipulating the samples of an iio_block. The exception is when iio_channel_read() or iio_channel_write() are used, as the conversion is then done internally.

Enqueuing blocks (output devices only)

When all the samples have been written to the iio_block object, you can submit the block to the hardware with a call to iio_block_enqueue(). As soon as the block has been submitted, it can be dequeued and reused to store new samples.

If the iio_block_enqueue() call is made with the "cyclic" parameter set, and the kernel driver supports cyclic buffers, the submitted block will be repeated until the buffer stream is closed, and no subsequent call to iio_block_enqueue() will be allowed.

Advanced options

Register and retrieve a pointer

The iio_device and iio_channel allow you to register a pointer, that can then be retrieved at a later moment.

Debug attributes

Some IIO devices provide debug parameters, but their presence is optional. In a similar way than with regular device parameters, the number of debug parameters can be obtained with iio_device_get_debug_attrs_count(). Each individual parameter can be retrieved with iio_device_get_debug_attr(). Alternatively, it is possible to lookup for the name of a debug attribute with iio_device_find_debug_attr().

Those debug parameters can be read using the following functions:

  • iio_device_debug_attr_read(),
  • iio_device_debug_attr_read_all(),
  • iio_device_debug_attr_read_bool(),
  • iio_device_debug_attr_read_longlong(),
  • iio_device_debug_attr_read_double().

Those debug parameters can be written using the following functions:

  • iio_device_debug_attr_write(),
  • iio_device_debug_attr_write_all(),
  • iio_device_debug_attr_write_bool(),
  • iio_device_debug_attr_write_longlong(),
  • iio_device_debug_attr_write_double().

Reading and writing registers

As for debug attributes, some IIO devices also offer the possibility to read and write hardware registers directly. In libiio, this can be done with two functions, iio_device_reg_read() and iio_device_reg_write().

Application Binary Interface

The libiio ABI tries to be both backwards and forwards compatible. This means applications compiled against an older version will work fine with a newer dynamically linked library. Applications compiled against a newer version will work fine with an older dynamically linked library so long as they don't access any new features. Applications using new features should ensure the libiio version is compatible by using iio_library_get_version() to avoid undefined behavior.