blob: a53fd2aaa2f4b59397bfa01847b22cd991bcdd8b [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 */
Rob Herring8c369262011-08-03 18:12:05 +010019#include <linux/err.h>
Catalin Marinas382266a2007-02-05 14:48:19 +010020#include <linux/init.h>
Catalin Marinas07620972007-07-20 11:42:40 +010021#include <linux/spinlock.h>
Russell Kingfced80c2008-09-06 12:10:45 +010022#include <linux/io.h>
Rob Herring8c369262011-08-03 18:12:05 +010023#include <linux/of.h>
24#include <linux/of_address.h>
Catalin Marinas382266a2007-02-05 14:48:19 +010025
26#include <asm/cacheflush.h>
Catalin Marinas382266a2007-02-05 14:48:19 +010027#include <asm/hardware/cache-l2x0.h>
28
29#define CACHE_LINE_SIZE 32
30
31static void __iomem *l2x0_base;
Thomas Gleixnerbd31b852009-07-03 08:44:46 -050032static DEFINE_RAW_SPINLOCK(l2x0_lock);
Russell King3e175ca2011-09-18 11:27:30 +010033static u32 l2x0_way_mask; /* Bitmask of active ways */
34static u32 l2x0_size;
Catalin Marinas382266a2007-02-05 14:48:19 +010035
Barry Song91c2ebb2011-09-30 14:43:12 +010036struct l2x0_regs l2x0_saved_regs;
37
38struct l2x0_of_data {
Russell King3e175ca2011-09-18 11:27:30 +010039 void (*setup)(const struct device_node *, u32 *, u32 *);
Barry Song91c2ebb2011-09-30 14:43:12 +010040 void (*save)(void);
41 void (*resume)(void);
42};
43
Catalin Marinas9a6655e2010-08-31 13:05:22 +010044static inline void cache_wait_way(void __iomem *reg, unsigned long mask)
Catalin Marinas382266a2007-02-05 14:48:19 +010045{
Catalin Marinas9a6655e2010-08-31 13:05:22 +010046 /* wait for cache operation by line or way to complete */
Catalin Marinas6775a552010-07-28 22:01:25 +010047 while (readl_relaxed(reg) & mask)
Barry Song1caf3092011-09-09 10:30:34 +010048 cpu_relax();
Catalin Marinas382266a2007-02-05 14:48:19 +010049}
50
Catalin Marinas9a6655e2010-08-31 13:05:22 +010051#ifdef CONFIG_CACHE_PL310
52static inline void cache_wait(void __iomem *reg, unsigned long mask)
53{
54 /* cache operations by line are atomic on PL310 */
55}
56#else
57#define cache_wait cache_wait_way
58#endif
59
Catalin Marinas382266a2007-02-05 14:48:19 +010060static inline void cache_sync(void)
61{
Russell King3d107432009-11-19 11:41:09 +000062 void __iomem *base = l2x0_base;
Srinidhi Kasagar885028e2011-02-17 07:03:51 +010063
Will Deaconfa0ce402011-11-14 17:24:57 +010064#ifdef CONFIG_PL310_ERRATA_753970
Srinidhi Kasagar885028e2011-02-17 07:03:51 +010065 /* write to an unmmapped register */
66 writel_relaxed(0, base + L2X0_DUMMY_REG);
67#else
Catalin Marinas6775a552010-07-28 22:01:25 +010068 writel_relaxed(0, base + L2X0_CACHE_SYNC);
Srinidhi Kasagar885028e2011-02-17 07:03:51 +010069#endif
Russell King3d107432009-11-19 11:41:09 +000070 cache_wait(base + L2X0_CACHE_SYNC, 1);
Catalin Marinas382266a2007-02-05 14:48:19 +010071}
72
Santosh Shilimkar424d6b12010-02-04 19:35:06 +010073static inline void l2x0_clean_line(unsigned long addr)
74{
75 void __iomem *base = l2x0_base;
76 cache_wait(base + L2X0_CLEAN_LINE_PA, 1);
Catalin Marinas6775a552010-07-28 22:01:25 +010077 writel_relaxed(addr, base + L2X0_CLEAN_LINE_PA);
Santosh Shilimkar424d6b12010-02-04 19:35:06 +010078}
79
80static inline void l2x0_inv_line(unsigned long addr)
81{
82 void __iomem *base = l2x0_base;
83 cache_wait(base + L2X0_INV_LINE_PA, 1);
Catalin Marinas6775a552010-07-28 22:01:25 +010084 writel_relaxed(addr, base + L2X0_INV_LINE_PA);
Santosh Shilimkar424d6b12010-02-04 19:35:06 +010085}
86
Santosh Shilimkar2839e062011-03-08 06:59:54 +010087#if defined(CONFIG_PL310_ERRATA_588369) || defined(CONFIG_PL310_ERRATA_727915)
Santosh Shilimkar9e655822010-02-04 19:42:42 +010088
Santosh Shilimkar2839e062011-03-08 06:59:54 +010089#define debug_writel(val) outer_cache.set_debug(val)
90
91static void l2x0_set_debug(unsigned long val)
92{
93 writel_relaxed(val, l2x0_base + L2X0_DEBUG_CTRL);
94}
95#else
96/* Optimised out for non-errata case */
97static inline void debug_writel(unsigned long val)
98{
Santosh Shilimkar9e655822010-02-04 19:42:42 +010099}
100
Santosh Shilimkar2839e062011-03-08 06:59:54 +0100101#define l2x0_set_debug NULL
102#endif
103
104#ifdef CONFIG_PL310_ERRATA_588369
Santosh Shilimkar9e655822010-02-04 19:42:42 +0100105static inline void l2x0_flush_line(unsigned long addr)
106{
107 void __iomem *base = l2x0_base;
108
109 /* Clean by PA followed by Invalidate by PA */
110 cache_wait(base + L2X0_CLEAN_LINE_PA, 1);
Catalin Marinas6775a552010-07-28 22:01:25 +0100111 writel_relaxed(addr, base + L2X0_CLEAN_LINE_PA);
Santosh Shilimkar9e655822010-02-04 19:42:42 +0100112 cache_wait(base + L2X0_INV_LINE_PA, 1);
Catalin Marinas6775a552010-07-28 22:01:25 +0100113 writel_relaxed(addr, base + L2X0_INV_LINE_PA);
Santosh Shilimkar9e655822010-02-04 19:42:42 +0100114}
115#else
116
Santosh Shilimkar424d6b12010-02-04 19:35:06 +0100117static inline void l2x0_flush_line(unsigned long addr)
118{
119 void __iomem *base = l2x0_base;
120 cache_wait(base + L2X0_CLEAN_INV_LINE_PA, 1);
Catalin Marinas6775a552010-07-28 22:01:25 +0100121 writel_relaxed(addr, base + L2X0_CLEAN_INV_LINE_PA);
Santosh Shilimkar424d6b12010-02-04 19:35:06 +0100122}
Santosh Shilimkar9e655822010-02-04 19:42:42 +0100123#endif
Santosh Shilimkar424d6b12010-02-04 19:35:06 +0100124
Catalin Marinas23107c52010-03-24 16:48:53 +0100125static void l2x0_cache_sync(void)
126{
127 unsigned long flags;
128
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500129 raw_spin_lock_irqsave(&l2x0_lock, flags);
Catalin Marinas23107c52010-03-24 16:48:53 +0100130 cache_sync();
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500131 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
Catalin Marinas23107c52010-03-24 16:48:53 +0100132}
133
Will Deacon38a89142011-07-01 14:36:19 +0100134static void __l2x0_flush_all(void)
135{
136 debug_writel(0x03);
137 writel_relaxed(l2x0_way_mask, l2x0_base + L2X0_CLEAN_INV_WAY);
138 cache_wait_way(l2x0_base + L2X0_CLEAN_INV_WAY, l2x0_way_mask);
139 cache_sync();
140 debug_writel(0x00);
141}
142
Thomas Gleixner2fd86582010-07-31 21:05:24 +0530143static void l2x0_flush_all(void)
144{
145 unsigned long flags;
146
147 /* clean all ways */
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500148 raw_spin_lock_irqsave(&l2x0_lock, flags);
Will Deacon38a89142011-07-01 14:36:19 +0100149 __l2x0_flush_all();
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500150 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
Thomas Gleixner2fd86582010-07-31 21:05:24 +0530151}
152
Santosh Shilimkar444457c2010-07-11 14:58:41 +0530153static void l2x0_clean_all(void)
154{
155 unsigned long flags;
156
157 /* clean all ways */
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500158 raw_spin_lock_irqsave(&l2x0_lock, flags);
Santosh Shilimkar444457c2010-07-11 14:58:41 +0530159 writel_relaxed(l2x0_way_mask, l2x0_base + L2X0_CLEAN_WAY);
160 cache_wait_way(l2x0_base + L2X0_CLEAN_WAY, l2x0_way_mask);
161 cache_sync();
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500162 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
Santosh Shilimkar444457c2010-07-11 14:58:41 +0530163}
164
Thomas Gleixner2fd86582010-07-31 21:05:24 +0530165static void l2x0_inv_all(void)
Catalin Marinas382266a2007-02-05 14:48:19 +0100166{
Russell King0eb948d2009-11-19 11:12:15 +0000167 unsigned long flags;
168
Catalin Marinas382266a2007-02-05 14:48:19 +0100169 /* invalidate all ways */
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500170 raw_spin_lock_irqsave(&l2x0_lock, flags);
Thomas Gleixner2fd86582010-07-31 21:05:24 +0530171 /* Invalidating when L2 is enabled is a nono */
172 BUG_ON(readl(l2x0_base + L2X0_CTRL) & 1);
Catalin Marinas6775a552010-07-28 22:01:25 +0100173 writel_relaxed(l2x0_way_mask, l2x0_base + L2X0_INV_WAY);
Catalin Marinas9a6655e2010-08-31 13:05:22 +0100174 cache_wait_way(l2x0_base + L2X0_INV_WAY, l2x0_way_mask);
Catalin Marinas382266a2007-02-05 14:48:19 +0100175 cache_sync();
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500176 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
Catalin Marinas382266a2007-02-05 14:48:19 +0100177}
178
179static void l2x0_inv_range(unsigned long start, unsigned long end)
180{
Russell King3d107432009-11-19 11:41:09 +0000181 void __iomem *base = l2x0_base;
Russell King0eb948d2009-11-19 11:12:15 +0000182 unsigned long flags;
Catalin Marinas382266a2007-02-05 14:48:19 +0100183
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500184 raw_spin_lock_irqsave(&l2x0_lock, flags);
Rui Sousa4f6627a2007-09-15 00:56:19 +0100185 if (start & (CACHE_LINE_SIZE - 1)) {
186 start &= ~(CACHE_LINE_SIZE - 1);
Santosh Shilimkar9e655822010-02-04 19:42:42 +0100187 debug_writel(0x03);
Santosh Shilimkar424d6b12010-02-04 19:35:06 +0100188 l2x0_flush_line(start);
Santosh Shilimkar9e655822010-02-04 19:42:42 +0100189 debug_writel(0x00);
Rui Sousa4f6627a2007-09-15 00:56:19 +0100190 start += CACHE_LINE_SIZE;
191 }
192
193 if (end & (CACHE_LINE_SIZE - 1)) {
194 end &= ~(CACHE_LINE_SIZE - 1);
Santosh Shilimkar9e655822010-02-04 19:42:42 +0100195 debug_writel(0x03);
Santosh Shilimkar424d6b12010-02-04 19:35:06 +0100196 l2x0_flush_line(end);
Santosh Shilimkar9e655822010-02-04 19:42:42 +0100197 debug_writel(0x00);
Rui Sousa4f6627a2007-09-15 00:56:19 +0100198 }
199
Russell King0eb948d2009-11-19 11:12:15 +0000200 while (start < end) {
201 unsigned long blk_end = start + min(end - start, 4096UL);
202
203 while (start < blk_end) {
Santosh Shilimkar424d6b12010-02-04 19:35:06 +0100204 l2x0_inv_line(start);
Russell King0eb948d2009-11-19 11:12:15 +0000205 start += CACHE_LINE_SIZE;
206 }
207
208 if (blk_end < end) {
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500209 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
210 raw_spin_lock_irqsave(&l2x0_lock, flags);
Russell King0eb948d2009-11-19 11:12:15 +0000211 }
212 }
Russell King3d107432009-11-19 11:41:09 +0000213 cache_wait(base + L2X0_INV_LINE_PA, 1);
Catalin Marinas382266a2007-02-05 14:48:19 +0100214 cache_sync();
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500215 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
Catalin Marinas382266a2007-02-05 14:48:19 +0100216}
217
218static void l2x0_clean_range(unsigned long start, unsigned long end)
219{
Russell King3d107432009-11-19 11:41:09 +0000220 void __iomem *base = l2x0_base;
Russell King0eb948d2009-11-19 11:12:15 +0000221 unsigned long flags;
Catalin Marinas382266a2007-02-05 14:48:19 +0100222
Santosh Shilimkar444457c2010-07-11 14:58:41 +0530223 if ((end - start) >= l2x0_size) {
224 l2x0_clean_all();
225 return;
226 }
227
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500228 raw_spin_lock_irqsave(&l2x0_lock, flags);
Catalin Marinas382266a2007-02-05 14:48:19 +0100229 start &= ~(CACHE_LINE_SIZE - 1);
Russell King0eb948d2009-11-19 11:12:15 +0000230 while (start < end) {
231 unsigned long blk_end = start + min(end - start, 4096UL);
232
233 while (start < blk_end) {
Santosh Shilimkar424d6b12010-02-04 19:35:06 +0100234 l2x0_clean_line(start);
Russell King0eb948d2009-11-19 11:12:15 +0000235 start += CACHE_LINE_SIZE;
236 }
237
238 if (blk_end < end) {
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500239 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
240 raw_spin_lock_irqsave(&l2x0_lock, flags);
Russell King0eb948d2009-11-19 11:12:15 +0000241 }
242 }
Russell King3d107432009-11-19 11:41:09 +0000243 cache_wait(base + L2X0_CLEAN_LINE_PA, 1);
Catalin Marinas382266a2007-02-05 14:48:19 +0100244 cache_sync();
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500245 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
Catalin Marinas382266a2007-02-05 14:48:19 +0100246}
247
248static void l2x0_flush_range(unsigned long start, unsigned long end)
249{
Russell King3d107432009-11-19 11:41:09 +0000250 void __iomem *base = l2x0_base;
Russell King0eb948d2009-11-19 11:12:15 +0000251 unsigned long flags;
Catalin Marinas382266a2007-02-05 14:48:19 +0100252
Santosh Shilimkar444457c2010-07-11 14:58:41 +0530253 if ((end - start) >= l2x0_size) {
254 l2x0_flush_all();
255 return;
256 }
257
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500258 raw_spin_lock_irqsave(&l2x0_lock, flags);
Catalin Marinas382266a2007-02-05 14:48:19 +0100259 start &= ~(CACHE_LINE_SIZE - 1);
Russell King0eb948d2009-11-19 11:12:15 +0000260 while (start < end) {
261 unsigned long blk_end = start + min(end - start, 4096UL);
262
Santosh Shilimkar9e655822010-02-04 19:42:42 +0100263 debug_writel(0x03);
Russell King0eb948d2009-11-19 11:12:15 +0000264 while (start < blk_end) {
Santosh Shilimkar424d6b12010-02-04 19:35:06 +0100265 l2x0_flush_line(start);
Russell King0eb948d2009-11-19 11:12:15 +0000266 start += CACHE_LINE_SIZE;
267 }
Santosh Shilimkar9e655822010-02-04 19:42:42 +0100268 debug_writel(0x00);
Russell King0eb948d2009-11-19 11:12:15 +0000269
270 if (blk_end < end) {
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500271 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
272 raw_spin_lock_irqsave(&l2x0_lock, flags);
Russell King0eb948d2009-11-19 11:12:15 +0000273 }
274 }
Russell King3d107432009-11-19 11:41:09 +0000275 cache_wait(base + L2X0_CLEAN_INV_LINE_PA, 1);
Catalin Marinas382266a2007-02-05 14:48:19 +0100276 cache_sync();
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500277 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
Catalin Marinas382266a2007-02-05 14:48:19 +0100278}
279
Thomas Gleixner2fd86582010-07-31 21:05:24 +0530280static void l2x0_disable(void)
281{
282 unsigned long flags;
283
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500284 raw_spin_lock_irqsave(&l2x0_lock, flags);
Will Deacon38a89142011-07-01 14:36:19 +0100285 __l2x0_flush_all();
286 writel_relaxed(0, l2x0_base + L2X0_CTRL);
287 dsb();
Thomas Gleixnerbd31b852009-07-03 08:44:46 -0500288 raw_spin_unlock_irqrestore(&l2x0_lock, flags);
Thomas Gleixner2fd86582010-07-31 21:05:24 +0530289}
290
Russell King3e175ca2011-09-18 11:27:30 +0100291static void l2x0_unlock(u32 cache_id)
Linus Walleijbac7e6e2011-09-06 07:45:46 +0100292{
293 int lockregs;
294 int i;
295
296 if (cache_id == L2X0_CACHE_ID_PART_L310)
297 lockregs = 8;
298 else
299 /* L210 and unknown types */
300 lockregs = 1;
301
302 for (i = 0; i < lockregs; i++) {
303 writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_D_BASE +
304 i * L2X0_LOCKDOWN_STRIDE);
305 writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_I_BASE +
306 i * L2X0_LOCKDOWN_STRIDE);
307 }
308}
309
Russell King3e175ca2011-09-18 11:27:30 +0100310void __init l2x0_init(void __iomem *base, u32 aux_val, u32 aux_mask)
Catalin Marinas382266a2007-02-05 14:48:19 +0100311{
Russell King3e175ca2011-09-18 11:27:30 +0100312 u32 aux;
313 u32 cache_id;
314 u32 way_size = 0;
Jason McMullan64039be2010-05-05 18:59:37 +0100315 int ways;
316 const char *type;
Catalin Marinas382266a2007-02-05 14:48:19 +0100317
318 l2x0_base = base;
319
Catalin Marinas6775a552010-07-28 22:01:25 +0100320 cache_id = readl_relaxed(l2x0_base + L2X0_CACHE_ID);
321 aux = readl_relaxed(l2x0_base + L2X0_AUX_CTRL);
Jason McMullan64039be2010-05-05 18:59:37 +0100322
Sascha Hauer4082cfa2010-07-08 08:36:21 +0100323 aux &= aux_mask;
324 aux |= aux_val;
325
Jason McMullan64039be2010-05-05 18:59:37 +0100326 /* Determine the number of ways */
327 switch (cache_id & L2X0_CACHE_ID_PART_MASK) {
328 case L2X0_CACHE_ID_PART_L310:
329 if (aux & (1 << 16))
330 ways = 16;
331 else
332 ways = 8;
333 type = "L310";
334 break;
335 case L2X0_CACHE_ID_PART_L210:
336 ways = (aux >> 13) & 0xf;
337 type = "L210";
338 break;
339 default:
340 /* Assume unknown chips have 8 ways */
341 ways = 8;
342 type = "L2x0 series";
343 break;
344 }
345
346 l2x0_way_mask = (1 << ways) - 1;
347
Srinidhi Kasagar48371cd2009-12-02 06:18:03 +0100348 /*
Santosh Shilimkar5ba70372010-07-11 14:35:37 +0530349 * L2 cache Size = Way size * Number of ways
350 */
351 way_size = (aux & L2X0_AUX_CTRL_WAY_SIZE_MASK) >> 17;
352 way_size = 1 << (way_size + 3);
353 l2x0_size = ways * way_size * SZ_1K;
354
355 /*
Srinidhi Kasagar48371cd2009-12-02 06:18:03 +0100356 * Check if l2x0 controller is already enabled.
357 * If you are booting from non-secure mode
358 * accessing the below registers will fault.
359 */
Catalin Marinas6775a552010-07-28 22:01:25 +0100360 if (!(readl_relaxed(l2x0_base + L2X0_CTRL) & 1)) {
Linus Walleijbac7e6e2011-09-06 07:45:46 +0100361 /* Make sure that I&D is not locked down when starting */
362 l2x0_unlock(cache_id);
Catalin Marinas382266a2007-02-05 14:48:19 +0100363
Srinidhi Kasagar48371cd2009-12-02 06:18:03 +0100364 /* l2x0 controller is disabled */
Catalin Marinas6775a552010-07-28 22:01:25 +0100365 writel_relaxed(aux, l2x0_base + L2X0_AUX_CTRL);
Catalin Marinas382266a2007-02-05 14:48:19 +0100366
Barry Song91c2ebb2011-09-30 14:43:12 +0100367 l2x0_saved_regs.aux_ctrl = aux;
368
Srinidhi Kasagar48371cd2009-12-02 06:18:03 +0100369 l2x0_inv_all();
370
371 /* enable L2X0 */
Catalin Marinas6775a552010-07-28 22:01:25 +0100372 writel_relaxed(1, l2x0_base + L2X0_CTRL);
Srinidhi Kasagar48371cd2009-12-02 06:18:03 +0100373 }
Catalin Marinas382266a2007-02-05 14:48:19 +0100374
375 outer_cache.inv_range = l2x0_inv_range;
376 outer_cache.clean_range = l2x0_clean_range;
377 outer_cache.flush_range = l2x0_flush_range;
Catalin Marinas23107c52010-03-24 16:48:53 +0100378 outer_cache.sync = l2x0_cache_sync;
Thomas Gleixner2fd86582010-07-31 21:05:24 +0530379 outer_cache.flush_all = l2x0_flush_all;
380 outer_cache.inv_all = l2x0_inv_all;
381 outer_cache.disable = l2x0_disable;
Santosh Shilimkar2839e062011-03-08 06:59:54 +0100382 outer_cache.set_debug = l2x0_set_debug;
Catalin Marinas382266a2007-02-05 14:48:19 +0100383
Jason McMullan64039be2010-05-05 18:59:37 +0100384 printk(KERN_INFO "%s cache controller enabled\n", type);
Santosh Shilimkar5ba70372010-07-11 14:35:37 +0530385 printk(KERN_INFO "l2x0: %d ways, CACHE_ID 0x%08x, AUX_CTRL 0x%08x, Cache size: %d B\n",
386 ways, cache_id, aux, l2x0_size);
Catalin Marinas382266a2007-02-05 14:48:19 +0100387}
Rob Herring8c369262011-08-03 18:12:05 +0100388
389#ifdef CONFIG_OF
390static void __init l2x0_of_setup(const struct device_node *np,
Russell King3e175ca2011-09-18 11:27:30 +0100391 u32 *aux_val, u32 *aux_mask)
Rob Herring8c369262011-08-03 18:12:05 +0100392{
393 u32 data[2] = { 0, 0 };
394 u32 tag = 0;
395 u32 dirty = 0;
396 u32 val = 0, mask = 0;
397
398 of_property_read_u32(np, "arm,tag-latency", &tag);
399 if (tag) {
400 mask |= L2X0_AUX_CTRL_TAG_LATENCY_MASK;
401 val |= (tag - 1) << L2X0_AUX_CTRL_TAG_LATENCY_SHIFT;
402 }
403
404 of_property_read_u32_array(np, "arm,data-latency",
405 data, ARRAY_SIZE(data));
406 if (data[0] && data[1]) {
407 mask |= L2X0_AUX_CTRL_DATA_RD_LATENCY_MASK |
408 L2X0_AUX_CTRL_DATA_WR_LATENCY_MASK;
409 val |= ((data[0] - 1) << L2X0_AUX_CTRL_DATA_RD_LATENCY_SHIFT) |
410 ((data[1] - 1) << L2X0_AUX_CTRL_DATA_WR_LATENCY_SHIFT);
411 }
412
413 of_property_read_u32(np, "arm,dirty-latency", &dirty);
414 if (dirty) {
415 mask |= L2X0_AUX_CTRL_DIRTY_LATENCY_MASK;
416 val |= (dirty - 1) << L2X0_AUX_CTRL_DIRTY_LATENCY_SHIFT;
417 }
418
419 *aux_val &= ~mask;
420 *aux_val |= val;
421 *aux_mask &= ~mask;
422}
423
424static void __init pl310_of_setup(const struct device_node *np,
Russell King3e175ca2011-09-18 11:27:30 +0100425 u32 *aux_val, u32 *aux_mask)
Rob Herring8c369262011-08-03 18:12:05 +0100426{
427 u32 data[3] = { 0, 0, 0 };
428 u32 tag[3] = { 0, 0, 0 };
429 u32 filter[2] = { 0, 0 };
430
431 of_property_read_u32_array(np, "arm,tag-latency", tag, ARRAY_SIZE(tag));
432 if (tag[0] && tag[1] && tag[2])
433 writel_relaxed(
434 ((tag[0] - 1) << L2X0_LATENCY_CTRL_RD_SHIFT) |
435 ((tag[1] - 1) << L2X0_LATENCY_CTRL_WR_SHIFT) |
436 ((tag[2] - 1) << L2X0_LATENCY_CTRL_SETUP_SHIFT),
437 l2x0_base + L2X0_TAG_LATENCY_CTRL);
438
439 of_property_read_u32_array(np, "arm,data-latency",
440 data, ARRAY_SIZE(data));
441 if (data[0] && data[1] && data[2])
442 writel_relaxed(
443 ((data[0] - 1) << L2X0_LATENCY_CTRL_RD_SHIFT) |
444 ((data[1] - 1) << L2X0_LATENCY_CTRL_WR_SHIFT) |
445 ((data[2] - 1) << L2X0_LATENCY_CTRL_SETUP_SHIFT),
446 l2x0_base + L2X0_DATA_LATENCY_CTRL);
447
448 of_property_read_u32_array(np, "arm,filter-ranges",
449 filter, ARRAY_SIZE(filter));
Barry Song74d41f32011-09-14 03:20:01 +0100450 if (filter[1]) {
Rob Herring8c369262011-08-03 18:12:05 +0100451 writel_relaxed(ALIGN(filter[0] + filter[1], SZ_1M),
452 l2x0_base + L2X0_ADDR_FILTER_END);
453 writel_relaxed((filter[0] & ~(SZ_1M - 1)) | L2X0_ADDR_FILTER_EN,
454 l2x0_base + L2X0_ADDR_FILTER_START);
455 }
456}
457
Barry Song91c2ebb2011-09-30 14:43:12 +0100458static void __init pl310_save(void)
459{
460 u32 l2x0_revision = readl_relaxed(l2x0_base + L2X0_CACHE_ID) &
461 L2X0_CACHE_ID_RTL_MASK;
462
463 l2x0_saved_regs.tag_latency = readl_relaxed(l2x0_base +
464 L2X0_TAG_LATENCY_CTRL);
465 l2x0_saved_regs.data_latency = readl_relaxed(l2x0_base +
466 L2X0_DATA_LATENCY_CTRL);
467 l2x0_saved_regs.filter_end = readl_relaxed(l2x0_base +
468 L2X0_ADDR_FILTER_END);
469 l2x0_saved_regs.filter_start = readl_relaxed(l2x0_base +
470 L2X0_ADDR_FILTER_START);
471
472 if (l2x0_revision >= L2X0_CACHE_ID_RTL_R2P0) {
473 /*
474 * From r2p0, there is Prefetch offset/control register
475 */
476 l2x0_saved_regs.prefetch_ctrl = readl_relaxed(l2x0_base +
477 L2X0_PREFETCH_CTRL);
478 /*
479 * From r3p0, there is Power control register
480 */
481 if (l2x0_revision >= L2X0_CACHE_ID_RTL_R3P0)
482 l2x0_saved_regs.pwr_ctrl = readl_relaxed(l2x0_base +
483 L2X0_POWER_CTRL);
484 }
485}
486
487static void l2x0_resume(void)
488{
489 if (!(readl_relaxed(l2x0_base + L2X0_CTRL) & 1)) {
490 /* restore aux ctrl and enable l2 */
491 l2x0_unlock(readl_relaxed(l2x0_base + L2X0_CACHE_ID));
492
493 writel_relaxed(l2x0_saved_regs.aux_ctrl, l2x0_base +
494 L2X0_AUX_CTRL);
495
496 l2x0_inv_all();
497
498 writel_relaxed(1, l2x0_base + L2X0_CTRL);
499 }
500}
501
502static void pl310_resume(void)
503{
504 u32 l2x0_revision;
505
506 if (!(readl_relaxed(l2x0_base + L2X0_CTRL) & 1)) {
507 /* restore pl310 setup */
508 writel_relaxed(l2x0_saved_regs.tag_latency,
509 l2x0_base + L2X0_TAG_LATENCY_CTRL);
510 writel_relaxed(l2x0_saved_regs.data_latency,
511 l2x0_base + L2X0_DATA_LATENCY_CTRL);
512 writel_relaxed(l2x0_saved_regs.filter_end,
513 l2x0_base + L2X0_ADDR_FILTER_END);
514 writel_relaxed(l2x0_saved_regs.filter_start,
515 l2x0_base + L2X0_ADDR_FILTER_START);
516
517 l2x0_revision = readl_relaxed(l2x0_base + L2X0_CACHE_ID) &
518 L2X0_CACHE_ID_RTL_MASK;
519
520 if (l2x0_revision >= L2X0_CACHE_ID_RTL_R2P0) {
521 writel_relaxed(l2x0_saved_regs.prefetch_ctrl,
522 l2x0_base + L2X0_PREFETCH_CTRL);
523 if (l2x0_revision >= L2X0_CACHE_ID_RTL_R3P0)
524 writel_relaxed(l2x0_saved_regs.pwr_ctrl,
525 l2x0_base + L2X0_POWER_CTRL);
526 }
527 }
528
529 l2x0_resume();
530}
531
532static const struct l2x0_of_data pl310_data = {
533 pl310_of_setup,
534 pl310_save,
535 pl310_resume,
536};
537
538static const struct l2x0_of_data l2x0_data = {
539 l2x0_of_setup,
540 NULL,
541 l2x0_resume,
542};
543
Rob Herring8c369262011-08-03 18:12:05 +0100544static const struct of_device_id l2x0_ids[] __initconst = {
Barry Song91c2ebb2011-09-30 14:43:12 +0100545 { .compatible = "arm,pl310-cache", .data = (void *)&pl310_data },
546 { .compatible = "arm,l220-cache", .data = (void *)&l2x0_data },
547 { .compatible = "arm,l210-cache", .data = (void *)&l2x0_data },
Rob Herring8c369262011-08-03 18:12:05 +0100548 {}
549};
550
Russell King3e175ca2011-09-18 11:27:30 +0100551int __init l2x0_of_init(u32 aux_val, u32 aux_mask)
Rob Herring8c369262011-08-03 18:12:05 +0100552{
553 struct device_node *np;
Barry Song91c2ebb2011-09-30 14:43:12 +0100554 struct l2x0_of_data *data;
555 struct resource res;
Rob Herring8c369262011-08-03 18:12:05 +0100556
557 np = of_find_matching_node(NULL, l2x0_ids);
558 if (!np)
559 return -ENODEV;
Barry Song91c2ebb2011-09-30 14:43:12 +0100560
561 if (of_address_to_resource(np, 0, &res))
562 return -ENODEV;
563
564 l2x0_base = ioremap(res.start, resource_size(&res));
Rob Herring8c369262011-08-03 18:12:05 +0100565 if (!l2x0_base)
566 return -ENOMEM;
567
Barry Song91c2ebb2011-09-30 14:43:12 +0100568 l2x0_saved_regs.phy_base = res.start;
569
570 data = of_match_node(l2x0_ids, np)->data;
571
Rob Herring8c369262011-08-03 18:12:05 +0100572 /* L2 configuration can only be changed if the cache is disabled */
573 if (!(readl_relaxed(l2x0_base + L2X0_CTRL) & 1)) {
Barry Song91c2ebb2011-09-30 14:43:12 +0100574 if (data->setup)
575 data->setup(np, &aux_val, &aux_mask);
Rob Herring8c369262011-08-03 18:12:05 +0100576 }
Barry Song91c2ebb2011-09-30 14:43:12 +0100577
578 if (data->save)
579 data->save();
580
Rob Herring8c369262011-08-03 18:12:05 +0100581 l2x0_init(l2x0_base, aux_val, aux_mask);
Barry Song91c2ebb2011-09-30 14:43:12 +0100582
583 outer_cache.resume = data->resume;
Rob Herring8c369262011-08-03 18:12:05 +0100584 return 0;
585}
586#endif