cpufreq-exynos5440.txt 754 B

1234567891011121314151617181920212223242526272829
  1. Exynos5440 cpufreq driver
  2. -------------------
  3. Exynos5440 SoC cpufreq driver for CPU frequency scaling.
  4. Required properties:
  5. - interrupts: Interrupt to know the completion of cpu frequency change.
  6. - operating-points: Table of frequencies and voltage CPU could be transitioned into,
  7. in the decreasing order. Frequency should be in KHz units and voltage
  8. should be in microvolts.
  9. Optional properties:
  10. - clock-latency: Clock monitor latency in microsecond.
  11. All the required listed above must be defined under node cpufreq.
  12. Example:
  13. --------
  14. cpufreq@160000 {
  15. compatible = "samsung,exynos5440-cpufreq";
  16. reg = <0x160000 0x1000>;
  17. interrupts = <0 57 0>;
  18. operating-points = <
  19. 1000000 975000
  20. 800000 925000>;
  21. clock-latency = <100000>;
  22. };