David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 1 | /* |
| 2 | * This file is subject to the terms and conditions of the GNU General Public |
| 3 | * License. See the file "COPYING" in the main directory of this archive |
| 4 | * for more details. |
| 5 | * |
| 6 | * Copyright (C) 2005-2007 Cavium Networks |
| 7 | */ |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 8 | #include <linux/export.h> |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 9 | #include <linux/init.h> |
| 10 | #include <linux/kernel.h> |
| 11 | #include <linux/sched.h> |
Ralf Baechle | 631330f | 2009-06-19 14:05:26 +0100 | [diff] [blame] | 12 | #include <linux/smp.h> |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 13 | #include <linux/mm.h> |
| 14 | #include <linux/bitops.h> |
| 15 | #include <linux/cpu.h> |
| 16 | #include <linux/io.h> |
| 17 | |
| 18 | #include <asm/bcache.h> |
| 19 | #include <asm/bootinfo.h> |
| 20 | #include <asm/cacheops.h> |
| 21 | #include <asm/cpu-features.h> |
Ralf Baechle | 69f24d1 | 2013-09-17 10:25:47 +0200 | [diff] [blame] | 22 | #include <asm/cpu-type.h> |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 23 | #include <asm/page.h> |
| 24 | #include <asm/pgtable.h> |
| 25 | #include <asm/r4kcache.h> |
David Daney | 586016e | 2012-05-15 00:04:48 -0700 | [diff] [blame] | 26 | #include <asm/traps.h> |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 27 | #include <asm/mmu_context.h> |
| 28 | #include <asm/war.h> |
| 29 | |
| 30 | #include <asm/octeon/octeon.h> |
| 31 | |
| 32 | unsigned long long cache_err_dcache[NR_CPUS]; |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 33 | EXPORT_SYMBOL_GPL(cache_err_dcache); |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 34 | |
| 35 | /** |
| 36 | * Octeon automatically flushes the dcache on tlb changes, so |
| 37 | * from Linux's viewpoint it acts much like a physically |
| 38 | * tagged cache. No flushing is needed |
| 39 | * |
| 40 | */ |
| 41 | static void octeon_flush_data_cache_page(unsigned long addr) |
| 42 | { |
| 43 | /* Nothing to do */ |
| 44 | } |
| 45 | |
| 46 | static inline void octeon_local_flush_icache(void) |
| 47 | { |
| 48 | asm volatile ("synci 0($0)"); |
| 49 | } |
| 50 | |
| 51 | /* |
| 52 | * Flush local I-cache for the specified range. |
| 53 | */ |
| 54 | static void local_octeon_flush_icache_range(unsigned long start, |
| 55 | unsigned long end) |
| 56 | { |
| 57 | octeon_local_flush_icache(); |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Flush caches as necessary for all cores affected by a |
| 62 | * vma. If no vma is supplied, all cores are flushed. |
| 63 | * |
| 64 | * @vma: VMA to flush or NULL to flush all icaches. |
| 65 | */ |
| 66 | static void octeon_flush_icache_all_cores(struct vm_area_struct *vma) |
| 67 | { |
| 68 | extern void octeon_send_ipi_single(int cpu, unsigned int action); |
| 69 | #ifdef CONFIG_SMP |
| 70 | int cpu; |
| 71 | cpumask_t mask; |
| 72 | #endif |
| 73 | |
| 74 | mb(); |
| 75 | octeon_local_flush_icache(); |
| 76 | #ifdef CONFIG_SMP |
| 77 | preempt_disable(); |
| 78 | cpu = smp_processor_id(); |
| 79 | |
| 80 | /* |
| 81 | * If we have a vma structure, we only need to worry about |
| 82 | * cores it has been used on |
| 83 | */ |
| 84 | if (vma) |
Rusty Russell | 55b8cab | 2009-09-24 09:34:50 -0600 | [diff] [blame] | 85 | mask = *mm_cpumask(vma->vm_mm); |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 86 | else |
Rusty Russell | 0b5f9c0 | 2012-03-29 15:38:30 +1030 | [diff] [blame] | 87 | mask = *cpu_online_mask; |
| 88 | cpumask_clear_cpu(cpu, &mask); |
| 89 | for_each_cpu(cpu, &mask) |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 90 | octeon_send_ipi_single(cpu, SMP_ICACHE_FLUSH); |
| 91 | |
| 92 | preempt_enable(); |
| 93 | #endif |
| 94 | } |
| 95 | |
| 96 | |
| 97 | /** |
| 98 | * Called to flush the icache on all cores |
| 99 | */ |
| 100 | static void octeon_flush_icache_all(void) |
| 101 | { |
| 102 | octeon_flush_icache_all_cores(NULL); |
| 103 | } |
| 104 | |
| 105 | |
| 106 | /** |
| 107 | * Called to flush all memory associated with a memory |
| 108 | * context. |
| 109 | * |
Ralf Baechle | 7034228 | 2013-01-22 12:59:30 +0100 | [diff] [blame] | 110 | * @mm: Memory context to flush |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 111 | */ |
| 112 | static void octeon_flush_cache_mm(struct mm_struct *mm) |
| 113 | { |
| 114 | /* |
| 115 | * According to the R4K version of this file, CPUs without |
| 116 | * dcache aliases don't need to do anything here |
| 117 | */ |
| 118 | } |
| 119 | |
| 120 | |
| 121 | /** |
| 122 | * Flush a range of kernel addresses out of the icache |
| 123 | * |
| 124 | */ |
| 125 | static void octeon_flush_icache_range(unsigned long start, unsigned long end) |
| 126 | { |
| 127 | octeon_flush_icache_all_cores(NULL); |
| 128 | } |
| 129 | |
| 130 | |
| 131 | /** |
| 132 | * Flush the icache for a trampoline. These are used for interrupt |
| 133 | * and exception hooking. |
| 134 | * |
| 135 | * @addr: Address to flush |
| 136 | */ |
| 137 | static void octeon_flush_cache_sigtramp(unsigned long addr) |
| 138 | { |
| 139 | struct vm_area_struct *vma; |
| 140 | |
| 141 | vma = find_vma(current->mm, addr); |
| 142 | octeon_flush_icache_all_cores(vma); |
| 143 | } |
| 144 | |
| 145 | |
| 146 | /** |
| 147 | * Flush a range out of a vma |
| 148 | * |
| 149 | * @vma: VMA to flush |
| 150 | * @start: |
| 151 | * @end: |
| 152 | */ |
| 153 | static void octeon_flush_cache_range(struct vm_area_struct *vma, |
| 154 | unsigned long start, unsigned long end) |
| 155 | { |
| 156 | if (vma->vm_flags & VM_EXEC) |
| 157 | octeon_flush_icache_all_cores(vma); |
| 158 | } |
| 159 | |
| 160 | |
| 161 | /** |
| 162 | * Flush a specific page of a vma |
| 163 | * |
| 164 | * @vma: VMA to flush page for |
| 165 | * @page: Page to flush |
| 166 | * @pfn: |
| 167 | */ |
| 168 | static void octeon_flush_cache_page(struct vm_area_struct *vma, |
| 169 | unsigned long page, unsigned long pfn) |
| 170 | { |
| 171 | if (vma->vm_flags & VM_EXEC) |
| 172 | octeon_flush_icache_all_cores(vma); |
| 173 | } |
| 174 | |
Ralf Baechle | d9cdc901 | 2011-06-17 16:20:28 +0100 | [diff] [blame] | 175 | static void octeon_flush_kernel_vmap_range(unsigned long vaddr, int size) |
| 176 | { |
| 177 | BUG(); |
| 178 | } |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 179 | |
| 180 | /** |
| 181 | * Probe Octeon's caches |
| 182 | * |
| 183 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 184 | static void probe_octeon(void) |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 185 | { |
| 186 | unsigned long icache_size; |
| 187 | unsigned long dcache_size; |
| 188 | unsigned int config1; |
| 189 | struct cpuinfo_mips *c = ¤t_cpu_data; |
Ralf Baechle | 69f24d1 | 2013-09-17 10:25:47 +0200 | [diff] [blame] | 190 | int cputype = current_cpu_type(); |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 191 | |
David Daney | f8bf7e6 | 2010-10-07 16:03:44 -0700 | [diff] [blame] | 192 | config1 = read_c0_config1(); |
Ralf Baechle | 69f24d1 | 2013-09-17 10:25:47 +0200 | [diff] [blame] | 193 | switch (cputype) { |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 194 | case CPU_CAVIUM_OCTEON: |
David Daney | 6f32946 | 2010-02-10 15:12:48 -0800 | [diff] [blame] | 195 | case CPU_CAVIUM_OCTEON_PLUS: |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 196 | c->icache.linesz = 2 << ((config1 >> 19) & 7); |
| 197 | c->icache.sets = 64 << ((config1 >> 22) & 7); |
| 198 | c->icache.ways = 1 + ((config1 >> 16) & 7); |
| 199 | c->icache.flags |= MIPS_CACHE_VTAG; |
| 200 | icache_size = |
| 201 | c->icache.sets * c->icache.ways * c->icache.linesz; |
| 202 | c->icache.waybit = ffs(icache_size / c->icache.ways) - 1; |
| 203 | c->dcache.linesz = 128; |
Ralf Baechle | 69f24d1 | 2013-09-17 10:25:47 +0200 | [diff] [blame] | 204 | if (cputype == CPU_CAVIUM_OCTEON_PLUS) |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 205 | c->dcache.sets = 2; /* CN5XXX has two Dcache sets */ |
David Daney | 6f32946 | 2010-02-10 15:12:48 -0800 | [diff] [blame] | 206 | else |
| 207 | c->dcache.sets = 1; /* CN3XXX has one Dcache set */ |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 208 | c->dcache.ways = 64; |
| 209 | dcache_size = |
| 210 | c->dcache.sets * c->dcache.ways * c->dcache.linesz; |
| 211 | c->dcache.waybit = ffs(dcache_size / c->dcache.ways) - 1; |
| 212 | c->options |= MIPS_CPU_PREFETCH; |
| 213 | break; |
| 214 | |
David Daney | f8bf7e6 | 2010-10-07 16:03:44 -0700 | [diff] [blame] | 215 | case CPU_CAVIUM_OCTEON2: |
| 216 | c->icache.linesz = 2 << ((config1 >> 19) & 7); |
| 217 | c->icache.sets = 8; |
| 218 | c->icache.ways = 37; |
| 219 | c->icache.flags |= MIPS_CACHE_VTAG; |
| 220 | icache_size = c->icache.sets * c->icache.ways * c->icache.linesz; |
| 221 | |
| 222 | c->dcache.linesz = 128; |
| 223 | c->dcache.ways = 32; |
| 224 | c->dcache.sets = 8; |
| 225 | dcache_size = c->dcache.sets * c->dcache.ways * c->dcache.linesz; |
| 226 | c->options |= MIPS_CPU_PREFETCH; |
| 227 | break; |
| 228 | |
David Daney | 62597c6 | 2013-07-29 15:07:04 -0700 | [diff] [blame] | 229 | case CPU_CAVIUM_OCTEON3: |
| 230 | c->icache.linesz = 128; |
| 231 | c->icache.sets = 16; |
| 232 | c->icache.ways = 39; |
| 233 | c->icache.flags |= MIPS_CACHE_VTAG; |
| 234 | icache_size = c->icache.sets * c->icache.ways * c->icache.linesz; |
| 235 | |
| 236 | c->dcache.linesz = 128; |
| 237 | c->dcache.ways = 32; |
| 238 | c->dcache.sets = 8; |
| 239 | dcache_size = c->dcache.sets * c->dcache.ways * c->dcache.linesz; |
| 240 | c->options |= MIPS_CPU_PREFETCH; |
| 241 | break; |
| 242 | |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 243 | default: |
Ralf Baechle | ab75dc0 | 2011-11-17 15:07:31 +0000 | [diff] [blame] | 244 | panic("Unsupported Cavium Networks CPU type"); |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 245 | break; |
| 246 | } |
| 247 | |
| 248 | /* compute a couple of other cache variables */ |
| 249 | c->icache.waysize = icache_size / c->icache.ways; |
| 250 | c->dcache.waysize = dcache_size / c->dcache.ways; |
| 251 | |
| 252 | c->icache.sets = icache_size / (c->icache.linesz * c->icache.ways); |
| 253 | c->dcache.sets = dcache_size / (c->dcache.linesz * c->dcache.ways); |
| 254 | |
| 255 | if (smp_processor_id() == 0) { |
| 256 | pr_notice("Primary instruction cache %ldkB, %s, %d way, " |
| 257 | "%d sets, linesize %d bytes.\n", |
| 258 | icache_size >> 10, |
| 259 | cpu_has_vtag_icache ? |
| 260 | "virtually tagged" : "physically tagged", |
| 261 | c->icache.ways, c->icache.sets, c->icache.linesz); |
| 262 | |
| 263 | pr_notice("Primary data cache %ldkB, %d-way, %d sets, " |
| 264 | "linesize %d bytes.\n", |
| 265 | dcache_size >> 10, c->dcache.ways, |
| 266 | c->dcache.sets, c->dcache.linesz); |
| 267 | } |
| 268 | } |
| 269 | |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 270 | static void octeon_cache_error_setup(void) |
David Daney | 586016e | 2012-05-15 00:04:48 -0700 | [diff] [blame] | 271 | { |
| 272 | extern char except_vec2_octeon; |
| 273 | set_handler(0x100, &except_vec2_octeon, 0x80); |
| 274 | } |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 275 | |
| 276 | /** |
| 277 | * Setup the Octeon cache flush routines |
| 278 | * |
| 279 | */ |
Paul Gortmaker | 078a55f | 2013-06-18 13:38:59 +0000 | [diff] [blame] | 280 | void octeon_cache_init(void) |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 281 | { |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 282 | probe_octeon(); |
| 283 | |
| 284 | shm_align_mask = PAGE_SIZE - 1; |
| 285 | |
| 286 | flush_cache_all = octeon_flush_icache_all; |
| 287 | __flush_cache_all = octeon_flush_icache_all; |
| 288 | flush_cache_mm = octeon_flush_cache_mm; |
| 289 | flush_cache_page = octeon_flush_cache_page; |
| 290 | flush_cache_range = octeon_flush_cache_range; |
| 291 | flush_cache_sigtramp = octeon_flush_cache_sigtramp; |
| 292 | flush_icache_all = octeon_flush_icache_all; |
| 293 | flush_data_cache_page = octeon_flush_data_cache_page; |
| 294 | flush_icache_range = octeon_flush_icache_range; |
| 295 | local_flush_icache_range = local_octeon_flush_icache_range; |
| 296 | |
Ralf Baechle | d9cdc901 | 2011-06-17 16:20:28 +0100 | [diff] [blame] | 297 | __flush_kernel_vmap_range = octeon_flush_kernel_vmap_range; |
| 298 | |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 299 | build_clear_page(); |
| 300 | build_copy_page(); |
David Daney | 586016e | 2012-05-15 00:04:48 -0700 | [diff] [blame] | 301 | |
| 302 | board_cache_error_setup = octeon_cache_error_setup; |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 303 | } |
| 304 | |
David Daney | e1ced09 | 2012-11-15 13:58:59 -0800 | [diff] [blame] | 305 | /* |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 306 | * Handle a cache error exception |
| 307 | */ |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 308 | static RAW_NOTIFIER_HEAD(co_cache_error_chain); |
| 309 | |
| 310 | int register_co_cache_error_notifier(struct notifier_block *nb) |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 311 | { |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 312 | return raw_notifier_chain_register(&co_cache_error_chain, nb); |
| 313 | } |
| 314 | EXPORT_SYMBOL_GPL(register_co_cache_error_notifier); |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 315 | |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 316 | int unregister_co_cache_error_notifier(struct notifier_block *nb) |
| 317 | { |
| 318 | return raw_notifier_chain_unregister(&co_cache_error_chain, nb); |
| 319 | } |
| 320 | EXPORT_SYMBOL_GPL(unregister_co_cache_error_notifier); |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 321 | |
David Daney | e1ced09 | 2012-11-15 13:58:59 -0800 | [diff] [blame] | 322 | static void co_cache_error_call_notifiers(unsigned long val) |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 323 | { |
David Daney | e1ced09 | 2012-11-15 13:58:59 -0800 | [diff] [blame] | 324 | int rv = raw_notifier_call_chain(&co_cache_error_chain, val, NULL); |
| 325 | if ((rv & ~NOTIFY_STOP_MASK) != NOTIFY_OK) { |
| 326 | u64 dcache_err; |
| 327 | unsigned long coreid = cvmx_get_core_num(); |
| 328 | u64 icache_err = read_octeon_c0_icacheerr(); |
| 329 | |
| 330 | if (val) { |
| 331 | dcache_err = cache_err_dcache[coreid]; |
| 332 | cache_err_dcache[coreid] = 0; |
| 333 | } else { |
| 334 | dcache_err = read_octeon_c0_dcacheerr(); |
| 335 | } |
| 336 | |
| 337 | pr_err("Core%lu: Cache error exception:\n", coreid); |
| 338 | pr_err("cp0_errorepc == %lx\n", read_c0_errorepc()); |
| 339 | if (icache_err & 1) { |
| 340 | pr_err("CacheErr (Icache) == %llx\n", |
| 341 | (unsigned long long)icache_err); |
| 342 | write_octeon_c0_icacheerr(0); |
| 343 | } |
| 344 | if (dcache_err & 1) { |
| 345 | pr_err("CacheErr (Dcache) == %llx\n", |
| 346 | (unsigned long long)dcache_err); |
| 347 | } |
| 348 | } |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 349 | } |
| 350 | |
David Daney | e1ced09 | 2012-11-15 13:58:59 -0800 | [diff] [blame] | 351 | /* |
Ralf Baechle | 1c1a90d | 2009-07-05 19:23:30 +0100 | [diff] [blame] | 352 | * Called when the the exception is recoverable |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 353 | */ |
David Daney | e1ced09 | 2012-11-15 13:58:59 -0800 | [diff] [blame] | 354 | |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 355 | asmlinkage void cache_parity_error_octeon_recoverable(void) |
| 356 | { |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 357 | co_cache_error_call_notifiers(0); |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | /** |
Ralf Baechle | 1c1a90d | 2009-07-05 19:23:30 +0100 | [diff] [blame] | 361 | * Called when the the exception is not recoverable |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 362 | */ |
David Daney | e1ced09 | 2012-11-15 13:58:59 -0800 | [diff] [blame] | 363 | |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 364 | asmlinkage void cache_parity_error_octeon_non_recoverable(void) |
| 365 | { |
Ralf Baechle | f65aad4 | 2012-10-17 00:39:09 +0200 | [diff] [blame] | 366 | co_cache_error_call_notifiers(1); |
| 367 | panic("Can't handle cache error: nested exception"); |
David Daney | 5b3b168 | 2009-01-08 16:46:40 -0800 | [diff] [blame] | 368 | } |