public inbox for linux-input@vger.kernel.org
 help / color / mirror / Atom feed
From: Svyatoslav Ryhel <clamor95@gmail.com>
To: "Jonathan Cameron" <jic23@kernel.org>,
	"David Lechner" <dlechner@baylibre.com>,
	"Nuno Sá" <nuno.sa@analog.com>,
	"Andy Shevchenko" <andy@kernel.org>,
	"Rob Herring" <robh@kernel.org>,
	"Krzysztof Kozlowski" <krzk+dt@kernel.org>,
	"Conor Dooley" <conor+dt@kernel.org>,
	"Dmitry Torokhov" <dmitry.torokhov@gmail.com>,
	"Lee Jones" <lee@kernel.org>, "Pavel Machek" <pavel@kernel.org>,
	"Liam Girdwood" <lgirdwood@gmail.com>,
	"Mark Brown" <broonie@kernel.org>,
	"Svyatoslav Ryhel" <clamor95@gmail.com>,
	"Dixit Parmar" <dixitparmar19@gmail.com>,
	"Tony Lindgren" <tony@atomide.com>
Cc: linux-iio@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org, linux-input@vger.kernel.org,
	linux-leds@vger.kernel.org
Subject: [PATCH v2 01/11] dt-bindings: regulator: cpcap-regulator: convert to DT schema
Date: Fri,  6 Feb 2026 19:28:35 +0200	[thread overview]
Message-ID: <20260206172845.145407-2-clamor95@gmail.com> (raw)
In-Reply-To: <20260206172845.145407-1-clamor95@gmail.com>

Convert devicetree bindings for the Motorola CPCAP MFD regulator subnode
from TXT to YAML format. Main functionality preserved.

Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
---
 .../bindings/regulator/cpcap-regulator.txt    | 35 -------------
 .../regulator/motorola,cpcap-regulator.yaml   | 50 +++++++++++++++++++
 2 files changed, 50 insertions(+), 35 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/regulator/cpcap-regulator.txt
 create mode 100644 Documentation/devicetree/bindings/regulator/motorola,cpcap-regulator.yaml

