aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-ux500/cache-l2x0.c
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2014-03-18 21:22:05 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2014-05-29 19:50:19 -0400
commitc4a202c8ae001e7154a5fe22b64f751d37da2122 (patch)
tree2fbe58f7ed0ab4af130e3f1e0d069ac088b601a7 /arch/arm/mach-ux500/cache-l2x0.c
parent6716173347a87790a03fda6b8f978ac096ca7758 (diff)
ARM: l2c: ux500: remove cache size override
The cache size should already be present in the L2 cache auxiliary control register: it is part of the integration process to configure the hardware IP. Most platforms get this right, yet still many cargo-cult program, and assume that they always need specifying to the L2 cache code. Remove them so we can find out which really need this. Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-ux500/cache-l2x0.c')
-rw-r--r--arch/arm/mach-ux500/cache-l2x0.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/arch/arm/mach-ux500/cache-l2x0.c b/arch/arm/mach-ux500/cache-l2x0.c
index 067c37a054fb..5b891d051054 100644
--- a/arch/arm/mach-ux500/cache-l2x0.c
+++ b/arch/arm/mach-ux500/cache-l2x0.c
@@ -45,8 +45,6 @@ static void ux500_l2c310_write_sec(unsigned long val, unsigned reg)
45 45
46static int __init ux500_l2x0_init(void) 46static int __init ux500_l2x0_init(void)
47{ 47{
48 u32 aux_val = 0x3e000000;
49
50 if (cpu_is_u8500_family() || cpu_is_ux540_family()) 48 if (cpu_is_u8500_family() || cpu_is_ux540_family())
51 l2x0_base = __io_address(U8500_L2CC_BASE); 49 l2x0_base = __io_address(U8500_L2CC_BASE);
52 else 50 else
@@ -56,21 +54,12 @@ static int __init ux500_l2x0_init(void)
56 /* Unlock before init */ 54 /* Unlock before init */
57 ux500_l2x0_unlock(); 55 ux500_l2x0_unlock();
58 56
59 /* DBx540's L2 has 128KB way size */
60 if (cpu_is_ux540_family())
61 /* 128KB way size */
62 aux_val |= L2C_AUX_CTRL_WAY_SIZE(4);
63 else
64 /* 64KB way size */
65 aux_val |= L2C_AUX_CTRL_WAY_SIZE(3);
66
67 outer_cache.write_sec = ux500_l2c310_write_sec; 57 outer_cache.write_sec = ux500_l2c310_write_sec;
68 58
69 /* 64KB way size, 8 way associativity, force WA */
70 if (of_have_populated_dt()) 59 if (of_have_populated_dt())
71 l2x0_of_init(aux_val, 0xc0000fff); 60 l2x0_of_init(0x3e000000, 0xc00f0fff);
72 else 61 else
73 l2x0_init(l2x0_base, aux_val, 0xc0000fff); 62 l2x0_init(l2x0_base, 0x3e000000, 0xc00f0fff);
74 63
75 return 0; 64 return 0;
76} 65}