blob: 9863ee3747da00c8809042e5beb58738c7b196c4 [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
Thomas Gleixnerb2bba722007-10-15 23:28:20 +02004/* Caches aren't brain-dead on the intel. */
Akinobu Mitacc67ba632011-01-20 20:32:14 +09005#include <asm-generic/cacheflush.h>
David Howellsf05e7982012-03-28 18:11:12 +01006#include <asm/special_insns.h>
Thomas Gleixnerb2bba722007-10-15 23:28:20 +02007
Venkatesh Pallipadif5841742009-07-10 09:57:38 -07008#ifdef CONFIG_X86_PAT
9/*
10 * X86 PAT uses page flags WC and Uncached together to keep track of
11 * memory type of pages that have backing page struct. X86 PAT supports 3
12 * different memory types, _PAGE_CACHE_WB, _PAGE_CACHE_WC and
13 * _PAGE_CACHE_UC_MINUS and fourth state where page's memory type has not
14 * been changed from its default (value of -1 used to denote this).
15 * Note we do not support _PAGE_CACHE_UC here.
Venkatesh Pallipadif5841742009-07-10 09:57:38 -070016 */
Robin Holt1f9cc3c2010-04-23 10:36:22 -050017
18#define _PGMT_DEFAULT 0
19#define _PGMT_WC (1UL << PG_arch_1)
20#define _PGMT_UC_MINUS (1UL << PG_uncached)
21#define _PGMT_WB (1UL << PG_uncached | 1UL << PG_arch_1)
22#define _PGMT_MASK (1UL << PG_uncached | 1UL << PG_arch_1)
23#define _PGMT_CLEAR_MASK (~_PGMT_MASK)
24
Venkatesh Pallipadif5841742009-07-10 09:57:38 -070025static inline unsigned long get_page_memtype(struct page *pg)
26{
Robin Holt1f9cc3c2010-04-23 10:36:22 -050027 unsigned long pg_flags = pg->flags & _PGMT_MASK;
28
29 if (pg_flags == _PGMT_DEFAULT)
Venkatesh Pallipadif5841742009-07-10 09:57:38 -070030 return -1;
Robin Holt1f9cc3c2010-04-23 10:36:22 -050031 else if (pg_flags == _PGMT_WC)
Venkatesh Pallipadif5841742009-07-10 09:57:38 -070032 return _PAGE_CACHE_WC;
Robin Holt1f9cc3c2010-04-23 10:36:22 -050033 else if (pg_flags == _PGMT_UC_MINUS)
Venkatesh Pallipadif5841742009-07-10 09:57:38 -070034 return _PAGE_CACHE_UC_MINUS;
35 else
36 return _PAGE_CACHE_WB;
37}
38
39static inline void set_page_memtype(struct page *pg, unsigned long memtype)
40{
Robin Holt1f9cc3c2010-04-23 10:36:22 -050041 unsigned long memtype_flags = _PGMT_DEFAULT;
42 unsigned long old_flags;
43 unsigned long new_flags;
44
Venkatesh Pallipadif5841742009-07-10 09:57:38 -070045 switch (memtype) {
46 case _PAGE_CACHE_WC:
Robin Holt1f9cc3c2010-04-23 10:36:22 -050047 memtype_flags = _PGMT_WC;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -070048 break;
49 case _PAGE_CACHE_UC_MINUS:
Robin Holt1f9cc3c2010-04-23 10:36:22 -050050 memtype_flags = _PGMT_UC_MINUS;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -070051 break;
52 case _PAGE_CACHE_WB:
Robin Holt1f9cc3c2010-04-23 10:36:22 -050053 memtype_flags = _PGMT_WB;
Venkatesh Pallipadif5841742009-07-10 09:57:38 -070054 break;
55 }
Robin Holt1f9cc3c2010-04-23 10:36:22 -050056
57 do {
58 old_flags = pg->flags;
59 new_flags = (old_flags & _PGMT_CLEAR_MASK) | memtype_flags;
60 } while (cmpxchg(&pg->flags, old_flags, new_flags) != old_flags);
Venkatesh Pallipadif5841742009-07-10 09:57:38 -070061}
62#else
63static inline unsigned long get_page_memtype(struct page *pg) { return -1; }
64static inline void set_page_memtype(struct page *pg, unsigned long memtype) { }
65#endif
Arjan van de Ven75cbade2008-01-30 13:34:06 +010066
Arjan van de Ven7219beb2008-04-17 17:41:31 +020067/*
68 * The set_memory_* API can be used to change various attributes of a virtual
69 * address range. The attributes include:
70 * Cachability : UnCached, WriteCombining, WriteBack
71 * Executability : eXeutable, NoteXecutable
72 * Read/Write : ReadOnly, ReadWrite
73 * Presence : NotPresent
74 *
Lucas De Marchi0d2eb442011-03-17 16:24:16 -030075 * Within a category, the attributes are mutually exclusive.
Arjan van de Ven7219beb2008-04-17 17:41:31 +020076 *
77 * The implementation of this API will take care of various aspects that
78 * are associated with changing such attributes, such as:
79 * - Flushing TLBs
80 * - Flushing CPU caches
81 * - Making sure aliases of the memory behind the mapping don't violate
82 * coherency rules as defined by the CPU in the system.
83 *
84 * What this API does not do:
85 * - Provide exclusion between various callers - including callers that
86 * operation on other mappings of the same physical page
87 * - Restore default attributes when a page is freed
88 * - Guarantee that mappings other than the requested one are
89 * in any state, other than that these do not violate rules for
90 * the CPU you have. Do not depend on any effects on other mappings,
91 * CPUs other than the one you have may have more relaxed rules.
92 * The caller is required to take care of these.
93 */
Arjan van de Ven75cbade2008-01-30 13:34:06 +010094
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -070095int _set_memory_uc(unsigned long addr, int numpages);
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -070096int _set_memory_wc(unsigned long addr, int numpages);
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -070097int _set_memory_wb(unsigned long addr, int numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +010098int set_memory_uc(unsigned long addr, int numpages);
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -070099int set_memory_wc(unsigned long addr, int numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100100int set_memory_wb(unsigned long addr, int numpages);
101int set_memory_x(unsigned long addr, int numpages);
102int set_memory_nx(unsigned long addr, int numpages);
103int set_memory_ro(unsigned long addr, int numpages);
104int set_memory_rw(unsigned long addr, int numpages);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100105int set_memory_np(unsigned long addr, int numpages);
Andi Kleenc9caa022008-03-12 03:53:29 +0100106int set_memory_4k(unsigned long addr, int numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100107
Shaohua Lid75586a2008-08-21 10:46:06 +0800108int set_memory_array_uc(unsigned long *addr, int addrinarray);
Pauli Nieminen4f646252010-04-01 12:45:01 +0000109int set_memory_array_wc(unsigned long *addr, int addrinarray);
Shaohua Lid75586a2008-08-21 10:46:06 +0800110int set_memory_array_wb(unsigned long *addr, int addrinarray);
111
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -0700112int set_pages_array_uc(struct page **pages, int addrinarray);
Pauli Nieminen4f646252010-04-01 12:45:01 +0000113int set_pages_array_wc(struct page **pages, int addrinarray);
venkatesh.pallipadi@intel.com0f350752009-03-19 14:51:15 -0700114int set_pages_array_wb(struct page **pages, int addrinarray);
115
Arjan van de Ven7219beb2008-04-17 17:41:31 +0200116/*
117 * For legacy compatibility with the old APIs, a few functions
118 * are provided that work on a "struct page".
119 * These functions operate ONLY on the 1:1 kernel mapping of the
120 * memory that the struct page represents, and internally just
121 * call the set_memory_* function. See the description of the
122 * set_memory_* function for more details on conventions.
123 *
124 * These APIs should be considered *deprecated* and are likely going to
125 * be removed in the future.
126 * The reason for this is the implicit operation on the 1:1 mapping only,
127 * making this not a generally useful API.
128 *
129 * Specifically, many users of the old APIs had a virtual address,
130 * called virt_to_page() or vmalloc_to_page() on that address to
131 * get a struct page* that the old API required.
132 * To convert these cases, use set_memory_*() on the original
133 * virtual address, do not use these functions.
134 */
135
136int set_pages_uc(struct page *page, int numpages);
137int set_pages_wb(struct page *page, int numpages);
138int set_pages_x(struct page *page, int numpages);
139int set_pages_nx(struct page *page, int numpages);
140int set_pages_ro(struct page *page, int numpages);
141int set_pages_rw(struct page *page, int numpages);
142
143
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100144void clflush_cache_range(void *addr, unsigned int size);
Thomas Gleixnerb2bba722007-10-15 23:28:20 +0200145
Thomas Gleixnerb2bba722007-10-15 23:28:20 +0200146#ifdef CONFIG_DEBUG_RODATA
147void mark_rodata_ro(void);
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800148extern const int rodata_test_data;
Suresh Siddha502f6602009-10-28 18:46:56 -0800149extern int kernel_set_to_readonly;
Steven Rostedt16239632009-02-17 17:57:30 -0500150void set_kernel_text_rw(void);
151void set_kernel_text_ro(void);
152#else
153static inline void set_kernel_text_rw(void) { }
154static inline void set_kernel_text_ro(void) { }
Thomas Gleixnerb2bba722007-10-15 23:28:20 +0200155#endif
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800156
Arjan van de Venedeed302008-01-30 13:34:08 +0100157#ifdef CONFIG_DEBUG_RODATA_TEST
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800158int rodata_test(void);
Arjan van de Venedeed302008-01-30 13:34:08 +0100159#else
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800160static inline int rodata_test(void)
Arjan van de Venedeed302008-01-30 13:34:08 +0100161{
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800162 return 0;
Arjan van de Venedeed302008-01-30 13:34:08 +0100163}
164#endif
Thomas Gleixnerb2bba722007-10-15 23:28:20 +0200165
H. Peter Anvin1965aae2008-10-22 22:26:29 -0700166#endif /* _ASM_X86_CACHEFLUSH_H */