From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: mail@conchuod.ie, Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Andrew Lunn <andrew@lunn.ch>,
Support Opensource <support.opensource@diasemi.com>,
Lee Jones <lee.jones@linaro.org>,
Ulf Hansson <ulf.hansson@linaro.org>,
Palmer Dabbelt <palmer@dabbelt.com>,
Paul Walmsley <paul.walmsley@sifive.com>,
Albert Ou <aou@eecs.berkeley.edu>,
Steve Twiss <stwiss.opensource@diasemi.com>
Cc: Conor Dooley <conor.dooley@microchip.com>,
linux-i2c@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org, linux-mmc@vger.kernel.org,
linux-riscv@lists.infradead.org,
Atul Khare <atulkhare@rivosinc.com>
Subject: Re: [PATCH v1 4/6] dt-bindings: mfd: convert da9063 to yaml
Date: Mon, 6 Jun 2022 15:11:16 +0200 [thread overview]
Message-ID: <cf00eaad-420f-a6ad-ab7f-418f273886fe@linaro.org> (raw)
In-Reply-To: <20220605133300.376161-5-mail@conchuod.ie>
On 05/06/2022 15:32, mail@conchuod.ie wrote:
> From: Conor Dooley <conor.dooley@microchip.com>
>
> Convert the dt binding for the da9063/da9063l to yaml.
>
> Signed-off-by: Conor Dooley <conor.dooley@microchip.com>
> ---
> .../devicetree/bindings/mfd/da9063.txt | 111 ----------------
> .../devicetree/bindings/mfd/da9063.yaml | 123 ++++++++++++++++++
> .../devicetree/bindings/trivial-devices.yaml | 2 -
> 3 files changed, 123 insertions(+), 113 deletions(-)
> delete mode 100644 Documentation/devicetree/bindings/mfd/da9063.txt
> create mode 100644 Documentation/devicetree/bindings/mfd/da9063.yaml
>
> diff --git a/Documentation/devicetree/bindings/mfd/da9063.txt b/Documentation/devicetree/bindings/mfd/da9063.txt
> deleted file mode 100644
> index 91b79a21d403..000000000000
> --- a/Documentation/devicetree/bindings/mfd/da9063.txt
> +++ /dev/null
> @@ -1,111 +0,0 @@
> -* Dialog DA9063/DA9063L Power Management Integrated Circuit (PMIC)
> -
> -DA9063 consists of a large and varied group of sub-devices (I2C Only):
> -
> -Device Supply Names Description
> ------- ------------ -----------
> -da9063-regulator : : LDOs & BUCKs
> -da9063-onkey : : On Key
> -da9063-rtc : : Real-Time Clock (DA9063 only)
> -da9063-watchdog : : Watchdog
> -
> -======
> -
> -Required properties:
> -
> -- compatible : Should be "dlg,da9063" or "dlg,da9063l"
> -- reg : Specifies the I2C slave address (this defaults to 0x58 but it can be
> - modified to match the chip's OTP settings).
> -- interrupts : IRQ line information.
> -- interrupt-controller
> -
> -Sub-nodes:
> -
> -- regulators : This node defines the settings for the LDOs and BUCKs.
> - The DA9063(L) regulators are bound using their names listed below:
> -
> - bcore1 : BUCK CORE1
> - bcore2 : BUCK CORE2
> - bpro : BUCK PRO
> - bmem : BUCK MEM
> - bio : BUCK IO
> - bperi : BUCK PERI
> - ldo1 : LDO_1 (DA9063 only)
> - ldo2 : LDO_2 (DA9063 only)
> - ldo3 : LDO_3
> - ldo4 : LDO_4 (DA9063 only)
> - ldo5 : LDO_5 (DA9063 only)
> - ldo6 : LDO_6 (DA9063 only)
> - ldo7 : LDO_7
> - ldo8 : LDO_8
> - ldo9 : LDO_9
> - ldo10 : LDO_10 (DA9063 only)
> - ldo11 : LDO_11
> -
> - The component follows the standard regulator framework and the bindings
> - details of individual regulator device can be found in:
> - Documentation/devicetree/bindings/regulator/regulator.txt
> -
> -- rtc : This node defines settings for the Real-Time Clock associated with
> - the DA9063 only. The RTC is not present in DA9063L. There are currently
> - no entries in this binding, however compatible = "dlg,da9063-rtc" should
> - be added if a node is created.
> -
> -- onkey : This node defines the OnKey settings for controlling the key
> - functionality of the device. The node should contain the compatible property
> - with the value "dlg,da9063-onkey".
> -
> - Optional onkey properties:
> -
> - - dlg,disable-key-power : Disable power-down using a long key-press. If this
> - entry exists the OnKey driver will remove support for the KEY_POWER key
> - press. If this entry does not exist then by default the key-press
> - triggered power down is enabled and the OnKey will support both KEY_POWER
> - and KEY_SLEEP.
> -
> -- watchdog : This node defines settings for the Watchdog timer associated
> - with the DA9063 and DA9063L. There are currently no entries in this
> - binding, however compatible = "dlg,da9063-watchdog" should be added
> - if a node is created.
> -
> -
> -Example:
> -
> - pmic0: da9063@58 {
> - compatible = "dlg,da9063"
> - reg = <0x58>;
> - interrupt-parent = <&gpio6>;
> - interrupts = <11 IRQ_TYPE_LEVEL_LOW>;
> - interrupt-controller;
> -
> - rtc {
> - compatible = "dlg,da9063-rtc";
> - };
> -
> - wdt {
> - compatible = "dlg,da9063-watchdog";
> - };
> -
> - onkey {
> - compatible = "dlg,da9063-onkey";
> - dlg,disable-key-power;
> - };
> -
> - regulators {
> - DA9063_BCORE1: bcore1 {
> - regulator-name = "BCORE1";
> - regulator-min-microvolt = <300000>;
> - regulator-max-microvolt = <1570000>;
> - regulator-min-microamp = <500000>;
> - regulator-max-microamp = <2000000>;
> - regulator-boot-on;
> - };
> - DA9063_LDO11: ldo11 {
> - regulator-name = "LDO_11";
> - regulator-min-microvolt = <900000>;
> - regulator-max-microvolt = <3600000>;
> - regulator-boot-on;
> - };
> - };
> - };
> -
> diff --git a/Documentation/devicetree/bindings/mfd/da9063.yaml b/Documentation/devicetree/bindings/mfd/da9063.yaml
> new file mode 100644
> index 000000000000..376880061f42
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/mfd/da9063.yaml
dlg,da9063.yaml
> @@ -0,0 +1,123 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/mfd/da9063.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Dialog DA9063/DA9063L Power Management Integrated Circuit (PMIC)
> +
> +maintainers:
> + - Steve Twiss <stwiss.opensource@diasemi.com>
> +
> +description: |
> + For device-tree bindings of other sub-modules refer to the binding documents
> + under the respective sub-system directories.
> +
> +properties:
> + compatible:
> + enum:
> + - dlg,da9063
> + - dlg,da9063l
> +
> + reg:
> + description:
> + I2C device address.
Skip description.
> + maxItems: 1
> +
> + interrupts:
> + maxItems: 1
> +
> + interrupt-controller: true
> +
> + "#interrupt-cells":
> + const: 2
> +
> + watchdog:
> + type: object
> + $ref: ../watchdog/watchdog.yaml#
1. full reference, so /schemas/watchdog/....
2. unevaluatedProperties:false
> + properties:
> + compatible:
> + const: dlg,da9063-watchdog
> +
> + rtc:
> + type: object
> + $ref: ../rtc/rtc.yaml#
Ditto
> + properties:
> + compatible:
> + const: dlg,da9063-rtc
> +
> + onkey:
> + type: object
> + $ref: ../input/input.yaml#
Ditto
> + properties:
> + compatible:
> + const: dlg,da9063-onkey
> +
> + dlg,disable-key-power:
> + type: boolean
> + description: |
> + Disable power-down using a long key-press.
> + If this entry does not exist then by default the key-press triggered
> + power down is enabled and the OnKey will support both KEY_POWER and
> + KEY_SLEEP.
> +
> + regulators:
> + type: object
> + patternProperties:
> + "^(ldo[1-11]|bcore[1-2]|bpro|bmem|bio|bperi)$":
> + $ref: ../regulator/regulator.yaml
Ditto
> +
> +required:
> + - compatible
> + - reg
> + - interrupts
> + - interrupt-controller
> +
Best regards,
Krzysztof
next prev parent reply other threads:[~2022-06-06 13:11 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-05 13:32 [PATCH v1 0/6] clear riscv dtbs_check errors mail
2022-06-05 13:32 ` [PATCH v1 1/6] dt-bindings: mmc: convert mmc-spi-slot to yaml mail
2022-06-06 7:34 ` Krzysztof Kozlowski
2022-06-05 13:32 ` [PATCH v1 2/6] dt-bindings: i2c: convert ocores binding " mail
2022-06-06 8:02 ` Krzysztof Kozlowski
2022-06-06 14:41 ` Conor.Dooley
2022-06-06 12:53 ` Rob Herring
2022-06-05 13:32 ` [PATCH v1 3/6] MAINTAINERS: convert ocores i2c dt-binding " mail
2022-06-05 13:32 ` [PATCH v1 4/6] dt-bindings: mfd: convert da9063 " mail
2022-06-06 13:11 ` Krzysztof Kozlowski [this message]
2022-06-05 13:33 ` [PATCH v1 5/6] MAINTAINERS: " mail
2022-06-05 13:33 ` [PATCH v1 6/6] riscv: dts: sifive: "fix" pmic watchdog node name mail
2022-06-06 8:07 ` Krzysztof Kozlowski
2022-06-06 7:34 ` [PATCH v1 0/6] clear riscv dtbs_check errors Krzysztof Kozlowski
2022-06-06 8:56 ` Conor.Dooley
2022-06-08 22:27 ` Atul Khare
2022-06-08 22:42 ` Conor Dooley
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=cf00eaad-420f-a6ad-ab7f-418f273886fe@linaro.org \
--to=krzysztof.kozlowski@linaro.org \
--cc=andrew@lunn.ch \
--cc=aou@eecs.berkeley.edu \
--cc=atulkhare@rivosinc.com \
--cc=conor.dooley@microchip.com \
--cc=devicetree@vger.kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=lee.jones@linaro.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=mail@conchuod.ie \
--cc=palmer@dabbelt.com \
--cc=paul.walmsley@sifive.com \
--cc=robh+dt@kernel.org \
--cc=stwiss.opensource@diasemi.com \
--cc=support.opensource@diasemi.com \
--cc=ulf.hansson@linaro.org \
/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