fsl,mpc83xx.txt 939 B

12345678910111213141516171819202122232425262728293031323334
  1. MPC83xx CPU devices
  2. MPC83xx SoCs contain a e300 core as their main processor.
  3. Required properties:
  4. - compatible: must be one of "fsl,mpc83xx",
  5. "fsl,mpc8308",
  6. "fsl,mpc8309",
  7. "fsl,mpc8313",
  8. "fsl,mpc8315",
  9. "fsl,mpc832x",
  10. "fsl,mpc8349",
  11. "fsl,mpc8360",
  12. "fsl,mpc8379"
  13. - clocks: has to have two entries, which must be the core clock at index 0 and
  14. the CSB (Coherent System Bus) clock at index 1. Both are given by a suitable
  15. "fsl,mpc83xx-clk" device
  16. Example:
  17. socclocks: clocks {
  18. compatible = "fsl,mpc8315-clk";
  19. #clock-cells = <1>;
  20. };
  21. cpus {
  22. compatible = "cpu_bus";
  23. PowerPC,8315@0 {
  24. compatible = "fsl,mpc8315";
  25. clocks = <&socclocks MPC83XX_CLK_CORE
  26. &socclocks MPC83XX_CLK_CSB>;
  27. };
  28. };