diff options
author | Warner Losh <imp@FreeBSD.org> | 2014-02-27 19:39:44 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2014-02-27 19:39:44 +0000 |
commit | 0d4a4b13019e01c1eab30b74c983040450010b81 (patch) | |
tree | ff6e99cffa59c3e85a311d8dd06e6f6dab4988b2 /Bindings/arm/omap/mpu.txt | |
download | src-test2-0d4a4b13019e01c1eab30b74c983040450010b81.tar.gz src-test2-0d4a4b13019e01c1eab30b74c983040450010b81.zip |
Notes
Diffstat (limited to 'Bindings/arm/omap/mpu.txt')
-rw-r--r-- | Bindings/arm/omap/mpu.txt | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/Bindings/arm/omap/mpu.txt b/Bindings/arm/omap/mpu.txt new file mode 100644 index 000000000000..83f405bde138 --- /dev/null +++ b/Bindings/arm/omap/mpu.txt @@ -0,0 +1,35 @@ +* 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 + Should be "ti,omap5-mpu" for OMAP5 +- ti,hwmods: "mpu" + +Examples: + +- For an OMAP5 SMP system: + +mpu { + compatible = "ti,omap5-mpu"; + ti,hwmods = "mpu" +}; + +- 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"; +}; |