From nobody Thu Jan 1 11:04:23 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5ED84C004C0 for ; Mon, 23 Oct 2023 11:26:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233959AbjJWL0t (ORCPT ); Mon, 23 Oct 2023 07:26:49 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:35712 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233942AbjJWL0r (ORCPT ); Mon, 23 Oct 2023 07:26:47 -0400 Received: from xavier.telenet-ops.be (xavier.telenet-ops.be [IPv6:2a02:1800:120:4::f00:14]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 66A76D6 for ; Mon, 23 Oct 2023 04:26:44 -0700 (PDT) Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed40:375d:2b56:c03f:d72d]) by xavier.telenet-ops.be with bizsmtp id 1PSb2B00A3CbNjd01PSbRR; Mon, 23 Oct 2023 13:26:35 +0200 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1qut4m-007K8B-8v; Mon, 23 Oct 2023 13:26:35 +0200 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1quqre-005cBC-NP; Mon, 23 Oct 2023 11:04:46 +0200 From: Geert Uytterhoeven To: Support Opensource , Liam Girdwood , Mark Brown , Rob Herring , Krzysztof Kozlowski , Conor Dooley Cc: devicetree@vger.kernel.org, linux-renesas-soc@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH] dt-bindings: regulator: dlg,da9210: Convert to json-schema Date: Mon, 23 Oct 2023 11:04:45 +0200 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Type: text/plain; charset="utf-8" Convert the Dialog Semiconductor DA9210 Multi-Phase 12A DC-DC Buck Converter Device Tree binding documentation to json-schema. Signed-off-by: Geert Uytterhoeven Reviewed-by: Conor Dooley --- .../devicetree/bindings/regulator/da9210.txt | 29 ----------- .../bindings/regulator/dlg,da9210.yaml | 52 +++++++++++++++++++ 2 files changed, 52 insertions(+), 29 deletions(-) delete mode 100644 Documentation/devicetree/bindings/regulator/da9210.txt create mode 100644 Documentation/devicetree/bindings/regulator/dlg,da9210.= yaml diff --git a/Documentation/devicetree/bindings/regulator/da9210.txt b/Docum= entation/devicetree/bindings/regulator/da9210.txt deleted file mode 100644 index 58065ca9e3b46892..0000000000000000 --- a/Documentation/devicetree/bindings/regulator/da9210.txt +++ /dev/null @@ -1,29 +0,0 @@ -* Dialog Semiconductor DA9210 Multi-phase 12A DCDC BUCK Converter - -Required properties: - -- compatible: must be "dlg,da9210" -- reg: the i2c slave address of the regulator. It should be 0x68. - -Optional properties: - -- interrupts: a reference to the DA9210 interrupt, if available. - -Any standard regulator properties can be used to configure the single da92= 10 -DCDC. - -Example: - - da9210@68 { - compatible =3D "dlg,da9210"; - reg =3D <0x68>; - - interrupt-parent =3D <...>; - interrupts =3D <...>; - - regulator-min-microvolt =3D <300000>; - regulator-max-microvolt =3D <1570000>; - regulator-min-microamp =3D <1600000>; - regulator-max-microamp =3D <4600000>; - regulator-boot-on; - }; diff --git a/Documentation/devicetree/bindings/regulator/dlg,da9210.yaml b/= Documentation/devicetree/bindings/regulator/dlg,da9210.yaml new file mode 100644 index 0000000000000000..81f23de36de4c2f1 --- /dev/null +++ b/Documentation/devicetree/bindings/regulator/dlg,da9210.yaml @@ -0,0 +1,52 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/regulator/dlg,da9210.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Dialog Semiconductor DA9210 Multi-Phase 12A DC-DC Buck Converter + +maintainers: + - Support Opensource + +allOf: + - $ref: regulator.yaml# + +properties: + compatible: + const: dlg,da9210 + + reg: + maxItems: 1 + + interrupts: + maxItems: 1 + +required: + - compatible + - reg + +unevaluatedProperties: false + +examples: + - | + #include + + i2c { + #address-cells =3D <1>; + #size-cells =3D <0>; + + regulator@68 { + compatible =3D "dlg,da9210"; + reg =3D <0x68>; + + interrupt-parent =3D <&irqc0>; + interrupts =3D <2 IRQ_TYPE_LEVEL_LOW>; + + regulator-min-microvolt =3D <300000>; + regulator-max-microvolt =3D <1570000>; + regulator-min-microamp =3D <1600000>; + regulator-max-microamp =3D <4600000>; + regulator-boot-on; + }; + }; --=20 2.34.1