M7350/kernel/Documentation/devicetree/bindings/arm/omap/mpu.txt

39 lines
715 B
Plaintext
Raw Normal View History

2024-09-09 08:52:07 +00:00
* TI - MPU (Main Processor Unit) subsystem
The MPU subsystem contain one or several ARM cores
depending of the version.
The MPU contain CPUs, GIC, L2 cache and a local PRCM.
Required properties:
- compatible : Should be "ti,omap3-mpu" for OMAP3
Should be "ti,omap4-mpu" for OMAP4
2024-09-09 08:57:42 +00:00
Should be "ti,omap5-mpu" for OMAP5
2024-09-09 08:52:07 +00:00
- ti,hwmods: "mpu"
2024-09-09 08:57:42 +00:00
Optional properties:
- sram: Phandle to the ocmcram node
2024-09-09 08:52:07 +00:00
Examples:
2024-09-09 08:57:42 +00:00
- For an OMAP5 SMP system:
mpu {
compatible = "ti,omap5-mpu";
ti,hwmods = "mpu"
};
2024-09-09 08:52:07 +00:00
- For an OMAP4 SMP system:
mpu {
compatible = "ti,omap4-mpu";
ti,hwmods = "mpu";
};
- For an OMAP3 monocore system:
mpu {
compatible = "ti,omap3-mpu";
ti,hwmods = "mpu";
};