blob: bb55a78dcd621cad4a608073ed46c438f4940163 [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
Ingo Molnar9df84992008-02-04 16:48:09 +010019/*
20 * The current flushing context - we pass it instead of 5 arguments:
21 */
Thomas Gleixner72e458d2008-02-04 16:48:07 +010022struct cpa_data {
23 unsigned long vaddr;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010024 pgprot_t mask_set;
25 pgprot_t mask_clr;
Thomas Gleixner65e074d2008-02-04 16:48:07 +010026 int numpages;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +010027 int flushtlb;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010028};
29
Arjan van de Vened724be2008-01-30 13:34:04 +010030static inline int
31within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +010032{
Arjan van de Vened724be2008-01-30 13:34:04 +010033 return addr >= start && addr < end;
34}
35
36/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010037 * Flushing functions
38 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010039
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010040/**
41 * clflush_cache_range - flush a cache range with clflush
42 * @addr: virtual start address
43 * @size: number of bytes to flush
44 *
45 * clflush is an unordered instruction which needs fencing with mfence
46 * to avoid ordering issues.
47 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +010048void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010049{
Ingo Molnar4c61afc2008-01-30 13:34:09 +010050 void *vend = vaddr + size - 1;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010051
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010052 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +010053
54 for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
55 clflush(vaddr);
56 /*
57 * Flush any possible final partial cacheline:
58 */
59 clflush(vend);
60
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010061 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010062}
63
Thomas Gleixneraf1e6842008-01-30 13:34:08 +010064static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010065{
Andi Kleen6bb83832008-02-04 16:48:06 +010066 unsigned long cache = (unsigned long)arg;
67
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010068 /*
69 * Flush all to work around Errata in early athlons regarding
70 * large page flushing.
71 */
72 __flush_tlb_all();
73
Andi Kleen6bb83832008-02-04 16:48:06 +010074 if (cache && boot_cpu_data.x86_model >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010075 wbinvd();
76}
77
Andi Kleen6bb83832008-02-04 16:48:06 +010078static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010079{
80 BUG_ON(irqs_disabled());
81
Andi Kleen6bb83832008-02-04 16:48:06 +010082 on_each_cpu(__cpa_flush_all, (void *) cache, 1, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010083}
84
Thomas Gleixner57a6a462008-01-30 13:34:08 +010085static void __cpa_flush_range(void *arg)
86{
Thomas Gleixner57a6a462008-01-30 13:34:08 +010087 /*
88 * We could optimize that further and do individual per page
89 * tlb invalidates for a low number of pages. Caveat: we must
90 * flush the high aliases on 64bit as well.
91 */
92 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +010093}
94
Andi Kleen6bb83832008-02-04 16:48:06 +010095static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +010096{
Ingo Molnar4c61afc2008-01-30 13:34:09 +010097 unsigned int i, level;
98 unsigned long addr;
99
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100100 BUG_ON(irqs_disabled());
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100101 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100102
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100103 on_each_cpu(__cpa_flush_range, NULL, 1, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100104
Andi Kleen6bb83832008-02-04 16:48:06 +0100105 if (!cache)
106 return;
107
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100108 /*
109 * We only need to flush on one CPU,
110 * clflush is a MESI-coherent instruction that
111 * will cause all other CPUs to flush the same
112 * cachelines:
113 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100114 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
115 pte_t *pte = lookup_address(addr, &level);
116
117 /*
118 * Only flush present addresses:
119 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100120 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100121 clflush_cache_range((void *) addr, PAGE_SIZE);
122 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100123}
124
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100125#define HIGH_MAP_START __START_KERNEL_map
126#define HIGH_MAP_END (__START_KERNEL_map + KERNEL_TEXT_SIZE)
127
128
129/*
130 * Converts a virtual address to a X86-64 highmap address
131 */
132static unsigned long virt_to_highmap(void *address)
133{
134#ifdef CONFIG_X86_64
135 return __pa((unsigned long)address) + HIGH_MAP_START - phys_base;
136#else
137 return (unsigned long)address;
138#endif
139}
140
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100141/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100142 * Certain areas of memory on x86 require very specific protection flags,
143 * for example the BIOS area or kernel text. Callers don't always get this
144 * right (again, ioremap() on BIOS memory is not uncommon) so this function
145 * checks and fixes these known static required protection bits.
146 */
147static inline pgprot_t static_protections(pgprot_t prot, unsigned long address)
148{
149 pgprot_t forbidden = __pgprot(0);
150
Ingo Molnar687c4822008-01-30 13:34:04 +0100151 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100152 * The BIOS area between 640k and 1Mb needs to be executable for
153 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100154 */
Arjan van de Vened724be2008-01-30 13:34:04 +0100155 if (within(__pa(address), BIOS_BEGIN, BIOS_END))
156 pgprot_val(forbidden) |= _PAGE_NX;
157
158 /*
159 * The kernel text needs to be executable for obvious reasons
160 * Does not cover __inittext since that is gone later on
161 */
162 if (within(address, (unsigned long)_text, (unsigned long)_etext))
163 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100164 /*
165 * Do the same for the x86-64 high kernel mapping
166 */
167 if (within(address, virt_to_highmap(_text), virt_to_highmap(_etext)))
168 pgprot_val(forbidden) |= _PAGE_NX;
169
Arjan van de Vened724be2008-01-30 13:34:04 +0100170
171#ifdef CONFIG_DEBUG_RODATA
172 /* The .rodata section needs to be read-only */
173 if (within(address, (unsigned long)__start_rodata,
174 (unsigned long)__end_rodata))
175 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100176 /*
177 * Do the same for the x86-64 high kernel mapping
178 */
179 if (within(address, virt_to_highmap(__start_rodata),
180 virt_to_highmap(__end_rodata)))
181 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100182#endif
183
184 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100185
186 return prot;
187}
188
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100189/*
190 * Lookup the page table entry for a virtual address. Return a pointer
191 * to the entry and the level of the mapping.
192 *
193 * Note: We return pud and pmd either when the entry is marked large
194 * or when the present bit is not set. Otherwise we would return a
195 * pointer to a nonexisting mapping.
196 */
Ingo Molnarf0646e42008-01-30 13:33:43 +0100197pte_t *lookup_address(unsigned long address, int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100198{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 pgd_t *pgd = pgd_offset_k(address);
200 pud_t *pud;
201 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100202
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100203 *level = PG_LEVEL_NONE;
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 if (pgd_none(*pgd))
206 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 pud = pud_offset(pgd, address);
209 if (pud_none(*pud))
210 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100211
212 *level = PG_LEVEL_1G;
213 if (pud_large(*pud) || !pud_present(*pud))
214 return (pte_t *)pud;
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 pmd = pmd_offset(pud, address);
217 if (pmd_none(*pmd))
218 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100219
220 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100221 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100224 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100225
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100226 return pte_offset_kernel(pmd, address);
227}
228
Ingo Molnar9df84992008-02-04 16:48:09 +0100229/*
230 * Set the new pmd in all the pgds we know about:
231 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100232static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100233{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100234 /* change init_mm */
235 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100236#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100237 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100238 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239
Thomas Gleixner7b610ee2008-02-04 16:48:10 +0100240 address = __pa(address);
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100241 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100242 pgd_t *pgd;
243 pud_t *pud;
244 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100245
Ingo Molnar44af6c42008-01-30 13:34:03 +0100246 pgd = (pgd_t *)page_address(page) + pgd_index(address);
247 pud = pud_offset(pgd, address);
248 pmd = pmd_offset(pud, address);
249 set_pte_atomic((pte_t *)pmd, pte);
250 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100252#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253}
254
Ingo Molnar9df84992008-02-04 16:48:09 +0100255static int
256try_preserve_large_page(pte_t *kpte, unsigned long address,
257 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100258{
259 unsigned long nextpage_addr, numpages, pmask, psize, flags;
260 pte_t new_pte, old_pte, *tmp;
261 pgprot_t old_prot, new_prot;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100262 int level, do_split = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100263
Ingo Molnar34508f62008-02-04 16:48:07 +0100264 /*
265 * An Athlon 64 X2 showed hard hangs if we tried to preserve
266 * largepages and changed the PSE entry from RW to RO.
267 *
268 * As AMD CPUs have a long series of erratas in this area,
269 * (and none of the known ones seem to explain this hang),
270 * disable this code until the hang can be debugged:
271 */
272 if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
Ingo Molnarbeaff632008-02-04 16:48:09 +0100273 return 1;
Ingo Molnar34508f62008-02-04 16:48:07 +0100274
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100275 spin_lock_irqsave(&pgd_lock, flags);
276 /*
277 * Check for races, another CPU might have split this page
278 * up already:
279 */
280 tmp = lookup_address(address, &level);
281 if (tmp != kpte)
282 goto out_unlock;
283
284 switch (level) {
285 case PG_LEVEL_2M:
Andi Kleen31422c52008-02-04 16:48:08 +0100286 psize = PMD_PAGE_SIZE;
287 pmask = PMD_PAGE_MASK;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100288 break;
Andi Kleenf07333f2008-02-04 16:48:09 +0100289#ifdef CONFIG_X86_64
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100290 case PG_LEVEL_1G:
Andi Kleenf07333f2008-02-04 16:48:09 +0100291 psize = PMD_PAGE_SIZE;
292 pmask = PMD_PAGE_MASK;
293 break;
294#endif
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100295 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100296 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100297 goto out_unlock;
298 }
299
300 /*
301 * Calculate the number of pages, which fit into this large
302 * page starting at address:
303 */
304 nextpage_addr = (address + psize) & pmask;
305 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
306 if (numpages < cpa->numpages)
307 cpa->numpages = numpages;
308
309 /*
310 * We are safe now. Check whether the new pgprot is the same:
311 */
312 old_pte = *kpte;
313 old_prot = new_prot = pte_pgprot(old_pte);
314
315 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
316 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
317 new_prot = static_protections(new_prot, address);
318
319 /*
320 * If there are no changes, return. maxpages has been updated
321 * above:
322 */
323 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100324 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100325 goto out_unlock;
326 }
327
328 /*
329 * We need to change the attributes. Check, whether we can
330 * change the large page in one go. We request a split, when
331 * the address is not aligned and the number of pages is
332 * smaller than the number of pages in the large page. Note
333 * that we limited the number of possible pages already to
334 * the number of pages in the large page.
335 */
336 if (address == (nextpage_addr - psize) && cpa->numpages == numpages) {
337 /*
338 * The address is aligned and the number of pages
339 * covers the full page.
340 */
341 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
342 __set_pmd_pte(kpte, address, new_pte);
343 cpa->flushtlb = 1;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100344 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100345 }
346
347out_unlock:
348 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar9df84992008-02-04 16:48:09 +0100349
Ingo Molnarbeaff632008-02-04 16:48:09 +0100350 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100351}
352
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100353static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100354{
Thomas Gleixner7b610ee2008-02-04 16:48:10 +0100355 unsigned long flags, pfn, pfninc = 1;
Ingo Molnar9df84992008-02-04 16:48:09 +0100356 gfp_t gfp_flags = GFP_KERNEL;
Ingo Molnar86f03982008-01-30 13:34:09 +0100357 unsigned int i, level;
Ingo Molnar9df84992008-02-04 16:48:09 +0100358 pte_t *pbase, *tmp;
359 pgprot_t ref_prot;
360 struct page *base;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100361
Ingo Molnar12d6f212008-01-30 13:33:58 +0100362#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnar86f03982008-01-30 13:34:09 +0100363 gfp_flags = GFP_ATOMIC | __GFP_NOWARN;
Ingo Molnar12d6f212008-01-30 13:33:58 +0100364#endif
365 base = alloc_pages(gfp_flags, 0);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100366 if (!base)
367 return -ENOMEM;
368
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100369 spin_lock_irqsave(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100370 /*
371 * Check for races, another CPU might have split this page
372 * up for us already:
373 */
374 tmp = lookup_address(address, &level);
Ingo Molnar6ce9fc12008-02-04 16:48:08 +0100375 if (tmp != kpte)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100376 goto out_unlock;
377
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100378 pbase = (pte_t *)page_address(base);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100379#ifdef CONFIG_X86_32
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100380 paravirt_alloc_pt(&init_mm, page_to_pfn(base));
Ingo Molnar44af6c42008-01-30 13:34:03 +0100381#endif
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100382 ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100383
Andi Kleenf07333f2008-02-04 16:48:09 +0100384#ifdef CONFIG_X86_64
385 if (level == PG_LEVEL_1G) {
386 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
387 pgprot_val(ref_prot) |= _PAGE_PSE;
Andi Kleenf07333f2008-02-04 16:48:09 +0100388 }
389#endif
390
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100391 /*
392 * Get the target pfn from the original entry:
393 */
394 pfn = pte_pfn(*kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100395 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100396 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100397
398 /*
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100399 * Install the new, split up pagetable. Important details here:
Huang, Ying4c881ca2008-01-30 13:34:04 +0100400 *
401 * On Intel the NX bit of all levels must be cleared to make a
402 * page executable. See section 4.13.2 of Intel 64 and IA-32
403 * Architectures Software Developer's Manual).
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100404 *
405 * Mark the entry present. The current mapping might be
406 * set to not present, which we preserved above.
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100407 */
Huang, Ying4c881ca2008-01-30 13:34:04 +0100408 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100409 pgprot_val(ref_prot) |= _PAGE_PRESENT;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100410 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100411 base = NULL;
412
413out_unlock:
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100414 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100415
416 if (base)
417 __free_pages(base, 0);
418
419 return 0;
420}
421
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100422static int __change_page_attr(unsigned long address, struct cpa_data *cpa)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100423{
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100424 int level, do_split, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 struct page *kpte_page;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100426 pte_t *kpte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100428repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100429 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 if (!kpte)
431 return -EINVAL;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 kpte_page = virt_to_page(kpte);
Andi Kleen65d2f0b2007-07-21 17:09:51 +0200434 BUG_ON(PageLRU(kpte_page));
435 BUG_ON(PageCompound(kpte_page));
436
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100437 if (level == PG_LEVEL_4K) {
Ingo Molnar86f03982008-01-30 13:34:09 +0100438 pte_t new_pte, old_pte = *kpte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100439 pgprot_t new_prot = pte_pgprot(old_pte);
440
441 if(!pte_val(old_pte)) {
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100442 printk(KERN_WARNING "CPA: called for zero pte. "
443 "vaddr = %lx cpa->vaddr = %lx\n", address,
444 cpa->vaddr);
445 WARN_ON(1);
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100446 return -EINVAL;
447 }
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100448
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100449 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
450 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03982008-01-30 13:34:09 +0100451
452 new_prot = static_protections(new_prot, address);
453
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100454 /*
455 * We need to keep the pfn from the existing PTE,
456 * after all we're only going to change it's attributes
457 * not the memory it points to
458 */
459 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100460
461 /*
462 * Do we really change anything ?
463 */
464 if (pte_val(old_pte) != pte_val(new_pte)) {
465 set_pte_atomic(kpte, new_pte);
466 cpa->flushtlb = 1;
467 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100468 cpa->numpages = 1;
469 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100471
472 /*
473 * Check, whether we can keep the large page intact
474 * and just change the pte:
475 */
Ingo Molnarbeaff632008-02-04 16:48:09 +0100476 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100477 /*
478 * When the range fits into the existing large page,
479 * return. cp->numpages and cpa->tlbflush have been updated in
480 * try_large_page:
481 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100482 if (do_split <= 0)
483 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100484
485 /*
486 * We have to split the large page:
487 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100488 err = split_large_page(kpte, address);
489 if (!err) {
490 cpa->flushtlb = 1;
491 goto repeat;
492 }
Ingo Molnarbeaff632008-02-04 16:48:09 +0100493
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100494 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100495}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
Ingo Molnar44af6c42008-01-30 13:34:03 +0100497/**
498 * change_page_attr_addr - Change page table attributes in linear mapping
499 * @address: Virtual address in linear mapping.
Ingo Molnar44af6c42008-01-30 13:34:03 +0100500 * @prot: New page table attribute (PAGE_*)
501 *
502 * Change page attributes of a page in the direct mapping. This is a variant
503 * of change_page_attr() that also works on memory holes that do not have
504 * mem_map entry (pfn_valid() is false).
505 *
506 * See change_page_attr() documentation for more details.
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100507 *
508 * Modules and drivers should use the set_memory_* APIs instead.
Ingo Molnar44af6c42008-01-30 13:34:03 +0100509 */
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100510static int change_page_attr_addr(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100511{
Thomas Gleixner08797502008-01-30 13:34:09 +0100512 int err;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100513 unsigned long address = cpa->vaddr;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100514
Arjan van de Ven488fd992008-01-30 13:34:07 +0100515#ifdef CONFIG_X86_64
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100516 unsigned long phys_addr = __pa(address);
517
Arjan van de Ven488fd992008-01-30 13:34:07 +0100518 /*
Thomas Gleixner08797502008-01-30 13:34:09 +0100519 * If we are inside the high mapped kernel range, then we
520 * fixup the low mapping first. __va() returns the virtual
521 * address in the linear mapping:
Arjan van de Ven488fd992008-01-30 13:34:07 +0100522 */
Thomas Gleixner08797502008-01-30 13:34:09 +0100523 if (within(address, HIGH_MAP_START, HIGH_MAP_END))
524 address = (unsigned long) __va(phys_addr);
Arjan van de Ven488fd992008-01-30 13:34:07 +0100525#endif
526
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100527 err = __change_page_attr(address, cpa);
Thomas Gleixner08797502008-01-30 13:34:09 +0100528 if (err)
529 return err;
530
531#ifdef CONFIG_X86_64
532 /*
533 * If the physical address is inside the kernel map, we need
534 * to touch the high mapped kernel as well:
535 */
536 if (within(phys_addr, 0, KERNEL_TEXT_SIZE)) {
537 /*
538 * Calc the high mapping address. See __phys_addr()
539 * for the non obvious details.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100540 *
541 * Note that NX and other required permissions are
542 * checked in static_protections().
Thomas Gleixner08797502008-01-30 13:34:09 +0100543 */
544 address = phys_addr + HIGH_MAP_START - phys_base;
Thomas Gleixner08797502008-01-30 13:34:09 +0100545
546 /*
547 * Our high aliases are imprecise, because we check
548 * everything between 0 and KERNEL_TEXT_SIZE, so do
549 * not propagate lookup failures back to users:
550 */
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100551 __change_page_attr(address, cpa);
Thomas Gleixner08797502008-01-30 13:34:09 +0100552 }
553#endif
Ingo Molnar44af6c42008-01-30 13:34:03 +0100554 return err;
555}
556
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100557static int __change_page_attr_set_clr(struct cpa_data *cpa)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100558{
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100559 int ret, numpages = cpa->numpages;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100560
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100561 while (numpages) {
562 /*
563 * Store the remaining nr of pages for the large page
564 * preservation check.
565 */
566 cpa->numpages = numpages;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100567 ret = change_page_attr_addr(cpa);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100568 if (ret)
569 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100570
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100571 /*
572 * Adjust the number of pages with the result of the
573 * CPA operation. Either a large page has been
574 * preserved or a single page update happened.
575 */
576 BUG_ON(cpa->numpages > numpages);
577 numpages -= cpa->numpages;
578 cpa->vaddr += cpa->numpages * PAGE_SIZE;
579 }
Thomas Gleixnerff314522008-01-30 13:34:08 +0100580 return 0;
581}
582
Andi Kleen6bb83832008-02-04 16:48:06 +0100583static inline int cache_attr(pgprot_t attr)
584{
585 return pgprot_val(attr) &
586 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
587}
588
Thomas Gleixnerff314522008-01-30 13:34:08 +0100589static int change_page_attr_set_clr(unsigned long addr, int numpages,
590 pgprot_t mask_set, pgprot_t mask_clr)
591{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100592 struct cpa_data cpa;
Andi Kleen6bb83832008-02-04 16:48:06 +0100593 int ret, cache;
Thomas Gleixner331e4062008-02-04 16:48:06 +0100594
595 /*
596 * Check, if we are requested to change a not supported
597 * feature:
598 */
599 mask_set = canon_pgprot(mask_set);
600 mask_clr = canon_pgprot(mask_clr);
601 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr))
602 return 0;
603
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100604 cpa.vaddr = addr;
605 cpa.numpages = numpages;
606 cpa.mask_set = mask_set;
607 cpa.mask_clr = mask_clr;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100608 cpa.flushtlb = 0;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100609
610 ret = __change_page_attr_set_clr(&cpa);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100611
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100612 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100613 * Check whether we really changed something:
614 */
615 if (!cpa.flushtlb)
616 return ret;
617
618 /*
Andi Kleen6bb83832008-02-04 16:48:06 +0100619 * No need to flush, when we did not set any of the caching
620 * attributes:
621 */
622 cache = cache_attr(mask_set);
623
624 /*
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100625 * On success we use clflush, when the CPU supports it to
626 * avoid the wbindv. If the CPU does not support it and in the
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100627 * error case we fall back to cpa_flush_all (which uses
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100628 * wbindv):
629 */
630 if (!ret && cpu_has_clflush)
Andi Kleen6bb83832008-02-04 16:48:06 +0100631 cpa_flush_range(addr, numpages, cache);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100632 else
Andi Kleen6bb83832008-02-04 16:48:06 +0100633 cpa_flush_all(cache);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100634
635 return ret;
636}
637
Thomas Gleixner56744542008-01-30 13:34:08 +0100638static inline int change_page_attr_set(unsigned long addr, int numpages,
639 pgprot_t mask)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100640{
Thomas Gleixner56744542008-01-30 13:34:08 +0100641 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100642}
643
Thomas Gleixner56744542008-01-30 13:34:08 +0100644static inline int change_page_attr_clear(unsigned long addr, int numpages,
645 pgprot_t mask)
Thomas Gleixner72932c72008-01-30 13:34:08 +0100646{
Huang, Ying58270402008-01-31 22:05:43 +0100647 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask);
Thomas Gleixner72932c72008-01-30 13:34:08 +0100648}
649
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100650int set_memory_uc(unsigned long addr, int numpages)
651{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100652 return change_page_attr_set(addr, numpages,
653 __pgprot(_PAGE_PCD | _PAGE_PWT));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100654}
655EXPORT_SYMBOL(set_memory_uc);
656
657int set_memory_wb(unsigned long addr, int numpages)
658{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100659 return change_page_attr_clear(addr, numpages,
660 __pgprot(_PAGE_PCD | _PAGE_PWT));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100661}
662EXPORT_SYMBOL(set_memory_wb);
663
664int set_memory_x(unsigned long addr, int numpages)
665{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100666 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_NX));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100667}
668EXPORT_SYMBOL(set_memory_x);
669
670int set_memory_nx(unsigned long addr, int numpages)
671{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100672 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_NX));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100673}
674EXPORT_SYMBOL(set_memory_nx);
675
676int set_memory_ro(unsigned long addr, int numpages)
677{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100678 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_RW));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100679}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100680
681int set_memory_rw(unsigned long addr, int numpages)
682{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100683 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_RW));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100684}
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100685
686int set_memory_np(unsigned long addr, int numpages)
687{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100688 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_PRESENT));
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100689}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100690
691int set_pages_uc(struct page *page, int numpages)
692{
693 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100694
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100695 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100696}
697EXPORT_SYMBOL(set_pages_uc);
698
699int set_pages_wb(struct page *page, int numpages)
700{
701 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100702
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100703 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100704}
705EXPORT_SYMBOL(set_pages_wb);
706
707int set_pages_x(struct page *page, int numpages)
708{
709 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100710
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100711 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100712}
713EXPORT_SYMBOL(set_pages_x);
714
715int set_pages_nx(struct page *page, int numpages)
716{
717 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100718
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100719 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100720}
721EXPORT_SYMBOL(set_pages_nx);
722
723int set_pages_ro(struct page *page, int numpages)
724{
725 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100726
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100727 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100728}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100729
730int set_pages_rw(struct page *page, int numpages)
731{
732 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100733
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100734 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100735}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100738
739static int __set_pages_p(struct page *page, int numpages)
740{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100741 struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page),
742 .numpages = numpages,
743 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
744 .mask_clr = __pgprot(0)};
Thomas Gleixner72932c72008-01-30 13:34:08 +0100745
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100746 return __change_page_attr_set_clr(&cpa);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100747}
748
749static int __set_pages_np(struct page *page, int numpages)
750{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100751 struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page),
752 .numpages = numpages,
753 .mask_set = __pgprot(0),
754 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW)};
Thomas Gleixner72932c72008-01-30 13:34:08 +0100755
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100756 return __change_page_attr_set_clr(&cpa);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100757}
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759void kernel_map_pages(struct page *page, int numpages, int enable)
760{
761 if (PageHighMem(page))
762 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100763 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -0700764 debug_check_no_locks_freed(page_address(page),
765 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100766 }
Ingo Molnarde5097c2006-01-09 15:59:21 -0800767
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100768 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +0100769 * If page allocator is not up yet then do not call c_p_a():
770 */
771 if (!debug_pagealloc_enabled)
772 return;
773
774 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100775 * The return value is ignored - the calls cannot fail,
776 * large pages are disabled at boot time:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100778 if (enable)
779 __set_pages_p(page, numpages);
780 else
781 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100782
783 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100784 * We should perform an IPI and flush all tlbs,
785 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 */
787 __flush_tlb_all();
788}
789#endif
Arjan van de Vend1028a12008-01-30 13:34:07 +0100790
791/*
792 * The testcases use internal knowledge of the implementation that shouldn't
793 * be exposed to the rest of the kernel. Include these directly here.
794 */
795#ifdef CONFIG_CPA_DEBUG
796#include "pageattr-test.c"
797#endif