From nobody Fri Oct 3 11:22:55 2025 Received: from sendmail.purelymail.com (sendmail.purelymail.com [34.202.193.197]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id CB7161DF963 for ; Tue, 2 Sep 2025 14:21:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=34.202.193.197 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756822915; cv=none; b=YQEnIAcBPoXINN7MVKQ/nXaiDJA1WMQOiG+Mq/pE+qQ2jUkclRw9OD7y5cddTBva7toVJTE6oGqAHspUV5k7CaJXqjQ7Uu6JBEpBcOxgZqgVLCXI08kz74iJ+X68yg5E2hCYTjKDkvFfjVH2VFwomGuIGV4sumxyVyYhHNTYByI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1756822915; c=relaxed/simple; bh=afTu4E3BiQjz02dQljkpTGIJEgmOYGGH27/Q6WQFDv0=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=q6oZQcqiWD4keU5vo8TpLZVBvmR1782L5/8VFF66N3nEoYXjis5KP4yizMXagwPREsZ1I4yf+yUfdqQWZimjH4L0tEgoUPt5A0KqC4FqlhArRpk4W2T2x4HhmTPfshvWRq8GtQTB+qz/xjdwgszDdO4M5Q/kEYWJaMsAVqQVYIE= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=carnegierobotics.com; spf=pass smtp.mailfrom=douglass.dev; arc=none smtp.client-ip=34.202.193.197 Authentication-Results: smtp.subspace.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=carnegierobotics.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=douglass.dev Feedback-ID: 3578:1022:null:purelymail X-Pm-Original-To: linux-kernel@vger.kernel.org Received: by smtp.purelymail.com (Purelymail SMTP) with ESMTPSA id -1344370180; (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384); Tue, 02 Sep 2025 14:21:46 +0000 (UTC) From: Woodrow Douglass To: linux-kernel@vger.kernel.org Cc: Woodrow Douglass , Liam Girdwood , Mark Brown Subject: [PATCH 2/2] regulator: pf530x: dt-bindings: nxp,pf530x-regulator Date: Tue, 2 Sep 2025 10:21:34 -0400 Message-Id: X-Mailer: git-send-email 2.39.5 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Bindings for the pf530x series of voltage regulators Signed-off-by: Woodrow Douglass --- .../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-regulat= or.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 + +description: | + The PF5300, PF5301, and PF5302 integrate high-performance buck converter= s, 12 A, 8 A, + and 15 A, respectively, to power high-end automotive and industrial proc= essors. With adaptive + voltage positioning and a high-bandwidth loop, they offer transient regu= lation 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 =3D <1>; + #size-cells =3D <0>; + + vddi_0_75@28 { + compatible =3D "nxp,pf5302"; + reg =3D <0x28>; + + regulators { + SW1: SW1 { + regulator-always-on; + regulator-boot-on; + regulator-max-microvolt =3D <1200000>; + regulator-min-microvolt =3D <500000>; + }; + }; + }; + }; --=20 2.39.5