blob: 14a0fea0029eb5c1e0fdef74ec86f2a49bb00ed8 [file] [log] [blame]
Vineet Gupta95d69762013-01-18 15:12:19 +05301/*
2 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * vineetg: May 2011: for Non-aliasing VIPT D-cache following can be NOPs
9 * -flush_cache_dup_mm (fork)
10 * -likewise for flush_cache_mm (exit/execve)
11 * -likewise for flush_cache_{range,page} (munmap, exit, COW-break)
12 *
13 * vineetg: April 2008
14 * -Added a critical CacheLine flush to copy_to_user_page( ) which
15 * was causing gdbserver to not setup breakpoints consistently
16 */
17
18#ifndef _ASM_CACHEFLUSH_H
19#define _ASM_CACHEFLUSH_H
20
21#include <linux/mm.h>
22
Vineet Gupta24603fd2013-04-11 18:36:35 +053023/*
24 * Semantically we need this because icache doesn't snoop dcache/dma.
25 * However ARC Cache flush requires paddr as well as vaddr, latter not available
26 * in the flush_icache_page() API. So we no-op it but do the equivalent work
27 * in update_mmu_cache()
28 */
29#define flush_icache_page(vma, page)
30
Vineet Gupta95d69762013-01-18 15:12:19 +053031void flush_cache_all(void);
32
33void flush_icache_range(unsigned long start, unsigned long end);
Vineet Gupta94bad1a2013-04-12 12:20:23 +053034void __sync_icache_dcache(unsigned long paddr, unsigned long vaddr, int len);
Vineet Gupta24603fd2013-04-11 18:36:35 +053035void __inv_icache_page(unsigned long paddr, unsigned long vaddr);
Vineet Guptade2a8522013-05-09 21:55:27 +053036void ___flush_dcache_page(unsigned long paddr, unsigned long vaddr);
37#define __flush_dcache_page(p, v) \
38 ___flush_dcache_page((unsigned long)p, (unsigned long)v)
Vineet Gupta95d69762013-01-18 15:12:19 +053039
40#define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1
41
42void flush_dcache_page(struct page *page);
43
44void dma_cache_wback_inv(unsigned long start, unsigned long sz);
45void dma_cache_inv(unsigned long start, unsigned long sz);
46void dma_cache_wback(unsigned long start, unsigned long sz);
47
48#define flush_dcache_mmap_lock(mapping) do { } while (0)
49#define flush_dcache_mmap_unlock(mapping) do { } while (0)
50
51/* TBD: optimize this */
52#define flush_cache_vmap(start, end) flush_cache_all()
53#define flush_cache_vunmap(start, end) flush_cache_all()
54
Vineet Gupta4102b532013-05-09 21:54:51 +053055#define flush_cache_dup_mm(mm) /* called on fork (VIVT only) */
56
57#ifndef CONFIG_ARC_CACHE_VIPT_ALIASING
58
Vineet Gupta95d69762013-01-18 15:12:19 +053059#define flush_cache_mm(mm) /* called on munmap/exit */
60#define flush_cache_range(mm, u_vstart, u_vend)
61#define flush_cache_page(vma, u_vaddr, pfn) /* PF handling/COW-break */
62
Vineet Gupta4102b532013-05-09 21:54:51 +053063#else /* VIPT aliasing dcache */
64
65/* To clear out stale userspace mappings */
66void flush_cache_mm(struct mm_struct *mm);
67void flush_cache_range(struct vm_area_struct *vma,
68 unsigned long start,unsigned long end);
69void flush_cache_page(struct vm_area_struct *vma,
70 unsigned long user_addr, unsigned long page);
71
72/*
73 * To make sure that userspace mapping is flushed to memory before
74 * get_user_pages() uses a kernel mapping to access the page
75 */
76#define ARCH_HAS_FLUSH_ANON_PAGE
77void flush_anon_page(struct vm_area_struct *vma,
78 struct page *page, unsigned long u_vaddr);
79
80#endif /* CONFIG_ARC_CACHE_VIPT_ALIASING */
81
82/*
83 * Simple wrapper over config option
84 * Bootup code ensures that hardware matches kernel configuration
85 */
86static inline int cache_is_vipt_aliasing(void)
87{
88#ifdef CONFIG_ARC_CACHE_VIPT_ALIASING
89 return 1;
90#else
91 return 0;
92#endif
93}
94
95#define CACHE_COLOR(addr) (((unsigned long)(addr) >> (PAGE_SHIFT)) & 3)
96
97/*
98 * checks if two addresses (after page aligning) index into same cache set
99 */
100#define addr_not_cache_congruent(addr1, addr2) \
101 cache_is_vipt_aliasing() ? \
102 (CACHE_COLOR(addr1) != CACHE_COLOR(addr2)) : 0 \
103
Vineet Gupta95d69762013-01-18 15:12:19 +0530104#define copy_to_user_page(vma, page, vaddr, dst, src, len) \
105do { \
106 memcpy(dst, src, len); \
107 if (vma->vm_flags & VM_EXEC) \
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530108 __sync_icache_dcache((unsigned long)(dst), vaddr, len); \
Vineet Gupta95d69762013-01-18 15:12:19 +0530109} while (0)
110
111#define copy_from_user_page(vma, page, vaddr, dst, src, len) \
112 memcpy(dst, src, len); \
113
114#endif