xref: /freebsd/sys/contrib/device-tree/Bindings/rng/samsung,exynos5250-trng.yaml (revision c9ccf3a32da427475985b85d7df023ccfb138c27)
1354d7675SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
2354d7675SEmmanuel Vadot%YAML 1.2
3354d7675SEmmanuel Vadot---
4354d7675SEmmanuel Vadot$id: http://devicetree.org/schemas/rng/samsung,exynos5250-trng.yaml#
5354d7675SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6354d7675SEmmanuel Vadot
7354d7675SEmmanuel Vadottitle: Samsung Exynos SoC True Random Number Generator
8354d7675SEmmanuel Vadot
9354d7675SEmmanuel Vadotmaintainers:
10*c9ccf3a3SEmmanuel Vadot  - Krzysztof Kozlowski <krzk@kernel.org>
11354d7675SEmmanuel Vadot  - Łukasz Stelmach <l.stelmach@samsung.com>
12354d7675SEmmanuel Vadot
13354d7675SEmmanuel Vadotproperties:
14354d7675SEmmanuel Vadot  compatible:
15354d7675SEmmanuel Vadot    const: samsung,exynos5250-trng
16354d7675SEmmanuel Vadot
17354d7675SEmmanuel Vadot  clocks:
18354d7675SEmmanuel Vadot    maxItems: 1
19354d7675SEmmanuel Vadot
20354d7675SEmmanuel Vadot  clock-names:
21354d7675SEmmanuel Vadot    items:
22354d7675SEmmanuel Vadot      - const: secss
23354d7675SEmmanuel Vadot
24354d7675SEmmanuel Vadot  reg:
25354d7675SEmmanuel Vadot    maxItems: 1
26354d7675SEmmanuel Vadot
27354d7675SEmmanuel Vadotrequired:
28354d7675SEmmanuel Vadot  - compatible
29354d7675SEmmanuel Vadot  - clocks
30354d7675SEmmanuel Vadot  - clock-names
31354d7675SEmmanuel Vadot  - reg
32354d7675SEmmanuel Vadot
33354d7675SEmmanuel VadotadditionalProperties: false
34354d7675SEmmanuel Vadot
35354d7675SEmmanuel Vadotexamples:
36354d7675SEmmanuel Vadot  - |
37354d7675SEmmanuel Vadot    #include <dt-bindings/clock/exynos5250.h>
38354d7675SEmmanuel Vadot
39354d7675SEmmanuel Vadot    rng@10830600 {
40354d7675SEmmanuel Vadot        compatible = "samsung,exynos5250-trng";
41354d7675SEmmanuel Vadot        reg = <0x10830600 0x100>;
42354d7675SEmmanuel Vadot        clocks = <&clock CLK_SSS>;
43354d7675SEmmanuel Vadot        clock-names = "secss";
44354d7675SEmmanuel Vadot    };
45