2024-04-14 04:23:32

by Chanh Nguyen

[permalink] [raw]
Subject: [PATCH v2 0/3] Update the max31790 driver

Add the max31790 binding document and support maxim,pwmout-pin-as-tach-input
vendor property for the max31790 device.

Changes in v2:
- Drop "driver" in the patch 1/3 commit title [Krzysztof]
- Update filename of the maxim,max31790.yaml [Krzysztof]
- Add the common fan schema to $ref [Krzysztof]
- Update the node name to "fan-controller" in maxim,max31790.yaml [Krzysztof]
- Update the vendor property name to "maxim,pwmout-pin-as-tach-input" [Rob]

Chanh Nguyen (3):
dt-bindings: hwmon: Add maxim max31790 bindings
hwmon: (max31790): Support config PWM output becomes TACH
dt-bindings: hwmon: max31790: Add maxim,pwmout-pin-as-tach-input
property

.../bindings/hwmon/maxim,max31790.yaml | 63 +++++++++++++++++++
drivers/hwmon/max31790.c | 31 +++++++++
2 files changed, 94 insertions(+)
create mode 100644 Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml

--
2.17.1



2024-04-14 04:23:48

by Chanh Nguyen

[permalink] [raw]
Subject: [PATCH v2 1/3] dt-bindings: hwmon: Add maxim max31790 bindings

Add a device tree bindings for max31790 device.

Signed-off-by: Chanh Nguyen <[email protected]>
---
Changes in v2:
- Update filename of the maxim,max31790.yaml [Krzysztof]
- Add the common fan schema to $ref [Krzysztof]
- Update the node name to "fan-controller" in maxim,max31790.yaml [Krzysztof]
- Drop "driver" in commit title [Krzysztof]
---
.../bindings/hwmon/maxim,max31790.yaml | 52 +++++++++++++++++++
1 file changed, 52 insertions(+)
create mode 100644 Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml

diff --git a/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
new file mode 100644
index 000000000000..a561e5a3e9e4
--- /dev/null
+++ b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
@@ -0,0 +1,52 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/hwmon/maxim,max31790.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: The Maxim MAX31790 Fan Controller
+
+maintainers:
+ - Guenter Roeck <[email protected]>
+
+description: >
+ The MAX31790 controls the speeds of up to six fans using six
+ independent PWM outputs. The desired fan speeds (or PWM duty cycles)
+ are written through the I2C interface.
+
+ Datasheets:
+ https://datasheets.maximintegrated.com/en/ds/MAX31790.pdf
+
+properties:
+ compatible:
+ const: maxim,max31790
+
+ reg:
+ maxItems: 1
+
+ clocks:
+ maxItems: 1
+
+ resets:
+ maxItems: 1
+
+required:
+ - compatible
+ - reg
+
+allOf:
+ - $ref: fan-common.yaml#
+
+unevaluatedProperties: false
+
+examples:
+ - |
+ i2c {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ fan-controller@20 {
+ compatible = "maxim,max31790";
+ reg = <0x20>;
+ };
+ };
--
2.17.1


2024-04-14 04:24:05

by Chanh Nguyen

[permalink] [raw]
Subject: [PATCH v2 2/3] hwmon: (max31790): Support config PWM output becomes TACH

PWMOUT pins on MAX31790 can be configured as a tachometer input pin by
setting bit[0] in the Configuration Register. When the bit[0] of a channel
is set, the PWMOUT pin becomes the tach input pin for the channel plus six.

This commit allows the kernel to set those pins when necessary if the
maxim,pwmout-pin-as-tach-input DT property exists.

Signed-off-by: Chanh Nguyen <[email protected]>
---
Changes in v2:
- Update the vendor property name to "maxim,pwmout-pin-as-tach-input" [Rob]
---
drivers/hwmon/max31790.c | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)

diff --git a/drivers/hwmon/max31790.c b/drivers/hwmon/max31790.c
index 3dc95196b229..ac0a8099acf6 100644
--- a/drivers/hwmon/max31790.c
+++ b/drivers/hwmon/max31790.c
@@ -12,6 +12,7 @@
#include <linux/init.h>
#include <linux/jiffies.h>
#include <linux/module.h>
+#include <linux/property.h>
#include <linux/slab.h>

