omap3_rom_rng.txt 570 B

123456789101112131415161718192021222324252627
  1. OMAP ROM RNG driver binding
  2. Secure SoCs may provide RNG via secure ROM calls like Nokia N900 does. The
  3. implementation can depend on the SoC secure ROM used.
  4. - compatible:
  5. Usage: required
  6. Value type: <string>
  7. Definition: must be "nokia,n900-rom-rng"
  8. - clocks:
  9. Usage: required
  10. Value type: <prop-encoded-array>
  11. Definition: reference to the the RNG interface clock
  12. - clock-names:
  13. Usage: required
  14. Value type: <stringlist>
  15. Definition: must be "ick"
  16. Example:
  17. rom_rng: rng {
  18. compatible = "nokia,n900-rom-rng";
  19. clocks = <&rng_ick>;
  20. clock-names = "ick";
  21. };