blob: 0a5f71817b3eae4994355df2ec67a1f7101572aa [file] [log] [blame]
Thomas Gleixnerb2bba722007-10-15 23:28:20 +02001#ifndef _ASM_X86_CACHEFLUSH_H
2#define _ASM_X86_CACHEFLUSH_H
3
4/* Keep includes the same across arches. */
5#include <linux/mm.h>
6
7/* Caches aren't brain-dead on the intel. */
8#define flush_cache_all() do { } while (0)
9#define flush_cache_mm(mm) do { } while (0)
10#define flush_cache_dup_mm(mm) do { } while (0)
11#define flush_cache_range(vma, start, end) do { } while (0)
12#define flush_cache_page(vma, vmaddr, pfn) do { } while (0)
13#define flush_dcache_page(page) do { } while (0)
14#define flush_dcache_mmap_lock(mapping) do { } while (0)
15#define flush_dcache_mmap_unlock(mapping) do { } while (0)
16#define flush_icache_range(start, end) do { } while (0)
Joe Perches3f61b192008-03-23 01:01:48 -070017#define flush_icache_page(vma, pg) do { } while (0)
18#define flush_icache_user_range(vma, pg, adr, len) do { } while (0)
Thomas Gleixnerb2bba722007-10-15 23:28:20 +020019#define flush_cache_vmap(start, end) do { } while (0)
20#define flush_cache_vunmap(start, end) do { } while (0)
21
Joe Perches3f61b192008-03-23 01:01:48 -070022#define copy_to_user_page(vma, page, vaddr, dst, src, len) \
23 memcpy((dst), (src), (len))
24#define copy_from_user_page(vma, page, vaddr, dst, src, len) \
25 memcpy((dst), (src), (len))
Thomas Gleixnerb2bba722007-10-15 23:28:20 +020026
Arjan van de Ven75cbade2008-01-30 13:34:06 +010027
Arjan van de Ven7219beb2008-04-17 17:41:31 +020028/*
29 * The set_memory_* API can be used to change various attributes of a virtual
30 * address range. The attributes include:
31 * Cachability : UnCached, WriteCombining, WriteBack
32 * Executability : eXeutable, NoteXecutable
33 * Read/Write : ReadOnly, ReadWrite
34 * Presence : NotPresent
35 *
36 * Within a catagory, the attributes are mutually exclusive.
37 *
38 * The implementation of this API will take care of various aspects that
39 * are associated with changing such attributes, such as:
40 * - Flushing TLBs
41 * - Flushing CPU caches
42 * - Making sure aliases of the memory behind the mapping don't violate
43 * coherency rules as defined by the CPU in the system.
44 *
45 * What this API does not do:
46 * - Provide exclusion between various callers - including callers that
47 * operation on other mappings of the same physical page
48 * - Restore default attributes when a page is freed
49 * - Guarantee that mappings other than the requested one are
50 * in any state, other than that these do not violate rules for
51 * the CPU you have. Do not depend on any effects on other mappings,
52 * CPUs other than the one you have may have more relaxed rules.
53 * The caller is required to take care of these.
54 */
Arjan van de Ven75cbade2008-01-30 13:34:06 +010055
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -070056int _set_memory_uc(unsigned long addr, int numpages);
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -070057int _set_memory_wc(unsigned long addr, int numpages);
venkatesh.pallipadi@intel.com12193332008-03-18 17:00:18 -070058int _set_memory_wb(unsigned long addr, int numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +010059int set_memory_uc(unsigned long addr, int numpages);
venkatesh.pallipadi@intel.comef354af2008-03-18 17:00:23 -070060int set_memory_wc(unsigned long addr, int numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +010061int set_memory_wb(unsigned long addr, int numpages);
62int set_memory_x(unsigned long addr, int numpages);
63int set_memory_nx(unsigned long addr, int numpages);
64int set_memory_ro(unsigned long addr, int numpages);
65int set_memory_rw(unsigned long addr, int numpages);
Ingo Molnarf62d0f02008-01-30 13:34:07 +010066int set_memory_np(unsigned long addr, int numpages);
Andi Kleenc9caa022008-03-12 03:53:29 +010067int set_memory_4k(unsigned long addr, int numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +010068
Shaohua Lid75586a2008-08-21 10:46:06 +080069int set_memory_array_uc(unsigned long *addr, int addrinarray);
70int set_memory_array_wb(unsigned long *addr, int addrinarray);
71
Arjan van de Ven7219beb2008-04-17 17:41:31 +020072/*
73 * For legacy compatibility with the old APIs, a few functions
74 * are provided that work on a "struct page".
75 * These functions operate ONLY on the 1:1 kernel mapping of the
76 * memory that the struct page represents, and internally just
77 * call the set_memory_* function. See the description of the
78 * set_memory_* function for more details on conventions.
79 *
80 * These APIs should be considered *deprecated* and are likely going to
81 * be removed in the future.
82 * The reason for this is the implicit operation on the 1:1 mapping only,
83 * making this not a generally useful API.
84 *
85 * Specifically, many users of the old APIs had a virtual address,
86 * called virt_to_page() or vmalloc_to_page() on that address to
87 * get a struct page* that the old API required.
88 * To convert these cases, use set_memory_*() on the original
89 * virtual address, do not use these functions.
90 */
91
92int set_pages_uc(struct page *page, int numpages);
93int set_pages_wb(struct page *page, int numpages);
94int set_pages_x(struct page *page, int numpages);
95int set_pages_nx(struct page *page, int numpages);
96int set_pages_ro(struct page *page, int numpages);
97int set_pages_rw(struct page *page, int numpages);
98
99
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100100void clflush_cache_range(void *addr, unsigned int size);
Thomas Gleixnerb2bba722007-10-15 23:28:20 +0200101
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100102void cpa_init(void);
103
Thomas Gleixnerb2bba722007-10-15 23:28:20 +0200104#ifdef CONFIG_DEBUG_RODATA
105void mark_rodata_ro(void);
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800106extern const int rodata_test_data;
Thomas Gleixnerb2bba722007-10-15 23:28:20 +0200107#endif
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800108
Arjan van de Venedeed302008-01-30 13:34:08 +0100109#ifdef CONFIG_DEBUG_RODATA_TEST
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800110int rodata_test(void);
Arjan van de Venedeed302008-01-30 13:34:08 +0100111#else
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800112static inline int rodata_test(void)
Arjan van de Venedeed302008-01-30 13:34:08 +0100113{
Harvey Harrison7bfeab92008-02-12 12:12:01 -0800114 return 0;
Arjan van de Venedeed302008-01-30 13:34:08 +0100115}
116#endif
Thomas Gleixnerb2bba722007-10-15 23:28:20 +0200117
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200118#endif