* [PATCH 0/1] Document multiple fan tach support in pwm-fan driver
@ 2020-09-20 18:09 Paul Barker
2020-09-20 18:09 ` [PATCH 1/1] dt-bindings: hwmon: pwm-fan: Support multiple fan tachometer inputs Paul Barker
0 siblings, 1 reply; 4+ messages in thread
From: Paul Barker @ 2020-09-20 18:09 UTC (permalink / raw)
To: Kamil Debski, Bartlomiej Zolnierkiewicz, Jean Delvare,
Guenter Roeck, Rob Herring
Cc: Paul Barker, linux-hwmon, devicetree
This patch updates the device tree bindings to match the changes I'm
about to send for the pwm-fan driver. Those changes will extend the
pwm-fan driver to support multiple fan tachometer inputs.
These changes can also be pulled from:
https://gitlab.com/pbarker.dev/staging/linux.git
tag: for-dt-next/pwm-fan_2020-09-20
Paul Barker (1):
dt-bindings: hwmon: pwm-fan: Support multiple fan tachometer inputs
.../devicetree/bindings/hwmon/pwm-fan.txt | 28 +++++++++++++------
1 file changed, 19 insertions(+), 9 deletions(-)
base-commit: 73f76a41c4ed7def5dc2ec7c33c7e9f94e601a20
--
2.28.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/1] dt-bindings: hwmon: pwm-fan: Support multiple fan tachometer inputs
2020-09-20 18:09 [PATCH 0/1] Document multiple fan tach support in pwm-fan driver Paul Barker
@ 2020-09-20 18:09 ` Paul Barker
2020-09-29 17:21 ` Rob Herring
2020-11-22 15:29 ` Guenter Roeck
0 siblings, 2 replies; 4+ messages in thread
From: Paul Barker @ 2020-09-20 18:09 UTC (permalink / raw)
To: Kamil Debski, Bartlomiej Zolnierkiewicz, Jean Delvare,
Guenter Roeck, Rob Herring
Cc: Paul Barker, linux-hwmon, devicetree
Document and give an example of how to define multiple fan tachometer
inputs for the pwm-fan driver.
Signed-off-by: Paul Barker <pbarker@konsulko.com>
---
.../devicetree/bindings/hwmon/pwm-fan.txt | 28 +++++++++++++------
1 file changed, 19 insertions(+), 9 deletions(-)
diff --git a/Documentation/devicetree/bindings/hwmon/pwm-fan.txt b/Documentation/devicetree/bindings/hwmon/pwm-fan.txt
index 41b76762953a..4509e688623a 100644
--- a/Documentation/devicetree/bindings/hwmon/pwm-fan.txt
+++ b/Documentation/devicetree/bindings/hwmon/pwm-fan.txt
@@ -8,15 +8,16 @@ Required properties:
Optional properties:
- fan-supply : phandle to the regulator that provides power to the fan
-- interrupts : This contains a single interrupt specifier which
- describes the tachometer output of the fan as an
- interrupt source. The output signal must generate a
- defined number of interrupts per fan revolution, which
- require that it must be self resetting edge interrupts.
- See interrupt-controller/interrupts.txt for the format.
-- pulses-per-revolution : define the tachometer pulses per fan revolution as
- an integer (default is 2 interrupts per revolution).
- The value must be greater than zero.
+- interrupts : This contains an interrupt specifier for each fan
+ tachometer output connected to an interrupt source.
+ The output signal must generate a defined number of
+ interrupts per fan revolution, which require that
+ it must be self resetting edge interrupts. See
+ interrupt-controller/interrupts.txt for the format.
+- pulses-per-revolution : define the number of pulses per fan revolution for
+ each tachometer input as an integer (default is 2
+ interrupts per revolution). The value must be
+ greater than zero.
Example:
fan0: pwm-fan {
@@ -55,3 +56,12 @@ Example 2:
interrupts = <1 IRQ_TYPE_EDGE_FALLING>;
pulses-per-revolution = <2>;
};
+
+Example 3:
+ fan0: pwm-fan {
+ compatible = "pwm-fan";
+ pwms = <&pwm1 0 25000 0>;
+ interrupts-extended = <&gpio1 1 IRQ_TYPE_EDGE_FALLING>,
+ <&gpio2 5 IRQ_TYPE_EDGE_FALLING>;
+ pulses-per-revolution = <2>, <1>;
+ };
--
2.28.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] dt-bindings: hwmon: pwm-fan: Support multiple fan tachometer inputs
2020-09-20 18:09 ` [PATCH 1/1] dt-bindings: hwmon: pwm-fan: Support multiple fan tachometer inputs Paul Barker
@ 2020-09-29 17:21 ` Rob Herring
2020-11-22 15:29 ` Guenter Roeck
1 sibling, 0 replies; 4+ messages in thread
From: Rob Herring @ 2020-09-29 17:21 UTC (permalink / raw)
To: Paul Barker
Cc: Guenter Roeck, linux-hwmon, Kamil Debski, Jean Delvare,
Rob Herring, Bartlomiej Zolnierkiewicz, devicetree
On Sun, 20 Sep 2020 19:09:40 +0100, Paul Barker wrote:
> Document and give an example of how to define multiple fan tachometer
> inputs for the pwm-fan driver.
>
> Signed-off-by: Paul Barker <pbarker@konsulko.com>
> ---
> .../devicetree/bindings/hwmon/pwm-fan.txt | 28 +++++++++++++------
> 1 file changed, 19 insertions(+), 9 deletions(-)
>
Reviewed-by: Rob Herring <robh@kernel.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] dt-bindings: hwmon: pwm-fan: Support multiple fan tachometer inputs
2020-09-20 18:09 ` [PATCH 1/1] dt-bindings: hwmon: pwm-fan: Support multiple fan tachometer inputs Paul Barker
2020-09-29 17:21 ` Rob Herring
@ 2020-11-22 15:29 ` Guenter Roeck
1 sibling, 0 replies; 4+ messages in thread
From: Guenter Roeck @ 2020-11-22 15:29 UTC (permalink / raw)
To: Paul Barker
Cc: Kamil Debski, Bartlomiej Zolnierkiewicz, Jean Delvare,
Rob Herring, linux-hwmon, devicetree
On Sun, Sep 20, 2020 at 07:09:40PM +0100, Paul Barker wrote:
> Document and give an example of how to define multiple fan tachometer
> inputs for the pwm-fan driver.
>
> Signed-off-by: Paul Barker <pbarker@konsulko.com>
> Reviewed-by: Rob Herring <robh@kernel.org>
Applied.
Thanks,
Guenter
> ---
> .../devicetree/bindings/hwmon/pwm-fan.txt | 28 +++++++++++++------
> 1 file changed, 19 insertions(+), 9 deletions(-)
>
> diff --git a/Documentation/devicetree/bindings/hwmon/pwm-fan.txt b/Documentation/devicetree/bindings/hwmon/pwm-fan.txt
> index 41b76762953a..4509e688623a 100644
> --- a/Documentation/devicetree/bindings/hwmon/pwm-fan.txt
> +++ b/Documentation/devicetree/bindings/hwmon/pwm-fan.txt
> @@ -8,15 +8,16 @@ Required properties:
>
> Optional properties:
> - fan-supply : phandle to the regulator that provides power to the fan
> -- interrupts : This contains a single interrupt specifier which
> - describes the tachometer output of the fan as an
> - interrupt source. The output signal must generate a
> - defined number of interrupts per fan revolution, which
> - require that it must be self resetting edge interrupts.
> - See interrupt-controller/interrupts.txt for the format.
> -- pulses-per-revolution : define the tachometer pulses per fan revolution as
> - an integer (default is 2 interrupts per revolution).
> - The value must be greater than zero.
> +- interrupts : This contains an interrupt specifier for each fan
> + tachometer output connected to an interrupt source.
> + The output signal must generate a defined number of
> + interrupts per fan revolution, which require that
> + it must be self resetting edge interrupts. See
> + interrupt-controller/interrupts.txt for the format.
> +- pulses-per-revolution : define the number of pulses per fan revolution for
> + each tachometer input as an integer (default is 2
> + interrupts per revolution). The value must be
> + greater than zero.
>
> Example:
> fan0: pwm-fan {
> @@ -55,3 +56,12 @@ Example 2:
> interrupts = <1 IRQ_TYPE_EDGE_FALLING>;
> pulses-per-revolution = <2>;
> };
> +
> +Example 3:
> + fan0: pwm-fan {
> + compatible = "pwm-fan";
> + pwms = <&pwm1 0 25000 0>;
> + interrupts-extended = <&gpio1 1 IRQ_TYPE_EDGE_FALLING>,
> + <&gpio2 5 IRQ_TYPE_EDGE_FALLING>;
> + pulses-per-revolution = <2>, <1>;
> + };
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-11-22 15:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-09-20 18:09 [PATCH 0/1] Document multiple fan tach support in pwm-fan driver Paul Barker
2020-09-20 18:09 ` [PATCH 1/1] dt-bindings: hwmon: pwm-fan: Support multiple fan tachometer inputs Paul Barker
2020-09-29 17:21 ` Rob Herring
2020-11-22 15:29 ` Guenter Roeck
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).