1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/crypto/xlnx,versal-trng.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Xilinx Versal True Random Number Generator Hardware Accelerator 8 9maintainers: 10 - Harsh Jain <h.jain@amd.com> 11 - Mounika Botcha <mounika.botcha@amd.com> 12 13description: 14 The Versal True Random Number Generator consists of Ring Oscillators as 15 entropy source and a deterministic CTR_DRBG random bit generator (DRBG). 16 17properties: 18 compatible: 19 const: xlnx,versal-trng 20 21 reg: 22 maxItems: 1 23 24required: 25 - reg 26 27additionalProperties: false 28 29examples: 30 - | 31 rng@f1230000 { 32 compatible = "xlnx,versal-trng"; 33 reg = <0xf1230000 0x1000>; 34 }; 35... 36