cpufreq-spear.txt 750 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. SPEAr cpufreq driver
  2. -------------------
  3. SPEAr SoC cpufreq driver for CPU frequency scaling.
  4. It supports both uniprocessor (UP) and symmetric multiprocessor (SMP) systems
  5. which share clock across all CPUs.
  6. Required properties:
  7. - cpufreq_tbl: Table of frequencies CPU could be transitioned into, in the
  8. increasing order.
  9. Optional properties:
  10. - clock-latency: Specify the possible maximum transition latency for clock, in
  11. unit of nanoseconds.
  12. Both required and optional properties listed above must be defined under node
  13. /cpus/cpu@0.
  14. Examples:
  15. --------
  16. cpus {
  17. <...>
  18. cpu@0 {
  19. compatible = "arm,cortex-a9";
  20. reg = <0>;
  21. <...>
  22. cpufreq_tbl = < 166000
  23. 200000
  24. 250000
  25. 300000
  26. 400000
  27. 500000
  28. 600000 >;
  29. };
  30. <...>
  31. };