Re: API extensions (for IIO, matching hwmon as closely as possible)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Jean,
> 
> On Sun, 31 Jan 2010 18:31:08 +0000, Jonathan Cameron wrote:
>> We recently proposed an API specification for parts of the Industrial I/O
>> subsystem in a thread on LKML.  Greg KH pointed out that a we ought to, where
>> sensible keep as close as possible to API's of existing subsystems.  To that
>> end we are working on an updated version of the original document.
>> (original at http://lkml.org/lkml/2010/1/20/195, please note it has changed
>> a lot in response to comments made in that thread!)
> 
> I've read Greg's comment. I'm not quite sure I agree... IIO serves a
> purpose which is clearly different from hwmon. The use cases are
> different. Otherwise everyone would use hwmon and IIO wouldn't have to
> support voltage and temperature inputs at all. So I don't think it
> makes too much sense to make the new IIO API look like the hwmon one.
> Learning from our mistakes, yes, certainly. But let's not get too far
> into copying, otherwise we might lose the focus on the specific IIO
> needs.
I agreed to the extent that we won't match API's for the sake of doing so,
but in cases where it costs us nothing it probably makes sense to do so.
If nothing else it may cut down on confusion with developers who are
working in both subsystems.  In the cases covered here, I think there is
no cost to sharing naming.  Clearly we should still document the APIs
separately on the basis they may diverge again in future.  Whether it makes
sense for them to continue to match can be debated if that occurs.
> 
>> The big difference from hwmon is that we very rarely export processed values
>> to user space.  The fundamental reason for this is that our primary access to
>> data is via ring buffer interfaces accessed through related character devices
>> rather than direct access through sysfs.  Speed is of the essence and often
>> processed values are not actually what is required in any case.  However,
>> we do wish to provide sufficient information for a user space library to perform
>> these calculations in the common case of a linear transform.
>>
>> Anyhow, taking just voltage channels (ADC's) as a starting point we are looking
>> at the following and would appreciate comments / suggestions from the hwmon
>> community.
>>
>> in0_raw     //raw access
>> in0_offset  
>> in0_gain    
>>
>> (in0_value equivalent would be obtained from (in0_raw + in0_offset)*in0_gain)
>>
>> In cases where all channels of type in share offset and gain we also allow (to
>> reduce the large number identical sysfs entries):
>>
>> in_offset
>> in_gain
> 
> FWIW, we considered this for hwmon too, and finally decided to not
> support this shortcut. The reasoning was that some chips have common
> parameters for _some_ channels, but not all. Finding good sysfs file
> names for such cases was challenging. 
Agreed, I've already run into that one myself.  
> To handle these cases, we decided
> it was better to expose one separate file for each channel, and to make
> all but first of each seat read-only.
That is pretty much the fallback I was intending when we don't have
parameters applying to all of a given channel type.
> As this also covered the more
> general case where all channels share a given parameter, we did not want
> to create a special case for it, to make things more consistent and the
> user-space library more simple.
> 
> Now I am not claiming that your case is similar. In particular, if you
> intend to put the ADC's resolution in in_gain, then having a single
> file for all inputs makes a lot of sense. But it should be possible to
> override the general setting with a channel-specific one if needed
> (e.g. for power sources which are internally scaled). Whether the final
> gain in that case should be in_gain * inX_gain or just inX_gain, I
> don't know.
In cases where these are separately configurable I'd be inclined to always
have the individual files.  The shared option is only for the simplest
cases.  There is no obligation on a device driver to take this shortcut at
all, it is merely there as an option.  Conversely I think we will definitely
want extensive justification of drivers which do the mixed case you are
describing.  That's not to say I can't envision one, but it will as you say
make things semantically unclear.
> 
>> There are a couple of cases that I'm not sure how to sensibly handle, particularly
>> differential pairs.  Here we want to indicate which input lines they refer to within
>> the name and that we are dealing with a differential situation.
>>
>> Ideas that come to mind for a case which is corresponds to (in0_raw - in1_raw) are
>>
>> in0:1_raw
>> diff0:1_raw
>> in0-1_raw
>>
>> What do people think is clearest?  Obvious, as per hwmon the vast majority of users
>> are going to access this through a user space library, but it would still be nice
>> to get a sensible human readable layout in sysfs.  Also note that there are a number
>> of other elements associated with each channel, but I have left them out of this
>> discussion to keep things simple (for now!) They are primarily to do with the ring
>> buffer access and so do not overlap so much with hwmon other than in base naming of
>> channels.
> 
> For hwmon, we have hidden the fact that a voltage could be the result
> of a differential pair, so we did not have to come up with separate
> names. This may not be suitable for IIO though, I'll let you decide.
> 
> I think I like the use of "-", as it makes it very clear which pin is
> considered the negative one and which pin is considered the positive
> one. Maybe in0-in1_raw would be even clearer?
That does make it very clear, it should also be nice and easy to pull out in a userspace
interface. If we don't do this, I bet we come across a chip capable of giving differential
outputs across different types of input.   in0-accel_x0 anyone? :)

Unless anyone has an objection to this, I'll go with your suggestion.

Thanks,

Jonathan

_______________________________________________
lm-sensors mailing list
lm-sensors@xxxxxxxxxxxxxx
http://lists.lm-sensors.org/mailman/listinfo/lm-sensors

[Index of Archives]     [Linux Kernel]     [Linux Hardware Monitoring]     [Linux USB Devel]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Yosemite Backpacking]

  Powered by Linux