linux-iio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Lars-Peter Clausen <lars@metafoo.de>
To: Jonathan Cameron <jic23@kernel.org>
Cc: linux-iio@vger.kernel.org
Subject: Re: [PATCH 01/18] iio: Extend the event config interface
Date: Sun, 29 Sep 2013 20:56:31 +0200	[thread overview]
Message-ID: <524877DF.8050005@metafoo.de> (raw)
In-Reply-To: <52487515.7080601@kernel.org>

On 09/29/2013 08:44 PM, Jonathan Cameron wrote:
> On 09/26/13 13:58, Lars-Peter Clausen wrote:
>> The event configuration interface of the IIO framework has not been getting the
>> same attention as other parts. As a result it has not seen the same improvements
>> as e.g. the channel interface has seen with the introduction of the channel spec
>> struct. Currently all the event config callbacks take a u64 (the so called event
>> code) to pass all the different information about for which event the callback
>> is invoked. The callback function then has to extract the information it is
>> interested in using some macros with rather long names. Most information encoded
>> in the event code comes straight from the iio_chan_spec struct the event was
>> registered for. Since we always have a handle to the channel spec when we call
>> the event callbacks the first step is to add the channel spec as a parameter to
>> the event callbacks. The two remaining things encoded in the event code are the
>> type and direction of the event. Instead of passing them in one parameter, add
>> one parameter for each of them and remove the eventcode from the event
>> callbacks. The patch also adds a new iio_event_info parameter to the
>> {read,write}_event_value callbacks. This makes it possible, similar to the
>> iio_chan_info_enum for channels, to specify additional properties other than
>> just the value for an event. Furthermore the new interface will allow to
>> register shared events. This is e.g. useful if a device allows configuring a
>> threshold event, but the threshold setting is the same for all channels.
>>
>> To implement this the patch adds a new iio_event_spec struct which is similar to
>> the iio_chan_spec struct. It as two field to specify the type and the direction
>> of the event. Furthermore it has a mask field for each one of the different
>> iio_shared_by types. These mask fields holds which kind of attributes should be
>> registered for the event. Creation of the attributes follows the same rules as
>> the for the channel attributes. E.g. for the separate_mask there will be a
>> attribute for each channel with this event, for the shared_by_type there will
>> only be one attribute per channel type. The iio_chan_spec struct gets two new
>> fields, 'event_spec' and 'num_event_specs', which is used to specify which the
>> events for this channel. These two fields are going to replace the channel's
>> event_mask field.
>>
>> For now both the old and the new event config interface coexist, but over the
>> few patches all drivers will be converted from the old to the new interface.
>> Once that is done all code for supporting the old interface will be removed.
>>
> 
> A nice bit of work.
> 
> Only one thing really came to mind. Is it worth us adding another field to the
> struct iio_device_attribute to avoid the dance to cram the event index and the
> offset into the one value?  If we want to avoid adding memory usage, small though
> it would be, perhaps drop an appropriate union in there to make this code easier
> to follow?  Obviously the attribute creation functions might get fiddlier though.
> 
> Although it would cause a fair bit of churn to change it, the name of 'address'
> in there is rather misleading now as it very rarely actually contains an address!
> 

I think a transparent union should work nicely and doesn't cause any code
churn. Maybe even with a direct pointer to the event_spec.

Something like:

struct iio_dev_attr {
	...
	union {
		u64 address;
		struct {
			struct iio_event_spec *spec;
			enum iio_event_info info;
		} event;
	};
	...
};


> One trivial naming question otherwise.
> 
> ...
>> -static int iio_device_add_event_sysfs(struct iio_dev *indio_dev,
>> +static int iio_device_add_event(struct iio_dev *indio_dev,
>> +	const struct iio_chan_spec *chan, unsigned int spec_offset,
> spec_offset vs spec_index?
> Unless some fairly nefarous games are played in a driver, this value
> will always be an index into an array.  Offset made me wonder, wrt to
> which base position...

spec_index is fine as well.

>> +	enum iio_event_type type, enum iio_event_direction dir,
>> +	enum iio_shared_by shared_by, const unsigned long *mask)
>> +{
>> +	ssize_t (*show)(struct device *, struct device_attribute *, char *);
> ...
> 

Thanks for the review,
- Lars

  reply	other threads:[~2013-09-29 18:56 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-26 12:58 [PATCH 01/18] iio: Extend the event config interface Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 02/18] iio:max1363: Switch to new " Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 03/18] iio:ad5421: " Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 04/18] iio:gp2ap020a00f: " Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 05/18] iio:tsl2563: " Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 06/18] iio:apds9300: Use " Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 07/18] staging:iio:lis3l02dq: Switch to " Lars-Peter Clausen
2013-09-30 20:55   ` Jonathan Cameron
2013-10-01  7:51     ` Lars-Peter Clausen
2013-10-01  9:14       ` Jonathan Cameron
2013-09-26 12:58 ` [PATCH 08/18] staging:iio:sca3000: Switch to new " Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 09/18] staging:iio:ad7291: Switch to new event " Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 10/18] staging:iio:ad799x: " Lars-Peter Clausen
2013-09-30 20:59   ` Jonathan Cameron
2013-09-26 12:58 ` [PATCH 11/18] staging:iio:ad7150: " Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 12/18] staging:iio:simple_dummy: " Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 13/18] staging:iio:tsl2x7x: " Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 14/18] iio: Remove support for the legacy " Lars-Peter Clausen
2013-09-30 21:05   ` Jonathan Cameron
2013-10-01  7:52     ` Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 15/18] iio: Add a hysteresis event info attribute Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 16/18] staging:iio:ad799x: Simplify threshold register look-up Lars-Peter Clausen
2013-09-26 12:58 ` [PATCH 17/18] staging:iio:ad799x: Use event spec for threshold hysteresis Lars-Peter Clausen
2013-09-30 21:10   ` Jonathan Cameron
2013-09-26 12:58 ` [PATCH 18/18] staging:iio:ad7291: " Lars-Peter Clausen
2013-09-29 18:44 ` [PATCH 01/18] iio: Extend the event config interface Jonathan Cameron
2013-09-29 18:56   ` Lars-Peter Clausen [this message]
2013-09-29 20:17     ` Jonathan Cameron
2013-09-29 19:35       ` Lars-Peter Clausen
2013-09-30 20:54         ` Jonathan Cameron
2013-10-04  8:38       ` Lars-Peter Clausen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=524877DF.8050005@metafoo.de \
    --to=lars@metafoo.de \
    --cc=jic23@kernel.org \
    --cc=linux-iio@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).