From: David Heidelberg <david@ixit.cz>
To: Rob Herring <robh@kernel.org>
Cc: Guenter Roeck <linux@roeck-us.net>,
Jean Delvare <jdelvare@suse.com>,
linux-hwmon@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, ~okias/devicetree@lists.sr.ht
Subject: Re: [PATCH] WIP: dt-bindings: arm: hwmon: gpio-fan: Convert txt bindings to yaml
Date: Thu, 28 Oct 2021 15:52:35 +0200 [thread overview]
Message-ID: <N7XO1R.T7ICL6D5U4CF3@ixit.cz> (raw)
In-Reply-To: <YW86Ffa+zoIZpixu@robh.at.kernel.org>
On Tue, Oct 19 2021 at 16:35:17 -0500, Rob Herring <robh@kernel.org>
wrote:
> On Sat, Oct 09, 2021 at 12:43:09PM +0200, David Heidelberg wrote:
>> Convert fan devices connected to GPIOs to the YAML syntax.
>>
>> Signed-off-by: David Heidelberg <david@ixit.cz>
>> ---
>> .../devicetree/bindings/hwmon/gpio-fan.txt | 41 -----------
>> .../devicetree/bindings/hwmon/gpio-fan.yaml | 69
>> +++++++++++++++++++
>> 2 files changed, 69 insertions(+), 41 deletions(-)
>> delete mode 100644
>> Documentation/devicetree/bindings/hwmon/gpio-fan.txt
>> create mode 100644
>> Documentation/devicetree/bindings/hwmon/gpio-fan.yaml
>>
>> diff --git a/Documentation/devicetree/bindings/hwmon/gpio-fan.txt
>> b/Documentation/devicetree/bindings/hwmon/gpio-fan.txt
>> deleted file mode 100644
>> index f4cfa350f6a1..000000000000
>> --- a/Documentation/devicetree/bindings/hwmon/gpio-fan.txt
>> +++ /dev/null
>> @@ -1,41 +0,0 @@
>> -Bindings for fan connected to GPIO lines
>> -
>> -Required properties:
>> -- compatible : "gpio-fan"
>> -
>> -Optional properties:
>> -- gpios: Specifies the pins that map to bits in the control value,
>> - ordered MSB-->LSB.
>> -- gpio-fan,speed-map: A mapping of possible fan RPM speeds and the
>> - control value that should be set to achieve them. This array
>> - must have the RPM values in ascending order.
>> -- alarm-gpios: This pin going active indicates something is wrong
>> with
>> - the fan, and a udev event will be fired.
>> -- #cooling-cells: If used as a cooling device, must be <2>
>> - Also see:
>> -
>> Documentation/devicetree/bindings/thermal/thermal-cooling-devices.yaml
>> - min and max states are derived from the speed-map of the fan.
>> -
>> -Note: At least one the "gpios" or "alarm-gpios" properties must be
>> set.
>> -
>> -Examples:
>> -
>> - gpio_fan {
>> - compatible = "gpio-fan";
>> - gpios = <&gpio1 14 1
>> - &gpio1 13 1>;
>> - gpio-fan,speed-map = <0 0
>> - 3000 1
>> - 6000 2>;
>> - alarm-gpios = <&gpio1 15 1>;
>> - };
>> - gpio_fan_cool: gpio_fan {
>> - compatible = "gpio-fan";
>> - gpios = <&gpio2 14 1
>> - &gpio2 13 1>;
>> - gpio-fan,speed-map = <0 0>,
>> - <3000 1>,
>> - <6000 2>;
>> - alarm-gpios = <&gpio2 15 1>;
>> - #cooling-cells = <2>; /* min followed by max */
>> - };
>> diff --git a/Documentation/devicetree/bindings/hwmon/gpio-fan.yaml
>> b/Documentation/devicetree/bindings/hwmon/gpio-fan.yaml
>> new file mode 100644
>> index 000000000000..e2db65d58a92
>> --- /dev/null
>> +++ b/Documentation/devicetree/bindings/hwmon/gpio-fan.yaml
>> @@ -0,0 +1,69 @@
>> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
>> +%YAML 1.2
>> +---
>> +$id: "http://devicetree.org/schemas/hwmon/gpio-fan.yaml#"
>> +$schema: "http://devicetree.org/meta-schemas/core.yaml#"
>> +
>> +title: Bindings for fan connected to GPIO lines
>> +
>> +maintainers:
>> + - Rob Herring <robh+dt@kernel.org>
>
> Just robh@kernel.org
>
>> +
>> +properties:
>> + compatible:
>> + const: gpio-fan
>> +
>> + gpios:
>> + description: |
>> + Specifies the pins that map to bits in the control value,
>> + ordered MSB-->LSB.
>
> minItems: 1
> maxItems: 7 ?
>
>> +
>> + gpio-fan,speed-map:
>> + $ref: /schemas/types.yaml#/definitions/uint32-array
>> + minItems: 4
>> + maxItems: 254
>> + description: |
>> + A mapping of possible fan RPM speeds and the
>> + control value that should be set to achieve them. This array
>> + must have the RPM values in ascending order.
>
> Really this should be a uint32-matrix with this schema:
>
> items:
> minItems: 2
> maxItems: 127
> items:
> - description: fan speed in RPMs
> - description: control value
>
>> +
>> + alarm-gpios:
>> + description: |
>> + This pin going active indicates something is wrong with
>> + the fan, and a udev event will be fired.
>
> maxItems: 1
>
> udev is a linuxism and shouldn't be in the binding.
>
>> +
>> + '#cooling-cells':
>> + const: 2
>> +
>> +required:
>> + - compatible
>> + - gpio-fan,speed-map
>> +
>> +anyOf:
>> + - required: [gpios]
>
> How is 'gpios' not always required?
>
>> + - required: [alarm-gpios]
>> +
>> +additionalProperties: false
>> +
>> +examples:
>> + - |
>> + gpio_fan {
>> + compatible = "gpio-fan";
>> + gpios = <&gpio1 14 1
>> + &gpio1 13 1>;
>> + gpio-fan,speed-map = <0 0
>> + 3000 1
>> + 6000 2>;
>
> Brackets needed around each pair.
Well, that's the issue. I would love to use u32-matrix, but all the
drivers use < x1 x2 y1 x2 ... z1 z2 > syntax and driver suggests it's
the right solution.
* Speed map is in the form <RPM ctrl_val RPM ctrl_val ...>
Someone had to rewrite the driver and the DTS files to fix it. We could
mark old format as deprecated and use u32-matrix, but for now with
current drivers it's not a solution.
What you think? Should I document it as it is (so u32-array)?
David
>
>> + alarm-gpios = <&gpio1 15 1>;
>> + };
>> + - |
>> + gpio_fan_cool: gpio_fan {
>> + compatible = "gpio-fan";
>> + gpios = <&gpio2 14 1
>> + &gpio2 13 1>;
>> + gpio-fan,speed-map = <0 0
>> + 3000 1
>> + 6000 2>;
>> + alarm-gpios = <&gpio2 15 1>;
>> + #cooling-cells = <2>; /* min followed by max */
>> + };
>> --
>> 2.33.0
>>
>>
prev parent reply other threads:[~2021-10-28 13:52 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-10-09 10:43 [PATCH] WIP: dt-bindings: arm: hwmon: gpio-fan: Convert txt bindings to yaml David Heidelberg
2021-10-10 19:31 ` Rob Herring
2021-10-10 21:49 ` David Heidelberg
2021-10-11 18:45 ` Rob Herring
2021-10-19 21:35 ` Rob Herring
2021-10-28 13:52 ` David Heidelberg [this message]
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=N7XO1R.T7ICL6D5U4CF3@ixit.cz \
--to=david@ixit.cz \
--cc=devicetree@vger.kernel.org \
--cc=jdelvare@suse.com \
--cc=linux-hwmon@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@roeck-us.net \
--cc=robh@kernel.org \
--cc=~okias/devicetree@lists.sr.ht \
/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