0001 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/rng/st,rng.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: STMicroelectronics Hardware Random Number Generator
0008
0009 maintainers:
0010 - Patrice Chotard <patrice.chotard@foss.st.com>
0011
0012 properties:
0013 compatible:
0014 const: st,rng
0015
0016 clocks:
0017 maxItems: 1
0018
0019 reg:
0020 maxItems: 1
0021
0022 required:
0023 - compatible
0024 - clocks
0025 - reg
0026
0027 additionalProperties: false
0028
0029 examples:
0030 - |
0031 rng@fee80000 {
0032 compatible = "st,rng";
0033 reg = <0xfee80000 0x1000>;
0034 clocks = <&clk_sysin>;
0035 };