2 * arch/arm/mm/cache-l2x0.c - L210/L220 cache controller support
4 * Copyright (C) 2007 ARM Limited
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.
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.
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
19 #include <linux/init.h>
20 #include <linux/spinlock.h>
23 #include <asm/cacheflush.h>
24 #include <asm/hardware/cache-l2x0.h>
26 #define CACHE_LINE_SIZE 32
28 static void __iomem
*l2x0_base
;
29 static DEFINE_SPINLOCK(l2x0_lock
);
31 static inline void cache_wait(void __iomem
*reg
, unsigned long mask
)
33 /* wait for the operation to complete */
34 while (readl(reg
) & mask
)
38 static inline void cache_sync(void)
40 void __iomem
*base
= l2x0_base
;
41 writel(0, base
+ L2X0_CACHE_SYNC
);
42 cache_wait(base
+ L2X0_CACHE_SYNC
, 1);
45 static inline void l2x0_inv_all(void)
49 /* invalidate all ways */
50 spin_lock_irqsave(&l2x0_lock
, flags
);
51 writel(0xff, l2x0_base
+ L2X0_INV_WAY
);
52 cache_wait(l2x0_base
+ L2X0_INV_WAY
, 0xff);
54 spin_unlock_irqrestore(&l2x0_lock
, flags
);
57 static void l2x0_inv_range(unsigned long start
, unsigned long end
)
59 void __iomem
*base
= l2x0_base
;
62 spin_lock_irqsave(&l2x0_lock
, flags
);
63 if (start
& (CACHE_LINE_SIZE
- 1)) {
64 start
&= ~(CACHE_LINE_SIZE
- 1);
65 cache_wait(base
+ L2X0_CLEAN_INV_LINE_PA
, 1);
66 writel(start
, base
+ L2X0_CLEAN_INV_LINE_PA
);
67 start
+= CACHE_LINE_SIZE
;
70 if (end
& (CACHE_LINE_SIZE
- 1)) {
71 end
&= ~(CACHE_LINE_SIZE
- 1);
72 cache_wait(base
+ L2X0_CLEAN_INV_LINE_PA
, 1);
73 writel(end
, base
+ L2X0_CLEAN_INV_LINE_PA
);
77 unsigned long blk_end
= start
+ min(end
- start
, 4096UL);
79 while (start
< blk_end
) {
80 cache_wait(base
+ L2X0_INV_LINE_PA
, 1);
81 writel(start
, base
+ L2X0_INV_LINE_PA
);
82 start
+= CACHE_LINE_SIZE
;
86 spin_unlock_irqrestore(&l2x0_lock
, flags
);
87 spin_lock_irqsave(&l2x0_lock
, flags
);
90 cache_wait(base
+ L2X0_INV_LINE_PA
, 1);
92 spin_unlock_irqrestore(&l2x0_lock
, flags
);
95 static void l2x0_clean_range(unsigned long start
, unsigned long end
)
97 void __iomem
*base
= l2x0_base
;
100 spin_lock_irqsave(&l2x0_lock
, flags
);
101 start
&= ~(CACHE_LINE_SIZE
- 1);
102 while (start
< end
) {
103 unsigned long blk_end
= start
+ min(end
- start
, 4096UL);
105 while (start
< blk_end
) {
106 cache_wait(base
+ L2X0_CLEAN_LINE_PA
, 1);
107 writel(start
, base
+ L2X0_CLEAN_LINE_PA
);
108 start
+= CACHE_LINE_SIZE
;
112 spin_unlock_irqrestore(&l2x0_lock
, flags
);
113 spin_lock_irqsave(&l2x0_lock
, flags
);
116 cache_wait(base
+ L2X0_CLEAN_LINE_PA
, 1);
118 spin_unlock_irqrestore(&l2x0_lock
, flags
);
121 static void l2x0_flush_range(unsigned long start
, unsigned long end
)
123 void __iomem
*base
= l2x0_base
;
126 spin_lock_irqsave(&l2x0_lock
, flags
);
127 start
&= ~(CACHE_LINE_SIZE
- 1);
128 while (start
< end
) {
129 unsigned long blk_end
= start
+ min(end
- start
, 4096UL);
131 while (start
< blk_end
) {
132 cache_wait(base
+ L2X0_CLEAN_INV_LINE_PA
, 1);
133 writel(start
, base
+ L2X0_CLEAN_INV_LINE_PA
);
134 start
+= CACHE_LINE_SIZE
;
138 spin_unlock_irqrestore(&l2x0_lock
, flags
);
139 spin_lock_irqsave(&l2x0_lock
, flags
);
142 cache_wait(base
+ L2X0_CLEAN_INV_LINE_PA
, 1);
144 spin_unlock_irqrestore(&l2x0_lock
, flags
);
147 void __init
l2x0_init(void __iomem
*base
, __u32 aux_val
, __u32 aux_mask
)
154 * Check if l2x0 controller is already enabled.
155 * If you are booting from non-secure mode
156 * accessing the below registers will fault.
158 if (!(readl(l2x0_base
+ L2X0_CTRL
) & 1)) {
160 /* l2x0 controller is disabled */
162 aux
= readl(l2x0_base
+ L2X0_AUX_CTRL
);
165 writel(aux
, l2x0_base
+ L2X0_AUX_CTRL
);
170 writel(1, l2x0_base
+ L2X0_CTRL
);
173 outer_cache
.inv_range
= l2x0_inv_range
;
174 outer_cache
.clean_range
= l2x0_clean_range
;
175 outer_cache
.flush_range
= l2x0_flush_range
;
177 printk(KERN_INFO
"L2X0 cache controller enabled\n");