2 * ARC700 VIPT Cache Management
4 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
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.
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)
16 * -Now that MMU can support larger pg sz (16K), the determiniation of
17 * aliasing shd not be based on assumption of 8k pg
20 * -optimised version of flush_icache_range( ) for making I/D coherent
21 * when vaddr is available (agnostic of num of aliases)
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)
32 * -Off-by-one error when computing num_of_lines to flush
33 * This broke signal handling with bionic which uses synthetic sigret stub
36 * -GCC can't generate ZOL for core cache flush loops.
37 * Conv them into iterations based as opposed to while (start < end) types
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.
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
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
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.
64 #include <linux/module.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 <linux/pagemap.h>
72 #include <asm/cacheflush.h>
73 #include <asm/cachectl.h>
74 #include <asm/setup.h>
76 /* Instruction cache related Auxiliary registers */
77 #define ARC_REG_IC_BCR 0x77 /* Build Config reg */
78 #define ARC_REG_IC_IVIC 0x10
79 #define ARC_REG_IC_CTRL 0x11
80 #define ARC_REG_IC_IVIL 0x19
81 #if (CONFIG_ARC_MMU_VER > 2)
82 #define ARC_REG_IC_PTAG 0x1E
85 /* Bit val in IC_CTRL */
86 #define IC_CTRL_CACHE_DISABLE 0x1
88 /* Data cache related Auxiliary registers */
89 #define ARC_REG_DC_BCR 0x72 /* Build Config reg */
90 #define ARC_REG_DC_IVDC 0x47
91 #define ARC_REG_DC_CTRL 0x48
92 #define ARC_REG_DC_IVDL 0x4A
93 #define ARC_REG_DC_FLSH 0x4B
94 #define ARC_REG_DC_FLDL 0x4C
95 #if (CONFIG_ARC_MMU_VER > 2)
96 #define ARC_REG_DC_PTAG 0x5C
99 /* Bit val in DC_CTRL */
100 #define DC_CTRL_INV_MODE_FLUSH 0x40
101 #define DC_CTRL_FLUSH_STATUS 0x100
103 char *arc_cache_mumbojumbo(int cpu_id
, char *buf
, int len
)
106 unsigned int c
= smp_processor_id();
108 #define PR_CACHE(p, enb, str) \
111 n += scnprintf(buf + n, len - n, str"\t\t: N/A\n"); \
113 n += scnprintf(buf + n, len - n, \
114 str"\t\t: (%uK) VIPT, %dway set-asc, %ub Line %s\n", \
115 TO_KB((p)->sz), (p)->assoc, (p)->line_len, \
116 enb ? "" : "DISABLED (kernel-build)"); \
119 PR_CACHE(&cpuinfo_arc700
[c
].icache
, IS_ENABLED(CONFIG_ARC_HAS_ICACHE
),
121 PR_CACHE(&cpuinfo_arc700
[c
].dcache
, IS_ENABLED(CONFIG_ARC_HAS_DCACHE
),
128 * Read the Cache Build Confuration Registers, Decode them and save into
129 * the cpuinfo structure for later use.
130 * No Validation done here, simply read/convert the BCRs
132 void read_decode_cache_bcr(void)
134 struct cpuinfo_arc_cache
*p_ic
, *p_dc
;
135 unsigned int cpu
= smp_processor_id();
137 #ifdef CONFIG_CPU_BIG_ENDIAN
138 unsigned int pad
:12, line_len
:4, sz
:4, config
:4, ver
:8;
140 unsigned int ver
:8, config
:4, sz
:4, line_len
:4, pad
:12;
144 p_ic
= &cpuinfo_arc700
[cpu
].icache
;
145 READ_BCR(ARC_REG_IC_BCR
, ibcr
);
147 BUG_ON(ibcr
.config
!= 3);
148 p_ic
->assoc
= 2; /* Fixed to 2w set assoc */
149 p_ic
->line_len
= 8 << ibcr
.line_len
;
150 p_ic
->sz
= 0x200 << ibcr
.sz
;
151 p_ic
->ver
= ibcr
.ver
;
153 p_dc
= &cpuinfo_arc700
[cpu
].dcache
;
154 READ_BCR(ARC_REG_DC_BCR
, dbcr
);
156 BUG_ON(dbcr
.config
!= 2);
157 p_dc
->assoc
= 4; /* Fixed to 4w set assoc */
158 p_dc
->line_len
= 16 << dbcr
.line_len
;
159 p_dc
->sz
= 0x200 << dbcr
.sz
;
160 p_dc
->ver
= dbcr
.ver
;
164 * 1. Validate the Cache Geomtery (compile time config matches hardware)
165 * 2. If I-cache suffers from aliasing, setup work arounds (difft flush rtn)
166 * (aliasing D-cache configurations are not supported YET)
167 * 3. Enable the Caches, setup default flush mode for D-Cache
168 * 3. Calculate the SHMLBA used by user space
170 void arc_cache_init(void)
172 unsigned int cpu
= smp_processor_id();
173 struct cpuinfo_arc_cache
*ic
= &cpuinfo_arc700
[cpu
].icache
;
174 struct cpuinfo_arc_cache
*dc
= &cpuinfo_arc700
[cpu
].dcache
;
175 unsigned int dcache_does_alias
, temp
;
178 printk(arc_cache_mumbojumbo(0, str
, sizeof(str
)));
183 #ifdef CONFIG_ARC_HAS_ICACHE
184 /* 1. Confirm some of I-cache params which Linux assumes */
185 if (ic
->line_len
!= ARC_ICACHE_LINE_LEN
)
186 panic("Cache H/W doesn't match kernel Config");
188 if (ic
->ver
!= CONFIG_ARC_MMU_VER
)
189 panic("Cache ver doesn't match MMU ver\n");
192 /* Enable/disable I-Cache */
193 temp
= read_aux_reg(ARC_REG_IC_CTRL
);
195 #ifdef CONFIG_ARC_HAS_ICACHE
196 temp
&= ~IC_CTRL_CACHE_DISABLE
;
198 temp
|= IC_CTRL_CACHE_DISABLE
;
201 write_aux_reg(ARC_REG_IC_CTRL
, temp
);
207 #ifdef CONFIG_ARC_HAS_DCACHE
208 if (dc
->line_len
!= ARC_DCACHE_LINE_LEN
)
209 panic("Cache H/W doesn't match kernel Config");
211 /* check for D-Cache aliasing */
212 dcache_does_alias
= (dc
->sz
/ dc
->assoc
) > PAGE_SIZE
;
214 if (dcache_does_alias
&& !cache_is_vipt_aliasing())
215 panic("Enable CONFIG_ARC_CACHE_VIPT_ALIASING\n");
216 else if (!dcache_does_alias
&& cache_is_vipt_aliasing())
217 panic("Don't need CONFIG_ARC_CACHE_VIPT_ALIASING\n");
220 /* Set the default Invalidate Mode to "simpy discard dirty lines"
221 * as this is more frequent then flush before invalidate
222 * Ofcourse we toggle this default behviour when desired
224 temp
= read_aux_reg(ARC_REG_DC_CTRL
);
225 temp
&= ~DC_CTRL_INV_MODE_FLUSH
;
227 #ifdef CONFIG_ARC_HAS_DCACHE
228 /* Enable D-Cache: Clear Bit 0 */
229 write_aux_reg(ARC_REG_DC_CTRL
, temp
& ~IC_CTRL_CACHE_DISABLE
);
232 write_aux_reg(ARC_REG_DC_FLSH
, 0x1);
233 /* Disable D cache */
234 write_aux_reg(ARC_REG_DC_CTRL
, temp
| IC_CTRL_CACHE_DISABLE
);
242 #define OP_FLUSH_N_INV 0x3
244 #ifdef CONFIG_ARC_HAS_DCACHE
246 /***************************************************************
247 * Machine specific helpers for Entire D-Cache or Per Line ops
250 static inline void wait_for_flush(void)
252 while (read_aux_reg(ARC_REG_DC_CTRL
) & DC_CTRL_FLUSH_STATUS
)
257 * Operation on Entire D-Cache
258 * @cacheop = {OP_INV, OP_FLUSH, OP_FLUSH_N_INV}
259 * Note that constant propagation ensures all the checks are gone
262 static inline void __dc_entire_op(const int cacheop
)
264 unsigned int tmp
= tmp
;
267 if (cacheop
== OP_FLUSH_N_INV
) {
268 /* Dcache provides 2 cmd: FLUSH or INV
269 * INV inturn has sub-modes: DISCARD or FLUSH-BEFORE
270 * flush-n-inv is achieved by INV cmd but with IM=1
271 * Default INV sub-mode is DISCARD, which needs to be toggled
273 tmp
= read_aux_reg(ARC_REG_DC_CTRL
);
274 write_aux_reg(ARC_REG_DC_CTRL
, tmp
| DC_CTRL_INV_MODE_FLUSH
);
277 if (cacheop
& OP_INV
) /* Inv or flush-n-inv use same cmd reg */
278 aux
= ARC_REG_DC_IVDC
;
280 aux
= ARC_REG_DC_FLSH
;
282 write_aux_reg(aux
, 0x1);
284 if (cacheop
& OP_FLUSH
) /* flush / flush-n-inv both wait */
287 /* Switch back the DISCARD ONLY Invalidate mode */
288 if (cacheop
== OP_FLUSH_N_INV
)
289 write_aux_reg(ARC_REG_DC_CTRL
, tmp
& ~DC_CTRL_INV_MODE_FLUSH
);
293 * Per Line Operation on D-Cache
294 * Doesn't deal with type-of-op/IRQ-disabling/waiting-for-flush-to-complete
295 * It's sole purpose is to help gcc generate ZOL
296 * (aliasing VIPT dcache flushing needs both vaddr and paddr)
298 static inline void __dc_line_loop(unsigned long paddr
, unsigned long vaddr
,
299 unsigned long sz
, const int aux_reg
)
303 /* Ensure we properly floor/ceil the non-line aligned/sized requests
304 * and have @paddr - aligned to cache line and integral @num_lines.
305 * This however can be avoided for page sized since:
306 * -@paddr will be cache-line aligned already (being page aligned)
307 * -@sz will be integral multiple of line size (being page sized).
309 if (!(__builtin_constant_p(sz
) && sz
== PAGE_SIZE
)) {
310 sz
+= paddr
& ~DCACHE_LINE_MASK
;
311 paddr
&= DCACHE_LINE_MASK
;
312 vaddr
&= DCACHE_LINE_MASK
;
315 num_lines
= DIV_ROUND_UP(sz
, ARC_DCACHE_LINE_LEN
);
317 #if (CONFIG_ARC_MMU_VER <= 2)
318 paddr
|= (vaddr
>> PAGE_SHIFT
) & 0x1F;
321 while (num_lines
-- > 0) {
322 #if (CONFIG_ARC_MMU_VER > 2)
324 * Just as for I$, in MMU v3, D$ ops also require
325 * "tag" bits in DC_PTAG, "index" bits in FLDL,IVDL ops
327 write_aux_reg(ARC_REG_DC_PTAG
, paddr
);
329 write_aux_reg(aux_reg
, vaddr
);
330 vaddr
+= ARC_DCACHE_LINE_LEN
;
332 /* paddr contains stuffed vaddrs bits */
333 write_aux_reg(aux_reg
, paddr
);
335 paddr
+= ARC_DCACHE_LINE_LEN
;
339 /* For kernel mappings cache operation: index is same as paddr */
340 #define __dc_line_op_k(p, sz, op) __dc_line_op(p, p, sz, op)
343 * D-Cache : Per Line INV (discard or wback+discard) or FLUSH (wback)
345 static inline void __dc_line_op(unsigned long paddr
, unsigned long vaddr
,
346 unsigned long sz
, const int cacheop
)
348 unsigned long flags
, tmp
= tmp
;
351 local_irq_save(flags
);
353 if (cacheop
== OP_FLUSH_N_INV
) {
355 * Dcache provides 2 cmd: FLUSH or INV
356 * INV inturn has sub-modes: DISCARD or FLUSH-BEFORE
357 * flush-n-inv is achieved by INV cmd but with IM=1
358 * Default INV sub-mode is DISCARD, which needs to be toggled
360 tmp
= read_aux_reg(ARC_REG_DC_CTRL
);
361 write_aux_reg(ARC_REG_DC_CTRL
, tmp
| DC_CTRL_INV_MODE_FLUSH
);
364 if (cacheop
& OP_INV
) /* Inv / flush-n-inv use same cmd reg */
365 aux
= ARC_REG_DC_IVDL
;
367 aux
= ARC_REG_DC_FLDL
;
369 __dc_line_loop(paddr
, vaddr
, sz
, aux
);
371 if (cacheop
& OP_FLUSH
) /* flush / flush-n-inv both wait */
374 /* Switch back the DISCARD ONLY Invalidate mode */
375 if (cacheop
== OP_FLUSH_N_INV
)
376 write_aux_reg(ARC_REG_DC_CTRL
, tmp
& ~DC_CTRL_INV_MODE_FLUSH
);
378 local_irq_restore(flags
);
383 #define __dc_entire_op(cacheop)
384 #define __dc_line_op(paddr, vaddr, sz, cacheop)
385 #define __dc_line_op_k(paddr, sz, cacheop)
387 #endif /* CONFIG_ARC_HAS_DCACHE */
390 #ifdef CONFIG_ARC_HAS_ICACHE
393 * I-Cache Aliasing in ARC700 VIPT caches
395 * ARC VIPT I-cache uses vaddr to index into cache and paddr to match the tag.
396 * The orig Cache Management Module "CDU" only required paddr to invalidate a
397 * certain line since it sufficed as index in Non-Aliasing VIPT cache-geometry.
398 * Infact for distinct V1,V2,P: all of {V1-P},{V2-P},{P-P} would end up fetching
399 * the exact same line.
401 * However for larger Caches (way-size > page-size) - i.e. in Aliasing config,
402 * paddr alone could not be used to correctly index the cache.
405 * MMU v1/v2 (Fixed Page Size 8k)
407 * The solution was to provide CDU with these additonal vaddr bits. These
408 * would be bits [x:13], x would depend on cache-geometry, 13 comes from
409 * standard page size of 8k.
410 * H/w folks chose [17:13] to be a future safe range, and moreso these 5 bits
411 * of vaddr could easily be "stuffed" in the paddr as bits [4:0] since the
412 * orig 5 bits of paddr were anyways ignored by CDU line ops, as they
413 * represent the offset within cache-line. The adv of using this "clumsy"
414 * interface for additional info was no new reg was needed in CDU programming
417 * 17:13 represented the max num of bits passable, actual bits needed were
418 * fewer, based on the num-of-aliases possible.
419 * -for 2 alias possibility, only bit 13 needed (32K cache)
420 * -for 4 alias possibility, bits 14:13 needed (64K cache)
425 * This ver of MMU supports variable page sizes (1k-16k): although Linux will
426 * only support 8k (default), 16k and 4k.
427 * However from hardware perspective, smaller page sizes aggrevate aliasing
428 * meaning more vaddr bits needed to disambiguate the cache-line-op ;
429 * the existing scheme of piggybacking won't work for certain configurations.
430 * Two new registers IC_PTAG and DC_PTAG inttoduced.
431 * "tag" bits are provided in PTAG, index bits in existing IVIL/IVDL/FLDL regs
434 /***********************************************************
435 * Machine specific helper for per line I-Cache invalidate.
437 static void __ic_line_inv_vaddr(unsigned long paddr
, unsigned long vaddr
,
444 * Ensure we properly floor/ceil the non-line aligned/sized requests:
445 * However page sized flushes can be compile time optimised.
446 * -@paddr will be cache-line aligned already (being page aligned)
447 * -@sz will be integral multiple of line size (being page sized).
449 if (!(__builtin_constant_p(sz
) && sz
== PAGE_SIZE
)) {
450 sz
+= paddr
& ~ICACHE_LINE_MASK
;
451 paddr
&= ICACHE_LINE_MASK
;
452 vaddr
&= ICACHE_LINE_MASK
;
455 num_lines
= DIV_ROUND_UP(sz
, ARC_ICACHE_LINE_LEN
);
457 #if (CONFIG_ARC_MMU_VER <= 2)
458 /* bits 17:13 of vaddr go as bits 4:0 of paddr */
459 paddr
|= (vaddr
>> PAGE_SHIFT
) & 0x1F;
462 local_irq_save(flags
);
463 while (num_lines
-- > 0) {
464 #if (CONFIG_ARC_MMU_VER > 2)
465 /* tag comes from phy addr */
466 write_aux_reg(ARC_REG_IC_PTAG
, paddr
);
468 /* index bits come from vaddr */
469 write_aux_reg(ARC_REG_IC_IVIL
, vaddr
);
470 vaddr
+= ARC_ICACHE_LINE_LEN
;
472 /* paddr contains stuffed vaddrs bits */
473 write_aux_reg(ARC_REG_IC_IVIL
, paddr
);
475 paddr
+= ARC_ICACHE_LINE_LEN
;
477 local_irq_restore(flags
);
480 static inline void __ic_entire_inv(void)
482 write_aux_reg(ARC_REG_IC_IVIC
, 1);
483 read_aux_reg(ARC_REG_IC_CTRL
); /* blocks */
488 #define __ic_entire_inv()
489 #define __ic_line_inv_vaddr(pstart, vstart, sz)
491 #endif /* CONFIG_ARC_HAS_ICACHE */
494 /***********************************************************
499 * Handle cache congruency of kernel and userspace mappings of page when kernel
500 * writes-to/reads-from
502 * The idea is to defer flushing of kernel mapping after a WRITE, possible if:
503 * -dcache is NOT aliasing, hence any U/K-mappings of page are congruent
504 * -U-mapping doesn't exist yet for page (finalised in update_mmu_cache)
505 * -In SMP, if hardware caches are coherent
507 * There's a corollary case, where kernel READs from a userspace mapped page.
508 * If the U-mapping is not congruent to to K-mapping, former needs flushing.
510 void flush_dcache_page(struct page
*page
)
512 struct address_space
*mapping
;
514 if (!cache_is_vipt_aliasing()) {
515 clear_bit(PG_dc_clean
, &page
->flags
);
519 /* don't handle anon pages here */
520 mapping
= page_mapping(page
);
525 * pagecache page, file not yet mapped to userspace
526 * Make a note that K-mapping is dirty
528 if (!mapping_mapped(mapping
)) {
529 clear_bit(PG_dc_clean
, &page
->flags
);
530 } else if (page_mapped(page
)) {
532 /* kernel reading from page with U-mapping */
533 void *paddr
= page_address(page
);
534 unsigned long vaddr
= page
->index
<< PAGE_CACHE_SHIFT
;
536 if (addr_not_cache_congruent(paddr
, vaddr
))
537 __flush_dcache_page(paddr
, vaddr
);
540 EXPORT_SYMBOL(flush_dcache_page
);
543 void dma_cache_wback_inv(unsigned long start
, unsigned long sz
)
545 __dc_line_op_k(start
, sz
, OP_FLUSH_N_INV
);
547 EXPORT_SYMBOL(dma_cache_wback_inv
);
549 void dma_cache_inv(unsigned long start
, unsigned long sz
)
551 __dc_line_op_k(start
, sz
, OP_INV
);
553 EXPORT_SYMBOL(dma_cache_inv
);
555 void dma_cache_wback(unsigned long start
, unsigned long sz
)
557 __dc_line_op_k(start
, sz
, OP_FLUSH
);
559 EXPORT_SYMBOL(dma_cache_wback
);
562 * This is API for making I/D Caches consistent when modifying
563 * kernel code (loadable modules, kprobes, kgdb...)
564 * This is called on insmod, with kernel virtual address for CODE of
565 * the module. ARC cache maintenance ops require PHY address thus we
566 * need to convert vmalloc addr to PHY addr
568 void flush_icache_range(unsigned long kstart
, unsigned long kend
)
570 unsigned int tot_sz
, off
, sz
;
571 unsigned long phy
, pfn
;
573 /* printk("Kernel Cache Cohenercy: %lx to %lx\n",kstart, kend); */
575 /* This is not the right API for user virtual address */
576 if (kstart
< TASK_SIZE
) {
577 BUG_ON("Flush icache range for user virtual addr space");
581 /* Shortcut for bigger flush ranges.
582 * Here we don't care if this was kernel virtual or phy addr
584 tot_sz
= kend
- kstart
;
585 if (tot_sz
> PAGE_SIZE
) {
590 /* Case: Kernel Phy addr (0x8000_0000 onwards) */
591 if (likely(kstart
> PAGE_OFFSET
)) {
593 * The 2nd arg despite being paddr will be used to index icache
594 * This is OK since no alternate virtual mappings will exist
595 * given the callers for this case: kprobe/kgdb in built-in
598 __sync_icache_dcache(kstart
, kstart
, kend
- kstart
);
603 * Case: Kernel Vaddr (0x7000_0000 to 0x7fff_ffff)
604 * (1) ARC Cache Maintenance ops only take Phy addr, hence special
605 * handling of kernel vaddr.
607 * (2) Despite @tot_sz being < PAGE_SIZE (bigger cases handled already),
608 * it still needs to handle a 2 page scenario, where the range
609 * straddles across 2 virtual pages and hence need for loop
612 off
= kstart
% PAGE_SIZE
;
613 pfn
= vmalloc_to_pfn((void *)kstart
);
614 phy
= (pfn
<< PAGE_SHIFT
) + off
;
615 sz
= min_t(unsigned int, tot_sz
, PAGE_SIZE
- off
);
616 __sync_icache_dcache(phy
, kstart
, sz
);
623 * General purpose helper to make I and D cache lines consistent.
624 * @paddr is phy addr of region
625 * @vaddr is typically user vaddr (breakpoint) or kernel vaddr (vmalloc)
626 * However in one instance, when called by kprobe (for a breakpt in
627 * builtin kernel code) @vaddr will be paddr only, meaning CDU operation will
628 * use a paddr to index the cache (despite VIPT). This is fine since since a
629 * builtin kernel page will not have any virtual mappings.
630 * kprobe on loadable module will be kernel vaddr.
632 void __sync_icache_dcache(unsigned long paddr
, unsigned long vaddr
, int len
)
636 local_irq_save(flags
);
637 __ic_line_inv_vaddr(paddr
, vaddr
, len
);
638 __dc_line_op(paddr
, vaddr
, len
, OP_FLUSH_N_INV
);
639 local_irq_restore(flags
);
642 /* wrapper to compile time eliminate alignment checks in flush loop */
643 void __inv_icache_page(unsigned long paddr
, unsigned long vaddr
)
645 __ic_line_inv_vaddr(paddr
, vaddr
, PAGE_SIZE
);
649 * wrapper to clearout kernel or userspace mappings of a page
650 * For kernel mappings @vaddr == @paddr
652 void ___flush_dcache_page(unsigned long paddr
, unsigned long vaddr
)
654 __dc_line_op(paddr
, vaddr
& PAGE_MASK
, PAGE_SIZE
, OP_FLUSH_N_INV
);
657 noinline
void flush_cache_all(void)
661 local_irq_save(flags
);
664 __dc_entire_op(OP_FLUSH_N_INV
);
666 local_irq_restore(flags
);
670 #ifdef CONFIG_ARC_CACHE_VIPT_ALIASING
672 void flush_cache_mm(struct mm_struct
*mm
)
677 void flush_cache_page(struct vm_area_struct
*vma
, unsigned long u_vaddr
,
680 unsigned int paddr
= pfn
<< PAGE_SHIFT
;
682 u_vaddr
&= PAGE_MASK
;
684 ___flush_dcache_page(paddr
, u_vaddr
);
686 if (vma
->vm_flags
& VM_EXEC
)
687 __inv_icache_page(paddr
, u_vaddr
);
690 void flush_cache_range(struct vm_area_struct
*vma
, unsigned long start
,
696 void flush_anon_page(struct vm_area_struct
*vma
, struct page
*page
,
697 unsigned long u_vaddr
)
699 /* TBD: do we really need to clear the kernel mapping */
700 __flush_dcache_page(page_address(page
), u_vaddr
);
701 __flush_dcache_page(page_address(page
), page_address(page
));
707 void copy_user_highpage(struct page
*to
, struct page
*from
,
708 unsigned long u_vaddr
, struct vm_area_struct
*vma
)
710 void *kfrom
= page_address(from
);
711 void *kto
= page_address(to
);
712 int clean_src_k_mappings
= 0;
715 * If SRC page was already mapped in userspace AND it's U-mapping is
716 * not congruent with K-mapping, sync former to physical page so that
717 * K-mapping in memcpy below, sees the right data
719 * Note that while @u_vaddr refers to DST page's userspace vaddr, it is
720 * equally valid for SRC page as well
722 if (page_mapped(from
) && addr_not_cache_congruent(kfrom
, u_vaddr
)) {
723 __flush_dcache_page(kfrom
, u_vaddr
);
724 clean_src_k_mappings
= 1;
727 copy_page(kto
, kfrom
);
730 * Mark DST page K-mapping as dirty for a later finalization by
731 * update_mmu_cache(). Although the finalization could have been done
732 * here as well (given that both vaddr/paddr are available).
733 * But update_mmu_cache() already has code to do that for other
734 * non copied user pages (e.g. read faults which wire in pagecache page
737 clear_bit(PG_dc_clean
, &to
->flags
);
740 * if SRC was already usermapped and non-congruent to kernel mapping
741 * sync the kernel mapping back to physical page
743 if (clean_src_k_mappings
) {
744 __flush_dcache_page(kfrom
, kfrom
);
745 set_bit(PG_dc_clean
, &from
->flags
);
747 clear_bit(PG_dc_clean
, &from
->flags
);
751 void clear_user_page(void *to
, unsigned long u_vaddr
, struct page
*page
)
754 clear_bit(PG_dc_clean
, &page
->flags
);
758 /**********************************************************************
759 * Explicit Cache flush request from user space via syscall
760 * Needed for JITs which generate code on the fly
762 SYSCALL_DEFINE3(cacheflush
, uint32_t, start
, uint32_t, sz
, uint32_t, flags
)
764 /* TBD: optimize this */