linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] dt-bindings: rng: mediatek: convert to yaml schema
@ 2021-05-18 11:22 Fabien Parent
  2021-05-18 11:22 ` [PATCH 2/2] dt-bindings: rng: mediatek: add mt8365 to mtk rng binding Fabien Parent
  2021-05-19 22:04 ` [PATCH 1/2] dt-bindings: rng: mediatek: convert to yaml schema Rob Herring
  0 siblings, 2 replies; 3+ messages in thread
From: Fabien Parent @ 2021-05-18 11:22 UTC (permalink / raw)
  To: Matt Mackall, Herbert Xu, Rob Herring, Matthias Brugger, Sean Wang
  Cc: mkorpershoek, Fabien Parent, linux-crypto, devicetree,
	linux-arm-kernel, linux-mediatek, linux-kernel

Convert the RNG binding for MediaTek to use YAML schema.

Signed-off-by: Fabien Parent <fparent@baylibre.com>
---
 .../devicetree/bindings/rng/mtk-rng.txt       | 22 --------
 .../devicetree/bindings/rng/mtk-rng.yaml      | 53 +++++++++++++++++++
 2 files changed, 53 insertions(+), 22 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/rng/mtk-rng.txt
 create mode 100644 Documentation/devicetree/bindings/rng/mtk-rng.yaml

diff --git a/Documentation/devicetree/bindings/rng/mtk-rng.txt b/Documentation/devicetree/bindings/rng/mtk-rng.txt
deleted file mode 100644
index dfdcb5cd2ea8..000000000000
--- a/Documentation/devicetree/bindings/rng/mtk-rng.txt
+++ /dev/null
@@ -1,22 +0,0 @@
-Device-Tree bindings for Mediatek random number generator
-found in MediaTek SoC family
-
-Required properties:
-- compatible	    : Should be
-			"mediatek,mt7622-rng", 	"mediatek,mt7623-rng" : for MT7622
-			"mediatek,mt7629-rng",  "mediatek,mt7623-rng" : for MT7629
-			"mediatek,mt7623-rng" : for MT7623
-			"mediatek,mt8516-rng", "mediatek,mt7623-rng" : for MT8516
-- clocks	    : list of clock specifiers, corresponding to
-		      entries in clock-names property;
-- clock-names	    : Should contain "rng" entries;
-- reg 		    : Specifies base physical address and size of the registers
-
-Example:
-
-rng: rng@1020f000 {
-	compatible = "mediatek,mt7623-rng";
-	reg = <0 0x1020f000 0 0x1000>;
-	clocks = <&infracfg CLK_INFRA_TRNG>;
-	clock-names = "rng";
-};
diff --git a/Documentation/devicetree/bindings/rng/mtk-rng.yaml b/Documentation/devicetree/bindings/rng/mtk-rng.yaml
new file mode 100644
index 000000000000..d9731f0ae47d
--- /dev/null
+++ b/Documentation/devicetree/bindings/rng/mtk-rng.yaml
@@ -0,0 +1,53 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: "http://devicetree.org/schemas/rng/mtk-rng.yaml#"
+$schema: "http://devicetree.org/meta-schemas/core.yaml#"
+
+title: MediaTek Random number generator
+
+maintainers:
+  - Sean Wang <sean.wang@mediatek.com>
+
+properties:
+  compatible:
+    oneOf:
+      - enum:
+          - mediatek,mt7623-rng
+      - items:
+          - const: mediatek,mt7622-rng
+          - const: mediatek,mt7623-rng
+      - items:
+          - const: mediatek,mt7629-rng
+          - const: mediatek,mt7623-rng
+      - items:
+          - const: mediatek,mt8516-rng
+          - const: mediatek,mt7623-rng
+
+  reg:
+    maxItems: 1
+
+  clocks:
+    maxItems: 1
+
+  clock-names:
+    items:
+      - const: rng
+
+required:
+  - compatible
+  - reg
+  - clocks
+  - clock-names
+
+additionalProperties: false
+
+examples:
+  - |
+    #include <dt-bindings/clock/mt2701-clk.h>
+    rng: rng@1020f000 {
+            compatible = "mediatek,mt7623-rng";
+            reg = <0x1020f000 0x1000>;
+            clocks = <&infracfg CLK_INFRA_TRNG>;
+            clock-names = "rng";
+    };
-- 
2.31.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* [PATCH 2/2] dt-bindings: rng: mediatek: add mt8365 to mtk rng binding
  2021-05-18 11:22 [PATCH 1/2] dt-bindings: rng: mediatek: convert to yaml schema Fabien Parent
@ 2021-05-18 11:22 ` Fabien Parent
  2021-05-19 22:04 ` [PATCH 1/2] dt-bindings: rng: mediatek: convert to yaml schema Rob Herring
  1 sibling, 0 replies; 3+ messages in thread
From: Fabien Parent @ 2021-05-18 11:22 UTC (permalink / raw)
  To: Matt Mackall, Herbert Xu, Rob Herring, Matthias Brugger, Sean Wang
  Cc: mkorpershoek, Fabien Parent, linux-crypto, devicetree,
	linux-arm-kernel, linux-mediatek, linux-kernel

Add RNG binding for MT8365 SoC.

Signed-off-by: Fabien Parent <fparent@baylibre.com>
---
 Documentation/devicetree/bindings/rng/mtk-rng.yaml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/Documentation/devicetree/bindings/rng/mtk-rng.yaml b/Documentation/devicetree/bindings/rng/mtk-rng.yaml
index d9731f0ae47d..ccff10b27f73 100644
--- a/Documentation/devicetree/bindings/rng/mtk-rng.yaml
+++ b/Documentation/devicetree/bindings/rng/mtk-rng.yaml
@@ -20,6 +20,9 @@ properties:
       - items:
           - const: mediatek,mt7629-rng
           - const: mediatek,mt7623-rng
