blob: e12cc92dfca51eee2d5b665462e0b7636cd69c34 [file] [log] [blame]
Linus Walleij458eef2f2011-08-12 13:41:50 +02001/*
2 * Copyright (C) ST-Ericsson SA 2011
3 *
4 * License terms: GNU General Public License (GPL) version 2
5 */
6
7#include <linux/io.h>
Lee Jonesf1949ea2012-03-08 09:02:02 +00008#include <linux/of.h>
9
Linus Walleij458eef2f2011-08-12 13:41:50 +020010#include <asm/cacheflush.h>
11#include <asm/hardware/cache-l2x0.h>
Linus Walleij7a4f2602012-09-19 19:31:19 +020012
Linus Walleij174e7792013-03-19 15:41:55 +010013#include "db8500-regs.h"
Linus Walleij7a4f2602012-09-19 19:31:19 +020014#include "id.h"
Linus Walleij458eef2f2011-08-12 13:41:50 +020015
16static void __iomem *l2x0_base;
17
Arnd Bergmanna3849a42011-10-08 21:47:06 +020018static int __init ux500_l2x0_unlock(void)
19{
20 int i;
21
22 /*
23 * Unlock Data and Instruction Lock if locked. Ux500 U-Boot versions
24 * apparently locks both caches before jumping to the kernel. The
25 * l2x0 core will not touch the unlock registers if the l2x0 is
26 * already enabled, so we do it right here instead. The PL310 has
27 * 8 sets of registers, one per possible CPU.
28 */
29 for (i = 0; i < 8; i++) {
30 writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_D_BASE +
31 i * L2X0_LOCKDOWN_STRIDE);
32 writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_I_BASE +
33 i * L2X0_LOCKDOWN_STRIDE);
34 }
35 return 0;
36}
37
38static int __init ux500_l2x0_init(void)
Linus Walleij458eef2f2011-08-12 13:41:50 +020039{
Linus Walleijbc71c092012-01-23 11:54:44 +010040 u32 aux_val = 0x3e000000;
41
Linus Walleije1bbb552012-08-09 17:10:36 +020042 if (cpu_is_u8500_family() || cpu_is_ux540_family())
Linus Walleij458eef2f2011-08-12 13:41:50 +020043 l2x0_base = __io_address(U8500_L2CC_BASE);
44 else
45 ux500_unknown_soc();
46
Arnd Bergmanna3849a42011-10-08 21:47:06 +020047 /* Unlock before init */
48 ux500_l2x0_unlock();
49
Linus Walleijbc71c092012-01-23 11:54:44 +010050 /* DB9540's L2 has 128KB way size */
51 if (cpu_is_u9540())
52 /* 128KB way size */
53 aux_val |= (0x4 << L2X0_AUX_CTRL_WAY_SIZE_SHIFT);
54 else
55 /* 64KB way size */
56 aux_val |= (0x3 << L2X0_AUX_CTRL_WAY_SIZE_SHIFT);
57
Linus Walleij458eef2f2011-08-12 13:41:50 +020058 /* 64KB way size, 8 way associativity, force WA */
Lee Jonesf1949ea2012-03-08 09:02:02 +000059 if (of_have_populated_dt())
Linus Walleijbc71c092012-01-23 11:54:44 +010060 l2x0_of_init(aux_val, 0xc0000fff);
Lee Jonesf1949ea2012-03-08 09:02:02 +000061 else
Linus Walleijbc71c092012-01-23 11:54:44 +010062 l2x0_init(l2x0_base, aux_val, 0xc0000fff);
Linus Walleij458eef2f2011-08-12 13:41:50 +020063
srinidhi kasagardd821822012-01-17 11:29:39 +053064 /*
65 * We can't disable l2 as we are in non secure mode, currently
66 * this seems be called only during kexec path. So let's
67 * override outer.disable with nasty assignment until we have
68 * some SMI service available.
69 */
70 outer_cache.disable = NULL;
Linus Walleij458eef2f2011-08-12 13:41:50 +020071
72 return 0;
73}
74
75early_initcall(ux500_l2x0_init);