blob: c8efdb5b6ee0297df1799fe41a3ca94750688119 [file] [log] [blame]
David Daney5b3b1682009-01-08 16:46:40 -08001/*
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 Baechlef65aad42012-10-17 00:39:09 +02008#include <linux/export.h>
David Daney5b3b1682009-01-08 16:46:40 -08009#include <linux/init.h>
10#include <linux/kernel.h>
11#include <linux/sched.h>
Ralf Baechle631330f2009-06-19 14:05:26 +010012#include <linux/smp.h>
David Daney5b3b1682009-01-08 16:46:40 -080013#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 Baechle69f24d12013-09-17 10:25:47 +020022#include <asm/cpu-type.h>
David Daney5b3b1682009-01-08 16:46:40 -080023#include <asm/page.h>
24#include <asm/pgtable.h>
25#include <asm/r4kcache.h>
David Daney586016e2012-05-15 00:04:48 -070026#include <asm/traps.h>
David Daney5b3b1682009-01-08 16:46:40 -080027#include <asm/mmu_context.h>
28#include <asm/war.h>
29
30#include <asm/octeon/octeon.h>
31
32unsigned long long cache_err_dcache[NR_CPUS];
Ralf Baechlef65aad42012-10-17 00:39:09 +020033EXPORT_SYMBOL_GPL(cache_err_dcache);
David Daney5b3b1682009-01-08 16:46:40 -080034
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 */
41static void octeon_flush_data_cache_page(unsigned long addr)
42{
43 /* Nothing to do */
44}
45
46static 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 */
54static 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 */
66static 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 Russell55b8cab2009-09-24 09:34:50 -060085 mask = *mm_cpumask(vma->vm_mm);
David Daney5b3b1682009-01-08 16:46:40 -080086 else
Rusty Russell0b5f9c02012-03-29 15:38:30 +103087 mask = *cpu_online_mask;
88 cpumask_clear_cpu(cpu, &mask);
89 for_each_cpu(cpu, &mask)
David Daney5b3b1682009-01-08 16:46:40 -080090 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 */
100static 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 Baechle70342282013-01-22 12:59:30 +0100110 * @mm: Memory context to flush
David Daney5b3b1682009-01-08 16:46:40 -0800111 */
112static 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 */
125static 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 */
137static 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 */
153static 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 */
168static 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 Baechled9cdc9012011-06-17 16:20:28 +0100175static void octeon_flush_kernel_vmap_range(unsigned long vaddr, int size)
176{
177 BUG();
178}
David Daney5b3b1682009-01-08 16:46:40 -0800179
180/**
181 * Probe Octeon's caches
182 *
183 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000184static void probe_octeon(void)
David Daney5b3b1682009-01-08 16:46:40 -0800185{
186 unsigned long icache_size;
187 unsigned long dcache_size;
188 unsigned int config1;
189 struct cpuinfo_mips *c = &current_cpu_data;
Ralf Baechle69f24d12013-09-17 10:25:47 +0200190 int cputype = current_cpu_type();
David Daney5b3b1682009-01-08 16:46:40 -0800191
David Daneyf8bf7e62010-10-07 16:03:44 -0700192 config1 = read_c0_config1();
Ralf Baechle69f24d12013-09-17 10:25:47 +0200193 switch (cputype) {
David Daney5b3b1682009-01-08 16:46:40 -0800194 case CPU_CAVIUM_OCTEON:
David Daney6f329462010-02-10 15:12:48 -0800195 case CPU_CAVIUM_OCTEON_PLUS:
David Daney5b3b1682009-01-08 16:46:40 -0800196 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 Baechle69f24d12013-09-17 10:25:47 +0200204 if (cputype == CPU_CAVIUM_OCTEON_PLUS)
David Daney5b3b1682009-01-08 16:46:40 -0800205 c->dcache.sets = 2; /* CN5XXX has two Dcache sets */
David Daney6f329462010-02-10 15:12:48 -0800206 else
207 c->dcache.sets = 1; /* CN3XXX has one Dcache set */
David Daney5b3b1682009-01-08 16:46:40 -0800208 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 Daneyf8bf7e62010-10-07 16:03:44 -0700215 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 Daney62597c62013-07-29 15:07:04 -0700229 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 Daney5b3b1682009-01-08 16:46:40 -0800243 default:
Ralf Baechleab75dc02011-11-17 15:07:31 +0000244 panic("Unsupported Cavium Networks CPU type");
David Daney5b3b1682009-01-08 16:46:40 -0800245 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 Gortmaker078a55f2013-06-18 13:38:59 +0000270static void octeon_cache_error_setup(void)
David Daney586016e2012-05-15 00:04:48 -0700271{
272 extern char except_vec2_octeon;
273 set_handler(0x100, &except_vec2_octeon, 0x80);
274}
David Daney5b3b1682009-01-08 16:46:40 -0800275
276/**
277 * Setup the Octeon cache flush routines
278 *
279 */
Paul Gortmaker078a55f2013-06-18 13:38:59 +0000280void octeon_cache_init(void)
David Daney5b3b1682009-01-08 16:46:40 -0800281{
David Daney5b3b1682009-01-08 16:46:40 -0800282 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 Baechled9cdc9012011-06-17 16:20:28 +0100297 __flush_kernel_vmap_range = octeon_flush_kernel_vmap_range;
298
David Daney5b3b1682009-01-08 16:46:40 -0800299 build_clear_page();
300 build_copy_page();
David Daney586016e2012-05-15 00:04:48 -0700301
302 board_cache_error_setup = octeon_cache_error_setup;
David Daney5b3b1682009-01-08 16:46:40 -0800303}
304
David Daneye1ced092012-11-15 13:58:59 -0800305/*
David Daney5b3b1682009-01-08 16:46:40 -0800306 * Handle a cache error exception
307 */
Ralf Baechlef65aad42012-10-17 00:39:09 +0200308static RAW_NOTIFIER_HEAD(co_cache_error_chain);
309
310int register_co_cache_error_notifier(struct notifier_block *nb)
David Daney5b3b1682009-01-08 16:46:40 -0800311{
Ralf Baechlef65aad42012-10-17 00:39:09 +0200312 return raw_notifier_chain_register(&co_cache_error_chain, nb);
313}
314EXPORT_SYMBOL_GPL(register_co_cache_error_notifier);
David Daney5b3b1682009-01-08 16:46:40 -0800315
Ralf Baechlef65aad42012-10-17 00:39:09 +0200316int unregister_co_cache_error_notifier(struct notifier_block *nb)
317{
318 return raw_notifier_chain_unregister(&co_cache_error_chain, nb);
319}
320EXPORT_SYMBOL_GPL(unregister_co_cache_error_notifier);
David Daney5b3b1682009-01-08 16:46:40 -0800321
David Daneye1ced092012-11-15 13:58:59 -0800322static void co_cache_error_call_notifiers(unsigned long val)
Ralf Baechlef65aad42012-10-17 00:39:09 +0200323{
David Daneye1ced092012-11-15 13:58:59 -0800324 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 Daney5b3b1682009-01-08 16:46:40 -0800349}
350
David Daneye1ced092012-11-15 13:58:59 -0800351/*
Ralf Baechle1c1a90d2009-07-05 19:23:30 +0100352 * Called when the the exception is recoverable
David Daney5b3b1682009-01-08 16:46:40 -0800353 */
David Daneye1ced092012-11-15 13:58:59 -0800354
David Daney5b3b1682009-01-08 16:46:40 -0800355asmlinkage void cache_parity_error_octeon_recoverable(void)
356{
Ralf Baechlef65aad42012-10-17 00:39:09 +0200357 co_cache_error_call_notifiers(0);
David Daney5b3b1682009-01-08 16:46:40 -0800358}
359
360/**
Ralf Baechle1c1a90d2009-07-05 19:23:30 +0100361 * Called when the the exception is not recoverable
David Daney5b3b1682009-01-08 16:46:40 -0800362 */
David Daneye1ced092012-11-15 13:58:59 -0800363
David Daney5b3b1682009-01-08 16:46:40 -0800364asmlinkage void cache_parity_error_octeon_non_recoverable(void)
365{
Ralf Baechlef65aad42012-10-17 00:39:09 +0200366 co_cache_error_call_notifiers(1);
367 panic("Can't handle cache error: nested exception");
David Daney5b3b1682009-01-08 16:46:40 -0800368}