| 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); | 
| Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 30 | static uint32_t l2x0_way_mask;	/* Bitmask of active ways */ | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 31 |  | 
| Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 32 | static inline void cache_wait(void __iomem *reg, unsigned long mask) | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 33 | { | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 34 | /* wait for the operation to complete */ | 
| Catalin Marinas | 6775a55 | 2010-07-28 22:01:25 +0100 | [diff] [blame] | 35 | while (readl_relaxed(reg) & mask) | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 36 | ; | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 37 | } | 
|  | 38 |  | 
|  | 39 | static inline void cache_sync(void) | 
|  | 40 | { | 
| Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 41 | void __iomem *base = l2x0_base; | 
| Catalin Marinas | 6775a55 | 2010-07-28 22:01:25 +0100 | [diff] [blame] | 42 | writel_relaxed(0, base + L2X0_CACHE_SYNC); | 
| Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 43 | cache_wait(base + L2X0_CACHE_SYNC, 1); | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 44 | } | 
|  | 45 |  | 
| Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 46 | static inline void l2x0_clean_line(unsigned long addr) | 
|  | 47 | { | 
|  | 48 | void __iomem *base = l2x0_base; | 
|  | 49 | cache_wait(base + L2X0_CLEAN_LINE_PA, 1); | 
| Catalin Marinas | 6775a55 | 2010-07-28 22:01:25 +0100 | [diff] [blame] | 50 | writel_relaxed(addr, base + L2X0_CLEAN_LINE_PA); | 
| Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 51 | } | 
|  | 52 |  | 
|  | 53 | static inline void l2x0_inv_line(unsigned long addr) | 
|  | 54 | { | 
|  | 55 | void __iomem *base = l2x0_base; | 
|  | 56 | cache_wait(base + L2X0_INV_LINE_PA, 1); | 
| Catalin Marinas | 6775a55 | 2010-07-28 22:01:25 +0100 | [diff] [blame] | 57 | writel_relaxed(addr, base + L2X0_INV_LINE_PA); | 
| Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 58 | } | 
|  | 59 |  | 
| Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 60 | #ifdef CONFIG_PL310_ERRATA_588369 | 
|  | 61 | static void debug_writel(unsigned long val) | 
|  | 62 | { | 
|  | 63 | extern void omap_smc1(u32 fn, u32 arg); | 
|  | 64 |  | 
|  | 65 | /* | 
|  | 66 | * Texas Instrument secure monitor api to modify the | 
|  | 67 | * PL310 Debug Control Register. | 
|  | 68 | */ | 
|  | 69 | omap_smc1(0x100, val); | 
|  | 70 | } | 
|  | 71 |  | 
|  | 72 | static inline void l2x0_flush_line(unsigned long addr) | 
|  | 73 | { | 
|  | 74 | void __iomem *base = l2x0_base; | 
|  | 75 |  | 
|  | 76 | /* Clean by PA followed by Invalidate by PA */ | 
|  | 77 | cache_wait(base + L2X0_CLEAN_LINE_PA, 1); | 
| Catalin Marinas | 6775a55 | 2010-07-28 22:01:25 +0100 | [diff] [blame] | 78 | writel_relaxed(addr, base + L2X0_CLEAN_LINE_PA); | 
| Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 79 | cache_wait(base + L2X0_INV_LINE_PA, 1); | 
| Catalin Marinas | 6775a55 | 2010-07-28 22:01:25 +0100 | [diff] [blame] | 80 | writel_relaxed(addr, base + L2X0_INV_LINE_PA); | 
| Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 81 | } | 
|  | 82 | #else | 
|  | 83 |  | 
|  | 84 | /* Optimised out for non-errata case */ | 
|  | 85 | static inline void debug_writel(unsigned long val) | 
|  | 86 | { | 
|  | 87 | } | 
|  | 88 |  | 
| Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 89 | static inline void l2x0_flush_line(unsigned long addr) | 
|  | 90 | { | 
|  | 91 | void __iomem *base = l2x0_base; | 
|  | 92 | cache_wait(base + L2X0_CLEAN_INV_LINE_PA, 1); | 
| Catalin Marinas | 6775a55 | 2010-07-28 22:01:25 +0100 | [diff] [blame] | 93 | writel_relaxed(addr, base + L2X0_CLEAN_INV_LINE_PA); | 
| Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 94 | } | 
| Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 95 | #endif | 
| Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 96 |  | 
| Catalin Marinas | 23107c5 | 2010-03-24 16:48:53 +0100 | [diff] [blame] | 97 | static void l2x0_cache_sync(void) | 
|  | 98 | { | 
|  | 99 | unsigned long flags; | 
|  | 100 |  | 
|  | 101 | spin_lock_irqsave(&l2x0_lock, flags); | 
|  | 102 | cache_sync(); | 
|  | 103 | spin_unlock_irqrestore(&l2x0_lock, flags); | 
|  | 104 | } | 
|  | 105 |  | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 106 | static inline void l2x0_inv_all(void) | 
|  | 107 | { | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 108 | unsigned long flags; | 
|  | 109 |  | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 110 | /* invalidate all ways */ | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 111 | spin_lock_irqsave(&l2x0_lock, flags); | 
| Catalin Marinas | 6775a55 | 2010-07-28 22:01:25 +0100 | [diff] [blame] | 112 | writel_relaxed(l2x0_way_mask, l2x0_base + L2X0_INV_WAY); | 
| Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 113 | cache_wait(l2x0_base + L2X0_INV_WAY, l2x0_way_mask); | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 114 | cache_sync(); | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 115 | spin_unlock_irqrestore(&l2x0_lock, flags); | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 116 | } | 
|  | 117 |  | 
|  | 118 | static void l2x0_inv_range(unsigned long start, unsigned long end) | 
|  | 119 | { | 
| Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 120 | void __iomem *base = l2x0_base; | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 121 | unsigned long flags; | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 122 |  | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 123 | spin_lock_irqsave(&l2x0_lock, flags); | 
| Rui Sousa | 4f6627a | 2007-09-15 00:56:19 +0100 | [diff] [blame] | 124 | if (start & (CACHE_LINE_SIZE - 1)) { | 
|  | 125 | start &= ~(CACHE_LINE_SIZE - 1); | 
| Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 126 | debug_writel(0x03); | 
| Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 127 | l2x0_flush_line(start); | 
| Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 128 | debug_writel(0x00); | 
| Rui Sousa | 4f6627a | 2007-09-15 00:56:19 +0100 | [diff] [blame] | 129 | start += CACHE_LINE_SIZE; | 
|  | 130 | } | 
|  | 131 |  | 
|  | 132 | if (end & (CACHE_LINE_SIZE - 1)) { | 
|  | 133 | end &= ~(CACHE_LINE_SIZE - 1); | 
| Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 134 | debug_writel(0x03); | 
| Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 135 | l2x0_flush_line(end); | 
| Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 136 | debug_writel(0x00); | 
| Rui Sousa | 4f6627a | 2007-09-15 00:56:19 +0100 | [diff] [blame] | 137 | } | 
|  | 138 |  | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 139 | while (start < end) { | 
|  | 140 | unsigned long blk_end = start + min(end - start, 4096UL); | 
|  | 141 |  | 
|  | 142 | while (start < blk_end) { | 
| Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 143 | l2x0_inv_line(start); | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 144 | start += CACHE_LINE_SIZE; | 
|  | 145 | } | 
|  | 146 |  | 
|  | 147 | if (blk_end < end) { | 
|  | 148 | spin_unlock_irqrestore(&l2x0_lock, flags); | 
|  | 149 | spin_lock_irqsave(&l2x0_lock, flags); | 
|  | 150 | } | 
|  | 151 | } | 
| Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 152 | cache_wait(base + L2X0_INV_LINE_PA, 1); | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 153 | cache_sync(); | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 154 | spin_unlock_irqrestore(&l2x0_lock, flags); | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 155 | } | 
|  | 156 |  | 
|  | 157 | static void l2x0_clean_range(unsigned long start, unsigned long end) | 
|  | 158 | { | 
| Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 159 | void __iomem *base = l2x0_base; | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 160 | unsigned long flags; | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 161 |  | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 162 | spin_lock_irqsave(&l2x0_lock, flags); | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 163 | start &= ~(CACHE_LINE_SIZE - 1); | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 164 | while (start < end) { | 
|  | 165 | unsigned long blk_end = start + min(end - start, 4096UL); | 
|  | 166 |  | 
|  | 167 | while (start < blk_end) { | 
| Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 168 | l2x0_clean_line(start); | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 169 | start += CACHE_LINE_SIZE; | 
|  | 170 | } | 
|  | 171 |  | 
|  | 172 | if (blk_end < end) { | 
|  | 173 | spin_unlock_irqrestore(&l2x0_lock, flags); | 
|  | 174 | spin_lock_irqsave(&l2x0_lock, flags); | 
|  | 175 | } | 
|  | 176 | } | 
| Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 177 | cache_wait(base + L2X0_CLEAN_LINE_PA, 1); | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 178 | cache_sync(); | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 179 | spin_unlock_irqrestore(&l2x0_lock, flags); | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 180 | } | 
|  | 181 |  | 
|  | 182 | static void l2x0_flush_range(unsigned long start, unsigned long end) | 
|  | 183 | { | 
| Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 184 | void __iomem *base = l2x0_base; | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 185 | unsigned long flags; | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 186 |  | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 187 | spin_lock_irqsave(&l2x0_lock, flags); | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 188 | start &= ~(CACHE_LINE_SIZE - 1); | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 189 | while (start < end) { | 
|  | 190 | unsigned long blk_end = start + min(end - start, 4096UL); | 
|  | 191 |  | 
| Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 192 | debug_writel(0x03); | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 193 | while (start < blk_end) { | 
| Santosh Shilimkar | 424d6b1 | 2010-02-04 19:35:06 +0100 | [diff] [blame] | 194 | l2x0_flush_line(start); | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 195 | start += CACHE_LINE_SIZE; | 
|  | 196 | } | 
| Santosh Shilimkar | 9e65582 | 2010-02-04 19:42:42 +0100 | [diff] [blame] | 197 | debug_writel(0x00); | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 198 |  | 
|  | 199 | if (blk_end < end) { | 
|  | 200 | spin_unlock_irqrestore(&l2x0_lock, flags); | 
|  | 201 | spin_lock_irqsave(&l2x0_lock, flags); | 
|  | 202 | } | 
|  | 203 | } | 
| Russell King | 3d10743 | 2009-11-19 11:41:09 +0000 | [diff] [blame] | 204 | cache_wait(base + L2X0_CLEAN_INV_LINE_PA, 1); | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 205 | cache_sync(); | 
| Russell King | 0eb948d | 2009-11-19 11:12:15 +0000 | [diff] [blame] | 206 | spin_unlock_irqrestore(&l2x0_lock, flags); | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 207 | } | 
|  | 208 |  | 
|  | 209 | void __init l2x0_init(void __iomem *base, __u32 aux_val, __u32 aux_mask) | 
|  | 210 | { | 
|  | 211 | __u32 aux; | 
| Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 212 | __u32 cache_id; | 
|  | 213 | int ways; | 
|  | 214 | const char *type; | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 215 |  | 
|  | 216 | l2x0_base = base; | 
|  | 217 |  | 
| Catalin Marinas | 6775a55 | 2010-07-28 22:01:25 +0100 | [diff] [blame] | 218 | cache_id = readl_relaxed(l2x0_base + L2X0_CACHE_ID); | 
|  | 219 | aux = readl_relaxed(l2x0_base + L2X0_AUX_CTRL); | 
| Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 220 |  | 
| Sascha Hauer | 4082cfa | 2010-07-08 08:36:21 +0100 | [diff] [blame] | 221 | aux &= aux_mask; | 
|  | 222 | aux |= aux_val; | 
|  | 223 |  | 
| Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 224 | /* Determine the number of ways */ | 
|  | 225 | switch (cache_id & L2X0_CACHE_ID_PART_MASK) { | 
|  | 226 | case L2X0_CACHE_ID_PART_L310: | 
|  | 227 | if (aux & (1 << 16)) | 
|  | 228 | ways = 16; | 
|  | 229 | else | 
|  | 230 | ways = 8; | 
|  | 231 | type = "L310"; | 
|  | 232 | break; | 
|  | 233 | case L2X0_CACHE_ID_PART_L210: | 
|  | 234 | ways = (aux >> 13) & 0xf; | 
|  | 235 | type = "L210"; | 
|  | 236 | break; | 
|  | 237 | default: | 
|  | 238 | /* Assume unknown chips have 8 ways */ | 
|  | 239 | ways = 8; | 
|  | 240 | type = "L2x0 series"; | 
|  | 241 | break; | 
|  | 242 | } | 
|  | 243 |  | 
|  | 244 | l2x0_way_mask = (1 << ways) - 1; | 
|  | 245 |  | 
| Srinidhi Kasagar | 48371cd | 2009-12-02 06:18:03 +0100 | [diff] [blame] | 246 | /* | 
|  | 247 | * Check if l2x0 controller is already enabled. | 
|  | 248 | * If you are booting from non-secure mode | 
|  | 249 | * accessing the below registers will fault. | 
|  | 250 | */ | 
| Catalin Marinas | 6775a55 | 2010-07-28 22:01:25 +0100 | [diff] [blame] | 251 | if (!(readl_relaxed(l2x0_base + L2X0_CTRL) & 1)) { | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 252 |  | 
| Srinidhi Kasagar | 48371cd | 2009-12-02 06:18:03 +0100 | [diff] [blame] | 253 | /* l2x0 controller is disabled */ | 
| Catalin Marinas | 6775a55 | 2010-07-28 22:01:25 +0100 | [diff] [blame] | 254 | writel_relaxed(aux, l2x0_base + L2X0_AUX_CTRL); | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 255 |  | 
| Srinidhi Kasagar | 48371cd | 2009-12-02 06:18:03 +0100 | [diff] [blame] | 256 | l2x0_inv_all(); | 
|  | 257 |  | 
|  | 258 | /* enable L2X0 */ | 
| Catalin Marinas | 6775a55 | 2010-07-28 22:01:25 +0100 | [diff] [blame] | 259 | writel_relaxed(1, l2x0_base + L2X0_CTRL); | 
| Srinidhi Kasagar | 48371cd | 2009-12-02 06:18:03 +0100 | [diff] [blame] | 260 | } | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 261 |  | 
|  | 262 | outer_cache.inv_range = l2x0_inv_range; | 
|  | 263 | outer_cache.clean_range = l2x0_clean_range; | 
|  | 264 | outer_cache.flush_range = l2x0_flush_range; | 
| Catalin Marinas | 23107c5 | 2010-03-24 16:48:53 +0100 | [diff] [blame] | 265 | outer_cache.sync = l2x0_cache_sync; | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 266 |  | 
| Jason McMullan | 64039be | 2010-05-05 18:59:37 +0100 | [diff] [blame] | 267 | printk(KERN_INFO "%s cache controller enabled\n", type); | 
|  | 268 | printk(KERN_INFO "l2x0: %d ways, CACHE_ID 0x%08x, AUX_CTRL 0x%08x\n", | 
|  | 269 | ways, cache_id, aux); | 
| Catalin Marinas | 382266a | 2007-02-05 14:48:19 +0100 | [diff] [blame] | 270 | } |