Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/rng/samsung,exynos5250-trng.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Samsung Exynos SoC True Random Number Generator
0008 
0009 maintainers:
0010   - Krzysztof Kozlowski <krzk@kernel.org>
0011   - Ɓukasz Stelmach <l.stelmach@samsung.com>
0012 
0013 properties:
0014   compatible:
0015     const: samsung,exynos5250-trng
0016 
0017   clocks:
0018     maxItems: 1
0019 
0020   clock-names:
0021     items:
0022       - const: secss
0023 
0024   reg:
0025     maxItems: 1
0026 
0027 required:
0028   - compatible
0029   - clocks
0030   - clock-names
0031   - reg
0032 
0033 additionalProperties: false
0034 
0035 examples:
0036   - |
0037     #include <dt-bindings/clock/exynos5250.h>
0038 
0039     rng@10830600 {
0040         compatible = "samsung,exynos5250-trng";
0041         reg = <0x10830600 0x100>;
0042         clocks = <&clock CLK_SSS>;
0043         clock-names = "secss";
0044     };