summaryrefslogtreecommitdiffstats
path: root/dts/Bindings/rng/timeriomem_rng.yaml
blob: 84bf518a55493fe23131296f89ebd7e9cb2e92b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# SPDX-License-Identifier: GPL-2.0-only
%YAML 1.2
---
$id: http://devicetree.org/schemas/rng/timeriomem_rng.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: TimerIO Random Number Generator

maintainers:
  - Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>

properties:
  compatible:
    const: timeriomem_rng

  period:
    $ref: /schemas/types.yaml#/definitions/uint32
    description: wait time in microseconds to use between samples

  quality:
    $ref: /schemas/types.yaml#/definitions/uint32
    default: 0
    description:
      Estimated number of bits of true entropy per 1024 bits read from the rng.
      Defaults to zero which causes the kernel's default quality to be used
      instead.  Note that the default quality is usually zero which disables
      using this rng to automatically fill the kernel's entropy pool.

  reg:
    maxItems: 1
    description:
      Base address to sample from. Currently 'reg' must be at least four bytes
      wide and 32-bit aligned.

required:
  - compatible
  - period
  - reg

additionalProperties: false

examples:
  - |
    rng@44 {
        compatible = "timeriomem_rng";
        reg = <0x44 0x04>;
        period = <1000000>;
    };