Re: [spi-devel-general] [Patch 1/4] Industrialio Core

From: Jonathan Cameron
Date: Thu Jul 24 2008 - 06:33:22 EST


Hi Ben,

Firstly thanks for taking a look at this.

Ben Dooks wrote:
>> +/* The actual event being pushed ot userspace */
>> +struct iio_event_data {
>> + int id;
>> + s64 timestamp;
>> +};
>
> So is this an header for an event? Where is the data in this, this
> is confusing... Also, should we have a framework to produce an
> key/pair data, so that an single event can export multiple values
> from one event...
>
> ie:
>
> struct event_header {
> unsigned int id;
> unsigned int nr_data; /* number of event_data after */
> s64 timestamp;
>
> struct event {
> struct event_header header;
> struct event_data data[0];
> };

At the current time at least the purpose of events in this subsystem is rather
different from those in say the input system. So far they have all
corresponded to things that don't actually have any data associated with them.

The list so far is:
Ring bufer 50% full, Ring buffer 75% full (due to the support for escalating
events, only the highest of these will ever be in the queue).

Motion detected, device dependent on whether this is for specific axis.

Thresholds breached.

Tap detection (common on accelerometers)

Anyhow I did originally start our with a similar layout to you have suggested
(based in input subsystem) but removed it for now as it is currently unecessary.


> the naming of these structures is rather long.
>
>> +/* Requires high resolution timers */
>> +/* TODO - provide alternative if not available? */
>> +static inline s64 iio_get_time_ns(void)
>> +{
>> + struct timespec ts;
>> + ktime_get_ts(&ts);
>> + return timespec_to_ns(&ts);
>> +}
>
> do we really need something that accurate? we should at-least have
> the option to remove the timestamp or choose something of lower
> accuracy?

Not necessarily, hence the TODO. I've been wondering about using an approach
similar to the 'scan' modes seen in the max1363 driver in which the time stamp
will simply be another 'input' recorded to the ring buffer as necessary. Within
the event structure, this is certainly something that needs to be configurable.

>> +
>> +#define INIT_IIO_SW_RING_BUFFER(ring, _bytes_per_datum, _length) { \
>> + INIT_IIO_RING_BUFFER(&(ring)->buf, \
>> + _bytes_per_datum, \
>> + _length); \
>> + (ring)->read_p = 0; \
>> + (ring)->write_p = 0; \
>> + (ring)->last_written_p = 0; \
>> + (ring)->data = kmalloc(_length*(ring)->buf.size, \
>> + GFP_KERNEL); \
>> + (ring)->use_count = 0; \
>> + (ring)->use_lock = __SPIN_LOCK_UNLOCKED((ring)->use_lock); \
>> + }
>
> these should be inlined functions.
Oops, I'll clean them up. Thanks for pointing that out.
>> +
>> +int iio_request_sw_ring_buffer(int bytes_per_datum,
>> + int length,
>> + struct iio_sw_ring_buffer **ring,
>> + int id,
>> + struct module *owner,
>> + struct device *dev);
>> +
>
> how about tying this to a driver, where you already know the owner
> and the dev?
Good point.

>> +
>> +struct iio_work_cont {
>> + struct work_struct ws;
>> + struct work_struct ws_nocheck;
>> + int address;
>> + int mask;
>> + void *st;
>> +};
>> +#define INIT_IIO_WORK_CONT(cont, _checkfunc, _nocheckfunc, _add, _mask, _st)\
>> + do { \
>> + INIT_WORK(&(cont)->ws, _checkfunc); \
>> + INIT_WORK(&(cont)->ws_nocheck, _nocheckfunc); \
>> + (cont)->address = _add; \
>> + (cont)->mask = _mask; \
>> + (cont)->st = _st; \
>> + } while (0)
>
> more nasty macros.
Yes, definitely need to get rid of most of them.
[ring buffer code]
> Nice idea, I just don't get what is actually going on in
> here. This needs more planning.

I definitely should have put together some more explanatory documents explaining
the aims and approach taken for the ring buffer handling. I'll get some initial
stuff writen and posted here shortly.

Thanks for taking a look and your suggestions,

--
Jonathan Cameron
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/