mpu.txt 715 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. * TI - MPU (Main Processor Unit) subsystem
  2. The MPU subsystem contain one or several ARM cores
  3. depending of the version.
  4. The MPU contain CPUs, GIC, L2 cache and a local PRCM.
  5. Required properties:
  6. - compatible : Should be "ti,omap3-mpu" for OMAP3
  7. Should be "ti,omap4-mpu" for OMAP4
  8. Should be "ti,omap5-mpu" for OMAP5
  9. - ti,hwmods: "mpu"
  10. Optional properties:
  11. - sram: Phandle to the ocmcram node
  12. Examples:
  13. - For an OMAP5 SMP system:
  14. mpu {
  15. compatible = "ti,omap5-mpu";
  16. ti,hwmods = "mpu"
  17. };
  18. - For an OMAP4 SMP system:
  19. mpu {
  20. compatible = "ti,omap4-mpu";
  21. ti,hwmods = "mpu";
  22. };
  23. - For an OMAP3 monocore system:
  24. mpu {
  25. compatible = "ti,omap3-mpu";
  26. ti,hwmods = "mpu";
  27. };