Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755259AbbGPKY0 (ORCPT ); Thu, 16 Jul 2015 06:24:26 -0400 Received: from tex.lwn.net ([70.33.254.29]:44131 "EHLO vena.lwn.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754821AbbGPKYY (ORCPT ); Thu, 16 Jul 2015 06:24:24 -0400 Date: Thu, 16 Jul 2015 04:24:17 -0600 From: Jonathan Corbet To: Daniel Baluta Cc: jic23@kernel.org, pmeerw@pmeerw.net, knaack.h@gmx.de, lars@metafoo.de, linux-kernel@vger.kernel.org, linux-iio@vger.kernel.org Subject: Re: [PATCH] DocBook: Add initial documentation for IIO Message-ID: <20150716042417.5d0ead50@lwn.net> In-Reply-To: <1436357088-30743-2-git-send-email-daniel.baluta@intel.com> References: <1436357088-30743-1-git-send-email-daniel.baluta@intel.com> <1436357088-30743-2-git-send-email-daniel.baluta@intel.com> Organization: LWN.net X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.28; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 10550 Lines: 298 On Wed, 8 Jul 2015 15:04:48 +0300 Daniel Baluta wrote: > This is intended to help developers faster find their way > inside the Industrial I/O core and reduce time spent on IIO > drivers development. Seems like good stuff to have, sorry it's taken me so long to have a look at it. Any other IIO folks want to send comments or an ack? A few comments of mine below... [...] > diff --git a/Documentation/DocBook/iio.tmpl b/Documentation/DocBook/iio.tmpl > new file mode 100644 > index 0000000..417bb26 > --- /dev/null > +++ b/Documentation/DocBook/iio.tmpl > @@ -0,0 +1,593 @@ > + > + + "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" []> > + > + > + > + Industrial I/O driver developer's guide > + > + > + > + Daniel > + Baluta > + > +
> + daniel.baluta@intel.com > +
> +
> +
> +
> + > + > + 2015 > + Intel Corporation > + > + > + > + > + This documentation is free software; you can redistribute > + it and/or modify it under the terms of the GNU General Public > + License version 2. > + > + > + > + This program is distributed in the hope that it will be > + useful, but WITHOUT ANY WARRANTY; without even the implied > + warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. > + For more details see the file COPYING in the source > + distribution of Linux. Do we really need this paragraph? It's not even a "program" by some views, at least. > + > + > +
> + > + > + > + > + Introduction > + > + The main purpose of the Industrial I/O subsystem (IIO) is to provide > + support for devices that in some sense are analog to digital converts s/converts/converters/ [...] > + IIO device sysfs interface > + > + Attributes are sysfs files used to expose chip info and also allowing > + applications to set various configuration parameters. Common > + attributes are: > + > + /sys/bus/iio/iio:deviceX/name, > + description of the physical chip for device X. > + > + /sys/bus/iio/iio:deviceX/dev, > + shows the major:minor pair associated with > + /dev/iio:deviceX node. > + > + /sys/bus/iio:deviceX/sampling_frequency_available > + available discrete set of sampling frequency values > + for device X. > + > + This list might be easier to read by proving the directory name once at the top, then just putting the attribute names here. > + Available standard attributes for IIO devices are described in the > + Documentation/ABI/testing/sysfs-bus-iio file > + in the Linux kernel sources. Should that move out of testing at some point? [...] > + An IIO channel is described by the struct iio_chan_spec > + . A thermometer driver for the temperature sensor in the > + example above would have to describe its channel as follows: > + > + static const struct iio_chan_spec temp_channel[] = { > + { > + .type = IIO_TEMP, > + .info_mask_separate = BIT(IIO_CHAN_INFO_PROCESSED), > + }, > + }; > + It seems we're skipping over the contents of .info_mask_separate? IIO developers will need to know about that, right? > + When there are multiple channels per device we need to set the > + .modified field of iio_chan_spec to 1. For example, > + a light sensor can have two channels one, for infrared light and one for > + both infrared and visible light. That seems really opaque. What does ".modified" actually indicate? Clearly not the number of channels... > + > + static const struct iio_chan_spec light_channels[] = { > + { > + .type = IIO_INTENSITY, > + .modified = 1, > + .channel2 = IIO_MOD_LIGHT_IR, It seems like the contents of this field would be good to document too. [...] > + In order to be useful, a buffer needs to have an associated > + trigger. Future chapters will add details about triggers and how > + drivers use triggers to start data capture, moving samples from device > + registers to buffer storage and then upward to user space applications. I'm gonna hold you to that! :) > + > + > + IIO buffer setup > + The important bits for selecting data channels > + configuration are exposed to userspace applications via the s/channels/channel/. Even better would be "data-channel". > + /sys/bus/iio/iio:deviceX/scan_elements/ directory. This > + file contains attributes of the following form: > + > + enable, used for enabling a channel. > + If and only if his attribute is non zero, thena triggered capture s/his/its/; also fix "thena" > + will contain data sample for this channel. sample*s* > + > + type, description of the scan element > + data storage within the buffer and hence the form in which it is > + read from user space. Format is > + [be|le]:[s|u]bits/storagebits[>>shift] . OK, I'm slow, but this is not telling me much. What's "scan element"? > + > + be or le specifies > + big or little endian. > + > + > + s or u specifies if > + signed (2's complement) or unsigned. > + > + bits is the number of bits of data > + > + storagebits is the space (after padding) that it occupies in the > + buffer. > + > + > + shift if specified, is the shift that needs > + to be a applied prior to masking out unused bits > + > + > + > + An example or two would be helpful here. > + For implementing buffer support a driver should initialize the following > + fields in iio_chan_spec definition: > + > + > + struct iio_chan_spec { > + /* other members */ > + int scan_index > + struct { > + u8 realbits; > + u8 storagebits; > + u8 shift; > + enum iio_endian endianness; > + } scan_type; > + } > + > + Here is what a 3-axis, 12 bits accelerometer channels definition > + looks like with buffer support: channel. (or maybe "channel's"). > + > + struct struct iio_chan_spec accel_channels[] = { > + { > + .type = IIO_ACCEL, > + .modified = 1, > + .channel2 = IIO_MOD_X, > + /* other stuff here */ > + .scan_index = 0, > + .scan_type = { > + .sign = 's', You didn't mention .sign above. Why 's'? [...] > + iio_buffer_setup_ops, buffer setup > + functions to be called at predefined points in buffer configuration > + sequence (e.g. before enable, after disable). If not specified, IIO > + core uses default iio_triggered_buffer_setup_ops. *the* IIO core uses *the* default... > + > + sensor_iio_pollfunc, function that *the* function... > + will be used as top half of poll function. It usually does little > + processing (as it runs in interrupt context). Most common operation *The* most common... [starting a new theme here, it seems] > + is recording of the current timestamp and for this reason one can > + use the IIO core defined iio_pollfunc_store_time > + function. > + > + sensor_trigger_handler, function that > + will be used as bottom half of poll function. Here all the A couple more the's here, please > + processing takes place. It usually reads data from the device and > + stores it in the internal buffer together with the timestamp > + recorded in the top half. > + > + > + > + > + > + > + Resources > + IIO core may change during time so the best documentation to read is the > + source code. There are several locations where you should look: *The* IIO core. So you say we're wasting our time with this file? :) > + > + > + drivers/iio/, contains the IIO core plus > + and directories for each sensor type (e.g. accel, magnetometer, > + etc.) > + > + > + include/linux/iio/, contains the header > + files, nice to read for the internal kernel interfaces. > + > + > + include/uapi/linux/iio/, contains file to be file*s* > + used by user space applications. Thanks, jon -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/