blob: 0992d3dbcc65f66e4e97925703ec9dc113a7b9a4 [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>
Vineet Gupta5bba49f2013-05-09 19:20:43 +053022#include <asm/shmparam.h>
Vineet Gupta95d69762013-01-18 15:12:19 +053023
Vineet Gupta24603fd2013-04-11 18:36:35 +053024/*
25 * Semantically we need this because icache doesn't snoop dcache/dma.
26 * However ARC Cache flush requires paddr as well as vaddr, latter not available
27 * in the flush_icache_page() API. So we no-op it but do the equivalent work
28 * in update_mmu_cache()
29 */
30#define flush_icache_page(vma, page)
31
Vineet Gupta95d69762013-01-18 15:12:19 +053032void flush_cache_all(void);
33
34void flush_icache_range(unsigned long start, unsigned long end);
Vineet Gupta94bad1a2013-04-12 12:20:23 +053035void __sync_icache_dcache(unsigned long paddr, unsigned long vaddr, int len);
Vineet Gupta24603fd2013-04-11 18:36:35 +053036void __inv_icache_page(unsigned long paddr, unsigned long vaddr);
Vineet Gupta45309492015-05-18 12:46:37 +053037void __flush_dcache_page(unsigned long paddr, unsigned long vaddr);
Vineet Gupta95d69762013-01-18 15:12:19 +053038
39#define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 1
40
41void flush_dcache_page(struct page *page);
42
43void dma_cache_wback_inv(unsigned long start, unsigned long sz);
44void dma_cache_inv(unsigned long start, unsigned long sz);
45void dma_cache_wback(unsigned long start, unsigned long sz);
46
47#define flush_dcache_mmap_lock(mapping) do { } while (0)
48#define flush_dcache_mmap_unlock(mapping) do { } while (0)
49
50/* TBD: optimize this */
51#define flush_cache_vmap(start, end) flush_cache_all()
52#define flush_cache_vunmap(start, end) flush_cache_all()
53
Vineet Gupta4102b532013-05-09 21:54:51 +053054#define flush_cache_dup_mm(mm) /* called on fork (VIVT only) */
55
56#ifndef CONFIG_ARC_CACHE_VIPT_ALIASING
57
Vineet Gupta95d69762013-01-18 15:12:19 +053058#define flush_cache_mm(mm) /* called on munmap/exit */
59#define flush_cache_range(mm, u_vstart, u_vend)
60#define flush_cache_page(vma, u_vaddr, pfn) /* PF handling/COW-break */
61
Vineet Gupta4102b532013-05-09 21:54:51 +053062#else /* VIPT aliasing dcache */
63
64/* To clear out stale userspace mappings */
65void flush_cache_mm(struct mm_struct *mm);
66void flush_cache_range(struct vm_area_struct *vma,
67 unsigned long start,unsigned long end);
68void flush_cache_page(struct vm_area_struct *vma,
69 unsigned long user_addr, unsigned long page);
70
71/*
72 * To make sure that userspace mapping is flushed to memory before
73 * get_user_pages() uses a kernel mapping to access the page
74 */
75#define ARCH_HAS_FLUSH_ANON_PAGE
76void flush_anon_page(struct vm_area_struct *vma,
77 struct page *page, unsigned long u_vaddr);
78
79#endif /* CONFIG_ARC_CACHE_VIPT_ALIASING */
80
81/*
Vineet Gupta2ed21da2013-05-13 17:23:58 +053082 * A new pagecache page has PG_arch_1 clear - thus dcache dirty by default
83 * This works around some PIO based drivers which don't call flush_dcache_page
84 * to record that they dirtied the dcache
85 */
86#define PG_dc_clean PG_arch_1
87
88/*
Vineet Gupta4102b532013-05-09 21:54:51 +053089 * Simple wrapper over config option
90 * Bootup code ensures that hardware matches kernel configuration
91 */
92static inline int cache_is_vipt_aliasing(void)
93{
Vineet Gupta30499182013-06-15 10:21:51 +053094 return IS_ENABLED(CONFIG_ARC_CACHE_VIPT_ALIASING);
Vineet Gupta4102b532013-05-09 21:54:51 +053095}
96
Vineet Gupta006dfb32013-05-19 14:06:44 +053097#define CACHE_COLOR(addr) (((unsigned long)(addr) >> (PAGE_SHIFT)) & 1)
Vineet Gupta4102b532013-05-09 21:54:51 +053098
99/*
100 * checks if two addresses (after page aligning) index into same cache set
101 */
102#define addr_not_cache_congruent(addr1, addr2) \
Vineet Gupta3e879742013-05-22 18:38:10 +0530103({ \
Vineet Gupta4102b532013-05-09 21:54:51 +0530104 cache_is_vipt_aliasing() ? \
Vineet Gupta3e879742013-05-22 18:38:10 +0530105 (CACHE_COLOR(addr1) != CACHE_COLOR(addr2)) : 0; \
106})
Vineet Gupta4102b532013-05-09 21:54:51 +0530107
Vineet Gupta95d69762013-01-18 15:12:19 +0530108#define copy_to_user_page(vma, page, vaddr, dst, src, len) \
109do { \
110 memcpy(dst, src, len); \
111 if (vma->vm_flags & VM_EXEC) \
Vineet Gupta94bad1a2013-04-12 12:20:23 +0530112 __sync_icache_dcache((unsigned long)(dst), vaddr, len); \
Vineet Gupta95d69762013-01-18 15:12:19 +0530113} while (0)
114
115#define copy_from_user_page(vma, page, vaddr, dst, src, len) \
116 memcpy(dst, src, len); \
117
118#endif