From: Guenter Roeck <linux@roeck-us.net>
To: Tony O'Brien <tony.obrien@alliedtelesis.co.nz>
Cc: jdelvare@suse.com, linux-hwmon@vger.kernel.org,
chris.packham@alliedtelesis.co.nz, hdegoede@redhat.com,
jordan.crouse@amd.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 2/2] hwmon: (adt7475) Fix setting of hysteresis registers
Date: Tue, 21 Feb 2023 09:15:46 -0800 [thread overview]
Message-ID: <628cd274-38a2-fd67-3cea-eef5837f58a5@roeck-us.net> (raw)
In-Reply-To: <20230220140826.GA4009286@roeck-us.net>
On 2/20/23 06:08, Guenter Roeck wrote:
> On Mon, Feb 20, 2023 at 12:29:56PM +1300, Tony O'Brien wrote:
>> In temp_store(), for the hysteresis setting calculation there were two
>> errors. The first tries to clamp the hysteresis value by comparing the
>> required hysteresis value to THERM - 15C. This is incorrect since the
>> hysteresis value is a relative value whereas THERM - 15C is an absolute
>
> No, it isn't. The hysteresis attribute is an absolute temperature.
> The value written into the attribute is expected to be in the range
> [THERM - 15, THERM] (in degrees C). The value written into the register
> is then in the range [15, 0]. I see nothing wrong with the current code.
>
>> value. This causes it to always select 15C for hysteresis. Change the
>> first parameter to THERM - val to compare two absolute temperatures.
>> The second error masks the wrong bits in the hysteresis register; indices
>> 0 and 2 should zero bits [7:4] and preserve bits [3:0], and index 1 should
>> zero bits [3:0] and preserve bits [7:4].
>
> I'll have to verify that with the datasheet. Either case, one logical change
> per patch, please.
>
Actually, the problem is obvious from the code. Still, either drop the first
part of the patch or separate into two patches and explain in detail what
you think is wrong in the first part. There is a comment in the code
/*
* The value will be given as an absolute value, turn it
* into an offset based on THERM
*/
Maybe I am missing something, but I think that is exactly what the current
code is doing.
Thanks,
Guenter
> Thanks,
> Guenter
>
>>
>> Fixes: 1c301fc5394f ("hwmon: Add a driver for the ADT7475 hardware monitoring chip")
>> Signed-off-by: Tony O'Brien <tony.obrien@alliedtelesis.co.nz>
>> ---
>> drivers/hwmon/adt7475.c | 6 +++---
>> 1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/drivers/hwmon/adt7475.c b/drivers/hwmon/adt7475.c
>> index 77222c35a38e..68233191798e 100644
>> --- a/drivers/hwmon/adt7475.c
>> +++ b/drivers/hwmon/adt7475.c
>> @@ -484,14 +484,14 @@ static ssize_t temp_store(struct device *dev, struct device_attribute *attr,
>> adt7475_read_hystersis(client);
>>
>> temp = reg2temp(data, data->temp[THERM][sattr->index]);
>> - val = clamp_val(val, temp - 15000, temp);
>> + val = clamp_val(temp - val, temp - 15000, temp);
>> val = (temp - val) / 1000;
>>
>> if (sattr->index != 1) {
>> - data->temp[HYSTERSIS][sattr->index] &= 0xF0;
>> + data->temp[HYSTERSIS][sattr->index] &= 0x0F;
>> data->temp[HYSTERSIS][sattr->index] |= (val & 0xF) << 4;
>> } else {
>> - data->temp[HYSTERSIS][sattr->index] &= 0x0F;
>> + data->temp[HYSTERSIS][sattr->index] &= 0xF0;
>> data->temp[HYSTERSIS][sattr->index] |= (val & 0xF);
>> }
>>
>> --
>> 2.39.2
>>
next prev parent reply other threads:[~2023-02-21 17:16 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-02-19 23:29 [PATCH 0/2] hwmon: (adt7475) Fixes for acoustics and hysteresis Tony O'Brien
2023-02-19 23:29 ` [PATCH 1/2] hwmon: (adt7475) Display smoothing attributes in correct order Tony O'Brien
2023-02-19 23:29 ` [PATCH 2/2] hwmon: (adt7475) Fix setting of hysteresis registers Tony O'Brien
2023-02-20 14:08 ` Guenter Roeck
2023-02-21 17:15 ` Guenter Roeck [this message]
2023-02-23 21:57 ` Tony O'Brien
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=628cd274-38a2-fd67-3cea-eef5837f58a5@roeck-us.net \
--to=linux@roeck-us.net \
--cc=chris.packham@alliedtelesis.co.nz \
--cc=hdegoede@redhat.com \
--cc=jdelvare@suse.com \
--cc=jordan.crouse@amd.com \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=tony.obrien@alliedtelesis.co.nz \
/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
all inboxes | Powered by JetHome®