blob: 7b79f6be4e7df99dc663d2d4c935a7e35f877a3b [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>
Thomas Gleixner76ebd052008-02-09 23:24:09 +010011#include <linux/interrupt.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010012
Thomas Gleixner950f9d92008-01-30 13:34:06 +010013#include <asm/e820.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <asm/processor.h>
15#include <asm/tlbflush.h>
Dave Jonesf8af0952006-01-06 00:12:10 -080016#include <asm/sections.h>
Ingo Molnar9f4c8152008-01-30 13:33:41 +010017#include <asm/uaccess.h>
18#include <asm/pgalloc.h>
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010019#include <asm/proto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
Ingo Molnar9df84992008-02-04 16:48:09 +010021/*
22 * The current flushing context - we pass it instead of 5 arguments:
23 */
Thomas Gleixner72e458d2008-02-04 16:48:07 +010024struct cpa_data {
25 unsigned long vaddr;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010026 pgprot_t mask_set;
27 pgprot_t mask_clr;
Thomas Gleixner65e074d2008-02-04 16:48:07 +010028 int numpages;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +010029 int flushtlb;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010030 unsigned long pfn;
Thomas Gleixner72e458d2008-02-04 16:48:07 +010031};
32
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +010033#ifdef CONFIG_X86_64
34
35static inline unsigned long highmap_start_pfn(void)
36{
37 return __pa(_text) >> PAGE_SHIFT;
38}
39
40static inline unsigned long highmap_end_pfn(void)
41{
42 return __pa(round_up((unsigned long)_end, PMD_SIZE)) >> PAGE_SHIFT;
43}
44
45#endif
46
Ingo Molnar92cb54a2008-02-13 14:37:52 +010047#ifdef CONFIG_DEBUG_PAGEALLOC
48# define debug_pagealloc 1
49#else
50# define debug_pagealloc 0
51#endif
52
Arjan van de Vened724be2008-01-30 13:34:04 +010053static inline int
54within(unsigned long addr, unsigned long start, unsigned long end)
Ingo Molnar687c4822008-01-30 13:34:04 +010055{
Arjan van de Vened724be2008-01-30 13:34:04 +010056 return addr >= start && addr < end;
57}
58
59/*
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010060 * Flushing functions
61 */
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010062
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010063/**
64 * clflush_cache_range - flush a cache range with clflush
65 * @addr: virtual start address
66 * @size: number of bytes to flush
67 *
68 * clflush is an unordered instruction which needs fencing with mfence
69 * to avoid ordering issues.
70 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +010071void clflush_cache_range(void *vaddr, unsigned int size)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010072{
Ingo Molnar4c61afc2008-01-30 13:34:09 +010073 void *vend = vaddr + size - 1;
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010074
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010075 mb();
Ingo Molnar4c61afc2008-01-30 13:34:09 +010076
77 for (; vaddr < vend; vaddr += boot_cpu_data.x86_clflush_size)
78 clflush(vaddr);
79 /*
80 * Flush any possible final partial cacheline:
81 */
82 clflush(vend);
83
Thomas Gleixnercd8ddf12008-01-30 13:34:08 +010084 mb();
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010085}
86
Thomas Gleixneraf1e6842008-01-30 13:34:08 +010087static void __cpa_flush_all(void *arg)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010088{
Andi Kleen6bb83832008-02-04 16:48:06 +010089 unsigned long cache = (unsigned long)arg;
90
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010091 /*
92 * Flush all to work around Errata in early athlons regarding
93 * large page flushing.
94 */
95 __flush_tlb_all();
96
Andi Kleen6bb83832008-02-04 16:48:06 +010097 if (cache && boot_cpu_data.x86_model >= 4)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +010098 wbinvd();
99}
100
Andi Kleen6bb83832008-02-04 16:48:06 +0100101static void cpa_flush_all(unsigned long cache)
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100102{
103 BUG_ON(irqs_disabled());
104
Andi Kleen6bb83832008-02-04 16:48:06 +0100105 on_each_cpu(__cpa_flush_all, (void *) cache, 1, 1);
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100106}
107
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100108static void __cpa_flush_range(void *arg)
109{
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100110 /*
111 * We could optimize that further and do individual per page
112 * tlb invalidates for a low number of pages. Caveat: we must
113 * flush the high aliases on 64bit as well.
114 */
115 __flush_tlb_all();
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100116}
117
Andi Kleen6bb83832008-02-04 16:48:06 +0100118static void cpa_flush_range(unsigned long start, int numpages, int cache)
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100119{
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100120 unsigned int i, level;
121 unsigned long addr;
122
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100123 BUG_ON(irqs_disabled());
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100124 WARN_ON(PAGE_ALIGN(start) != start);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100125
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100126 on_each_cpu(__cpa_flush_range, NULL, 1, 1);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100127
Andi Kleen6bb83832008-02-04 16:48:06 +0100128 if (!cache)
129 return;
130
Thomas Gleixner3b233e52008-01-30 13:34:08 +0100131 /*
132 * We only need to flush on one CPU,
133 * clflush is a MESI-coherent instruction that
134 * will cause all other CPUs to flush the same
135 * cachelines:
136 */
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100137 for (i = 0, addr = start; i < numpages; i++, addr += PAGE_SIZE) {
138 pte_t *pte = lookup_address(addr, &level);
139
140 /*
141 * Only flush present addresses:
142 */
Thomas Gleixner7bfb72e2008-02-04 16:48:08 +0100143 if (pte && (pte_val(*pte) & _PAGE_PRESENT))
Ingo Molnar4c61afc2008-01-30 13:34:09 +0100144 clflush_cache_range((void *) addr, PAGE_SIZE);
145 }
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100146}
147
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100148/*
Arjan van de Vened724be2008-01-30 13:34:04 +0100149 * Certain areas of memory on x86 require very specific protection flags,
150 * for example the BIOS area or kernel text. Callers don't always get this
151 * right (again, ioremap() on BIOS memory is not uncommon) so this function
152 * checks and fixes these known static required protection bits.
153 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100154static inline pgprot_t static_protections(pgprot_t prot, unsigned long address,
155 unsigned long pfn)
Arjan van de Vened724be2008-01-30 13:34:04 +0100156{
157 pgprot_t forbidden = __pgprot(0);
158
Ingo Molnar687c4822008-01-30 13:34:04 +0100159 /*
Arjan van de Vened724be2008-01-30 13:34:04 +0100160 * The BIOS area between 640k and 1Mb needs to be executable for
161 * PCI BIOS based config access (CONFIG_PCI_GOBIOS) support.
Ingo Molnar687c4822008-01-30 13:34:04 +0100162 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100163 if (within(pfn, BIOS_BEGIN >> PAGE_SHIFT, BIOS_END >> PAGE_SHIFT))
Arjan van de Vened724be2008-01-30 13:34:04 +0100164 pgprot_val(forbidden) |= _PAGE_NX;
165
166 /*
167 * The kernel text needs to be executable for obvious reasons
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100168 * Does not cover __inittext since that is gone later on. On
169 * 64bit we do not enforce !NX on the low mapping
Arjan van de Vened724be2008-01-30 13:34:04 +0100170 */
171 if (within(address, (unsigned long)_text, (unsigned long)_etext))
172 pgprot_val(forbidden) |= _PAGE_NX;
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100173
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100174 /*
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100175 * The .rodata section needs to be read-only. Using the pfn
176 * catches all aliases.
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100177 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100178 if (within(pfn, __pa((unsigned long)__start_rodata) >> PAGE_SHIFT,
179 __pa((unsigned long)__end_rodata) >> PAGE_SHIFT))
Arjan van de Vencc0f21b2008-02-04 16:48:05 +0100180 pgprot_val(forbidden) |= _PAGE_RW;
Arjan van de Vened724be2008-01-30 13:34:04 +0100181
182 prot = __pgprot(pgprot_val(prot) & ~pgprot_val(forbidden));
Ingo Molnar687c4822008-01-30 13:34:04 +0100183
184 return prot;
185}
186
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100187/*
188 * Lookup the page table entry for a virtual address. Return a pointer
189 * to the entry and the level of the mapping.
190 *
191 * Note: We return pud and pmd either when the entry is marked large
192 * or when the present bit is not set. Otherwise we would return a
193 * pointer to a nonexisting mapping.
194 */
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100195pte_t *lookup_address(unsigned long address, unsigned int *level)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100196{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 pgd_t *pgd = pgd_offset_k(address);
198 pud_t *pud;
199 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100200
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100201 *level = PG_LEVEL_NONE;
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 if (pgd_none(*pgd))
204 return NULL;
Ingo Molnar9df84992008-02-04 16:48:09 +0100205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 pud = pud_offset(pgd, address);
207 if (pud_none(*pud))
208 return NULL;
Andi Kleenc2f71ee2008-02-04 16:48:09 +0100209
210 *level = PG_LEVEL_1G;
211 if (pud_large(*pud) || !pud_present(*pud))
212 return (pte_t *)pud;
213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 pmd = pmd_offset(pud, address);
215 if (pmd_none(*pmd))
216 return NULL;
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100217
218 *level = PG_LEVEL_2M;
Thomas Gleixner9a14aef2008-02-04 16:48:07 +0100219 if (pmd_large(*pmd) || !pmd_present(*pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 return (pte_t *)pmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100222 *level = PG_LEVEL_4K;
Ingo Molnar9df84992008-02-04 16:48:09 +0100223
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100224 return pte_offset_kernel(pmd, address);
225}
226
Ingo Molnar9df84992008-02-04 16:48:09 +0100227/*
228 * Set the new pmd in all the pgds we know about:
229 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100230static void __set_pmd_pte(pte_t *kpte, unsigned long address, pte_t pte)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100231{
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100232 /* change init_mm */
233 set_pte_atomic(kpte, pte);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100234#ifdef CONFIG_X86_32
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100235 if (!SHARED_KERNEL_PMD) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100236 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Jeremy Fitzhardingee3ed9102008-01-30 13:34:11 +0100238 list_for_each_entry(page, &pgd_list, lru) {
Ingo Molnar44af6c42008-01-30 13:34:03 +0100239 pgd_t *pgd;
240 pud_t *pud;
241 pmd_t *pmd;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100242
Ingo Molnar44af6c42008-01-30 13:34:03 +0100243 pgd = (pgd_t *)page_address(page) + pgd_index(address);
244 pud = pud_offset(pgd, address);
245 pmd = pmd_offset(pud, address);
246 set_pte_atomic((pte_t *)pmd, pte);
247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100249#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Ingo Molnar9df84992008-02-04 16:48:09 +0100252static int
253try_preserve_large_page(pte_t *kpte, unsigned long address,
254 struct cpa_data *cpa)
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100255{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100256 unsigned long nextpage_addr, numpages, pmask, psize, flags, addr, pfn;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100257 pte_t new_pte, old_pte, *tmp;
258 pgprot_t old_prot, new_prot;
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100259 int i, do_split = 1;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100260 unsigned int level;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100261
262 spin_lock_irqsave(&pgd_lock, flags);
263 /*
264 * Check for races, another CPU might have split this page
265 * up already:
266 */
267 tmp = lookup_address(address, &level);
268 if (tmp != kpte)
269 goto out_unlock;
270
271 switch (level) {
272 case PG_LEVEL_2M:
Andi Kleen31422c52008-02-04 16:48:08 +0100273 psize = PMD_PAGE_SIZE;
274 pmask = PMD_PAGE_MASK;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100275 break;
Andi Kleenf07333f2008-02-04 16:48:09 +0100276#ifdef CONFIG_X86_64
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100277 case PG_LEVEL_1G:
Andi Kleen5d3c8b22008-02-13 16:20:35 +0100278 psize = PUD_PAGE_SIZE;
279 pmask = PUD_PAGE_MASK;
Andi Kleenf07333f2008-02-04 16:48:09 +0100280 break;
281#endif
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100282 default:
Ingo Molnarbeaff632008-02-04 16:48:09 +0100283 do_split = -EINVAL;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100284 goto out_unlock;
285 }
286
287 /*
288 * Calculate the number of pages, which fit into this large
289 * page starting at address:
290 */
291 nextpage_addr = (address + psize) & pmask;
292 numpages = (nextpage_addr - address) >> PAGE_SHIFT;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100293 if (numpages < cpa->numpages)
294 cpa->numpages = numpages;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100295
296 /*
297 * We are safe now. Check whether the new pgprot is the same:
298 */
299 old_pte = *kpte;
300 old_prot = new_prot = pte_pgprot(old_pte);
301
302 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
303 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100304
305 /*
306 * old_pte points to the large page base address. So we need
307 * to add the offset of the virtual address:
308 */
309 pfn = pte_pfn(old_pte) + ((address & (psize - 1)) >> PAGE_SHIFT);
310 cpa->pfn = pfn;
311
312 new_prot = static_protections(new_prot, address, pfn);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100313
314 /*
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100315 * We need to check the full range, whether
316 * static_protection() requires a different pgprot for one of
317 * the pages in the range we try to preserve:
318 */
319 addr = address + PAGE_SIZE;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100320 pfn++;
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100321 for (i = 1; i < cpa->numpages; i++, addr += PAGE_SIZE, pfn++) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100322 pgprot_t chk_prot = static_protections(new_prot, addr, pfn);
Thomas Gleixnerfac84932008-02-09 23:24:09 +0100323
324 if (pgprot_val(chk_prot) != pgprot_val(new_prot))
325 goto out_unlock;
326 }
327
328 /*
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100329 * If there are no changes, return. maxpages has been updated
330 * above:
331 */
332 if (pgprot_val(new_prot) == pgprot_val(old_prot)) {
Ingo Molnarbeaff632008-02-04 16:48:09 +0100333 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100334 goto out_unlock;
335 }
336
337 /*
338 * We need to change the attributes. Check, whether we can
339 * change the large page in one go. We request a split, when
340 * the address is not aligned and the number of pages is
341 * smaller than the number of pages in the large page. Note
342 * that we limited the number of possible pages already to
343 * the number of pages in the large page.
344 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100345 if (address == (nextpage_addr - psize) && cpa->numpages == numpages) {
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100346 /*
347 * The address is aligned and the number of pages
348 * covers the full page.
349 */
350 new_pte = pfn_pte(pte_pfn(old_pte), canon_pgprot(new_prot));
351 __set_pmd_pte(kpte, address, new_pte);
352 cpa->flushtlb = 1;
Ingo Molnarbeaff632008-02-04 16:48:09 +0100353 do_split = 0;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100354 }
355
356out_unlock:
357 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar9df84992008-02-04 16:48:09 +0100358
Ingo Molnarbeaff632008-02-04 16:48:09 +0100359 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100360}
361
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100362static LIST_HEAD(page_pool);
363static unsigned long pool_size, pool_pages, pool_low;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100364static unsigned long pool_used, pool_failed;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100365
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100366static void cpa_fill_pool(struct page **ret)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100367{
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100368 gfp_t gfp = GFP_KERNEL;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100369 unsigned long flags;
370 struct page *p;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100371
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100372 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100373 * Avoid recursion (on debug-pagealloc) and also signal
374 * our priority to get to these pagetables:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100375 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100376 if (current->flags & PF_MEMALLOC)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100377 return;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100378 current->flags |= PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100379
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100380 /*
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100381 * Allocate atomically from atomic contexts:
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100382 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100383 if (in_atomic() || irqs_disabled() || debug_pagealloc)
384 gfp = GFP_ATOMIC | __GFP_NORETRY | __GFP_NOWARN;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100385
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100386 while (pool_pages < pool_size || (ret && !*ret)) {
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100387 p = alloc_pages(gfp, 0);
388 if (!p) {
389 pool_failed++;
390 break;
391 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100392 /*
393 * If the call site needs a page right now, provide it:
394 */
395 if (ret && !*ret) {
396 *ret = p;
397 continue;
398 }
399 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100400 list_add(&p->lru, &page_pool);
401 pool_pages++;
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100402 spin_unlock_irqrestore(&pgd_lock, flags);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100403 }
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100404
405 current->flags &= ~PF_MEMALLOC;
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100406}
407
408#define SHIFT_MB (20 - PAGE_SHIFT)
409#define ROUND_MB_GB ((1 << 10) - 1)
410#define SHIFT_MB_GB 10
411#define POOL_PAGES_PER_GB 16
412
413void __init cpa_init(void)
414{
415 struct sysinfo si;
416 unsigned long gb;
417
418 si_meminfo(&si);
419 /*
420 * Calculate the number of pool pages:
421 *
422 * Convert totalram (nr of pages) to MiB and round to the next
423 * GiB. Shift MiB to Gib and multiply the result by
424 * POOL_PAGES_PER_GB:
425 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100426 if (debug_pagealloc) {
427 gb = ((si.totalram >> SHIFT_MB) + ROUND_MB_GB) >> SHIFT_MB_GB;
428 pool_size = POOL_PAGES_PER_GB * gb;
429 } else {
430 pool_size = 1;
431 }
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100432 pool_low = pool_size;
433
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100434 cpa_fill_pool(NULL);
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100435 printk(KERN_DEBUG
436 "CPA: page pool initialized %lu of %lu pages preallocated\n",
437 pool_pages, pool_size);
438}
439
Ingo Molnar7afe15b2008-01-30 13:33:57 +0100440static int split_large_page(pte_t *kpte, unsigned long address)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100441{
Thomas Gleixner7b610ee2008-02-04 16:48:10 +0100442 unsigned long flags, pfn, pfninc = 1;
Ingo Molnar86f03989d2008-01-30 13:34:09 +0100443 unsigned int i, level;
Ingo Molnar9df84992008-02-04 16:48:09 +0100444 pte_t *pbase, *tmp;
445 pgprot_t ref_prot;
446 struct page *base;
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100447
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100448 /*
449 * Get a page from the pool. The pool list is protected by the
450 * pgd_lock, which we have to take anyway for the split
451 * operation:
452 */
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100453 spin_lock_irqsave(&pgd_lock, flags);
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100454 if (list_empty(&page_pool)) {
455 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100456 base = NULL;
457 cpa_fill_pool(&base);
458 if (!base)
459 return -ENOMEM;
460 spin_lock_irqsave(&pgd_lock, flags);
461 } else {
462 base = list_first_entry(&page_pool, struct page, lru);
463 list_del(&base->lru);
464 pool_pages--;
465
466 if (pool_pages < pool_low)
467 pool_low = pool_pages;
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100468 }
469
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100470 /*
471 * Check for races, another CPU might have split this page
472 * up for us already:
473 */
474 tmp = lookup_address(address, &level);
Ingo Molnar6ce9fc12008-02-04 16:48:08 +0100475 if (tmp != kpte)
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100476 goto out_unlock;
477
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100478 pbase = (pte_t *)page_address(base);
Ingo Molnar44af6c42008-01-30 13:34:03 +0100479#ifdef CONFIG_X86_32
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100480 paravirt_alloc_pt(&init_mm, page_to_pfn(base));
Ingo Molnar44af6c42008-01-30 13:34:03 +0100481#endif
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100482 ref_prot = pte_pgprot(pte_clrhuge(*kpte));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100483
Andi Kleenf07333f2008-02-04 16:48:09 +0100484#ifdef CONFIG_X86_64
485 if (level == PG_LEVEL_1G) {
486 pfninc = PMD_PAGE_SIZE >> PAGE_SHIFT;
487 pgprot_val(ref_prot) |= _PAGE_PSE;
Andi Kleenf07333f2008-02-04 16:48:09 +0100488 }
489#endif
490
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100491 /*
492 * Get the target pfn from the original entry:
493 */
494 pfn = pte_pfn(*kpte);
Andi Kleenf07333f2008-02-04 16:48:09 +0100495 for (i = 0; i < PTRS_PER_PTE; i++, pfn += pfninc)
Thomas Gleixner63c1dcf2008-02-04 16:48:05 +0100496 set_pte(&pbase[i], pfn_pte(pfn, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100497
498 /*
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100499 * Install the new, split up pagetable. Important details here:
Huang, Ying4c881ca2008-01-30 13:34:04 +0100500 *
501 * On Intel the NX bit of all levels must be cleared to make a
502 * page executable. See section 4.13.2 of Intel 64 and IA-32
503 * Architectures Software Developer's Manual).
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100504 *
505 * Mark the entry present. The current mapping might be
506 * set to not present, which we preserved above.
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100507 */
Huang, Ying4c881ca2008-01-30 13:34:04 +0100508 ref_prot = pte_pgprot(pte_mkexec(pte_clrhuge(*kpte)));
Thomas Gleixner07cf89c2008-02-04 16:48:08 +0100509 pgprot_val(ref_prot) |= _PAGE_PRESENT;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100510 __set_pmd_pte(kpte, address, mk_pte(base, ref_prot));
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100511 base = NULL;
512
513out_unlock:
Thomas Gleixnereb5b5f02008-02-09 23:24:09 +0100514 /*
515 * If we dropped out via the lookup_address check under
516 * pgd_lock then stick the page back into the pool:
517 */
518 if (base) {
519 list_add(&base->lru, &page_pool);
520 pool_pages++;
521 } else
522 pool_used++;
Ingo Molnar9a3dc782008-01-30 13:33:57 +0100523 spin_unlock_irqrestore(&pgd_lock, flags);
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100524
Ingo Molnarbb5c2db2008-01-30 13:33:56 +0100525 return 0;
526}
527
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100528static int __change_page_attr(struct cpa_data *cpa, int primary)
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100529{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100530 unsigned long address = cpa->vaddr;
Harvey Harrisonda7bfc52008-02-09 23:24:08 +0100531 int do_split, err;
532 unsigned int level;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100533 pte_t *kpte, old_pte;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Ingo Molnar97f99fe2008-01-30 13:33:55 +0100535repeat:
Ingo Molnarf0646e42008-01-30 13:33:43 +0100536 kpte = lookup_address(address, &level);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 if (!kpte)
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100538 return primary ? -EINVAL : 0;
539
540 old_pte = *kpte;
541 if (!pte_val(old_pte)) {
542 if (!primary)
543 return 0;
544 printk(KERN_WARNING "CPA: called for zero pte. "
545 "vaddr = %lx cpa->vaddr = %lx\n", address,
546 cpa->vaddr);
547 WARN_ON(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 return -EINVAL;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100549 }
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100550
Thomas Gleixner30551bb2008-01-30 13:34:04 +0100551 if (level == PG_LEVEL_4K) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100552 pte_t new_pte;
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100553 pgprot_t new_prot = pte_pgprot(old_pte);
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100554 unsigned long pfn = pte_pfn(old_pte);
Thomas Gleixnera72a08a2008-01-30 13:34:07 +0100555
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100556 pgprot_val(new_prot) &= ~pgprot_val(cpa->mask_clr);
557 pgprot_val(new_prot) |= pgprot_val(cpa->mask_set);
Ingo Molnar86f03989d2008-01-30 13:34:09 +0100558
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100559 new_prot = static_protections(new_prot, address, pfn);
Ingo Molnar86f03989d2008-01-30 13:34:09 +0100560
Arjan van de Ven626c2c92008-02-04 16:48:05 +0100561 /*
562 * We need to keep the pfn from the existing PTE,
563 * after all we're only going to change it's attributes
564 * not the memory it points to
565 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100566 new_pte = pfn_pte(pfn, canon_pgprot(new_prot));
567 cpa->pfn = pfn;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100568 /*
569 * Do we really change anything ?
570 */
571 if (pte_val(old_pte) != pte_val(new_pte)) {
572 set_pte_atomic(kpte, new_pte);
573 cpa->flushtlb = 1;
574 }
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100575 cpa->numpages = 1;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100576 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100578
579 /*
580 * Check, whether we can keep the large page intact
581 * and just change the pte:
582 */
Ingo Molnarbeaff632008-02-04 16:48:09 +0100583 do_split = try_preserve_large_page(kpte, address, cpa);
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100584 /*
585 * When the range fits into the existing large page,
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100586 * return. cp->numpages and cpa->tlbflush have been updated in
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100587 * try_large_page:
588 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100589 if (do_split <= 0)
590 return do_split;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100591
592 /*
593 * We have to split the large page:
594 */
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100595 err = split_large_page(kpte, address);
596 if (!err) {
597 cpa->flushtlb = 1;
598 goto repeat;
599 }
Ingo Molnarbeaff632008-02-04 16:48:09 +0100600
Ingo Molnar87f7f8f2008-02-04 16:48:10 +0100601 return err;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100602}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100604static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias);
605
606static int cpa_process_alias(struct cpa_data *cpa)
Ingo Molnar44af6c42008-01-30 13:34:03 +0100607{
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100608 struct cpa_data alias_cpa;
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100609 int ret = 0;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100610
611 if (cpa->pfn > max_pfn_mapped)
612 return 0;
613
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100614 /*
615 * No need to redo, when the primary call touched the direct
616 * mapping already:
617 */
618 if (!within(cpa->vaddr, PAGE_OFFSET,
619 PAGE_OFFSET + (max_pfn_mapped << PAGE_SHIFT))) {
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100620
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100621 alias_cpa = *cpa;
622 alias_cpa.vaddr = (unsigned long) __va(cpa->pfn << PAGE_SHIFT);
623
624 ret = __change_page_attr_set_clr(&alias_cpa, 0);
625 }
Ingo Molnar44af6c42008-01-30 13:34:03 +0100626
Arjan van de Ven488fd992008-01-30 13:34:07 +0100627#ifdef CONFIG_X86_64
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100628 if (ret)
629 return ret;
Thomas Gleixner08797502008-01-30 13:34:09 +0100630 /*
Thomas Gleixnerf34b4392008-02-15 22:17:57 +0100631 * No need to redo, when the primary call touched the high
632 * mapping already:
633 */
634 if (within(cpa->vaddr, (unsigned long) _text, (unsigned long) _end))
635 return 0;
636
637 /*
Thomas Gleixner08797502008-01-30 13:34:09 +0100638 * If the physical address is inside the kernel map, we need
639 * to touch the high mapped kernel as well:
640 */
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100641 if (!within(cpa->pfn, highmap_start_pfn(), highmap_end_pfn()))
642 return 0;
Thomas Gleixner08797502008-01-30 13:34:09 +0100643
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100644 alias_cpa = *cpa;
645 alias_cpa.vaddr =
646 (cpa->pfn << PAGE_SHIFT) + __START_KERNEL_map - phys_base;
647
648 /*
649 * The high mapping range is imprecise, so ignore the return value.
650 */
651 __change_page_attr_set_clr(&alias_cpa, 0);
Thomas Gleixner08797502008-01-30 13:34:09 +0100652#endif
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100653 return ret;
Ingo Molnar44af6c42008-01-30 13:34:03 +0100654}
655
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100656static int __change_page_attr_set_clr(struct cpa_data *cpa, int checkalias)
Thomas Gleixnerff314522008-01-30 13:34:08 +0100657{
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100658 int ret, numpages = cpa->numpages;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100659
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100660 while (numpages) {
661 /*
662 * Store the remaining nr of pages for the large page
663 * preservation check.
664 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100665 cpa->numpages = numpages;
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100666
667 ret = __change_page_attr(cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100668 if (ret)
669 return ret;
Thomas Gleixnerff314522008-01-30 13:34:08 +0100670
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100671 if (checkalias) {
672 ret = cpa_process_alias(cpa);
673 if (ret)
674 return ret;
675 }
676
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100677 /*
678 * Adjust the number of pages with the result of the
679 * CPA operation. Either a large page has been
680 * preserved or a single page update happened.
681 */
Rafael J. Wysocki9b5cf482008-03-03 01:17:37 +0100682 BUG_ON(cpa->numpages > numpages);
683 numpages -= cpa->numpages;
684 cpa->vaddr += cpa->numpages * PAGE_SIZE;
Thomas Gleixner65e074d2008-02-04 16:48:07 +0100685 }
Thomas Gleixnerff314522008-01-30 13:34:08 +0100686 return 0;
687}
688
Andi Kleen6bb83832008-02-04 16:48:06 +0100689static inline int cache_attr(pgprot_t attr)
690{
691 return pgprot_val(attr) &
692 (_PAGE_PAT | _PAGE_PAT_LARGE | _PAGE_PWT | _PAGE_PCD);
693}
694
Thomas Gleixnerff314522008-01-30 13:34:08 +0100695static int change_page_attr_set_clr(unsigned long addr, int numpages,
696 pgprot_t mask_set, pgprot_t mask_clr)
697{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100698 struct cpa_data cpa;
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100699 int ret, cache, checkalias;
Thomas Gleixner331e4062008-02-04 16:48:06 +0100700
701 /*
702 * Check, if we are requested to change a not supported
703 * feature:
704 */
705 mask_set = canon_pgprot(mask_set);
706 mask_clr = canon_pgprot(mask_clr);
707 if (!pgprot_val(mask_set) && !pgprot_val(mask_clr))
708 return 0;
709
Thomas Gleixner69b14152008-02-13 11:04:50 +0100710 /* Ensure we are PAGE_SIZE aligned */
711 if (addr & ~PAGE_MASK) {
712 addr &= PAGE_MASK;
713 /*
714 * People should not be passing in unaligned addresses:
715 */
716 WARN_ON_ONCE(1);
717 }
718
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100719 cpa.vaddr = addr;
720 cpa.numpages = numpages;
721 cpa.mask_set = mask_set;
722 cpa.mask_clr = mask_clr;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100723 cpa.flushtlb = 0;
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100724
Thomas Gleixneraf96e442008-02-15 21:49:46 +0100725 /* No alias checking for _NX bit modifications */
726 checkalias = (pgprot_val(mask_set) | pgprot_val(mask_clr)) != _PAGE_NX;
727
728 ret = __change_page_attr_set_clr(&cpa, checkalias);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100729
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100730 /*
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100731 * Check whether we really changed something:
732 */
733 if (!cpa.flushtlb)
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100734 goto out;
Thomas Gleixnerf4ae5da2008-02-04 16:48:07 +0100735
736 /*
Andi Kleen6bb83832008-02-04 16:48:06 +0100737 * No need to flush, when we did not set any of the caching
738 * attributes:
739 */
740 cache = cache_attr(mask_set);
741
742 /*
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100743 * On success we use clflush, when the CPU supports it to
744 * avoid the wbindv. If the CPU does not support it and in the
Thomas Gleixneraf1e6842008-01-30 13:34:08 +0100745 * error case we fall back to cpa_flush_all (which uses
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100746 * wbindv):
747 */
748 if (!ret && cpu_has_clflush)
Andi Kleen6bb83832008-02-04 16:48:06 +0100749 cpa_flush_range(addr, numpages, cache);
Thomas Gleixner57a6a462008-01-30 13:34:08 +0100750 else
Andi Kleen6bb83832008-02-04 16:48:06 +0100751 cpa_flush_all(cache);
Thomas Gleixnerff314522008-01-30 13:34:08 +0100752
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100753out:
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100754 cpa_fill_pool(NULL);
755
Thomas Gleixnerff314522008-01-30 13:34:08 +0100756 return ret;
757}
758
Thomas Gleixner56744542008-01-30 13:34:08 +0100759static inline int change_page_attr_set(unsigned long addr, int numpages,
760 pgprot_t mask)
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100761{
Thomas Gleixner56744542008-01-30 13:34:08 +0100762 return change_page_attr_set_clr(addr, numpages, mask, __pgprot(0));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100763}
764
Thomas Gleixner56744542008-01-30 13:34:08 +0100765static inline int change_page_attr_clear(unsigned long addr, int numpages,
766 pgprot_t mask)
Thomas Gleixner72932c72008-01-30 13:34:08 +0100767{
Huang, Ying58270402008-01-31 22:05:43 +0100768 return change_page_attr_set_clr(addr, numpages, __pgprot(0), mask);
Thomas Gleixner72932c72008-01-30 13:34:08 +0100769}
770
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100771int set_memory_uc(unsigned long addr, int numpages)
772{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100773 return change_page_attr_set(addr, numpages,
Suresh Siddhad546b67a2008-03-25 17:39:12 -0700774 __pgprot(_PAGE_PCD));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100775}
776EXPORT_SYMBOL(set_memory_uc);
777
778int set_memory_wb(unsigned long addr, int numpages)
779{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100780 return change_page_attr_clear(addr, numpages,
781 __pgprot(_PAGE_PCD | _PAGE_PWT));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100782}
783EXPORT_SYMBOL(set_memory_wb);
784
785int set_memory_x(unsigned long addr, int numpages)
786{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100787 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_NX));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100788}
789EXPORT_SYMBOL(set_memory_x);
790
791int set_memory_nx(unsigned long addr, int numpages)
792{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100793 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_NX));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100794}
795EXPORT_SYMBOL(set_memory_nx);
796
797int set_memory_ro(unsigned long addr, int numpages)
798{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100799 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_RW));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100800}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100801
802int set_memory_rw(unsigned long addr, int numpages)
803{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100804 return change_page_attr_set(addr, numpages, __pgprot(_PAGE_RW));
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100805}
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100806
807int set_memory_np(unsigned long addr, int numpages)
808{
Thomas Gleixner72932c72008-01-30 13:34:08 +0100809 return change_page_attr_clear(addr, numpages, __pgprot(_PAGE_PRESENT));
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100810}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100811
812int set_pages_uc(struct page *page, int numpages)
813{
814 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100815
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100816 return set_memory_uc(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100817}
818EXPORT_SYMBOL(set_pages_uc);
819
820int set_pages_wb(struct page *page, int numpages)
821{
822 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100823
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100824 return set_memory_wb(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100825}
826EXPORT_SYMBOL(set_pages_wb);
827
828int set_pages_x(struct page *page, int numpages)
829{
830 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100831
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100832 return set_memory_x(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100833}
834EXPORT_SYMBOL(set_pages_x);
835
836int set_pages_nx(struct page *page, int numpages)
837{
838 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100839
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100840 return set_memory_nx(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100841}
842EXPORT_SYMBOL(set_pages_nx);
843
844int set_pages_ro(struct page *page, int numpages)
845{
846 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100847
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100848 return set_memory_ro(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100849}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100850
851int set_pages_rw(struct page *page, int numpages)
852{
853 unsigned long addr = (unsigned long)page_address(page);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100854
Thomas Gleixnerd7c8f212008-01-30 13:34:07 +0100855 return set_memory_rw(addr, numpages);
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100856}
Arjan van de Ven75cbade2008-01-30 13:34:06 +0100857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858#ifdef CONFIG_DEBUG_PAGEALLOC
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100859
860static int __set_pages_p(struct page *page, int numpages)
861{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100862 struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page),
863 .numpages = numpages,
864 .mask_set = __pgprot(_PAGE_PRESENT | _PAGE_RW),
865 .mask_clr = __pgprot(0)};
Thomas Gleixner72932c72008-01-30 13:34:08 +0100866
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100867 return __change_page_attr_set_clr(&cpa, 1);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100868}
869
870static int __set_pages_np(struct page *page, int numpages)
871{
Thomas Gleixner72e458d2008-02-04 16:48:07 +0100872 struct cpa_data cpa = { .vaddr = (unsigned long) page_address(page),
873 .numpages = numpages,
874 .mask_set = __pgprot(0),
875 .mask_clr = __pgprot(_PAGE_PRESENT | _PAGE_RW)};
Thomas Gleixner72932c72008-01-30 13:34:08 +0100876
Thomas Gleixnerc31c7d42008-02-18 20:54:14 +0100877 return __change_page_attr_set_clr(&cpa, 1);
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100878}
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880void kernel_map_pages(struct page *page, int numpages, int enable)
881{
882 if (PageHighMem(page))
883 return;
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100884 if (!enable) {
Ingo Molnarf9b84042006-06-27 02:54:49 -0700885 debug_check_no_locks_freed(page_address(page),
886 numpages * PAGE_SIZE);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100887 }
Ingo Molnarde5097c2006-01-09 15:59:21 -0800888
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100889 /*
Ingo Molnar12d6f212008-01-30 13:33:58 +0100890 * If page allocator is not up yet then do not call c_p_a():
891 */
892 if (!debug_pagealloc_enabled)
893 return;
894
895 /*
Ingo Molnarf8d84062008-02-13 14:09:53 +0100896 * The return value is ignored as the calls cannot fail.
897 * Large pages are kept enabled at boot time, and are
898 * split up quickly with DEBUG_PAGEALLOC. If a splitup
899 * fails here (due to temporary memory shortage) no damage
900 * is done because we just keep the largepage intact up
901 * to the next attempt when it will likely be split up:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 */
Ingo Molnarf62d0f02008-01-30 13:34:07 +0100903 if (enable)
904 __set_pages_p(page, numpages);
905 else
906 __set_pages_np(page, numpages);
Ingo Molnar9f4c8152008-01-30 13:33:41 +0100907
908 /*
Ingo Molnare4b71dc2008-01-30 13:34:04 +0100909 * We should perform an IPI and flush all tlbs,
910 * but that can deadlock->flush only current cpu:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 */
912 __flush_tlb_all();
Thomas Gleixner76ebd052008-02-09 23:24:09 +0100913
914 /*
915 * Try to refill the page pool here. We can do this only after
916 * the tlb flush.
917 */
Ingo Molnar92cb54a2008-02-13 14:37:52 +0100918 cpa_fill_pool(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919}
Rafael J. Wysocki8a235ef2008-02-20 01:47:44 +0100920
921#ifdef CONFIG_HIBERNATION
922
923bool kernel_page_present(struct page *page)
924{
925 unsigned int level;
926 pte_t *pte;
927
928 if (PageHighMem(page))
929 return false;
930
931 pte = lookup_address((unsigned long)page_address(page), &level);
932 return (pte_val(*pte) & _PAGE_PRESENT);
933}
934
935#endif /* CONFIG_HIBERNATION */
936
937#endif /* CONFIG_DEBUG_PAGEALLOC */
Arjan van de Vend1028a12008-01-30 13:34:07 +0100938
939/*
940 * The testcases use internal knowledge of the implementation that shouldn't
941 * be exposed to the rest of the kernel. Include these directly here.
942 */
943#ifdef CONFIG_CPA_DEBUG
944#include "pageattr-test.c"
945#endif