From: Hans de Goede <hdegoede@redhat.com>
To: Jonathan Cameron <Jonathan.Cameron@Huawei.com>,
Mark Pearson <markpearson@lenovo.com>
Cc: linux-iio@vger.kernel.org, Bastien Nocera <hadess@hadess.net>,
Nitin Joshi1 <njoshi1@lenovo.com>,
linux-input@vger.kernel.org, dmitry.torokhov@gmail.com
Subject: Re: [External] Using IIO to export laptop palm-sensor and lap-mode info to userspace?
Date: Wed, 7 Oct 2020 11:51:05 +0200 [thread overview]
Message-ID: <218be284-4a37-e9f9-749d-c126ef1d098b@redhat.com> (raw)
In-Reply-To: <20201007083602.00006b7e@Huawei.com>
Hi,
On 10/7/20 10:36 AM, Jonathan Cameron wrote:
> On Mon, 5 Oct 2020 22:04:27 -0400
> Mark Pearson <markpearson@lenovo.com> wrote:
>
>> Adding Nitin, lead for this feature, to the thread
>
> +CC linux-input and Dmitry for reasons that will become clear below.
>>
>> On 2020-10-03 10:02 a.m., Hans de Goede wrote:
>>> Hi All,
>>>
>>> Modern laptops can have various sensors which are kinda
>>> like proximity sensors, but not really (they are more
>>> specific in which part of the laptop the user is
>>> proximate to).
>>>
>>> Specifically modern Thinkpad's have 2 readings which we
>>> want to export to userspace, and I'm wondering if we
>>> could use the IIO framework for this since these readings
>>> are in essence sensor readings:
>>>
>>> 1. These laptops have a sensor in the palm-rests to
>>> check if a user is physically proximate to the device's
>>> palm-rests. This info will be used by userspace for WWAN
>>> functionality to control the transmission level safely.
>>>
>>> A patch adding a thinkpad_acpi specific sysfs API for this
>>> is currently pending:
>>> https://patchwork.kernel.org/patch/11722127/
>>>
>>> But I'm wondering if it would not be better to use
>>> IIO to export this info.
>
> My first thought on this is it sounds more like a key than a sensor
> (simple proximity sensors fall into this category as well.)
That is an interesting suggestion. Using the input/evdev API
would have some advantages such as being able to have a single
event node for all the proximity switches and then being able
to pass a fd to that from a privileged process to a non
privileged one, something which userspace already has
various infrastructure for.
So yes this might indeed be better. Dmitry any thoughts on
this / objections against using the input/evdev API for this?
Note: s/key/switch/ in "sounds more like a key" above I guess.
> Dmitry, any existing stuff like this in input?
There already is a SW_FRONT_PROXIMITY defined in
input-event-codes.h, which I guess means detection if
someone is sitting in front of the screen. So we could add:
SW_LAP_PROXIMITY
SW_PALMREST_PROXIMITY,
And then we have a pretty decent API for this I think.
> If it does make sense to put it in IIO then rest of the questions
> obviously relevant.
Ack, thank you for your input.
Regards,
Hans
>>> 2. These laptops have something called lap-mode, which
>>> determines if the laptop's firmware thinks that it is on
>>> a users lap, or sitting on a table. This influences the
>>> max. allowed skin-temperature of the bottom of the laptop
>>> and thus influences thermal management. Like the palm-rest
>>> snesors, this reading will likely also be used for
>>> controlling wireless transmission levels in the future.
>>>
>>> Note that AFAIK the lap_mode reading is not a single sensor
>>> reading, it is a value derived from a bunch of sensor readings,
>>> the raw values of which may or may not be available
>>> separately.
>>>
>>> So looking at existing IIO userspace API docs, focussing on
>>> proximity sensors I see:
>>>
>>> Documentation/ABI/testing/sysfs-bus-iio
>>> Documentation/ABI/testing/sysfs-bus-iio-proximity-as3935
>>>
>>> Where the latter seems to not really be relevant.
>
> Indeed, that one is a very odd beast :) (lightning sensor)
>
>>>
>>> From the generic IO API doc, this bit is the most
>>> interesting:
>>>
>>> What: /sys/.../iio:deviceX/in_proximity_raw
>>> What: /sys/.../iio:deviceX/in_proximity_input
>>> What: /sys/.../iio:deviceX/in_proximityY_raw
>>> KernelVersion: 3.4
>>> Contact: linux-iio@vger.kernel.org
>>> Description:
>>> Proximity measurement indicating that some
>>> object is near the sensor, usually by observing
>>> reflectivity of infrared or ultrasound emitted.
>>> Often these sensors are unit less and as such conversion
>>> to SI units is not possible. Higher proximity measurements
>>> indicate closer objects, and vice versa. Units after
>>> application of scale and offset are meters.
>>>
>>> This seems to be a reasonable match for the Thinkpad sensors
>>> we are discussing here, although those report a simple
>>> 0/1 value.
>
> Given this is a bit of computed estimate rather than a true reading, I wonder
> a bit if we should treat it as closer to an 'activity classification sensor'.
>
> For those we use a percentage value to represent the output of some probabilistic
> classifier. In reality all the versions we've had so far aren't that clever though
> so they only output 0 or 100%. See in_activity_walking_input in the docs for
> example.
>
>>>
>>> What is missing for the ThinkPad case is something like this:
>>>
>>> What: /sys/.../iio:deviceX/proximity_sensor_location
>>> KernelVersion: 5.11
>>> Contact: linux-iio@vger.kernel.org
>>> Description:
>>> Specifies the location of the proximity sensor /
>>> specifies proximity to what the sensor is measuring.
>>> Reading this file returns a string describing this, valid values
>>> for this string are: "screen", "lap", "palmrest"
>>> Note the list of valid values may be extended in the
>>> future.
>>>
>>> So what do you (IIO devs) think about this?
>>>
>>> Would adding a proximity_sensor_location attribute be a reasonable
>>> thing to do for this; and do you think that this would be a good idea ?
>
> Absolutely fine. There is precedence in cros_ec which has a generic
> location sysfs attribute (not associated with a particular channel though
> it is fine to do that as well). See Documentation/ABI/testing/sysfs-bus-iio-cros_ec
> We haven't moved it to the general docs because there is only one device
> providing it so far. Hence we would move it with the introduction of
> this second device.
>
>>>
>>> Regards,
>>>
>>> Hans
>>>
>
>
next prev parent reply other threads:[~2020-10-07 9:51 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <9f9b0ff6-3bf1-63c4-eb36-901cecd7c4d9@redhat.com>
[not found] ` <5a646527-7a1f-2fb9-7c09-8becdbff417b@lenovo.com>
2020-10-07 8:36 ` [External] Using IIO to export laptop palm-sensor and lap-mode info to userspace? Jonathan Cameron
2020-10-07 9:51 ` Hans de Goede [this message]
2020-10-07 11:35 ` Bastien Nocera
2020-10-07 13:08 ` Hans de Goede
2020-10-07 13:29 ` Bastien Nocera
2020-10-07 13:32 ` Hans de Goede
2020-10-08 0:14 ` Jeff LaBundy
2020-10-08 7:10 ` Hans de Goede
2020-10-09 2:19 ` Jeff LaBundy
2020-10-12 12:13 ` Hans de Goede
2020-10-13 21:59 ` Mark Pearson
2020-10-14 4:47 ` Jeff LaBundy
2020-10-14 8:16 ` Hans de Goede
2020-10-14 14:26 ` Mark Pearson
2020-10-12 12:36 ` Enrico Weigelt, metux IT consult
2020-10-13 1:12 ` Mark Pearson
2020-10-13 8:38 ` Hans de Goede
2020-11-12 6:23 ` Dmitry Torokhov
2020-11-12 9:50 ` Hans de Goede
2020-11-13 6:58 ` Dmitry Torokhov
2020-11-19 15:39 ` Hans de Goede
2020-11-19 16:11 ` Bastien Nocera
2020-11-20 9:59 ` Jonathan Cameron
2020-11-23 12:16 ` Hans de Goede
2020-11-23 16:07 ` Jonathan Cameron
2020-11-19 15:16 ` Bastien Nocera
2020-11-19 15:24 ` Hans de Goede
2020-11-19 15:58 ` Bastien Nocera
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=218be284-4a37-e9f9-749d-c126ef1d098b@redhat.com \
--to=hdegoede@redhat.com \
--cc=Jonathan.Cameron@Huawei.com \
--cc=dmitry.torokhov@gmail.com \
--cc=hadess@hadess.net \
--cc=linux-iio@vger.kernel.org \
--cc=linux-input@vger.kernel.org \
--cc=markpearson@lenovo.com \
--cc=njoshi1@lenovo.com \
/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).