From: Quentin Schulz <quentin.schulz@cherry.de>
To: Guenter Roeck <linux@roeck-us.net>, linux-hwmon@vger.kernel.org
Cc: linux-kernel@vger.kernel.org, Farouk Bouabid <farouk.bouabid@cherry.de>
Subject: Re: [PATCH 04/10] hwmon: (amc6821) Add support for fan1_target and pwm1_enable mode 4
Date: Mon, 1 Jul 2024 18:29:01 +0200 [thread overview]
Message-ID: <86df2f79-c201-4e80-9e28-dfe13b674258@cherry.de> (raw)
In-Reply-To: <31eb2d27-fd00-4284-93f8-23504e14b47f@roeck-us.net>
Guenter,
On 7/1/24 5:26 PM, Guenter Roeck wrote:
> Quentin,
>
> On 7/1/24 04:23, Quentin Schulz wrote:
>> Hi Guenter,
>>
>> On 6/28/24 5:13 PM, Guenter Roeck wrote:
>>> After setting fan1_target and setting pwm1_enable to 4,
>>> the fan controller tries to achieve the requested fan speed.
>>>
>>
>> There's something in the docs (section `Software-RPM Control Mode (Fan
>> Speed Regulator`) that rubs me the wrong way though.
>>
>> """
>> When the TACH-MODE bit (bit 1 of
>> 0x02) is cleared ('0'), the duty cycle of PWM-Out is forced to 30%
>> when the calculated desired value of duty
>> cycle is less than 30%. Therefore, the TACH setting must be not
>> greater than the value corresponding to the
>> RPM for 30% duty cycle.
>> """
>>
>
> It turns out that the tach-mode bit is in reality the DC vs. pwm selector,
> and defaults to DC. For pwm fans (4-bit fans), the bit should be set to 1.
> That means that pwm1_mode should be supported to set the mode. I'll add
> a patch
> for that.
>
>> TACH-MODE is never modified in the driver, so its default value
>> prevails: 0.
>>
>> I'm wondering if there isn't something we need to do to make sure
>> we're not under those 30% for
>> TACH-Low-Limit/TACH-High-Limit/TACH-SETTING? Forbid the user to write
>> (or clamp instead) <30% duty cycle. Forbid the user to select mode 4
>> if current values are <30% duty cycle, or update them to be >=30%?
>>
>
> It also says that the "the selected target speed must not be too low
> to operate the fan", which makes sense. It also says that the requested
> fan speed should not be below the speed translating to 30% duty cycle.
> However, that is not a fixed value; it depends on the fan. Some fans may
> operate at 500 rpm with a duty cycle of 30%, others at 3,000 rpm.
> Looking at Figure 26, I don't think the value written into the pwm
> register makes any difference in Software-RPM control mode.
>
> With that in mind, the only thing we could do is to ensure that the
> requested fan speed is within the configured low and high limits,
> or in other words require the user to set the limits before writing
> the target fan speed. That is a bit circular, though - the user
> could still write the target speed and _then_ update the limits
> to a value outside the requested limit. The best we could do would be
> to sanitize settings when the mode is set to 4 and any of the limits
> is changed, and return an error if an obviously wrong limit or target
> speed is requested (target speed outside limit, or low limit >= high
> limit). Do you think that would be worth the effort ?
>
It depends how far we want to go to prevent the user shooting themself
in the foot. I think the kernel's stance on that is "let them"?
The "benefit" of forcing the user to enter a value in a user-modifiable
range is that they wouldn't unknowingly trigger a too-low or too-high
logic within the IC.
As an example, my bank has a limit on how much I can pay by card per
day. However, I can instantly change the value through an app and retry
the payment again right after if it's been refused.
Would that be something interesting for this speed limit.... who knows.
Another thing we could do is modify the min and max values if they are
higher and lower than the requested speed. But this is trying to be
smart, which I think isn't something the kernel is aiming for (as little
logic/algorithm as possible)?
So... I guess, the answer is "no, not worth the effort"?
Cheers,
Quentin
next prev parent reply other threads:[~2024-07-01 16:29 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-28 15:13 [PATCH 00/10] hwmon: (amc6821) Various improvements Guenter Roeck
2024-06-28 15:13 ` [PATCH 01/10] hwmon: (amc6821) Stop accepting invalid pwm values Guenter Roeck
2024-07-01 10:19 ` Quentin Schulz
2024-07-01 13:50 ` Guenter Roeck
2024-06-28 15:13 ` [PATCH 02/10] hwmon: (amc6821) Make reading and writing fan speed limits consistent Guenter Roeck
2024-07-01 11:05 ` Quentin Schulz
2024-07-01 14:11 ` Guenter Roeck
2024-07-01 14:37 ` Guenter Roeck
2024-07-01 16:13 ` Quentin Schulz
2024-07-01 17:21 ` Guenter Roeck
2024-07-01 18:05 ` Quentin Schulz
2024-07-01 19:11 ` Guenter Roeck
2024-06-28 15:13 ` [PATCH 03/10] hwmon: (amc6821) Rename fan1_div to fan1_pulses Guenter Roeck
2024-07-01 11:08 ` Quentin Schulz
2024-06-28 15:13 ` [PATCH 04/10] hwmon: (amc6821) Add support for fan1_target and pwm1_enable mode 4 Guenter Roeck
2024-07-01 11:23 ` Quentin Schulz
2024-07-01 15:26 ` Guenter Roeck
2024-07-01 16:29 ` Quentin Schulz [this message]
2024-07-01 17:31 ` Guenter Roeck
2024-06-28 15:13 ` [PATCH 05/10] hwmon: (amc2821) Reorder include files, drop unnecessary ones Guenter Roeck
2024-07-01 11:24 ` Quentin Schulz
2024-06-28 15:13 ` [PATCH 06/10] hwmon: (amc6821) Use tabs for column alignment in defines Guenter Roeck
2024-07-01 11:26 ` Quentin Schulz
2024-06-28 15:13 ` [PATCH 07/10] hwmon: (amc2821) Use BIT() and GENMASK() Guenter Roeck
2024-07-01 11:31 ` Quentin Schulz
2024-07-01 14:44 ` Guenter Roeck
2024-06-28 15:13 ` [PATCH 08/10] hwmon: (amc6821) Drop unnecessary enum chips Guenter Roeck
2024-07-01 11:36 ` Quentin Schulz
2024-07-01 14:47 ` Guenter Roeck
2024-06-28 15:13 ` [PATCH 09/10] hwmon: (amc6821) Convert to use regmap Guenter Roeck
2024-07-01 13:01 ` Quentin Schulz
2024-07-01 13:47 ` Guenter Roeck
2024-07-01 16:54 ` Quentin Schulz
2024-07-01 17:30 ` Guenter Roeck
2024-06-28 15:13 ` [PATCH 10/10] hwmon: (amc6821) Convert to with_info API Guenter Roeck
2024-07-01 17:46 ` Quentin Schulz
2024-07-01 18:24 ` 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=86df2f79-c201-4e80-9e28-dfe13b674258@cherry.de \
--to=quentin.schulz@cherry.de \
--cc=farouk.bouabid@cherry.de \
--cc=linux-hwmon@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