All of lore.kernel.org
 help / color / mirror / Atom feed
* Multiple IIO_THRESHOLD events
@ 2015-07-09 17:23 Matt Ranostay
  2015-07-11 17:58 ` Jonathan Cameron
  0 siblings, 1 reply; 5+ messages in thread
From: Matt Ranostay @ 2015-07-09 17:23 UTC (permalink / raw)
  To: Jonathan Cameron; +Cc: Marek Vašut, linux-iio@vger.kernel.org

Hello Jonathan,

I am currently working on temperature sensor that has multiple trip
points, and was wondering what would be the correct way to tie this to
one channel if several events may have the same IIO_EV_DIR_*
direction.

low temp trippoint - > IIO_EV_DIR_FALLING
high temp trippoint -> IIO_EV_DIR_RISING
critical temp trippoint ->  ?

Would it make sensor to add functionality to allow iio_event_spec to
have an .index field so multiple IIO_EV_DIR_RISING could be parsed
into sysfs entries?


Thanks,

Matt

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Multiple IIO_THRESHOLD events
  2015-07-09 17:23 Multiple IIO_THRESHOLD events Matt Ranostay
@ 2015-07-11 17:58 ` Jonathan Cameron
  2015-07-13 17:29   ` Matt Ranostay
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Cameron @ 2015-07-11 17:58 UTC (permalink / raw)
  To: Matt Ranostay; +Cc: Marek Vašut, linux-iio@vger.kernel.org

On 09/07/15 18:23, Matt Ranostay wrote:
> Hello Jonathan,
> 
> I am currently working on temperature sensor that has multiple trip
> points, and was wondering what would be the correct way to tie this to
> one channel if several events may have the same IIO_EV_DIR_*
> direction.
> 
> low temp trippoint - > IIO_EV_DIR_FALLING
> high temp trippoint -> IIO_EV_DIR_RISING
> critical temp trippoint ->  ?
> 
> Would it make sensor to add functionality to allow iio_event_spec to
> have an .index field so multiple IIO_EV_DIR_RISING could be parsed
> into sysfs entries?
> 
> 
> Thanks,
> 
> Matt
> 
Hi Matt,

The few times this has come up before, the conclusion has been that
the device was actually more suited to have a hwmon driver than an IIO one.
We have had event units capable of being configured for this sort of operation
but have never actually implemented it.

You are quite correct in that we don't have a current way to support
it.  An index field and appropriate extension of the abi is fine.  However
you've also got to find somewhere in the event code to place it.
That's nastier from an ABI change point of view.


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Multiple IIO_THRESHOLD events
  2015-07-11 17:58 ` Jonathan Cameron
@ 2015-07-13 17:29   ` Matt Ranostay
  2015-07-13 20:50     ` Jonathan Cameron
  0 siblings, 1 reply; 5+ messages in thread
From: Matt Ranostay @ 2015-07-13 17:29 UTC (permalink / raw)
  To: Jonathan Cameron; +Cc: Marek Vašut, linux-iio@vger.kernel.org

On Sat, Jul 11, 2015 at 10:58 AM, Jonathan Cameron <jic23@kernel.org> wrote:
> On 09/07/15 18:23, Matt Ranostay wrote:
>> Hello Jonathan,
>>
>> I am currently working on temperature sensor that has multiple trip
>> points, and was wondering what would be the correct way to tie this to
>> one channel if several events may have the same IIO_EV_DIR_*
>> direction.
>>
>> low temp trippoint - > IIO_EV_DIR_FALLING
>> high temp trippoint -> IIO_EV_DIR_RISING
>> critical temp trippoint ->  ?
>>
>> Would it make sensor to add functionality to allow iio_event_spec to
>> have an .index field so multiple IIO_EV_DIR_RISING could be parsed
>> into sysfs entries?
>>
>>
>> Thanks,
>>
>> Matt
>>
> Hi Matt,
>
> The few times this has come up before, the conclusion has been that
> the device was actually more suited to have a hwmon driver than an IIO one.
> We have had event units capable of being configured for this sort of operation
> but have never actually implemented it.

Ok seems I could just mask that threshold since it is kinda redundant
and would be more useful for a microcontroller using it.

However the other issue is there is a way of marking when entering a
threshold and when exiting it.. I suppose that is again and event code
change... This device triggers an interrupt when it enters and exits a
threshold, and it would seem wrong to poll and report threshold events
till it exited...

I suppose the following would be too crude to add the ABI?

IIO_EV_ENTER_THRESHOLD = 0,
IIO_EV_EXIT_THRESHOLD,

