From nobody Tue Sep 9 18:08:51 2025 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 D8464C001DC for ; Wed, 26 Jul 2023 07:16:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230119AbjGZHQy (ORCPT ); Wed, 26 Jul 2023 03:16:54 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48612 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232380AbjGZHQA (ORCPT ); Wed, 26 Jul 2023 03:16:00 -0400 Received: from mg.richtek.com (mg.richtek.com [220.130.44.152]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 0B25E422F; Wed, 26 Jul 2023 00:13:33 -0700 (PDT) X-MailGates: (SIP:2,PASS,NONE)(compute_score:DELIVER,40,3) Received: from 192.168.10.47 by mg.richtek.com with MailGates ESMTPS Server V6.0(1318264:0:AUTH_RELAY) (envelope-from ) (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256/256); Wed, 26 Jul 2023 15:13:16 +0800 (CST) Received: from ex4.rt.l (192.168.10.47) by ex4.rt.l (192.168.10.47) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1118.25; Wed, 26 Jul 2023 15:13:16 +0800 Received: from linuxcarl2.richtek.com (192.168.10.154) by ex4.rt.l (192.168.10.45) with Microsoft SMTP Server id 15.2.1118.25 via Frontend Transport; Wed, 26 Jul 2023 15:13:16 +0800 From: Alina Yu To: , , , , CC: , , Subject: [PATCH v5 1/2] regulator: dt-bindings: rtq2208: Add Richtek RTQ2208 SubPMIC Date: Wed, 26 Jul 2023 15:13:11 +0800 Message-ID: <1690355592-10920-2-git-send-email-alina_yu@richtek.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1690355592-10920-1-git-send-email-alina_yu@richtek.com> References: <1690355592-10920-1-git-send-email-alina_yu@richtek.com> MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Add bindings for Richtek RTQ2208 IC controlled SubPMIC Signed-off-by: Alina Yu --- v5 - Revise filename from $id - Remove "regulator-compatible" for ldos - Add missing "high" for "richtek,mtp-sel-high" - Remove "regulator-mode" property - Add and modify "unevaluatedProperties: false" and "additionalProperties: = false" - Remove "richtek,fixed-uV" - Remove redundant space in "buck-a" and "ldo2" v4 - Modify filename to "richtek,rtq2208" - Add more desciptions for "regulator-allowed-modes" --- .../bindings/regulator/richtek,rtq2208.yaml | 196 +++++++++++++++++= ++++ 1 file changed, 196 insertions(+) create mode 100644 Documentation/devicetree/bindings/regulator/richtek,rtq= 2208.yaml diff --git a/Documentation/devicetree/bindings/regulator/richtek,rtq2208.ya= ml b/Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml new file mode 100644 index 0000000..63453f2 --- /dev/null +++ b/Documentation/devicetree/bindings/regulator/richtek,rtq2208.yaml @@ -0,0 +1,196 @@ +# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/regulator/richtek,rtq2208.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Richtek RTQ2208 SubPMIC Regulator + +maintainers: + - Alina Yu + +description: | + RTQ2208 is a highly integrated power converter that offers functional sa= fety dual + multi-configurable synchronous buck converters and two LDOs. + + Bucks support "regulator-allowed-modes" and "regulator-mode". The former= defines the permitted + switching operation in normal mode; the latter defines the operation in = suspend to RAM mode. + + No matter the RTQ2208 is configured to normal or suspend to RAM mode, th= ere are two switching + operation modes for all buck rails, automatic power saving mode (Auto mo= de) and forced continuous + conduction mode (FCCM). + + The definition of modes is in the datasheet which is available in below = link + and their meaning is:: + 0 - Auto mode for power saving, which reducing the switching frequency= at light load condition + to maintain high frequency. + 1 - FCCM to meet the strict voltage regulation accuracy, which keeping= constant switching frequency. + + Datasheet will be available soon at + https://www.richtek.com/assets/Products + +properties: + compatible: + enum: + - richtek,rtq2208 + + reg: + maxItems: 1 + + interrupts: + maxItems: 1 + =20 + richtek,mtp-sel-high: + type: boolean + description: + vout register selection based on this boolean value. + false - Using DVS0 register setting to adjust vout + true - Using DVS1 register setting to adjust vout + + regulators: + type: object + + patternProperties: + "^buck-[a-h]$": + type: object + $ref: regulator.yaml# + unevaluatedProperties: false + description: + description for buck-[a-h] regulator. + + properties: + regulator-allowed-modes: + description: + two buck modes in different switching accuracy. + 0 - Auto mode + 1 - FCCM + items: + enum: [0, 1] + + "^ldo[1-2]$": + type: object + $ref: regulator.yaml# + unevaluatedProperties: false + description: + regulator description for ldo[1-2]. + +required: + - compatible + - reg + - regulators + +additionalProperties: false + +examples: + - | + #include + i2c { + #address-cells =3D <1>; + #size-cells =3D <0>; + + pmic@10 { + compatible =3D "richtek,rtq2208"; + reg =3D <0x10>; + interrupts-extended =3D <&gpio26 0 IRQ_TYPE_LEVEL_LOW>; + richtek,mtp-sel-high; + + regulators { + buck-a { + regulator-min-microvolt =3D <400000>; + regulator-max-microvolt =3D <2050000>; + regulator-allowed-modes =3D <0 1>; + regulator-always-on; + regulator-state-mem { + regulator-on-in-suspend; + regulator-mode =3D <1>; + }; + }; + buck-b { + regulator-min-microvolt =3D <400000>; + regulator-max-microvolt =3D <2050000>; + regulator-allowed-modes =3D <0 1>; + regulator-always-on; + regulator-state-mem { + regulator-on-in-suspend; + regulator-mode =3D <1>; + }; + }; + buck-c { + regulator-min-microvolt =3D <400000>; + regulator-max-microvolt =3D <2050000>; + regulator-allowed-modes =3D <0 1>; + regulator-always-on; + regulator-state-mem { + regulator-on-in-suspend; + regulator-mode =3D <1>; + }; + }; + buck-d { + regulator-min-microvolt =3D <400000>; + regulator-max-microvolt =3D <2050000>; + regulator-allowed-modes =3D <0 1>; + regulator-always-on; + regulator-state-mem { + regulator-on-in-suspend; + regulator-mode =3D <1>; + }; + }; + buck-e { + regulator-min-microvolt =3D <400000>; + regulator-max-microvolt =3D <2050000>; + regulator-allowed-modes =3D <0 1>; + regulator-always-on; + regulator-state-mem { + regulator-on-in-suspend; + regulator-mode =3D <1>; + }; + }; + buck-f { + regulator-min-microvolt =3D <400000>; + regulator-max-microvolt =3D <2050000>; + regulator-allowed-modes =3D <0 1>; + regulator-always-on; + regulator-state-mem { + regulator-on-in-suspend; + regulator-mode =3D <1>; + }; + }; + buck-g { + regulator-min-microvolt =3D <400000>; + regulator-max-microvolt =3D <2050000>; + regulator-allowed-modes =3D <0 1>; + regulator-always-on; + regulator-state-mem { + regulator-on-in-suspend; + regulator-mode =3D <1>; + }; + }; + buck-h { + regulator-min-microvolt =3D <400000>; + regulator-max-microvolt =3D <2050000>; + regulator-allowed-modes =3D <0 1>; + regulator-always-on; + regulator-state-mem { + regulator-on-in-suspend; + regulator-mode =3D <1>; + }; + }; + ldo1 { + regulator-min-microvolt =3D <1200000>; + regulator-max-microvolt =3D <1200000>; + regulator-always-on; + regulator-state-mem { + regulator-on-in-suspend; + }; + }; + ldo2 { + regulator-min-microvolt =3D <3300000>; + regulator-max-microvolt =3D <3300000>; + regulator-always-on; + regulator-state-mem { + regulator-on-in-suspend; + }; + }; + }; + }; + }; --=20 2.7.4