From: Sean Anderson <sean.anderson@linux.dev>
To: Guenter Roeck <linux@roeck-us.net>,
Jonathan Cameron <jic23@kernel.org>,
Jean Delvare <jdelvare@suse.com>,
linux-iio@vger.kernel.org, linux-hwmon@vger.kernel.org
Cc: Lars-Peter Clausen <lars@metafoo.de>, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] hwmon: iio: Add labels from IIO channels
Date: Fri, 21 Jun 2024 11:31:06 -0400 [thread overview]
Message-ID: <1439bdda-0e01-42da-a8ec-7a51ee3a5a08@linux.dev> (raw)
In-Reply-To: <55dbe61b-c2df-4eeb-80ac-cc2c83e9cdd3@linux.dev>
On 6/21/24 11:22, Sean Anderson wrote:
> On 6/21/24 11:08, Guenter Roeck wrote:
>> On 6/20/24 14:13, Sean Anderson wrote:
>>> Add labels from IIO channels to our channels. This allows userspace to
>>> display more meaningful names instead of "in0" or "temp5".
>>>
>>> Signed-off-by: Sean Anderson <sean.anderson@linux.dev>
>>> ---
>>>
>>> drivers/hwmon/iio_hwmon.c | 33 ++++++++++++++++++++++++++++++---
>>> 1 file changed, 30 insertions(+), 3 deletions(-)
>>>
>>> diff --git a/drivers/hwmon/iio_hwmon.c b/drivers/hwmon/iio_hwmon.c
>>> index 4c8a80847891..588b64c18e63 100644
>>> --- a/drivers/hwmon/iio_hwmon.c
>>> +++ b/drivers/hwmon/iio_hwmon.c
>>> @@ -33,6 +33,17 @@ struct iio_hwmon_state {
>>> struct attribute **attrs;
>>> };
>>> +static ssize_t iio_hwmon_read_label(struct device *dev,
>>> + struct device_attribute *attr,
>>> + char *buf)
>>> +{
>>> + struct sensor_device_attribute *sattr = to_sensor_dev_attr(attr);
>>> + struct iio_hwmon_state *state = dev_get_drvdata(dev);
>>> + struct iio_channel *chan = &state->channels[sattr->index];
>>> +
>>> + return iio_read_channel_label(chan, buf);
>>
>> This can return -EINVAL if there is no label. Since the label attribute
>> is created unconditionally, every affected system would end up with
>> lots of error messages when running the "sensors" command.
>> This is not acceptable.
>
> The sensors command gracefully handles this. There are no errors, and the label is unused.
For example, without IIO labels I get:
$ sensors hwmon_ams_ps-isa-0000
hwmon_ams_ps-isa-0000
Adapter: ISA adapter
in1: 825.00 mV
in2: 826.00 mV
in3: 1.81 V
in4: 1.18 V
in5: 1.80 V
in6: 1.80 V
in7: 3.27 V
in8: 1.81 V
in9: 825.00 mV
in10: 1.81 V
in11: 1.80 V
temp1: +79.8 C
temp2: +80.9 C
and with labels I get
$ sensors hwmon_ams_ps-isa-0000
hwmon_ams_ps-isa-0000
Adapter: ISA adapter
VCC_PSINTLP: 824.00 mV
VCC_PSINTFP: 822.00 mV
VCC_PSAUX: 1.81 V
VCC_PSDDR: 1.18 V
VCC_PSIO3: 1.80 V
VCC_PSIO0: 1.80 V
VCC_PSIO1: 3.27 V
VCC_PSIO2: 1.80 V
PS_MGTRAVCC: 822.00 mV
PS_MGTRAVTT: 1.81 V
VCC_PSADC: 1.80 V
Temp_LPD: +79.5 C
Temp_FPD: +80.2 C
I also was concerned about the same thing, but lm-sensors handles things
gracefully, allowing us to simplify the implementation.
--Sean
next prev parent reply other threads:[~2024-06-21 15:31 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-20 21:13 [PATCH 0/2] hwmon: iio: Add labels Sean Anderson
2024-06-20 21:13 ` [PATCH 1/2] iio: Add iio_read_channel_label to inkern API Sean Anderson
2024-06-23 12:03 ` Jonathan Cameron
2024-06-20 21:13 ` [PATCH 2/2] hwmon: iio: Add labels from IIO channels Sean Anderson
2024-06-21 15:08 ` Guenter Roeck
2024-06-21 15:22 ` Sean Anderson
2024-06-21 15:31 ` Sean Anderson [this message]
2024-06-21 16:45 ` Guenter Roeck
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=1439bdda-0e01-42da-a8ec-7a51ee3a5a08@linux.dev \
--to=sean.anderson@linux.dev \
--cc=jdelvare@suse.com \
--cc=jic23@kernel.org \
--cc=lars@metafoo.de \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
/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).