nvidia,tegra124-cpufreq.txt 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. Tegra124 CPU frequency scaling driver bindings
  2. ----------------------------------------------
  3. Both required and optional properties listed below must be defined
  4. under node /cpus/cpu@0.
  5. Required properties:
  6. - clocks: Must contain an entry for each entry in clock-names.
  7. See ../clocks/clock-bindings.txt for details.
  8. - clock-names: Must include the following entries:
  9. - cpu_g: Clock mux for the fast CPU cluster.
  10. - cpu_lp: Clock mux for the low-power CPU cluster.
  11. - pll_x: Fast PLL clocksource.
  12. - pll_p: Auxiliary PLL used during fast PLL rate changes.
  13. - dfll: Fast DFLL clocksource that also automatically scales CPU voltage.
  14. - vdd-cpu-supply: Regulator for CPU voltage
  15. Optional properties:
  16. - clock-latency: Specify the possible maximum transition latency for clock,
  17. in unit of nanoseconds.
  18. Example:
  19. --------
  20. cpus {
  21. #address-cells = <1>;
  22. #size-cells = <0>;
  23. cpu@0 {
  24. device_type = "cpu";
  25. compatible = "arm,cortex-a15";
  26. reg = <0>;
  27. clocks = <&tegra_car TEGRA124_CLK_CCLK_G>,
  28. <&tegra_car TEGRA124_CLK_CCLK_LP>,
  29. <&tegra_car TEGRA124_CLK_PLL_X>,
  30. <&tegra_car TEGRA124_CLK_PLL_P>,
  31. <&dfll>;
  32. clock-names = "cpu_g", "cpu_lp", "pll_x", "pll_p", "dfll";
  33. clock-latency = <300000>;
  34. vdd-cpu-supply: <&vdd_cpu>;
  35. };
  36. <...>
  37. };