mpu.txt 657 B

1234567891011121314151617181920212223242526272829303132333435
  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. Examples:
  11. - For an OMAP5 SMP system:
  12. mpu {
  13. compatible = "ti,omap5-mpu";
  14. ti,hwmods = "mpu"
  15. };
  16. - For an OMAP4 SMP system:
  17. mpu {
  18. compatible = "ti,omap4-mpu";
  19. ti,hwmods = "mpu";
  20. };
  21. - For an OMAP3 monocore system:
  22. mpu {
  23. compatible = "ti,omap3-mpu";
  24. ti,hwmods = "mpu";
  25. };