mpu.txt 521 B

12345678910111213141516171819202122232425262728
  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. - ti,hwmods: "mpu"
  9. Examples:
  10. - For an OMAP4 SMP system:
  11. mpu {
  12. compatible = "ti,omap4-mpu";
  13. ti,hwmods = "mpu";
  14. };
  15. - For an OMAP3 monocore system:
  16. mpu {
  17. compatible = "ti,omap3-mpu";
  18. ti,hwmods = "mpu";
  19. };