1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/rng/microchip,pic32-rng.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Microchip PIC32 Random Number Generator 8 9description: | 10 The PIC32 RNG provides a pseudo random number generator which can be seeded 11 by another true random number generator. 12 13maintainers: 14 - Joshua Henderson <joshua.henderson@microchip.com> 15 16properties: 17 compatible: 18 enum: 19 - microchip,pic32mzda-rng 20 21 reg: 22 maxItems: 1 23 24 clocks: 25 maxItems: 1 26 27required: 28 - compatible 29 - reg 30 - clocks 31 32additionalProperties: false 33 34examples: 35 - | 36 rng: rng@1f8e6000 { 37 compatible = "microchip,pic32mzda-rng"; 38 reg = <0x1f8e6000 0x1000>; 39 clocks = <&PBCLK5>; 40 }; 41