diff --git a/Documentation/devicetree/bindings/regulator/cpcap-regulator.txt b/Documentation/devicetree/bindings/regulator/cpcap-regulator.txt
deleted file mode 100644
index 36f5e2f5cc0f..000000000000
--- a/Documentation/devicetree/bindings/regulator/cpcap-regulator.txt
+++ /dev/null
@@ -1,35 +0,0 @@
-Motorola CPCAP PMIC voltage regulators
-------------------------------------
-
-Requires node properties:
-- "compatible" value one of:
-    "motorola,cpcap-regulator"
-    "motorola,mapphone-cpcap-regulator"
-    "motorola,xoom-cpcap-regulator"
-
-Required regulator properties:
-- "regulator-name"
-- "regulator-enable-ramp-delay"
-- "regulator-min-microvolt"
-- "regulator-max-microvolt"
-
-Optional regulator properties:
-- "regulator-boot-on"
-
-See Documentation/devicetree/bindings/regulator/regulator.txt
-for more details about the regulator properties.
-
-Example:
-
-cpcap_regulator: regulator {
-	compatible = "motorola,cpcap-regulator";
-
-	cpcap_regulators: regulators {
-		sw5: SW5 {
-			regulator-min-microvolt = <5050000>;
-			regulator-max-microvolt = <5050000>;
-			regulator-enable-ramp-delay = <50000>;
-			regulator-boot-on;
-		};
-	};
-};
diff --git a/Documentation/devicetree/bindings/regulator/motorola,cpcap-regulator.yaml b/Documentation/devicetree/bindings/regulator/motorola,cpcap-regulator.yaml
new file mode 100644
index 000000000000..50bc57f06b51
--- /dev/null
+++ b/Documentation/devicetree/bindings/regulator/motorola,cpcap-regulator.yaml
@@ -0,0 +1,50 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/regulator/motorola,cpcap-regulator.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: Motorola CPCAP PMIC regulators
+
+maintainers:
+  - Svyatoslav Ryhel <clamor95@gmail.com>
+
+description:
+  This module is part of the Motorola CPCAP MFD device. For more details
+  see Documentation/devicetree/bindings/mfd/motorola,cpcap.yaml. The
+  regulator controller is represented as a sub-node of the PMIC node
+  on the device tree.
+
+properties:
+  compatible:
+    enum:
+      - motorola,cpcap-regulator
+      - motorola,mapphone-cpcap-regulator
+      - motorola,xoom-cpcap-regulator
+
+  regulators:
+    type: object
+
+    patternProperties:
+      "$[A-Z0-9]+^":
+        $ref: /schemas/regulator/regulator.yaml#
+        type: object
+        description:
+          Valid regulator names are SW1, SW2, SW3, SW4, SW5, VCAM, VCSI,
+          VDAC, VDIG, VFUSE, VHVIO, VSDIO, VPLL, VRF1, VRF2, VRFREF, VWLAN1,
+          VWLAN2, VSIM, VSIMCARD, VVIB, VUSB, VAUDIO
+
+        required:
+          - regulator-name
+          - regulator-enable-ramp-delay
+          - regulator-min-microvolt
+          - regulator-max-microvolt
+
+        unevaluatedProperties: false
+
+required:
+  - compatible
+
+additionalProperties: false
+
+...
-- 
2.51.0


  reply	other threads:[~2026-02-06 17:29 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-06 17:28 [PATCH v2 00/11] mfd: cpcap: convert documentation to schema and add Mot board support Svyatoslav Ryhel
2026-02-06 17:28 ` Svyatoslav Ryhel [this message]
2026-02-06 22:58   ` [PATCH v2 01/11] dt-bindings: regulator: cpcap-regulator: convert to DT schema Rob Herring (Arm)
2026-02-06 23:09   ` Rob Herring
2026-02-07  9:20     ` Svyatoslav Ryhel
2026-02-07 17:19       ` David Lechner
2026-02-07 17:25         ` Svyatoslav Ryhel
2026-02-07 17:32           ` David Lechner
2026-02-08 22:37             ` Rob Herring
2026-02-09  7:13               ` Svyatoslav Ryhel
2026-02-06 17:28 ` [PATCH v2 02/11] dt-bindings: regulator: cpcap-regulator: document Mot regulator Svyatoslav Ryhel
2026-02-11 21:13   ` Rob Herring (Arm)
2026-02-06 17:28 ` [PATCH v2 03/11] regulator: cpcap-regulator: add support for Mot regulators Svyatoslav Ryhel
2026-02-06 17:28 ` [PATCH v2 04/11] dt-bindings: iio: adc: cpcap-adc: document Mot ADC Svyatoslav Ryhel
2026-02-07 13:55   ` Jonathan Cameron
2026-02-06 17:28 ` [PATCH v2 05/11] iio: adc: cpcap-adc: add support for " Svyatoslav Ryhel
2026-02-07 13:55   ` Jonathan Cameron
2026-03-03 21:27     ` Jonathan Cameron
2026-02-06 17:28 ` [PATCH v2 06/11] dt-bindings: leds: leds-cpcap: convert to DT schema Svyatoslav Ryhel
2026-02-06 22:58   ` Rob Herring (Arm)
2026-02-06 17:28 ` [PATCH v2 07/11] dt-bindings: input: cpcap-pwrbutton: " Svyatoslav Ryhel
2026-02-06 22:58   ` Rob Herring (Arm)
2026-02-06 17:28 ` [PATCH v2 08/11] dt-bindings: mfd: motorola-cpcap: " Svyatoslav Ryhel
2026-02-11 21:20   ` Rob Herring
2026-02-12  5:30     ` Svyatoslav Ryhel
2026-02-12 20:19       ` Rob Herring
2026-02-13  7:23         ` Svyatoslav Ryhel
2026-02-06 17:28 ` [PATCH v2 09/11] dt-bindings: mfd: motorola-cpcap: document Mapphone and Mot CPCAP Svyatoslav Ryhel
2026-02-06 17:28 ` [PATCH v2 10/11] mfd: motorola-cpcap: diverge configuration per-board Svyatoslav Ryhel
2026-02-08 12:54   ` Andy Shevchenko
2026-02-08 15:19     ` Svyatoslav Ryhel
2026-02-09  8:18       ` Andy Shevchenko
2026-02-09  8:42         ` Svyatoslav Ryhel
2026-02-09  8:55           ` Andy Shevchenko
2026-02-09  9:06             ` Svyatoslav Ryhel
2026-02-09 10:27               ` Andy Shevchenko
2026-02-06 17:28 ` [PATCH v2 11/11] mfd: motorola-cpcap: add support for Mot CPCAP composition Svyatoslav Ryhel
2026-02-08 12:56   ` Andy Shevchenko
2026-02-08 14:41     ` Svyatoslav Ryhel
2026-02-08 14:48       ` Andy Shevchenko

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=20260206172845.145407-2-clamor95@gmail.com \
    --to=clamor95@gmail.com \
    --cc=andy@kernel.org \
    --cc=broonie@kernel.org \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dixitparmar19@gmail.com \
    --cc=dlechner@baylibre.com \
    --cc=dmitry.torokhov@gmail.com \
    --cc=jic23@kernel.org \
    --cc=krzk+dt@kernel.org \
    --cc=lee@kernel.org \
    --cc=lgirdwood@gmail.com \
    --cc=linux-iio@vger.kernel.org \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-leds@vger.kernel.org \
    --cc=nuno.sa@analog.com \
    --cc=pavel@kernel.org \
    --cc=robh@kernel.org \
    --cc=tony@atomide.com \
    /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