atmel-trng.txt 442 B

12345678910111213141516
  1. Atmel TRNG (True Random Number Generator) block
  2. Required properties:
  3. - compatible : Should be "atmel,at91sam9g45-trng"
  4. - reg : Offset and length of the register set of this block
  5. - interrupts : the interrupt number for the TRNG block
  6. - clocks: should contain the TRNG clk source
  7. Example:
  8. trng@fffcc000 {
  9. compatible = "atmel,at91sam9g45-trng";
  10. reg = <0xfffcc000 0x4000>;
  11. interrupts = <6 IRQ_TYPE_LEVEL_HIGH 0>;
  12. clocks = <&trng_clk>;
  13. };