+      - items:
+          - const: mediatek,mt8365-rng
+          - const: mediatek,mt7623-rng
       - items:
           - const: mediatek,mt8516-rng
           - const: mediatek,mt7623-rng
-- 
2.31.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH 1/2] dt-bindings: rng: mediatek: convert to yaml schema
  2021-05-18 11:22 [PATCH 1/2] dt-bindings: rng: mediatek: convert to yaml schema Fabien Parent
  2021-05-18 11:22 ` [PATCH 2/2] dt-bindings: rng: mediatek: add mt8365 to mtk rng binding Fabien Parent
@ 2021-05-19 22:04 ` Rob Herring
  1 sibling, 0 replies; 3+ messages in thread
From: Rob Herring @ 2021-05-19 22:04 UTC (permalink / raw)
  To: Fabien Parent
  Cc: Matt Mackall, Herbert Xu, Matthias Brugger, Sean Wang,
	mkorpershoek, linux-crypto, devicetree, linux-arm-kernel,
	linux-mediatek, linux-kernel

On Tue, May 18, 2021 at 01:22:49PM +0200, Fabien Parent wrote:
> Convert the RNG binding for MediaTek to use YAML schema.
> 
> Signed-off-by: Fabien Parent <fparent@baylibre.com>
> ---
>  .../devicetree/bindings/rng/mtk-rng.txt       | 22 --------
>  .../devicetree/bindings/rng/mtk-rng.yaml      | 53 +++++++++++++++++++
>  2 files changed, 53 insertions(+), 22 deletions(-)
>  delete mode 100644 Documentation/devicetree/bindings/rng/mtk-rng.txt
>  create mode 100644 Documentation/devicetree/bindings/rng/mtk-rng.yaml
> 
> diff --git a/Documentation/devicetree/bindings/rng/mtk-rng.txt b/Documentation/devicetree/bindings/rng/mtk-rng.txt
> deleted file mode 100644
> index dfdcb5cd2ea8..000000000000
> --- a/Documentation/devicetree/bindings/rng/mtk-rng.txt
> +++ /dev/null
> @@ -1,22 +0,0 @@
> -Device-Tree bindings for Mediatek random number generator
> -found in MediaTek SoC family
> -
> -Required properties:
> -- compatible	    : Should be
> -			"mediatek,mt7622-rng", 	"mediatek,mt7623-rng" : for MT7622
> -			"mediatek,mt7629-rng",  "mediatek,mt7623-rng" : for MT7629
> -			"mediatek,mt7623-rng" : for MT7623
> -			"mediatek,mt8516-rng", "mediatek,mt7623-rng" : for MT8516
> -- clocks	    : list of clock specifiers, corresponding to
> -		      entries in clock-names property;
> -- clock-names	    : Should contain "rng" entries;
> -- reg 		    : Specifies base physical address and size of the registers
> -
> -Example:
> -
> -rng: rng@1020f000 {
> -	compatible = "mediatek,mt7623-rng";
> -	reg = <0 0x1020f000 0 0x1000>;
> -	clocks = <&infracfg CLK_INFRA_TRNG>;
> -	clock-names = "rng";
> -};
> diff --git a/Documentation/devicetree/bindings/rng/mtk-rng.yaml b/Documentation/devicetree/bindings/rng/mtk-rng.yaml
> new file mode 100644
> index 000000000000..d9731f0ae47d
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/rng/mtk-rng.yaml
> @@ -0,0 +1,53 @@
> +# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: "http://devicetree.org/schemas/rng/mtk-rng.yaml#"
> +$schema: "http://devicetree.org/meta-schemas/core.yaml#"
> +
> +title: MediaTek Random number generator
> +
> +maintainers:
> +  - Sean Wang <sean.wang@mediatek.com>
> +
> +properties:
> +  compatible:
> +    oneOf:
> +      - enum:
> +          - mediatek,mt7623-rng
> +      - items:
> +          - const: mediatek,mt7622-rng
> +          - const: mediatek,mt7623-rng
> +      - items:
> +          - const: mediatek,mt7629-rng
> +          - const: mediatek,mt7623-rng
> +      - items:
> +          - const: mediatek,mt8516-rng
> +          - const: mediatek,mt7623-rng

The last 3 can be:

- items:
    - enum:
        - mediatek,mt7622-rng
        - mediatek,mt7629-rng
        - mediatek,mt8516-rng
    - const: mediatek,mt7623-rng

> +
> +  reg:
> +    maxItems: 1
> +
> +  clocks:
> +    maxItems: 1
> +
> +  clock-names:
> +    items:
> +      - const: rng
> +
> +required:
> +  - compatible
> +  - reg
> +  - clocks
> +  - clock-names
> +
> +additionalProperties: false
> +
> +examples:
> +  - |
> +    #include <dt-bindings/clock/mt2701-clk.h>
> +    rng: rng@1020f000 {
> +            compatible = "mediatek,mt7623-rng";
> +            reg = <0x1020f000 0x1000>;
> +            clocks = <&infracfg CLK_INFRA_TRNG>;
> +            clock-names = "rng";
> +    };
> -- 
> 2.31.1
> 

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2021-05-19 22:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-18 11:22 [PATCH 1/2] dt-bindings: rng: mediatek: convert to yaml schema Fabien Parent
2021-05-18 11:22 ` [PATCH 2/2] dt-bindings: rng: mediatek: add mt8365 to mtk rng binding Fabien Parent
2021-05-19 22:04 ` [PATCH 1/2] dt-bindings: rng: mediatek: convert to yaml schema Rob Herring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).