@@ -25,11 +25,39 @@
};
/*
+ * XXX: The cpus node is mandatory, but since the CPUs are as well part
+ * of the mpu subsystem below, it is not clear where the information
+ * should be. Maybe here with a phandle inside the mpu?
+ */
+ cpus {
+ };
+
+ /*
* The soc node represents the soc top level view. It is uses for IPs
* that are not memory mapped in the MPU view or for the MPU itself.
*/
soc {
compatible = "ti,omap-infra";
+ mpu {
+ compatible = "ti,omap4-mpu";
+ hwmods = "mpu";
+ cpu@0 {
+ compatible = "arm,cortex-a9";
+ };
+ cpu@1 {
+ compatible = "arm,cortex-a9";
+ };
+ };
+
+ dsp {
+ compatible = "ti,omap4-c64", "ti,c64";
+ hwmods = "dsp";
+ };
+
+ iva {
+ compatible = "ti,ivahd", "ti,iva";
+ hwmods = "iva";
+ };
};
/*
@@ -49,15 +49,18 @@ static int _init_omap_device(char *name)
*/
static void omap2_init_processor_devices(void)
{
- _init_omap_device("mpu");
if (omap3_has_iva())
_init_omap_device("iva");
if (cpu_is_omap44xx()) {
+#ifndef CONFIG_OF
+ _init_omap_device("mpu");
_init_omap_device("l3_main_1");
_init_omap_device("dsp");
_init_omap_device("iva");
+#endif
} else {
+ _init_omap_device("mpu");
_init_omap_device("l3_main");
}
}
Add nodes for devices used by PM code (mpu, dsp, iva). Add an empty cpus node as well as recommended in the DT spec. Remove mpu, dsp, iva devices init if CONFIG_OF is defined. Ideally the whole function should be removed. It will be doable as soon as the OMAP3 DT support will be added. Signed-off-by: Benoit Cousson <b-cousson@ti.com> Cc: Grant Likely <grant.likely@secretlab.ca> Cc: Kevin Hilman <khilman@ti.com> --- arch/arm/boot/dts/omap4.dtsi | 28 ++++++++++++++++++++++++++++ arch/arm/mach-omap2/pm.c | 5 ++++- 2 files changed, 32 insertions(+), 1 deletions(-)