Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
0002 %YAML 1.2
0003 ---
0004 $id: http://devicetree.org/schemas/rng/ingenic,rng.yaml#
0005 $schema: http://devicetree.org/meta-schemas/core.yaml#
0006 
0007 title: Bindings for RNG in Ingenic SoCs
0008 
0009 maintainers:
0010   - 周琰杰 (Zhou Yanjie) <zhouyanjie@wanyeetech.com>
0011 
0012 description:
0013   The Random Number Generator in Ingenic SoCs.
0014 
0015 properties:
0016   compatible:
0017     enum:
0018       - ingenic,jz4780-rng
0019       - ingenic,x1000-rng
0020 
0021   reg:
0022     maxItems: 1
0023 
0024 required:
0025   - compatible
0026   - reg
0027 
0028 additionalProperties: false
0029 
0030 examples:
0031   - |
0032     rng: rng@d8 {
0033         compatible = "ingenic,jz4780-rng";
0034         reg = <0xd8 0x8>;
0035     };
0036 ...