diff options
author | Anson Huang <Anson.Huang@nxp.com> | 2020-08-05 08:28:04 +0200 |
---|---|---|
committer | Rob Herring <robh@kernel.org> | 2020-08-17 23:40:07 +0200 |
commit | f83febb44b42cf55e4f0cc9853f87801a82770b2 (patch) | |
tree | 3b12c8033561de4f8a89282997b30ab988b7f77f /Documentation/devicetree/bindings/rng/imx-rng.yaml | |
parent | dt-bindings: fsl: Convert i.MX7ULP SIM to json-schema (diff) | |
download | linux-f83febb44b42cf55e4f0cc9853f87801a82770b2.tar.xz linux-f83febb44b42cf55e4f0cc9853f87801a82770b2.zip |
dt-bindings: rng: Convert i.MX to json-schema
Convert the i.MX rng binding to DT schema format using json-schema.
Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
Link: https://lore.kernel.org/r/1596608884-13205-1-git-send-email-Anson.Huang@nxp.com
Signed-off-by: Rob Herring <robh@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/rng/imx-rng.yaml')
-rw-r--r-- | Documentation/devicetree/bindings/rng/imx-rng.yaml | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/rng/imx-rng.yaml b/Documentation/devicetree/bindings/rng/imx-rng.yaml new file mode 100644 index 000000000000..4ad1e456a801 --- /dev/null +++ b/Documentation/devicetree/bindings/rng/imx-rng.yaml @@ -0,0 +1,52 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/rng/imx-rng.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Freescale RNGA/RNGB/RNGC (Random Number Generator Versions A, B and C) + +maintainers: + - Vladimir Zapolskiy <vz@mleia.com> + +properties: + compatible: + oneOf: + - const: fsl,imx21-rnga + - const: fsl,imx25-rngb + - items: + - const: fsl,imx31-rnga + - const: fsl,imx21-rnga + - items: + - enum: + - fsl,imx6sl-rngb + - fsl,imx6sll-rngb + - fsl,imx6ull-rngb + - const: fsl,imx25-rngb + - const: fsl,imx35-rngc + + reg: + maxItems: 1 + + interrupts: + maxItems: 1 + + clocks: + maxItems: 1 + +required: + - compatible + - reg + - interrupts + - clocks + +additionalProperties: false + +examples: + - | + rngb@53fb0000 { + compatible = "fsl,imx25-rngb"; + reg = <0x53fb0000 0x4000>; + clocks = <&clks 109>; + interrupts = <22>; + }; |