nuvoton,npcm750-smp 999 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. =========================================================
  2. Secondary CPU enable-method "nuvoton,npcm750-smp" binding
  3. =========================================================
  4. To apply to all CPUs, a single "nuvoton,npcm750-smp" enable method should be
  5. defined in the "cpus" node.
  6. Enable method name: "nuvoton,npcm750-smp"
  7. Compatible machines: "nuvoton,npcm750"
  8. Compatible CPUs: "arm,cortex-a9"
  9. Related properties: (none)
  10. Note:
  11. This enable method needs valid nodes compatible with "arm,cortex-a9-scu" and
  12. "nuvoton,npcm750-gcr".
  13. Example:
  14. cpus {
  15. #address-cells = <1>;
  16. #size-cells = <0>;
  17. enable-method = "nuvoton,npcm750-smp";
  18. cpu@0 {
  19. device_type = "cpu";
  20. compatible = "arm,cortex-a9";
  21. clocks = <&clk NPCM7XX_CLK_CPU>;
  22. clock-names = "clk_cpu";
  23. reg = <0>;
  24. next-level-cache = <&L2>;
  25. };
  26. cpu@1 {
  27. device_type = "cpu";
  28. compatible = "arm,cortex-a9";
  29. clocks = <&clk NPCM7XX_CLK_CPU>;
  30. clock-names = "clk_cpu";
  31. reg = <1>;
  32. next-level-cache = <&L2>;
  33. };
  34. };