ARC: [mm] remove the pessimistic all-alias-invalidate icache helpers
[deliverable/linux.git] / arch / arc / mm / cache_arc700.c
1 /*
2 * ARC700 VIPT Cache Management
3 *
4 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
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 * vineetg: May 2011: for Non-aliasing VIPT D-cache following can be NOPs
11 * -flush_cache_dup_mm (fork)
12 * -likewise for flush_cache_mm (exit/execve)
13 * -likewise for flush_cache_range,flush_cache_page (munmap, exit, COW-break)
14 *
15 * vineetg: Apr 2011
16 * -Now that MMU can support larger pg sz (16K), the determiniation of
17 * aliasing shd not be based on assumption of 8k pg
18 *
19 * vineetg: Mar 2011
20 * -optimised version of flush_icache_range( ) for making I/D coherent
21 * when vaddr is available (agnostic of num of aliases)
22 *
23 * vineetg: Mar 2011
24 * -Added documentation about I-cache aliasing on ARC700 and the way it
25 * was handled up until MMU V2.
26 * -Spotted a three year old bug when killing the 4 aliases, which needs
27 * bottom 2 bits, so we need to do paddr | {0x00, 0x01, 0x02, 0x03}
28 * instead of paddr | {0x00, 0x01, 0x10, 0x11}
29 * (Rajesh you owe me one now)
30 *
31 * vineetg: Dec 2010
32 * -Off-by-one error when computing num_of_lines to flush
33 * This broke signal handling with bionic which uses synthetic sigret stub
34 *
35 * vineetg: Mar 2010
36 * -GCC can't generate ZOL for core cache flush loops.
37 * Conv them into iterations based as opposed to while (start < end) types
38 *
39 * Vineetg: July 2009
40 * -In I-cache flush routine we used to chk for aliasing for every line INV.
41 * Instead now we setup routines per cache geometry and invoke them
42 * via function pointers.
43 *
44 * Vineetg: Jan 2009
45 * -Cache Line flush routines used to flush an extra line beyond end addr
46 * because check was while (end >= start) instead of (end > start)
47 * =Some call sites had to work around by doing -1, -4 etc to end param
48 * =Some callers didnt care. This was spec bad in case of INV routines
49 * which would discard valid data (cause of the horrible ext2 bug
50 * in ARC IDE driver)
51 *
52 * vineetg: June 11th 2008: Fixed flush_icache_range( )
53 * -Since ARC700 caches are not coherent (I$ doesnt snoop D$) both need
54 * to be flushed, which it was not doing.
55 * -load_module( ) passes vmalloc addr (Kernel Virtual Addr) to the API,
56 * however ARC cache maintenance OPs require PHY addr. Thus need to do
57 * vmalloc_to_phy.
58 * -Also added optimisation there, that for range > PAGE SIZE we flush the
59 * entire cache in one shot rather than line by line. For e.g. a module
60 * with Code sz 600k, old code flushed 600k worth of cache (line-by-line),
61 * while cache is only 16 or 32k.
62 */
63
64 #include <linux/module.h>
65 #include <linux/mm.h>
66 #include <linux/sched.h>
67 #include <linux/cache.h>
68 #include <linux/mmu_context.h>
69 #include <linux/syscalls.h>
70 #include <linux/uaccess.h>
71 #include <asm/cacheflush.h>
72 #include <asm/cachectl.h>
73 #include <asm/setup.h>
74
75 char *arc_cache_mumbojumbo(int cpu_id, char *buf, int len)
76 {
77 int n = 0;
78 unsigned int c = smp_processor_id();
79
80 #define PR_CACHE(p, enb, str) \
81 { \
82 if (!(p)->ver) \
83 n += scnprintf(buf + n, len - n, str"\t\t: N/A\n"); \
84 else \
85 n += scnprintf(buf + n, len - n, \
86 str"\t\t: (%uK) VIPT, %dway set-asc, %ub Line %s\n", \
87 TO_KB((p)->sz), (p)->assoc, (p)->line_len, \
88 enb ? "" : "DISABLED (kernel-build)"); \
89 }
90
91 PR_CACHE(&cpuinfo_arc700[c].icache, __CONFIG_ARC_HAS_ICACHE, "I-Cache");
92 PR_CACHE(&cpuinfo_arc700[c].dcache, __CONFIG_ARC_HAS_DCACHE, "D-Cache");
93
94 return buf;
95 }
96
97 /*
98 * Read the Cache Build Confuration Registers, Decode them and save into
99 * the cpuinfo structure for later use.
100 * No Validation done here, simply read/convert the BCRs
101 */
102 void __cpuinit read_decode_cache_bcr(void)
103 {
104 struct bcr_cache ibcr, dbcr;
105 struct cpuinfo_arc_cache *p_ic, *p_dc;
106 unsigned int cpu = smp_processor_id();
107
108 p_ic = &cpuinfo_arc700[cpu].icache;
109 READ_BCR(ARC_REG_IC_BCR, ibcr);
110
111 if (ibcr.config == 0x3)
112 p_ic->assoc = 2;
113 p_ic->line_len = 8 << ibcr.line_len;
114 p_ic->sz = 0x200 << ibcr.sz;
115 p_ic->ver = ibcr.ver;
116
117 p_dc = &cpuinfo_arc700[cpu].dcache;
118 READ_BCR(ARC_REG_DC_BCR, dbcr);
119
120 if (dbcr.config == 0x2)
121 p_dc->assoc = 4;
122 p_dc->line_len = 16 << dbcr.line_len;
123 p_dc->sz = 0x200 << dbcr.sz;
124 p_dc->ver = dbcr.ver;
125 }
126
127 /*
128 * 1. Validate the Cache Geomtery (compile time config matches hardware)
129 * 2. If I-cache suffers from aliasing, setup work arounds (difft flush rtn)
130 * (aliasing D-cache configurations are not supported YET)
131 * 3. Enable the Caches, setup default flush mode for D-Cache
132 * 3. Calculate the SHMLBA used by user space
133 */
134 void __cpuinit arc_cache_init(void)
135 {
136 unsigned int temp;
137 unsigned int cpu = smp_processor_id();
138 struct cpuinfo_arc_cache *ic = &cpuinfo_arc700[cpu].icache;
139 struct cpuinfo_arc_cache *dc = &cpuinfo_arc700[cpu].dcache;
140 int way_pg_ratio = way_pg_ratio;
141 char str[256];
142
143 printk(arc_cache_mumbojumbo(0, str, sizeof(str)));
144
145 if (!ic->ver)
146 goto chk_dc;
147
148 #ifdef CONFIG_ARC_HAS_ICACHE
149 /* 1. Confirm some of I-cache params which Linux assumes */
150 if ((ic->assoc != ARC_ICACHE_WAYS) ||
151 (ic->line_len != ARC_ICACHE_LINE_LEN)) {
152 panic("Cache H/W doesn't match kernel Config");
153 }
154 #if (CONFIG_ARC_MMU_VER > 2)
155 if (ic->ver != 3) {
156 if (running_on_hw)
157 panic("Cache ver doesn't match MMU ver\n");
158
159 /* For ISS - suggest the toggles to use */
160 pr_err("Use -prop=icache_version=3,-prop=dcache_version=3\n");
161
162 }
163 #endif
164 #endif
165
166 /* Enable/disable I-Cache */
167 temp = read_aux_reg(ARC_REG_IC_CTRL);
168
169 #ifdef CONFIG_ARC_HAS_ICACHE
170 temp &= ~IC_CTRL_CACHE_DISABLE;
171 #else
172 temp |= IC_CTRL_CACHE_DISABLE;
173 #endif
174
175 write_aux_reg(ARC_REG_IC_CTRL, temp);
176
177 chk_dc:
178 if (!dc->ver)
179 return;
180
181 #ifdef CONFIG_ARC_HAS_DCACHE
182 if ((dc->assoc != ARC_DCACHE_WAYS) ||
183 (dc->line_len != ARC_DCACHE_LINE_LEN)) {
184 panic("Cache H/W doesn't match kernel Config");
185 }
186
187 /* check for D-Cache aliasing */
188 if ((dc->sz / ARC_DCACHE_WAYS) > PAGE_SIZE)
189 panic("D$ aliasing not handled right now\n");
190 #endif
191
192 /* Set the default Invalidate Mode to "simpy discard dirty lines"
193 * as this is more frequent then flush before invalidate
194 * Ofcourse we toggle this default behviour when desired
195 */
196 temp = read_aux_reg(ARC_REG_DC_CTRL);
197 temp &= ~DC_CTRL_INV_MODE_FLUSH;
198
199 #ifdef CONFIG_ARC_HAS_DCACHE
200 /* Enable D-Cache: Clear Bit 0 */
201 write_aux_reg(ARC_REG_DC_CTRL, temp & ~IC_CTRL_CACHE_DISABLE);
202 #else
203 /* Flush D cache */
204 write_aux_reg(ARC_REG_DC_FLSH, 0x1);
205 /* Disable D cache */
206 write_aux_reg(ARC_REG_DC_CTRL, temp | IC_CTRL_CACHE_DISABLE);
207 #endif
208
209 return;
210 }
211
212 #define OP_INV 0x1
213 #define OP_FLUSH 0x2
214 #define OP_FLUSH_N_INV 0x3
215
216 #ifdef CONFIG_ARC_HAS_DCACHE
217
218 /***************************************************************
219 * Machine specific helpers for Entire D-Cache or Per Line ops
220 */
221
222 static inline void wait_for_flush(void)
223 {
224 while (read_aux_reg(ARC_REG_DC_CTRL) & DC_CTRL_FLUSH_STATUS)
225 ;
226 }
227
228 /*
229 * Operation on Entire D-Cache
230 * @cacheop = {OP_INV, OP_FLUSH, OP_FLUSH_N_INV}
231 * Note that constant propagation ensures all the checks are gone
232 * in generated code
233 */
234 static inline void __dc_entire_op(const int cacheop)
235 {
236 unsigned long flags, tmp = tmp;
237 int aux;
238
239 local_irq_save(flags);
240
241 if (cacheop == OP_FLUSH_N_INV) {
242 /* Dcache provides 2 cmd: FLUSH or INV
243 * INV inturn has sub-modes: DISCARD or FLUSH-BEFORE
244 * flush-n-inv is achieved by INV cmd but with IM=1
245 * Default INV sub-mode is DISCARD, which needs to be toggled
246 */
247 tmp = read_aux_reg(ARC_REG_DC_CTRL);
248 write_aux_reg(ARC_REG_DC_CTRL, tmp | DC_CTRL_INV_MODE_FLUSH);
249 }
250
251 if (cacheop & OP_INV) /* Inv or flush-n-inv use same cmd reg */
252 aux = ARC_REG_DC_IVDC;
253 else
254 aux = ARC_REG_DC_FLSH;
255
256 write_aux_reg(aux, 0x1);
257
258 if (cacheop & OP_FLUSH) /* flush / flush-n-inv both wait */
259 wait_for_flush();
260
261 /* Switch back the DISCARD ONLY Invalidate mode */
262 if (cacheop == OP_FLUSH_N_INV)
263 write_aux_reg(ARC_REG_DC_CTRL, tmp & ~DC_CTRL_INV_MODE_FLUSH);
264
265 local_irq_restore(flags);
266 }
267
268 /*
269 * Per Line Operation on D-Cache
270 * Doesn't deal with type-of-op/IRQ-disabling/waiting-for-flush-to-complete
271 * It's sole purpose is to help gcc generate ZOL
272 */
273 static inline void __dc_line_loop(unsigned long start, unsigned long sz,
274 int aux_reg)
275 {
276 int num_lines, slack;
277
278 /* Ensure we properly floor/ceil the non-line aligned/sized requests
279 * and have @start - aligned to cache line and integral @num_lines.
280 * This however can be avoided for page sized since:
281 * -@start will be cache-line aligned already (being page aligned)
282 * -@sz will be integral multiple of line size (being page sized).
283 */
284 if (!(__builtin_constant_p(sz) && sz == PAGE_SIZE)) {
285 slack = start & ~DCACHE_LINE_MASK;
286 sz += slack;
287 start -= slack;
288 }
289
290 num_lines = DIV_ROUND_UP(sz, ARC_DCACHE_LINE_LEN);
291
292 while (num_lines-- > 0) {
293 #if (CONFIG_ARC_MMU_VER > 2)
294 /*
295 * Just as for I$, in MMU v3, D$ ops also require
296 * "tag" bits in DC_PTAG, "index" bits in FLDL,IVDL ops
297 * But we pass phy addr for both. This works since Linux
298 * doesn't support aliasing configs for D$, yet.
299 * Thus paddr is enough to provide both tag and index.
300 */
301 write_aux_reg(ARC_REG_DC_PTAG, start);
302 #endif
303 write_aux_reg(aux_reg, start);
304 start += ARC_DCACHE_LINE_LEN;
305 }
306 }
307
308 /*
309 * D-Cache : Per Line INV (discard or wback+discard) or FLUSH (wback)
310 */
311 static inline void __dc_line_op(unsigned long start, unsigned long sz,
312 const int cacheop)
313 {
314 unsigned long flags, tmp = tmp;
315 int aux;
316
317 local_irq_save(flags);
318
319 if (cacheop == OP_FLUSH_N_INV) {
320 /*
321 * Dcache provides 2 cmd: FLUSH or INV
322 * INV inturn has sub-modes: DISCARD or FLUSH-BEFORE
323 * flush-n-inv is achieved by INV cmd but with IM=1
324 * Default INV sub-mode is DISCARD, which needs to be toggled
325 */
326 tmp = read_aux_reg(ARC_REG_DC_CTRL);
327 write_aux_reg(ARC_REG_DC_CTRL, tmp | DC_CTRL_INV_MODE_FLUSH);
328 }
329
330 if (cacheop & OP_INV) /* Inv / flush-n-inv use same cmd reg */
331 aux = ARC_REG_DC_IVDL;
332 else
333 aux = ARC_REG_DC_FLDL;
334
335 __dc_line_loop(start, sz, aux);
336
337 if (cacheop & OP_FLUSH) /* flush / flush-n-inv both wait */
338 wait_for_flush();
339
340 /* Switch back the DISCARD ONLY Invalidate mode */
341 if (cacheop == OP_FLUSH_N_INV)
342 write_aux_reg(ARC_REG_DC_CTRL, tmp & ~DC_CTRL_INV_MODE_FLUSH);
343
344 local_irq_restore(flags);
345 }
346
347 #else
348
349 #define __dc_entire_op(cacheop)
350 #define __dc_line_op(start, sz, cacheop)
351
352 #endif /* CONFIG_ARC_HAS_DCACHE */
353
354
355 #ifdef CONFIG_ARC_HAS_ICACHE
356
357 /*
358 * I-Cache Aliasing in ARC700 VIPT caches
359 *
360 * ARC VIPT I-cache uses vaddr to index into cache and paddr to match the tag.
361 * The orig Cache Management Module "CDU" only required paddr to invalidate a
362 * certain line since it sufficed as index in Non-Aliasing VIPT cache-geometry.
363 * Infact for distinct V1,V2,P: all of {V1-P},{V2-P},{P-P} would end up fetching
364 * the exact same line.
365 *
366 * However for larger Caches (way-size > page-size) - i.e. in Aliasing config,
367 * paddr alone could not be used to correctly index the cache.
368 *
369 * ------------------
370 * MMU v1/v2 (Fixed Page Size 8k)
371 * ------------------
372 * The solution was to provide CDU with these additonal vaddr bits. These
373 * would be bits [x:13], x would depend on cache-geometry, 13 comes from
374 * standard page size of 8k.
375 * H/w folks chose [17:13] to be a future safe range, and moreso these 5 bits
376 * of vaddr could easily be "stuffed" in the paddr as bits [4:0] since the
377 * orig 5 bits of paddr were anyways ignored by CDU line ops, as they
378 * represent the offset within cache-line. The adv of using this "clumsy"
379 * interface for additional info was no new reg was needed in CDU programming
380 * model.
381 *
382 * 17:13 represented the max num of bits passable, actual bits needed were
383 * fewer, based on the num-of-aliases possible.
384 * -for 2 alias possibility, only bit 13 needed (32K cache)
385 * -for 4 alias possibility, bits 14:13 needed (64K cache)
386 *
387 * ------------------
388 * MMU v3
389 * ------------------
390 * This ver of MMU supports variable page sizes (1k-16k): although Linux will
391 * only support 8k (default), 16k and 4k.
392 * However from hardware perspective, smaller page sizes aggrevate aliasing
393 * meaning more vaddr bits needed to disambiguate the cache-line-op ;
394 * the existing scheme of piggybacking won't work for certain configurations.
395 * Two new registers IC_PTAG and DC_PTAG inttoduced.
396 * "tag" bits are provided in PTAG, index bits in existing IVIL/IVDL/FLDL regs
397 */
398
399 /***********************************************************
400 * Machine specific helper for per line I-Cache invalidate.
401 */
402 static void __ic_line_inv_vaddr(unsigned long phy_start, unsigned long vaddr,
403 unsigned long sz)
404 {
405 unsigned long flags;
406 int num_lines, slack;
407 unsigned int addr;
408
409 slack = phy_start & ~ICACHE_LINE_MASK;
410 sz += slack;
411 phy_start -= slack;
412 num_lines = DIV_ROUND_UP(sz, ARC_ICACHE_LINE_LEN);
413
414 #if (CONFIG_ARC_MMU_VER > 2)
415 vaddr &= ~ICACHE_LINE_MASK;
416 addr = phy_start;
417 #else
418 /* bits 17:13 of vaddr go as bits 4:0 of paddr */
419 addr = phy_start | ((vaddr >> 13) & 0x1F);
420 #endif
421
422 local_irq_save(flags);
423 while (num_lines-- > 0) {
424 #if (CONFIG_ARC_MMU_VER > 2)
425 /* tag comes from phy addr */
426 write_aux_reg(ARC_REG_IC_PTAG, addr);
427
428 /* index bits come from vaddr */
429 write_aux_reg(ARC_REG_IC_IVIL, vaddr);
430 vaddr += ARC_ICACHE_LINE_LEN;
431 #else
432 /* paddr contains stuffed vaddrs bits */
433 write_aux_reg(ARC_REG_IC_IVIL, addr);
434 #endif
435 addr += ARC_ICACHE_LINE_LEN;
436 }
437 local_irq_restore(flags);
438 }
439
440 #else
441
442 #define __ic_line_inv_vaddr(pstart, vstart, sz)
443
444 #endif /* CONFIG_ARC_HAS_ICACHE */
445
446
447 /***********************************************************
448 * Exported APIs
449 */
450
451 /* TBD: use pg_arch_1 to optimize this */
452 void flush_dcache_page(struct page *page)
453 {
454 __dc_line_op((unsigned long)page_address(page), PAGE_SIZE, OP_FLUSH);
455 }
456 EXPORT_SYMBOL(flush_dcache_page);
457
458
459 void dma_cache_wback_inv(unsigned long start, unsigned long sz)
460 {
461 __dc_line_op(start, sz, OP_FLUSH_N_INV);
462 }
463 EXPORT_SYMBOL(dma_cache_wback_inv);
464
465 void dma_cache_inv(unsigned long start, unsigned long sz)
466 {
467 __dc_line_op(start, sz, OP_INV);
468 }
469 EXPORT_SYMBOL(dma_cache_inv);
470
471 void dma_cache_wback(unsigned long start, unsigned long sz)
472 {
473 __dc_line_op(start, sz, OP_FLUSH);
474 }
475 EXPORT_SYMBOL(dma_cache_wback);
476
477 /*
478 * This is API for making I/D Caches consistent when modifying
479 * kernel code (loadable modules, kprobes, kgdb...)
480 * This is called on insmod, with kernel virtual address for CODE of
481 * the module. ARC cache maintenance ops require PHY address thus we
482 * need to convert vmalloc addr to PHY addr
483 */
484 void flush_icache_range(unsigned long kstart, unsigned long kend)
485 {
486 unsigned int tot_sz, off, sz;
487 unsigned long phy, pfn;
488
489 /* printk("Kernel Cache Cohenercy: %lx to %lx\n",kstart, kend); */
490
491 /* This is not the right API for user virtual address */
492 if (kstart < TASK_SIZE) {
493 BUG_ON("Flush icache range for user virtual addr space");
494 return;
495 }
496
497 /* Shortcut for bigger flush ranges.
498 * Here we don't care if this was kernel virtual or phy addr
499 */
500 tot_sz = kend - kstart;
501 if (tot_sz > PAGE_SIZE) {
502 flush_cache_all();
503 return;
504 }
505
506 /* Case: Kernel Phy addr (0x8000_0000 onwards) */
507 if (likely(kstart > PAGE_OFFSET)) {
508 /*
509 * The 2nd arg despite being paddr will be used to index icache
510 * This is OK since no alternate virtual mappings will exist
511 * given the callers for this case: kprobe/kgdb in built-in
512 * kernel code only.
513 */
514 __sync_icache_dcache(kstart, kstart, kend - kstart);
515 return;
516 }
517
518 /*
519 * Case: Kernel Vaddr (0x7000_0000 to 0x7fff_ffff)
520 * (1) ARC Cache Maintenance ops only take Phy addr, hence special
521 * handling of kernel vaddr.
522 *
523 * (2) Despite @tot_sz being < PAGE_SIZE (bigger cases handled already),
524 * it still needs to handle a 2 page scenario, where the range
525 * straddles across 2 virtual pages and hence need for loop
526 */
527 while (tot_sz > 0) {
528 off = kstart % PAGE_SIZE;
529 pfn = vmalloc_to_pfn((void *)kstart);
530 phy = (pfn << PAGE_SHIFT) + off;
531 sz = min_t(unsigned int, tot_sz, PAGE_SIZE - off);
532 __sync_icache_dcache(phy, kstart, sz);
533 kstart += sz;
534 tot_sz -= sz;
535 }
536 }
537
538 /*
539 * General purpose helper to make I and D cache lines consistent.
540 * @paddr is phy addr of region
541 * @vaddr is typically user or kernel vaddr (vmalloc)
542 * Howver in one instance, flush_icache_range() by kprobe (for a breakpt in
543 * builtin kernel code) @vaddr will be paddr only, meaning CDU operation will
544 * use a paddr to index the cache (despite VIPT). This is fine since since a
545 * built-in kernel page will not have any virtual mappings (not even kernel)
546 * kprobe on loadable module is different as it will have kvaddr.
547 */
548 void __sync_icache_dcache(unsigned long paddr, unsigned long vaddr, int len)
549 {
550 unsigned long flags;
551
552 local_irq_save(flags);
553 __ic_line_inv_vaddr(paddr, vaddr, len);
554 __dc_line_op(paddr, len, OP_FLUSH);
555 local_irq_restore(flags);
556 }
557
558 /* wrapper to compile time eliminate alignment checks in flush loop */
559 void __inv_icache_page(unsigned long paddr, unsigned long vaddr)
560 {
561 __ic_line_inv_vaddr(paddr, vaddr, PAGE_SIZE);
562 }
563
564 void flush_icache_all(void)
565 {
566 unsigned long flags;
567
568 local_irq_save(flags);
569
570 write_aux_reg(ARC_REG_IC_IVIC, 1);
571
572 /* lr will not complete till the icache inv operation is not over */
573 read_aux_reg(ARC_REG_IC_CTRL);
574 local_irq_restore(flags);
575 }
576
577 noinline void flush_cache_all(void)
578 {
579 unsigned long flags;
580
581 local_irq_save(flags);
582
583 flush_icache_all();
584 __dc_entire_op(OP_FLUSH_N_INV);
585
586 local_irq_restore(flags);
587
588 }
589
590 /**********************************************************************
591 * Explicit Cache flush request from user space via syscall
592 * Needed for JITs which generate code on the fly
593 */
594 SYSCALL_DEFINE3(cacheflush, uint32_t, start, uint32_t, sz, uint32_t, flags)
595 {
596 /* TBD: optimize this */
597 flush_cache_all();
598 return 0;
599 }
This page took 0.073834 seconds and 5 git commands to generate.