]> pilppa.com Git - linux-2.6-omap-h63xx.git/commitdiff
ARM: OMAP3: Check for L2 cache enabled
authorDirk Behme <dirk.behme@googlemail.com>
Sun, 11 May 2008 06:12:48 +0000 (08:12 +0200)
committerTony Lindgren <tony@atomide.com>
Wed, 14 May 2008 23:06:21 +0000 (16:06 -0700)
Enabling L2 cache of Cortex-A8 based OMAP3 has to be done by
bootloader. Check if this is done and warn if not.

Signed-off-by: Dirk Behme <dirk.behme@gmail.com>
Acked-by: Felipe Balbi <felipe.balbi@nokia.com>
----

Changes in v3: Remove braces. Thanks to Felipe for review!
Signed-off-by: Tony Lindgren <tony@atomide.com>
arch/arm/mach-omap2/id.c

index 835452b43a742d1d6dc2efd2850cbe1595ae17aa..0db34ba86ef713eb5586647067de083e7a4d2b3a 100644 (file)
@@ -267,3 +267,25 @@ void __init omap2_check_revision(void)
 
 }
 
+#ifdef CONFIG_ARCH_OMAP3
+/*
+ * OMAP3 has L2 cache which has to be enabled by bootloader.
+ */
+static int __init omap3_check_l2cache(void)
+{
+       u32 val;
+
+       /* Get CP15 AUX register, bit 1 enabled indicates L2 cache is on */
+       asm volatile("mrc p15, 0, %0, c1, c0, 1":"=r" (val));
+
+       if ((val & 0x2) == 0)
+               printk(KERN_WARNING "Warning: L2 cache not enabled. Check "
+                      "your bootloader. L2 off results in performance loss\n");
+       else
+               pr_info("OMAP3 L2 cache enabled\n");
+
+       return 0;
+}
+
+arch_initcall(omap3_check_l2cache);
+#endif /* CONFIG_ARCH_OMAP3 */