omap_rng.txt 615 B

12345678910111213141516171819202122
  1. OMAP SoC HWRNG Module
  2. Required properties:
  3. - compatible : Should contain entries for this and backward compatible
  4. RNG versions:
  5. - "ti,omap2-rng" for OMAP2.
  6. - "ti,omap4-rng" for OMAP4, OMAP5 and AM33XX.
  7. Note that these two versions are incompatible.
  8. - ti,hwmods: Name of the hwmod associated with the RNG module
  9. - reg : Offset and length of the register set for the module
  10. - interrupts : the interrupt number for the RNG module.
  11. Only used for "ti,omap4-rng".
  12. Example:
  13. /* AM335x */
  14. rng: rng@48310000 {
  15. compatible = "ti,omap4-rng";
  16. ti,hwmods = "rng";
  17. reg = <0x48310000 0x2000>;
  18. interrupts = <111>;
  19. };