>
> You are quite correct in that we don't have a current way to support
> it.  An index field and appropriate extension of the abi is fine.  However
> you've also got to find somewhere in the event code to place it.
> That's nastier from an ABI change point of view.
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Multiple IIO_THRESHOLD events
  2015-07-13 17:29   ` Matt Ranostay
@ 2015-07-13 20:50     ` Jonathan Cameron
  2015-07-16  2:43       ` Matt Ranostay
  0 siblings, 1 reply; 5+ messages in thread
From: Jonathan Cameron @ 2015-07-13 20:50 UTC (permalink / raw)
  To: Matt Ranostay
  Cc: Marek Vašut, linux-iio@vger.kernel.org, Lars-Peter Clausen,
	Hartmut Knaack, Peter Meerwald, Dan Carpenter

On 13/07/15 18:29, Matt Ranostay wrote:
> On Sat, Jul 11, 2015 at 10:58 AM, Jonathan Cameron <jic23@kernel.org> wrote:
>> On 09/07/15 18:23, Matt Ranostay wrote:
>>> Hello Jonathan,
>>>
>>> I am currently working on temperature sensor that has multiple trip
>>> points, and was wondering what would be the correct way to tie this to
>>> one channel if several events may have the same IIO_EV_DIR_*
>>> direction.
>>>
>>> low temp trippoint - > IIO_EV_DIR_FALLING
>>> high temp trippoint -> IIO_EV_DIR_RISING
>>> critical temp trippoint ->  ?
>>>
>>> Would it make sensor to add functionality to allow iio_event_spec to
>>> have an .index field so multiple IIO_EV_DIR_RISING could be parsed
>>> into sysfs entries?
>>>
>>>
>>> Thanks,
>>>
>>> Matt
>>>
>> Hi Matt,
>>
>> The few times this has come up before, the conclusion has been that
>> the device was actually more suited to have a hwmon driver than an IIO one.
>> We have had event units capable of being configured for this sort of operation
>> but have never actually implemented it.
> 
> Ok seems I could just mask that threshold since it is kinda redundant
> and would be more useful for a microcontroller using it.
> 
> However the other issue is there is a way of marking when entering a
> threshold and when exiting it.. I suppose that is again and event code
> change... This device triggers an interrupt when it enters and exits a
> threshold, and it would seem wrong to poll and report threshold events
> till it exited...
> 
> I suppose the following would be too crude to add the ABI?
Normally threshold interrupts are assumed to be edge triggered, hence
report a rising edge in one direction and a falling one in the other?

Though then we are back to having multiple thresholds on a channel.
Looks increasingly like we need to add support for this!

(increased cc list to get some more opinions on this).
> 
> IIO_EV_ENTER_THRESHOLD = 0,
> IIO_EV_EXIT_THRESHOLD,
> 
>>
>> You are quite correct in that we don't have a current way to support
>> it.  An index field and appropriate extension of the abi is fine.  However
>> you've also got to find somewhere in the event code to place it.
>> That's nastier from an ABI change point of view.
>>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Multiple IIO_THRESHOLD events
  2015-07-13 20:50     ` Jonathan Cameron
@ 2015-07-16  2:43       ` Matt Ranostay
  0 siblings, 0 replies; 5+ messages in thread
From: Matt Ranostay @ 2015-07-16  2:43 UTC (permalink / raw)
  To: Jonathan Cameron
  Cc: Marek Vašut, linux-iio@vger.kernel.org, Lars-Peter Clausen,
	Hartmut Knaack, Peter Meerwald, Dan Carpenter

Would be reporting a IIO_EV_DIR_NONE a too crude way to say a
threshold is being exited for now?


Thanks,

Matt

On Mon, Jul 13, 2015 at 1:50 PM, Jonathan Cameron <jic23@kernel.org> wrote:
> On 13/07/15 18:29, Matt Ranostay wrote:
>> On Sat, Jul 11, 2015 at 10:58 AM, Jonathan Cameron <jic23@kernel.org> wrote:
>>> On 09/07/15 18:23, Matt Ranostay wrote:
>>>> Hello Jonathan,
>>>>
>>>> I am currently working on temperature sensor that has multiple trip
>>>> points, and was wondering what would be the correct way to tie this to
>>>> one channel if several events may have the same IIO_EV_DIR_*
>>>> direction.
>>>>
>>>> low temp trippoint - > IIO_EV_DIR_FALLING
>>>> high temp trippoint -> IIO_EV_DIR_RISING
>>>> critical temp trippoint ->  ?
>>>>
>>>> Would it make sensor to add functionality to allow iio_event_spec to
>>>> have an .index field so multiple IIO_EV_DIR_RISING could be parsed
>>>> into sysfs entries?
>>>>
>>>>
>>>> Thanks,
>>>>
>>>> Matt
>>>>
>>> Hi Matt,
>>>
>>> The few times this has come up before, the conclusion has been that
>>> the device was actually more suited to have a hwmon driver than an IIO one.
>>> We have had event units capable of being configured for this sort of operation
>>> but have never actually implemented it.
>>
>> Ok seems I could just mask that threshold since it is kinda redundant
>> and would be more useful for a microcontroller using it.
>>
>> However the other issue is there is a way of marking when entering a
>> threshold and when exiting it.. I suppose that is again and event code
>> change... This device triggers an interrupt when it enters and exits a
>> threshold, and it would seem wrong to poll and report threshold events
>> till it exited...
>>
>> I suppose the following would be too crude to add the ABI?
> Normally threshold interrupts are assumed to be edge triggered, hence
> report a rising edge in one direction and a falling one in the other?
>
> Though then we are back to having multiple thresholds on a channel.
> Looks increasingly like we need to add support for this!
>
> (increased cc list to get some more opinions on this).
>>
>> IIO_EV_ENTER_THRESHOLD = 0,
>> IIO_EV_EXIT_THRESHOLD,
>>
>>>
>>> You are quite correct in that we don't have a current way to support
>>> it.  An index field and appropriate extension of the abi is fine.  However
>>> you've also got to find somewhere in the event code to place it.
>>> That's nastier from an ABI change point of view.
>>>
>> --
>> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
>> the body of a message to majordomo@vger.kernel.org
>> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>>
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2015-07-16  2:43 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-09 17:23 Multiple IIO_THRESHOLD events Matt Ranostay
2015-07-11 17:58 ` Jonathan Cameron
2015-07-13 17:29   ` Matt Ranostay
2015-07-13 20:50     ` Jonathan Cameron
2015-07-16  2:43       ` Matt Ranostay

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.