Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mm/cache-l2x0.c - L210/L220 cache controller support |
| 3 | * |
| 4 | * Copyright (C) 2007 ARM Limited |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 18 | */ |
Russell King | 8ef418c | 2014-03-18 21:40:01 +0000 | [diff] [blame] | 19 | #include <linux/cpu.h> |
Rob Herring | 8c36926 | 2011-08-03 18:12:05 +0100 | [diff] [blame] | 20 | #include <linux/err.h> |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 21 | #include <linux/init.h> |
Russell King | 8ef418c | 2014-03-18 21:40:01 +0000 | [diff] [blame] | 22 | #include <linux/smp.h> |
Catalin Marinas | 0762097 | 2007-07-20 11:42:40 +0100 | [diff] [blame] | 23 | #include <linux/spinlock.h> |
Linus Walleij | f3354ab | 2014-09-26 09:01:58 +0100 | [diff] [blame] | 24 | #include <linux/log2.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 25 | #include <linux/io.h> |
Rob Herring | 8c36926 | 2011-08-03 18:12:05 +0100 | [diff] [blame] | 26 | #include <linux/of.h> |
| 27 | #include <linux/of_address.h> |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 28 | |
| 29 | #include <asm/cacheflush.h> |
Russell King | 8ef418c | 2014-03-18 21:40:01 +0000 | [diff] [blame] | 30 | #include <asm/cp15.h> |
Russell King | 4374d64 | 2014-03-19 15:39:09 +0000 | [diff] [blame] | 31 | #include <asm/cputype.h> |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 32 | #include <asm/hardware/cache-l2x0.h> |
Sebastian Hesselbarth | e68f31f | 2013-12-13 16:42:19 +0100 | [diff] [blame] | 33 | #include "cache-tauros3.h" |
Gregory CLEMENT | b8db6b8 | 2012-11-06 01:58:07 +0100 | [diff] [blame] | 34 | #include "cache-aurora-l2.h" |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 35 | |
Russell King | c02642b | 2014-03-15 16:47:54 +0000 | [diff] [blame] | 36 | struct l2c_init_data { |
Russell King | 051334b | 2014-03-15 23:04:10 +0000 | [diff] [blame] | 37 | const char *type; |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 38 | unsigned way_size_0; |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 39 | unsigned num_lock; |
Russell King | c02642b | 2014-03-15 16:47:54 +0000 | [diff] [blame] | 40 | void (*of_parse)(const struct device_node *, u32 *, u32 *); |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 41 | void (*enable)(void __iomem *, u32, unsigned); |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 42 | void (*fixup)(void __iomem *, u32, struct outer_cache_fns *); |
Russell King | 9846dfc | 2014-03-15 16:47:55 +0000 | [diff] [blame] | 43 | void (*save)(void __iomem *); |
Russell King | c02642b | 2014-03-15 16:47:54 +0000 | [diff] [blame] | 44 | struct outer_cache_fns outer_cache; |
| 45 | }; |
| 46 | |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 47 | #define CACHE_LINE_SIZE 32 |
| 48 | |
| 49 | static void __iomem *l2x0_base; |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 50 | static DEFINE_RAW_SPINLOCK(l2x0_lock); |
Russell King | 3e175ca | 2011-09-18 11:27:30 +0100 | [diff] [blame] | 51 | static u32 l2x0_way_mask; /* Bitmask of active ways */ |
| 52 | static u32 l2x0_size; |
Will Deacon | f154fe9 | 2012-04-20 17:21:08 +0100 | [diff] [blame] | 53 | static unsigned long sync_reg_offset = L2X0_CACHE_SYNC; |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 54 | |
Barry Song | 91c2ebb | 2011-09-30 14:43:12 +0100 | [diff] [blame] | 55 | struct l2x0_regs l2x0_saved_regs; |
| 56 | |
Russell King | 37abcdb | 2014-03-15 16:47:50 +0000 | [diff] [blame] | 57 | /* |
| 58 | * Common code for all cache controllers. |
| 59 | */ |
Russell King | 83841fe | 2014-03-15 16:48:14 +0000 | [diff] [blame] | 60 | static inline void l2c_wait_mask(void __iomem *reg, unsigned long mask) |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 61 | { |
Catalin Marinas | 9a6655e | 2010-08-31 13:05:22 +0100 | [diff] [blame] | 62 | /* wait for cache operation by line or way to complete */ |
Catalin Marinas | 6775a55 | 2010-07-28 22:01:25 +0100 | [diff] [blame] | 63 | while (readl_relaxed(reg) & mask) |
Barry Song | 1caf309 | 2011-09-09 10:30:34 +0100 | [diff] [blame] | 64 | cpu_relax(); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 65 | } |
| 66 | |
Russell King | 2b2a87a | 2014-03-16 17:19:21 +0000 | [diff] [blame] | 67 | /* |
Russell King | 8abd259 | 2014-03-16 17:38:08 +0000 | [diff] [blame] | 68 | * By default, we write directly to secure registers. Platforms must |
| 69 | * override this if they are running non-secure. |
| 70 | */ |
| 71 | static void l2c_write_sec(unsigned long val, void __iomem *base, unsigned reg) |
| 72 | { |
| 73 | if (val == readl_relaxed(base + reg)) |
| 74 | return; |
| 75 | if (outer_cache.write_sec) |
| 76 | outer_cache.write_sec(val, reg); |
| 77 | else |
| 78 | writel_relaxed(val, base + reg); |
| 79 | } |
| 80 | |
| 81 | /* |
Russell King | 2b2a87a | 2014-03-16 17:19:21 +0000 | [diff] [blame] | 82 | * This should only be called when we have a requirement that the |
| 83 | * register be written due to a work-around, as platforms running |
| 84 | * in non-secure mode may not be able to access this register. |
| 85 | */ |
| 86 | static inline void l2c_set_debug(void __iomem *base, unsigned long val) |
| 87 | { |
Russell King | 678ea28 | 2014-03-16 19:38:25 +0000 | [diff] [blame] | 88 | l2c_write_sec(val, base, L2X0_DEBUG_CTRL); |
Russell King | 2b2a87a | 2014-03-16 17:19:21 +0000 | [diff] [blame] | 89 | } |
| 90 | |
Russell King | df5dd4c | 2014-03-15 16:47:56 +0000 | [diff] [blame] | 91 | static void __l2c_op_way(void __iomem *reg) |
| 92 | { |
| 93 | writel_relaxed(l2x0_way_mask, reg); |
Russell King | 83841fe | 2014-03-15 16:48:14 +0000 | [diff] [blame] | 94 | l2c_wait_mask(reg, l2x0_way_mask); |
Russell King | df5dd4c | 2014-03-15 16:47:56 +0000 | [diff] [blame] | 95 | } |
| 96 | |
Russell King | 37abcdb | 2014-03-15 16:47:50 +0000 | [diff] [blame] | 97 | static inline void l2c_unlock(void __iomem *base, unsigned num) |
| 98 | { |
| 99 | unsigned i; |
| 100 | |
| 101 | for (i = 0; i < num; i++) { |
| 102 | writel_relaxed(0, base + L2X0_LOCKDOWN_WAY_D_BASE + |
| 103 | i * L2X0_LOCKDOWN_STRIDE); |
| 104 | writel_relaxed(0, base + L2X0_LOCKDOWN_WAY_I_BASE + |
| 105 | i * L2X0_LOCKDOWN_STRIDE); |
| 106 | } |
| 107 | } |
| 108 | |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 109 | /* |
| 110 | * Enable the L2 cache controller. This function must only be |
| 111 | * called when the cache controller is known to be disabled. |
| 112 | */ |
| 113 | static void l2c_enable(void __iomem *base, u32 aux, unsigned num_lock) |
| 114 | { |
| 115 | unsigned long flags; |
| 116 | |
Russell King | 8abd259 | 2014-03-16 17:38:08 +0000 | [diff] [blame] | 117 | l2c_write_sec(aux, base, L2X0_AUX_CTRL); |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 118 | |
Russell King | 17f3f99 | 2014-03-17 17:15:02 +0000 | [diff] [blame] | 119 | l2c_unlock(base, num_lock); |
| 120 | |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 121 | local_irq_save(flags); |
| 122 | __l2c_op_way(base + L2X0_INV_WAY); |
| 123 | writel_relaxed(0, base + sync_reg_offset); |
| 124 | l2c_wait_mask(base + sync_reg_offset, 1); |
| 125 | local_irq_restore(flags); |
| 126 | |
Russell King | 8abd259 | 2014-03-16 17:38:08 +0000 | [diff] [blame] | 127 | l2c_write_sec(L2X0_CTRL_EN, base, L2X0_CTRL); |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | static void l2c_disable(void) |
| 131 | { |
| 132 | void __iomem *base = l2x0_base; |
| 133 | |
| 134 | outer_cache.flush_all(); |
Russell King | 8abd259 | 2014-03-16 17:38:08 +0000 | [diff] [blame] | 135 | l2c_write_sec(0, base, L2X0_CTRL); |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 136 | dsb(st); |
| 137 | } |
| 138 | |
Catalin Marinas | 9a6655e | 2010-08-31 13:05:22 +0100 | [diff] [blame] | 139 | #ifdef CONFIG_CACHE_PL310 |
| 140 | static inline void cache_wait(void __iomem *reg, unsigned long mask) |
| 141 | { |
| 142 | /* cache operations by line are atomic on PL310 */ |
| 143 | } |
| 144 | #else |
Russell King | 83841fe | 2014-03-15 16:48:14 +0000 | [diff] [blame] | 145 | #define cache_wait l2c_wait_mask |
Catalin Marinas | 9a6655e | 2010-08-31 13:05:22 +0100 | [diff] [blame] | 146 | #endif |
| 147 | |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 148 | static inline void cache_sync(void) |
| 149 | { |
Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 150 | void __iomem *base = l2x0_base; |
Srinidhi Kasagar | 885028e | 2011-02-17 07:03:51 +0100 | [diff] [blame] | 151 | |
Will Deacon | f154fe9 | 2012-04-20 17:21:08 +0100 | [diff] [blame] | 152 | writel_relaxed(0, base + sync_reg_offset); |
Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 153 | cache_wait(base + L2X0_CACHE_SYNC, 1); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 154 | } |
| 155 | |
Santosh Shilimkar | 2839e06 | 2011-03-08 06:59:54 +0100 | [diff] [blame] | 156 | #if defined(CONFIG_PL310_ERRATA_588369) || defined(CONFIG_PL310_ERRATA_727915) |
Will Deacon | ab4d536 | 2012-04-20 17:22:11 +0100 | [diff] [blame] | 157 | static inline void debug_writel(unsigned long val) |
| 158 | { |
Russell King | 678ea28 | 2014-03-16 19:38:25 +0000 | [diff] [blame] | 159 | l2c_set_debug(l2x0_base, val); |
Will Deacon | ab4d536 | 2012-04-20 17:22:11 +0100 | [diff] [blame] | 160 | } |
Santosh Shilimkar | 2839e06 | 2011-03-08 06:59:54 +0100 | [diff] [blame] | 161 | #else |
| 162 | /* Optimised out for non-errata case */ |
| 163 | static inline void debug_writel(unsigned long val) |
| 164 | { |
Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 165 | } |
Santosh Shilimkar | 2839e06 | 2011-03-08 06:59:54 +0100 | [diff] [blame] | 166 | #endif |
| 167 | |
Catalin Marinas | 23107c5 | 2010-03-24 16:48:53 +0100 | [diff] [blame] | 168 | static void l2x0_cache_sync(void) |
| 169 | { |
| 170 | unsigned long flags; |
| 171 | |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 172 | raw_spin_lock_irqsave(&l2x0_lock, flags); |
Catalin Marinas | 23107c5 | 2010-03-24 16:48:53 +0100 | [diff] [blame] | 173 | cache_sync(); |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 174 | raw_spin_unlock_irqrestore(&l2x0_lock, flags); |
Catalin Marinas | 23107c5 | 2010-03-24 16:48:53 +0100 | [diff] [blame] | 175 | } |
| 176 | |
Will Deacon | 38a8914 | 2011-07-01 14:36:19 +0100 | [diff] [blame] | 177 | static void __l2x0_flush_all(void) |
| 178 | { |
| 179 | debug_writel(0x03); |
Russell King | df5dd4c | 2014-03-15 16:47:56 +0000 | [diff] [blame] | 180 | __l2c_op_way(l2x0_base + L2X0_CLEAN_INV_WAY); |
Will Deacon | 38a8914 | 2011-07-01 14:36:19 +0100 | [diff] [blame] | 181 | cache_sync(); |
| 182 | debug_writel(0x00); |
| 183 | } |
| 184 | |
Thomas Gleixner | 2fd8658 | 2010-07-31 21:05:24 +0530 | [diff] [blame] | 185 | static void l2x0_flush_all(void) |
| 186 | { |
| 187 | unsigned long flags; |
| 188 | |
| 189 | /* clean all ways */ |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 190 | raw_spin_lock_irqsave(&l2x0_lock, flags); |
Will Deacon | 38a8914 | 2011-07-01 14:36:19 +0100 | [diff] [blame] | 191 | __l2x0_flush_all(); |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 192 | raw_spin_unlock_irqrestore(&l2x0_lock, flags); |
Thomas Gleixner | 2fd8658 | 2010-07-31 21:05:24 +0530 | [diff] [blame] | 193 | } |
| 194 | |
Thomas Gleixner | 2fd8658 | 2010-07-31 21:05:24 +0530 | [diff] [blame] | 195 | static void l2x0_disable(void) |
| 196 | { |
| 197 | unsigned long flags; |
| 198 | |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 199 | raw_spin_lock_irqsave(&l2x0_lock, flags); |
Will Deacon | 38a8914 | 2011-07-01 14:36:19 +0100 | [diff] [blame] | 200 | __l2x0_flush_all(); |
Russell King | 8abd259 | 2014-03-16 17:38:08 +0000 | [diff] [blame] | 201 | l2c_write_sec(0, l2x0_base, L2X0_CTRL); |
Will Deacon | 9781aa8 | 2013-06-12 09:59:59 +0100 | [diff] [blame] | 202 | dsb(st); |
Thomas Gleixner | bd31b85 | 2009-07-03 08:44:46 -0500 | [diff] [blame] | 203 | raw_spin_unlock_irqrestore(&l2x0_lock, flags); |
Thomas Gleixner | 2fd8658 | 2010-07-31 21:05:24 +0530 | [diff] [blame] | 204 | } |
| 205 | |
Russell King | ddf7d79 | 2014-03-28 14:18:35 +0000 | [diff] [blame] | 206 | static void l2c_save(void __iomem *base) |
| 207 | { |
| 208 | l2x0_saved_regs.aux_ctrl = readl_relaxed(l2x0_base + L2X0_AUX_CTRL); |
| 209 | } |
| 210 | |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 211 | /* |
Russell King | 6a28cf5 | 2014-03-15 18:55:53 +0000 | [diff] [blame] | 212 | * L2C-210 specific code. |
| 213 | * |
| 214 | * The L2C-2x0 PA, set/way and sync operations are atomic, but we must |
| 215 | * ensure that no background operation is running. The way operations |
| 216 | * are all background tasks. |
| 217 | * |
| 218 | * While a background operation is in progress, any new operation is |
| 219 | * ignored (unspecified whether this causes an error.) Thankfully, not |
| 220 | * used on SMP. |
| 221 | * |
| 222 | * Never has a different sync register other than L2X0_CACHE_SYNC, but |
| 223 | * we use sync_reg_offset here so we can share some of this with L2C-310. |
| 224 | */ |
| 225 | static void __l2c210_cache_sync(void __iomem *base) |
| 226 | { |
| 227 | writel_relaxed(0, base + sync_reg_offset); |
| 228 | } |
| 229 | |
| 230 | static void __l2c210_op_pa_range(void __iomem *reg, unsigned long start, |
| 231 | unsigned long end) |
| 232 | { |
| 233 | while (start < end) { |
| 234 | writel_relaxed(start, reg); |
| 235 | start += CACHE_LINE_SIZE; |
| 236 | } |
| 237 | } |
| 238 | |
| 239 | static void l2c210_inv_range(unsigned long start, unsigned long end) |
| 240 | { |
| 241 | void __iomem *base = l2x0_base; |
| 242 | |
| 243 | if (start & (CACHE_LINE_SIZE - 1)) { |
| 244 | start &= ~(CACHE_LINE_SIZE - 1); |
| 245 | writel_relaxed(start, base + L2X0_CLEAN_INV_LINE_PA); |
| 246 | start += CACHE_LINE_SIZE; |
| 247 | } |
| 248 | |
| 249 | if (end & (CACHE_LINE_SIZE - 1)) { |
| 250 | end &= ~(CACHE_LINE_SIZE - 1); |
| 251 | writel_relaxed(end, base + L2X0_CLEAN_INV_LINE_PA); |
| 252 | } |
| 253 | |
| 254 | __l2c210_op_pa_range(base + L2X0_INV_LINE_PA, start, end); |
| 255 | __l2c210_cache_sync(base); |
| 256 | } |
| 257 | |
| 258 | static void l2c210_clean_range(unsigned long start, unsigned long end) |
| 259 | { |
| 260 | void __iomem *base = l2x0_base; |
| 261 | |
| 262 | start &= ~(CACHE_LINE_SIZE - 1); |
| 263 | __l2c210_op_pa_range(base + L2X0_CLEAN_LINE_PA, start, end); |
| 264 | __l2c210_cache_sync(base); |
| 265 | } |
| 266 | |
| 267 | static void l2c210_flush_range(unsigned long start, unsigned long end) |
| 268 | { |
| 269 | void __iomem *base = l2x0_base; |
| 270 | |
| 271 | start &= ~(CACHE_LINE_SIZE - 1); |
| 272 | __l2c210_op_pa_range(base + L2X0_CLEAN_INV_LINE_PA, start, end); |
| 273 | __l2c210_cache_sync(base); |
| 274 | } |
| 275 | |
| 276 | static void l2c210_flush_all(void) |
| 277 | { |
| 278 | void __iomem *base = l2x0_base; |
| 279 | |
| 280 | BUG_ON(!irqs_disabled()); |
| 281 | |
| 282 | __l2c_op_way(base + L2X0_CLEAN_INV_WAY); |
| 283 | __l2c210_cache_sync(base); |
| 284 | } |
| 285 | |
| 286 | static void l2c210_sync(void) |
| 287 | { |
| 288 | __l2c210_cache_sync(l2x0_base); |
| 289 | } |
| 290 | |
| 291 | static void l2c210_resume(void) |
| 292 | { |
| 293 | void __iomem *base = l2x0_base; |
| 294 | |
| 295 | if (!(readl_relaxed(base + L2X0_CTRL) & L2X0_CTRL_EN)) |
| 296 | l2c_enable(base, l2x0_saved_regs.aux_ctrl, 1); |
| 297 | } |
| 298 | |
| 299 | static const struct l2c_init_data l2c210_data __initconst = { |
Russell King | 051334b | 2014-03-15 23:04:10 +0000 | [diff] [blame] | 300 | .type = "L2C-210", |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 301 | .way_size_0 = SZ_8K, |
Russell King | 6a28cf5 | 2014-03-15 18:55:53 +0000 | [diff] [blame] | 302 | .num_lock = 1, |
| 303 | .enable = l2c_enable, |
Russell King | ddf7d79 | 2014-03-28 14:18:35 +0000 | [diff] [blame] | 304 | .save = l2c_save, |
Russell King | 6a28cf5 | 2014-03-15 18:55:53 +0000 | [diff] [blame] | 305 | .outer_cache = { |
| 306 | .inv_range = l2c210_inv_range, |
| 307 | .clean_range = l2c210_clean_range, |
| 308 | .flush_range = l2c210_flush_range, |
| 309 | .flush_all = l2c210_flush_all, |
| 310 | .disable = l2c_disable, |
| 311 | .sync = l2c210_sync, |
| 312 | .resume = l2c210_resume, |
| 313 | }, |
| 314 | }; |
| 315 | |
| 316 | /* |
Russell King | 733c6bb | 2014-03-15 21:29:28 +0000 | [diff] [blame] | 317 | * L2C-220 specific code. |
| 318 | * |
| 319 | * All operations are background operations: they have to be waited for. |
| 320 | * Conflicting requests generate a slave error (which will cause an |
| 321 | * imprecise abort.) Never uses sync_reg_offset, so we hard-code the |
| 322 | * sync register here. |
| 323 | * |
| 324 | * However, we can re-use the l2c210_resume call. |
| 325 | */ |
| 326 | static inline void __l2c220_cache_sync(void __iomem *base) |
| 327 | { |
| 328 | writel_relaxed(0, base + L2X0_CACHE_SYNC); |
| 329 | l2c_wait_mask(base + L2X0_CACHE_SYNC, 1); |
| 330 | } |
| 331 | |
| 332 | static void l2c220_op_way(void __iomem *base, unsigned reg) |
| 333 | { |
| 334 | unsigned long flags; |
| 335 | |
| 336 | raw_spin_lock_irqsave(&l2x0_lock, flags); |
| 337 | __l2c_op_way(base + reg); |
| 338 | __l2c220_cache_sync(base); |
| 339 | raw_spin_unlock_irqrestore(&l2x0_lock, flags); |
| 340 | } |
| 341 | |
| 342 | static unsigned long l2c220_op_pa_range(void __iomem *reg, unsigned long start, |
| 343 | unsigned long end, unsigned long flags) |
| 344 | { |
| 345 | raw_spinlock_t *lock = &l2x0_lock; |
| 346 | |
| 347 | while (start < end) { |
| 348 | unsigned long blk_end = start + min(end - start, 4096UL); |
| 349 | |
| 350 | while (start < blk_end) { |
| 351 | l2c_wait_mask(reg, 1); |
| 352 | writel_relaxed(start, reg); |
| 353 | start += CACHE_LINE_SIZE; |
| 354 | } |
| 355 | |
| 356 | if (blk_end < end) { |
| 357 | raw_spin_unlock_irqrestore(lock, flags); |
| 358 | raw_spin_lock_irqsave(lock, flags); |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | return flags; |
| 363 | } |
| 364 | |
| 365 | static void l2c220_inv_range(unsigned long start, unsigned long end) |
| 366 | { |
| 367 | void __iomem *base = l2x0_base; |
| 368 | unsigned long flags; |
| 369 | |
| 370 | raw_spin_lock_irqsave(&l2x0_lock, flags); |
| 371 | if ((start | end) & (CACHE_LINE_SIZE - 1)) { |
| 372 | if (start & (CACHE_LINE_SIZE - 1)) { |
| 373 | start &= ~(CACHE_LINE_SIZE - 1); |
| 374 | writel_relaxed(start, base + L2X0_CLEAN_INV_LINE_PA); |
| 375 | start += CACHE_LINE_SIZE; |
| 376 | } |
| 377 | |
| 378 | if (end & (CACHE_LINE_SIZE - 1)) { |
| 379 | end &= ~(CACHE_LINE_SIZE - 1); |
| 380 | l2c_wait_mask(base + L2X0_CLEAN_INV_LINE_PA, 1); |
| 381 | writel_relaxed(end, base + L2X0_CLEAN_INV_LINE_PA); |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | flags = l2c220_op_pa_range(base + L2X0_INV_LINE_PA, |
| 386 | start, end, flags); |
| 387 | l2c_wait_mask(base + L2X0_INV_LINE_PA, 1); |
| 388 | __l2c220_cache_sync(base); |
| 389 | raw_spin_unlock_irqrestore(&l2x0_lock, flags); |
| 390 | } |
| 391 | |
| 392 | static void l2c220_clean_range(unsigned long start, unsigned long end) |
| 393 | { |
| 394 | void __iomem *base = l2x0_base; |
| 395 | unsigned long flags; |
| 396 | |
| 397 | start &= ~(CACHE_LINE_SIZE - 1); |
| 398 | if ((end - start) >= l2x0_size) { |
| 399 | l2c220_op_way(base, L2X0_CLEAN_WAY); |
| 400 | return; |
| 401 | } |
| 402 | |
| 403 | raw_spin_lock_irqsave(&l2x0_lock, flags); |
| 404 | flags = l2c220_op_pa_range(base + L2X0_CLEAN_LINE_PA, |
| 405 | start, end, flags); |
| 406 | l2c_wait_mask(base + L2X0_CLEAN_INV_LINE_PA, 1); |
| 407 | __l2c220_cache_sync(base); |
| 408 | raw_spin_unlock_irqrestore(&l2x0_lock, flags); |
| 409 | } |
| 410 | |
| 411 | static void l2c220_flush_range(unsigned long start, unsigned long end) |
| 412 | { |
| 413 | void __iomem *base = l2x0_base; |
| 414 | unsigned long flags; |
| 415 | |
| 416 | start &= ~(CACHE_LINE_SIZE - 1); |
| 417 | if ((end - start) >= l2x0_size) { |
| 418 | l2c220_op_way(base, L2X0_CLEAN_INV_WAY); |
| 419 | return; |
| 420 | } |
| 421 | |
| 422 | raw_spin_lock_irqsave(&l2x0_lock, flags); |
| 423 | flags = l2c220_op_pa_range(base + L2X0_CLEAN_INV_LINE_PA, |
| 424 | start, end, flags); |
| 425 | l2c_wait_mask(base + L2X0_CLEAN_INV_LINE_PA, 1); |
| 426 | __l2c220_cache_sync(base); |
| 427 | raw_spin_unlock_irqrestore(&l2x0_lock, flags); |
| 428 | } |
| 429 | |
| 430 | static void l2c220_flush_all(void) |
| 431 | { |
| 432 | l2c220_op_way(l2x0_base, L2X0_CLEAN_INV_WAY); |
| 433 | } |
| 434 | |
| 435 | static void l2c220_sync(void) |
| 436 | { |
| 437 | unsigned long flags; |
| 438 | |
| 439 | raw_spin_lock_irqsave(&l2x0_lock, flags); |
| 440 | __l2c220_cache_sync(l2x0_base); |
| 441 | raw_spin_unlock_irqrestore(&l2x0_lock, flags); |
| 442 | } |
| 443 | |
Russell King | a4b041a | 2014-04-11 00:48:25 +0100 | [diff] [blame] | 444 | static void l2c220_enable(void __iomem *base, u32 aux, unsigned num_lock) |
| 445 | { |
| 446 | /* |
| 447 | * Always enable non-secure access to the lockdown registers - |
| 448 | * we write to them as part of the L2C enable sequence so they |
| 449 | * need to be accessible. |
| 450 | */ |
| 451 | aux |= L220_AUX_CTRL_NS_LOCKDOWN; |
| 452 | |
| 453 | l2c_enable(base, aux, num_lock); |
| 454 | } |
| 455 | |
Russell King | 733c6bb | 2014-03-15 21:29:28 +0000 | [diff] [blame] | 456 | static const struct l2c_init_data l2c220_data = { |
Russell King | 051334b | 2014-03-15 23:04:10 +0000 | [diff] [blame] | 457 | .type = "L2C-220", |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 458 | .way_size_0 = SZ_8K, |
Russell King | 733c6bb | 2014-03-15 21:29:28 +0000 | [diff] [blame] | 459 | .num_lock = 1, |
Russell King | a4b041a | 2014-04-11 00:48:25 +0100 | [diff] [blame] | 460 | .enable = l2c220_enable, |
Russell King | ddf7d79 | 2014-03-28 14:18:35 +0000 | [diff] [blame] | 461 | .save = l2c_save, |
Russell King | 733c6bb | 2014-03-15 21:29:28 +0000 | [diff] [blame] | 462 | .outer_cache = { |
| 463 | .inv_range = l2c220_inv_range, |
| 464 | .clean_range = l2c220_clean_range, |
| 465 | .flush_range = l2c220_flush_range, |
| 466 | .flush_all = l2c220_flush_all, |
| 467 | .disable = l2c_disable, |
| 468 | .sync = l2c220_sync, |
| 469 | .resume = l2c210_resume, |
| 470 | }, |
| 471 | }; |
| 472 | |
| 473 | /* |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 474 | * L2C-310 specific code. |
| 475 | * |
Russell King | f777332 | 2014-03-15 20:51:47 +0000 | [diff] [blame] | 476 | * Very similar to L2C-210, the PA, set/way and sync operations are atomic, |
| 477 | * and the way operations are all background tasks. However, issuing an |
| 478 | * operation while a background operation is in progress results in a |
| 479 | * SLVERR response. We can reuse: |
| 480 | * |
| 481 | * __l2c210_cache_sync (using sync_reg_offset) |
| 482 | * l2c210_sync |
| 483 | * l2c210_inv_range (if 588369 is not applicable) |
| 484 | * l2c210_clean_range |
| 485 | * l2c210_flush_range (if 588369 is not applicable) |
| 486 | * l2c210_flush_all (if 727915 is not applicable) |
| 487 | * |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 488 | * Errata: |
| 489 | * 588369: PL310 R0P0->R1P0, fixed R2P0. |
| 490 | * Affects: all clean+invalidate operations |
| 491 | * clean and invalidate skips the invalidate step, so we need to issue |
| 492 | * separate operations. We also require the above debug workaround |
| 493 | * enclosing this code fragment on affected parts. On unaffected parts, |
| 494 | * we must not use this workaround without the debug register writes |
| 495 | * to avoid exposing a problem similar to 727915. |
| 496 | * |
| 497 | * 727915: PL310 R2P0->R3P0, fixed R3P1. |
| 498 | * Affects: clean+invalidate by way |
| 499 | * clean and invalidate by way runs in the background, and a store can |
| 500 | * hit the line between the clean operation and invalidate operation, |
| 501 | * resulting in the store being lost. |
| 502 | * |
Russell King | a8875a0 | 2014-03-16 20:02:06 +0000 | [diff] [blame] | 503 | * 752271: PL310 R3P0->R3P1-50REL0, fixed R3P2. |
| 504 | * Affects: 8x64-bit (double fill) line fetches |
| 505 | * double fill line fetches can fail to cause dirty data to be evicted |
| 506 | * from the cache before the new data overwrites the second line. |
| 507 | * |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 508 | * 753970: PL310 R3P0, fixed R3P1. |
| 509 | * Affects: sync |
| 510 | * prevents merging writes after the sync operation, until another L2C |
| 511 | * operation is performed (or a number of other conditions.) |
| 512 | * |
| 513 | * 769419: PL310 R0P0->R3P1, fixed R3P2. |
| 514 | * Affects: store buffer |
| 515 | * store buffer is not automatically drained. |
| 516 | */ |
Russell King | ebd4219f | 2014-03-15 19:08:11 +0000 | [diff] [blame] | 517 | static void l2c310_inv_range_erratum(unsigned long start, unsigned long end) |
| 518 | { |
| 519 | void __iomem *base = l2x0_base; |
| 520 | |
| 521 | if ((start | end) & (CACHE_LINE_SIZE - 1)) { |
| 522 | unsigned long flags; |
| 523 | |
| 524 | /* Erratum 588369 for both clean+invalidate operations */ |
| 525 | raw_spin_lock_irqsave(&l2x0_lock, flags); |
| 526 | l2c_set_debug(base, 0x03); |
| 527 | |
| 528 | if (start & (CACHE_LINE_SIZE - 1)) { |
| 529 | start &= ~(CACHE_LINE_SIZE - 1); |
| 530 | writel_relaxed(start, base + L2X0_CLEAN_LINE_PA); |
| 531 | writel_relaxed(start, base + L2X0_INV_LINE_PA); |
| 532 | start += CACHE_LINE_SIZE; |
| 533 | } |
| 534 | |
| 535 | if (end & (CACHE_LINE_SIZE - 1)) { |
| 536 | end &= ~(CACHE_LINE_SIZE - 1); |
| 537 | writel_relaxed(end, base + L2X0_CLEAN_LINE_PA); |
| 538 | writel_relaxed(end, base + L2X0_INV_LINE_PA); |
| 539 | } |
| 540 | |
| 541 | l2c_set_debug(base, 0x00); |
| 542 | raw_spin_unlock_irqrestore(&l2x0_lock, flags); |
| 543 | } |
| 544 | |
| 545 | __l2c210_op_pa_range(base + L2X0_INV_LINE_PA, start, end); |
| 546 | __l2c210_cache_sync(base); |
| 547 | } |
| 548 | |
| 549 | static void l2c310_flush_range_erratum(unsigned long start, unsigned long end) |
| 550 | { |
| 551 | raw_spinlock_t *lock = &l2x0_lock; |
| 552 | unsigned long flags; |
| 553 | void __iomem *base = l2x0_base; |
| 554 | |
| 555 | raw_spin_lock_irqsave(lock, flags); |
| 556 | while (start < end) { |
| 557 | unsigned long blk_end = start + min(end - start, 4096UL); |
| 558 | |
| 559 | l2c_set_debug(base, 0x03); |
| 560 | while (start < blk_end) { |
| 561 | writel_relaxed(start, base + L2X0_CLEAN_LINE_PA); |
| 562 | writel_relaxed(start, base + L2X0_INV_LINE_PA); |
| 563 | start += CACHE_LINE_SIZE; |
| 564 | } |
| 565 | l2c_set_debug(base, 0x00); |
| 566 | |
| 567 | if (blk_end < end) { |
| 568 | raw_spin_unlock_irqrestore(lock, flags); |
| 569 | raw_spin_lock_irqsave(lock, flags); |
| 570 | } |
| 571 | } |
| 572 | raw_spin_unlock_irqrestore(lock, flags); |
| 573 | __l2c210_cache_sync(base); |
| 574 | } |
| 575 | |
Russell King | 99ca1772 | 2014-03-15 16:48:18 +0000 | [diff] [blame] | 576 | static void l2c310_flush_all_erratum(void) |
| 577 | { |
| 578 | void __iomem *base = l2x0_base; |
| 579 | unsigned long flags; |
| 580 | |
| 581 | raw_spin_lock_irqsave(&l2x0_lock, flags); |
| 582 | l2c_set_debug(base, 0x03); |
| 583 | __l2c_op_way(base + L2X0_CLEAN_INV_WAY); |
| 584 | l2c_set_debug(base, 0x00); |
| 585 | __l2c210_cache_sync(base); |
| 586 | raw_spin_unlock_irqrestore(&l2x0_lock, flags); |
| 587 | } |
| 588 | |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 589 | static void __init l2c310_save(void __iomem *base) |
Russell King | b98556f2 | 2014-03-15 16:48:11 +0000 | [diff] [blame] | 590 | { |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 591 | unsigned revision; |
Russell King | b98556f2 | 2014-03-15 16:48:11 +0000 | [diff] [blame] | 592 | |
Russell King | ddf7d79 | 2014-03-28 14:18:35 +0000 | [diff] [blame] | 593 | l2c_save(base); |
| 594 | |
Russell King | b98556f2 | 2014-03-15 16:48:11 +0000 | [diff] [blame] | 595 | l2x0_saved_regs.tag_latency = readl_relaxed(base + |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 596 | L310_TAG_LATENCY_CTRL); |
Russell King | b98556f2 | 2014-03-15 16:48:11 +0000 | [diff] [blame] | 597 | l2x0_saved_regs.data_latency = readl_relaxed(base + |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 598 | L310_DATA_LATENCY_CTRL); |
Russell King | b98556f2 | 2014-03-15 16:48:11 +0000 | [diff] [blame] | 599 | l2x0_saved_regs.filter_end = readl_relaxed(base + |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 600 | L310_ADDR_FILTER_END); |
Russell King | b98556f2 | 2014-03-15 16:48:11 +0000 | [diff] [blame] | 601 | l2x0_saved_regs.filter_start = readl_relaxed(base + |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 602 | L310_ADDR_FILTER_START); |
Russell King | b98556f2 | 2014-03-15 16:48:11 +0000 | [diff] [blame] | 603 | |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 604 | revision = readl_relaxed(base + L2X0_CACHE_ID) & |
Russell King | b98556f2 | 2014-03-15 16:48:11 +0000 | [diff] [blame] | 605 | L2X0_CACHE_ID_RTL_MASK; |
| 606 | |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 607 | /* From r2p0, there is Prefetch offset/control register */ |
| 608 | if (revision >= L310_CACHE_ID_RTL_R2P0) |
| 609 | l2x0_saved_regs.prefetch_ctrl = readl_relaxed(base + |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 610 | L310_PREFETCH_CTRL); |
Russell King | b98556f2 | 2014-03-15 16:48:11 +0000 | [diff] [blame] | 611 | |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 612 | /* From r3p0, there is Power control register */ |
| 613 | if (revision >= L310_CACHE_ID_RTL_R3P0) |
| 614 | l2x0_saved_regs.pwr_ctrl = readl_relaxed(base + |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 615 | L310_POWER_CTRL); |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 616 | } |
| 617 | |
| 618 | static void l2c310_resume(void) |
| 619 | { |
| 620 | void __iomem *base = l2x0_base; |
| 621 | |
| 622 | if (!(readl_relaxed(base + L2X0_CTRL) & L2X0_CTRL_EN)) { |
| 623 | unsigned revision; |
| 624 | |
| 625 | /* restore pl310 setup */ |
| 626 | writel_relaxed(l2x0_saved_regs.tag_latency, |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 627 | base + L310_TAG_LATENCY_CTRL); |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 628 | writel_relaxed(l2x0_saved_regs.data_latency, |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 629 | base + L310_DATA_LATENCY_CTRL); |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 630 | writel_relaxed(l2x0_saved_regs.filter_end, |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 631 | base + L310_ADDR_FILTER_END); |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 632 | writel_relaxed(l2x0_saved_regs.filter_start, |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 633 | base + L310_ADDR_FILTER_START); |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 634 | |
| 635 | revision = readl_relaxed(base + L2X0_CACHE_ID) & |
| 636 | L2X0_CACHE_ID_RTL_MASK; |
| 637 | |
| 638 | if (revision >= L310_CACHE_ID_RTL_R2P0) |
Russell King | 8abd259 | 2014-03-16 17:38:08 +0000 | [diff] [blame] | 639 | l2c_write_sec(l2x0_saved_regs.prefetch_ctrl, base, |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 640 | L310_PREFETCH_CTRL); |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 641 | if (revision >= L310_CACHE_ID_RTL_R3P0) |
Russell King | 8abd259 | 2014-03-16 17:38:08 +0000 | [diff] [blame] | 642 | l2c_write_sec(l2x0_saved_regs.pwr_ctrl, base, |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 643 | L310_POWER_CTRL); |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 644 | |
| 645 | l2c_enable(base, l2x0_saved_regs.aux_ctrl, 8); |
Russell King | 8ef418c | 2014-03-18 21:40:01 +0000 | [diff] [blame] | 646 | |
| 647 | /* Re-enable full-line-of-zeros for Cortex-A9 */ |
| 648 | if (l2x0_saved_regs.aux_ctrl & L310_AUX_CTRL_FULL_LINE_ZERO) |
| 649 | set_auxcr(get_auxcr() | BIT(3) | BIT(2) | BIT(1)); |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 650 | } |
Russell King | b98556f2 | 2014-03-15 16:48:11 +0000 | [diff] [blame] | 651 | } |
| 652 | |
Russell King | 8ef418c | 2014-03-18 21:40:01 +0000 | [diff] [blame] | 653 | static int l2c310_cpu_enable_flz(struct notifier_block *nb, unsigned long act, void *data) |
| 654 | { |
| 655 | switch (act & ~CPU_TASKS_FROZEN) { |
| 656 | case CPU_STARTING: |
| 657 | set_auxcr(get_auxcr() | BIT(3) | BIT(2) | BIT(1)); |
| 658 | break; |
| 659 | case CPU_DYING: |
| 660 | set_auxcr(get_auxcr() & ~(BIT(3) | BIT(2) | BIT(1))); |
| 661 | break; |
| 662 | } |
| 663 | return NOTIFY_OK; |
| 664 | } |
| 665 | |
Russell King | 4374d64 | 2014-03-19 15:39:09 +0000 | [diff] [blame] | 666 | static void __init l2c310_enable(void __iomem *base, u32 aux, unsigned num_lock) |
| 667 | { |
Russell King | 9a2c33a | 2014-07-07 13:53:03 +0100 | [diff] [blame] | 668 | unsigned rev = readl_relaxed(base + L2X0_CACHE_ID) & L2X0_CACHE_ID_RTL_MASK; |
Russell King | af040ff | 2014-06-24 19:43:15 +0100 | [diff] [blame] | 669 | bool cortex_a9 = read_cpuid_part() == ARM_CPU_PART_CORTEX_A9; |
Russell King | 4374d64 | 2014-03-19 15:39:09 +0000 | [diff] [blame] | 670 | |
| 671 | if (rev >= L310_CACHE_ID_RTL_R2P0) { |
| 672 | if (cortex_a9) { |
| 673 | aux |= L310_AUX_CTRL_EARLY_BRESP; |
| 674 | pr_info("L2C-310 enabling early BRESP for Cortex-A9\n"); |
| 675 | } else if (aux & L310_AUX_CTRL_EARLY_BRESP) { |
| 676 | pr_warn("L2C-310 early BRESP only supported with Cortex-A9\n"); |
| 677 | aux &= ~L310_AUX_CTRL_EARLY_BRESP; |
| 678 | } |
| 679 | } |
| 680 | |
Russell King | 8ef418c | 2014-03-18 21:40:01 +0000 | [diff] [blame] | 681 | if (cortex_a9) { |
| 682 | u32 aux_cur = readl_relaxed(base + L2X0_AUX_CTRL); |
| 683 | u32 acr = get_auxcr(); |
| 684 | |
| 685 | pr_debug("Cortex-A9 ACR=0x%08x\n", acr); |
| 686 | |
| 687 | if (acr & BIT(3) && !(aux_cur & L310_AUX_CTRL_FULL_LINE_ZERO)) |
| 688 | pr_err("L2C-310: full line of zeros enabled in Cortex-A9 but not L2C-310 - invalid\n"); |
| 689 | |
| 690 | if (aux & L310_AUX_CTRL_FULL_LINE_ZERO && !(acr & BIT(3))) |
| 691 | pr_err("L2C-310: enabling full line of zeros but not enabled in Cortex-A9\n"); |
| 692 | |
| 693 | if (!(aux & L310_AUX_CTRL_FULL_LINE_ZERO) && !outer_cache.write_sec) { |
| 694 | aux |= L310_AUX_CTRL_FULL_LINE_ZERO; |
| 695 | pr_info("L2C-310 full line of zeros enabled for Cortex-A9\n"); |
| 696 | } |
| 697 | } else if (aux & (L310_AUX_CTRL_FULL_LINE_ZERO | L310_AUX_CTRL_EARLY_BRESP)) { |
| 698 | pr_err("L2C-310: disabling Cortex-A9 specific feature bits\n"); |
| 699 | aux &= ~(L310_AUX_CTRL_FULL_LINE_ZERO | L310_AUX_CTRL_EARLY_BRESP); |
| 700 | } |
| 701 | |
| 702 | if (aux & (L310_AUX_CTRL_DATA_PREFETCH | L310_AUX_CTRL_INSTR_PREFETCH)) { |
| 703 | u32 prefetch = readl_relaxed(base + L310_PREFETCH_CTRL); |
| 704 | |
| 705 | pr_info("L2C-310 %s%s prefetch enabled, offset %u lines\n", |
| 706 | aux & L310_AUX_CTRL_INSTR_PREFETCH ? "I" : "", |
| 707 | aux & L310_AUX_CTRL_DATA_PREFETCH ? "D" : "", |
| 708 | 1 + (prefetch & L310_PREFETCH_CTRL_OFFSET_MASK)); |
| 709 | } |
| 710 | |
Russell King | 3a43b58 | 2014-03-28 14:22:04 +0000 | [diff] [blame] | 711 | /* r3p0 or later has power control register */ |
| 712 | if (rev >= L310_CACHE_ID_RTL_R3P0) { |
| 713 | u32 power_ctrl; |
| 714 | |
| 715 | l2c_write_sec(L310_DYNAMIC_CLK_GATING_EN | L310_STNDBY_MODE_EN, |
| 716 | base, L310_POWER_CTRL); |
| 717 | power_ctrl = readl_relaxed(base + L310_POWER_CTRL); |
| 718 | pr_info("L2C-310 dynamic clock gating %sabled, standby mode %sabled\n", |
| 719 | power_ctrl & L310_DYNAMIC_CLK_GATING_EN ? "en" : "dis", |
| 720 | power_ctrl & L310_STNDBY_MODE_EN ? "en" : "dis"); |
| 721 | } |
| 722 | |
Russell King | a4b041a | 2014-04-11 00:48:25 +0100 | [diff] [blame] | 723 | /* |
| 724 | * Always enable non-secure access to the lockdown registers - |
| 725 | * we write to them as part of the L2C enable sequence so they |
| 726 | * need to be accessible. |
| 727 | */ |
| 728 | aux |= L310_AUX_CTRL_NS_LOCKDOWN; |
| 729 | |
Russell King | 4374d64 | 2014-03-19 15:39:09 +0000 | [diff] [blame] | 730 | l2c_enable(base, aux, num_lock); |
Russell King | 8ef418c | 2014-03-18 21:40:01 +0000 | [diff] [blame] | 731 | |
| 732 | if (aux & L310_AUX_CTRL_FULL_LINE_ZERO) { |
| 733 | set_auxcr(get_auxcr() | BIT(3) | BIT(2) | BIT(1)); |
| 734 | cpu_notifier(l2c310_cpu_enable_flz, 0); |
| 735 | } |
Russell King | 4374d64 | 2014-03-19 15:39:09 +0000 | [diff] [blame] | 736 | } |
| 737 | |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 738 | static void __init l2c310_fixup(void __iomem *base, u32 cache_id, |
| 739 | struct outer_cache_fns *fns) |
| 740 | { |
| 741 | unsigned revision = cache_id & L2X0_CACHE_ID_RTL_MASK; |
Russell King | a8875a0 | 2014-03-16 20:02:06 +0000 | [diff] [blame] | 742 | const char *errata[8]; |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 743 | unsigned n = 0; |
| 744 | |
Russell King | ebd4219f | 2014-03-15 19:08:11 +0000 | [diff] [blame] | 745 | if (IS_ENABLED(CONFIG_PL310_ERRATA_588369) && |
| 746 | revision < L310_CACHE_ID_RTL_R2P0 && |
| 747 | /* For bcm compatibility */ |
Russell King | f777332 | 2014-03-15 20:51:47 +0000 | [diff] [blame] | 748 | fns->inv_range == l2c210_inv_range) { |
Russell King | ebd4219f | 2014-03-15 19:08:11 +0000 | [diff] [blame] | 749 | fns->inv_range = l2c310_inv_range_erratum; |
| 750 | fns->flush_range = l2c310_flush_range_erratum; |
| 751 | errata[n++] = "588369"; |
| 752 | } |
| 753 | |
Russell King | 99ca1772 | 2014-03-15 16:48:18 +0000 | [diff] [blame] | 754 | if (IS_ENABLED(CONFIG_PL310_ERRATA_727915) && |
| 755 | revision >= L310_CACHE_ID_RTL_R2P0 && |
| 756 | revision < L310_CACHE_ID_RTL_R3P1) { |
| 757 | fns->flush_all = l2c310_flush_all_erratum; |
| 758 | errata[n++] = "727915"; |
| 759 | } |
| 760 | |
Russell King | a8875a0 | 2014-03-16 20:02:06 +0000 | [diff] [blame] | 761 | if (revision >= L310_CACHE_ID_RTL_R3P0 && |
| 762 | revision < L310_CACHE_ID_RTL_R3P2) { |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 763 | u32 val = readl_relaxed(base + L310_PREFETCH_CTRL); |
Russell King | a8875a0 | 2014-03-16 20:02:06 +0000 | [diff] [blame] | 764 | /* I don't think bit23 is required here... but iMX6 does so */ |
| 765 | if (val & (BIT(30) | BIT(23))) { |
| 766 | val &= ~(BIT(30) | BIT(23)); |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 767 | l2c_write_sec(val, base, L310_PREFETCH_CTRL); |
Russell King | a8875a0 | 2014-03-16 20:02:06 +0000 | [diff] [blame] | 768 | errata[n++] = "752271"; |
| 769 | } |
| 770 | } |
| 771 | |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 772 | if (IS_ENABLED(CONFIG_PL310_ERRATA_753970) && |
| 773 | revision == L310_CACHE_ID_RTL_R3P0) { |
| 774 | sync_reg_offset = L2X0_DUMMY_REG; |
| 775 | errata[n++] = "753970"; |
| 776 | } |
| 777 | |
| 778 | if (IS_ENABLED(CONFIG_PL310_ERRATA_769419)) |
| 779 | errata[n++] = "769419"; |
| 780 | |
| 781 | if (n) { |
| 782 | unsigned i; |
| 783 | |
| 784 | pr_info("L2C-310 errat%s", n > 1 ? "a" : "um"); |
| 785 | for (i = 0; i < n; i++) |
| 786 | pr_cont(" %s", errata[i]); |
| 787 | pr_cont(" enabled\n"); |
| 788 | } |
| 789 | } |
| 790 | |
Russell King | 8ef418c | 2014-03-18 21:40:01 +0000 | [diff] [blame] | 791 | static void l2c310_disable(void) |
| 792 | { |
| 793 | /* |
| 794 | * If full-line-of-zeros is enabled, we must first disable it in the |
| 795 | * Cortex-A9 auxiliary control register before disabling the L2 cache. |
| 796 | */ |
| 797 | if (l2x0_saved_regs.aux_ctrl & L310_AUX_CTRL_FULL_LINE_ZERO) |
| 798 | set_auxcr(get_auxcr() & ~(BIT(3) | BIT(2) | BIT(1))); |
| 799 | |
| 800 | l2c_disable(); |
| 801 | } |
| 802 | |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 803 | static const struct l2c_init_data l2c310_init_fns __initconst = { |
Russell King | 051334b | 2014-03-15 23:04:10 +0000 | [diff] [blame] | 804 | .type = "L2C-310", |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 805 | .way_size_0 = SZ_8K, |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 806 | .num_lock = 8, |
Russell King | 4374d64 | 2014-03-19 15:39:09 +0000 | [diff] [blame] | 807 | .enable = l2c310_enable, |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 808 | .fixup = l2c310_fixup, |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 809 | .save = l2c310_save, |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 810 | .outer_cache = { |
Russell King | f777332 | 2014-03-15 20:51:47 +0000 | [diff] [blame] | 811 | .inv_range = l2c210_inv_range, |
| 812 | .clean_range = l2c210_clean_range, |
| 813 | .flush_range = l2c210_flush_range, |
| 814 | .flush_all = l2c210_flush_all, |
Russell King | 8ef418c | 2014-03-18 21:40:01 +0000 | [diff] [blame] | 815 | .disable = l2c310_disable, |
Russell King | f777332 | 2014-03-15 20:51:47 +0000 | [diff] [blame] | 816 | .sync = l2c210_sync, |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 817 | .resume = l2c310_resume, |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 818 | }, |
| 819 | }; |
| 820 | |
Russell King | 96054b0 | 2014-03-15 16:47:52 +0000 | [diff] [blame] | 821 | static void __init __l2c_init(const struct l2c_init_data *data, |
| 822 | u32 aux_val, u32 aux_mask, u32 cache_id) |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 823 | { |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 824 | struct outer_cache_fns fns; |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 825 | unsigned way_size_bits, ways; |
Russell King | 560be61 | 2014-03-17 17:02:56 +0000 | [diff] [blame] | 826 | u32 aux, old_aux; |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 827 | |
Russell King | 560be61 | 2014-03-17 17:02:56 +0000 | [diff] [blame] | 828 | /* |
| 829 | * Sanity check the aux values. aux_mask is the bits we preserve |
| 830 | * from reading the hardware register, and aux_val is the bits we |
| 831 | * set. |
| 832 | */ |
| 833 | if (aux_val & aux_mask) |
| 834 | pr_alert("L2C: platform provided aux values permit register corruption.\n"); |
Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 835 | |
Russell King | 560be61 | 2014-03-17 17:02:56 +0000 | [diff] [blame] | 836 | old_aux = aux = readl_relaxed(l2x0_base + L2X0_AUX_CTRL); |
Sascha Hauer | 4082cfa | 2010-07-08 08:36:21 +0100 | [diff] [blame] | 837 | aux &= aux_mask; |
| 838 | aux |= aux_val; |
| 839 | |
Russell King | 560be61 | 2014-03-17 17:02:56 +0000 | [diff] [blame] | 840 | if (old_aux != aux) |
| 841 | pr_warn("L2C: DT/platform modifies aux control register: 0x%08x -> 0x%08x\n", |
| 842 | old_aux, aux); |
| 843 | |
Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 844 | /* Determine the number of ways */ |
Rob Herring | 6e7acee | 2013-03-25 17:02:48 +0100 | [diff] [blame] | 845 | switch (cache_id & L2X0_CACHE_ID_PART_MASK) { |
Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 846 | case L2X0_CACHE_ID_PART_L310: |
Russell King | 314e47b | 2014-03-19 14:07:12 +0000 | [diff] [blame] | 847 | if ((aux_val | ~aux_mask) & (L2C_AUX_CTRL_WAY_SIZE_MASK | L310_AUX_CTRL_ASSOCIATIVITY_16)) |
| 848 | pr_warn("L2C: DT/platform tries to modify or specify cache size\n"); |
Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 849 | if (aux & (1 << 16)) |
| 850 | ways = 16; |
| 851 | else |
| 852 | ways = 8; |
Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 853 | break; |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 854 | |
Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 855 | case L2X0_CACHE_ID_PART_L210: |
Russell King | 5f47c38 | 2014-03-15 23:07:07 +0000 | [diff] [blame] | 856 | case L2X0_CACHE_ID_PART_L220: |
Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 857 | ways = (aux >> 13) & 0xf; |
Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 858 | break; |
Gregory CLEMENT | b8db6b8 | 2012-11-06 01:58:07 +0100 | [diff] [blame] | 859 | |
| 860 | case AURORA_CACHE_ID: |
Gregory CLEMENT | b8db6b8 | 2012-11-06 01:58:07 +0100 | [diff] [blame] | 861 | ways = (aux >> 13) & 0xf; |
| 862 | ways = 2 << ((ways + 1) >> 2); |
Gregory CLEMENT | b8db6b8 | 2012-11-06 01:58:07 +0100 | [diff] [blame] | 863 | break; |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 864 | |
Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 865 | default: |
| 866 | /* Assume unknown chips have 8 ways */ |
| 867 | ways = 8; |
Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 868 | break; |
| 869 | } |
| 870 | |
| 871 | l2x0_way_mask = (1 << ways) - 1; |
| 872 | |
Srinidhi Kasagar | 48371cd | 2009-12-02 06:18:03 +0100 | [diff] [blame] | 873 | /* |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 874 | * way_size_0 is the size that a way_size value of zero would be |
| 875 | * given the calculation: way_size = way_size_0 << way_size_bits. |
| 876 | * So, if way_size_bits=0 is reserved, but way_size_bits=1 is 16k, |
| 877 | * then way_size_0 would be 8k. |
| 878 | * |
| 879 | * L2 cache size = number of ways * way size. |
Santosh Shilimkar | 5ba7037 | 2010-07-11 14:35:37 +0530 | [diff] [blame] | 880 | */ |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 881 | way_size_bits = (aux & L2C_AUX_CTRL_WAY_SIZE_MASK) >> |
| 882 | L2C_AUX_CTRL_WAY_SIZE_SHIFT; |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 883 | l2x0_size = ways * (data->way_size_0 << way_size_bits); |
Santosh Shilimkar | 5ba7037 | 2010-07-11 14:35:37 +0530 | [diff] [blame] | 884 | |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 885 | fns = data->outer_cache; |
Russell King | 8abd259 | 2014-03-16 17:38:08 +0000 | [diff] [blame] | 886 | fns.write_sec = outer_cache.write_sec; |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 887 | if (data->fixup) |
| 888 | data->fixup(l2x0_base, cache_id, &fns); |
| 889 | |
Santosh Shilimkar | 5ba7037 | 2010-07-11 14:35:37 +0530 | [diff] [blame] | 890 | /* |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 891 | * Check if l2x0 controller is already enabled. If we are booting |
| 892 | * in non-secure mode accessing the below registers will fault. |
Srinidhi Kasagar | 48371cd | 2009-12-02 06:18:03 +0100 | [diff] [blame] | 893 | */ |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 894 | if (!(readl_relaxed(l2x0_base + L2X0_CTRL) & L2X0_CTRL_EN)) |
| 895 | data->enable(l2x0_base, aux, data->num_lock); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 896 | |
Russell King | ddf7d79 | 2014-03-28 14:18:35 +0000 | [diff] [blame] | 897 | outer_cache = fns; |
| 898 | |
| 899 | /* |
| 900 | * It is strange to save the register state before initialisation, |
| 901 | * but hey, this is what the DT implementations decided to do. |
| 902 | */ |
| 903 | if (data->save) |
| 904 | data->save(l2x0_base); |
| 905 | |
Yilu Mao | 9d4876f | 2012-09-03 09:14:56 +0100 | [diff] [blame] | 906 | /* Re-read it in case some bits are reserved. */ |
| 907 | aux = readl_relaxed(l2x0_base + L2X0_AUX_CTRL); |
| 908 | |
Russell King | cdef868 | 2014-03-15 16:48:08 +0000 | [diff] [blame] | 909 | pr_info("%s cache controller enabled, %d ways, %d kB\n", |
Russell King | 051334b | 2014-03-15 23:04:10 +0000 | [diff] [blame] | 910 | data->type, ways, l2x0_size >> 10); |
Russell King | cdef868 | 2014-03-15 16:48:08 +0000 | [diff] [blame] | 911 | pr_info("%s: CACHE_ID 0x%08x, AUX_CTRL 0x%08x\n", |
Russell King | 051334b | 2014-03-15 23:04:10 +0000 | [diff] [blame] | 912 | data->type, cache_id, aux); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 913 | } |
Rob Herring | 8c36926 | 2011-08-03 18:12:05 +0100 | [diff] [blame] | 914 | |
Russell King | 96054b0 | 2014-03-15 16:47:52 +0000 | [diff] [blame] | 915 | void __init l2x0_init(void __iomem *base, u32 aux_val, u32 aux_mask) |
| 916 | { |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 917 | const struct l2c_init_data *data; |
Russell King | 96054b0 | 2014-03-15 16:47:52 +0000 | [diff] [blame] | 918 | u32 cache_id; |
| 919 | |
| 920 | l2x0_base = base; |
| 921 | |
| 922 | cache_id = readl_relaxed(base + L2X0_CACHE_ID); |
| 923 | |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 924 | switch (cache_id & L2X0_CACHE_ID_PART_MASK) { |
| 925 | default: |
Russell King | 6a28cf5 | 2014-03-15 18:55:53 +0000 | [diff] [blame] | 926 | case L2X0_CACHE_ID_PART_L210: |
| 927 | data = &l2c210_data; |
| 928 | break; |
| 929 | |
Russell King | 733c6bb | 2014-03-15 21:29:28 +0000 | [diff] [blame] | 930 | case L2X0_CACHE_ID_PART_L220: |
| 931 | data = &l2c220_data; |
| 932 | break; |
| 933 | |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 934 | case L2X0_CACHE_ID_PART_L310: |
| 935 | data = &l2c310_init_fns; |
| 936 | break; |
| 937 | } |
| 938 | |
| 939 | __l2c_init(data, aux_val, aux_mask, cache_id); |
Russell King | 96054b0 | 2014-03-15 16:47:52 +0000 | [diff] [blame] | 940 | } |
| 941 | |
Rob Herring | 8c36926 | 2011-08-03 18:12:05 +0100 | [diff] [blame] | 942 | #ifdef CONFIG_OF |
Gregory CLEMENT | b8db6b8 | 2012-11-06 01:58:07 +0100 | [diff] [blame] | 943 | static int l2_wt_override; |
| 944 | |
Russell King | 96054b0 | 2014-03-15 16:47:52 +0000 | [diff] [blame] | 945 | /* Aurora don't have the cache ID register available, so we have to |
| 946 | * pass it though the device tree */ |
| 947 | static u32 cache_id_part_number_from_dt; |
| 948 | |
Linus Walleij | f3354ab | 2014-09-26 09:01:58 +0100 | [diff] [blame] | 949 | /** |
| 950 | * l2x0_cache_size_of_parse() - read cache size parameters from DT |
| 951 | * @np: the device tree node for the l2 cache |
| 952 | * @aux_val: pointer to machine-supplied auxilary register value, to |
| 953 | * be augmented by the call (bits to be set to 1) |
| 954 | * @aux_mask: pointer to machine-supplied auxilary register mask, to |
| 955 | * be augmented by the call (bits to be set to 0) |
| 956 | * @associativity: variable to return the calculated associativity in |
| 957 | * @max_way_size: the maximum size in bytes for the cache ways |
| 958 | */ |
Fabio Estevam | d0b9284 | 2014-10-29 12:06:31 +0100 | [diff] [blame] | 959 | static int __init l2x0_cache_size_of_parse(const struct device_node *np, |
Linus Walleij | f3354ab | 2014-09-26 09:01:58 +0100 | [diff] [blame] | 960 | u32 *aux_val, u32 *aux_mask, |
| 961 | u32 *associativity, |
| 962 | u32 max_way_size) |
| 963 | { |
| 964 | u32 mask = 0, val = 0; |
| 965 | u32 cache_size = 0, sets = 0; |
| 966 | u32 way_size_bits = 1; |
| 967 | u32 way_size = 0; |
| 968 | u32 block_size = 0; |
| 969 | u32 line_size = 0; |
| 970 | |
| 971 | of_property_read_u32(np, "cache-size", &cache_size); |
| 972 | of_property_read_u32(np, "cache-sets", &sets); |
| 973 | of_property_read_u32(np, "cache-block-size", &block_size); |
| 974 | of_property_read_u32(np, "cache-line-size", &line_size); |
| 975 | |
| 976 | if (!cache_size || !sets) |
Fabio Estevam | d0b9284 | 2014-10-29 12:06:31 +0100 | [diff] [blame] | 977 | return -ENODEV; |
Linus Walleij | f3354ab | 2014-09-26 09:01:58 +0100 | [diff] [blame] | 978 | |
| 979 | /* All these l2 caches have the same line = block size actually */ |
| 980 | if (!line_size) { |
| 981 | if (block_size) { |
| 982 | /* If linesize if not given, it is equal to blocksize */ |
| 983 | line_size = block_size; |
| 984 | } else { |
| 985 | /* Fall back to known size */ |
| 986 | pr_warn("L2C OF: no cache block/line size given: " |
| 987 | "falling back to default size %d bytes\n", |
| 988 | CACHE_LINE_SIZE); |
| 989 | line_size = CACHE_LINE_SIZE; |
| 990 | } |
| 991 | } |
| 992 | |
| 993 | if (line_size != CACHE_LINE_SIZE) |
| 994 | pr_warn("L2C OF: DT supplied line size %d bytes does " |
| 995 | "not match hardware line size of %d bytes\n", |
| 996 | line_size, |
| 997 | CACHE_LINE_SIZE); |
| 998 | |
| 999 | /* |
| 1000 | * Since: |
| 1001 | * set size = cache size / sets |
| 1002 | * ways = cache size / (sets * line size) |
| 1003 | * way size = cache size / (cache size / (sets * line size)) |
| 1004 | * way size = sets * line size |
| 1005 | * associativity = ways = cache size / way size |
| 1006 | */ |
| 1007 | way_size = sets * line_size; |
| 1008 | *associativity = cache_size / way_size; |
| 1009 | |
| 1010 | if (way_size > max_way_size) { |
| 1011 | pr_err("L2C OF: set size %dKB is too large\n", way_size); |
Fabio Estevam | d0b9284 | 2014-10-29 12:06:31 +0100 | [diff] [blame] | 1012 | return -EINVAL; |
Linus Walleij | f3354ab | 2014-09-26 09:01:58 +0100 | [diff] [blame] | 1013 | } |
| 1014 | |
| 1015 | pr_info("L2C OF: override cache size: %d bytes (%dKB)\n", |
| 1016 | cache_size, cache_size >> 10); |
| 1017 | pr_info("L2C OF: override line size: %d bytes\n", line_size); |
| 1018 | pr_info("L2C OF: override way size: %d bytes (%dKB)\n", |
| 1019 | way_size, way_size >> 10); |
| 1020 | pr_info("L2C OF: override associativity: %d\n", *associativity); |
| 1021 | |
| 1022 | /* |
| 1023 | * Calculates the bits 17:19 to set for way size: |
| 1024 | * 512KB -> 6, 256KB -> 5, ... 16KB -> 1 |
| 1025 | */ |
| 1026 | way_size_bits = ilog2(way_size >> 10) - 3; |
| 1027 | if (way_size_bits < 1 || way_size_bits > 6) { |
| 1028 | pr_err("L2C OF: cache way size illegal: %dKB is not mapped\n", |
| 1029 | way_size); |
Fabio Estevam | d0b9284 | 2014-10-29 12:06:31 +0100 | [diff] [blame] | 1030 | return -EINVAL; |
Linus Walleij | f3354ab | 2014-09-26 09:01:58 +0100 | [diff] [blame] | 1031 | } |
| 1032 | |
| 1033 | mask |= L2C_AUX_CTRL_WAY_SIZE_MASK; |
| 1034 | val |= (way_size_bits << L2C_AUX_CTRL_WAY_SIZE_SHIFT); |
| 1035 | |
| 1036 | *aux_val &= ~mask; |
| 1037 | *aux_val |= val; |
| 1038 | *aux_mask &= ~mask; |
Fabio Estevam | d0b9284 | 2014-10-29 12:06:31 +0100 | [diff] [blame] | 1039 | |
| 1040 | return 0; |
Linus Walleij | f3354ab | 2014-09-26 09:01:58 +0100 | [diff] [blame] | 1041 | } |
| 1042 | |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1043 | static void __init l2x0_of_parse(const struct device_node *np, |
| 1044 | u32 *aux_val, u32 *aux_mask) |
| 1045 | { |
| 1046 | u32 data[2] = { 0, 0 }; |
| 1047 | u32 tag = 0; |
| 1048 | u32 dirty = 0; |
| 1049 | u32 val = 0, mask = 0; |
Linus Walleij | f3354ab | 2014-09-26 09:01:58 +0100 | [diff] [blame] | 1050 | u32 assoc; |
Fabio Estevam | d0b9284 | 2014-10-29 12:06:31 +0100 | [diff] [blame] | 1051 | int ret; |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1052 | |
| 1053 | of_property_read_u32(np, "arm,tag-latency", &tag); |
| 1054 | if (tag) { |
| 1055 | mask |= L2X0_AUX_CTRL_TAG_LATENCY_MASK; |
| 1056 | val |= (tag - 1) << L2X0_AUX_CTRL_TAG_LATENCY_SHIFT; |
| 1057 | } |
| 1058 | |
| 1059 | of_property_read_u32_array(np, "arm,data-latency", |
| 1060 | data, ARRAY_SIZE(data)); |
| 1061 | if (data[0] && data[1]) { |
| 1062 | mask |= L2X0_AUX_CTRL_DATA_RD_LATENCY_MASK | |
| 1063 | L2X0_AUX_CTRL_DATA_WR_LATENCY_MASK; |
| 1064 | val |= ((data[0] - 1) << L2X0_AUX_CTRL_DATA_RD_LATENCY_SHIFT) | |
| 1065 | ((data[1] - 1) << L2X0_AUX_CTRL_DATA_WR_LATENCY_SHIFT); |
| 1066 | } |
| 1067 | |
| 1068 | of_property_read_u32(np, "arm,dirty-latency", &dirty); |
| 1069 | if (dirty) { |
| 1070 | mask |= L2X0_AUX_CTRL_DIRTY_LATENCY_MASK; |
| 1071 | val |= (dirty - 1) << L2X0_AUX_CTRL_DIRTY_LATENCY_SHIFT; |
| 1072 | } |
| 1073 | |
Fabio Estevam | d0b9284 | 2014-10-29 12:06:31 +0100 | [diff] [blame] | 1074 | ret = l2x0_cache_size_of_parse(np, aux_val, aux_mask, &assoc, SZ_256K); |
| 1075 | if (ret) |
| 1076 | return; |
| 1077 | |
Linus Walleij | f3354ab | 2014-09-26 09:01:58 +0100 | [diff] [blame] | 1078 | if (assoc > 8) { |
| 1079 | pr_err("l2x0 of: cache setting yield too high associativity\n"); |
| 1080 | pr_err("l2x0 of: %d calculated, max 8\n", assoc); |
| 1081 | } else { |
| 1082 | mask |= L2X0_AUX_CTRL_ASSOC_MASK; |
| 1083 | val |= (assoc << L2X0_AUX_CTRL_ASSOC_SHIFT); |
| 1084 | } |
| 1085 | |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1086 | *aux_val &= ~mask; |
| 1087 | *aux_val |= val; |
| 1088 | *aux_mask &= ~mask; |
| 1089 | } |
| 1090 | |
Russell King | 6a28cf5 | 2014-03-15 18:55:53 +0000 | [diff] [blame] | 1091 | static const struct l2c_init_data of_l2c210_data __initconst = { |
Russell King | 051334b | 2014-03-15 23:04:10 +0000 | [diff] [blame] | 1092 | .type = "L2C-210", |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 1093 | .way_size_0 = SZ_8K, |
Russell King | 6a28cf5 | 2014-03-15 18:55:53 +0000 | [diff] [blame] | 1094 | .num_lock = 1, |
| 1095 | .of_parse = l2x0_of_parse, |
| 1096 | .enable = l2c_enable, |
Russell King | ddf7d79 | 2014-03-28 14:18:35 +0000 | [diff] [blame] | 1097 | .save = l2c_save, |
Russell King | 6a28cf5 | 2014-03-15 18:55:53 +0000 | [diff] [blame] | 1098 | .outer_cache = { |
| 1099 | .inv_range = l2c210_inv_range, |
| 1100 | .clean_range = l2c210_clean_range, |
| 1101 | .flush_range = l2c210_flush_range, |
| 1102 | .flush_all = l2c210_flush_all, |
| 1103 | .disable = l2c_disable, |
| 1104 | .sync = l2c210_sync, |
| 1105 | .resume = l2c210_resume, |
| 1106 | }, |
| 1107 | }; |
| 1108 | |
Russell King | 733c6bb | 2014-03-15 21:29:28 +0000 | [diff] [blame] | 1109 | static const struct l2c_init_data of_l2c220_data __initconst = { |
Russell King | 051334b | 2014-03-15 23:04:10 +0000 | [diff] [blame] | 1110 | .type = "L2C-220", |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 1111 | .way_size_0 = SZ_8K, |
Russell King | 733c6bb | 2014-03-15 21:29:28 +0000 | [diff] [blame] | 1112 | .num_lock = 1, |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1113 | .of_parse = l2x0_of_parse, |
Russell King | a4b041a | 2014-04-11 00:48:25 +0100 | [diff] [blame] | 1114 | .enable = l2c220_enable, |
Russell King | ddf7d79 | 2014-03-28 14:18:35 +0000 | [diff] [blame] | 1115 | .save = l2c_save, |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1116 | .outer_cache = { |
Russell King | 733c6bb | 2014-03-15 21:29:28 +0000 | [diff] [blame] | 1117 | .inv_range = l2c220_inv_range, |
| 1118 | .clean_range = l2c220_clean_range, |
| 1119 | .flush_range = l2c220_flush_range, |
| 1120 | .flush_all = l2c220_flush_all, |
| 1121 | .disable = l2c_disable, |
| 1122 | .sync = l2c220_sync, |
| 1123 | .resume = l2c210_resume, |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1124 | }, |
| 1125 | }; |
| 1126 | |
Russell King | f777332 | 2014-03-15 20:51:47 +0000 | [diff] [blame] | 1127 | static void __init l2c310_of_parse(const struct device_node *np, |
| 1128 | u32 *aux_val, u32 *aux_mask) |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1129 | { |
| 1130 | u32 data[3] = { 0, 0, 0 }; |
| 1131 | u32 tag[3] = { 0, 0, 0 }; |
| 1132 | u32 filter[2] = { 0, 0 }; |
Linus Walleij | f3354ab | 2014-09-26 09:01:58 +0100 | [diff] [blame] | 1133 | u32 assoc; |
Fabio Estevam | d0b9284 | 2014-10-29 12:06:31 +0100 | [diff] [blame] | 1134 | int ret; |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1135 | |
| 1136 | of_property_read_u32_array(np, "arm,tag-latency", tag, ARRAY_SIZE(tag)); |
| 1137 | if (tag[0] && tag[1] && tag[2]) |
| 1138 | writel_relaxed( |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 1139 | L310_LATENCY_CTRL_RD(tag[0] - 1) | |
| 1140 | L310_LATENCY_CTRL_WR(tag[1] - 1) | |
| 1141 | L310_LATENCY_CTRL_SETUP(tag[2] - 1), |
| 1142 | l2x0_base + L310_TAG_LATENCY_CTRL); |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1143 | |
| 1144 | of_property_read_u32_array(np, "arm,data-latency", |
| 1145 | data, ARRAY_SIZE(data)); |
| 1146 | if (data[0] && data[1] && data[2]) |
| 1147 | writel_relaxed( |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 1148 | L310_LATENCY_CTRL_RD(data[0] - 1) | |
| 1149 | L310_LATENCY_CTRL_WR(data[1] - 1) | |
| 1150 | L310_LATENCY_CTRL_SETUP(data[2] - 1), |
| 1151 | l2x0_base + L310_DATA_LATENCY_CTRL); |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1152 | |
| 1153 | of_property_read_u32_array(np, "arm,filter-ranges", |
| 1154 | filter, ARRAY_SIZE(filter)); |
| 1155 | if (filter[1]) { |
| 1156 | writel_relaxed(ALIGN(filter[0] + filter[1], SZ_1M), |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 1157 | l2x0_base + L310_ADDR_FILTER_END); |
| 1158 | writel_relaxed((filter[0] & ~(SZ_1M - 1)) | L310_ADDR_FILTER_EN, |
| 1159 | l2x0_base + L310_ADDR_FILTER_START); |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1160 | } |
Linus Walleij | f3354ab | 2014-09-26 09:01:58 +0100 | [diff] [blame] | 1161 | |
Fabio Estevam | d0b9284 | 2014-10-29 12:06:31 +0100 | [diff] [blame] | 1162 | ret = l2x0_cache_size_of_parse(np, aux_val, aux_mask, &assoc, SZ_512K); |
| 1163 | if (ret) |
| 1164 | return; |
| 1165 | |
Linus Walleij | f3354ab | 2014-09-26 09:01:58 +0100 | [diff] [blame] | 1166 | switch (assoc) { |
| 1167 | case 16: |
| 1168 | *aux_val &= ~L2X0_AUX_CTRL_ASSOC_MASK; |
| 1169 | *aux_val |= L310_AUX_CTRL_ASSOCIATIVITY_16; |
| 1170 | *aux_mask &= ~L2X0_AUX_CTRL_ASSOC_MASK; |
| 1171 | break; |
| 1172 | case 8: |
| 1173 | *aux_val &= ~L2X0_AUX_CTRL_ASSOC_MASK; |
| 1174 | *aux_mask &= ~L2X0_AUX_CTRL_ASSOC_MASK; |
| 1175 | break; |
| 1176 | default: |
Fabio Estevam | 6d0ec1d | 2014-10-29 12:42:08 +0100 | [diff] [blame] | 1177 | pr_err("L2C-310 OF cache associativity %d invalid, only 8 or 16 permitted\n", |
| 1178 | assoc); |
Linus Walleij | f3354ab | 2014-09-26 09:01:58 +0100 | [diff] [blame] | 1179 | break; |
| 1180 | } |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1181 | } |
| 1182 | |
Russell King | f777332 | 2014-03-15 20:51:47 +0000 | [diff] [blame] | 1183 | static const struct l2c_init_data of_l2c310_data __initconst = { |
Russell King | 051334b | 2014-03-15 23:04:10 +0000 | [diff] [blame] | 1184 | .type = "L2C-310", |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 1185 | .way_size_0 = SZ_8K, |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 1186 | .num_lock = 8, |
Russell King | f777332 | 2014-03-15 20:51:47 +0000 | [diff] [blame] | 1187 | .of_parse = l2c310_of_parse, |
Russell King | 4374d64 | 2014-03-19 15:39:09 +0000 | [diff] [blame] | 1188 | .enable = l2c310_enable, |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 1189 | .fixup = l2c310_fixup, |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 1190 | .save = l2c310_save, |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1191 | .outer_cache = { |
Russell King | f777332 | 2014-03-15 20:51:47 +0000 | [diff] [blame] | 1192 | .inv_range = l2c210_inv_range, |
| 1193 | .clean_range = l2c210_clean_range, |
| 1194 | .flush_range = l2c210_flush_range, |
| 1195 | .flush_all = l2c210_flush_all, |
Russell King | 8ef418c | 2014-03-18 21:40:01 +0000 | [diff] [blame] | 1196 | .disable = l2c310_disable, |
Russell King | f777332 | 2014-03-15 20:51:47 +0000 | [diff] [blame] | 1197 | .sync = l2c210_sync, |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 1198 | .resume = l2c310_resume, |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1199 | }, |
| 1200 | }; |
| 1201 | |
Gregory CLEMENT | b8db6b8 | 2012-11-06 01:58:07 +0100 | [diff] [blame] | 1202 | /* |
Thomas Petazzoni | 98ea2db | 2014-06-13 10:58:38 +0100 | [diff] [blame] | 1203 | * This is a variant of the of_l2c310_data with .sync set to |
| 1204 | * NULL. Outer sync operations are not needed when the system is I/O |
| 1205 | * coherent, and potentially harmful in certain situations (PCIe/PL310 |
| 1206 | * deadlock on Armada 375/38x due to hardware I/O coherency). The |
| 1207 | * other operations are kept because they are infrequent (therefore do |
| 1208 | * not cause the deadlock in practice) and needed for secondary CPU |
| 1209 | * boot and other power management activities. |
| 1210 | */ |
| 1211 | static const struct l2c_init_data of_l2c310_coherent_data __initconst = { |
| 1212 | .type = "L2C-310 Coherent", |
| 1213 | .way_size_0 = SZ_8K, |
| 1214 | .num_lock = 8, |
| 1215 | .of_parse = l2c310_of_parse, |
| 1216 | .enable = l2c310_enable, |
| 1217 | .fixup = l2c310_fixup, |
| 1218 | .save = l2c310_save, |
| 1219 | .outer_cache = { |
| 1220 | .inv_range = l2c210_inv_range, |
| 1221 | .clean_range = l2c210_clean_range, |
| 1222 | .flush_range = l2c210_flush_range, |
| 1223 | .flush_all = l2c210_flush_all, |
| 1224 | .disable = l2c310_disable, |
| 1225 | .resume = l2c310_resume, |
| 1226 | }, |
| 1227 | }; |
| 1228 | |
| 1229 | /* |
Gregory CLEMENT | b8db6b8 | 2012-11-06 01:58:07 +0100 | [diff] [blame] | 1230 | * Note that the end addresses passed to Linux primitives are |
| 1231 | * noninclusive, while the hardware cache range operations use |
| 1232 | * inclusive start and end addresses. |
| 1233 | */ |
| 1234 | static unsigned long calc_range_end(unsigned long start, unsigned long end) |
| 1235 | { |
| 1236 | /* |
| 1237 | * Limit the number of cache lines processed at once, |
| 1238 | * since cache range operations stall the CPU pipeline |
| 1239 | * until completion. |
| 1240 | */ |
| 1241 | if (end > start + MAX_RANGE_SIZE) |
| 1242 | end = start + MAX_RANGE_SIZE; |
| 1243 | |
| 1244 | /* |
| 1245 | * Cache range operations can't straddle a page boundary. |
| 1246 | */ |
| 1247 | if (end > PAGE_ALIGN(start+1)) |
| 1248 | end = PAGE_ALIGN(start+1); |
| 1249 | |
| 1250 | return end; |
| 1251 | } |
| 1252 | |
| 1253 | /* |
| 1254 | * Make sure 'start' and 'end' reference the same page, as L2 is PIPT |
| 1255 | * and range operations only do a TLB lookup on the start address. |
| 1256 | */ |
| 1257 | static void aurora_pa_range(unsigned long start, unsigned long end, |
| 1258 | unsigned long offset) |
| 1259 | { |
| 1260 | unsigned long flags; |
| 1261 | |
| 1262 | raw_spin_lock_irqsave(&l2x0_lock, flags); |
Gregory CLEMENT | 8a3a180 | 2013-01-07 11:28:42 +0100 | [diff] [blame] | 1263 | writel_relaxed(start, l2x0_base + AURORA_RANGE_BASE_ADDR_REG); |
| 1264 | writel_relaxed(end, l2x0_base + offset); |
Gregory CLEMENT | b8db6b8 | 2012-11-06 01:58:07 +0100 | [diff] [blame] | 1265 | raw_spin_unlock_irqrestore(&l2x0_lock, flags); |
| 1266 | |
| 1267 | cache_sync(); |
| 1268 | } |
| 1269 | |
| 1270 | static void aurora_inv_range(unsigned long start, unsigned long end) |
| 1271 | { |
| 1272 | /* |
| 1273 | * round start and end adresses up to cache line size |
| 1274 | */ |
| 1275 | start &= ~(CACHE_LINE_SIZE - 1); |
| 1276 | end = ALIGN(end, CACHE_LINE_SIZE); |
| 1277 | |
| 1278 | /* |
| 1279 | * Invalidate all full cache lines between 'start' and 'end'. |
| 1280 | */ |
| 1281 | while (start < end) { |
| 1282 | unsigned long range_end = calc_range_end(start, end); |
| 1283 | aurora_pa_range(start, range_end - CACHE_LINE_SIZE, |
| 1284 | AURORA_INVAL_RANGE_REG); |
| 1285 | start = range_end; |
| 1286 | } |
| 1287 | } |
| 1288 | |
| 1289 | static void aurora_clean_range(unsigned long start, unsigned long end) |
| 1290 | { |
| 1291 | /* |
| 1292 | * If L2 is forced to WT, the L2 will always be clean and we |
| 1293 | * don't need to do anything here. |
| 1294 | */ |
| 1295 | if (!l2_wt_override) { |
| 1296 | start &= ~(CACHE_LINE_SIZE - 1); |
| 1297 | end = ALIGN(end, CACHE_LINE_SIZE); |
| 1298 | while (start != end) { |
| 1299 | unsigned long range_end = calc_range_end(start, end); |
| 1300 | aurora_pa_range(start, range_end - CACHE_LINE_SIZE, |
| 1301 | AURORA_CLEAN_RANGE_REG); |
| 1302 | start = range_end; |
| 1303 | } |
| 1304 | } |
| 1305 | } |
| 1306 | |
| 1307 | static void aurora_flush_range(unsigned long start, unsigned long end) |
| 1308 | { |
Gregory CLEMENT | 8b827c6 | 2013-01-07 11:27:14 +0100 | [diff] [blame] | 1309 | start &= ~(CACHE_LINE_SIZE - 1); |
| 1310 | end = ALIGN(end, CACHE_LINE_SIZE); |
| 1311 | while (start != end) { |
| 1312 | unsigned long range_end = calc_range_end(start, end); |
| 1313 | /* |
| 1314 | * If L2 is forced to WT, the L2 will always be clean and we |
| 1315 | * just need to invalidate. |
| 1316 | */ |
| 1317 | if (l2_wt_override) |
Gregory CLEMENT | b8db6b8 | 2012-11-06 01:58:07 +0100 | [diff] [blame] | 1318 | aurora_pa_range(start, range_end - CACHE_LINE_SIZE, |
Gregory CLEMENT | 8b827c6 | 2013-01-07 11:27:14 +0100 | [diff] [blame] | 1319 | AURORA_INVAL_RANGE_REG); |
| 1320 | else |
| 1321 | aurora_pa_range(start, range_end - CACHE_LINE_SIZE, |
| 1322 | AURORA_FLUSH_RANGE_REG); |
| 1323 | start = range_end; |
Gregory CLEMENT | b8db6b8 | 2012-11-06 01:58:07 +0100 | [diff] [blame] | 1324 | } |
| 1325 | } |
| 1326 | |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1327 | static void aurora_save(void __iomem *base) |
| 1328 | { |
| 1329 | l2x0_saved_regs.ctrl = readl_relaxed(base + L2X0_CTRL); |
| 1330 | l2x0_saved_regs.aux_ctrl = readl_relaxed(base + L2X0_AUX_CTRL); |
| 1331 | } |
| 1332 | |
| 1333 | static void aurora_resume(void) |
| 1334 | { |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 1335 | void __iomem *base = l2x0_base; |
| 1336 | |
| 1337 | if (!(readl(base + L2X0_CTRL) & L2X0_CTRL_EN)) { |
| 1338 | writel_relaxed(l2x0_saved_regs.aux_ctrl, base + L2X0_AUX_CTRL); |
| 1339 | writel_relaxed(l2x0_saved_regs.ctrl, base + L2X0_CTRL); |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1340 | } |
| 1341 | } |
| 1342 | |
Russell King | 40266d6 | 2014-03-15 16:47:59 +0000 | [diff] [blame] | 1343 | /* |
| 1344 | * For Aurora cache in no outer mode, enable via the CP15 coprocessor |
| 1345 | * broadcasting of cache commands to L2. |
| 1346 | */ |
| 1347 | static void __init aurora_enable_no_outer(void __iomem *base, u32 aux, |
| 1348 | unsigned num_lock) |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1349 | { |
Russell King | 40266d6 | 2014-03-15 16:47:59 +0000 | [diff] [blame] | 1350 | u32 u; |
| 1351 | |
| 1352 | asm volatile("mrc p15, 1, %0, c15, c2, 0" : "=r" (u)); |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1353 | u |= AURORA_CTRL_FW; /* Set the FW bit */ |
Russell King | 40266d6 | 2014-03-15 16:47:59 +0000 | [diff] [blame] | 1354 | asm volatile("mcr p15, 1, %0, c15, c2, 0" : : "r" (u)); |
| 1355 | |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1356 | isb(); |
Russell King | 40266d6 | 2014-03-15 16:47:59 +0000 | [diff] [blame] | 1357 | |
| 1358 | l2c_enable(base, aux, num_lock); |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1359 | } |
| 1360 | |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 1361 | static void __init aurora_fixup(void __iomem *base, u32 cache_id, |
| 1362 | struct outer_cache_fns *fns) |
| 1363 | { |
| 1364 | sync_reg_offset = AURORA_SYNC_REG; |
| 1365 | } |
| 1366 | |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1367 | static void __init aurora_of_parse(const struct device_node *np, |
| 1368 | u32 *aux_val, u32 *aux_mask) |
| 1369 | { |
| 1370 | u32 val = AURORA_ACR_REPLACEMENT_TYPE_SEMIPLRU; |
| 1371 | u32 mask = AURORA_ACR_REPLACEMENT_MASK; |
| 1372 | |
| 1373 | of_property_read_u32(np, "cache-id-part", |
| 1374 | &cache_id_part_number_from_dt); |
| 1375 | |
| 1376 | /* Determine and save the write policy */ |
| 1377 | l2_wt_override = of_property_read_bool(np, "wt-override"); |
| 1378 | |
| 1379 | if (l2_wt_override) { |
| 1380 | val |= AURORA_ACR_FORCE_WRITE_THRO_POLICY; |
| 1381 | mask |= AURORA_ACR_FORCE_WRITE_POLICY_MASK; |
| 1382 | } |
| 1383 | |
| 1384 | *aux_val &= ~mask; |
| 1385 | *aux_val |= val; |
| 1386 | *aux_mask &= ~mask; |
| 1387 | } |
| 1388 | |
| 1389 | static const struct l2c_init_data of_aurora_with_outer_data __initconst = { |
Russell King | 051334b | 2014-03-15 23:04:10 +0000 | [diff] [blame] | 1390 | .type = "Aurora", |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 1391 | .way_size_0 = SZ_4K, |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 1392 | .num_lock = 4, |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1393 | .of_parse = aurora_of_parse, |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 1394 | .enable = l2c_enable, |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 1395 | .fixup = aurora_fixup, |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1396 | .save = aurora_save, |
| 1397 | .outer_cache = { |
| 1398 | .inv_range = aurora_inv_range, |
| 1399 | .clean_range = aurora_clean_range, |
| 1400 | .flush_range = aurora_flush_range, |
| 1401 | .flush_all = l2x0_flush_all, |
| 1402 | .disable = l2x0_disable, |
| 1403 | .sync = l2x0_cache_sync, |
| 1404 | .resume = aurora_resume, |
| 1405 | }, |
| 1406 | }; |
| 1407 | |
| 1408 | static const struct l2c_init_data of_aurora_no_outer_data __initconst = { |
Russell King | 051334b | 2014-03-15 23:04:10 +0000 | [diff] [blame] | 1409 | .type = "Aurora", |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 1410 | .way_size_0 = SZ_4K, |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 1411 | .num_lock = 4, |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1412 | .of_parse = aurora_of_parse, |
Russell King | 40266d6 | 2014-03-15 16:47:59 +0000 | [diff] [blame] | 1413 | .enable = aurora_enable_no_outer, |
Russell King | 75461f5 | 2014-03-15 16:48:07 +0000 | [diff] [blame] | 1414 | .fixup = aurora_fixup, |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1415 | .save = aurora_save, |
| 1416 | .outer_cache = { |
| 1417 | .resume = aurora_resume, |
| 1418 | }, |
| 1419 | }; |
| 1420 | |
Christian Daudt | 3b656fe | 2013-05-09 22:21:01 +0100 | [diff] [blame] | 1421 | /* |
| 1422 | * For certain Broadcom SoCs, depending on the address range, different offsets |
| 1423 | * need to be added to the address before passing it to L2 for |
| 1424 | * invalidation/clean/flush |
| 1425 | * |
| 1426 | * Section Address Range Offset EMI |
| 1427 | * 1 0x00000000 - 0x3FFFFFFF 0x80000000 VC |
| 1428 | * 2 0x40000000 - 0xBFFFFFFF 0x40000000 SYS |
| 1429 | * 3 0xC0000000 - 0xFFFFFFFF 0x80000000 VC |
| 1430 | * |
| 1431 | * When the start and end addresses have crossed two different sections, we |
| 1432 | * need to break the L2 operation into two, each within its own section. |
| 1433 | * For example, if we need to invalidate addresses starts at 0xBFFF0000 and |
| 1434 | * ends at 0xC0001000, we need do invalidate 1) 0xBFFF0000 - 0xBFFFFFFF and 2) |
| 1435 | * 0xC0000000 - 0xC0001000 |
| 1436 | * |
| 1437 | * Note 1: |
| 1438 | * By breaking a single L2 operation into two, we may potentially suffer some |
| 1439 | * performance hit, but keep in mind the cross section case is very rare |
| 1440 | * |
| 1441 | * Note 2: |
| 1442 | * We do not need to handle the case when the start address is in |
| 1443 | * Section 1 and the end address is in Section 3, since it is not a valid use |
| 1444 | * case |
| 1445 | * |
| 1446 | * Note 3: |
| 1447 | * Section 1 in practical terms can no longer be used on rev A2. Because of |
| 1448 | * that the code does not need to handle section 1 at all. |
| 1449 | * |
| 1450 | */ |
| 1451 | #define BCM_SYS_EMI_START_ADDR 0x40000000UL |
| 1452 | #define BCM_VC_EMI_SEC3_START_ADDR 0xC0000000UL |
| 1453 | |
| 1454 | #define BCM_SYS_EMI_OFFSET 0x40000000UL |
| 1455 | #define BCM_VC_EMI_OFFSET 0x80000000UL |
| 1456 | |
| 1457 | static inline int bcm_addr_is_sys_emi(unsigned long addr) |
| 1458 | { |
| 1459 | return (addr >= BCM_SYS_EMI_START_ADDR) && |
| 1460 | (addr < BCM_VC_EMI_SEC3_START_ADDR); |
| 1461 | } |
| 1462 | |
| 1463 | static inline unsigned long bcm_l2_phys_addr(unsigned long addr) |
| 1464 | { |
| 1465 | if (bcm_addr_is_sys_emi(addr)) |
| 1466 | return addr + BCM_SYS_EMI_OFFSET; |
| 1467 | else |
| 1468 | return addr + BCM_VC_EMI_OFFSET; |
| 1469 | } |
| 1470 | |
| 1471 | static void bcm_inv_range(unsigned long start, unsigned long end) |
| 1472 | { |
| 1473 | unsigned long new_start, new_end; |
| 1474 | |
| 1475 | BUG_ON(start < BCM_SYS_EMI_START_ADDR); |
| 1476 | |
| 1477 | if (unlikely(end <= start)) |
| 1478 | return; |
| 1479 | |
| 1480 | new_start = bcm_l2_phys_addr(start); |
| 1481 | new_end = bcm_l2_phys_addr(end); |
| 1482 | |
| 1483 | /* normal case, no cross section between start and end */ |
| 1484 | if (likely(bcm_addr_is_sys_emi(end) || !bcm_addr_is_sys_emi(start))) { |
Russell King | 9081114 | 2014-03-19 19:14:13 +0000 | [diff] [blame] | 1485 | l2c210_inv_range(new_start, new_end); |
Christian Daudt | 3b656fe | 2013-05-09 22:21:01 +0100 | [diff] [blame] | 1486 | return; |
| 1487 | } |
| 1488 | |
| 1489 | /* They cross sections, so it can only be a cross from section |
| 1490 | * 2 to section 3 |
| 1491 | */ |
Russell King | 9081114 | 2014-03-19 19:14:13 +0000 | [diff] [blame] | 1492 | l2c210_inv_range(new_start, |
Christian Daudt | 3b656fe | 2013-05-09 22:21:01 +0100 | [diff] [blame] | 1493 | bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR-1)); |
Russell King | 9081114 | 2014-03-19 19:14:13 +0000 | [diff] [blame] | 1494 | l2c210_inv_range(bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR), |
Christian Daudt | 3b656fe | 2013-05-09 22:21:01 +0100 | [diff] [blame] | 1495 | new_end); |
| 1496 | } |
| 1497 | |
| 1498 | static void bcm_clean_range(unsigned long start, unsigned long end) |
| 1499 | { |
| 1500 | unsigned long new_start, new_end; |
| 1501 | |
| 1502 | BUG_ON(start < BCM_SYS_EMI_START_ADDR); |
| 1503 | |
| 1504 | if (unlikely(end <= start)) |
| 1505 | return; |
| 1506 | |
Christian Daudt | 3b656fe | 2013-05-09 22:21:01 +0100 | [diff] [blame] | 1507 | new_start = bcm_l2_phys_addr(start); |
| 1508 | new_end = bcm_l2_phys_addr(end); |
| 1509 | |
| 1510 | /* normal case, no cross section between start and end */ |
| 1511 | if (likely(bcm_addr_is_sys_emi(end) || !bcm_addr_is_sys_emi(start))) { |
Russell King | 9081114 | 2014-03-19 19:14:13 +0000 | [diff] [blame] | 1512 | l2c210_clean_range(new_start, new_end); |
Christian Daudt | 3b656fe | 2013-05-09 22:21:01 +0100 | [diff] [blame] | 1513 | return; |
| 1514 | } |
| 1515 | |
| 1516 | /* They cross sections, so it can only be a cross from section |
| 1517 | * 2 to section 3 |
| 1518 | */ |
Russell King | 9081114 | 2014-03-19 19:14:13 +0000 | [diff] [blame] | 1519 | l2c210_clean_range(new_start, |
Christian Daudt | 3b656fe | 2013-05-09 22:21:01 +0100 | [diff] [blame] | 1520 | bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR-1)); |
Russell King | 9081114 | 2014-03-19 19:14:13 +0000 | [diff] [blame] | 1521 | l2c210_clean_range(bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR), |
Christian Daudt | 3b656fe | 2013-05-09 22:21:01 +0100 | [diff] [blame] | 1522 | new_end); |
| 1523 | } |
| 1524 | |
| 1525 | static void bcm_flush_range(unsigned long start, unsigned long end) |
| 1526 | { |
| 1527 | unsigned long new_start, new_end; |
| 1528 | |
| 1529 | BUG_ON(start < BCM_SYS_EMI_START_ADDR); |
| 1530 | |
| 1531 | if (unlikely(end <= start)) |
| 1532 | return; |
| 1533 | |
| 1534 | if ((end - start) >= l2x0_size) { |
Russell King | 9081114 | 2014-03-19 19:14:13 +0000 | [diff] [blame] | 1535 | outer_cache.flush_all(); |
Christian Daudt | 3b656fe | 2013-05-09 22:21:01 +0100 | [diff] [blame] | 1536 | return; |
| 1537 | } |
| 1538 | |
| 1539 | new_start = bcm_l2_phys_addr(start); |
| 1540 | new_end = bcm_l2_phys_addr(end); |
| 1541 | |
| 1542 | /* normal case, no cross section between start and end */ |
| 1543 | if (likely(bcm_addr_is_sys_emi(end) || !bcm_addr_is_sys_emi(start))) { |
Russell King | 9081114 | 2014-03-19 19:14:13 +0000 | [diff] [blame] | 1544 | l2c210_flush_range(new_start, new_end); |
Christian Daudt | 3b656fe | 2013-05-09 22:21:01 +0100 | [diff] [blame] | 1545 | return; |
| 1546 | } |
| 1547 | |
| 1548 | /* They cross sections, so it can only be a cross from section |
| 1549 | * 2 to section 3 |
| 1550 | */ |
Russell King | 9081114 | 2014-03-19 19:14:13 +0000 | [diff] [blame] | 1551 | l2c210_flush_range(new_start, |
Christian Daudt | 3b656fe | 2013-05-09 22:21:01 +0100 | [diff] [blame] | 1552 | bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR-1)); |
Russell King | 9081114 | 2014-03-19 19:14:13 +0000 | [diff] [blame] | 1553 | l2c210_flush_range(bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR), |
Christian Daudt | 3b656fe | 2013-05-09 22:21:01 +0100 | [diff] [blame] | 1554 | new_end); |
| 1555 | } |
| 1556 | |
Russell King | 9081114 | 2014-03-19 19:14:13 +0000 | [diff] [blame] | 1557 | /* Broadcom L2C-310 start from ARMs R3P2 or later, and require no fixups */ |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1558 | static const struct l2c_init_data of_bcm_l2x0_data __initconst = { |
Russell King | 051334b | 2014-03-15 23:04:10 +0000 | [diff] [blame] | 1559 | .type = "BCM-L2C-310", |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 1560 | .way_size_0 = SZ_8K, |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 1561 | .num_lock = 8, |
Russell King | f777332 | 2014-03-15 20:51:47 +0000 | [diff] [blame] | 1562 | .of_parse = l2c310_of_parse, |
Russell King | 4374d64 | 2014-03-19 15:39:09 +0000 | [diff] [blame] | 1563 | .enable = l2c310_enable, |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 1564 | .save = l2c310_save, |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1565 | .outer_cache = { |
| 1566 | .inv_range = bcm_inv_range, |
| 1567 | .clean_range = bcm_clean_range, |
| 1568 | .flush_range = bcm_flush_range, |
Russell King | f777332 | 2014-03-15 20:51:47 +0000 | [diff] [blame] | 1569 | .flush_all = l2c210_flush_all, |
Russell King | 8ef418c | 2014-03-18 21:40:01 +0000 | [diff] [blame] | 1570 | .disable = l2c310_disable, |
Russell King | f777332 | 2014-03-15 20:51:47 +0000 | [diff] [blame] | 1571 | .sync = l2c210_sync, |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 1572 | .resume = l2c310_resume, |
Russell King | da3627f | 2014-03-15 16:48:06 +0000 | [diff] [blame] | 1573 | }, |
| 1574 | }; |
Gregory CLEMENT | b8db6b8 | 2012-11-06 01:58:07 +0100 | [diff] [blame] | 1575 | |
Russell King | 9846dfc | 2014-03-15 16:47:55 +0000 | [diff] [blame] | 1576 | static void __init tauros3_save(void __iomem *base) |
Sebastian Hesselbarth | e68f31f | 2013-12-13 16:42:19 +0100 | [diff] [blame] | 1577 | { |
Russell King | ddf7d79 | 2014-03-28 14:18:35 +0000 | [diff] [blame] | 1578 | l2c_save(base); |
| 1579 | |
Sebastian Hesselbarth | e68f31f | 2013-12-13 16:42:19 +0100 | [diff] [blame] | 1580 | l2x0_saved_regs.aux2_ctrl = |
Russell King | 9846dfc | 2014-03-15 16:47:55 +0000 | [diff] [blame] | 1581 | readl_relaxed(base + TAUROS3_AUX2_CTRL); |
Sebastian Hesselbarth | e68f31f | 2013-12-13 16:42:19 +0100 | [diff] [blame] | 1582 | l2x0_saved_regs.prefetch_ctrl = |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 1583 | readl_relaxed(base + L310_PREFETCH_CTRL); |
Sebastian Hesselbarth | e68f31f | 2013-12-13 16:42:19 +0100 | [diff] [blame] | 1584 | } |
| 1585 | |
Sebastian Hesselbarth | e68f31f | 2013-12-13 16:42:19 +0100 | [diff] [blame] | 1586 | static void tauros3_resume(void) |
| 1587 | { |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 1588 | void __iomem *base = l2x0_base; |
Sebastian Hesselbarth | e68f31f | 2013-12-13 16:42:19 +0100 | [diff] [blame] | 1589 | |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 1590 | if (!(readl_relaxed(base + L2X0_CTRL) & L2X0_CTRL_EN)) { |
| 1591 | writel_relaxed(l2x0_saved_regs.aux2_ctrl, |
| 1592 | base + TAUROS3_AUX2_CTRL); |
| 1593 | writel_relaxed(l2x0_saved_regs.prefetch_ctrl, |
Russell King | 1a5a954 | 2014-03-16 20:52:25 +0000 | [diff] [blame] | 1594 | base + L310_PREFETCH_CTRL); |
Russell King | 09a5d18 | 2014-03-15 16:48:13 +0000 | [diff] [blame] | 1595 | |
| 1596 | l2c_enable(base, l2x0_saved_regs.aux_ctrl, 8); |
| 1597 | } |
Sebastian Hesselbarth | e68f31f | 2013-12-13 16:42:19 +0100 | [diff] [blame] | 1598 | } |
| 1599 | |
Russell King | c02642b | 2014-03-15 16:47:54 +0000 | [diff] [blame] | 1600 | static const struct l2c_init_data of_tauros3_data __initconst = { |
Russell King | 051334b | 2014-03-15 23:04:10 +0000 | [diff] [blame] | 1601 | .type = "Tauros3", |
Russell King | 0493aef | 2014-03-15 23:26:24 +0000 | [diff] [blame] | 1602 | .way_size_0 = SZ_8K, |
Russell King | 3b8bad5 | 2014-03-15 16:47:57 +0000 | [diff] [blame] | 1603 | .num_lock = 8, |
| 1604 | .enable = l2c_enable, |
Sebastian Hesselbarth | e68f31f | 2013-12-13 16:42:19 +0100 | [diff] [blame] | 1605 | .save = tauros3_save, |
| 1606 | /* Tauros3 broadcasts L1 cache operations to L2 */ |
| 1607 | .outer_cache = { |
| 1608 | .resume = tauros3_resume, |
| 1609 | }, |
| 1610 | }; |
| 1611 | |
Russell King | a65bb92 | 2014-03-15 16:48:01 +0000 | [diff] [blame] | 1612 | #define L2C_ID(name, fns) { .compatible = name, .data = (void *)&fns } |
Rob Herring | 8c36926 | 2011-08-03 18:12:05 +0100 | [diff] [blame] | 1613 | static const struct of_device_id l2x0_ids[] __initconst = { |
Russell King | 6a28cf5 | 2014-03-15 18:55:53 +0000 | [diff] [blame] | 1614 | L2C_ID("arm,l210-cache", of_l2c210_data), |
Russell King | 733c6bb | 2014-03-15 21:29:28 +0000 | [diff] [blame] | 1615 | L2C_ID("arm,l220-cache", of_l2c220_data), |
Russell King | f777332 | 2014-03-15 20:51:47 +0000 | [diff] [blame] | 1616 | L2C_ID("arm,pl310-cache", of_l2c310_data), |
Russell King | c02642b | 2014-03-15 16:47:54 +0000 | [diff] [blame] | 1617 | L2C_ID("brcm,bcm11351-a2-pl310-cache", of_bcm_l2x0_data), |
| 1618 | L2C_ID("marvell,aurora-outer-cache", of_aurora_with_outer_data), |
| 1619 | L2C_ID("marvell,aurora-system-cache", of_aurora_no_outer_data), |
| 1620 | L2C_ID("marvell,tauros3-cache", of_tauros3_data), |
Russell King | a65bb92 | 2014-03-15 16:48:01 +0000 | [diff] [blame] | 1621 | /* Deprecated IDs */ |
Russell King | c02642b | 2014-03-15 16:47:54 +0000 | [diff] [blame] | 1622 | L2C_ID("bcm,bcm11351-a2-pl310-cache", of_bcm_l2x0_data), |
Rob Herring | 8c36926 | 2011-08-03 18:12:05 +0100 | [diff] [blame] | 1623 | {} |
| 1624 | }; |
| 1625 | |
Russell King | 3e175ca | 2011-09-18 11:27:30 +0100 | [diff] [blame] | 1626 | int __init l2x0_of_init(u32 aux_val, u32 aux_mask) |
Rob Herring | 8c36926 | 2011-08-03 18:12:05 +0100 | [diff] [blame] | 1627 | { |
Russell King | c02642b | 2014-03-15 16:47:54 +0000 | [diff] [blame] | 1628 | const struct l2c_init_data *data; |
Rob Herring | 8c36926 | 2011-08-03 18:12:05 +0100 | [diff] [blame] | 1629 | struct device_node *np; |
Barry Song | 91c2ebb | 2011-09-30 14:43:12 +0100 | [diff] [blame] | 1630 | struct resource res; |
Russell King | 560be61 | 2014-03-17 17:02:56 +0000 | [diff] [blame] | 1631 | u32 cache_id, old_aux; |
Rob Herring | 8c36926 | 2011-08-03 18:12:05 +0100 | [diff] [blame] | 1632 | |
| 1633 | np = of_find_matching_node(NULL, l2x0_ids); |
| 1634 | if (!np) |
| 1635 | return -ENODEV; |
Barry Song | 91c2ebb | 2011-09-30 14:43:12 +0100 | [diff] [blame] | 1636 | |
| 1637 | if (of_address_to_resource(np, 0, &res)) |
| 1638 | return -ENODEV; |
| 1639 | |
| 1640 | l2x0_base = ioremap(res.start, resource_size(&res)); |
Rob Herring | 8c36926 | 2011-08-03 18:12:05 +0100 | [diff] [blame] | 1641 | if (!l2x0_base) |
| 1642 | return -ENOMEM; |
| 1643 | |
Barry Song | 91c2ebb | 2011-09-30 14:43:12 +0100 | [diff] [blame] | 1644 | l2x0_saved_regs.phy_base = res.start; |
| 1645 | |
| 1646 | data = of_match_node(l2x0_ids, np)->data; |
| 1647 | |
Thomas Petazzoni | 98ea2db | 2014-06-13 10:58:38 +0100 | [diff] [blame] | 1648 | if (of_device_is_compatible(np, "arm,pl310-cache") && |
| 1649 | of_property_read_bool(np, "arm,io-coherent")) |
| 1650 | data = &of_l2c310_coherent_data; |
| 1651 | |
Russell King | 560be61 | 2014-03-17 17:02:56 +0000 | [diff] [blame] | 1652 | old_aux = readl_relaxed(l2x0_base + L2X0_AUX_CTRL); |
| 1653 | if (old_aux != ((old_aux & aux_mask) | aux_val)) { |
| 1654 | pr_warn("L2C: platform modifies aux control register: 0x%08x -> 0x%08x\n", |
| 1655 | old_aux, (old_aux & aux_mask) | aux_val); |
| 1656 | } else if (aux_mask != ~0U && aux_val != 0) { |
| 1657 | pr_alert("L2C: platform provided aux values match the hardware, so have no effect. Please remove them.\n"); |
| 1658 | } |
| 1659 | |
Russell King | d9d1f3e | 2014-03-17 12:59:08 +0000 | [diff] [blame] | 1660 | /* All L2 caches are unified, so this property should be specified */ |
| 1661 | if (!of_property_read_bool(np, "cache-unified")) |
| 1662 | pr_err("L2C: device tree omits to specify unified cache\n"); |
| 1663 | |
Rob Herring | 8c36926 | 2011-08-03 18:12:05 +0100 | [diff] [blame] | 1664 | /* L2 configuration can only be changed if the cache is disabled */ |
Russell King | 40266d6 | 2014-03-15 16:47:59 +0000 | [diff] [blame] | 1665 | if (!(readl_relaxed(l2x0_base + L2X0_CTRL) & L2X0_CTRL_EN)) |
Russell King | c02642b | 2014-03-15 16:47:54 +0000 | [diff] [blame] | 1666 | if (data->of_parse) |
| 1667 | data->of_parse(np, &aux_val, &aux_mask); |
Gregory CLEMENT | b8db6b8 | 2012-11-06 01:58:07 +0100 | [diff] [blame] | 1668 | |
Russell King | 96054b0 | 2014-03-15 16:47:52 +0000 | [diff] [blame] | 1669 | if (cache_id_part_number_from_dt) |
| 1670 | cache_id = cache_id_part_number_from_dt; |
| 1671 | else |
| 1672 | cache_id = readl_relaxed(l2x0_base + L2X0_CACHE_ID); |
| 1673 | |
| 1674 | __l2c_init(data, aux_val, aux_mask, cache_id); |
Gregory CLEMENT | 6248d06 | 2012-10-01 10:56:42 +0100 | [diff] [blame] | 1675 | |
Rob Herring | 8c36926 | 2011-08-03 18:12:05 +0100 | [diff] [blame] | 1676 | return 0; |
| 1677 | } |
| 1678 | #endif |