kirkwood.txt 772 B

12345678910111213141516171819202122232425262728
  1. Marvell Kirkwood Platforms Device Tree Bindings
  2. -----------------------------------------------
  3. Boards with a SoC of the Marvell Kirkwood
  4. shall have the following property:
  5. Required root node property:
  6. compatible: must contain "marvell,kirkwood";
  7. In order to support the kirkwood cpufreq driver, there must be a node
  8. cpus/cpu@0 with three clocks, "cpu_clk", "ddrclk" and "powersave",
  9. where the "powersave" clock is a gating clock used to switch the CPU
  10. between the "cpu_clk" and the "ddrclk".
  11. Example:
  12. cpus {
  13. #address-cells = <1>;
  14. #size-cells = <0>;
  15. cpu@0 {
  16. device_type = "cpu";
  17. compatible = "marvell,sheeva-88SV131";
  18. clocks = <&core_clk 1>, <&core_clk 3>, <&gate_clk 11>;
  19. clock-names = "cpu_clk", "ddrclk", "powersave";
  20. };