blob: 5cfc0d4ade567ce802d96173dc1bc3f7ce78b3c4 [file] [log] [blame]
Ingo Molnar9f4c8152008-01-30 13:33:41 +01001/*
2 * Copyright 2002 Andi Kleen, SuSE Labs.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * Thanks to Ben LaHaise for precious feedback.
Ingo Molnar9f4c8152008-01-30 13:33:41 +01004 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/highmem.h>
Ingo Molnar81922062008-01-30 13:34:04 +01006#include <linux/bootmem.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/module.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +01008#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/slab.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010010#include <linux/mm.h>
11
Thomas Gleixner950f9d92008-01-30 13:34:06 +010012#include <asm/e820.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/processor.h>
14#include <asm/tlbflush.h>
Dave Jonesf8af0952006-01-06 00:12:10 -080015#include <asm/sections.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010016#include <asm/uaccess.h>
17#include <asm/pgalloc.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Arjan van de Vened724be2008-01-30 13:34:04 +010019static inline int
20within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +010021{
Arjan van de Vened724be2008-01-30 13:34:04 +010022 return addr >= start && addr < end;
23}
24
25/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010026 * Flushing functions
27 */
28void clflush_cache_range(void *addr, int size)
29{
30 int i;
31
32 for (i = 0; i < size; i += boot_cpu_data.x86_clflush_size)
33 clflush(addr+i);
34}
35
36static void flush_kernel_map(void *arg)
37{
38 /*
39 * Flush all to work around Errata in early athlons regarding
40 * large page flushing.
41 */
42 __flush_tlb_all();
43
44 if (boot_cpu_data.x86_model >= 4)
45 wbinvd();
46}
47
48static void global_flush_tlb(void)
49{
50 BUG_ON(irqs_disabled());
51
52 on_each_cpu(flush_kernel_map, NULL, 1, 1);
53}
54
55/*
Arjan van de Vened724be2008-01-30 13:34:04 +010056 * Certain areas of memory on x86 require very specific protection flags,
57 * for example the BIOS area or kernel text. Callers don't always get this
58 * right (again, ioremap() on BIOS memory is not uncommon) so this function
59 * checks and fixes these known static required protection bits.
60 */
61static inline pgprot_t static_protections(pgprot_t prot, unsigned long address)
62{
63 pgprot_t forbidden = __pgprot(0);
64
Ingo Molnar687c4822008-01-30 13:34:04 +010065 /*
Arjan van de Vened724be2008-01-30 13:34:04 +010066 * The BIOS area between 640k and 1Mb needs to be executable for
67 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +010068 */
Arjan van de Vened724be2008-01-30 13:34:04 +010069 if (within(__pa(address), BIOS_BEGIN, BIOS_END))
70 pgprot_val(forbidden) |= _PAGE_NX;
71
72 /*
73 * The kernel text needs to be executable for obvious reasons
74 * Does not cover __inittext since that is gone later on
75 */
76 if (within(address, (unsigned long)_text, (unsigned long)_etext))
77 pgprot_val(forbidden) |= _PAGE_NX;
78
79#ifdef CONFIG_DEBUG_RODATA
80 /* The .rodata section needs to be read-only */
81 if (within(address, (unsigned long)__start_rodata,
82 (unsigned long)__end_rodata))
83 pgprot_val(forbidden) |= _PAGE_RW;
84#endif
85
86 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +010087
88 return prot;
89}
90
Ingo Molnarf0646e42008-01-30 13:33:43 +010091pte_t *lookup_address(unsigned long address, int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +010092{
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 pgd_t *pgd = pgd_offset_k(address);
94 pud_t *pud;
95 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +010096
Thomas Gleixner30551bb2008-01-30 13:34:04 +010097 *level = PG_LEVEL_NONE;
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (pgd_none(*pgd))
100 return NULL;
101 pud = pud_offset(pgd, address);
102 if (pud_none(*pud))
103 return NULL;
104 pmd = pmd_offset(pud, address);
105 if (pmd_none(*pmd))
106 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100107
108 *level = PG_LEVEL_2M;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 if (pmd_large(*pmd))
110 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100112 *level = PG_LEVEL_4K;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100113 return pte_offset_kernel(pmd, address);
114}
115
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100116static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100117{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100118 /* change init_mm */
119 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100120#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100121 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100122 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Ingo Molnar44af6c42008-01-30 13:34:03 +0100124 for (page = pgd_list; page; page = (struct page *)page->index) {
125 pgd_t *pgd;
126 pud_t *pud;
127 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100128
Ingo Molnar44af6c42008-01-30 13:34:03 +0100129 pgd = (pgd_t *)page_address(page) + pgd_index(address);
130 pud = pud_offset(pgd, address);
131 pmd = pmd_offset(pud, address);
132 set_pte_atomic((pte_t *)pmd, pte);
133 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100135#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100138static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100139{
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100140 pgprot_t ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnar12d6f212008-01-30 13:33:58 +0100141 gfp_t gfp_flags = GFP_KERNEL;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100142 unsigned long flags;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100143 unsigned long addr;
144 pte_t *pbase, *tmp;
145 struct page *base;
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100146 int i, level;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100147
Ingo Molnar12d6f212008-01-30 13:33:58 +0100148#ifdef CONFIG_DEBUG_PAGEALLOC
149 gfp_flags = GFP_ATOMIC;
150#endif
151 base = alloc_pages(gfp_flags, 0);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100152 if (!base)
153 return -ENOMEM;
154
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100155 spin_lock_irqsave(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100156 /*
157 * Check for races, another CPU might have split this page
158 * up for us already:
159 */
160 tmp = lookup_address(address, &level);
Ingo Molnar5508a742008-01-30 13:33:56 +0100161 if (tmp != kpte) {
162 WARN_ON_ONCE(1);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100163 goto out_unlock;
Ingo Molnar5508a742008-01-30 13:33:56 +0100164 }
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100165
166 address = __pa(address);
167 addr = address & LARGE_PAGE_MASK;
168 pbase = (pte_t *)page_address(base);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100169#ifdef CONFIG_X86_32
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100170 paravirt_alloc_pt(&init_mm, page_to_pfn(base));
Ingo Molnar44af6c42008-01-30 13:34:03 +0100171#endif
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100172
173 for (i = 0; i < PTRS_PER_PTE; i++, addr += PAGE_SIZE)
174 set_pte(&pbase[i], pfn_pte(addr >> PAGE_SHIFT, ref_prot));
175
176 /*
Huang, Ying4c881ca2008-01-30 13:34:04 +0100177 * Install the new, split up pagetable. Important detail here:
178 *
179 * On Intel the NX bit of all levels must be cleared to make a
180 * page executable. See section 4.13.2 of Intel 64 and IA-32
181 * Architectures Software Developer's Manual).
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100182 */
Huang, Ying4c881ca2008-01-30 13:34:04 +0100183 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100184 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100185 base = NULL;
186
187out_unlock:
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100188 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100189
190 if (base)
191 __free_pages(base, 0);
192
193 return 0;
194}
195
Ingo Molnar44af6c42008-01-30 13:34:03 +0100196static int
Ingo Molnar81922062008-01-30 13:34:04 +0100197__change_page_attr(unsigned long address, unsigned long pfn, pgprot_t prot)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100198{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 struct page *kpte_page;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100200 int level, err = 0;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100201 pte_t *kpte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Ingo Molnar81922062008-01-30 13:34:04 +0100203#ifdef CONFIG_X86_32
204 BUG_ON(pfn > max_low_pfn);
205#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100207repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100208 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 if (!kpte)
210 return -EINVAL;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 kpte_page = virt_to_page(kpte);
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200213 BUG_ON(PageLRU(kpte_page));
214 BUG_ON(PageCompound(kpte_page));
215
Arjan van de Vened724be2008-01-30 13:34:04 +0100216 prot = static_protections(prot, address);
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200217
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100218 if (level == PG_LEVEL_4K) {
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100219 WARN_ON_ONCE(pgprot_val(prot) & _PAGE_PSE);
Ingo Molnar81922062008-01-30 13:34:04 +0100220 set_pte_atomic(kpte, pfn_pte(pfn, canon_pgprot(prot)));
Ingo Molnar78c94ab2008-01-30 13:33:55 +0100221 } else {
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100222 /* Clear the PSE bit for the 4k level pages ! */
223 pgprot_val(prot) = pgprot_val(prot) & ~_PAGE_PSE;
224
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100225 err = split_large_page(kpte, address);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100226 if (!err)
227 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 }
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100229 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100230}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
Ingo Molnar44af6c42008-01-30 13:34:03 +0100232/**
233 * change_page_attr_addr - Change page table attributes in linear mapping
234 * @address: Virtual address in linear mapping.
Ingo Molnar44af6c42008-01-30 13:34:03 +0100235 * @prot: New page table attribute (PAGE_*)
236 *
237 * Change page attributes of a page in the direct mapping. This is a variant
238 * of change_page_attr() that also works on memory holes that do not have
239 * mem_map entry (pfn_valid() is false).
240 *
241 * See change_page_attr() documentation for more details.
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100242 *
243 * Modules and drivers should use the set_memory_* APIs instead.
Ingo Molnar44af6c42008-01-30 13:34:03 +0100244 */
245
Arjan van de Ven488fd992008-01-30 13:34:07 +0100246static int change_page_attr_addr(unsigned long address, pgprot_t prot)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100247{
Arjan van de Ven488fd992008-01-30 13:34:07 +0100248 int err = 0, kernel_map = 0;
249 unsigned long pfn = __pa(address) >> PAGE_SHIFT;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100250
251#ifdef CONFIG_X86_64
252 if (address >= __START_KERNEL_map &&
253 address < __START_KERNEL_map + KERNEL_TEXT_SIZE) {
254
255 address = (unsigned long)__va(__pa(address));
256 kernel_map = 1;
257 }
258#endif
259
Arjan van de Ven488fd992008-01-30 13:34:07 +0100260 if (!kernel_map || pte_present(pfn_pte(0, prot))) {
261 err = __change_page_attr(address, pfn, prot);
262 if (err)
263 return err;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100264 }
265
Arjan van de Ven488fd992008-01-30 13:34:07 +0100266#ifdef CONFIG_X86_64
267 /*
268 * Handle kernel mapping too which aliases part of
269 * lowmem:
270 */
271 if (__pa(address) < KERNEL_TEXT_SIZE) {
272 unsigned long addr2;
273 pgprot_t prot2;
274
275 addr2 = __START_KERNEL_map + __pa(address);
276 /* Make sure the kernel mappings stay executable */
277 prot2 = pte_pgprot(pte_mkexec(pfn_pte(0, prot)));
278 err = __change_page_attr(addr2, pfn, prot2);
279 }
280#endif
281
Ingo Molnar44af6c42008-01-30 13:34:03 +0100282 return err;
283}
284
285/**
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100286 * change_page_attr_set - Change page table attributes in the linear mapping.
287 * @addr: Virtual address in linear mapping.
288 * @numpages: Number of pages to change
289 * @prot: Protection/caching type bits to set (PAGE_*)
290 *
291 * Returns 0 on success, otherwise a negated errno.
292 *
293 * This should be used when a page is mapped with a different caching policy
294 * than write-back somewhere - some CPUs do not like it when mappings with
295 * different caching policies exist. This changes the page attributes of the
296 * in kernel linear mapping too.
297 *
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100298 * The caller needs to ensure that there are no conflicting mappings elsewhere
299 * (e.g. in user space) * This function only deals with the kernel linear map.
300 *
301 * This function is different from change_page_attr() in that only selected bits
302 * are impacted, all other bits remain as is.
303 */
Arjan van de Vend1028a12008-01-30 13:34:07 +0100304static int change_page_attr_set(unsigned long addr, int numpages,
305 pgprot_t prot)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100306{
Ingo Molnar4692a142008-01-30 13:34:07 +0100307 pgprot_t current_prot, new_prot;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100308 int level;
309 pte_t *pte;
Arjan van de Ven488fd992008-01-30 13:34:07 +0100310 int i, ret;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100311
Arjan van de Ven488fd992008-01-30 13:34:07 +0100312 for (i = 0; i < numpages ; i++) {
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100313
Arjan van de Ven488fd992008-01-30 13:34:07 +0100314 pte = lookup_address(addr, &level);
315 if (pte)
316 current_prot = pte_pgprot(*pte);
317 else
318 pgprot_val(current_prot) = 0;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100319
Ingo Molnar4692a142008-01-30 13:34:07 +0100320 pgprot_val(new_prot) =
321 pgprot_val(current_prot) | pgprot_val(prot);
Arjan van de Ven488fd992008-01-30 13:34:07 +0100322
Ingo Molnar4692a142008-01-30 13:34:07 +0100323 ret = change_page_attr_addr(addr, new_prot);
Arjan van de Ven488fd992008-01-30 13:34:07 +0100324 if (ret)
325 return ret;
326 addr += PAGE_SIZE;
327 }
328 return 0;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100329}
330
331/**
332 * change_page_attr_clear - Change page table attributes in the linear mapping.
333 * @addr: Virtual address in linear mapping.
334 * @numpages: Number of pages to change
335 * @prot: Protection/caching type bits to clear (PAGE_*)
336 *
337 * Returns 0 on success, otherwise a negated errno.
338 *
339 * This should be used when a page is mapped with a different caching policy
340 * than write-back somewhere - some CPUs do not like it when mappings with
341 * different caching policies exist. This changes the page attributes of the
342 * in kernel linear mapping too.
343 *
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100344 * The caller needs to ensure that there are no conflicting mappings elsewhere
345 * (e.g. in user space) * This function only deals with the kernel linear map.
346 *
347 * This function is different from change_page_attr() in that only selected bits
348 * are impacted, all other bits remain as is.
349 */
Arjan van de Vend1028a12008-01-30 13:34:07 +0100350static int change_page_attr_clear(unsigned long addr, int numpages,
351 pgprot_t prot)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100352{
Ingo Molnar4692a142008-01-30 13:34:07 +0100353 pgprot_t current_prot, new_prot;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100354 int level;
355 pte_t *pte;
Arjan van de Ven488fd992008-01-30 13:34:07 +0100356 int i, ret;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100357
Arjan van de Ven488fd992008-01-30 13:34:07 +0100358 for (i = 0; i < numpages; i++) {
359 pte = lookup_address(addr, &level);
360 if (pte)
361 current_prot = pte_pgprot(*pte);
362 else
363 pgprot_val(current_prot) = 0;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100364
Ingo Molnar4692a142008-01-30 13:34:07 +0100365 pgprot_val(new_prot) =
Arjan van de Ven488fd992008-01-30 13:34:07 +0100366 pgprot_val(current_prot) & ~pgprot_val(prot);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100367
Ingo Molnar4692a142008-01-30 13:34:07 +0100368 ret = change_page_attr_addr(addr, new_prot);
Arjan van de Ven488fd992008-01-30 13:34:07 +0100369 if (ret)
370 return ret;
371 addr += PAGE_SIZE;
372 }
373 return 0;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100374}
375
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100376int set_memory_uc(unsigned long addr, int numpages)
377{
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100378 int err;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100379
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100380 err = change_page_attr_set(addr, numpages,
381 __pgprot(_PAGE_PCD | _PAGE_PWT));
382 global_flush_tlb();
383 return err;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100384}
385EXPORT_SYMBOL(set_memory_uc);
386
387int set_memory_wb(unsigned long addr, int numpages)
388{
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100389 int err;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100390
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100391 err = change_page_attr_clear(addr, numpages,
392 __pgprot(_PAGE_PCD | _PAGE_PWT));
393 global_flush_tlb();
394 return err;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100395}
396EXPORT_SYMBOL(set_memory_wb);
397
398int set_memory_x(unsigned long addr, int numpages)
399{
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100400 int err;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100401
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100402 err = change_page_attr_clear(addr, numpages,
403 __pgprot(_PAGE_NX));
404 global_flush_tlb();
405 return err;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100406}
407EXPORT_SYMBOL(set_memory_x);
408
409int set_memory_nx(unsigned long addr, int numpages)
410{
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100411 int err;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100412
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100413 err = change_page_attr_set(addr, numpages,
414 __pgprot(_PAGE_NX));
415 global_flush_tlb();
416 return err;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100417}
418EXPORT_SYMBOL(set_memory_nx);
419
420int set_memory_ro(unsigned long addr, int numpages)
421{
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100422 int err;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100423
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100424 err = change_page_attr_clear(addr, numpages,
425 __pgprot(_PAGE_RW));
426 global_flush_tlb();
427 return err;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100428}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100429
430int set_memory_rw(unsigned long addr, int numpages)
431{
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100432 int err;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100433
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100434 err = change_page_attr_set(addr, numpages,
435 __pgprot(_PAGE_RW));
436 global_flush_tlb();
437 return err;
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100438}
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100439
440int set_memory_np(unsigned long addr, int numpages)
441{
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100442 int err;
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100443
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100444 err = change_page_attr_clear(addr, numpages,
445 __pgprot(_PAGE_PRESENT));
446 global_flush_tlb();
447 return err;
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100448}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100449
450int set_pages_uc(struct page *page, int numpages)
451{
452 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100453
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100454 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100455}
456EXPORT_SYMBOL(set_pages_uc);
457
458int set_pages_wb(struct page *page, int numpages)
459{
460 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100461
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100462 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100463}
464EXPORT_SYMBOL(set_pages_wb);
465
466int set_pages_x(struct page *page, int numpages)
467{
468 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100469
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100470 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100471}
472EXPORT_SYMBOL(set_pages_x);
473
474int set_pages_nx(struct page *page, int numpages)
475{
476 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100477
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100478 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100479}
480EXPORT_SYMBOL(set_pages_nx);
481
482int set_pages_ro(struct page *page, int numpages)
483{
484 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100485
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100486 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100487}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100488
489int set_pages_rw(struct page *page, int numpages)
490{
491 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100492
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100493 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100494}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100498
499static int __set_pages_p(struct page *page, int numpages)
500{
501 unsigned long addr = (unsigned long)page_address(page);
502 return change_page_attr_set(addr, numpages,
503 __pgprot(_PAGE_PRESENT | _PAGE_RW));
504}
505
506static int __set_pages_np(struct page *page, int numpages)
507{
508 unsigned long addr = (unsigned long)page_address(page);
509 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_PRESENT));
510}
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512void kernel_map_pages(struct page *page, int numpages, int enable)
513{
514 if (PageHighMem(page))
515 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100516 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -0700517 debug_check_no_locks_freed(page_address(page),
518 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100519 }
Ingo Molnarde5097c2006-01-09 15:59:21 -0800520
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100521 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +0100522 * If page allocator is not up yet then do not call c_p_a():
523 */
524 if (!debug_pagealloc_enabled)
525 return;
526
527 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100528 * The return value is ignored - the calls cannot fail,
529 * large pages are disabled at boot time:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100531 if (enable)
532 __set_pages_p(page, numpages);
533 else
534 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100535
536 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100537 * We should perform an IPI and flush all tlbs,
538 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 */
540 __flush_tlb_all();
541}
542#endif
Arjan van de Vend1028a12008-01-30 13:34:07 +0100543
544/*
545 * The testcases use internal knowledge of the implementation that shouldn't
546 * be exposed to the rest of the kernel. Include these directly here.
547 */
548#ifdef CONFIG_CPA_DEBUG
549#include "pageattr-test.c"
550#endif