ks-sa-rng.txt 653 B

123456789101112131415161718192021
  1. Keystone SoC Hardware Random Number Generator(HWRNG) Module
  2. On Keystone SoCs HWRNG module is a submodule of the Security Accelerator.
  3. - compatible: should be "ti,keystone-rng"
  4. - ti,syscon-sa-cfg: phandle to syscon node of the SA configuration registers.
  5. This registers are shared between hwrng and crypto drivers.
  6. - clocks: phandle to the reference clocks for the subsystem
  7. - clock-names: functional clock name. Should be set to "fck"
  8. - reg: HWRNG module register space
  9. Example:
  10. /* K2HK */
  11. hwrng@0x24000 {
  12. compatible = "ti,keystone-rng";
  13. ti,syscon-sa-cfg = <&sa_config>;
  14. clocks = <&clksa>;
  15. clock-names = "fck";
  16. reg = <0x24000 0x1000>;
  17. };