All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2] dt-bindings: rtc: rx8900: Convert to YAML schema
@ 2021-06-10 15:00 Marek Vasut
  2021-06-18 21:25 ` Rob Herring
  2021-06-20 20:33 ` Alexandre Belloni
  0 siblings, 2 replies; 3+ messages in thread
From: Marek Vasut @ 2021-06-10 15:00 UTC (permalink / raw)
  To: devicetree; +Cc: Marek Vasut, Alexandre Belloni, Rob Herring, kernel, linux-rtc

Convert the Epson RX8900 DT bindings to YAML schema.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>
Cc: Rob Herring <robh+dt@kernel.org>
Cc: kernel@dh-electronics.com
Cc: linux-rtc@vger.kernel.org
To: devicetree@vger.kernel.org
---
V2: - Switch the license to (GPL-2.0-only OR BSD-2-Clause)
---
 .../devicetree/bindings/rtc/epson,rx8900.txt  | 22 ---------
 .../devicetree/bindings/rtc/epson,rx8900.yaml | 49 +++++++++++++++++++
 2 files changed, 49 insertions(+), 22 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/rtc/epson,rx8900.txt
 create mode 100644 Documentation/devicetree/bindings/rtc/epson,rx8900.yaml

diff --git a/Documentation/devicetree/bindings/rtc/epson,rx8900.txt b/Documentation/devicetree/bindings/rtc/epson,rx8900.txt
deleted file mode 100644
index 3f61e516ecf6..000000000000
--- a/Documentation/devicetree/bindings/rtc/epson,rx8900.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-Real Time Clock driver for:
-  - Epson RX8900
-  - Micro Crystal rv8803
-
-Required properties:
-- compatible: should be: "microcrystal,rv8803" or "epson,rx8900"
-- reg : the I2C address of the device for I2C
-
-Optional properties:
-- epson,vdet-disable : boolean, if present will disable voltage detector.
-  Should be set if no backup battery is used.
-- trickle-diode-disable : boolean, if present will disable internal trickle
-  charger diode
-
-Example:
-
-	rtc: rtc@32 {
-		compatible = "epson,rx8900"
-		reg = <0x32>;
-		epson,vdet-disable;
-		trickle-diode-disable;
-	};
diff --git a/Documentation/devicetree/bindings/rtc/epson,rx8900.yaml b/Documentation/devicetree/bindings/rtc/epson,rx8900.yaml
new file mode 100644
index 000000000000..29fe39bb08ad
--- /dev/null
+++ b/Documentation/devicetree/bindings/rtc/epson,rx8900.yaml
@@ -0,0 +1,49 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/rtc/epson,rx8900.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: EPSON RX8900 / Microcrystal RV8803 Real-Time Clock DT bindings
+
+maintainers:
+  - Marek Vasut <marex@denx.de>
+
+allOf:
+  - $ref: rtc.yaml#
+
+properties:
+  compatible:
+    enum:
+      - epson,rx8900
+      - microcrystal,rv8803
+
+  reg:
+    maxItems: 1
+
+  epson,vdet-disable:
+    type: boolean
+    description: |
+      Disable voltage detector. Should be set if no backup battery is used.
+
+  trickle-diode-disable: true
+
+required:
+  - compatible
+  - reg
+
+additionalProperties: false
+
+examples:
+  - |
+    i2c {
+        #address-cells = <1>;
+        #size-cells = <0>;
+
+        rtc@32 {
+            compatible = "epson,rx8900";
+            reg = <0x32>;
+            epson,vdet-disable;
+            trickle-diode-disable;
+        };
+    };
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH V2] dt-bindings: rtc: rx8900: Convert to YAML schema
  2021-06-10 15:00 [PATCH V2] dt-bindings: rtc: rx8900: Convert to YAML schema Marek Vasut
@ 2021-06-18 21:25 ` Rob Herring
  2021-06-20 20:33 ` Alexandre Belloni
  1 sibling, 0 replies; 3+ messages in thread
From: Rob Herring @ 2021-06-18 21:25 UTC (permalink / raw)
  To: Marek Vasut; +Cc: kernel, linux-rtc, Rob Herring, devicetree, Alexandre Belloni

On Thu, 10 Jun 2021 17:00:44 +0200, Marek Vasut wrote:
> Convert the Epson RX8900 DT bindings to YAML schema.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Alexandre Belloni <alexandre.belloni@bootlin.com>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: kernel@dh-electronics.com
> Cc: linux-rtc@vger.kernel.org
> To: devicetree@vger.kernel.org
> ---
> V2: - Switch the license to (GPL-2.0-only OR BSD-2-Clause)
> ---
>  .../devicetree/bindings/rtc/epson,rx8900.txt  | 22 ---------
>  .../devicetree/bindings/rtc/epson,rx8900.yaml | 49 +++++++++++++++++++
>  2 files changed, 49 insertions(+), 22 deletions(-)
>  delete mode 100644 Documentation/devicetree/bindings/rtc/epson,rx8900.txt
>  create mode 100644 Documentation/devicetree/bindings/rtc/epson,rx8900.yaml
> 

Reviewed-by: Rob Herring <robh@kernel.org>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH V2] dt-bindings: rtc: rx8900: Convert to YAML schema
  2021-06-10 15:00 [PATCH V2] dt-bindings: rtc: rx8900: Convert to YAML schema Marek Vasut
  2021-06-18 21:25 ` Rob Herring
@ 2021-06-20 20:33 ` Alexandre Belloni
  1 sibling, 0 replies; 3+ messages in thread
From: Alexandre Belloni @ 2021-06-20 20:33 UTC (permalink / raw)
  To: devicetree, Marek Vasut; +Cc: Alexandre Belloni, Rob Herring, kernel, linux-rtc

On Thu, 10 Jun 2021 17:00:44 +0200, Marek Vasut wrote:
> Convert the Epson RX8900 DT bindings to YAML schema.

Applied, thanks!

[1/1] dt-bindings: rtc: rx8900: Convert to YAML schema
      commit: 7e124917809705f05e0c9f0f72a38102e6aa4eff

Best regards,
-- 
Alexandre Belloni <alexandre.belloni@bootlin.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-06-20 20:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-10 15:00 [PATCH V2] dt-bindings: rtc: rx8900: Convert to YAML schema Marek Vasut
2021-06-18 21:25 ` Rob Herring
2021-06-20 20:33 ` Alexandre Belloni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.