Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mm/cache-l2x0.c - L210/L220 cache controller support |
| 3 | * |
| 4 | * Copyright (C) 2007 ARM Limited |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License version 2 as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 18 | */ |
| 19 | #include <linux/init.h> |
Catalin Marinas | 0762097 | 2007-07-20 11:42:40 +0100 | [diff] [blame] | 20 | #include <linux/spinlock.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 21 | #include <linux/io.h> |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 22 | |
| 23 | #include <asm/cacheflush.h> |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 24 | #include <asm/hardware/cache-l2x0.h> |
| 25 | |
| 26 | #define CACHE_LINE_SIZE 32 |
| 27 | |
| 28 | static void __iomem *l2x0_base; |
Catalin Marinas | 0762097 | 2007-07-20 11:42:40 +0100 | [diff] [blame] | 29 | static DEFINE_SPINLOCK(l2x0_lock); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 30 | |
Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 31 | static inline void cache_wait(void __iomem *reg, unsigned long mask) |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 32 | { |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 33 | /* wait for the operation to complete */ |
Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 34 | while (readl(reg) & mask) |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 35 | ; |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | static inline void cache_sync(void) |
| 39 | { |
Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 40 | void __iomem *base = l2x0_base; |
| 41 | writel(0, base + L2X0_CACHE_SYNC); |
| 42 | cache_wait(base + L2X0_CACHE_SYNC, 1); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 43 | } |
| 44 | |
Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 45 | static inline void l2x0_clean_line(unsigned long addr) |
| 46 | { |
| 47 | void __iomem *base = l2x0_base; |
| 48 | cache_wait(base + L2X0_CLEAN_LINE_PA, 1); |
| 49 | writel(addr, base + L2X0_CLEAN_LINE_PA); |
| 50 | } |
| 51 | |
| 52 | static inline void l2x0_inv_line(unsigned long addr) |
| 53 | { |
| 54 | void __iomem *base = l2x0_base; |
| 55 | cache_wait(base + L2X0_INV_LINE_PA, 1); |
| 56 | writel(addr, base + L2X0_INV_LINE_PA); |
| 57 | } |
| 58 | |
Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 59 | #ifdef CONFIG_PL310_ERRATA_588369 |
| 60 | static void debug_writel(unsigned long val) |
| 61 | { |
| 62 | extern void omap_smc1(u32 fn, u32 arg); |
| 63 | |
| 64 | /* |
| 65 | * Texas Instrument secure monitor api to modify the |
| 66 | * PL310 Debug Control Register. |
| 67 | */ |
| 68 | omap_smc1(0x100, val); |
| 69 | } |
| 70 | |
| 71 | static inline void l2x0_flush_line(unsigned long addr) |
| 72 | { |
| 73 | void __iomem *base = l2x0_base; |
| 74 | |
| 75 | /* Clean by PA followed by Invalidate by PA */ |
| 76 | cache_wait(base + L2X0_CLEAN_LINE_PA, 1); |
| 77 | writel(addr, base + L2X0_CLEAN_LINE_PA); |
| 78 | cache_wait(base + L2X0_INV_LINE_PA, 1); |
| 79 | writel(addr, base + L2X0_INV_LINE_PA); |
| 80 | } |
| 81 | #else |
| 82 | |
| 83 | /* Optimised out for non-errata case */ |
| 84 | static inline void debug_writel(unsigned long val) |
| 85 | { |
| 86 | } |
| 87 | |
Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 88 | static inline void l2x0_flush_line(unsigned long addr) |
| 89 | { |
| 90 | void __iomem *base = l2x0_base; |
| 91 | cache_wait(base + L2X0_CLEAN_INV_LINE_PA, 1); |
| 92 | writel(addr, base + L2X0_CLEAN_INV_LINE_PA); |
| 93 | } |
Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 94 | #endif |
Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 95 | |
Catalin Marinas | 23107c5 | 2010-03-24 16:48:53 +0100 | [diff] [blame^] | 96 | static void l2x0_cache_sync(void) |
| 97 | { |
| 98 | unsigned long flags; |
| 99 | |
| 100 | spin_lock_irqsave(&l2x0_lock, flags); |
| 101 | cache_sync(); |
| 102 | spin_unlock_irqrestore(&l2x0_lock, flags); |
| 103 | } |
| 104 | |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 105 | static inline void l2x0_inv_all(void) |
| 106 | { |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 107 | unsigned long flags; |
| 108 | |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 109 | /* invalidate all ways */ |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 110 | spin_lock_irqsave(&l2x0_lock, flags); |
Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 111 | writel(0xff, l2x0_base + L2X0_INV_WAY); |
| 112 | cache_wait(l2x0_base + L2X0_INV_WAY, 0xff); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 113 | cache_sync(); |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 114 | spin_unlock_irqrestore(&l2x0_lock, flags); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | static void l2x0_inv_range(unsigned long start, unsigned long end) |
| 118 | { |
Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 119 | void __iomem *base = l2x0_base; |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 120 | unsigned long flags; |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 121 | |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 122 | spin_lock_irqsave(&l2x0_lock, flags); |
Rui Sousa | 4f6627a | 2007-09-15 00:56:19 +0100 | [diff] [blame] | 123 | if (start & (CACHE_LINE_SIZE - 1)) { |
| 124 | start &= ~(CACHE_LINE_SIZE - 1); |
Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 125 | debug_writel(0x03); |
Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 126 | l2x0_flush_line(start); |
Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 127 | debug_writel(0x00); |
Rui Sousa | 4f6627a | 2007-09-15 00:56:19 +0100 | [diff] [blame] | 128 | start += CACHE_LINE_SIZE; |
| 129 | } |
| 130 | |
| 131 | if (end & (CACHE_LINE_SIZE - 1)) { |
| 132 | end &= ~(CACHE_LINE_SIZE - 1); |
Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 133 | debug_writel(0x03); |
Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 134 | l2x0_flush_line(end); |
Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 135 | debug_writel(0x00); |
Rui Sousa | 4f6627a | 2007-09-15 00:56:19 +0100 | [diff] [blame] | 136 | } |
| 137 | |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 138 | while (start < end) { |
| 139 | unsigned long blk_end = start + min(end - start, 4096UL); |
| 140 | |
| 141 | while (start < blk_end) { |
Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 142 | l2x0_inv_line(start); |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 143 | start += CACHE_LINE_SIZE; |
| 144 | } |
| 145 | |
| 146 | if (blk_end < end) { |
| 147 | spin_unlock_irqrestore(&l2x0_lock, flags); |
| 148 | spin_lock_irqsave(&l2x0_lock, flags); |
| 149 | } |
| 150 | } |
Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 151 | cache_wait(base + L2X0_INV_LINE_PA, 1); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 152 | cache_sync(); |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 153 | spin_unlock_irqrestore(&l2x0_lock, flags); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | static void l2x0_clean_range(unsigned long start, unsigned long end) |
| 157 | { |
Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 158 | void __iomem *base = l2x0_base; |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 159 | unsigned long flags; |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 160 | |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 161 | spin_lock_irqsave(&l2x0_lock, flags); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 162 | start &= ~(CACHE_LINE_SIZE - 1); |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 163 | while (start < end) { |
| 164 | unsigned long blk_end = start + min(end - start, 4096UL); |
| 165 | |
| 166 | while (start < blk_end) { |
Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 167 | l2x0_clean_line(start); |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 168 | start += CACHE_LINE_SIZE; |
| 169 | } |
| 170 | |
| 171 | if (blk_end < end) { |
| 172 | spin_unlock_irqrestore(&l2x0_lock, flags); |
| 173 | spin_lock_irqsave(&l2x0_lock, flags); |
| 174 | } |
| 175 | } |
Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 176 | cache_wait(base + L2X0_CLEAN_LINE_PA, 1); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 177 | cache_sync(); |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 178 | spin_unlock_irqrestore(&l2x0_lock, flags); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 179 | } |
| 180 | |
| 181 | static void l2x0_flush_range(unsigned long start, unsigned long end) |
| 182 | { |
Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 183 | void __iomem *base = l2x0_base; |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 184 | unsigned long flags; |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 185 | |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 186 | spin_lock_irqsave(&l2x0_lock, flags); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 187 | start &= ~(CACHE_LINE_SIZE - 1); |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 188 | while (start < end) { |
| 189 | unsigned long blk_end = start + min(end - start, 4096UL); |
| 190 | |
Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 191 | debug_writel(0x03); |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 192 | while (start < blk_end) { |
Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 193 | l2x0_flush_line(start); |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 194 | start += CACHE_LINE_SIZE; |
| 195 | } |
Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 196 | debug_writel(0x00); |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 197 | |
| 198 | if (blk_end < end) { |
| 199 | spin_unlock_irqrestore(&l2x0_lock, flags); |
| 200 | spin_lock_irqsave(&l2x0_lock, flags); |
| 201 | } |
| 202 | } |
Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 203 | cache_wait(base + L2X0_CLEAN_INV_LINE_PA, 1); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 204 | cache_sync(); |
Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 205 | spin_unlock_irqrestore(&l2x0_lock, flags); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 206 | } |
| 207 | |
| 208 | void __init l2x0_init(void __iomem *base, __u32 aux_val, __u32 aux_mask) |
| 209 | { |
| 210 | __u32 aux; |
| 211 | |
| 212 | l2x0_base = base; |
| 213 | |
Srinidhi Kasagar | 48371cd | 2009-12-02 06:18:03 +0100 | [diff] [blame] | 214 | /* |
| 215 | * Check if l2x0 controller is already enabled. |
| 216 | * If you are booting from non-secure mode |
| 217 | * accessing the below registers will fault. |
| 218 | */ |
| 219 | if (!(readl(l2x0_base + L2X0_CTRL) & 1)) { |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 220 | |
Srinidhi Kasagar | 48371cd | 2009-12-02 06:18:03 +0100 | [diff] [blame] | 221 | /* l2x0 controller is disabled */ |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 222 | |
Srinidhi Kasagar | 48371cd | 2009-12-02 06:18:03 +0100 | [diff] [blame] | 223 | aux = readl(l2x0_base + L2X0_AUX_CTRL); |
| 224 | aux &= aux_mask; |
| 225 | aux |= aux_val; |
| 226 | writel(aux, l2x0_base + L2X0_AUX_CTRL); |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 227 | |
Srinidhi Kasagar | 48371cd | 2009-12-02 06:18:03 +0100 | [diff] [blame] | 228 | l2x0_inv_all(); |
| 229 | |
| 230 | /* enable L2X0 */ |
| 231 | writel(1, l2x0_base + L2X0_CTRL); |
| 232 | } |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 233 | |
| 234 | outer_cache.inv_range = l2x0_inv_range; |
| 235 | outer_cache.clean_range = l2x0_clean_range; |
| 236 | outer_cache.flush_range = l2x0_flush_range; |
Catalin Marinas | 23107c5 | 2010-03-24 16:48:53 +0100 | [diff] [blame^] | 237 | outer_cache.sync = l2x0_cache_sync; |
Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 238 | |
| 239 | printk(KERN_INFO "L2X0 cache controller enabled\n"); |
| 240 | } |