ARM: i.MX: initialize l2x0 at early_init time
authorJason Liu <[email protected]>
Fri, 26 Aug 2011 02:44:14 +0000 (10:44 +0800)
committerSascha Hauer <[email protected]>
Fri, 26 Aug 2011 06:52:36 +0000 (08:52 +0200)
This can make the l2 cache work at early time which
will benefit the boot up time.

Tested on i.mx31pdk board, test result shows:

Before: arch_initcall(mxc_init_l2x0);

[    0.558755] console [ttymxc0] enabled

After: early_initcall(mxc_init_l2x0);

[    0.555716] console [ttymxc0] enabled

Signed-off-by: Jason Liu <[email protected]>
Cc: Sascha Hauer <[email protected]>
Signed-off-by: Sascha Hauer <[email protected]>
arch/arm/mach-imx/cache-l2x0.c

index 69d1322add3c98e7d58478ab5fc14cc5ac167dc5..e5538a4d7f23105d615350981cb53e4f632c9ea5 100644 (file)
@@ -53,4 +53,4 @@ static int mxc_init_l2x0(void)
 
        return 0;
 }
-arch_initcall(mxc_init_l2x0);
+early_initcall(mxc_init_l2x0);