summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-highbank/cache-l2x0.c
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2013-02-13 11:06:43 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2013-02-14 13:09:09 +0100
commit2a6e668821964b63bc4838ffe10dc415ca5c209e (patch)
treeafaa0b39a4f366e603d168867bbcc7f645cc96ad /arch/arm/mach-highbank/cache-l2x0.c
parentf6b23059c9be5cfb4731d03ee150e89058f10b60 (diff)
downloadbarebox-2a6e668821964b63bc4838ffe10dc415ca5c209e.tar.gz
barebox-2a6e668821964b63bc4838ffe10dc415ca5c209e.tar.xz
highbank: add l2x0 support
not enable as on qemu this generate a undefined instruction exception Cc: Rob Herring <rob.herring@calxeda.com> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/mach-highbank/cache-l2x0.c')
-rw-r--r--arch/arm/mach-highbank/cache-l2x0.c45
1 files changed, 45 insertions, 0 deletions
diff --git a/arch/arm/mach-highbank/cache-l2x0.c b/arch/arm/mach-highbank/cache-l2x0.c
new file mode 100644
index 0000000000..f1e39dc968
--- /dev/null
+++ b/arch/arm/mach-highbank/cache-l2x0.c
@@ -0,0 +1,45 @@
+/*
+ * Copyright (C) 2012 Jean-Christophe PLAGNIOL-VILLARD <plagnio@jcrosoft.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License as
+ * published by the Free Software Foundation; version 2 of
+ * the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ */
+
+#include <common.h>
+#include <init.h>
+#include <io.h>
+
+#include <asm/mmu.h>
+#include <asm/cache-l2x0.h>
+
+#include "core.h"
+
+static void highbank_l2x0_disable(void)
+{
+ /* Disable PL310 L2 Cache controller */
+ highbank_smc1(0x102, 0x0);
+}
+
+static int highbank_l2x0_init(void)
+{
+ /* Enable PL310 L2 Cache controller */
+ highbank_smc1(0x102, 0x1);
+ l2x0_init(IOMEM(0xfff12000), 0, ~0UL);
+ outer_cache.disable = highbank_l2x0_disable;
+
+ return 0;
+}
+postmmu_initcall(highbank_l2x0_init);