brintos

brintos / linux-shallow public Read only

0
0
Text · 882 B · 3362cb1 Raw
46 lines · yaml
1# SPDX-License-Identifier: GPL-2.02%YAML 1.23---4$id: http://devicetree.org/schemas/rng/samsung,exynos4-rng.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Samsung Exynos SoC Pseudo Random Number Generator8 9maintainers:10  - Krzysztof Kozlowski <krzk@kernel.org>11 12properties:13  compatible:14    enum:15      - samsung,exynos4-rng                   # for Exynos4210 and Exynos441216      - samsung,exynos5250-prng               # for Exynos5250+17 18  reg:19    maxItems: 120 21  clocks:22    maxItems: 123 24  clock-names:25    items:26      - const: secss27 28required:29  - compatible30  - reg31  - clock-names32  - clocks33 34additionalProperties: false35 36examples:37  - |38    #include <dt-bindings/clock/exynos4.h>39 40    rng@10830400 {41        compatible = "samsung,exynos4-rng";42        reg = <0x10830400 0x200>;43        clocks = <&clock CLK_SSS>;44        clock-names = "secss";45    };46