Merge tag 'driver-core-5.5-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / rng / atmel-trng.txt
1 Atmel TRNG (True Random Number Generator) block
2
3 Required properties:
4 - compatible : Should be "atmel,at91sam9g45-trng" or "microchip,sam9x60-trng"
5 - reg : Offset and length of the register set of this block
6 - interrupts : the interrupt number for the TRNG block
7 - clocks: should contain the TRNG clk source
8
9 Example:
10
11 trng@fffcc000 {
12         compatible = "atmel,at91sam9g45-trng";
13         reg = <0xfffcc000 0x4000>;
14         interrupts = <6 IRQ_TYPE_LEVEL_HIGH 0>;
15         clocks = <&trng_clk>;
16 };