msm-rng.txt 767 B

12345678910111213141516171819202122232425262728
  1. * RNG (Random Number Generator)
  2. Required properties:
  3. - compatible : Should be "qcom,msm-rng"
  4. - reg : Offset and length of the register set for the device
  5. - qcom, msm_bus,name: Should be "msm-rng-noc"
  6. - qcom, msm_bus,num_cases: Depends on the use cases for bus scaling
  7. - qcom, msm_bus,num_paths: The paths for source and destination ports
  8. - qcom, msm_bus,vectors: Vectors for bus topology.
  9. Optional property:
  10. - qcom,msm-rng-iface-clk : If the device uses iface-clk.
  11. Example:
  12. qcom,msm-rng@f9bff000 {
  13. compatible = "qcom,msm-rng";
  14. reg = <0xf9bff000 0x200>;
  15. qcom,msm-rng-iface-clk;
  16. qcom,msm-bus,name = "msm-rng-noc";
  17. qcom,msm-bus,num-cases = <2>;
  18. qcom,msm-bus,num-paths = <1>;
  19. qcom,msm-bus,vectors-KBps =
  20. <1 618 0 0>,
  21. <1 618 0 800>;
  22. };