[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <a33794ed2caeefc8a79419f35b7e28546996dec9.1756822704.git.wdouglass@carnegierobotics.com>
Date: Tue, 2 Sep 2025 10:21:34 -0400
From: Woodrow Douglass <wdouglass@...negierobotics.com>
To: linux-kernel@...r.kernel.org
Cc: Woodrow Douglass <wdouglass@...negierobotics.com>,
Liam Girdwood <lgirdwood@...il.com>,
Mark Brown <broonie@...nel.org>
Subject: [PATCH 2/2] regulator: pf530x: dt-bindings: nxp,pf530x-regulator
Bindings for the pf530x series of voltage regulators
Signed-off-by: Woodrow Douglass <wdouglass@...negierobotics.com>
---
.../regulator/nxp,pf530x-regulator.yaml | 74 +++++++++++++++++++
1 file changed, 74 insertions(+)
create mode 100644 Documentation/devicetree/bindings/regulator/nxp,pf530x-regulator.yaml
diff --git a/Documentation/devicetree/bindings/regulator/nxp,pf530x-regulator.yaml b/Documentation/devicetree/bindings/regulator/nxp,pf530x-regulator.yaml
new file mode 100644
index 000000000000..f1065b167491
--- /dev/null
+++ b/Documentation/devicetree/bindings/regulator/nxp,pf530x-regulator.yaml
@@ -0,0 +1,74 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/regulator/nxp,pf530x-regulator.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: NXP PF5300/PF5301/PF5302 PMIC regulators
+
+maintainers:
+ - Woodrow Douglass <wdouglass@...negierobotics.com>
+
+description: |
+ The PF5300, PF5301, and PF5302 integrate high-performance buck converters, 12 A, 8 A,
+ and 15 A, respectively, to power high-end automotive and industrial processors. With adaptive
+ voltage positioning and a high-bandwidth loop, they offer transient regulation to minimize capacitor
+ requirements.
+
+properties:
+ compatible:
+ enum:
+ - nxp,pf5300
+ - nxp,pf5301
+ - nxp,pf5302
+
+ reg:
+ maxItems: 1
+
+ regulators:
+ type: object
+ description: |
+ list of regulators provided by this controller
+
+ properties:
+ SW1:
+ type: object
+ $ref: regulator.yaml#
+ description:
+ Properties for the regulator.
+
+ properties:
+ regulator-name:
+ pattern: "^SW1$"
+ description:
+ Name of the single regulator
+
+ additionalProperties: false
+
+required:
+ - compatible
+ - reg
+ - regulators
+
+additionalProperties: false
+
+examples:
+ - |
+ i2c1 {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ vddi_0_75@28 {
+ compatible = "nxp,pf5302";
+ reg = <0x28>;
+
+ regulators {
+ SW1: SW1 {
+ regulator-always-on;
+ regulator-boot-on;
+ regulator-max-microvolt = <1200000>;
+ regulator-min-microvolt = <500000>;
+ };
+ };
+ };
+ };
--
2.39.5
Powered by blists - more mailing lists