blob: 55f9d6e0cc88b87feaa41d443f521ce9bb1aef52 [file] [log] [blame]
Catalin Marinas382266a2007-02-05 14:48:19 +01001/*
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 King8ef418c2014-03-18 21:40:01 +000019#include <linux/cpu.h>
Rob Herring8c369262011-08-03 18:12:05 +010020#include <linux/err.h>
Catalin Marinas382266a2007-02-05 14:48:19 +010021#include <linux/init.h>
Russell King8ef418c2014-03-18 21:40:01 +000022#include <linux/smp.h>
Catalin Marinas07620972007-07-20 11:42:40 +010023#include <linux/spinlock.h>
Linus Walleijf3354ab2014-09-26 09:01:58 +010024#include <linux/log2.h>
Russell Kingfced80c2008-09-06 12:10:45 +010025#include <linux/io.h>
Rob Herring8c369262011-08-03 18:12:05 +010026#include <linux/of.h>
27#include <linux/of_address.h>
Catalin Marinas382266a2007-02-05 14:48:19 +010028
29#include <asm/cacheflush.h>
Russell King8ef418c2014-03-18 21:40:01 +000030#include <asm/cp15.h>
Russell King4374d642014-03-19 15:39:09 +000031#include <asm/cputype.h>
Catalin Marinas382266a2007-02-05 14:48:19 +010032#include <asm/hardware/cache-l2x0.h>
Sebastian Hesselbarthe68f31f2013-12-13 16:42:19 +010033#include "cache-tauros3.h"
Gregory CLEMENTb8db6b82012-11-06 01:58:07 +010034#include "cache-aurora-l2.h"
Catalin Marinas382266a2007-02-05 14:48:19 +010035
Russell Kingc02642b2014-03-15 16:47:54 +000036struct l2c_init_data {
Russell King051334b2014-03-15 23:04:10 +000037 const char *type;
Russell King0493aef2014-03-15 23:26:24 +000038 unsigned way_size_0;
Russell King3b8bad52014-03-15 16:47:57 +000039 unsigned num_lock;
Russell Kingc02642b2014-03-15 16:47:54 +000040 void (*of_parse)(const struct device_node *, u32 *, u32 *);
Russell King3b8bad52014-03-15 16:47:57 +000041 void (*enable)(void __iomem *, u32, unsigned);
Russell King75461f52014-03-15 16:48:07 +000042 void (*fixup)(void __iomem *, u32, struct outer_cache_fns *);
Russell King9846dfc2014-03-15 16:47:55 +000043 void (*save)(void __iomem *);
Russell Kingc02642b2014-03-15 16:47:54 +000044 struct outer_cache_fns outer_cache;
45};
46
Catalin Marinas382266a2007-02-05 14:48:19 +010047#define CACHE_LINE_SIZE 32
48
49static void __iomem *l2x0_base;
Thomas Gleixnerbd31b852009-07-03 08:44:46 -050050static DEFINE_RAW_SPINLOCK(l2x0_lock);
Russell King3e175ca2011-09-18 11:27:30 +010051static u32 l2x0_way_mask; /* Bitmask of active ways */
52static u32 l2x0_size;
Will Deaconf154fe92012-04-20 17:21:08 +010053static unsigned long sync_reg_offset = L2X0_CACHE_SYNC;
Catalin Marinas382266a2007-02-05 14:48:19 +010054
Barry Song91c2ebb2011-09-30 14:43:12 +010055struct l2x0_regs l2x0_saved_regs;
56
Russell King37abcdb2014-03-15 16:47:50 +000057/*
58 * Common code for all cache controllers.
59 */
Russell King83841fe2014-03-15 16:48:14 +000060static inline void l2c_wait_mask(void __iomem *reg, unsigned long mask)
Catalin Marinas382266a2007-02-05 14:48:19 +010061{
Catalin Marinas9a6655e2010-08-31 13:05:22 +010062 /* wait for cache operation by line or way to complete */
Catalin Marinas6775a552010-07-28 22:01:25 +010063 while (readl_relaxed(reg) & mask)
Barry Song1caf3092011-09-09 10:30:34 +010064 cpu_relax();
Catalin Marinas382266a2007-02-05 14:48:19 +010065}
66
Russell King2b2a87a2014-03-16 17:19:21 +000067/*
Russell King8abd2592014-03-16 17:38:08 +000068 * By default, we write directly to secure registers. Platforms must
69 * override this if they are running non-secure.
70 */
71static 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 King2b2a87a2014-03-16 17:19:21 +000082 * 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 */
86static inline void l2c_set_debug(void __iomem *base, unsigned long val)
87{
Russell King678ea282014-03-16 19:38:25 +000088 l2c_write_sec(val, base, L2X0_DEBUG_CTRL);
Russell King2b2a87a2014-03-16 17:19:21 +000089}
90
Russell Kingdf5dd4c2014-03-15 16:47:56 +000091static void __l2c_op_way(void __iomem *reg)
92{
93 writel_relaxed(l2x0_way_mask, reg);
Russell King83841fe2014-03-15 16:48:14 +000094 l2c_wait_mask(reg, l2x0_way_mask);
Russell Kingdf5dd4c2014-03-15 16:47:56 +000095}
96
Russell King37abcdb2014-03-15 16:47:50 +000097static 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 King3b8bad52014-03-15 16:47:57 +0000109/*
110 * Enable the L2 cache controller. This function must only be
111 * called when the cache controller is known to be disabled.
112 */
113static void l2c_enable(void __iomem *base, u32 aux, unsigned num_lock)
114{
115 unsigned long flags;
116
Russell King8abd2592014-03-16 17:38:08 +0000117 l2c_write_sec(aux, base, L2X0_AUX_CTRL);
Russell King3b8bad52014-03-15 16:47:57 +0000118
Russell King17f3f992014-03-17 17:15:02 +0000119 l2c_unlock(base, num_lock);
120
Russell King3b8bad52014-03-15 16:47:57 +0000121 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 King8abd2592014-03-16 17:38:08 +0000127 l2c_write_sec(L2X0_CTRL_EN, base, L2X0_CTRL);
Russell King3b8bad52014-03-15 16:47:57 +0000128}
129
130static void l2c_disable(void)
131{
132 void __iomem *base = l2x0_base;
133
134 outer_cache.flush_all();
Russell King8abd2592014-03-16 17:38:08 +0000135 l2c_write_sec(0, base, L2X0_CTRL);
Russell King3b8bad52014-03-15 16:47:57 +0000136 dsb(st);
137}
138
Catalin Marinas9a6655e2010-08-31 13:05:22 +0100139#ifdef CONFIG_CACHE_PL310
140static inline void cache_wait(void __iomem *reg, unsigned long mask)
141{
142 /* cache operations by line are atomic on PL310 */
143}
144#else
Russell King83841fe2014-03-15 16:48:14 +0000145#define cache_wait l2c_wait_mask
Catalin Marinas9a6655e2010-08-31 13:05:22 +0100146#endif
147
Catalin Marinas382266a2007-02-05 14:48:19 +0100148static inline void cache_sync(void)
149{
Russell King3d107432009-11-19 11:41:09 +0000150 void __iomem *base = l2x0_base;
Srinidhi Kasagar885028e2011-02-17 07:03:51 +0100151
Will Deaconf154fe92012-04-20 17:21:08 +0100152 writel_relaxed(0, base + sync_reg_offset);
Russell King3d107432009-11-19 11:41:09 +0000153 cache_wait(base + L2X0_CACHE_SYNC, 1);
Catalin Marinas382266a2007-02-05 14:48:19 +0100154}
155
Santosh Shilimkar2839e062011-03-08 06:59:54 +0100156#if defined(CONFIG_PL310_ERRATA_588369) || defined(CONFIG_PL310_ERRATA_727915)
Will Deaconab4d5362012-04-20 17:22:11 +0100157static inline void debug_writel(unsigned long val)
158{
Russell King678ea282014-03-16 19:38:25 +0000159 l2c_set_debug(l2x0_base, val);
Will Deaconab4d5362012-04-20 17:22:11 +0100160}
Santosh Shilimkar2839e062011-03-08 06:59:54 +0100161#else
162/* Optimised out for non-errata case */
163static inline void debug_writel(unsigned long val)
164{
Santosh Shilimkar9e655822010-02-04 19:42:42 +0100165}
Santosh Shilimkar2839e062011-03-08 06:59:54 +0100166#endif
167
Catalin Marinas23107c52010-03-24 16:48:53 +0100168static void l2x0_cache_sync(void)
169{
170 unsigned long flags;
171
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500172 raw_spin_lock_irqsave(&l2x0_lock, flags);
Catalin Marinas23107c52010-03-24 16:48:53 +0100173 cache_sync();
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500174 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
Catalin Marinas23107c52010-03-24 16:48:53 +0100175}
176
Will Deacon38a89142011-07-01 14:36:19 +0100177static void __l2x0_flush_all(void)
178{
179 debug_writel(0x03);
Russell Kingdf5dd4c2014-03-15 16:47:56 +0000180 __l2c_op_way(l2x0_base + L2X0_CLEAN_INV_WAY);
Will Deacon38a89142011-07-01 14:36:19 +0100181 cache_sync();
182 debug_writel(0x00);
183}
184
Thomas Gleixner2fd86582010-07-31 21:05:24 +0530185static void l2x0_flush_all(void)
186{
187 unsigned long flags;
188
189 /* clean all ways */
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500190 raw_spin_lock_irqsave(&l2x0_lock, flags);
Will Deacon38a89142011-07-01 14:36:19 +0100191 __l2x0_flush_all();
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500192 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
Thomas Gleixner2fd86582010-07-31 21:05:24 +0530193}
194
Thomas Gleixner2fd86582010-07-31 21:05:24 +0530195static void l2x0_disable(void)
196{
197 unsigned long flags;
198
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500199 raw_spin_lock_irqsave(&l2x0_lock, flags);
Will Deacon38a89142011-07-01 14:36:19 +0100200 __l2x0_flush_all();
Russell King8abd2592014-03-16 17:38:08 +0000201 l2c_write_sec(0, l2x0_base, L2X0_CTRL);
Will Deacon9781aa82013-06-12 09:59:59 +0100202 dsb(st);
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500203 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
Thomas Gleixner2fd86582010-07-31 21:05:24 +0530204}
205
Russell Kingddf7d792014-03-28 14:18:35 +0000206static void l2c_save(void __iomem *base)
207{
208 l2x0_saved_regs.aux_ctrl = readl_relaxed(l2x0_base + L2X0_AUX_CTRL);
209}
210
Russell King75461f52014-03-15 16:48:07 +0000211/*
Russell King6a28cf52014-03-15 18:55:53 +0000212 * 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 */
225static void __l2c210_cache_sync(void __iomem *base)
226{
227 writel_relaxed(0, base + sync_reg_offset);
228}
229
230static 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
239static 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
258static 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
267static 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
276static 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
286static void l2c210_sync(void)
287{
288 __l2c210_cache_sync(l2x0_base);
289}
290
291static 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
299static const struct l2c_init_data l2c210_data __initconst = {
Russell King051334b2014-03-15 23:04:10 +0000300 .type = "L2C-210",
Russell King0493aef2014-03-15 23:26:24 +0000301 .way_size_0 = SZ_8K,
Russell King6a28cf52014-03-15 18:55:53 +0000302 .num_lock = 1,
303 .enable = l2c_enable,
Russell Kingddf7d792014-03-28 14:18:35 +0000304 .save = l2c_save,
Russell King6a28cf52014-03-15 18:55:53 +0000305 .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 King733c6bb2014-03-15 21:29:28 +0000317 * 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 */
326static 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
332static 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
342static 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
365static 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
392static 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
411static 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
430static void l2c220_flush_all(void)
431{
432 l2c220_op_way(l2x0_base, L2X0_CLEAN_INV_WAY);
433}
434
435static 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 Kinga4b041a2014-04-11 00:48:25 +0100444static 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 King733c6bb2014-03-15 21:29:28 +0000456static const struct l2c_init_data l2c220_data = {
Russell King051334b2014-03-15 23:04:10 +0000457 .type = "L2C-220",
Russell King0493aef2014-03-15 23:26:24 +0000458 .way_size_0 = SZ_8K,
Russell King733c6bb2014-03-15 21:29:28 +0000459 .num_lock = 1,
Russell Kinga4b041a2014-04-11 00:48:25 +0100460 .enable = l2c220_enable,
Russell Kingddf7d792014-03-28 14:18:35 +0000461 .save = l2c_save,
Russell King733c6bb2014-03-15 21:29:28 +0000462 .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 King75461f52014-03-15 16:48:07 +0000474 * L2C-310 specific code.
475 *
Russell Kingf7773322014-03-15 20:51:47 +0000476 * 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 King75461f52014-03-15 16:48:07 +0000488 * 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 Kinga8875a02014-03-16 20:02:06 +0000503 * 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 King75461f52014-03-15 16:48:07 +0000508 * 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 Kingebd4219f2014-03-15 19:08:11 +0000517static 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
549static 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 King99ca17722014-03-15 16:48:18 +0000576static 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 King09a5d182014-03-15 16:48:13 +0000589static void __init l2c310_save(void __iomem *base)
Russell Kingb98556f22014-03-15 16:48:11 +0000590{
Russell King09a5d182014-03-15 16:48:13 +0000591 unsigned revision;
Russell Kingb98556f22014-03-15 16:48:11 +0000592
Russell Kingddf7d792014-03-28 14:18:35 +0000593 l2c_save(base);
594
Russell Kingb98556f22014-03-15 16:48:11 +0000595 l2x0_saved_regs.tag_latency = readl_relaxed(base +
Russell King1a5a9542014-03-16 20:52:25 +0000596 L310_TAG_LATENCY_CTRL);
Russell Kingb98556f22014-03-15 16:48:11 +0000597 l2x0_saved_regs.data_latency = readl_relaxed(base +
Russell King1a5a9542014-03-16 20:52:25 +0000598 L310_DATA_LATENCY_CTRL);
Russell Kingb98556f22014-03-15 16:48:11 +0000599 l2x0_saved_regs.filter_end = readl_relaxed(base +
Russell King1a5a9542014-03-16 20:52:25 +0000600 L310_ADDR_FILTER_END);
Russell Kingb98556f22014-03-15 16:48:11 +0000601 l2x0_saved_regs.filter_start = readl_relaxed(base +
Russell King1a5a9542014-03-16 20:52:25 +0000602 L310_ADDR_FILTER_START);
Russell Kingb98556f22014-03-15 16:48:11 +0000603
Russell King09a5d182014-03-15 16:48:13 +0000604 revision = readl_relaxed(base + L2X0_CACHE_ID) &
Russell Kingb98556f22014-03-15 16:48:11 +0000605 L2X0_CACHE_ID_RTL_MASK;
606
Russell King09a5d182014-03-15 16:48:13 +0000607 /* 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 King1a5a9542014-03-16 20:52:25 +0000610 L310_PREFETCH_CTRL);
Russell Kingb98556f22014-03-15 16:48:11 +0000611
Russell King09a5d182014-03-15 16:48:13 +0000612 /* 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 King1a5a9542014-03-16 20:52:25 +0000615 L310_POWER_CTRL);
Russell King09a5d182014-03-15 16:48:13 +0000616}
617
618static 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 King1a5a9542014-03-16 20:52:25 +0000627 base + L310_TAG_LATENCY_CTRL);
Russell King09a5d182014-03-15 16:48:13 +0000628 writel_relaxed(l2x0_saved_regs.data_latency,
Russell King1a5a9542014-03-16 20:52:25 +0000629 base + L310_DATA_LATENCY_CTRL);
Russell King09a5d182014-03-15 16:48:13 +0000630 writel_relaxed(l2x0_saved_regs.filter_end,
Russell King1a5a9542014-03-16 20:52:25 +0000631 base + L310_ADDR_FILTER_END);
Russell King09a5d182014-03-15 16:48:13 +0000632 writel_relaxed(l2x0_saved_regs.filter_start,
Russell King1a5a9542014-03-16 20:52:25 +0000633 base + L310_ADDR_FILTER_START);
Russell King09a5d182014-03-15 16:48:13 +0000634
635 revision = readl_relaxed(base + L2X0_CACHE_ID) &
636 L2X0_CACHE_ID_RTL_MASK;
637
638 if (revision >= L310_CACHE_ID_RTL_R2P0)
Russell King8abd2592014-03-16 17:38:08 +0000639 l2c_write_sec(l2x0_saved_regs.prefetch_ctrl, base,
Russell King1a5a9542014-03-16 20:52:25 +0000640 L310_PREFETCH_CTRL);
Russell King09a5d182014-03-15 16:48:13 +0000641 if (revision >= L310_CACHE_ID_RTL_R3P0)
Russell King8abd2592014-03-16 17:38:08 +0000642 l2c_write_sec(l2x0_saved_regs.pwr_ctrl, base,
Russell King1a5a9542014-03-16 20:52:25 +0000643 L310_POWER_CTRL);
Russell King09a5d182014-03-15 16:48:13 +0000644
645 l2c_enable(base, l2x0_saved_regs.aux_ctrl, 8);
Russell King8ef418c2014-03-18 21:40:01 +0000646
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 King09a5d182014-03-15 16:48:13 +0000650 }
Russell Kingb98556f22014-03-15 16:48:11 +0000651}
652
Russell King8ef418c2014-03-18 21:40:01 +0000653static 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 King4374d642014-03-19 15:39:09 +0000666static void __init l2c310_enable(void __iomem *base, u32 aux, unsigned num_lock)
667{
Russell King9a2c33a2014-07-07 13:53:03 +0100668 unsigned rev = readl_relaxed(base + L2X0_CACHE_ID) & L2X0_CACHE_ID_RTL_MASK;
Russell Kingaf040ff2014-06-24 19:43:15 +0100669 bool cortex_a9 = read_cpuid_part() == ARM_CPU_PART_CORTEX_A9;
Russell King4374d642014-03-19 15:39:09 +0000670
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 King8ef418c2014-03-18 21:40:01 +0000681 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 King3a43b582014-03-28 14:22:04 +0000711 /* 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 Kinga4b041a2014-04-11 00:48:25 +0100723 /*
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 King4374d642014-03-19 15:39:09 +0000730 l2c_enable(base, aux, num_lock);
Russell King8ef418c2014-03-18 21:40:01 +0000731
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 King4374d642014-03-19 15:39:09 +0000736}
737
Russell King75461f52014-03-15 16:48:07 +0000738static 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 Kinga8875a02014-03-16 20:02:06 +0000742 const char *errata[8];
Russell King75461f52014-03-15 16:48:07 +0000743 unsigned n = 0;
744
Russell Kingebd4219f2014-03-15 19:08:11 +0000745 if (IS_ENABLED(CONFIG_PL310_ERRATA_588369) &&
746 revision < L310_CACHE_ID_RTL_R2P0 &&
747 /* For bcm compatibility */
Russell Kingf7773322014-03-15 20:51:47 +0000748 fns->inv_range == l2c210_inv_range) {
Russell Kingebd4219f2014-03-15 19:08:11 +0000749 fns->inv_range = l2c310_inv_range_erratum;
750 fns->flush_range = l2c310_flush_range_erratum;
751 errata[n++] = "588369";
752 }
753
Russell King99ca17722014-03-15 16:48:18 +0000754 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 Kinga8875a02014-03-16 20:02:06 +0000761 if (revision >= L310_CACHE_ID_RTL_R3P0 &&
762 revision < L310_CACHE_ID_RTL_R3P2) {
Russell King1a5a9542014-03-16 20:52:25 +0000763 u32 val = readl_relaxed(base + L310_PREFETCH_CTRL);
Russell Kinga8875a02014-03-16 20:02:06 +0000764 /* 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 King1a5a9542014-03-16 20:52:25 +0000767 l2c_write_sec(val, base, L310_PREFETCH_CTRL);
Russell Kinga8875a02014-03-16 20:02:06 +0000768 errata[n++] = "752271";
769 }
770 }
771
Russell King75461f52014-03-15 16:48:07 +0000772 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 King8ef418c2014-03-18 21:40:01 +0000791static 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 King75461f52014-03-15 16:48:07 +0000803static const struct l2c_init_data l2c310_init_fns __initconst = {
Russell King051334b2014-03-15 23:04:10 +0000804 .type = "L2C-310",
Russell King0493aef2014-03-15 23:26:24 +0000805 .way_size_0 = SZ_8K,
Russell King75461f52014-03-15 16:48:07 +0000806 .num_lock = 8,
Russell King4374d642014-03-19 15:39:09 +0000807 .enable = l2c310_enable,
Russell King75461f52014-03-15 16:48:07 +0000808 .fixup = l2c310_fixup,
Russell King09a5d182014-03-15 16:48:13 +0000809 .save = l2c310_save,
Russell King75461f52014-03-15 16:48:07 +0000810 .outer_cache = {
Russell Kingf7773322014-03-15 20:51:47 +0000811 .inv_range = l2c210_inv_range,
812 .clean_range = l2c210_clean_range,
813 .flush_range = l2c210_flush_range,
814 .flush_all = l2c210_flush_all,
Russell King8ef418c2014-03-18 21:40:01 +0000815 .disable = l2c310_disable,
Russell Kingf7773322014-03-15 20:51:47 +0000816 .sync = l2c210_sync,
Russell King09a5d182014-03-15 16:48:13 +0000817 .resume = l2c310_resume,
Russell King75461f52014-03-15 16:48:07 +0000818 },
819};
820
Russell King96054b02014-03-15 16:47:52 +0000821static void __init __l2c_init(const struct l2c_init_data *data,
822 u32 aux_val, u32 aux_mask, u32 cache_id)
Catalin Marinas382266a2007-02-05 14:48:19 +0100823{
Russell King75461f52014-03-15 16:48:07 +0000824 struct outer_cache_fns fns;
Russell King0493aef2014-03-15 23:26:24 +0000825 unsigned way_size_bits, ways;
Russell King560be612014-03-17 17:02:56 +0000826 u32 aux, old_aux;
Catalin Marinas382266a2007-02-05 14:48:19 +0100827
Russell King560be612014-03-17 17:02:56 +0000828 /*
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 McMullan64039be2010-05-05 18:59:37 +0100835
Russell King560be612014-03-17 17:02:56 +0000836 old_aux = aux = readl_relaxed(l2x0_base + L2X0_AUX_CTRL);
Sascha Hauer4082cfa2010-07-08 08:36:21 +0100837 aux &= aux_mask;
838 aux |= aux_val;
839
Russell King560be612014-03-17 17:02:56 +0000840 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 McMullan64039be2010-05-05 18:59:37 +0100844 /* Determine the number of ways */
Rob Herring6e7acee2013-03-25 17:02:48 +0100845 switch (cache_id & L2X0_CACHE_ID_PART_MASK) {
Jason McMullan64039be2010-05-05 18:59:37 +0100846 case L2X0_CACHE_ID_PART_L310:
Russell King314e47b2014-03-19 14:07:12 +0000847 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 McMullan64039be2010-05-05 18:59:37 +0100849 if (aux & (1 << 16))
850 ways = 16;
851 else
852 ways = 8;
Jason McMullan64039be2010-05-05 18:59:37 +0100853 break;
Russell King75461f52014-03-15 16:48:07 +0000854
Jason McMullan64039be2010-05-05 18:59:37 +0100855 case L2X0_CACHE_ID_PART_L210:
Russell King5f47c382014-03-15 23:07:07 +0000856 case L2X0_CACHE_ID_PART_L220:
Jason McMullan64039be2010-05-05 18:59:37 +0100857 ways = (aux >> 13) & 0xf;
Jason McMullan64039be2010-05-05 18:59:37 +0100858 break;
Gregory CLEMENTb8db6b82012-11-06 01:58:07 +0100859
860 case AURORA_CACHE_ID:
Gregory CLEMENTb8db6b82012-11-06 01:58:07 +0100861 ways = (aux >> 13) & 0xf;
862 ways = 2 << ((ways + 1) >> 2);
Gregory CLEMENTb8db6b82012-11-06 01:58:07 +0100863 break;
Russell King75461f52014-03-15 16:48:07 +0000864
Jason McMullan64039be2010-05-05 18:59:37 +0100865 default:
866 /* Assume unknown chips have 8 ways */
867 ways = 8;
Jason McMullan64039be2010-05-05 18:59:37 +0100868 break;
869 }
870
871 l2x0_way_mask = (1 << ways) - 1;
872
Srinidhi Kasagar48371cd2009-12-02 06:18:03 +0100873 /*
Russell King0493aef2014-03-15 23:26:24 +0000874 * 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 Shilimkar5ba70372010-07-11 14:35:37 +0530880 */
Russell King1a5a9542014-03-16 20:52:25 +0000881 way_size_bits = (aux & L2C_AUX_CTRL_WAY_SIZE_MASK) >>
882 L2C_AUX_CTRL_WAY_SIZE_SHIFT;
Russell King0493aef2014-03-15 23:26:24 +0000883 l2x0_size = ways * (data->way_size_0 << way_size_bits);
Santosh Shilimkar5ba70372010-07-11 14:35:37 +0530884
Russell King75461f52014-03-15 16:48:07 +0000885 fns = data->outer_cache;
Russell King8abd2592014-03-16 17:38:08 +0000886 fns.write_sec = outer_cache.write_sec;
Russell King75461f52014-03-15 16:48:07 +0000887 if (data->fixup)
888 data->fixup(l2x0_base, cache_id, &fns);
889
Santosh Shilimkar5ba70372010-07-11 14:35:37 +0530890 /*
Russell King3b8bad52014-03-15 16:47:57 +0000891 * Check if l2x0 controller is already enabled. If we are booting
892 * in non-secure mode accessing the below registers will fault.
Srinidhi Kasagar48371cd2009-12-02 06:18:03 +0100893 */
Russell King3b8bad52014-03-15 16:47:57 +0000894 if (!(readl_relaxed(l2x0_base + L2X0_CTRL) & L2X0_CTRL_EN))
895 data->enable(l2x0_base, aux, data->num_lock);
Catalin Marinas382266a2007-02-05 14:48:19 +0100896
Russell Kingddf7d792014-03-28 14:18:35 +0000897 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 Mao9d4876f2012-09-03 09:14:56 +0100906 /* Re-read it in case some bits are reserved. */
907 aux = readl_relaxed(l2x0_base + L2X0_AUX_CTRL);
908
Russell Kingcdef8682014-03-15 16:48:08 +0000909 pr_info("%s cache controller enabled, %d ways, %d kB\n",
Russell King051334b2014-03-15 23:04:10 +0000910 data->type, ways, l2x0_size >> 10);
Russell Kingcdef8682014-03-15 16:48:08 +0000911 pr_info("%s: CACHE_ID 0x%08x, AUX_CTRL 0x%08x\n",
Russell King051334b2014-03-15 23:04:10 +0000912 data->type, cache_id, aux);
Catalin Marinas382266a2007-02-05 14:48:19 +0100913}
Rob Herring8c369262011-08-03 18:12:05 +0100914
Russell King96054b02014-03-15 16:47:52 +0000915void __init l2x0_init(void __iomem *base, u32 aux_val, u32 aux_mask)
916{
Russell King75461f52014-03-15 16:48:07 +0000917 const struct l2c_init_data *data;
Russell King96054b02014-03-15 16:47:52 +0000918 u32 cache_id;
919
920 l2x0_base = base;
921
922 cache_id = readl_relaxed(base + L2X0_CACHE_ID);
923
Russell King75461f52014-03-15 16:48:07 +0000924 switch (cache_id & L2X0_CACHE_ID_PART_MASK) {
925 default:
Russell King6a28cf52014-03-15 18:55:53 +0000926 case L2X0_CACHE_ID_PART_L210:
927 data = &l2c210_data;
928 break;
929
Russell King733c6bb2014-03-15 21:29:28 +0000930 case L2X0_CACHE_ID_PART_L220:
931 data = &l2c220_data;
932 break;
933
Russell King75461f52014-03-15 16:48:07 +0000934 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 King96054b02014-03-15 16:47:52 +0000940}
941
Rob Herring8c369262011-08-03 18:12:05 +0100942#ifdef CONFIG_OF
Gregory CLEMENTb8db6b82012-11-06 01:58:07 +0100943static int l2_wt_override;
944
Russell King96054b02014-03-15 16:47:52 +0000945/* Aurora don't have the cache ID register available, so we have to
946 * pass it though the device tree */
947static u32 cache_id_part_number_from_dt;
948
Linus Walleijf3354ab2014-09-26 09:01:58 +0100949/**
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 */
959static void __init l2x0_cache_size_of_parse(const struct device_node *np,
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)
977 return;
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);
1012 return;
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);
1030 return;
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;
1039}
1040
Russell Kingda3627f2014-03-15 16:48:06 +00001041static void __init l2x0_of_parse(const struct device_node *np,
1042 u32 *aux_val, u32 *aux_mask)
1043{
1044 u32 data[2] = { 0, 0 };
1045 u32 tag = 0;
1046 u32 dirty = 0;
1047 u32 val = 0, mask = 0;
Linus Walleijf3354ab2014-09-26 09:01:58 +01001048 u32 assoc;
Russell Kingda3627f2014-03-15 16:48:06 +00001049
1050 of_property_read_u32(np, "arm,tag-latency", &tag);
1051 if (tag) {
1052 mask |= L2X0_AUX_CTRL_TAG_LATENCY_MASK;
1053 val |= (tag - 1) << L2X0_AUX_CTRL_TAG_LATENCY_SHIFT;
1054 }
1055
1056 of_property_read_u32_array(np, "arm,data-latency",
1057 data, ARRAY_SIZE(data));
1058 if (data[0] && data[1]) {
1059 mask |= L2X0_AUX_CTRL_DATA_RD_LATENCY_MASK |
1060 L2X0_AUX_CTRL_DATA_WR_LATENCY_MASK;
1061 val |= ((data[0] - 1) << L2X0_AUX_CTRL_DATA_RD_LATENCY_SHIFT) |
1062 ((data[1] - 1) << L2X0_AUX_CTRL_DATA_WR_LATENCY_SHIFT);
1063 }
1064
1065 of_property_read_u32(np, "arm,dirty-latency", &dirty);
1066 if (dirty) {
1067 mask |= L2X0_AUX_CTRL_DIRTY_LATENCY_MASK;
1068 val |= (dirty - 1) << L2X0_AUX_CTRL_DIRTY_LATENCY_SHIFT;
1069 }
1070
Linus Walleijf3354ab2014-09-26 09:01:58 +01001071 l2x0_cache_size_of_parse(np, aux_val, aux_mask, &assoc, SZ_256K);
1072 if (assoc > 8) {
1073 pr_err("l2x0 of: cache setting yield too high associativity\n");
1074 pr_err("l2x0 of: %d calculated, max 8\n", assoc);
1075 } else {
1076 mask |= L2X0_AUX_CTRL_ASSOC_MASK;
1077 val |= (assoc << L2X0_AUX_CTRL_ASSOC_SHIFT);
1078 }
1079
Russell Kingda3627f2014-03-15 16:48:06 +00001080 *aux_val &= ~mask;
1081 *aux_val |= val;
1082 *aux_mask &= ~mask;
1083}
1084
Russell King6a28cf52014-03-15 18:55:53 +00001085static const struct l2c_init_data of_l2c210_data __initconst = {
Russell King051334b2014-03-15 23:04:10 +00001086 .type = "L2C-210",
Russell King0493aef2014-03-15 23:26:24 +00001087 .way_size_0 = SZ_8K,
Russell King6a28cf52014-03-15 18:55:53 +00001088 .num_lock = 1,
1089 .of_parse = l2x0_of_parse,
1090 .enable = l2c_enable,
Russell Kingddf7d792014-03-28 14:18:35 +00001091 .save = l2c_save,
Russell King6a28cf52014-03-15 18:55:53 +00001092 .outer_cache = {
1093 .inv_range = l2c210_inv_range,
1094 .clean_range = l2c210_clean_range,
1095 .flush_range = l2c210_flush_range,
1096 .flush_all = l2c210_flush_all,
1097 .disable = l2c_disable,
1098 .sync = l2c210_sync,
1099 .resume = l2c210_resume,
1100 },
1101};
1102
Russell King733c6bb2014-03-15 21:29:28 +00001103static const struct l2c_init_data of_l2c220_data __initconst = {
Russell King051334b2014-03-15 23:04:10 +00001104 .type = "L2C-220",
Russell King0493aef2014-03-15 23:26:24 +00001105 .way_size_0 = SZ_8K,
Russell King733c6bb2014-03-15 21:29:28 +00001106 .num_lock = 1,
Russell Kingda3627f2014-03-15 16:48:06 +00001107 .of_parse = l2x0_of_parse,
Russell Kinga4b041a2014-04-11 00:48:25 +01001108 .enable = l2c220_enable,
Russell Kingddf7d792014-03-28 14:18:35 +00001109 .save = l2c_save,
Russell Kingda3627f2014-03-15 16:48:06 +00001110 .outer_cache = {
Russell King733c6bb2014-03-15 21:29:28 +00001111 .inv_range = l2c220_inv_range,
1112 .clean_range = l2c220_clean_range,
1113 .flush_range = l2c220_flush_range,
1114 .flush_all = l2c220_flush_all,
1115 .disable = l2c_disable,
1116 .sync = l2c220_sync,
1117 .resume = l2c210_resume,
Russell Kingda3627f2014-03-15 16:48:06 +00001118 },
1119};
1120
Russell Kingf7773322014-03-15 20:51:47 +00001121static void __init l2c310_of_parse(const struct device_node *np,
1122 u32 *aux_val, u32 *aux_mask)
Russell Kingda3627f2014-03-15 16:48:06 +00001123{
1124 u32 data[3] = { 0, 0, 0 };
1125 u32 tag[3] = { 0, 0, 0 };
1126 u32 filter[2] = { 0, 0 };
Linus Walleijf3354ab2014-09-26 09:01:58 +01001127 u32 assoc;
Russell Kingda3627f2014-03-15 16:48:06 +00001128
1129 of_property_read_u32_array(np, "arm,tag-latency", tag, ARRAY_SIZE(tag));
1130 if (tag[0] && tag[1] && tag[2])
1131 writel_relaxed(
Russell King1a5a9542014-03-16 20:52:25 +00001132 L310_LATENCY_CTRL_RD(tag[0] - 1) |
1133 L310_LATENCY_CTRL_WR(tag[1] - 1) |
1134 L310_LATENCY_CTRL_SETUP(tag[2] - 1),
1135 l2x0_base + L310_TAG_LATENCY_CTRL);
Russell Kingda3627f2014-03-15 16:48:06 +00001136
1137 of_property_read_u32_array(np, "arm,data-latency",
1138 data, ARRAY_SIZE(data));
1139 if (data[0] && data[1] && data[2])
1140 writel_relaxed(
Russell King1a5a9542014-03-16 20:52:25 +00001141 L310_LATENCY_CTRL_RD(data[0] - 1) |
1142 L310_LATENCY_CTRL_WR(data[1] - 1) |
1143 L310_LATENCY_CTRL_SETUP(data[2] - 1),
1144 l2x0_base + L310_DATA_LATENCY_CTRL);
Russell Kingda3627f2014-03-15 16:48:06 +00001145
1146 of_property_read_u32_array(np, "arm,filter-ranges",
1147 filter, ARRAY_SIZE(filter));
1148 if (filter[1]) {
1149 writel_relaxed(ALIGN(filter[0] + filter[1], SZ_1M),
Russell King1a5a9542014-03-16 20:52:25 +00001150 l2x0_base + L310_ADDR_FILTER_END);
1151 writel_relaxed((filter[0] & ~(SZ_1M - 1)) | L310_ADDR_FILTER_EN,
1152 l2x0_base + L310_ADDR_FILTER_START);
Russell Kingda3627f2014-03-15 16:48:06 +00001153 }
Linus Walleijf3354ab2014-09-26 09:01:58 +01001154
1155 l2x0_cache_size_of_parse(np, aux_val, aux_mask, &assoc, SZ_512K);
1156 switch (assoc) {
1157 case 16:
1158 *aux_val &= ~L2X0_AUX_CTRL_ASSOC_MASK;
1159 *aux_val |= L310_AUX_CTRL_ASSOCIATIVITY_16;
1160 *aux_mask &= ~L2X0_AUX_CTRL_ASSOC_MASK;
1161 break;
1162 case 8:
1163 *aux_val &= ~L2X0_AUX_CTRL_ASSOC_MASK;
1164 *aux_mask &= ~L2X0_AUX_CTRL_ASSOC_MASK;
1165 break;
1166 default:
1167 pr_err("PL310 OF: cache setting yield illegal associativity\n");
1168 pr_err("PL310 OF: %d calculated, only 8 and 16 legal\n", assoc);
1169 break;
1170 }
Russell Kingda3627f2014-03-15 16:48:06 +00001171}
1172
Russell Kingf7773322014-03-15 20:51:47 +00001173static const struct l2c_init_data of_l2c310_data __initconst = {
Russell King051334b2014-03-15 23:04:10 +00001174 .type = "L2C-310",
Russell King0493aef2014-03-15 23:26:24 +00001175 .way_size_0 = SZ_8K,
Russell King3b8bad52014-03-15 16:47:57 +00001176 .num_lock = 8,
Russell Kingf7773322014-03-15 20:51:47 +00001177 .of_parse = l2c310_of_parse,
Russell King4374d642014-03-19 15:39:09 +00001178 .enable = l2c310_enable,
Russell King75461f52014-03-15 16:48:07 +00001179 .fixup = l2c310_fixup,
Russell King09a5d182014-03-15 16:48:13 +00001180 .save = l2c310_save,
Russell Kingda3627f2014-03-15 16:48:06 +00001181 .outer_cache = {
Russell Kingf7773322014-03-15 20:51:47 +00001182 .inv_range = l2c210_inv_range,
1183 .clean_range = l2c210_clean_range,
1184 .flush_range = l2c210_flush_range,
1185 .flush_all = l2c210_flush_all,
Russell King8ef418c2014-03-18 21:40:01 +00001186 .disable = l2c310_disable,
Russell Kingf7773322014-03-15 20:51:47 +00001187 .sync = l2c210_sync,
Russell King09a5d182014-03-15 16:48:13 +00001188 .resume = l2c310_resume,
Russell Kingda3627f2014-03-15 16:48:06 +00001189 },
1190};
1191
Gregory CLEMENTb8db6b82012-11-06 01:58:07 +01001192/*
Thomas Petazzoni98ea2db2014-06-13 10:58:38 +01001193 * This is a variant of the of_l2c310_data with .sync set to
1194 * NULL. Outer sync operations are not needed when the system is I/O
1195 * coherent, and potentially harmful in certain situations (PCIe/PL310
1196 * deadlock on Armada 375/38x due to hardware I/O coherency). The
1197 * other operations are kept because they are infrequent (therefore do
1198 * not cause the deadlock in practice) and needed for secondary CPU
1199 * boot and other power management activities.
1200 */
1201static const struct l2c_init_data of_l2c310_coherent_data __initconst = {
1202 .type = "L2C-310 Coherent",
1203 .way_size_0 = SZ_8K,
1204 .num_lock = 8,
1205 .of_parse = l2c310_of_parse,
1206 .enable = l2c310_enable,
1207 .fixup = l2c310_fixup,
1208 .save = l2c310_save,
1209 .outer_cache = {
1210 .inv_range = l2c210_inv_range,
1211 .clean_range = l2c210_clean_range,
1212 .flush_range = l2c210_flush_range,
1213 .flush_all = l2c210_flush_all,
1214 .disable = l2c310_disable,
1215 .resume = l2c310_resume,
1216 },
1217};
1218
1219/*
Gregory CLEMENTb8db6b82012-11-06 01:58:07 +01001220 * Note that the end addresses passed to Linux primitives are
1221 * noninclusive, while the hardware cache range operations use
1222 * inclusive start and end addresses.
1223 */
1224static unsigned long calc_range_end(unsigned long start, unsigned long end)
1225{
1226 /*
1227 * Limit the number of cache lines processed at once,
1228 * since cache range operations stall the CPU pipeline
1229 * until completion.
1230 */
1231 if (end > start + MAX_RANGE_SIZE)
1232 end = start + MAX_RANGE_SIZE;
1233
1234 /*
1235 * Cache range operations can't straddle a page boundary.
1236 */
1237 if (end > PAGE_ALIGN(start+1))
1238 end = PAGE_ALIGN(start+1);
1239
1240 return end;
1241}
1242
1243/*
1244 * Make sure 'start' and 'end' reference the same page, as L2 is PIPT
1245 * and range operations only do a TLB lookup on the start address.
1246 */
1247static void aurora_pa_range(unsigned long start, unsigned long end,
1248 unsigned long offset)
1249{
1250 unsigned long flags;
1251
1252 raw_spin_lock_irqsave(&l2x0_lock, flags);
Gregory CLEMENT8a3a1802013-01-07 11:28:42 +01001253 writel_relaxed(start, l2x0_base + AURORA_RANGE_BASE_ADDR_REG);
1254 writel_relaxed(end, l2x0_base + offset);
Gregory CLEMENTb8db6b82012-11-06 01:58:07 +01001255 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
1256
1257 cache_sync();
1258}
1259
1260static void aurora_inv_range(unsigned long start, unsigned long end)
1261{
1262 /*
1263 * round start and end adresses up to cache line size
1264 */
1265 start &= ~(CACHE_LINE_SIZE - 1);
1266 end = ALIGN(end, CACHE_LINE_SIZE);
1267
1268 /*
1269 * Invalidate all full cache lines between 'start' and 'end'.
1270 */
1271 while (start < end) {
1272 unsigned long range_end = calc_range_end(start, end);
1273 aurora_pa_range(start, range_end - CACHE_LINE_SIZE,
1274 AURORA_INVAL_RANGE_REG);
1275 start = range_end;
1276 }
1277}
1278
1279static void aurora_clean_range(unsigned long start, unsigned long end)
1280{
1281 /*
1282 * If L2 is forced to WT, the L2 will always be clean and we
1283 * don't need to do anything here.
1284 */
1285 if (!l2_wt_override) {
1286 start &= ~(CACHE_LINE_SIZE - 1);
1287 end = ALIGN(end, CACHE_LINE_SIZE);
1288 while (start != end) {
1289 unsigned long range_end = calc_range_end(start, end);
1290 aurora_pa_range(start, range_end - CACHE_LINE_SIZE,
1291 AURORA_CLEAN_RANGE_REG);
1292 start = range_end;
1293 }
1294 }
1295}
1296
1297static void aurora_flush_range(unsigned long start, unsigned long end)
1298{
Gregory CLEMENT8b827c62013-01-07 11:27:14 +01001299 start &= ~(CACHE_LINE_SIZE - 1);
1300 end = ALIGN(end, CACHE_LINE_SIZE);
1301 while (start != end) {
1302 unsigned long range_end = calc_range_end(start, end);
1303 /*
1304 * If L2 is forced to WT, the L2 will always be clean and we
1305 * just need to invalidate.
1306 */
1307 if (l2_wt_override)
Gregory CLEMENTb8db6b82012-11-06 01:58:07 +01001308 aurora_pa_range(start, range_end - CACHE_LINE_SIZE,
Gregory CLEMENT8b827c62013-01-07 11:27:14 +01001309 AURORA_INVAL_RANGE_REG);
1310 else
1311 aurora_pa_range(start, range_end - CACHE_LINE_SIZE,
1312 AURORA_FLUSH_RANGE_REG);
1313 start = range_end;
Gregory CLEMENTb8db6b82012-11-06 01:58:07 +01001314 }
1315}
1316
Russell Kingda3627f2014-03-15 16:48:06 +00001317static void aurora_save(void __iomem *base)
1318{
1319 l2x0_saved_regs.ctrl = readl_relaxed(base + L2X0_CTRL);
1320 l2x0_saved_regs.aux_ctrl = readl_relaxed(base + L2X0_AUX_CTRL);
1321}
1322
1323static void aurora_resume(void)
1324{
Russell King09a5d182014-03-15 16:48:13 +00001325 void __iomem *base = l2x0_base;
1326
1327 if (!(readl(base + L2X0_CTRL) & L2X0_CTRL_EN)) {
1328 writel_relaxed(l2x0_saved_regs.aux_ctrl, base + L2X0_AUX_CTRL);
1329 writel_relaxed(l2x0_saved_regs.ctrl, base + L2X0_CTRL);
Russell Kingda3627f2014-03-15 16:48:06 +00001330 }
1331}
1332
Russell King40266d62014-03-15 16:47:59 +00001333/*
1334 * For Aurora cache in no outer mode, enable via the CP15 coprocessor
1335 * broadcasting of cache commands to L2.
1336 */
1337static void __init aurora_enable_no_outer(void __iomem *base, u32 aux,
1338 unsigned num_lock)
Russell Kingda3627f2014-03-15 16:48:06 +00001339{
Russell King40266d62014-03-15 16:47:59 +00001340 u32 u;
1341
1342 asm volatile("mrc p15, 1, %0, c15, c2, 0" : "=r" (u));
Russell Kingda3627f2014-03-15 16:48:06 +00001343 u |= AURORA_CTRL_FW; /* Set the FW bit */
Russell King40266d62014-03-15 16:47:59 +00001344 asm volatile("mcr p15, 1, %0, c15, c2, 0" : : "r" (u));
1345
Russell Kingda3627f2014-03-15 16:48:06 +00001346 isb();
Russell King40266d62014-03-15 16:47:59 +00001347
1348 l2c_enable(base, aux, num_lock);
Russell Kingda3627f2014-03-15 16:48:06 +00001349}
1350
Russell King75461f52014-03-15 16:48:07 +00001351static void __init aurora_fixup(void __iomem *base, u32 cache_id,
1352 struct outer_cache_fns *fns)
1353{
1354 sync_reg_offset = AURORA_SYNC_REG;
1355}
1356
Russell Kingda3627f2014-03-15 16:48:06 +00001357static void __init aurora_of_parse(const struct device_node *np,
1358 u32 *aux_val, u32 *aux_mask)
1359{
1360 u32 val = AURORA_ACR_REPLACEMENT_TYPE_SEMIPLRU;
1361 u32 mask = AURORA_ACR_REPLACEMENT_MASK;
1362
1363 of_property_read_u32(np, "cache-id-part",
1364 &cache_id_part_number_from_dt);
1365
1366 /* Determine and save the write policy */
1367 l2_wt_override = of_property_read_bool(np, "wt-override");
1368
1369 if (l2_wt_override) {
1370 val |= AURORA_ACR_FORCE_WRITE_THRO_POLICY;
1371 mask |= AURORA_ACR_FORCE_WRITE_POLICY_MASK;
1372 }
1373
1374 *aux_val &= ~mask;
1375 *aux_val |= val;
1376 *aux_mask &= ~mask;
1377}
1378
1379static const struct l2c_init_data of_aurora_with_outer_data __initconst = {
Russell King051334b2014-03-15 23:04:10 +00001380 .type = "Aurora",
Russell King0493aef2014-03-15 23:26:24 +00001381 .way_size_0 = SZ_4K,
Russell King3b8bad52014-03-15 16:47:57 +00001382 .num_lock = 4,
Russell Kingda3627f2014-03-15 16:48:06 +00001383 .of_parse = aurora_of_parse,
Russell King3b8bad52014-03-15 16:47:57 +00001384 .enable = l2c_enable,
Russell King75461f52014-03-15 16:48:07 +00001385 .fixup = aurora_fixup,
Russell Kingda3627f2014-03-15 16:48:06 +00001386 .save = aurora_save,
1387 .outer_cache = {
1388 .inv_range = aurora_inv_range,
1389 .clean_range = aurora_clean_range,
1390 .flush_range = aurora_flush_range,
1391 .flush_all = l2x0_flush_all,
1392 .disable = l2x0_disable,
1393 .sync = l2x0_cache_sync,
1394 .resume = aurora_resume,
1395 },
1396};
1397
1398static const struct l2c_init_data of_aurora_no_outer_data __initconst = {
Russell King051334b2014-03-15 23:04:10 +00001399 .type = "Aurora",
Russell King0493aef2014-03-15 23:26:24 +00001400 .way_size_0 = SZ_4K,
Russell King3b8bad52014-03-15 16:47:57 +00001401 .num_lock = 4,
Russell Kingda3627f2014-03-15 16:48:06 +00001402 .of_parse = aurora_of_parse,
Russell King40266d62014-03-15 16:47:59 +00001403 .enable = aurora_enable_no_outer,
Russell King75461f52014-03-15 16:48:07 +00001404 .fixup = aurora_fixup,
Russell Kingda3627f2014-03-15 16:48:06 +00001405 .save = aurora_save,
1406 .outer_cache = {
1407 .resume = aurora_resume,
1408 },
1409};
1410
Christian Daudt3b656fe2013-05-09 22:21:01 +01001411/*
1412 * For certain Broadcom SoCs, depending on the address range, different offsets
1413 * need to be added to the address before passing it to L2 for
1414 * invalidation/clean/flush
1415 *
1416 * Section Address Range Offset EMI
1417 * 1 0x00000000 - 0x3FFFFFFF 0x80000000 VC
1418 * 2 0x40000000 - 0xBFFFFFFF 0x40000000 SYS
1419 * 3 0xC0000000 - 0xFFFFFFFF 0x80000000 VC
1420 *
1421 * When the start and end addresses have crossed two different sections, we
1422 * need to break the L2 operation into two, each within its own section.
1423 * For example, if we need to invalidate addresses starts at 0xBFFF0000 and
1424 * ends at 0xC0001000, we need do invalidate 1) 0xBFFF0000 - 0xBFFFFFFF and 2)
1425 * 0xC0000000 - 0xC0001000
1426 *
1427 * Note 1:
1428 * By breaking a single L2 operation into two, we may potentially suffer some
1429 * performance hit, but keep in mind the cross section case is very rare
1430 *
1431 * Note 2:
1432 * We do not need to handle the case when the start address is in
1433 * Section 1 and the end address is in Section 3, since it is not a valid use
1434 * case
1435 *
1436 * Note 3:
1437 * Section 1 in practical terms can no longer be used on rev A2. Because of
1438 * that the code does not need to handle section 1 at all.
1439 *
1440 */
1441#define BCM_SYS_EMI_START_ADDR 0x40000000UL
1442#define BCM_VC_EMI_SEC3_START_ADDR 0xC0000000UL
1443
1444#define BCM_SYS_EMI_OFFSET 0x40000000UL
1445#define BCM_VC_EMI_OFFSET 0x80000000UL
1446
1447static inline int bcm_addr_is_sys_emi(unsigned long addr)
1448{
1449 return (addr >= BCM_SYS_EMI_START_ADDR) &&
1450 (addr < BCM_VC_EMI_SEC3_START_ADDR);
1451}
1452
1453static inline unsigned long bcm_l2_phys_addr(unsigned long addr)
1454{
1455 if (bcm_addr_is_sys_emi(addr))
1456 return addr + BCM_SYS_EMI_OFFSET;
1457 else
1458 return addr + BCM_VC_EMI_OFFSET;
1459}
1460
1461static void bcm_inv_range(unsigned long start, unsigned long end)
1462{
1463 unsigned long new_start, new_end;
1464
1465 BUG_ON(start < BCM_SYS_EMI_START_ADDR);
1466
1467 if (unlikely(end <= start))
1468 return;
1469
1470 new_start = bcm_l2_phys_addr(start);
1471 new_end = bcm_l2_phys_addr(end);
1472
1473 /* normal case, no cross section between start and end */
1474 if (likely(bcm_addr_is_sys_emi(end) || !bcm_addr_is_sys_emi(start))) {
Russell King90811142014-03-19 19:14:13 +00001475 l2c210_inv_range(new_start, new_end);
Christian Daudt3b656fe2013-05-09 22:21:01 +01001476 return;
1477 }
1478
1479 /* They cross sections, so it can only be a cross from section
1480 * 2 to section 3
1481 */
Russell King90811142014-03-19 19:14:13 +00001482 l2c210_inv_range(new_start,
Christian Daudt3b656fe2013-05-09 22:21:01 +01001483 bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR-1));
Russell King90811142014-03-19 19:14:13 +00001484 l2c210_inv_range(bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR),
Christian Daudt3b656fe2013-05-09 22:21:01 +01001485 new_end);
1486}
1487
1488static void bcm_clean_range(unsigned long start, unsigned long end)
1489{
1490 unsigned long new_start, new_end;
1491
1492 BUG_ON(start < BCM_SYS_EMI_START_ADDR);
1493
1494 if (unlikely(end <= start))
1495 return;
1496
Christian Daudt3b656fe2013-05-09 22:21:01 +01001497 new_start = bcm_l2_phys_addr(start);
1498 new_end = bcm_l2_phys_addr(end);
1499
1500 /* normal case, no cross section between start and end */
1501 if (likely(bcm_addr_is_sys_emi(end) || !bcm_addr_is_sys_emi(start))) {
Russell King90811142014-03-19 19:14:13 +00001502 l2c210_clean_range(new_start, new_end);
Christian Daudt3b656fe2013-05-09 22:21:01 +01001503 return;
1504 }
1505
1506 /* They cross sections, so it can only be a cross from section
1507 * 2 to section 3
1508 */
Russell King90811142014-03-19 19:14:13 +00001509 l2c210_clean_range(new_start,
Christian Daudt3b656fe2013-05-09 22:21:01 +01001510 bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR-1));
Russell King90811142014-03-19 19:14:13 +00001511 l2c210_clean_range(bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR),
Christian Daudt3b656fe2013-05-09 22:21:01 +01001512 new_end);
1513}
1514
1515static void bcm_flush_range(unsigned long start, unsigned long end)
1516{
1517 unsigned long new_start, new_end;
1518
1519 BUG_ON(start < BCM_SYS_EMI_START_ADDR);
1520
1521 if (unlikely(end <= start))
1522 return;
1523
1524 if ((end - start) >= l2x0_size) {
Russell King90811142014-03-19 19:14:13 +00001525 outer_cache.flush_all();
Christian Daudt3b656fe2013-05-09 22:21:01 +01001526 return;
1527 }
1528
1529 new_start = bcm_l2_phys_addr(start);
1530 new_end = bcm_l2_phys_addr(end);
1531
1532 /* normal case, no cross section between start and end */
1533 if (likely(bcm_addr_is_sys_emi(end) || !bcm_addr_is_sys_emi(start))) {
Russell King90811142014-03-19 19:14:13 +00001534 l2c210_flush_range(new_start, new_end);
Christian Daudt3b656fe2013-05-09 22:21:01 +01001535 return;
1536 }
1537
1538 /* They cross sections, so it can only be a cross from section
1539 * 2 to section 3
1540 */
Russell King90811142014-03-19 19:14:13 +00001541 l2c210_flush_range(new_start,
Christian Daudt3b656fe2013-05-09 22:21:01 +01001542 bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR-1));
Russell King90811142014-03-19 19:14:13 +00001543 l2c210_flush_range(bcm_l2_phys_addr(BCM_VC_EMI_SEC3_START_ADDR),
Christian Daudt3b656fe2013-05-09 22:21:01 +01001544 new_end);
1545}
1546
Russell King90811142014-03-19 19:14:13 +00001547/* Broadcom L2C-310 start from ARMs R3P2 or later, and require no fixups */
Russell Kingda3627f2014-03-15 16:48:06 +00001548static const struct l2c_init_data of_bcm_l2x0_data __initconst = {
Russell King051334b2014-03-15 23:04:10 +00001549 .type = "BCM-L2C-310",
Russell King0493aef2014-03-15 23:26:24 +00001550 .way_size_0 = SZ_8K,
Russell King3b8bad52014-03-15 16:47:57 +00001551 .num_lock = 8,
Russell Kingf7773322014-03-15 20:51:47 +00001552 .of_parse = l2c310_of_parse,
Russell King4374d642014-03-19 15:39:09 +00001553 .enable = l2c310_enable,
Russell King09a5d182014-03-15 16:48:13 +00001554 .save = l2c310_save,
Russell Kingda3627f2014-03-15 16:48:06 +00001555 .outer_cache = {
1556 .inv_range = bcm_inv_range,
1557 .clean_range = bcm_clean_range,
1558 .flush_range = bcm_flush_range,
Russell Kingf7773322014-03-15 20:51:47 +00001559 .flush_all = l2c210_flush_all,
Russell King8ef418c2014-03-18 21:40:01 +00001560 .disable = l2c310_disable,
Russell Kingf7773322014-03-15 20:51:47 +00001561 .sync = l2c210_sync,
Russell King09a5d182014-03-15 16:48:13 +00001562 .resume = l2c310_resume,
Russell Kingda3627f2014-03-15 16:48:06 +00001563 },
1564};
Gregory CLEMENTb8db6b82012-11-06 01:58:07 +01001565
Russell King9846dfc2014-03-15 16:47:55 +00001566static void __init tauros3_save(void __iomem *base)
Sebastian Hesselbarthe68f31f2013-12-13 16:42:19 +01001567{
Russell Kingddf7d792014-03-28 14:18:35 +00001568 l2c_save(base);
1569
Sebastian Hesselbarthe68f31f2013-12-13 16:42:19 +01001570 l2x0_saved_regs.aux2_ctrl =
Russell King9846dfc2014-03-15 16:47:55 +00001571 readl_relaxed(base + TAUROS3_AUX2_CTRL);
Sebastian Hesselbarthe68f31f2013-12-13 16:42:19 +01001572 l2x0_saved_regs.prefetch_ctrl =
Russell King1a5a9542014-03-16 20:52:25 +00001573 readl_relaxed(base + L310_PREFETCH_CTRL);
Sebastian Hesselbarthe68f31f2013-12-13 16:42:19 +01001574}
1575
Sebastian Hesselbarthe68f31f2013-12-13 16:42:19 +01001576static void tauros3_resume(void)
1577{
Russell King09a5d182014-03-15 16:48:13 +00001578 void __iomem *base = l2x0_base;
Sebastian Hesselbarthe68f31f2013-12-13 16:42:19 +01001579
Russell King09a5d182014-03-15 16:48:13 +00001580 if (!(readl_relaxed(base + L2X0_CTRL) & L2X0_CTRL_EN)) {
1581 writel_relaxed(l2x0_saved_regs.aux2_ctrl,
1582 base + TAUROS3_AUX2_CTRL);
1583 writel_relaxed(l2x0_saved_regs.prefetch_ctrl,
Russell King1a5a9542014-03-16 20:52:25 +00001584 base + L310_PREFETCH_CTRL);
Russell King09a5d182014-03-15 16:48:13 +00001585
1586 l2c_enable(base, l2x0_saved_regs.aux_ctrl, 8);
1587 }
Sebastian Hesselbarthe68f31f2013-12-13 16:42:19 +01001588}
1589
Russell Kingc02642b2014-03-15 16:47:54 +00001590static const struct l2c_init_data of_tauros3_data __initconst = {
Russell King051334b2014-03-15 23:04:10 +00001591 .type = "Tauros3",
Russell King0493aef2014-03-15 23:26:24 +00001592 .way_size_0 = SZ_8K,
Russell King3b8bad52014-03-15 16:47:57 +00001593 .num_lock = 8,
1594 .enable = l2c_enable,
Sebastian Hesselbarthe68f31f2013-12-13 16:42:19 +01001595 .save = tauros3_save,
1596 /* Tauros3 broadcasts L1 cache operations to L2 */
1597 .outer_cache = {
1598 .resume = tauros3_resume,
1599 },
1600};
1601
Russell Kinga65bb922014-03-15 16:48:01 +00001602#define L2C_ID(name, fns) { .compatible = name, .data = (void *)&fns }
Rob Herring8c369262011-08-03 18:12:05 +01001603static const struct of_device_id l2x0_ids[] __initconst = {
Russell King6a28cf52014-03-15 18:55:53 +00001604 L2C_ID("arm,l210-cache", of_l2c210_data),
Russell King733c6bb2014-03-15 21:29:28 +00001605 L2C_ID("arm,l220-cache", of_l2c220_data),
Russell Kingf7773322014-03-15 20:51:47 +00001606 L2C_ID("arm,pl310-cache", of_l2c310_data),
Russell Kingc02642b2014-03-15 16:47:54 +00001607 L2C_ID("brcm,bcm11351-a2-pl310-cache", of_bcm_l2x0_data),
1608 L2C_ID("marvell,aurora-outer-cache", of_aurora_with_outer_data),
1609 L2C_ID("marvell,aurora-system-cache", of_aurora_no_outer_data),
1610 L2C_ID("marvell,tauros3-cache", of_tauros3_data),
Russell Kinga65bb922014-03-15 16:48:01 +00001611 /* Deprecated IDs */
Russell Kingc02642b2014-03-15 16:47:54 +00001612 L2C_ID("bcm,bcm11351-a2-pl310-cache", of_bcm_l2x0_data),
Rob Herring8c369262011-08-03 18:12:05 +01001613 {}
1614};
1615
Russell King3e175ca2011-09-18 11:27:30 +01001616int __init l2x0_of_init(u32 aux_val, u32 aux_mask)
Rob Herring8c369262011-08-03 18:12:05 +01001617{
Russell Kingc02642b2014-03-15 16:47:54 +00001618 const struct l2c_init_data *data;
Rob Herring8c369262011-08-03 18:12:05 +01001619 struct device_node *np;
Barry Song91c2ebb2011-09-30 14:43:12 +01001620 struct resource res;
Russell King560be612014-03-17 17:02:56 +00001621 u32 cache_id, old_aux;
Rob Herring8c369262011-08-03 18:12:05 +01001622
1623 np = of_find_matching_node(NULL, l2x0_ids);
1624 if (!np)
1625 return -ENODEV;
Barry Song91c2ebb2011-09-30 14:43:12 +01001626
1627 if (of_address_to_resource(np, 0, &res))
1628 return -ENODEV;
1629
1630 l2x0_base = ioremap(res.start, resource_size(&res));
Rob Herring8c369262011-08-03 18:12:05 +01001631 if (!l2x0_base)
1632 return -ENOMEM;
1633
Barry Song91c2ebb2011-09-30 14:43:12 +01001634 l2x0_saved_regs.phy_base = res.start;
1635
1636 data = of_match_node(l2x0_ids, np)->data;
1637
Thomas Petazzoni98ea2db2014-06-13 10:58:38 +01001638 if (of_device_is_compatible(np, "arm,pl310-cache") &&
1639 of_property_read_bool(np, "arm,io-coherent"))
1640 data = &of_l2c310_coherent_data;
1641
Russell King560be612014-03-17 17:02:56 +00001642 old_aux = readl_relaxed(l2x0_base + L2X0_AUX_CTRL);
1643 if (old_aux != ((old_aux & aux_mask) | aux_val)) {
1644 pr_warn("L2C: platform modifies aux control register: 0x%08x -> 0x%08x\n",
1645 old_aux, (old_aux & aux_mask) | aux_val);
1646 } else if (aux_mask != ~0U && aux_val != 0) {
1647 pr_alert("L2C: platform provided aux values match the hardware, so have no effect. Please remove them.\n");
1648 }
1649
Russell Kingd9d1f3e2014-03-17 12:59:08 +00001650 /* All L2 caches are unified, so this property should be specified */
1651 if (!of_property_read_bool(np, "cache-unified"))
1652 pr_err("L2C: device tree omits to specify unified cache\n");
1653
Rob Herring8c369262011-08-03 18:12:05 +01001654 /* L2 configuration can only be changed if the cache is disabled */
Russell King40266d62014-03-15 16:47:59 +00001655 if (!(readl_relaxed(l2x0_base + L2X0_CTRL) & L2X0_CTRL_EN))
Russell Kingc02642b2014-03-15 16:47:54 +00001656 if (data->of_parse)
1657 data->of_parse(np, &aux_val, &aux_mask);
Gregory CLEMENTb8db6b82012-11-06 01:58:07 +01001658
Russell King96054b02014-03-15 16:47:52 +00001659 if (cache_id_part_number_from_dt)
1660 cache_id = cache_id_part_number_from_dt;
1661 else
1662 cache_id = readl_relaxed(l2x0_base + L2X0_CACHE_ID);
1663
1664 __l2c_init(data, aux_val, aux_mask, cache_id);
Gregory CLEMENT6248d062012-10-01 10:56:42 +01001665
Rob Herring8c369262011-08-03 18:12:05 +01001666 return 0;
1667}
1668#endif