timeriomem_rng.txt 755 B

12345678910111213141516171819202122232425
  1. HWRNG support for the timeriomem_rng driver
  2. Required properties:
  3. - compatible : "timeriomem_rng"
  4. - reg : base address to sample from
  5. - period : wait time in microseconds to use between samples
  6. Optional properties:
  7. - quality : estimated number of bits of true entropy per 1024 bits read from the
  8. rng. Defaults to zero which causes the kernel's default quality to
  9. be used instead. Note that the default quality is usually zero
  10. which disables using this rng to automatically fill the kernel's
  11. entropy pool.
  12. N.B. currently 'reg' must be four bytes wide and aligned
  13. Example:
  14. hwrng@44 {
  15. #address-cells = <1>;
  16. #size-cells = <1>;
  17. compatible = "timeriomem_rng";
  18. reg = <0x44 0x04>;
  19. period = <1000000>;
  20. };