Linus Walleij | 458eef2f | 2011-08-12 13:41:50 +0200 | [diff] [blame] | 1 | /* |
| 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 Jones | f1949ea | 2012-03-08 09:02:02 +0000 | [diff] [blame] | 8 | #include <linux/of.h> |
| 9 | |
Linus Walleij | 458eef2f | 2011-08-12 13:41:50 +0200 | [diff] [blame] | 10 | #include <asm/cacheflush.h> |
| 11 | #include <asm/hardware/cache-l2x0.h> |
Linus Walleij | 7a4f260 | 2012-09-19 19:31:19 +0200 | [diff] [blame] | 12 | |
Linus Walleij | 174e779 | 2013-03-19 15:41:55 +0100 | [diff] [blame] | 13 | #include "db8500-regs.h" |
Linus Walleij | 7a4f260 | 2012-09-19 19:31:19 +0200 | [diff] [blame] | 14 | #include "id.h" |
Linus Walleij | 458eef2f | 2011-08-12 13:41:50 +0200 | [diff] [blame] | 15 | |
| 16 | static void __iomem *l2x0_base; |
| 17 | |
Arnd Bergmann | a3849a4 | 2011-10-08 21:47:06 +0200 | [diff] [blame] | 18 | static 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 | |
| 38 | static int __init ux500_l2x0_init(void) |
Linus Walleij | 458eef2f | 2011-08-12 13:41:50 +0200 | [diff] [blame] | 39 | { |
Linus Walleij | bc71c09 | 2012-01-23 11:54:44 +0100 | [diff] [blame] | 40 | u32 aux_val = 0x3e000000; |
| 41 | |
Linus Walleij | e1bbb55 | 2012-08-09 17:10:36 +0200 | [diff] [blame] | 42 | if (cpu_is_u8500_family() || cpu_is_ux540_family()) |
Linus Walleij | 458eef2f | 2011-08-12 13:41:50 +0200 | [diff] [blame] | 43 | l2x0_base = __io_address(U8500_L2CC_BASE); |
| 44 | else |
Linus Walleij | 31c72ab | 2013-06-26 21:46:08 +0200 | [diff] [blame] | 45 | /* Non-Ux500 platform */ |
| 46 | return -ENODEV; |
Linus Walleij | 458eef2f | 2011-08-12 13:41:50 +0200 | [diff] [blame] | 47 | |
Arnd Bergmann | a3849a4 | 2011-10-08 21:47:06 +0200 | [diff] [blame] | 48 | /* Unlock before init */ |
| 49 | ux500_l2x0_unlock(); |
| 50 | |
Maxime Coquelin | 0f2fa40 | 2013-01-23 11:27:58 +0100 | [diff] [blame] | 51 | /* DBx540's L2 has 128KB way size */ |
| 52 | if (cpu_is_ux540_family()) |
Linus Walleij | bc71c09 | 2012-01-23 11:54:44 +0100 | [diff] [blame] | 53 | /* 128KB way size */ |
| 54 | aux_val |= (0x4 << L2X0_AUX_CTRL_WAY_SIZE_SHIFT); |
| 55 | else |
| 56 | /* 64KB way size */ |
| 57 | aux_val |= (0x3 << L2X0_AUX_CTRL_WAY_SIZE_SHIFT); |
| 58 | |
Linus Walleij | 458eef2f | 2011-08-12 13:41:50 +0200 | [diff] [blame] | 59 | /* 64KB way size, 8 way associativity, force WA */ |
Lee Jones | f1949ea | 2012-03-08 09:02:02 +0000 | [diff] [blame] | 60 | if (of_have_populated_dt()) |
Linus Walleij | bc71c09 | 2012-01-23 11:54:44 +0100 | [diff] [blame] | 61 | l2x0_of_init(aux_val, 0xc0000fff); |
Lee Jones | f1949ea | 2012-03-08 09:02:02 +0000 | [diff] [blame] | 62 | else |
Linus Walleij | bc71c09 | 2012-01-23 11:54:44 +0100 | [diff] [blame] | 63 | l2x0_init(l2x0_base, aux_val, 0xc0000fff); |
Linus Walleij | 458eef2f | 2011-08-12 13:41:50 +0200 | [diff] [blame] | 64 | |
srinidhi kasagar | dd82182 | 2012-01-17 11:29:39 +0530 | [diff] [blame] | 65 | /* |
| 66 | * We can't disable l2 as we are in non secure mode, currently |
| 67 | * this seems be called only during kexec path. So let's |
| 68 | * override outer.disable with nasty assignment until we have |
| 69 | * some SMI service available. |
| 70 | */ |
| 71 | outer_cache.disable = NULL; |
Linus Walleij | 458eef2f | 2011-08-12 13:41:50 +0200 | [diff] [blame] | 72 | |
| 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | early_initcall(ux500_l2x0_init); |