Merge tag 'trace-v4.16-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt...
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / rng / brcm,bcm2835.txt
1 BCM2835/6368 Random number generator
2
3 Required properties:
4
5 - compatible : should be one of
6         "brcm,bcm2835-rng"
7         "brcm,bcm-nsp-rng"
8         "brcm,bcm5301x-rng" or
9         "brcm,bcm6368-rng"
10 - reg : Specifies base physical address and size of the registers.
11
12 Optional properties:
13
14 - clocks : phandle to clock-controller plus clock-specifier pair
15 - clock-names : "ipsec" as a clock name
16
17 Example:
18
19 rng {
20         compatible = "brcm,bcm2835-rng";
21         reg = <0x7e104000 0x10>;
22 };
23
24 rng@18033000 {
25         compatible = "brcm,bcm-nsp-rng";
26         reg = <0x18033000 0x14>;
27 };
28
29 random: rng@10004180 {
30         compatible = "brcm,bcm6368-rng";
31         reg = <0x10004180 0x14>;
32
33         clocks = <&periph_clk 18>;
34         clock-names = "ipsec";
35 };