0001 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/rng/ti,omap-rom-rng.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006
0007 title: OMAP ROM Random Number Generator
0008
0009 maintainers:
0010 - Pali Rohár <pali@kernel.org>
0011 - Tony Lindgren <tony@atomide.com>
0012
0013 description:
0014 Secure SoCs may provide RNG via secure ROM calls like Nokia N900 does.
0015 The implementation can depend on the SoC secure ROM used.
0016
0017 properties:
0018 compatible:
0019 const: nokia,n900-rom-rng
0020
0021 clocks:
0022 maxItems: 1
0023
0024 clock-names:
0025 items:
0026 - const: ick
0027
0028 required:
0029 - compatible
0030 - clocks
0031 - clock-names
0032
0033 additionalProperties: false
0034
0035 examples:
0036 - |
0037 rng {
0038 compatible = "nokia,n900-rom-rng";
0039 clocks = <&rng_ick>;
0040 clock-names = "ick";
0041 };