/* MAX31790 registers */
@@ -506,9 +507,12 @@ static int max31790_probe(struct i2c_client *client)
{
struct i2c_adapter *adapter = client->adapter;
struct device *dev = &client->dev;
+ u8 pwmout_to_tach[NR_CHANNEL];
struct max31790_data *data;
struct device *hwmon_dev;
int err;
+ u8 tmp;
+ int i;

if (!i2c_check_functionality(adapter,
I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA))
@@ -528,6 +532,33 @@ static int max31790_probe(struct i2c_client *client)
if (err)
return err;

+ if (device_property_present(dev, "maxim,pwmout-pin-as-tach-input")) {
+ err = device_property_read_u8_array(dev, "maxim,pwmout-pin-as-tach-input",
+ pwmout_to_tach, NR_CHANNEL);
+ if (err) {
+ /* The maxim,pwmout-pin-as-tach-input is an array of six values */
+ dev_warn(dev, "The maxim,pwmout-pin-as-tach-input property exist but malform");
+ } else {
+ for (i = 0; i < NR_CHANNEL; i++) {
+ tmp = data->fan_config[i];
+ if (pwmout_to_tach[i])
+ data->fan_config[i] |= MAX31790_FAN_CFG_TACH_INPUT;
+ else
+ data->fan_config[i] &= ~(MAX31790_FAN_CFG_TACH_INPUT);
+
+ if (tmp != data->fan_config[i]) {
+ err = i2c_smbus_write_byte_data(client,
+ MAX31790_REG_FAN_CONFIG(i),
+ data->fan_config[i]);
+ if (err < 0)
+ dev_warn(dev,
+ "Fail to apply fan configuration at channel %d",
+ i);
+ }
+ }
+ }
+ }
+
hwmon_dev = devm_hwmon_device_register_with_info(dev, client->name,
data,
&max31790_chip_info,
--
2.17.1


2024-04-14 04:24:19

by Chanh Nguyen

[permalink] [raw]
Subject: [PATCH v2 3/3] dt-bindings: hwmon: max31790: Add maxim,pwmout-pin-as-tach-input property

The max31790 supports six pins, which are dedicated PWM outputs. Any of the
six PWM outputs can also be configured to serve as tachometer inputs,
allowing for up to 12 tachometer fans to be monitored.

Add a new vendor-specific property, 'maxim,pwmout-pin-as-tach-input',
to allow PWMOUT to become a TACH input.

An array of six integers responds to six PWM channels for configuring
the PWM to TACH mode. When set to 0, the associated PWMOUT produces
a PWM waveform for control of fan speed. When set to 1, PWMOUT becomes
a TACH input.

Signed-off-by: Chanh Nguyen <[email protected]>
---
Changes in v2:
- Update the vendor property name to "maxim,pwmout-pin-as-tach-input" [Rob]
- Update commit message [Krzysztof]
---
.../devicetree/bindings/hwmon/maxim,max31790.yaml | 11 +++++++++++
1 file changed, 11 insertions(+)

diff --git a/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
index a561e5a3e9e4..2d4f50bc7c41 100644
--- a/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
+++ b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
@@ -30,6 +30,16 @@ properties:
resets:
maxItems: 1

+ maxim,pwmout-pin-as-tach-input:
+ description: |
+ An array of six integers responds to six PWM channels for
+ configuring the pwm to tach mode.
+ When set to 0, the associated PWMOUT produces a PWM waveform for
+ control of fan speed. When set to 1, PWMOUT becomes a TACH input
+ $ref: /schemas/types.yaml#/definitions/uint8-array
+ maxItems: 6
+ minItems: 6
+
required:
- compatible
- reg
@@ -48,5 +58,6 @@ examples:
fan-controller@20 {
compatible = "maxim,max31790";
reg = <0x20>;
+ maxim,pwmout-pin-as-tach-input = /bits/ 8 <0 0 0 0 1 1>;
};
};
--
2.17.1


2024-04-14 06:03:57

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [PATCH v2 1/3] dt-bindings: hwmon: Add maxim max31790 bindings

On 14/04/2024 06:22, Chanh Nguyen wrote:
> Add a device tree bindings for max31790 device.
>

Nothing improved in commit msg, where is the rationale of split of bindings?

A nit, subject: drop second/last, redundant "bindings". The
"dt-bindings" prefix is already stating that these are bindings.
See also:
https://elixir.bootlin.com/linux/v6.7-rc8/source/Documentation/devicetree/bindings/submitting-patches.rst#L18

> Signed-off-by: Chanh Nguyen <[email protected]>
> ---
> Changes in v2:
> - Update filename of the maxim,max31790.yaml [Krzysztof]
> - Add the common fan schema to $ref [Krzysztof]
> - Update the node name to "fan-controller" in maxim,max31790.yaml [Krzysztof]
> - Drop "driver" in commit title [Krzysztof]
> ---
> .../bindings/hwmon/maxim,max31790.yaml | 52 +++++++++++++++++++
> 1 file changed, 52 insertions(+)
> create mode 100644 Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
>
> diff --git a/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
> new file mode 100644
> index 000000000000..a561e5a3e9e4
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
> @@ -0,0 +1,52 @@
> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/hwmon/maxim,max31790.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: The Maxim MAX31790 Fan Controller
> +
> +maintainers:
> + - Guenter Roeck <[email protected]>
> +
> +description: >
> + The MAX31790 controls the speeds of up to six fans using six
> + independent PWM outputs. The desired fan speeds (or PWM duty cycles)
> + are written through the I2C interface.
> +
> + Datasheets:
> + https://datasheets.maximintegrated.com/en/ds/MAX31790.pdf
> +
> +properties:
> + compatible:
> + const: maxim,max31790
> +
> + reg:
> + maxItems: 1
> +
> + clocks:
> + maxItems: 1
> +
> + resets:
> + maxItems: 1
> +
> +required:
> + - compatible
> + - reg
> +
> +allOf:
> + - $ref: fan-common.yaml#
> +
> +unevaluatedProperties: false
> +
> +examples:
> + - |
> + i2c {
> + #address-cells = <1>;
> + #size-cells = <0>;
> +
> + fan-controller@20 {
> + compatible = "maxim,max31790";
> + reg = <0x20>;

Make the example complete - add all properties, like clocks, resets and
any others which are applicable.

Best regards,
Krzysztof


2024-04-14 06:07:23

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [PATCH v2 3/3] dt-bindings: hwmon: max31790: Add maxim,pwmout-pin-as-tach-input property

On 14/04/2024 06:22, Chanh Nguyen wrote:
> The max31790 supports six pins, which are dedicated PWM outputs. Any of the
> six PWM outputs can also be configured to serve as tachometer inputs,
> allowing for up to 12 tachometer fans to be monitored.
>
> Add a new vendor-specific property, 'maxim,pwmout-pin-as-tach-input',
> to allow PWMOUT to become a TACH input.
>
> An array of six integers responds to six PWM channels for configuring
> the PWM to TACH mode. When set to 0, the associated PWMOUT produces
> a PWM waveform for control of fan speed. When set to 1, PWMOUT becomes
> a TACH input.
>
> Signed-off-by: Chanh Nguyen <[email protected]>
> ---
> Changes in v2:
> - Update the vendor property name to "maxim,pwmout-pin-as-tach-input" [Rob]
> - Update commit message [Krzysztof]

Please put binding before its user.

> ---
> .../devicetree/bindings/hwmon/maxim,max31790.yaml | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
> index a561e5a3e9e4..2d4f50bc7c41 100644
> --- a/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
> +++ b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
> @@ -30,6 +30,16 @@ properties:
> resets:
> maxItems: 1
>
> + maxim,pwmout-pin-as-tach-input:
> + description: |
> + An array of six integers responds to six PWM channels for
> + configuring the pwm to tach mode.
> + When set to 0, the associated PWMOUT produces a PWM waveform for
> + control of fan speed. When set to 1, PWMOUT becomes a TACH input
> + $ref: /schemas/types.yaml#/definitions/uint8-array
> + maxItems: 6
> + minItems: 6

tach-ch solves your case. You define which inputs should be used for tach.

Best regards,
Krzysztof


2024-04-14 08:03:32

by Christophe JAILLET

[permalink] [raw]
Subject: Re: [PATCH v2 2/3] hwmon: (max31790): Support config PWM output becomes TACH

Le 14/04/2024 à 06:22, Chanh Nguyen a écrit :
> PWMOUT pins on MAX31790 can be configured as a tachometer input pin by
> setting bit[0] in the Configuration Register. When the bit[0] of a channel
> is set, the PWMOUT pin becomes the tach input pin for the channel plus six.
>
> This commit allows the kernel to set those pins when necessary if the
> maxim,pwmout-pin-as-tach-input DT property exists.
>
> Signed-off-by: Chanh Nguyen <[email protected]>
> ---
> Changes in v2:
> - Update the vendor property name to "maxim,pwmout-pin-as-tach-input" [Rob]

..

> @@ -528,6 +532,33 @@ static int max31790_probe(struct i2c_client *client)
> if (err)
> return err;
>
> + if (device_property_present(dev, "maxim,pwmout-pin-as-tach-input")) {
> + err = device_property_read_u8_array(dev, "maxim,pwmout-pin-as-tach-input",
> + pwmout_to_tach, NR_CHANNEL);
> + if (err) {
> + /* The maxim,pwmout-pin-as-tach-input is an array of six values */
> + dev_warn(dev, "The maxim,pwmout-pin-as-tach-input property exist but malform");

Nit: exists
Nit: malformed or "is malformed"

CJ

2024-04-16 04:39:21

by Chanh Nguyen

[permalink] [raw]
Subject: Re: [PATCH v2 1/3] dt-bindings: hwmon: Add maxim max31790 bindings



On 14/04/2024 13:03, Krzysztof Kozlowski wrote:
> On 14/04/2024 06:22, Chanh Nguyen wrote:
>> Add a device tree bindings for max31790 device.
>>
>
> Nothing improved in commit msg, where is the rationale of split of bindings?
>

Yes Krzysztof, I will use "tach-ch" property from the fan-common.yaml to
solve my case. So I will not need a split of bindings.

Finally, my patch series will only be two patches. They are
"dt-bindings: hwmon: Add maxim max31790" and "hwmon: (max31790): Support
config PWM output becomes TACH".

I'm going to update that in the patch v3 series.

> A nit, subject: drop second/last, redundant "bindings". The
> "dt-bindings" prefix is already stating that these are bindings.
> See also:
> https://elixir.bootlin.com/linux/v6.7-rc8/source/Documentation/devicetree/bindings/submitting-patches.rst#L18
>

Thank Krzysztof, I'll drop "bindings" in commit msg.

>> Signed-off-by: Chanh Nguyen <[email protected]>
>> ---
>> Changes in v2:
>> - Update filename of the maxim,max31790.yaml [Krzysztof]
>> - Add the common fan schema to $ref [Krzysztof]
>> - Update the node name to "fan-controller" in maxim,max31790.yaml [Krzysztof]
>> - Drop "driver" in commit title [Krzysztof]
>> ---
>> .../bindings/hwmon/maxim,max31790.yaml | 52 +++++++++++++++++++
>> 1 file changed, 52 insertions(+)
>> create mode 100644 Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
>>
>> diff --git a/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
>> new file mode 100644
>> index 000000000000..a561e5a3e9e4
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
>> @@ -0,0 +1,52 @@
>> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
>> +%YAML 1.2
>> +---
>> +$id: http://devicetree.org/schemas/hwmon/maxim,max31790.yaml#
>> +$schema: http://devicetree.org/meta-schemas/core.yaml#
>> +
>> +title: The Maxim MAX31790 Fan Controller
>> +
>> +maintainers:
>> + - Guenter Roeck <[email protected]>
>> +
>> +description: >
>> + The MAX31790 controls the speeds of up to six fans using six
>> + independent PWM outputs. The desired fan speeds (or PWM duty cycles)
>> + are written through the I2C interface.
>> +
>> + Datasheets:
>> + https://datasheets.maximintegrated.com/en/ds/MAX31790.pdf
>> +
>> +properties:
>> + compatible:
>> + const: maxim,max31790
>> +
>> + reg:
>> + maxItems: 1
>> +
>> + clocks:
>> + maxItems: 1
>> +
>> + resets:
>> + maxItems: 1
>> +
>> +required:
>> + - compatible
>> + - reg
>> +
>> +allOf:
>> + - $ref: fan-common.yaml#
>> +
>> +unevaluatedProperties: false
>> +
>> +examples:
>> + - |
>> + i2c {
>> + #address-cells = <1>;
>> + #size-cells = <0>;
>> +
>> + fan-controller@20 {
>> + compatible = "maxim,max31790";
>> + reg = <0x20>;
>
> Make the example complete - add all properties, like clocks, resets and
> any others which are applicable.
>

Ok Krzysztof, I'll update that in the patch v3

> Best regards,
> Krzysztof
>

2024-04-16 04:53:32

by Chanh Nguyen

[permalink] [raw]
Subject: Re: [PATCH v2 3/3] dt-bindings: hwmon: max31790: Add maxim,pwmout-pin-as-tach-input property



On 14/04/2024 13:07, Krzysztof Kozlowski wrote:
> On 14/04/2024 06:22, Chanh Nguyen wrote:
>> The max31790 supports six pins, which are dedicated PWM outputs. Any of the
>> six PWM outputs can also be configured to serve as tachometer inputs,
>> allowing for up to 12 tachometer fans to be monitored.
>>
>> Add a new vendor-specific property, 'maxim,pwmout-pin-as-tach-input',
>> to allow PWMOUT to become a TACH input.
>>
>> An array of six integers responds to six PWM channels for configuring
>> the PWM to TACH mode. When set to 0, the associated PWMOUT produces
>> a PWM waveform for control of fan speed. When set to 1, PWMOUT becomes
>> a TACH input.
>>
>> Signed-off-by: Chanh Nguyen <[email protected]>
>> ---
>> Changes in v2:
>> - Update the vendor property name to "maxim,pwmout-pin-as-tach-input" [Rob]
>> - Update commit message [Krzysztof]
>
> Please put binding before its user.
>

Hi Krzysztof, I'll drop this [Path 3/3] in the patch series v3.

My patch series will only be two patches. They are "dt-bindings: hwmon:
Add maxim max31790" and "hwmon: (max31790): Support config PWM output
becomes TACH"

>> ---
>> .../devicetree/bindings/hwmon/maxim,max31790.yaml | 11 +++++++++++
>> 1 file changed, 11 insertions(+)
>>
>> diff --git a/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
>> index a561e5a3e9e4..2d4f50bc7c41 100644
>> --- a/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
>> +++ b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
>> @@ -30,6 +30,16 @@ properties:
>> resets:
>> maxItems: 1
>>
>> + maxim,pwmout-pin-as-tach-input:
>> + description: |
>> + An array of six integers responds to six PWM channels for
>> + configuring the pwm to tach mode.
>> + When set to 0, the associated PWMOUT produces a PWM waveform for
>> + control of fan speed. When set to 1, PWMOUT becomes a TACH input
>> + $ref: /schemas/types.yaml#/definitions/uint8-array
>> + maxItems: 6
>> + minItems: 6
>
> tach-ch solves your case. You define which inputs should be used for tach.
>

Agree Krzysztof. I'll use the tach-ch property from the fan-common.yaml
to solve my case. So I will not need to define a new vendor property as
"maxim,pwmout-pin-as-tach-input". I'll drop this [Path 3/3] in the patch
series v3.


> Best regards,
> Krzysztof
>

2024-04-16 05:27:29

by Chanh Nguyen

[permalink] [raw]
Subject: Re: [PATCH v2 2/3] hwmon: (max31790): Support config PWM output becomes TACH



On 14/04/2024 15:03, Christophe JAILLET wrote:
> Le 14/04/2024 à 06:22, Chanh Nguyen a écrit :
>> PWMOUT pins on MAX31790 can be configured as a tachometer input pin by
>> setting bit[0] in the Configuration Register. When the bit[0] of a
>> channel
>> is set, the PWMOUT pin becomes the tach input pin for the channel plus
>> six.
>>
>> This commit allows the kernel to set those pins when necessary if the
>> maxim,pwmout-pin-as-tach-input DT property exists.
>>
>> Signed-off-by: Chanh Nguyen <[email protected]>
>> ---
>> Changes in v2:
>>   - Update the vendor property name to
>> "maxim,pwmout-pin-as-tach-input"   [Rob]
>
> ...

Hi CJ, what does it mean?
>
>> @@ -528,6 +532,33 @@ static int max31790_probe(struct i2c_client *client)
>>       if (err)
>>           return err;
>> +    if (device_property_present(dev,
>> "maxim,pwmout-pin-as-tach-input")) {
>> +        err = device_property_read_u8_array(dev,
>> "maxim,pwmout-pin-as-tach-input",
>> +                            pwmout_to_tach, NR_CHANNEL);
>> +        if (err) {
>> +            /* The maxim,pwmout-pin-as-tach-input is an array of six
>> values */
>> +            dev_warn(dev, "The maxim,pwmout-pin-as-tach-input
>> property exist but malform");
>
> Nit: exists
> Nit: malformed or "is malformed"
>

Thank CJ,

I'll update that in the patch v3

> CJ

2024-04-16 17:39:33

by Christophe JAILLET

[permalink] [raw]
Subject: Re: [PATCH v2 2/3] hwmon: (max31790): Support config PWM output becomes TACH

Le 16/04/2024 à 07:27, Chanh Nguyen a écrit :
>
>
> On 14/04/2024 15:03, Christophe JAILLET wrote:
>> Le 14/04/2024 à 06:22, Chanh Nguyen a écrit :
>>> PWMOUT pins on MAX31790 can be configured as a tachometer input pin by
>>> setting bit[0] in the Configuration Register. When the bit[0] of a
>>> channel
>>> is set, the PWMOUT pin becomes the tach input pin for the channel
>>> plus six.
>>>
>>> This commit allows the kernel to set those pins when necessary if the
>>> maxim,pwmout-pin-as-tach-input DT property exists.
>>>
>>> Signed-off-by: Chanh Nguyen <[email protected]>
>>> ---
>>> Changes in v2:
>>>   - Update the vendor property name to
>>> "maxim,pwmout-pin-as-tach-input"   [Rob]
>>
>> ...
>
> Hi CJ, what does it mean?

Hi,
just a shortcut of my name : Christophe Jaillet.

CJ

>>
>>> @@ -528,6 +532,33 @@ static int max31790_probe(struct i2c_client
>>> *client)
>>>       if (err)
>>>           return err;
>>> +    if (device_property_present(dev,
>>> "maxim,pwmout-pin-as-tach-input")) {
>>> +        err = device_property_read_u8_array(dev,
>>> "maxim,pwmout-pin-as-tach-input",
>>> +                            pwmout_to_tach, NR_CHANNEL);
>>> +        if (err) {
>>> +            /* The maxim,pwmout-pin-as-tach-input is an array of six
>>> values */
>>> +            dev_warn(dev, "The maxim,pwmout-pin-as-tach-input
>>> property exist but malform");
>>
>> Nit: exists
>> Nit: malformed or "is malformed"
>>
>
> Thank CJ,
>
> I'll update that in the patch v3
>
>> CJ
>
>


2024-04-17 02:54:35

by Chanh Nguyen

[permalink] [raw]
Subject: Re: [PATCH v2 2/3] hwmon: (max31790): Support config PWM output becomes TACH



On 17/04/2024 00:39, Christophe JAILLET wrote:
> Le 16/04/2024 à 07:27, Chanh Nguyen a écrit :
>>
>>
>> On 14/04/2024 15:03, Christophe JAILLET wrote:
>>> Le 14/04/2024 à 06:22, Chanh Nguyen a écrit :
>>>> PWMOUT pins on MAX31790 can be configured as a tachometer input pin by
>>>> setting bit[0] in the Configuration Register. When the bit[0] of a
>>>> channel
>>>> is set, the PWMOUT pin becomes the tach input pin for the channel
>>>> plus six.
>>>>
>>>> This commit allows the kernel to set those pins when necessary if the
>>>> maxim,pwmout-pin-as-tach-input DT property exists.
>>>>
>>>> Signed-off-by: Chanh Nguyen <[email protected]>
>>>> ---
>>>> Changes in v2:
>>>>   - Update the vendor property name to
>>>> "maxim,pwmout-pin-as-tach-input"   [Rob]
>>>
>>> ...
>>
>> Hi CJ, what does it mean?
>
> Hi,
> just a shortcut of my name : Christophe Jaillet.
>

Thank CJ! It's a pleasure to see your comments. I'm happy to meet your
review in the next patches.

Best Regards,
Chanh Ng

> CJ
>
>>>
>>>> @@ -528,6 +532,33 @@ static int max31790_probe(struct i2c_client
>>>> *client)
>>>>       if (err)
>>>>           return err;
>>>> +    if (device_property_present(dev,
>>>> "maxim,pwmout-pin-as-tach-input")) {
>>>> +        err = device_property_read_u8_array(dev,
>>>> "maxim,pwmout-pin-as-tach-input",
>>>> +                            pwmout_to_tach, NR_CHANNEL);
>>>> +        if (err) {
>>>> +            /* The maxim,pwmout-pin-as-tach-input is an array of
>>>> six values */
>>>> +            dev_warn(dev, "The maxim,pwmout-pin-as-tach-input
>>>> property exist but malform");
>>>
>>> Nit: exists
>>> Nit: malformed or "is malformed"
>>>
>>
>> Thank CJ,
>>
>> I'll update that in the patch v3
>>
>>> CJ
>>
>>
>

2024-04-23 08:46:21

by Chanh Nguyen

[permalink] [raw]
Subject: Re: [PATCH v2 3/3] dt-bindings: hwmon: max31790: Add maxim,pwmout-pin-as-tach-input property



On 16/04/2024 11:52, Chanh Nguyen wrote:
>
>
> On 14/04/2024 13:07, Krzysztof Kozlowski wrote:
>> On 14/04/2024 06:22, Chanh Nguyen wrote:
>>> The max31790 supports six pins, which are dedicated PWM outputs. Any
>>> of the
>>> six PWM outputs can also be configured to serve as tachometer inputs,
>>> allowing for up to 12 tachometer fans to be monitored.
>>>
>>> Add a new vendor-specific property, 'maxim,pwmout-pin-as-tach-input',
>>> to allow PWMOUT to become a TACH input.
>>>
>>> An array of six integers responds to six PWM channels for configuring
>>> the PWM to TACH mode. When set to 0, the associated PWMOUT produces
>>> a PWM waveform for control of fan speed. When set to 1, PWMOUT becomes
>>> a TACH input.
>>>
>>> Signed-off-by: Chanh Nguyen <[email protected]>
>>> ---
>>> Changes in v2:
>>>   - Update the vendor property name to
>>> "maxim,pwmout-pin-as-tach-input"   [Rob]
>>>   - Update commit
>>> message                                                 [Krzysztof]
>>
>> Please put binding before its user.
>>
>
> Hi Krzysztof, I'll drop this [Path 3/3] in the patch series v3.
>
> My patch series will only be two patches. They are "dt-bindings: hwmon:
> Add maxim max31790" and "hwmon: (max31790): Support config PWM output
> becomes TACH"
>
>>> ---
>>>   .../devicetree/bindings/hwmon/maxim,max31790.yaml     | 11 +++++++++++
>>>   1 file changed, 11 insertions(+)
>>>
>>> diff --git
>>> a/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
>>> b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
>>> index a561e5a3e9e4..2d4f50bc7c41 100644
>>> --- a/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
>>> +++ b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
>>> @@ -30,6 +30,16 @@ properties:
>>>     resets:
>>>       maxItems: 1
>>> +  maxim,pwmout-pin-as-tach-input:
>>> +    description: |
>>> +      An array of six integers responds to six PWM channels for
>>> +      configuring the pwm to tach mode.
>>> +      When set to 0, the associated PWMOUT produces a PWM waveform for
>>> +      control of fan speed. When set to 1, PWMOUT becomes a TACH input
>>> +    $ref: /schemas/types.yaml#/definitions/uint8-array
>>> +    maxItems: 6
>>> +    minItems: 6
>>
>> tach-ch solves your case. You define which inputs should be used for
>> tach.
>>
>
> Agree Krzysztof. I'll use the tach-ch property from the fan-common.yaml
> to solve my case. So I will not need to define a new vendor property as
> "maxim,pwmout-pin-as-tach-input". I'll drop this [Path 3/3] in the patch
> series v3.
>
>
>> Best regards,
>> Krzysztof
>>


Hi Krzysztof,

I checked in the
Documentation/devicetree/bindings/hwmon/fan-common.yaml. I found the
tach-ch property, but it seems define the tach channel used for fan.

tach-ch:
description:
The tach channel used for the fan.
$ref: /schemas/types.yaml#/definitions/uint8-array


In my purpose, I would like to configure the pwm output pins to become
tachometer input pins by setting bit[0] in the Configuration Register.


I think a vendor property is suitable for this purpose. It is only
available on specific MAX31790 fan controllers and not on other fan
controller devices. So I think we can't use the "tach-ch" in
fan-common.yaml.

I discussed it in the thread
https://lore.kernel.org/lkml/[email protected]/
, but I have not yet received Rob's response.

Please share your comment with me. I hope that will help us make a final
decision.

Thank Krzysztof very much!

2024-04-23 17:03:30

by Conor Dooley

[permalink] [raw]
Subject: Re: [PATCH v2 3/3] dt-bindings: hwmon: max31790: Add maxim,pwmout-pin-as-tach-input property

On Tue, Apr 23, 2024 at 03:45:12PM +0700, Chanh Nguyen wrote:
>
>
> On 16/04/2024 11:52, Chanh Nguyen wrote:
> >
> >
> > On 14/04/2024 13:07, Krzysztof Kozlowski wrote:
> > > On 14/04/2024 06:22, Chanh Nguyen wrote:
> > > > The max31790 supports six pins, which are dedicated PWM outputs.
> > > > Any of the
> > > > six PWM outputs can also be configured to serve as tachometer inputs,
> > > > allowing for up to 12 tachometer fans to be monitored.
> > > >
> > > > Add a new vendor-specific property, 'maxim,pwmout-pin-as-tach-input',
> > > > to allow PWMOUT to become a TACH input.
> > > >
> > > > An array of six integers responds to six PWM channels for configuring
> > > > the PWM to TACH mode. When set to 0, the associated PWMOUT produces
> > > > a PWM waveform for control of fan speed. When set to 1, PWMOUT becomes
> > > > a TACH input.
> > > >
> > > > Signed-off-by: Chanh Nguyen <[email protected]>
> > > > ---
> > > > Changes in v2:
> > > > ? - Update the vendor property name to
> > > > "maxim,pwmout-pin-as-tach-input"?? [Rob]
> > > > ? - Update commit
> > > > message????????????????????????????????????????????????
> > > > [Krzysztof]
> > >
> > > Please put binding before its user.
> > >
> >
> > Hi Krzysztof, I'll drop this [Path 3/3] in the patch series v3.
> >
> > My patch series will only be two patches. They are "dt-bindings: hwmon:
> > Add maxim max31790" and "hwmon: (max31790): Support config PWM output
> > becomes TACH"
> >
> > > > ---
> > > > ? .../devicetree/bindings/hwmon/maxim,max31790.yaml???? | 11 +++++++++++
> > > > ? 1 file changed, 11 insertions(+)
> > > >
> > > > diff --git
> > > > a/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
> > > > b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
> > > > index a561e5a3e9e4..2d4f50bc7c41 100644
> > > > --- a/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
> > > > +++ b/Documentation/devicetree/bindings/hwmon/maxim,max31790.yaml
> > > > @@ -30,6 +30,16 @@ properties:
> > > > ??? resets:
> > > > ????? maxItems: 1
> > > > +? maxim,pwmout-pin-as-tach-input:
> > > > +??? description: |
> > > > +????? An array of six integers responds to six PWM channels for
> > > > +????? configuring the pwm to tach mode.
> > > > +????? When set to 0, the associated PWMOUT produces a PWM waveform for
> > > > +????? control of fan speed. When set to 1, PWMOUT becomes a TACH input
> > > > +??? $ref: /schemas/types.yaml#/definitions/uint8-array
> > > > +??? maxItems: 6
> > > > +??? minItems: 6
> > >
> > > tach-ch solves your case. You define which inputs should be used for
> > > tach.
> > >
> >
> > Agree Krzysztof. I'll use the tach-ch property from the fan-common.yaml
> > to solve my case. So I will not need to define a new vendor property as
> > "maxim,pwmout-pin-as-tach-input". I'll drop this [Path 3/3] in the patch
> > series v3.
> >
> >
> > > Best regards,
> > > Krzysztof
> > >
>
>
> Hi Krzysztof,
>
> I checked in the
> Documentation/devicetree/bindings/hwmon/fan-common.yaml. I found the
> tach-ch property, but it seems define the tach channel used for fan.
>
> tach-ch:
> description:
> The tach channel used for the fan.
> $ref: /schemas/types.yaml#/definitions/uint8-array
>
>
> In my purpose, I would like to configure the pwm output pins to become
> tachometer input pins by setting bit[0] in the Configuration Register.
>
>
> I think a vendor property is suitable for this purpose. It is only available
> on specific MAX31790 fan controllers and not on other fan controller
> devices. So I think we can't use the "tach-ch" in fan-common.yaml.

Can you explain why you think that only MAX31790 fan controllers are
capable of an arbitrary mapping of PWM outputs to TACH inputs?


Attachments:
(No filename) (3.78 kB)
signature.asc (235.00 B)
Download all attachments

2024-04-25 10:34:04

by Chanh Nguyen

[permalink] [raw]
Subject: Re: [PATCH v2 3/3] dt-bindings: hwmon: max31790: Add maxim,pwmout-pin-as-tach-input property



On 24/04/2024 00:02, Conor Dooley wrote:
> [EXTERNAL EMAIL NOTICE: This email originated from an external sender. Please be mindful of safe email handling and proprietary information protection practices.]
>

Sorry Conor, there may be confusion here. I mean the mapping of the PWM
output to the TACH input, which is on the MAX31790, and it is not sure a
common feature on all fan controllers.

I would like to open a discussion about whether we should use the
tach-ch property on the fan-common.yaml

I'm looking forward to hearing comments from everyone. For me, both
tach-ch and vendor property are good.

Thank you, Conor!

2024-04-25 14:12:51

by Guenter Roeck

[permalink] [raw]
Subject: Re: [PATCH v2 3/3] dt-bindings: hwmon: max31790: Add maxim,pwmout-pin-as-tach-input property

On 4/25/24 03:33, Chanh Nguyen wrote:
>
>
> On 24/04/2024 00:02, Conor Dooley wrote:
>> [EXTERNAL EMAIL NOTICE: This email originated from an external sender. Please be mindful of safe email handling and proprietary information protection practices.]
>>
>

The quote doesn't make much sense.

> Sorry Conor, there may be confusion here. I mean the mapping of the PWM output to the TACH input, which is on the MAX31790, and it is not sure a common feature on all fan controllers.
>

I think the term "mapping" is a bit confusing here.

tach-ch, as I understand it, is supposed to associate a tachometer input
with a pwm output, meaning the fan speed measured with the tachometer input
is expected to change if the pwm output changes.

On MAX31790, it is possible to configure a pwm output pin as tachometer input pin.
That is something completely different. Also, the association is fixed.
If the first pwm channel is used as tachometer channel, it would show up as 7th
tachometer channel. If the 6th pwm channel is configured to be used as tachometer
input, it would show up as 12th tachometer channel.

Overall, the total number of channels on MAX31790 is always 12. 6 of them
are always tachometer inputs, the others can be configured to either be a
pwm output or a tachometer input.

pwm outputs on MAX31790 are always tied to the matching tachometer inputs
(pwm1 <--> tach1 etc) and can not be reconfigured, meaning tach-ch for
channel X would always be X.

> I would like to open a discussion about whether we should use the tach-ch property on the fan-common.yaml
>
> I'm looking forward to hearing comments from everyone. For me, both tach-ch and vendor property are good.
>

I am not even sure how to define tach-ch to mean "use the pwm output pin
associated with this tachometer input channel not as pwm output
but as tachometer input". That would be a boolean, not a number.

Guenter


2024-04-25 15:46:31

by Krzysztof Kozlowski

[permalink] [raw]
Subject: Re: [PATCH v2 3/3] dt-bindings: hwmon: max31790: Add maxim,pwmout-pin-as-tach-input property

On 25/04/2024 16:05, Guenter Roeck wrote:
> On 4/25/24 03:33, Chanh Nguyen wrote:
>>
>>
>> On 24/04/2024 00:02, Conor Dooley wrote:
>>> [EXTERNAL EMAIL NOTICE: This email originated from an external sender. Please be mindful of safe email handling and proprietary information protection practices.]
>>>
>>
>
> The quote doesn't make much sense.
>
>> Sorry Conor, there may be confusion here. I mean the mapping of the PWM output to the TACH input, which is on the MAX31790, and it is not sure a common feature on all fan controllers.
>>
>
> I think the term "mapping" is a bit confusing here.
>
> tach-ch, as I understand it, is supposed to associate a tachometer input
> with a pwm output, meaning the fan speed measured with the tachometer input
> is expected to change if the pwm output changes.
>
> On MAX31790, it is possible to configure a pwm output pin as tachometer input pin.
> That is something completely different. Also, the association is fixed.
> If the first pwm channel is used as tachometer channel, it would show up as 7th
> tachometer channel. If the 6th pwm channel is configured to be used as tachometer
> input, it would show up as 12th tachometer channel.
>
> Overall, the total number of channels on MAX31790 is always 12. 6 of them
> are always tachometer inputs, the others can be configured to either be a
> pwm output or a tachometer input.
>
> pwm outputs on MAX31790 are always tied to the matching tachometer inputs
> (pwm1 <--> tach1 etc) and can not be reconfigured, meaning tach-ch for
> channel X would always be X.
>
>> I would like to open a discussion about whether we should use the tach-ch property on the fan-common.yaml
>>
>> I'm looking forward to hearing comments from everyone. For me, both tach-ch and vendor property are good.
>>
>
> I am not even sure how to define tach-ch to mean "use the pwm output pin
> associated with this tachometer input channel not as pwm output
> but as tachometer input". That would be a boolean, not a number.

Thanks for explanation. So this is basically pin controller function
choice - kind of output or input, although not in terms of GPIO.

Shouldn't we have then fan children which will be consumers of PWMs?
Having a consumer makes pin PWM output. Then tach-ch says which pins are
tachometer for given fan? Just like aspeed,g6-pwm-tach.yaml has?

Best regards,
Krzysztof


2024-04-25 15:57:18

by Conor Dooley

[permalink] [raw]
Subject: Re: [PATCH v2 3/3] dt-bindings: hwmon: max31790: Add maxim,pwmout-pin-as-tach-input property

On Thu, Apr 25, 2024 at 05:46:02PM +0200, Krzysztof Kozlowski wrote:
> On 25/04/2024 16:05, Guenter Roeck wrote:
> > On 4/25/24 03:33, Chanh Nguyen wrote:
> >>
> >>
> >> On 24/04/2024 00:02, Conor Dooley wrote:
> >>> [EXTERNAL EMAIL NOTICE: This email originated from an external sender. Please be mindful of safe email handling and proprietary information protection practices.]
> >>>
> >>
> >
> > The quote doesn't make much sense.

The reply is to me questioning part of their earlier reply:
> I think a vendor property is suitable for this purpose. It is only available
> on specific MAX31790 fan controllers and not on other fan controller
> devices. So I think we can't use the "tach-ch" in fan-common.yaml.

Can you explain why you think that only MAX31790 fan controllers are
capable of an arbitrary mapping of PWM outputs to TACH inputs?

> >
> >> Sorry Conor, there may be confusion here. I mean the mapping of the PWM output to the TACH input, which is on the MAX31790, and it is not sure a common feature on all fan controllers.
> >>
> >
> > I think the term "mapping" is a bit confusing here.
> >
> > tach-ch, as I understand it, is supposed to associate a tachometer input
> > with a pwm output, meaning the fan speed measured with the tachometer input
> > is expected to change if the pwm output changes.
> >
> > On MAX31790, it is possible to configure a pwm output pin as tachometer input pin.
> > That is something completely different. Also, the association is fixed.
> > If the first pwm channel is used as tachometer channel, it would show up as 7th
> > tachometer channel. If the 6th pwm channel is configured to be used as tachometer
> > input, it would show up as 12th tachometer channel.
> >
> > Overall, the total number of channels on MAX31790 is always 12. 6 of them
> > are always tachometer inputs, the others can be configured to either be a
> > pwm output or a tachometer input.
> >

> > pwm outputs on MAX31790 are always tied to the matching tachometer inputs
> > (pwm1 <--> tach1 etc) and can not be reconfigured, meaning tach-ch for
> > channel X would always be X.

Are they? Granted, I probably didn't read this as well as you did, but
figure 3, 4 5 & 6 seem to show mappings that are not 1:1, with PWMOUT1
controlling several fans, each of which report back via a different tach
channel. I think the fan controller binding accounts for this though:
the child nodes would reference the same PWM provider but have different
tach-ch values.

> >
> >> I would like to open a discussion about whether we should use the tach-ch property on the fan-common.yaml
> >>
> >> I'm looking forward to hearing comments from everyone. For me, both tach-ch and vendor property are good.
> >>
> >
> > I am not even sure how to define tach-ch to mean "use the pwm output pin
> > associated with this tachometer input channel not as pwm output
> > but as tachometer input". That would be a boolean, not a number.
>
> Thanks for explanation. So this is basically pin controller function
> choice - kind of output or input, although not in terms of GPIO.
>

> Shouldn't we have then fan children which will be consumers of PWMs?

In this case, the max31790 has the PWM hardware, so it would be the
provider...

> Having a consumer makes pin PWM output. Then tach-ch says which pins are
> tachometer for given fan? Just like aspeed,g6-pwm-tach.yaml has?

...and it seems to me like there should be several fan child nodes as in
the aspeed binding you mention here that are the consumers. The binding
as written seems to only support a single fan.


Attachments:
(No filename) (3.57 kB)
signature.asc (235.00 B)
Download all attachments