blob: d92d63a6286bab0cf23eb160e57cc88463e85d42 [file] [log] [blame]
H. Peter Anvin1965aae2008-10-22 22:26:29 -07001#ifndef _ASM_X86_CACHEFLUSH_H
2#define _ASM_X86_CACHEFLUSH_H
Thomas Gleixnerb2bba722007-10-15 23:28:20 +02003
4/* Keep includes the same across arches. */
5#include <linux/mm.h>
6
7/* Caches aren't brain-dead on the intel. */
Tejun Heod3251002009-02-25 11:01:40 +09008static inline void flush_cache_all(void) { }
9static inline void flush_cache_mm(struct mm_struct *mm) { }
10static inline void flush_cache_dup_mm(struct mm_struct *mm) { }
11static inline void flush_cache_range(struct vm_area_struct *vma,
12 unsigned long start, unsigned long end) { }
13static inline void flush_cache_page(struct vm_area_struct *vma,
14 unsigned long vmaddr, unsigned long pfn) { }
Ilya Loginov2d4dc892009-11-26 09:16:19 +010015#define ARCH_IMPLEMENTS_FLUSH_DCACHE_PAGE 0
Tejun Heod3251002009-02-25 11:01:40 +090016static inline void flush_dcache_page(struct page *page) { }
17static inline void flush_dcache_mmap_lock(struct address_space *mapping) { }
18static inline void flush_dcache_mmap_unlock(struct address_space *mapping) { }
19static inline void flush_icache_range(unsigned long start,
20 unsigned long end) { }
21static inline void flush_icache_page(struct vm_area_struct *vma,
22 struct page *page) { }
23static inline void flush_icache_user_range(struct vm_area_struct *vma,
24 struct page *page,
25 unsigned long addr,
26 unsigned long len) { }
27static inline void flush_cache_vmap(unsigned long start, unsigned long end) { }
28static inline void flush_cache_vunmap(unsigned long start,
29 unsigned long end) { }
Thomas Gleixnerb2bba722007-10-15 23:28:20 +020030
Tejun Heod3251002009-02-25 11:01:40 +090031static inline void copy_to_user_page(struct vm_area_struct *vma,
32 struct page *page, unsigned long vaddr,
33 void *dst, const void *src,
34 unsigned long len)
35{
36 memcpy(dst, src, len);
37}
38
39static inline void copy_from_user_page(struct vm_area_struct *vma,
40 struct page *page, unsigned long vaddr,
41 void *dst, const void *src,
42 unsigned long len)
43{
44 memcpy(dst, src, len);
45}
Thomas Gleixnerb2bba722007-10-15 23:28:20 +020046
Venkatesh Pallipadif5841742009-07-10 09:57:38 -070047#define PG_WC PG_arch_1
48PAGEFLAG(WC, WC)
49
50#ifdef CONFIG_X86_PAT
51/*
52 * X86 PAT uses page flags WC and Uncached together to keep track of
53 * memory type of pages that have backing page struct. X86 PAT supports 3
54 * different memory types, _PAGE_CACHE_WB, _PAGE_CACHE_WC and
55 * _PAGE_CACHE_UC_MINUS and fourth state where page's memory type has not
56 * been changed from its default (value of -1 used to denote this).
57 * Note we do not support _PAGE_CACHE_UC here.
58 *
59 * Caller must hold memtype_lock for atomicity.
60 */
61static inline unsigned long get_page_memtype(struct page *pg)
62{
63 if (!PageUncached(pg) && !PageWC(pg))
64 return -1;
65 else if (!PageUncached(pg) && PageWC(pg))
66 return _PAGE_CACHE_WC;
67 else if (PageUncached(pg) && !PageWC(pg))
68 return _PAGE_CACHE_UC_MINUS;
69 else
70 return _PAGE_CACHE_WB;
71}
72
73static inline void set_page_memtype(struct page *pg, unsigned long memtype)
74{
75 switch (memtype) {
76 case _PAGE_CACHE_WC:
77 ClearPageUncached(pg);
78 SetPageWC(pg);
79 break;
80 case _PAGE_CACHE_UC_MINUS:
81 SetPageUncached(pg);
82 ClearPageWC(pg);
83 break;
84 case _PAGE_CACHE_WB:
85 SetPageUncached(pg);
86 SetPageWC(pg);
87 break;
88 default:
89 case -1:
90 ClearPageUncached(pg);
91 ClearPageWC(pg);
92 break;
93 }
94}
95#else
96static inline unsigned long get_page_memtype(struct page *pg) { return -1; }
97static inline void set_page_memtype(struct page *pg, unsigned long memtype) { }
98#endif
Arjan van de Ven75cbade2008-01-30 13:34:06 +010099
Arjan van de Ven7219beb2008-04-17 17:41:31 +0200100/*
101 * The set_memory_* API can be used to change various attributes of a virtual
102 * address range. The attributes include:
103 * Cachability : UnCached, WriteCombining, WriteBack
104 * Executability : eXeutable, NoteXecutable
105 * Read/Write : ReadOnly, ReadWrite
106 * Presence : NotPresent
107 *
108 * Within a catagory, the attributes are mutually exclusive.
109 *
110 * The implementation of this API will take care of various aspects that
111 * are associated with changing such attributes, such as:
112 * - Flushing TLBs
113 * - Flushing CPU caches
114 * - Making sure aliases of the memory behind the mapping don't violate
115 * coherency rules as defined by the CPU in the system.
116 *
117 * What this API does not do:
118 * - Provide exclusion between various callers - including callers that
119 * operation on other mappings of the same physical page
120 * - Restore default attributes when a page is freed
121 * - Guarantee that mappings other than the requested one are
122 * in any state, other than that these do not violate rules for
123 * the CPU you have. Do not depend on any effects on other mappings,
124 * CPUs other than the one you have may have more relaxed rules.
125 * The caller is required to take care of these.
126 */
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100127
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700128int _set_memory_uc(unsigned long addr, int numpages);
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700129int _set_memory_wc(unsigned long addr, int numpages);
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -0700130int _set_memory_wb(unsigned long addr, int numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100131int set_memory_uc(unsigned long addr, int numpages);
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -0700132int set_memory_wc(unsigned long addr, int numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100133int set_memory_wb(unsigned long addr, int numpages);
134int set_memory_x(unsigned long addr, int numpages);
135int set_memory_nx(unsigned long addr, int numpages);
136int set_memory_ro(unsigned long addr, int numpages);
137int set_memory_rw(unsigned long addr, int numpages);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100138int set_memory_np(unsigned long addr, int numpages);
Andi Kleenc9caa022008-03-12 03:53:29 +0100139int set_memory_4k(unsigned long addr, int numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100140
Shaohua Lid75586a2008-08-21 10:46:06 +0800141int set_memory_array_uc(unsigned long *addr, int addrinarray);
Pauli Nieminen4f646252010-04-01 12:45:01 +0000142int set_memory_array_wc(unsigned long *addr, int addrinarray);
Shaohua Lid75586a2008-08-21 10:46:06 +0800143int set_memory_array_wb(unsigned long *addr, int addrinarray);
144
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -0700145int set_pages_array_uc(struct page **pages, int addrinarray);
Pauli Nieminen4f646252010-04-01 12:45:01 +0000146int set_pages_array_wc(struct page **pages, int addrinarray);
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -0700147int set_pages_array_wb(struct page **pages, int addrinarray);
148
Arjan van de Ven7219beb2008-04-17 17:41:31 +0200149/*
150 * For legacy compatibility with the old APIs, a few functions
151 * are provided that work on a "struct page".
152 * These functions operate ONLY on the 1:1 kernel mapping of the
153 * memory that the struct page represents, and internally just
154 * call the set_memory_* function. See the description of the
155 * set_memory_* function for more details on conventions.
156 *
157 * These APIs should be considered *deprecated* and are likely going to
158 * be removed in the future.
159 * The reason for this is the implicit operation on the 1:1 mapping only,
160 * making this not a generally useful API.
161 *
162 * Specifically, many users of the old APIs had a virtual address,
163 * called virt_to_page() or vmalloc_to_page() on that address to
164 * get a struct page* that the old API required.
165 * To convert these cases, use set_memory_*() on the original
166 * virtual address, do not use these functions.
167 */
168
169int set_pages_uc(struct page *page, int numpages);
170int set_pages_wb(struct page *page, int numpages);
171int set_pages_x(struct page *page, int numpages);
172int set_pages_nx(struct page *page, int numpages);
173int set_pages_ro(struct page *page, int numpages);
174int set_pages_rw(struct page *page, int numpages);
175
176
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100177void clflush_cache_range(void *addr, unsigned int size);
Thomas Gleixnerb2bba722007-10-15 23:28:20 +0200178
Thomas Gleixnerb2bba722007-10-15 23:28:20 +0200179#ifdef CONFIG_DEBUG_RODATA
180void mark_rodata_ro(void);
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800181extern const int rodata_test_data;
Suresh Siddha502f6602009-10-28 18:46:56 -0800182extern int kernel_set_to_readonly;
Steven Rostedt16239632009-02-17 17:57:30 -0500183void set_kernel_text_rw(void);
184void set_kernel_text_ro(void);
185#else
186static inline void set_kernel_text_rw(void) { }
187static inline void set_kernel_text_ro(void) { }
Thomas Gleixnerb2bba722007-10-15 23:28:20 +0200188#endif
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800189
Arjan van de Venedeed302008-01-30 13:34:08 +0100190#ifdef CONFIG_DEBUG_RODATA_TEST
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800191int rodata_test(void);
Arjan van de Venedeed302008-01-30 13:34:08 +0100192#else
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800193static inline int rodata_test(void)
Arjan van de Venedeed302008-01-30 13:34:08 +0100194{
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800195 return 0;
Arjan van de Venedeed302008-01-30 13:34:08 +0100196}
197#endif
Thomas Gleixnerb2bba722007-10-15 23:28:20 +0200198
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700199#endif /* _ASM_X86_CACHEFLUSH_H */